this post was submitted on 03 Aug 2024
1090 points (99.2% liked)

Programmer Humor

32867 readers
754 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
1090
submitted 5 months ago* (last edited 5 months ago) by [email protected] to c/[email protected]
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 48 points 5 months ago (4 children)

Assembly code is for writing C compilers, and C compilers are for writing Lisp interpreters.

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

I saw a Scheme interpreter written in assembly running a C compiler written in Scheme.

[–] [email protected] 29 points 5 months ago (1 children)
[–] [email protected] 3 points 5 months ago* (last edited 5 months ago)

There’s actually good reasons for this design. It’s easy to write a Scheme interpreter in assembly, but it’s hard to write a C compiler in assembly that handles everything correctly. Much rather write it in higher level language if possible and Scheme lowers the bar to getting there, so you can get away from using assembly as quickly as possible. Or you can copy somebody else’s Scheme implementation of a C compiler because now you’re platform independent.

Then you can write your C compiler in C (or steal a better compiler already written in C) and close the loop. For your final step, you use the C compiler to compile itself.

[–] [email protected] 14 points 5 months ago* (last edited 5 months ago) (3 children)

Only the most very basic compilers. C compilers are in C mainly.

[–] [email protected] 10 points 5 months ago* (last edited 5 months ago)

Not the first C compiler obviously. According to this Stack Overflow post, BCPL* begat B, which begat C. Language self-hosting is pretty fascinating.

*Perhaps BCPL was originally written in assembly; I’m not certain: https://github.com/SergeGris/BCPL-compiler

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

Talking about bootstrap here?

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

And that's how you get the Thompson hack

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

Back in High School in the 80’s me and a buddy wrote a Z-80 editor assembler in TRS-DOS BASIC.

It was not rocket science.

[–] [email protected] 5 points 5 months ago* (last edited 5 months ago) (1 children)

I never did get very far with the TRS-80 Editor Assembler, but that was my first exposure to such things.

I also remember the BASIC code for the Dancing Daemon which was replete with PEEKs and POKEs, such that much of it was written in machine code.

[–] [email protected] 2 points 2 weeks ago

Exactly how we did it too. We created the editor/assembler that peeked to see what was there and display it in Assembly, Hexadecimal, and ASCII.

You could edit whichever version you wanted and it would Poke it into RAM.

You could also save swaths to a file.

[–] [email protected] 2 points 2 weeks ago

True, it was computer science.