Search found 5 matches

by WolfCorp
Mon Jan 28, 2019 4:49 pm
Forum: Newbie Help Center
Topic: NESASM3 doesn't recognize .rs directive
Replies: 8
Views: 5000

Re: NESASM3 doesn't recognize .rs directive

Syntax means the order of words, bytes, characters; think "grammar". What you have: variables: .rsset $0000 ;put starting location at 0000 .rs score1 1 ;reserve 1 byte for var score1 at $0000 .rs score2 1 ;reserve 1 byte for var score2 at $0001 .rs marioflip 1 ;reserve 1 byte for var at $...
by WolfCorp
Mon Jan 28, 2019 4:22 pm
Forum: Newbie Help Center
Topic: NESASM3 doesn't recognize .rs directive
Replies: 8
Views: 5000

Re: NESASM3 doesn't recognize .rs directive

Sorry for the very delayed reply :( Also, I apprenciate your suggestion about the emulator. In which sense "the syntax part"? If you refer to the Nerdy Nights tutorial, I don't recall any part about syntax; well, it may be in the very first lessons I believe, but I still think I grasped th...
by WolfCorp
Mon Jan 28, 2019 12:13 pm
Forum: Newbie Help Center
Topic: NESASM3 doesn't recognize .rs directive
Replies: 8
Views: 5000

Re: NESASM3 doesn't recognize .rs directive

From what I can tell (from looking at NESASM's usage.txt), the syntax is score1 .rs 1 , not .rs score1 1 . I'm using the NESASM3 compiler and the FCEUXSP emulator. Try not to rely on a single emulator for development. FCEUX and its derivatives, in particular, are somewhat lenient in certain areas c...
by WolfCorp
Mon Jan 28, 2019 12:08 pm
Forum: Newbie Help Center
Topic: NESASM3 doesn't recognize .rs directive
Replies: 8
Views: 5000

Re: NESASM3 doesn't recognize .rs directive

Ah, sorry! It was a test, but it doesn't work anyway.
by WolfCorp
Mon Jan 28, 2019 11:31 am
Forum: Newbie Help Center
Topic: NESASM3 doesn't recognize .rs directive
Replies: 8
Views: 5000

NESASM3 doesn't recognize .rs directive

Hello everyone. I got into NES development a few days ago. I'm currently reading Nerdy Nights Week 7 (Nested loops and JSR stuff) and making a tiny game in the meanwhile. I'm using the NESASM3 compiler and the FCEUXSP emulator. I'm trying to allocate a few variables like score1 and score2, but all m...