Files
my-os-project2/kernel/hal/x86_64/io.h

8 lines
147 B
C

#ifndef HAL_IO_H_
#define HAL_IO_H_
extern uint8_t io_inb(uint16_t port);
extern void io_outb(uint16_t port, uint8_t value);
#endif // HAL_IO_H_