Updated hello.c from putch() to printf().
[pdp11-modern-c] / pdp11 / pdp11_interrupt.c
CommitLineData
202004d5
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.h"
5
6void
7int4_c_handler(void)
8{
9 printf("\nHandling interrupt 4\n");
10}