Imported slu/mmu/interrupt/register code from WIP memtester program into C template.
[pdp11-modern-c] / hello.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 "pdp11/pdp11.h"
5
6void
7hello(void)
8{
9 wait(01000);
10 putch('H');
11 putch('e');
12 putch('l');
13 putch('l');
14 putch('o');
15 putch(',');
16 putch(' ');
17 putch('W');
18 putch('o');
19 putch('r');
20 putch('l');
21 putch('d');
22 putch('!');
23 putch('\n');
24}