开云体育

ctrl + shift + ? for shortcuts
© 2025 开云体育

using SDCC and stdio to Z80MC w/ CP/M 2.2....


 

Hello group! I did build my Z80 Membership Card, and it has been some fun. ?I intended to use it as a basic Z80 cpu board in an unrelated project, but figured I should play with it in its native form before changing the firmware. ?I'm impressed with the work that clearly went into it.
?
I did not get to use CP/M back in the day since it was expensive, so it was fun to explore now. ?It's amazing what we considered a system back then; lol.
?
While I can code in assembly, I prefer to do things in C where possible, and I'm using SDCC. ?I had to set up a CRT0 that was appropriate for CP/M and the Z80MC in particular. ?SDCC provides a pretty rich implementation of libc, but stdio is lacking since file i/o is system dependent. ?So I did what any programmer would do and implemented the parts of stdio for doing the FILE* stuff, e.g. fopen(), fclose(), fread/write/printf, etc. ?(and malloc seemed broken so I adjusted for that.)
?
Anyway, I don't know if anyone has interest in coding in C for CP/M, but if so I'm putting some files in the file space. ?This includes stdio-cpm-example-20241207a.zip, which contains a demo project exercising the library, along with the libs and headers for writing your own stuff. ?If you just want to run the test program first without building, there is also a disk image STDIOEX.BIN that can be mounted via CPMDISKS.TXT (I replace DISK-D.BIN with that), and then you can run STDIOEX.COM directly from it. ?It will printf some stuff, get keyboard input, and open, read, and write files showing stuff along the way. ?The source 'main.c' should be useful in showing how to construct a program. (I mean, it's standard C, but the headers and parsing the command line is different.) ?There are also the build scripts so you can see how to set up for assembling, compiling, and linking. ?You're on your own for installing SDCC! ?I think you can manage! ?It's easy! ?You might like cpmtools for manipulating disk images.

I need to clean up the library code then I'll put it on github for anyone curious to see the internals. ?I'm still implementing stuff (e.g. scanf(); yikes.)

Cheers!
-dave


 

Dave,
?
Started using C back late '79 using Ron Cains SmallC and soon after BDS C
natively on Z80 system. Also have HighTec-C and Nevada C.? Never
thought to use SDCC.? However all of the compilers have STDIO which
for CP/M is a ship that calls BDOS and BIOS for IO.? the BIOS provides
both raw and cooked interfaces and BDOS has resources that with some
translation gives standard C calls for disk IO.
?
If your not using CP/M then you have to create your own filesystem
and IO system.? Likely more work than desired.? My solution for
standalone systems was to put CP/M and needed utilities in
Eprom and tread that in the bios as a read only disk (Romdisk).
?
Malloc is maybe internal for the compiler as most all CP/M systems are
flat memory space typically 32 to? 60 kbytes and single threaded.
?
Including the Kaypros I have 17 systems running CP/M.? I've been doing
that since 1977.?
?
FYI the best book on using C and building CP/M software is
Andy Johnson-Laird, The programmers CP/M Handbook.??
?
?
Allison


 

That whole process looks to be all PC based/biased.?
?
All C code for CP/M? and 8085/z80 I do is using native tools
on CP/M systems.? There more than enough disk (uSD) and
ram to?run all the native CP/M tools and languages from
off the net.
?
Based on the code source I have SMC (small-C), Hitech-C,
and BDS-C as the usual tools.??
?
For the AmproLB+ using BDS-C:
?
C0> RT11.C
C0> RTMISC.C
C0> RTFILES.C
C0> CLINK RT11 RTMISC RTFILES
?
To run it
C0> RT11
?
Takes less than two minutes to do all that.
The Membership card is a little slower as the uSD is slower than
the AmproLB+ SCSI disk.? Both are running the Z80 at 4mhz.
It's possible to run the Z80 faster? as 6 and 10mhz parts are
not hard to find.
?
For faster the same task on a Z180 at 20mhz takes less time than
to type the command lines.? ?That's a? SC131...??
https://smallcomputercentral.com/sc131-z180-pocket-computer/
?
?
Allison


 

yes, indeed, SDCC is PC based, and may not be to the taste of those wishing to be period-accurate and develop on the target systems.? I imagine the vintage compilers are all K&R style?? I should try it out that way to appreciate the feel.? I did trivially hack the rom to make the power-on default 115200 bps.
?
My coming to this was somewhat roundabout, as I had used SDCC for other things before.? I needed to adapt crt0 for the board, and malloc didn't act the way I wanted, and then I got carried away with stdio (well, the missing FILE* stuff), hence the post if others had curiousity and wanted to save the trouble.? One can enjoy taking such excursions when it is not a paid effort for a client; lol!
?
The generated code can be quite fluffy.? I guess that's what you get for the conveniences of the language on a 8-bitter.? (can't imagine the generated code for a 6502)
?
I punted on scanf for the time being, but now I am distracted by thoughts of supporting the bank switching mechanism.? I suspect I would need to make some tool to plan linkage from the collection of object modules, and possibly generating thunks in non-paged memory.? Seems like a graph theory problem.

