inctest.asm

来自「一个汇编语言编译器源码」· 汇编 代码 · 共 14 行

ASM
14
字号
; This file, plus inc1.asm and inc2.asm, test NASM's file inclusion
; mechanism.
;
; This produces a DOS .COM file: to assemble, use
;    nasm -f bin inctest.asm -o inctest.com
; and when run, it should print `hello, world'.

	  BITS 16
	  ORG 0x100

	  jmp _main

%include "inc1.asm"

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?