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/Makefile2
-rw-r--r--source/main.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index c052fde..74c4a92 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# nesasm CE v3.0 - a 6502 assembler with specific NES support
+# nesasm CE v3.0b - 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/Makefile b/source/Makefile
index 1a77fc7..f762809 100644
--- a/source/Makefile
+++ b/source/Makefile
@@ -4,7 +4,7 @@ COMMIT_INFO = commit.h
CFLAGS = -O2 -Wall
ifeq ($(OS),Windows_NT)
- LDFLAGS += -largp
+ LDFLAGS += /usr/lib/libargp.dll.a
endif
OBJS = main.o input.o assemble.o expr.o code.o command.o\
diff --git a/source/main.c b/source/main.c
index 915fa05..34457ca 100644
--- a/source/main.c
+++ b/source/main.c
@@ -25,7 +25,7 @@
*
*/
-#define VERSION "v3.0"
+#define VERSION "v3.0b"
#define DESCRIPTION "a 6502 assembler with specific NES support"
#define GITHUB_URL "https://github.com/ClusterM/nesasm/"