8 lines
147 B
C
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_
|