📄 startup.ss
字号:
.module .text/* on reprend les variables globales */ li_i _vars li_i _getvars jsr 4 pop /* lancement de 'main' puis 'exit' */ li_i _argv ld_i li_i _argc ld_i li_i main jsr 8 li_i exit jsr 4 /* variables globales */.data .align 4_vars:stdin: .globl stdin .int 0stdout: .globl stdout .int 0stderr: .globl stderr .int 0_argc: .int 0_argv: .int 0/* librairie */.text_getvars: libcall 0 rtsmalloc: .globl malloc libcall 1 rtsfree: .globl free libcall 2 rtsexit: .globl exit libcall 3 rtsrealloc: .globl realloc libcall 4 rts fputc: .globl fputc libcall 5 rtsfgetc: .globl fgetc libcall 6 rtsfread: .globl fread libcall 7 rtsfwrite: .globl fwrite libcall 8 rtsferror: .globl ferror libcall 9 rtsfopen: .globl fopen libcall 10 rtsfclose: .globl fclose libcall 11 rts
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -