Milli V #1 Posted December 14, 2015 Have a question about Adam's CP/M - I figured out how to use config.com to modify the screen color, text color etc and I see you can change the smart key assignments but I dont see a way of making them go away. During my experimenting with Assembly I have had a few occasions where I output garbage to the screen and these key assignments disappeared, I got the full 24 rows on the screen and when I press the smart keys I get ^D, ^E etc. Anyone know how I can actually do this on purpose and ger rid of them on the screen, I would prefer the having the full screen and not see them. Does Adam's CP/M emulate any old CP/M terminals and use escape codes (was thinking this may cause it to happen too)? Also as an FYI I just about have all code created to allow file transfers to and from CP/M via the Adamlink modem and will be posting them if anyone is interested. Milli Quote Share this post Link to post Share on other sites
NIAD #2 Posted December 14, 2015 I thought config.com has an option to display or hide the SmartKEY display... or perhaps i'm remembering the CP/M replacement and much improved T-DOS. Quote Share this post Link to post Share on other sites
Milli V #3 Posted December 14, 2015 I didn't see it but funny thing when I ran the same program a 2nd time it turned them back on! Quote Share this post Link to post Share on other sites
NIAD #4 Posted December 14, 2015 I'm not at my computer now, but is there a program on CP/M called KEYS.COM? Quote Share this post Link to post Share on other sites
Milli V #5 Posted December 15, 2015 No Keys Program Quote Share this post Link to post Share on other sites
Milli V #6 Posted December 21, 2015 It seems CP/M on the Adam is somewhat VT-52 compatible. You can use the Home cursor (Esc H) and clear to end of screen (Esc J) Escape sequences .org 0100H ld de,String ld c,9 call 5 jp 0 String: .db 27,"H",27,"J$" Quote Share this post Link to post Share on other sites