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>2018-08-30 20:36:41 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2018-08-30 20:42:59 +0300
commit0b21729666d73e014013f819b31c34794e723ff4 (patch)
tree08632003fae8419494423a1a857313d1f0682d59
parent19dcc93d46f5a121255ecf682c9c4306a5d9432a (diff)
Makefile fix, version 3.0b3.0b
-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/"