this post was submitted on 26 Apr 2024
829 points (97.6% liked)

Open Source

30379 readers
861 users here now

All about open source! Feel free to ask questions, and share news, and interesting stuff!

Useful Links

Rules

Related Communities

Community icon from opensource.org, but we are not affiliated with them.

founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 31 points 4 months ago (2 children)

"Who the hell" writes an OS in assembler in the 80s? Uh, some of the utilities are in C, but compilers were slow and generated slow code back then, and it was quite noticable on a slow machine. When every byte of memory counts, you often need to hand-optimize.

[–] [email protected] 7 points 4 months ago (1 children)

My DOS computer from the 90s is sluggish with some of the more complex hand-written assembly things. C and UNIX were for powerful multi-user uses.

Roller Coaster Tycoon was written in assembly for optimization too.

[–] [email protected] 2 points 4 months ago

The Amiga's OS was written in 68k asm and BCPL (C's grandfather) for the kernel, and C was used for the utilities and GUI. But this was considered quite ahead of its time for a single user micro.

[–] [email protected] 5 points 4 months ago (1 children)

Even today some parts need to be written in assembly, like context switches.

[–] [email protected] 2 points 4 months ago

Most critical sections should be.