SWTPC 6800 - SDOS Operating System

Поділитися
Вставка
  • Опубліковано 27 жов 2024

КОМЕНТАРІ • 11

  • @idbaxter
    @idbaxter Рік тому +21

    Hi. SDOS Author here. Its great to see my OS running again after 40 years!

  • @lollyrae
    @lollyrae Рік тому +6

    I know the Software Designs founder, Ira Baxter. He's now running a business called Semantic Designs.... with the same SD logo as the original company. They're a software analysis tools company.
    Here's a comment I got from Ira about this video:
    Its great to see my OS running again after 40 years! SDOS was designed for fast performance for commercial applications on large disks (e.g., 10Mb), including indexed file; mostly this mean fast access to random locations in a big file. The SDOS design guaranteed at most 2 disk seek/read steps to get to any random file data: one read of a file header block, one read of the selected data block; In contrast, the linked sector OSes all had to riffle through linked sectors to get to random places OUCH!.. With the built in cache, the header block tended to stick around and so multiple random access to the file could be achieved in one seek/read step…. you can’t do better than that with really big files.

  • @Desmaad
    @Desmaad Рік тому +3

    The 6800 had a surprising number of operating systems.

  • @e_fission
    @e_fission Рік тому +1

    Thank you for another excellent, informative video. I'm surprised how many operating systems were available. It's neat to see what overlaps between them, and where they differed, too.

  • @herdware
    @herdware Рік тому +1

    That was a pretty neat OS.

  • @yankeebotanist4699
    @yankeebotanist4699 Рік тому

    Hi there!! Do you have a website by chance? Its regarding the telatype videos, do you make and sell the interface for a computer to a telatype? Might be getting one from the 1930's and need a way to interface with it.

  • @ninoivanov
    @ninoivanov Рік тому +1

    I don’t get this: videos like this, brilliant, in-depth, stylish, educational - 2-3k views; videos of some rando soldering through-hole components - boom, tens of thousands of views. UA-cam is really trash in how it rewards videos, essentially favoring online Idiocracy over valuable material.

  • @retrozmachine1189
    @retrozmachine1189 Рік тому

    I'm guessing it has a few sectors dedicated to the free space bitmap since there isn't a central file space allocation table.

    • @deramp5113
      @deramp5113  Рік тому +2

      The file DISKMAP.SYS is the used/free space bit map.

  • @steveblakely7296
    @steveblakely7296 Рік тому +1

    Of all the operating systems you have talked about for the 6800, which ones if any supported directory structures or did that come a lot later in DOS development?

    • @idbaxter
      @idbaxter Рік тому +3

      The biggest drive we had with SDOS was 10Mb. A single level directory was adequate to handle several thousand files. Name lookup was by hashing so it typically only took a single seek and sector read. We consider directory hierachies late in SDOS's life but didn't get there. It wasn't exactly a new idea; at least Multics (MIT circa 1967) already had this idea.