Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoW03 committed Dec 9, 2024
1 parent 4836d02 commit 977f056
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,6 @@ download it here

https://fceux.com/web/download.html

## Release

you can also download the build on itch.io

https://theow25.itch.io/nes-pong


## Controls

Expand Down
4 changes: 2 additions & 2 deletions src/main.s
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ reset:
txs

; clear PPU registers
ldx $00
ldx #$00
stx $2000
stx $2001

Expand Down Expand Up @@ -85,7 +85,7 @@ reset:
cli
lda #%10010000 ; vblank status
sta $2000
lda #%00011110 ; vblank status
lda #%00011110 ; enable renderering
sta $2001
lda #87
sta seed
Expand Down
2 changes: 0 additions & 2 deletions src/util.s
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ wait_for_vblank:
; this is the source for the algorithm for random numebrs.

prng:


ldy #8 ; iteration count (generates 8 bits)
lda seed
:
Expand Down

0 comments on commit 977f056

Please sign in to comment.