i use a boot that other's,the first line is :[org 0],and
i usr nasmw boot.asm,then err msg:is except start line
what's means?
nasm 's boot problem
- Pype.Clicker
- Member
- Posts: 5964
- Joined: Wed Oct 18, 2006 2:31 am
- Location: In a galaxy, far, far away
- Contact:
Re:nasm 's boot problem
are you sure your boot.asm file is designed for nasm ?
and are you sure you didn't made HTTP mess up your file ?
never saw things like this : in an assembler, but it looks much like the encoding of a Unicode character in HTML (é � etc ...)
and are you sure you didn't made HTTP mess up your file ?
never saw things like this : in an assembler, but it looks much like the encoding of a Unicode character in HTML (é � etc ...)
Re:nasm 's boot problem
sorroy,&65306 is no in file,
the [ORG 0]
jmp 07C0h:start ; Goto segment 07C0
is error i said,and the nasmw 1.asm will be:
E:\MyOs>nasmw 1.asm
1.asm:7: error: label or instruction expected at start of line.the file is said it can be nasmw,can you help me,i
post the file attach.
[attachment deleted by admin]
the [ORG 0]
jmp 07C0h:start ; Goto segment 07C0
is error i said,and the nasmw 1.asm will be:
E:\MyOs>nasmw 1.asm
1.asm:7: error: label or instruction expected at start of line.the file is said it can be nasmw,can you help me,i
post the file attach.
[attachment deleted by admin]
- Pype.Clicker
- Member
- Posts: 5964
- Joined: Wed Oct 18, 2006 2:31 am
- Location: In a galaxy, far, far away
- Contact:
Re:nasm 's boot problem
the only thing i see is that the [ORG] directive *must* start the line. I.e. having white space before it on the same line will fail and say "unrecognized directive [[ORG]" ...
Maybe you should check no update is available for nasm ...
Maybe you should check no update is available for nasm ...
- Pype.Clicker
- Member
- Posts: 5964
- Joined: Wed Oct 18, 2006 2:31 am
- Location: In a galaxy, far, far away
- Contact:
Re:nasm 's boot problem
yep. That [directive] syntax looks not fully supported by nasm ...