diff options
author | Keith Packard <keithp@keithp.com> | 2010-08-27 00:10:29 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-08-27 00:10:29 -0700 |
commit | 2923cf5057f9cef110dd547d8677ea5b60e00796 (patch) | |
tree | 5322b641885f0c03d54c6e28eb4f088dc941cef1 /src/ao_usb.c | |
parent | 68967157cee620ebedcc8c2ffd6fc7656532087b (diff) |
altos: prepare for sdcc 2.9.1
A few minor language changes -- non-standard keywords are now prefixed
with __, such as 'at', 'interrupt', 'naked'.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/ao_usb.c')
-rw-r--r-- | src/ao_usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ao_usb.c b/src/ao_usb.c index f6e0fcf9..b55130f2 100644 --- a/src/ao_usb.c +++ b/src/ao_usb.c @@ -43,7 +43,7 @@ ao_usb_set_interrupts(void) * so when we hook that up, fix this */ void -ao_usb_isr(void) interrupt 6 +ao_usb_isr(void) __interrupt 6 { USBIF = 0; ao_usb_iif |= USBIIF; |