Search found 8 matches
- Wed Jan 25, 2012 2:49 am
- Forum: Newbie Help Center
- Topic: First time Homebrewer
- Replies: 32
- Views: 9469
- Wed Jan 25, 2012 2:43 am
- Forum: Newbie Help Center
- Topic: First time Homebrewer
- Replies: 32
- Views: 9469
Ok so I am up to making the sprites move: LatchController: LDA #$01 STA $4016 LDA #$00 STA $4016 ; tell both the controllers to latch buttons ReadALeft: LDA $4016 ; player 1 - A AND #%00000001 ; only look at bit 0 BEQ ReadADone ; branch to ReadADone if button is NOT pressed (0) ; add instructions he...
- Wed Jan 25, 2012 1:37 am
- Forum: Newbie Help Center
- Topic: First time Homebrewer
- Replies: 32
- Views: 9469
- Tue Jan 24, 2012 7:18 pm
- Forum: Newbie Help Center
- Topic: First time Homebrewer
- Replies: 32
- Views: 9469
My god this is confusing lol as I'm sure it was for everyone else when they started :P One part in the tutorial that is confusing me the most is how to load in and draw a picture. I have a file with the Mario sprites to make it easier, I am trying to figure out how to load Mario as an entity and the...
- Tue Jan 24, 2012 6:21 pm
- Forum: Newbie Help Center
- Topic: First time Homebrewer
- Replies: 32
- Views: 9469
- Tue Jan 24, 2012 6:00 pm
- Forum: Newbie Help Center
- Topic: First time Homebrewer
- Replies: 32
- Views: 9469
- Tue Jan 24, 2012 4:47 pm
- Forum: Newbie Help Center
- Topic: First time Homebrewer
- Replies: 32
- Views: 9469
- Tue Jan 24, 2012 3:58 pm
- Forum: Newbie Help Center
- Topic: First time Homebrewer
- Replies: 32
- Views: 9469
First time Homebrewer
Hello everyone, I am very interested in making homebrew nes games and can't wait to get started. I am studying game design at my uni and want to test my metal as a designer with older styles of games "that is what I like more". I have read many tutorials explaining how assembly works and I...