summaryrefslogtreecommitdiff
path: root/misc/sims
diff options
context:
space:
mode:
Diffstat (limited to 'misc/sims')
-rw-r--r--misc/sims/README.txt2
-rw-r--r--misc/sims/z80sim/README.txt2
-rw-r--r--misc/sims/z80sim/example/Makefile2
-rw-r--r--misc/sims/z80sim/example/example.asm2
-rw-r--r--misc/sims/z80sim/src/Makefile2
5 files changed, 5 insertions, 5 deletions
diff --git a/misc/sims/README.txt b/misc/sims/README.txt
index a7a902e59..7983ea19c 100644
--- a/misc/sims/README.txt
+++ b/misc/sims/README.txt
@@ -14,7 +14,7 @@ z80sim
This is an emulator for the Z80 instruction set. It is based
on the instruction set emulator by Marat Fayzullin but has
- been extended to load Intel hex format files as produced by
+ been extended to load Intel hex format files as produced by
the SDCC toolchain.
Sources and licensing
diff --git a/misc/sims/z80sim/README.txt b/misc/sims/z80sim/README.txt
index 2c813510d..6f63b4313 100644
--- a/misc/sims/z80sim/README.txt
+++ b/misc/sims/z80sim/README.txt
@@ -3,7 +3,7 @@ z80sim
This is an emulator for the Z80 instruction set. It is based
on the instruction set emulator by Marat Fayzullin but has
- been extended to load Intel hex format files as produced by
+ been extended to load Intel hex format files as produced by
the SDCC toolchain.
Sources and licensing
diff --git a/misc/sims/z80sim/example/Makefile b/misc/sims/z80sim/example/Makefile
index 1b12d3d75..901ceb12a 100644
--- a/misc/sims/z80sim/example/Makefile
+++ b/misc/sims/z80sim/example/Makefile
@@ -8,7 +8,7 @@ CC = /usr/local/bin/sdcc
CFLAGS = -mz80 --stack-auto --int-long-reent --float-reent
LD = /usr/local/bin/link-z80
-LDFLAGS =
+LDFLAGS =
ASMEXT = .asm
OBJEXT = .rel
diff --git a/misc/sims/z80sim/example/example.asm b/misc/sims/z80sim/example/example.asm
index ae0fc4f41..8dcbc31bd 100644
--- a/misc/sims/z80sim/example/example.asm
+++ b/misc/sims/z80sim/example/example.asm
@@ -53,7 +53,7 @@ hello:
start:
;ei ; Enable interrrupts
ld hl, #hello ; Say hello
- call print
+ call print
forever: ; Then stop execution
jp forever
diff --git a/misc/sims/z80sim/src/Makefile b/misc/sims/z80sim/src/Makefile
index 0b68816c7..58748d70c 100644
--- a/misc/sims/z80sim/src/Makefile
+++ b/misc/sims/z80sim/src/Makefile
@@ -7,7 +7,7 @@ CC = gcc
CFLAGS = -g -Wall -IZ80 -DLSB_FIRST=1 -DDEBUG=1 -DJUMPZ80
LD = gcc
-LDFLAGS =
+LDFLAGS =
SRCS = main.c Debug.c Z80.c
OBJS = $(SRCS:.c=.o)