Im 汇编语言如何访问外部 asm 文件中定义的字节(db)?例如:
::文件 1::
;All it contains is bytes in this file
BytesIWant db 'Hello, World!$'
::文件 2::
;In this file i want to print out the BytesIWant variable from File 1
mov ah, 09
mov dx, BytesIWant
int 21
现在我该如何完成这项任务?我还有一个问题。如何从主机文件运行另一个 asm 文件。示例:::主机文件::
;Random asm code goes here
{Here i want to start another asm program}
::程序开始:: 例如。NextThing.bin
mov ah, 09
mov dx, hi
int 21
hi db 'Hello!$'