Provide interrupt routine symbols which forward interrupts to user application vectors.

This commit is contained in:
Mark Salter 2002-01-15 14:19:49 +00:00
parent 7b5c105b61
commit 19612220a3
1 changed files with 9 additions and 0 deletions

View File

@ -9,6 +9,15 @@ MEMORY
ROM (w) : ORIGIN = 0x8000, LENGTH = 0x1000
}
/* Point interrupt vectors to user application. */
PROVIDE (_int_basetimer = 0x10004);
PROVIDE (_int_timer0 = 0x10008);
PROVIDE (_int_timer1 = 0x1000C);
PROVIDE (_int_sio0 = 0x10010);
PROVIDE (_int_sio1 = 0x10014);
PROVIDE (_int_port0 = 0x10018);
PROVIDE (_int_port1 = 0x1001C);
SECTIONS
{
/* CPU data for Sanyo debugger */