Hello,
As you can see on my signature, I'm a very experienced Assembly developer, but as every beginner on a Assembly language, we can do some mistakes, then I've written this to test if the compiler works(nesasm):
But when I was compiling I've got some errors:
Someone can help me?
Best Regards,
Nathan Paulino Campos
As you can see on my signature, I'm a very experienced Assembly developer, but as every beginner on a Assembly language, we can do some mistakes, then I've written this to test if the compiler works(nesasm):
Code:
.bank 0
.org $8000
ldx #$01
stx #200
.org $8000
ldx #$01
stx #200
But when I was compiling I've got some errors:
Code:
ubuntu@eeepc-laptop:~/dev/nes-learning$ nesasm test.asm
NES Assembler (v3.01)
pass 1
#[1] test.asm
1 00:E000 .bank 0
Local symbol not allowed here!
2 00:E000 .org $8000
Local symbol not allowed here!
4 00:E000 ldx #$01
Unknown instruction!
5 00:E000 stx $200
Unknown instruction!
# 4 error(s)
ubuntu@eeepc-laptop:~/Desktop/nesasmsrc/nesasmsrc/source$
NES Assembler (v3.01)
pass 1
#[1] test.asm
1 00:E000 .bank 0
Local symbol not allowed here!
2 00:E000 .org $8000
Local symbol not allowed here!
4 00:E000 ldx #$01
Unknown instruction!
5 00:E000 stx $200
Unknown instruction!
# 4 error(s)
ubuntu@eeepc-laptop:~/Desktop/nesasmsrc/nesasmsrc/source$
Someone can help me?
Best Regards,
Nathan Paulino Campos