Initial commit to 'Modern C Template For PDP-11' repository.
[pdp11-modern-c] / pdp11 / pdp11.h
CommitLineData
846f4d60
AT
1/* (c) 2020 Aaron Taylor <ataylor at subgeniuskitty dot com> */
2/* See LICENSE.txt file for copyright and license details. */
3
4#ifndef SGK_PDP11_H
5#define SGK_PDP11_H
6
7#include <stdint.h>
8
9void putch(uint16_t);
10uint16_t getch(void);
11void wait(uint16_t);
12
13#endif /* SGK_PDP11_H */