Search found 8 matches

by Camronas
Wed Jan 25, 2012 2:49 am
Forum: Newbie Help Center
Topic: First time Homebrewer
Replies: 32
Views: 9469

Wait I got it :) I need to list all the controls in order from A to Right.
by Camronas
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...
by Camronas
Wed Jan 25, 2012 1:37 am
Forum: Newbie Help Center
Topic: First time Homebrewer
Replies: 32
Views: 9469

OMG I AM SOME KIND OF TECHNO WIZARD!!! I was able to make the background red instead of blue!?! Thanks a lot :) I know you basically said the same thing as the tut but I got your way more. Thanks ill keep you posted if I have more trouble.
by Camronas
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...
by Camronas
Tue Jan 24, 2012 6:21 pm
Forum: Newbie Help Center
Topic: First time Homebrewer
Replies: 32
Views: 9469

Quick question, and most likely a stupid one. Is their a staple of MUST have codes in assembly "nes in particular" becasue in c++ you need to include all of your other files and stuff. So do you need to declare anything? Other then sprites, pallets, and variables of course.
by Camronas
Tue Jan 24, 2012 6:00 pm
Forum: Newbie Help Center
Topic: First time Homebrewer
Replies: 32
Views: 9469

Thanks Ill keep that in mind, at the moment I'm just downloading files other people have done and am trying to revers engineer it to see if I really understand whats going on. So far little success :P But Error is a part of learning.
by Camronas
Tue Jan 24, 2012 4:47 pm
Forum: Newbie Help Center
Topic: First time Homebrewer
Replies: 32
Views: 9469

Thanks ill do that :) I started reading Nerdy Nights and its been very interesting so far, but then I came across this in the comments: http://www.nintendoage.com/forum/messageview.cfm?catid=22&threadid=33287 It has been easier for me to understand so far, and might encourage others to read it t...
by Camronas
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...