* as/z80/z80mch.c: fixed bug #1704376: missing as-z80 errors
[fw/sdcc] / support / regression / tests / bug1348008.c
1 /*
2    bug1348008.c
3 */
4
5 #include <testfwk.h>
6
7 #ifndef PORT_HOST
8
9 void foo(void) { }
10
11 void IRQ_ISR(void) interrupt
12 {
13   foo();
14 }
15
16 #endif
17
18 void testBug(void)
19 {
20 }