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:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2020-11-01 13:57:28 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2020-11-01 13:58:46 +0300
commit82f5320d8ba6a242460f30a31e8bdab5fc9dbb6f (patch)
tree51b0dcfce06628e4a2d68d19f43ceb9cee0e91e6
parent463cadc703e23f2531ccd2f6fe74357658308655 (diff)
Version 3.3v3.3
-rw-r--r--README.md3
-rw-r--r--source/main.c4
2 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index 4d599dd..5fe6c7d 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# nesasm CE v3.2 - a 6502 assembler with specific NES support
+# nesasm CE v3.3 - 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.
@@ -6,6 +6,7 @@ Just another modification of nesasm. Based on modification by Tim Hentenaar whic
* Support for much longer filenames and labels
* Automatic generation of symbol files for FCEUX debugger
+* NES 2.0 support with very large files support, mappers up to 4095, submappers, etc.
* GNU/POSIX style command line options
* It's possible to define all output filenames now
* Code cleanup: all warnings are fixed, PCE code leftovers removed
diff --git a/source/main.c b/source/main.c
index aa1beb8..f03628a 100644
--- a/source/main.c
+++ b/source/main.c
@@ -21,11 +21,11 @@
*
* Modifications by:
* Bob Rost
- * Alexey Avdyukhin
+ * Alexey 'Cluster' Avdyukhin
*
*/
-#define VERSION "v3.2"
+#define VERSION "v3.3"
#define DESCRIPTION "a 6502 assembler with specific NES support"
#define GITHUB_URL "https://github.com/ClusterM/nesasm/"