HD64F38024DV Renesas Electronics America, HD64F38024DV Datasheet - Page 349

IC H8/SLP MCU FLASH 80QFP

HD64F38024DV

Manufacturer Part Number
HD64F38024DV
Description
IC H8/SLP MCU FLASH 80QFP
Manufacturer
Renesas Electronics America
Series
H8® H8/300L SLPr
Datasheets

Specifications of HD64F38024DV

Core Processor
H8/300L
Core Size
8-Bit
Speed
10MHz
Connectivity
SCI
Peripherals
LCD, PWM, WDT
Number Of I /o
51
Program Memory Size
32KB (32K x 8)
Program Memory Type
FLASH
Ram Size
1K x 8
Voltage - Supply (vcc/vdd)
1.8 V ~ 5.5 V
Data Converters
A/D 8x10b
Oscillator Type
Internal
Operating Temperature
-40°C ~ 85°C
Package / Case
80-QFP
Lead Free Status / RoHS Status
Lead free / RoHS Compliant
Eeprom Size
-

Available stocks

Company
Part Number
Manufacturer
Quantity
Price
Part Number:
HD64F38024DV
Manufacturer:
Renesas Electronics America
Quantity:
10 000
#pragma inline_asm
Description Format: #pragma inline_asm (<function name>[,...])
Description:
Example:
Remarks:
<function name>: Do not specify a C++ member function or an overloaded
function.
Performs inline expansion for the functions written in assembly language
declared by #pragma inline_asm.
Parameters of a function that is written in assembly language are referenced
in an inline_asm function because they are stacked or stored in registers in
the same way as general function calls. The return value of an inline
function written in assembly language should be set to (E)R0.
#pragma inline_asm(shlu)
extern unsigned int x;
static unsigned int shlu(unsigned int a)
{
}
void main(void)
{
}
1. Compile the program using the object-type specification option
2. The functions in the definitions after the #pragma inline_asm will be
3. Specify #pragma inline_asm before the definition of the function.
?L1:
SHLL.W
BCC
SUB.W
x = shlu(x)
code=asmcode.
treated as the target functions.
External definition will be generated for functions specified by #pragma
inline_asm. When a source program includes the same inline function
description, be sure to specify static before the function declaration.
If static is specified, an external definition will not be created.
R0
?L1
R0,R0
/* Function shlu is deleted
/* Local label starts with ?
/* Inline expansion is performed */
/* within the main function
*/
*/
*/
335

Related parts for HD64F38024DV