|
|
|
|
|
by refenestrator
1892 days ago
|
|
Sure, with more or less effort. C's semantics seem very easy to port, with very little abstraction over the commonalities that all (most?) assemblies share: computer as a giant array with a CPU and registers. There's a gaping hole in the abstraction when it comes to word size, but that's about it, and it's obvious to diagnose at least. Compared to the list of languages above with their more advanced features, it's super easy to port a C compiler and start compiling code. Worse is better. |
|