8 lines
104 B
C
8 lines
104 B
C
|
#include "up_internal.h"
|
||
|
|
||
|
void os_start(void)
|
||
|
{
|
||
|
up_lowputc('X');
|
||
|
up_lowputc('\n');
|
||
|
for (;;);
|
||
|
}
|