_startup.asm
来自「很少见的源码公开的msc51和z80的c编译器。」· 汇编 代码 · 共 75 行
ASM
75 行
;--------------------------------------------------------; File Created by SDCC : FreeWare ANSI-C Compiler; Version 2.3.0 Thu Sep 20 10:57:48 2001;-------------------------------------------------------- .module _startup ;--------------------------------------------------------; Public variables in this module;-------------------------------------------------------- .globl __sdcc_external_startup;--------------------------------------------------------; special function registers;--------------------------------------------------------;--------------------------------------------------------; special function bits ;--------------------------------------------------------;--------------------------------------------------------; internal ram data;-------------------------------------------------------- .area _DATA;--------------------------------------------------------; overlayable items in internal ram ;-------------------------------------------------------- .area _OVERLAY;--------------------------------------------------------; indirectly addressable internal ram data;-------------------------------------------------------- .area _ISEG;--------------------------------------------------------; bit data;-------------------------------------------------------- .area _BSEG;--------------------------------------------------------; external ram data;-------------------------------------------------------- .area _XSEG;--------------------------------------------------------; global & static initialisations;-------------------------------------------------------- .area _GSINIT .area _GSFINAL .area _GSINIT;--------------------------------------------------------; Home;-------------------------------------------------------- .area _HOME .area _CODE;--------------------------------------------------------; code;-------------------------------------------------------- .area _CODE; _startup.c 30; genLabel; genFunction; ---------------------------------; Function _sdcc_external_startup; ---------------------------------____sdcc_external_startup_start:__sdcc_external_startup: push ix ld ix,#0 add ix,sp; _startup.c 32; genRet ld l,#0x00; genLabel00101$:; genEndFunction pop ix ret____sdcc_external_startup_end: .area _CODE
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?