im having a bit of trouble reserving space and with labels
a.asm:6: error: parser: instruction expected
edit should mention im using intel syntax
section .data
msg db "test",0x10
section .bss
mtstr resb 1000
string resb 1000
public _print
mov eax,4
mov ebx,1
mov string,mtstr
mov ecx,string
mov edx,1000
section .text
global _start
_start:
mov msg,mtstr
call _print
ret
int 80h
mov eax,1
mov ebx,0
int 80h