HOWTO: Build your own CP/M3 BIOS for Z80-MBC2 #3
Ho-Ro
announced in
Announcements
Replies: 1 comment 1 reply
-
Thanks Martin, this build disk is a great thing! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This topic popped up on SuperFabius' repo. I do not want to hijack his project - let's discuss further here.
I wrote:
If you want to build your own Z80-MBC2 BIOS you could try my BIOS source. Either use my Linux cross-build or put my disk image on the SD card. Both support building with
make
, all required CP/M tools are provided.@pawosm-arm asked:
Answer: It depends - all tools are available, but CP/M must find them.
To use my
MAKE.COM
/MAKEFILE
solution it is important to haveSUBMIT.COM
in your PATH (actually it's on A:), I achieve this through myA:PROFILE.SUB
which defines the search path and other things.Result:
A quick test with disabled profile gave exactly your error message.
Rationale:
MAKE.COM
checks the dependencies defined inMAKEFILE
and creates the
MAKE@@@.SUB
file with all necessary commands to resolve these dependencies. At the end of this analysis processMAKE@@@.SUB
is executed bySUBMIT MAKE@@@.SUB
.As a fix I've put all needed tools, i.e.
SUBMIT.COM
,ERASE.COM
,andRENAME.COM
on the driveN:
disk image and updatedREADME.MD
accordingly. Now this is a real stand-alone build disk.Martin
Beta Was this translation helpful? Give feedback.
All reactions