Anyway, some short term work popped up last week that will absorb me for the next 4 weeks, so I'll have to wait a bit for all that, alas.
?
I'll check out the book you mention -- CP/M is definitely new to me.? Fortunately systems' surface area tended to be smaller back then.

cheers!
-dave


 
Edited

The z180-based pocket computer (I have an essentially identical one called the "") is indeed a neat bit of kit.? Plenty of disk space, and so wonderfully fast compared to the 4 MHz Cromemco I spent so much time on the the 80s.? I wrote the BIOS on that so that it would support multiple terminals; a ^C typed at the command line while at the CCP prompt would transfer control to that terminal, and I had four of them of various types scattered throughout my little two-bedroom apartment.? Not quite a multi-user system, but close enough for a sole occupant.
?
I keep the SC131 on the large USB hub that my laptop plugs into when I'm in town (nearly all the time now, finally).? Often, when I need a break, I'll power it up and play with the tools I used then.? Frankly, I'm not convinced that my productivity is that much better with modern tools.? OK, a sophisticated IDE like Visual Studio on a 4k monitor does bring something to the table, for sure, but for embedded work a purely text-based world is still eminently functional.? At that time, I used Turbo Pascal a lot, because it was very fast, was a capable language, and the editor matched the WordStar control character set that my left hand knew (and still knows) so well.
?
I never used C on CP/M, but now I'm inspired to give it a try.? And I agree with your assessment of the Andy Laird book - it's still sitting on the shelf behind me.
~~
Mark


 

Mark,
?
That is the exact one I have. got it because it was small and had capability
matching some of my larger machines.? Indeed nice kit.? Still putting?
my usual work stuff on it.? Turbo Pascal and C wonderful IDEs.
?
Older machines include a much modified NorthStar* horizon.? That's S100,
10mhz z80, 256K ram with MMU, 512K ramdisk, 512K romdisk, Z-system,?
multiple smart disk controllers for Floppies and hard disk.??
?
The ones I use most are Kaypro 4/84 with Handyman, advent turbo rom
with personality card,? and 1mb Ramdisk.
?
AmplroLB+? Full z80 with 64K, SIO and SCSI to a 45mb 3.5" fujitsu
Runs P2DOS variant of CP/M.
?
Most are still being used as they are application loaded and have been in
my collection for over 4 decades.
?
Allison


 

