|
|
|
|
|
by rsaxvc
1176 days ago
|
|
I've seen even those forced to C, with such gems I've run into like: Link-time stack resolution(and aliased even, so pretty good density) Default int is char. Please use short or ANSI int.(because 16-bit int would be painfully slow) Recursion is not supported in this memory model(because the stack is resolved at link time, so...) Function pointers must be compile-time resolvable(I think this machine didn't have a way to represent program counter values in GPRs/variable jumps) "Function prototypes are an ANSI feature"(part of compiler the front-end also used on a bunch of UNIX box compilers). |
|