#ifndef MELVIX_IO_H #define MELVIX_IO_H #include /** * Receive from specified hardware port * @param port The hardware port * @return The hardware response */ u8 inb(u16 port); /** * Receive from specified hardware port * @param port The hardware port * @return The hardware response */ u16 inw(u16 port); /** * Receive from specified hardware port * @param port The hardware port * @return The hardware response */ u32 inl(u16 port); void cli(); void sti(); void hlt(); /** * Send data to the specified hardware port * @param port The hardware port * @param data The data that should be sent */ void outb(u16 port, u8 data); /** * Send data to the specified hardware port * @param port The hardware port * @param data The data that should be sent */ void outw(u16 port, u16 data); /** * Send data to the specified hardware port * @param port The hardware port * @param data The data that should be sent */ void outl(u16 port, u32 data); /** * Initialize the serial conenction */ void init_serial(); /** * Write a single char to the serial port (QEMU logging) * @param ch The char */ void serial_put(char ch); #endif