12 lines
132 B
C++
12 lines
132 B
C++
#include <stdint.h>
|
|
|
|
#include "common/port.h"
|
|
|
|
#define COM1 0x3f8
|
|
|
|
extern "C" void zion() {
|
|
outb(COM1, 'a');
|
|
|
|
while (1)
|
|
;
|
|
}
|