mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
This change introduces a 2.5kb program that's comes pretty close so far to bootstrapping John McCarthy's metacircular evaluator on bare metal.
7 lines
163 B
C++
7 lines
163 B
C++
asm(".pushsection .start,\"ax\",@progbits\n\t"
|
|
".globl\t_start\n"
|
|
"_start:\n\t"
|
|
"jmp\t1f\n1:\t"
|
|
"call\tmain\n\t"
|
|
"nop\n\t"
|
|
".popsection");
|