Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/nesasm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--source/main.c5
2 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index 37a90b8..aabe4b6 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# nesasm CE v3.3 - a 6502 assembler with specific NES support
+# nesasm CE v3.4 - a 6502 assembler with specific NES support
Just another modification of nesasm. Based on modification by Tim Hentenaar which is based on modification by Bob Rost which is based on modification of nesasm 2.51 from MagicKit.
diff --git a/source/main.c b/source/main.c
index a86422a..2998300 100644
--- a/source/main.c
+++ b/source/main.c
@@ -25,7 +25,7 @@
*
*/
-#define VERSION "v3.3"
+#define VERSION "v3.4"
#define DESCRIPTION "a 6502 assembler with specific NES support"
#define GITHUB_URL "https://github.com/ClusterM/nesasm/"
@@ -272,6 +272,7 @@ main(int argc, char **argv)
constset("PPU_CTRL", 0x2000);
constset("PPUMASK", 0x2001);
constset("PPU_MASK", 0x2001);
+ constset("PPUSTAT", 0x2002);
constset("PPUSTATUS", 0x2002);
constset("PPU_STATUS", 0x2002);
constset("OAMADDR", 0x2003);
@@ -286,7 +287,6 @@ main(int argc, char **argv)
constset("PPU_ADDR", 0x2006);
constset("PPUDATA", 0x2007);
constset("PPU_DATA", 0x2007);
- constset("PPU_OAM_DMA", 0x4014);
constset("SQ1VOL", 0x4000);
constset("SQ1_VOL", 0x4000);
constset("SQ1SWEEP", 0x4001);
@@ -325,6 +325,7 @@ main(int argc, char **argv)
constset("DMC_LEN", 0x4013);
constset("OAMDMA", 0x4014);
constset("OAM_DMA", 0x4014);
+ constset("PPU_OAM_DMA", 0x4014);
constset("APUSTATUS", 0x4015);
constset("APU_STATUS", 0x4015);
constset("JOY1", 0x4016);