??!!
Posted: Thu Nov 27, 2003 6:52 pm
What's wrong with this code?
idt:
dw int_0
dw 20h
db 0
db 8eh
dw 0
idt_end:
idt_descriptor:
size dw idt_end - idt - 1
dd idt
When i compile with nasm 'nasm -f coff', it says COFF do not support 32-bit-relocations. But, the aout format compiles the code.
idt:
dw int_0
dw 20h
db 0
db 8eh
dw 0
idt_end:
idt_descriptor:
size dw idt_end - idt - 1
dd idt
When i compile with nasm 'nasm -f coff', it says COFF do not support 32-bit-relocations. But, the aout format compiles the code.