我在 Windows 7 64 位上使用 Flat Assembler。我正在尝试编译一个简单的程序,但它正在编译为 16 位程序。有些程序似乎编译得很好,但是在搜索了一段时间的 hello world 示例后,程序没有运行。
org 0x100
mov dx, msg ; the address of or message in dx
mov ah, 9 ; ah=9 - "print string" sub-function
int 0x21 ; call dos services
mov ah, 0x4c ; "terminate program" sub-function
int 0x21 ; call dos services
msg db 'Hello, World!', 0x0d, 0x0a, '$'
我应该怎么做才能防止它编译为 16 位程序?