📄 hello_impl.asm
字号:
%include "macro.inc"%include "orzmicro.inc" dd 0x1000 ; Stack size dd _DATA_LEN ; Data size[ORG -8][BITS 32] mov esi, strx mov ecx, strx_len call __dbg_PrintStrS ;;;;Exit: xor ebx, ebx xor ecx, ecx xor edx, edx mov eax, msg_Exit int i_SendMessageW%include "console_library.inc"%include "debug.inc";;;;strx db "Hello World!", 0x0Dstrx_len equ $-strx;---------------------------------------------------------------;;;; DATA;---------------------------------------------------------------_DATA_START equ $tb equ _DATA_STARTtb_len equ 20000_end_tb equ tb + tb_len_DATA_LEN equ _end_tb - _DATA_START
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -