Retro programming! Pascal and CP/M on an RC2014 Z80 computer

  Рет қаралды 24,130

NCOT Technology

NCOT Technology

4 жыл бұрын

Let's investigate CP/M on my RC2014 Z80 based computer.
CP/M was an operating system before MS-DOS existed, and it requires surprisingly few resources to run. This computer runs at 7MHz and has 64K of RAM. CP/M itself fits into just 8K!
If you want the code for the Pascal Mandelbrot program, it's on this pastebin URL pastebin.com/ALGdMnbs

Пікірлер: 111
@bogywankenobi3959
@bogywankenobi3959 2 жыл бұрын
Boy this brings me back. I had an S100 buss machine with two, count 'em, two 8 inch floppies. It had an assembler, a basic interpreter and a basic compiler - BASCOM. But it came alive for me when I learned PASCAL and got my first Borland compiler for $30.00. PASCAL was the first, and, to this day, the cleanest programming language that has ever been. l learned it from a professor who was a hardware engineer for Nick Wirth. If I ever got stuck on something I went back to the railroad diagrams and plowed right through the speed bump. Those railroad diagrams made me realize how easy it could be to implement a compiler as long as the language could be described by such a clean format/representation. It was a one-pass compiler and I loved the pre-declaration requirement - whatever "it" was had to be declared before it was referenced - variables, constants, types, functions, procedures, whatever. And the executables were tighter than anything ever produced by a C compiler - even the Borland turbo C compiler. I programmed on that box for 2 or 3 years before the PC came out but I can't tell you what I programmed, with 2 exceptions - I programmed my senior project on it (I was an electrical engineering (digital hardware) student), and I wrote a CP/M version of a unix program called GREED. That was all 40 years ago in the early '80s. So many fond but fading memories. Thanks for the reminder.
@blackhole7818
@blackhole7818 Ай бұрын
I loved reading it. Thanks❤
@donaldcongdon9095
@donaldcongdon9095 Жыл бұрын
WordStar was trivial to learn. I got up to speed playing with it after school in just a couple of days and started writing papers in it immediately. Those were heady days!
@francisverhelst9375
@francisverhelst9375 4 ай бұрын
I still love Pascal, one of the best programming languages ever. I started with hisoft pascal on a zx spectrum, later on an amstrad. Then i switched to turbo pascal on the early pc’s and continued with Delphi. I learned myself object oriented programming with delphi and i loved it. It is so much better than any c variant, although c sharp comes close
@janikarkkainen3904
@janikarkkainen3904 3 жыл бұрын
This was actually the first proper show of how RC2014 works, and I still don't get it, but I haven't found videos that show how it works better than this video! Thanks!
@BrainSlugs83
@BrainSlugs83 3 жыл бұрын
One of the advents of the CP/M era was the common standardized BIOS (Basic Input/Output System). It had well known software interrupt handlers baked into the ROM which basically defined a software API. It made it so that any program could work on any computer with a compatible BIOS. The programs didn't need to know how to move the cursor or how to write text to the screen, they just called the appropriate interrupts with the correct values loaded into certain registers and it would trigger the function they wanted to accomplish. On a side note: in Windows 10, there's a registry setting you can turn on that will enable the old ANSI terminal commands if your software depends on those. As for future projects, it would be neat to build a video card for this (even if it used a microcontroller, or perhaps an old scavenged ISA card), and to program a BIOS to use the video card instead of writing to the serial port.
@wayland7150
@wayland7150 Жыл бұрын
That's so cool that Turbo Pascal runs on this. That was my programming language along with C in the 1980's. I used to use a C cross compiler called Avocet to compile Z80 programs on my PC.
@LarryRobinsonintothefog
@LarryRobinsonintothefog 10 күн бұрын
Used Pascal on a TRS-80 at college where they had a CP/M computer (used an Intel CPU) and Turbo-Pascal and Borland C at home.
@TSteffi
@TSteffi 11 ай бұрын
I can recommend TeraTerm on windows. Does a great job as VT100 /ANSI terminal. I have recently written a BIOS for CPM 3 for John Winans' z80 retro board and it's a lot of fun.
@dereklassen4841
@dereklassen4841 3 ай бұрын
Where did you get CP/M 3? Please. TYIA, (S) Derek
@TSteffi
@TSteffi 3 ай бұрын
@@dereklassen4841 if you google for "CPM source code", the page comes up. It has all sources for not only cpm 3, but 2.2 and mp/m as well
@gordoncraig8238
@gordoncraig8238 3 жыл бұрын
That CPM format on compact flash has become the standard thing for several computers like N8VEM and FPGA boards. It's a pig to access from a PC. The best I was able to do was to lift the first 8M and access the A drive user 0 with cpmtools. There are a lot of files in the image under users 1-15. It's an utter pain in CPM to move files between users. You're right about Basic. Reading someone else's code in Basic is a nightmare. It's interesting looking at so many old languages in CPM.
@antondovydaitis2261
@antondovydaitis2261 3 жыл бұрын
I used to program in LISP on my CP/M 68K machine. LISP is meant to represent formal mathematical structures, so there's a lot of weird things one can do in LISP, like taking derivatives and doing integrals, calculating with polynomials, or even write LISP programs that rewrite themselves. One of the oldest programming languages, I haven't heard of it being used much lately, although AutoCAD and Mathematica were based in LISP.
@ncot_tech
@ncot_tech 3 жыл бұрын
We did Prolog at university, and I had a look at Lisp when trying to learn EMACS back in the 90s. I quickly discovered I never got on with that style of programming. Either the syntax was too confusing, or the way you think kept confusing me. I watched either Computerphile/Numberphile or StandupMaths writing some code using Haskell and the way you can write code that calculates sequences of numbers with barely any code was interesting, but I couldn’t work out how it was functioning.
@Kw1161
@Kw1161 3 жыл бұрын
Amiga basic helped me get thru my Fortran 77 class. Basic came out of Fortran, and Amiga basic didn't need line numbers, so I could code my assignments into Amiga basic and used a minimum tweaking to compile into Fortran. This kept me from an hour commute to the computer lab. Ah the good old days.
@ncot_tech
@ncot_tech 3 жыл бұрын
As a kid I couldn't cope with BASIC without line numbers, it just didn't make any sense to me :) Wasn't until I started learning Pascal that "real" programming made sense.
@Kw1161
@Kw1161 3 жыл бұрын
@MichaelKingsfordGray 🤔
@wayland7150
@wayland7150 Жыл бұрын
Smart move. I hated line numbers and BASIC. I switched to Assembler because I found it easier.
@Lucretia9000
@Lucretia9000 Жыл бұрын
AmigaBASIC was written by Microsoft and true to form crashed every time you used it. Never loaded it again.
@willofirony
@willofirony Жыл бұрын
You have been successful in leaving 100s of men (maybe women too) with the most childish of grins remembering the challenges of 8 bit programming. Retro programming is a curious phenomenon. Why would intelligent humans yearn for antiquated technology when they are watching videos such as this on technology that has almost limitless resources? I think I may have an answer (no, I am not going to insult me fellow viewers). When humans come up against limited resources, they are at their most creative. They experience incredible achievements to come up with results that if performed on current technology would be seen as a slog. So, thank you for this trip down memory lane. Is there a decent IDE and C compiler on CP/M? Compilers were considered exotic creatures back in the day. I still had loads of fun with Z80 and 6502 assembly but would have been far more productive with Visual Studio. Happy days.
@Darphi01
@Darphi01 2 жыл бұрын
Maze Maker was a good one. It makes mazes with ASCII characters
@janikarkkainen3904
@janikarkkainen3904 3 жыл бұрын
8:10 THIS. Programming is not knowing about a specific language and syntax, but the idea about how everything works behind it. If you know the specific paradigm - procedural, OOP, functional - you can just use the language if you have a reference. And the thing is people these days think that Google and Stack Overflow isn't the same thing as those 2000 page reference manuals we used in the 90's for checking the syntax. If you know one programming paradigm, you know all the languages that use that if you just check the syntax and code reference. (I personally still have problems with understand functional programming as a paradigm - I sometimes get it, but I still couldn't code my way out of my life in LISP) ((ALSO sorry for spamming the comments, I commented as I was watching, much many comments came :D )
@neozeed8139
@neozeed8139 2 жыл бұрын
You need to find XMODEM or any other upload protocol to transfer data! I guess there would be com stuff in the bbs era, also compression too! CP/M is kind of limiting by it's size, but you have Basic, Pascal, Fortran and even C! The real limiting stuff will be that CP/M is geared towards text only. I dont know if there is video cards for the rc2014 although there should be yamaha sound cards, to at least give you music!
@PauloConstantino167
@PauloConstantino167 3 жыл бұрын
I likes. Please continues
@hinzster
@hinzster 3 жыл бұрын
7MHz is 3.5 times as fast as what I had, back in the day (Apple II CP/M-card, which ran at 2MHz)...
@tawandagamedevs
@tawandagamedevs 4 жыл бұрын
seeen your work on the olc i liked it
@prozacgodretro
@prozacgodretro 3 жыл бұрын
ProTip: .... Putty on windows can do serial communication last I looked and is very good on it's ansi support.
@ToasterWithFur
@ToasterWithFur 3 жыл бұрын
Wanted to say the same
@mikecook317
@mikecook317 Ай бұрын
I really enjoy your video, but it's way above my head. I would like to have a retro-CP/M prebuild, like a Phoenix256 or a Commander X16 or such. Also, I like to play around with BASIC hobby coding. If anyone here wants a fast line number style BASIC for a modern computer, PC-BASIC is a free download. It would run this code shown above very,very quickly.
@edgeeffect
@edgeeffect 3 жыл бұрын
"CP/M and Pascal" now there's a couple of things that "give me the warm and fuzzies". GOTO is programming for "real men"! ;)
@jonwest776
@jonwest776 2 жыл бұрын
There's a T-shirt!
@wayland7150
@wayland7150 Жыл бұрын
I remember learning Jackson Structured Programming, aimed at Pascal. There was this thing called program inversion that required the use of a GOTO to deliberately break structure. Say you were printing a report, that had a structure, each page had a header and footer, the report had a title and column headings, body data and sub totals and totals. Yet the data itself had a different structure. You were supposed to structure your program around the structure of the data but in this case the structure of the report as well. The conflict was resolved using a single well placed GOTO.
@SpeccyMan
@SpeccyMan 3 жыл бұрын
There are structured BASICs. The only real issue with programming in the language was laziness on the part of the programmer by not using top-down design and stepwise refinement and by writing the code away from the computer - essential to good programming.
@wayland7150
@wayland7150 Жыл бұрын
Well if you're using a Structured BASIC then it's practically PASCAL. It's not true that using good programming solved the problems of BASIC. I was struggling to write a large program in BASIC and being as disciplined as possible but it was becoming a nightmare with two letter variable names and all global namespace. Switching to Turbo PASCAL transformed everything. Now I could have a for/next loop with I as many times as I wanted with no conflicts to give a very simple example. Being able to pass values and variables was extremely valuable. In fact for large programs MS BASIC was so bad that Assembler was more structured. If you needed to use a register in a subroutine you could push it on the stack and pop it off when done. If you want to write a 40 line program that's basically one procedure then nothing beats BASIC. Anything more than 100 lines is a total dogs dinner.
@f15sim
@f15sim 3 жыл бұрын
FYI, you can redraw the screen in the Turbo Pascal editor by hitting Ctrl-L.
@FrancisFjordCupola
@FrancisFjordCupola Жыл бұрын
To be honest, modern operating systems don't derive from DOS. Current day Windows come from Windows NT. That did get some bits and bolts to run some ancient code, but it was different from the ground up. Edit: I'm glad to have grown up with BBC Micro's ... at least the BASIC on there had things like functions and procedures, didn't need to GOTO anything.
@janikarkkainen3904
@janikarkkainen3904 3 жыл бұрын
You have the same syndrome as me. I've been taught to not fix what's working. However, I do not consider stuff working "adequately" as working, so I keep trying to fix it to perform better. I think that's kind of the drive for innovation and trying to make things - never settle for less than perfect (though it's important to learn to accept "just good", perfectionism is such a disease - better to have done than not at all because you don't know how to make it perfect)
@jonwest776
@jonwest776 2 жыл бұрын
Get an engine running before you tune it.
@perfectionbox
@perfectionbox 2 жыл бұрын
CP/M on a Z80? Cmon, TRSDOS for the win! 🤣
@janikarkkainen3904
@janikarkkainen3904 3 жыл бұрын
6:01 Yes, that's what I call fun. :P
@janikarkkainen3904
@janikarkkainen3904 3 жыл бұрын
Man PASCAL was the first real language I learned programming on (I do not count BASIC as a real programming language)
@ncot_tech
@ncot_tech 3 жыл бұрын
It was my first real language too. I think it was the first language where I realised I could do more than type in other people's code.
@calebfuller4713
@calebfuller4713 3 жыл бұрын
That's a bit elitist... why would you not consider BASIC a real language? I know it had that reputation back in the day, but I've always felt it was a bit unfair really. That said, if you want a good BASIC for CP/M, look at Microsoft BASIC 80. It's pretty functional for it's day, and almost identical to the Locomotive BASIC that came on the Amstrad CPC.
@janikarkkainen3904
@janikarkkainen3904 3 жыл бұрын
@@calebfuller4713 Yeah, I actually agree with you on this. I'm a bit self-contradictory on this, as I hate gatekeeping and I'm all for making programming accessible for everyone. In my defense all I can think of is that back in the day there was no easy way to compile BASIC, and it is missing high level data constructs in most dialects, not to mention other QoL features which would make me want to develop bigger projects than simple gamelets. So, yes, BASIC is a real programming language, and no, I don't feel like it is, for possibly irrational reasons. I remember C64 Basic, GW-Basic, QBasic, and even Blitz Basic and Amos Basic, both of which had some higher level constructs and were compilable iirc. Pascal was the first I actually felt like I was actually programming, Basics just always feel to me like some introductory, "you are not going to ever use this but you'll learn basic programming principles" course.
@calebfuller4713
@calebfuller4713 3 жыл бұрын
@@janikarkkainen3904 I understand. BTW there was Microsoft BASIC compiler for CP/M! But yes, I think the interpreted nature of most implementations made people feel it wasn't suitable for large projects. I mean, you could point out the lack of modern definable sub-routines and functions, and the unstructured nature of many programs with their excessive GOTO, but then FORTRAN had all those issues (which is where BASIC got them from) and no-one ever said FORTRAN wasn't a real programming language! 🤣 I guess back then, each programming language was somewhat unique and they all had distinct looks and feel. It's ironic when you look at more modern versions they all seem to have gradually converged, borrowing ideas from each other and dropping stuff that's obsolete, to the point the code on most looks almost identical! Basic looks like Fortran looks like Cobol looks like Pascal looks like C, and they all seem to look like Java! 😂
@SpeccyMan
@SpeccyMan 2 жыл бұрын
BASIC is a real programming language!
@wayland7150
@wayland7150 Жыл бұрын
I remember Kermit file transfer. That's got error correction and compression.
@zoltanpekic3119
@zoltanpekic3119 4 ай бұрын
I think RC2014 also has a FPU board (Am9511) I wonder if Pascal could use it for massive speed improvement 🙂
@croysk
@croysk 4 жыл бұрын
What didn’t you like about Putty on windows? I use minicom on Linux, minicom or ZTerm on OS X and Putty on Windows. Putty has good terminal emulation and is fairly configurable.
@ncot_tech
@ncot_tech 4 жыл бұрын
As an ssh client Putty was quite good (although now I’ve found Bitvise which handles disconnections better). I just found the combination of Windows Terminal, WSL and minicom a nice combination. It felt like a “real” Linux terminal.
@ThomasCouey
@ThomasCouey 3 жыл бұрын
Putty is probably the best general purpose terminal emulator on Windows. Lately I have started using Microsoft SSH client in Windows Terminal for ssh sessions though. The config file option for SSH is great... it’s allows you to just use a simple alias for common connections and not have to mess with a bunch of command line options if you’re connecting to nonstandard ports or using different usernames. For serial connections though... Putty every time.
@Wobblybob2004
@Wobblybob2004 3 жыл бұрын
I agree the "DOWNLOAD" program is a pain. I use winrar to zip my files without compression (store) then send them to my cp/m machine with Xmodem and unzip them there. It's a bit more typing but a lot less hassle.
@wayland7150
@wayland7150 Жыл бұрын
Or set up a BBS system on your PC and use a terminal program on the CP/M to download files.
@lumirvanek8608
@lumirvanek8608 4 жыл бұрын
Nice video, thx for it. It's possible download pascal mandelbrot source ? I want run it on my RC2014.
@ncot_tech
@ncot_tech 4 жыл бұрын
I've just put it on this pastebin pastebin.com/ALGdMnbs
@BryanChance
@BryanChance Жыл бұрын
Wow.. i remember using Aztec C, HiTec, dbase, wordstar, televideo, osborne, kaypro, LOL Can CPM handle graphical output like with a VGA adapter something like that.
@IkarusKommt
@IkarusKommt 9 ай бұрын
No, it was for text terminals only.
@marcusk7855
@marcusk7855 3 жыл бұрын
Is there a VGA board for the RC2014? Probably need a keyboard input too.
@ASCIITerminal
@ASCIITerminal 3 жыл бұрын
I'd suggest trying Forth or COBOL for a different programming experience.
@ncot_tech
@ncot_tech 3 жыл бұрын
I did COBOL on my A Level Computing course back in the day. It was an experience, that's for sure 😬
@VVerVVurm
@VVerVVurm 3 жыл бұрын
Forth can do so much with such ridiculous hardware requirements .. but it is so obscure for people like me not used to it .. :-/
@ASCIITerminal
@ASCIITerminal 3 жыл бұрын
It's actually not that bad. It's just a different way of thinking.
@wayland7150
@wayland7150 Жыл бұрын
@@ASCIITerminal Think like Yoda, you do, to use FORTH.
@alt0v14
@alt0v14 8 ай бұрын
My rc2014 doesn't want to write anything to CF under cp/m, don't know how to diagnose this problem.
@rdoetjes
@rdoetjes 3 жыл бұрын
Doesn’t it use XMODEM to upload files?
@ncot_tech
@ncot_tech 3 жыл бұрын
If you can get something like Kermit running, it can do more useful file transfers. I couldn’t make it work though, so ended up using the download tool.
@TimGreenOwb
@TimGreenOwb 3 жыл бұрын
@@ncot_tech Use PuTTY on your windows machine. It knows how to transfer using Xmodem.
@andrewwasson6153
@andrewwasson6153 9 ай бұрын
@@ncot_techI’m 3 years late to this but on a Windows host I’ve been using TeraTerm XMODEM to send/receive files to and from 8-bit 1802 programs on an OS called ELF/OS. Granted you would need some code within CPM in order to initiate the transfers, I’d be surprised if they don’t exist. I’m using a program called Serial (I think) on MacOS which handles it as well. I enjoy a little retro programming for recreation too.
@edgarmatzinger9742
@edgarmatzinger9742 3 жыл бұрын
Didn't CP/M have a kermit capable communication program? Then there *is* a bit of error checking.
@ncot_tech
@ncot_tech 3 жыл бұрын
Yeah, but I couldn't make the PC side work for some reason.
@johnwilson3918
@johnwilson3918 3 жыл бұрын
Hi James, Does the BASIC (ROM version) support DATA, POKE and USR? I guess you can poke machine code into some safe place in RAM and run Z80 code. Back in the old days - I used MASM80 (Z80 Assembler) under CPM, sending code to Z80 game machines using a PIO chip. Best wishes - I'm sure the 'break' statement is a special 'goto' statement, BTW! Damn!
@ncot_tech
@ncot_tech 3 жыл бұрын
John Wilson I think basic does support those commands, they’re listed on this site searle.x10host.com/z80/SimpleZ80.html#RomBasic which is the basic used by the RC2014. So yeah, you could probably assemble some Z80 and then put the hex values into a little BASIC program like we did on the ZX Spectrum.
@johnwilson3918
@johnwilson3918 3 жыл бұрын
@@ncot_tech Happy days!
@wayland7150
@wayland7150 Жыл бұрын
Yes, it breaks structure. There is a legitimate structured programming use for GOTO when you need to break structure rather than spoil your clean structure with IF statements.
@Lucretia9000
@Lucretia9000 Жыл бұрын
Get bbc basic and you can write inline assembly.
@samcoupe4608KB
@samcoupe4608KB 2 жыл бұрын
dma?
@oisnowy5368
@oisnowy5368 3 жыл бұрын
I'd say try programming BBC Basic. You can do it on a modern Raspberry Pi as long as you can stick RiscOS on it. You'll see that you can program without a single GOTO.
@calebfuller4713
@calebfuller4713 3 жыл бұрын
Microsoft BASIC, while not quite as structured as the BBC version, did support GOSUB/RESUME, so you could also write relatively strucured code without GOTO if you wanted to. Unfortunately it won't GOSUB so you still need fixed line numbers and good commenting. There IS a DEF FNxxx() that lets you make simple user defined functions though - unfortunately only standard BASIC formulas, not full code.
@wayland7150
@wayland7150 Жыл бұрын
@@calebfuller4713 Night and day. BBC BASIC was pretty much PASCAL or at least the bits that made PASCAL better than BASIC. The BBC Micro was the most amazingly well designed 8 bit computer ever. Commodore and Atari had some fancy hardware features but the Beeb allowed you to plug ROMs into the motherboard for extra functionality. MS BASIC was thrown onto every other home computer. Excellent for maths and print statements and features to poke the hardware but a terrible applications programming language.
@DavidAdkins
@DavidAdkins 4 жыл бұрын
Sorry. I meant search for Kilobaud archives
@StrapMerf
@StrapMerf Жыл бұрын
We are talking jape of the decade. We are talking April, May, June, July and August fool. That's right. I am Queeg.
@inerlogic
@inerlogic 3 жыл бұрын
You know something i'd like to see done? I'd like to see someone write tetris for CP/M :) IIRC the original was written in PASCAL....
@kevincozens6837
@kevincozens6837 2 жыл бұрын
Yes, it has been done and in Pascal. See c64retr.blogspot.com/2016/09/cpm-tetris-clone-in-turbo-pascal-30.html
@wayland7150
@wayland7150 Жыл бұрын
I bet there is Tetras for CP/M.
@inerlogic
@inerlogic Жыл бұрын
@@wayland7150 yeah the problem is finding one that works with the terminal emulators
@Kw1161
@Kw1161 3 жыл бұрын
Can it run SymbOS? Thanks for the video.
@ncot_tech
@ncot_tech 3 жыл бұрын
As it is no, there's no display hardware and only 64k of RAM/ROM. But if someone made a video board for it, then ... I supposed technically it could.
@Kw1161
@Kw1161 3 жыл бұрын
@@ncot_tech I watched a video of a Amiga being modified to output HDMI from a daughter board used as a Hat on a Raspberry Pi Zero and the Denise chip. If could find a graphic chip from a Spectrum or Armstand that used a Z80 or Z180 CPU well maybe I could be possible,... Thanks for the update.
@Kingcobra6699
@Kingcobra6699 5 ай бұрын
Isn't 7mhz a bit fast?! The C64 ran at 1mhz, and some squeezed a lot out of a C64... 256kb of RAM??? That seems excessive for CPM. Not that I ever really used it. But I played around with it. A Commodore c128 also had a Z80 and a CPM Disc. But even back in 1989ish there was hardly any Software - it was really already completely obsolete by then.... Maybe some companies might have still had an old Z80 machine. Yeah! GOTO statements! That is how you learn to code the real way!!! Not even using labels but mind less line numbers. That way your brains memory got trained to the Max. Of course nobody else could read your code. But then eventually not using them anymore was the really fun Part. It made things so much better 😊😊😊😊😊 I agree CPM was very unintuitive. In my case the arrow keys might have worked to control the Cursor, but it was rather a surprise if something else worked as expected. Usually it didn't 😢 Since I had zero documentation it was pretty useless even in the late 80s. I mean I had a Commodore c128. It had 3 modes: c64, c128 and cpm The c64 Mode was the one to use to play games but it was only 40 characters wide (320x200px). The c128 Mode was useful to use a terminal emulator and go online with it since it was 80 characters wide. That also made it a valid word process ing option. The CPM Mode was just useless compared to the other two.... I really tried to use it but it was to hard to get Software or Information about it. I also never met anyone in real life who had even heard about it ( except from me), let alone used it....
@manelsoria2403
@manelsoria2403 4 жыл бұрын
You can try mumath
@informaticalasvegas1950
@informaticalasvegas1950 3 ай бұрын
why?
@calebfuller4713
@calebfuller4713 3 жыл бұрын
Actually a good program to try on CP/M would be dBASE II. This was a full multi-file relational database system that had it's own interpreted language targetted at database manipulation. It's about as sophisticated a business application you're likely to find, as you can use it to develop any business application that is built around databases. (Well, you could probably write a text adventure with it too... 😂) It later got ported to MS-DOS, and was the leading database application during the 80s. (p.s. You WILL need to find a pdf manual or reference for it, as it just loads to a "." prompt. If you have a manual, the actual dBASE code is pretty easy to get the hang of though, especially if you already know programming.)
@wayland7150
@wayland7150 Жыл бұрын
That's a very good choice. I think Borland may have had some database products for CP/M because they had them for MS-DOS.
@allanm6246
@allanm6246 2 жыл бұрын
Pascal is a great language and it is fast
@wayland7150
@wayland7150 Жыл бұрын
Oh yes, it's very fast compared to MS BASIC which is the other option you might consider.
@IkarusKommt
@IkarusKommt 9 ай бұрын
There's no such language as 'Pascal', even less on 8-bit machines.
@KillaBitz
@KillaBitz 3 жыл бұрын
Queeg-500 lol
@StrapMerf
@StrapMerf 3 жыл бұрын
@MichaelKingsfordGray given the reference, probably much much older.... April, May, June, July Fools
@MrStevetmq
@MrStevetmq 11 ай бұрын
You do know that the structure of a program is down to the programmer and not the language. A BASIC program can be as structured as any other. The big problem was that may programs written in BASIC have been written by people that have never learned structured programming. I program in C, PASCAL and BASIC and they all seem very much the same but maybe that is because of the way I code. I find looking unknown PASCAL code just as confusing as looking unknown BASIC code. Lets take a very simple counting program. PASCAL First program forLoop; var a: integer; begin for a := 10 to 20 do begin writeln('value of a: ', a); end; end. From a BASIC programers view point: Why do we need the key words "do", "begin" they seem superfluous. Now the same in BASIC For a=10 to 20 Print "value of a: ",a Next a The only thing we don't know about is if "a" is a integer or not. How ever we can just say the default type in integer. Now if we add the superfluous key words to the BASIC program we get: For a=10 to 20 do begin print "value of a: ",a Next a end Or adding even more superfluous lines begin for a = 10 to 20 do begin print "value of a: ", a next a end end Or we could remove the superfluous key words from PASCAL var a: integer; for a := 10 to 20 writeln('value of a: ', a); end; end.
@BaronVonBiffo
@BaronVonBiffo 3 жыл бұрын
I can't hear what you're saying because of the bloody awful 'music' blasting away.
Connecting a 1980s Z80 CPU to an Arduino, making a hardware debugger.
15:22
Zilog Z80 Deep Dive - How does it work?
15:05
NCOT Technology
Рет қаралды 22 М.
你们会选择哪一辆呢#short #angel #clown
00:20
Super Beauty team
Рет қаралды 27 МЛН
Heartwarming: Stranger Saves Puppy from Hot Car #shorts
00:22
Fabiosa Best Lifehacks
Рет қаралды 20 МЛН
First Microcomputer OS: CP/M - Computerphile
9:42
Computerphile
Рет қаралды 62 М.
Let’s test CP/M and MS DOS on the Kaypro 4 Plus 88!
32:05
retrobits
Рет қаралды 9 М.
Z80 Retro #24 - CP/M Introduction
1:16:44
John's Basement
Рет қаралды 19 М.
FORTH - Better than BASIC?
14:30
NCOT Technology
Рет қаралды 37 М.
Gary Kildall - The Man That Should Have Been Bill Gates - Part I
33:40
Telcon Zorba или связь CP/M с внешним миром
53:58
Кирилл Лейфер
Рет қаралды 191 М.
Programming Windows Screensavers - Agon Light Graphics Programming
37:49
Designing a Card Slot Modular Z80 Computer
14:29
Joshua Coleman Makes
Рет қаралды 42 М.
Z80 Retro #25- CP/M BIOS Boot & Console
1:16:24
John's Basement
Рет қаралды 7 М.
YOTAPHONE 2 - СПУСТЯ 10 ЛЕТ
15:13
ЗЕ МАККЕРС
Рет қаралды 181 М.
Опять съемные крышки в смартфонах? #cmf
0:50
Спутниковый телефон #обзор #товары
0:35
Product show
Рет қаралды 2,2 МЛН
Samsung Galaxy 🔥 #shorts  #trending #youtubeshorts  #shortvideo ujjawal4u
0:10
Ujjawal4u. 120k Views . 4 hours ago
Рет қаралды 2,2 МЛН
PART 52 || DIY Wireless Switch forElectronic Lights - Easy Guide!
1:01
HUBAB__OFFICIAL
Рет қаралды 35 МЛН
OZON РАЗБИЛИ 3 КОМПЬЮТЕРА
0:57
Кинг Комп Shorts
Рет қаралды 1,3 МЛН