2023-05-17 20:20:53 -07:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2023-05-17 20:26:51 -07:00
|
|
|
#include "common/port.h"
|
2023-05-17 20:20:53 -07:00
|
|
|
|
2023-05-17 20:26:51 -07:00
|
|
|
#define COM1 0x3f8
|
2023-05-17 20:20:53 -07:00
|
|
|
|
|
|
|
extern "C" void zion() {
|
|
|
|
outb(COM1, 'a');
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
;
|
|
|
|
}
|