Hi Dave,
?
I know SDCC is PC based but it inherent PCisms are notable.
?
Its compiler does not produce great code.? It works and runs
but you would think on a current generation PC there would
be better optimization.? Even for Z80 it does a lot of redundant
stack work and under utilizes the register set.? Actually most
do not as the assumptions of stacks and issues with addressing
modes are a handicap.
?
Code for 6502 is not terrible.? The compiler writer has to get
out of the hardware stack mentality.? ?The 6502 has a limited
hardware stack ( best used for subroutines only) but decent
selection of memory addressing modes.
?
The granddaddy of them all is PDP-11, as that was where C
as we know it originated and many of the nominal K&R pointers,
datatypes and the like are native addressing modes on that
machine. It also had a powerful MMU.? I have several PDP-11
systems.
?
Owing to the period of generation (very late 70s and early 80s)?
one has to expect K&R C is the standard.? Later C# and C++ are?
nearly a decade later.
?
As to IDEs Turbo Pascal and C were later and very good. they
migrated to DOS on PCs.? At that time a step up for PCs
and DOS languages.
?
Bank switching is easy, there is no standard mechanism
and CP/M does not support it (or prohibit it).? ?CP/M
applications?don't know to use it. So...
?
As to MMU and larger than 16 bit addresses, that were Z80
(and friends) were at a impasse.? ?The Z180 has it built in but
it adds little.? The two predominant schemes were whole
Bank switch (whole 64K pages) usually with a small common?
non-banked ram or paged with scatter gather using a
1/4/8/16/32k kb page size.? ?I have such a paged system
(1k page).? ?The real issue is CP/M based system? are flat
64K and programs do not look further.? The most common
use was to put an extended bios and maybe resident system
extensions outside normal workspace the TPA or the Transient
Program Area (from 100h to below the BIOS) and that could
be up to 63K though systems with 56K were considered large.
The other was to use the extended ram as fast disk.
?
Also tried?straight 64K ram system (about 1980) with fast
(ram disk) storage to do virtual paging.? ? Nothing to take
advantage of it and swaping overhead was high.? Worthwhile
but only got used for foreground/background operations
like printer spooling.
?
I also do hybrid...? Myz80 a full z80 system emulation in software
on the PC under linux/dosemu for when? a PC is handy but a
real system is not.? It has all the same tools as my real
hardware and can even transfer files PC space (either way).?
Turns out the PC editors are no better than VEDIT on CP/M.
?
If you want a Unix like system then Usi unix and kin are to
be looked at.? ITs big so banked memory is desirable.
?
That's 50 years of been there did a lot of that.
?
?
Allison


 

Hey, that's awesome! ?Amazing to talk to someone who was there for all that. ?Even more amazing that you are still doing it on period pieces, with period software!
?
I hadn't heard of the tools you mention, but I did hear of "Aztec C" -- maybe because they open sourced it a few years back.
?
Interesting that you and Mark mentioned the Z180 -- my first contract job was for the Hitachi variant that preceded it. ?Came about by accident; I was a young EE and the company I worked out made EPROM programmers. ?A client needed a 'personality module' for the 647180. ?While I was present for that site visit, I served no useful function. ?The client mentioned offhandedly about having some difficulty getting the LCD working. ?While my boss and the client were working on the personality module, I asked if I might try my hand at the LCD since I knew Z80 from earlier in 80's (when I worked on TRS-80s). ?So I wrote a driver for the LCD presenting a kind of puts()-esque interface, and tricked it out with some control characters to clear the screen and do cursor stuff. ?So the client asked if I would like a job. ?And for $10 whole bucks an hour! ?My boss got jealous and shortly thereafter raised me to $10 from the $7.50 I was then making. ?I thought I was so rich.
?
I learned a lot on that job. ?First, I didn't know people got paid to do software. ?I thought software was just something you made to make the hardware run -- who pays for that? ?Second, I was surprised to find out you don't need a CS degree to do software. ?All the other folks had degrees in chemistry, physics, etc. ?And the work environment was nicer and I didn't have to wear a tie. ?Five years later I switched to software full time. ?I expected to do it for 5 years and move on to something else, but I never did.
?
Anyway, keep the stories coming, they're interesting to hear (read). ?It was interesting also to read Lee's (actual) story about his days at Polaroid. ?Coincidentally, I interviewed with them in the 90's but didn't take that job. ?(Jobs were so plentiful then and folks would fight over you. ?It was surreal.)
?
Your mention of "Usi UNIX" is interesting -- I'll have to check that out. ?I also contemplated porting Lynx for fun, which I'm pretty sure will require all the extra pages I can throw at it.
?
Cheers!
-dave


 

