#6 in API & operating environments books
Use arrows to jump to the previous/next product

Reddit mentions of Operating Systems Design and Implementat: Design and Implementation

Sentiment score: 1
Reddit mentions: 1

We found 1 Reddit mentions of Operating Systems Design and Implementat: Design and Implementation. Here are the top ones.

Operating Systems Design and Implementat: Design and Implementation
Buying options
View on Amazon.com
or
    Features:
  • Special flatlock construction
  • Tucano Anit-Slip System
  • Rugged 3mm neoprene
Specs:
Height1.85039 Inches
Length7.99211 Inches
Weight2.7116856455267 Pounds
Width9.99998 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 1 comment on Operating Systems Design and Implementat: Design and Implementation:

u/MegaMuffindude ยท 1 pointr/electronics

According to the CP/M wikipedia page, you need the following to run it:

  • A computer terminal using the ASCII character set

  • An Intel 8080 (and later the 8085) or Zilog Z80 microprocessor

  • At least 16 kilobytes of RAM (beginning at address 0)

  • A means to bootstrap the first sector of the diskette

  • At least one floppy disk drive

    So with the parts list above along with the UART should be enough to meet the requirements. You will need to use banked memory or a similar mechanism (since you need the bootstrap code at address 0, but CP/M needs RAM at address 0 as well). Only problem is the floppy drive, which you should be able to overcome with a Compact Flash card, an CF to IDE converter, and a IDE interface. I haven't tried this myself but I think something like this would work.

    If you were interested in writing your own OS, Operating Systems by Woodhull Tanenbaum is a good book on the topic.