Skip to content

Commit

Permalink
Merge pull request #60 from gregkrsak/staging
Browse files Browse the repository at this point in the history
Update iNES header PRG/CHR ordering
  • Loading branch information
gregkrsak authored Oct 20, 2019
2 parents c15f52a + 4660019 commit cede1d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion data/header/ines_simple.inc
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@


.BYTE "NES", $1a
.BYTE $01 ; 1x 8KB VROM (CHR)
.BYTE $01 ; 1x 16KB ROM (PRG)
.BYTE $01 ; 1x 8KB VROM (CHR)
.BYTE %00000001 ; Mapper nibble 0000 == No mapping (a simple 16KB PRG + 8KB CHR game)
; Mirroring nibble 0001 == Vertical mirroring only

Expand Down
2 changes: 2 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,8 @@ Additional thanks to:

- [@ericandrewlewis](https://github.com/ericandrewlewis) for correcting some bad comments (PR [#53](https://github.com/gregkrsak/first_nes/pull/53)).

- [@nortti](https://github.com/nortti) for correcting my iNES header (PR [#55](https://github.com/gregkrsak/first_nes/pull/55)).


About my Development Environment
================================
Expand Down

0 comments on commit cede1d5

Please sign in to comment.