mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
b6793d42d5
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");
|