section .data
message db "Hello World!$"
section .text
global _start
_start:
mov eax, 4
mov ebx, 1
mov ecx, message
int 0x80
mov eax, 1
int 0x80
There are probably a whole bunch of mistakes in this... I am using windows xp 32 bit. If it helps, I am using this as a virtual machine. Would this conflict with the code?