mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
2d80bbc802
blinkenlights now does a pretty good job emulating what happens when binaries boot from BIOS into long mode. So it's been much easier to debug the bare metal process and wrinkle out many issues.
14 lines
471 B
C
14 lines
471 B
C
#ifndef COSMOPOLITAN_TOOL_BUILD_LIB_TIME_H_
|
|
#define COSMOPOLITAN_TOOL_BUILD_LIB_TIME_H_
|
|
#include "tool/build/lib/machine.h"
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
void OpPause(struct Machine *, uint32_t);
|
|
void OpRdtsc(struct Machine *, uint32_t);
|
|
void OpRdtscp(struct Machine *, uint32_t);
|
|
void OpRdpid(struct Machine *, uint32_t);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_TOOL_BUILD_LIB_TIME_H_ */
|