blob: 3c618d602901e9ff710c15fc7d948d0004ac87dd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
#ifndef MELVIX_IO_H
#define MELVIX_IO_H
#include <stdint.h>
/**
* Receive from specified hardware port
* @param port The hardware port
* @return The hardware response
*/
uint8_t receive_b(uint16_t port);
/**
* Receive from specified hardware port
* @param port The hardware port
* @return The hardware response
*/
uint16_t receive_w(uint16_t port);
/**
* Receive from specified hardware port
* @param port The hardware port
* @return The hardware response
*/
uint32_t receive_l(uint16_t port);
/**
* Send data to the specified hardware port
* @param port The hardware port
* @param data The data that should be sent
*/
void send_b(uint16_t port, uint8_t data);
/**
* Send data to the specified hardware port
* @param port The hardware port
* @param data The data that should be sent
*/
void send_w(uint16_t port, uint16_t data);
/**
* Send data to the specified hardware port
* @param port The hardware port
* @param data The data that should be sent
*/
void send_l(uint16_t port, uint32_t 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);
/**
* Write a string to the serial port (QEMU logging)
* @param data The string
*/
void serial_write(const char *data);
/**
* Write a hexadecimal formatted int to the serial port (QEMU logging)
* @param n The decimal number
*/
void serial_write_hex(int n);
/**
* Write a decimal number to the serial port (QEMU logging)
* @param n The decimal number
*/
void serial_write_dec(int n);
#endif
|