Imported slu/mmu/interrupt/register code from WIP memtester program into C template.
[pdp11-modern-c] / pdp11 / pdp11.c
/* (c) 2020 Aaron Taylor <ataylor at subgeniuskitty dot com> */
/* See LICENSE.txt file for copyright and license details. */
#include <stdint.h>
void
wait(uint16_t count)
{
while (count--) continue;
}