Hello,
my english is maybe not very good. So please forgive me.
When I compile a program comes the message, that it is not compatible with 64 bit.
Please tell me, how must I compile a program that it runs on windows 64 bit?
For example a simple program that writes hello world to the console.
Please tell me all I need to know that the program writes hello world.
segment code
start:
mov ax, data
mov ds, ax
mov dx, hello
mov ah, 09h
int 21h
mov al, 0
mov ah, 4Ch
int 21h
segment data
hello: db 'Hello World!', 13, 10, '$'