diff options
| author | Aleksa Vučković <aleksav013@gmail.com> | 2021-10-24 18:47:28 +0200 |
|---|---|---|
| committer | Aleksa Vučković <aleksav013@gmail.com> | 2021-10-24 18:47:28 +0200 |
| commit | 0bca634f7e70b05239f46f3bd40bb37468d67957 (patch) | |
| tree | c4c121dea59ff4183ffb78da4eba75b61f8c8891 /src/asm.h | |
| parent | 1395dc42159d52ba36524fabe805897cd20bd01e (diff) | |
Fixing keyboard, changes to Makefile and string.h, trying to add heap...
Diffstat (limited to 'src/asm.h')
| -rw-r--r-- | src/asm.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/asm.h b/src/asm.h new file mode 100644 index 0000000..1d61b88 --- /dev/null +++ b/src/asm.h @@ -0,0 +1,9 @@ +#ifndef ASM_H +#define ASM_H + +#include"types.h" + +extern uint8_t ioport_in(uint8_t port); +extern void ioport_out(uint8_t port, char data); + +#endif |
