Skip to content

Commit

Permalink
Fix FZ80 Makefile (Issue #407)
Browse files Browse the repository at this point in the history
- FZ80 Makefile failed to handle individual ROM build scenario.  Credit and thanks to Mark Pruden for this.
- Updated SIMH emulator to v4.1
  • Loading branch information
wwarthen committed Aug 19, 2024
1 parent ebfb5b3 commit 9df8773
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion Source/FZ80/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ FZ80ROM = ../../Binary/FZ80_std.rom
HD1KIMGS = ../../Binary/hd1k_cpm22.img ../../Binary/hd1k_zsdos.img ../../Binary/hd1k_nzcom.img \
../../Binary/hd1k_cpm3.img ../../Binary/hd1k_zpm3.img ../../Binary/hd1k_ws4.img

OBJECTS := $(HD1KFZ80PREFIX) $(HD1KFZ80COMBOIMG)
OBJECTS :=

ifneq ($(wildcard $(FZ80ROM)),)
OBJECTS += $(HD1KFZ80PREFIX) $(HD1KFZ80COMBOIMG)
endif

DEST=../../Binary

Expand Down
2 changes: 1 addition & 1 deletion Source/ver.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#DEFINE RMN 5
#DEFINE RUP 0
#DEFINE RTP 0
#DEFINE BIOSVER "3.5.0-dev.68"
#DEFINE BIOSVER "3.5.0-dev.69"
#define rmj RMJ
#define rmn RMN
#define rup RUP
Expand Down
2 changes: 1 addition & 1 deletion Source/ver.lib
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ rmn equ 5
rup equ 0
rtp equ 0
biosver macro
db "3.5.0-dev.68"
db "3.5.0-dev.69"
endm
Binary file modified Tools/simh/altairz80.exe
Binary file not shown.
Binary file added Tools/simh/altairz80_doc.pdf
Binary file not shown.
Binary file added Tools/simh/simh.pdf
Binary file not shown.
Binary file added Tools/simh/simh_doc.pdf
Binary file not shown.
Binary file added Tools/simh/simh_faq.pdf
Binary file not shown.

0 comments on commit 9df8773

Please sign in to comment.