Dave,
?
I was there from the start 8008 in '73 and Altair8800 (8080) December 1974
I was early adopter bleeding edge sort.
?
Period pieces...? Yes they are old but still work as they did then..or better.? ;)
I refer to them as fully debugged.? Lots of hardware improvements and
much more software.? Once I started with BIOS building I realized
more could be done and that most were so minimal it hurt.
?
Noteable S100 crates I have are Compupro, CCS, NorthStar* (two of them)
and a base 8slot backplane with full Compupro board set.
?
Aztec-C? I have it, doesn't stand out in my mind however. Available here.
?
The early Z180 the Hitachi part HG64180 is in my SB180, that's from ways
back and still use it occasionally.? ?Mine has the SCSI board talking to a
Zybec SCSI to MFM with a 3.5" MFM 20mb drive.? ? Micromint was the
vendor of the and IT was the cover system of the 1985 September Byte.
I put it in an old IBMPC Pizza box (thin profile) using the drives and
power supply.? ?Others include a modified Z80 card with a mezzanine
board with 64180 on it.? ? ?I also have a Micromint BCC180 that was
intended for control or embedded use.? So 64180 and kin are part
of the systems list.
?
As it works out a Z80 with 64K and two serial ports (DART or SIOB)
are a good start and rounding that out is some form of mass storage.?
Generally floppies were the rule early on but had two issues, slow and
small.? CP/M starts being more useful with larger drives of at least 512K
to the 8MB limit (or much larger for P2DOS and later) .? It solves the
problem of large projects needing multiple drives.? P2dos is a BDOS
replacement with improved internal math and written in z80 rather
than 8080.? It would spawn SUPRbdos, ZSdos, Zrdos and other
CP/M improved z80 replacements.? The CCP saw?improvements
with ZCCP and ZCPR and they all worked this existing BIOS though
by then people were also improving that.? So CP/M-80 from 1979 to
1985 saw a lot of growth and improvements that enhanced its
usefulness.? By then Conix a CCP overlay was used to get unix
like facilities like pipes, redirection, alias, and utilities.
?
To me the biggest weakness in CP/M was the file system.? Its flat
and a hierarchical file system was really needed.? There are things
done with aliases, system and user spaces (A0> though A15>) to make
that?more useful.? That and it was only usable for single user.
?
I mispelled Uzi Unix, there are a few flavors of that one for the P112
a Z180 board and others.? ? It eats memory.? Base kernel uses about 32K
and then you need banked/paged memory to do applications.? ?It was
useful when a CP/M interface (API) was added so it could? load and run
CP/M programs as those for unix were scarce and mostly utilities.
?
I had the fortune to be at DEC from 1983 to 93, great place to work and?
I got to do interesting stuff and work with interesting people.? That and
I had an LSI-11 before that.? Prior to that NEC Microcomputers, Hazeltine,
Automated processes (did i8008 stuff there in '73).? The market for
engineers took a plunge mid 90s due to?DEC imploding and others in
the region (eastern MA, southern NH...)? did as well.? Lot of talent
very few jobs.
?
Lynx.. RTOS, that should be easy.? There are many that have base
platforms on Z80/180.? RT systems are fun to do.??
?
?
Allison


 
Edited

When though full install of the SDCC on my main linux machine.
Reason was to find out in the flesh if it was batter than native...
?
The answer is, not really.? While its faster, the code pushed out
is not?better in any way on z80.? I expecteding the code is on a
PC based compiler?with lots of memory and processor available
it would be somewhat optimizing.? It does not.
?
While faster than running on 4mhz z80 over all between file
movement between PC and the real thing there was no gain.
Its fine if you live in the world of sims I'd expect.? ?It would
be handy for those building their first z80 or any of the
other supported machines and need "first code".
?
Useful experiment and new tools but better?? I can't say yes.
?
Allison


 

My experience with SDCC is a bit dated but I know it got a LOT better with Z88DK. There's a lot of optimization work by a whole lot of people and solid C libraries that work out of the box.
?
At the time I was comparing it to my home brew compiler on the 1802 but i was quite impressed with SDCC/Z88DK.


 

Thanks for looking into it and sharing back! ?Your experience mirrors mine; I find the SDCC code generation to be a bit fluffy. SDCC is a labor of love of its authors, so I suspect that advancements in optimisations are catch-as-catch-come.
?
My reflection on this mini-project is that SDCC can be a project accelerator if you want to use modern C authoring on a desktop dev env and are not picky about code size. If you've got the flash/ram, might as well use it. My acid test was compiling an HP15C emulator within this toolchain. This resulted in a program that fit in the 32 KiB banked region and there was plenty of RAM for variables in the non-banked region. Could it be smaller? Doubles. Could it be faster? Surely. Did it take months to implement? No, because I already had the code on-hand, so I just had to concoct build scripts and implement main() to start the emulator.
?
(Incidentally I did not complete this PoC implementation because I realized much to my chagrin that calculators presume the presence of a button matrix, so... whoops! I did implement the screen rendering of the keyboard and LCD using VT100 codes. This was slow even at 115kbps. The stdio fprintf() layer was about half as fast as CP/M BIOS calls, but really still too slow even then to be pretty to look at. Since this was just a PoC for code size and execution speed, I didn't bother investing in completing key mapping, or thinking laterally, making a parser for a CLI version.)
?
I chasing other wild geese just now, though I still might come back to this as even just now a buddy is wanting to re-purpose some vintage z80-based spectroscope with alternative firmware. (Indeed, the genesis of this activity is because of some folks wanting to reverse-engineer an esoteric language CAI machine called the 'Cefucom'. I could glean a lot from disassembling the rom dump but eventually one has to buzz out the wires to know what PIO-A-bit-7 is electrically connected to, and whether port 20h selects U24 or U25. My suggestion was a custom firmware that tweaks the lines in a predictable way such that you can observe the chip select logic with a multimeter rather than reverse engineering all the intermediary SSI decode. So it was handy to be able to crank that out quickly irrespective of generated code quality.)
?
Thanks so much, Allison, for your insights and also your tales from the trenches of how things were. And are they materially different now? Or just more and faster? Well, I guess quantum computing seems different, or is that just the re-imagining of analog computers?
?
73, AG5TH, dave


 

For native CP/M I have a shopping list of compliers to
compare to.? For raw code development speed and
ease BDS-C is my goto.? For editors I have VEDIT and as
screen oriented editor its very good with real terminals
(most PC terminal emulators fail hard for keyboards
that do not? match real terminals).
?
Haven't played with Z88DK, just no reason to have a SmallC
on pc when I have it on native Z80.? So I skipped it.? Actually
I have two versions one for 8080/8085 and the Z80 with
peephole optization and matching libraries for both.
?
Generally C is nice with complex data structures and
other projects where some level of portability is nice.
However C on z80 has a tendancy to eat ram.
?
I can think in 8085/z80, habit and years of doing it.? ?
That and I have a nearly 5 decades of code including
a macro library for both that is optimized.? Both take
advantage of undocumented instructions that are
different for 8085 and z80.? The 10 "hidden"
instructions that all 8085 have and actually can
improve code.? For Z80 there are special cases
where the undocumented by Zilog but documented
by everyone else that makes z80s do help code
size and speed.
?
That is the difference between CP/M systems which
have resources memory, io, and storage.? Also CP/M
had basic tools supplied so it had a useful starting point.
That and I've had hard disks on CP/M since mid 1980
so the archive is larger never mind the WC-CDROM
for shear volume.??
?
On one of my Kaypros has Handyman a secondary rom
that piggybacked the z80 and added handy stuff like a
calculator, note pad editor, and calendar plus other items.
IT also operated independant of CP/M and could copy
results to CP/m applications.
?
Years back I used a flavor of Tiny basic married to the CCP
to make a scripting command line.? I was spoiled by
VAX/VMS DCL (Digital Command Line) which was a
interpreted language in itself? with explicit and implied
scripts and very powerfull.? ?This is back early 80s where
I was trying to get big iron features on a Z80 CP/M machine
and largely succeeding.? Then again I had PDP-8 and PDP11
hardware and OSs to incite and inspire.
?
As a to a calc for CP/M most assumed VT52/vt100/vt220?
all having keypad.? Many other terminals did as well as
most emulated Vt100.
?
" I wish I had now what I was used to then."
?
Allison


 

I never knew of Z88DK; I'll have to try it out!