Imported slu/mmu/interrupt/register code from WIP memtester program into C template.
[pdp11-modern-c] / pdp11 / pdp11.c
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#include <stdint.h>
5
846f4d60
AT
6void
7wait(uint16_t count)
8{
9 while (count--) continue;
10}