This change includes many bug fixes, for the NT polyfills, strings, memory, boot, and math libraries which were discovered by adding more tools for recreational programming, such as PC emulation. Lemon has also been vendored because it works so well at parsing languages.
27 lines
678 B
C
27 lines
678 B
C
#ifndef COSMOPOLITAN_TOOL_BUILD_EMUBIN_REAL_H_
|
|
#define COSMOPOLITAN_TOOL_BUILD_EMUBIN_REAL_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
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");
|
|
|
|
forceinline void SetEs(int base) {
|
|
asm volatile("mov%z0\t%0,%%es" : /* no outputs */ : "r"(base));
|
|
}
|
|
|
|
forceinline void SetVideoMode(int mode) {
|
|
asm volatile("int\t$0x10"
|
|
: /* no outputs */
|
|
: "a"(mode));
|
|
}
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_TOOL_BUILD_EMUBIN_REAL_H_ */
|