Technical information

SCI to SPI Peripheral Communication in V850ES Microcontrollers
.extern __ssbss, 4
.extern __esbss, 4
.extern __sbss, 4
.extern __ebss, 4
#----------------------------------------------------------------------------
-
# C program main function
#----------------------------------------------------------------------------
-
.extern _SystemInit
.extern _main
.extern _Clock_Init
#----------------------------------------------------------------------------
-
# for argv
#----------------------------------------------------------------------------
-
.data
.size __argc, 4
.align 4
__argc:
.word 0
.size __argv, 4
__argv:
.word #.L16
.L16:
.byte 0
.byte 0
.byte 0
.byte 0
#----------------------------------------------------------------------------
-
# dummy data declaration for creating sbss section
#----------------------------------------------------------------------------
-
.sbss
.lcomm __sbss_dummy, 0, 0
#----------------------------------------------------------------------------
-
# system stack
#----------------------------------------------------------------------------
-
.set STACKSIZE, 0x200
.bss
.lcomm __stack, STACKSIZE, 4
81