I am using VS2008 C++ (no libs). This is my code:
__asm
{
jmp start
msg:
db "http://www.stackoverflow.com"
dtfld:
db "00/00/0000"
tmfld:
db "00:00:00"
start:
I am getting the following errors:
Error 1 error C2400: inline assembler syntax error in 'opcode'; found 'bad token'
Error 2 error C2400: inline assembler syntax error in 'opcode'; found 'bad token'
Error 3 error C2400: inline assembler syntax error in 'opcode'; found 'bad token'
Why is this?