* dv-mn103int.c (external_group): Use enumerated types to access
correct group addresses.
* dv-mn103tim.c (do_counter_event): Underflow of cascaded timer
triggers an interrupt on the higher-numbered timer's port.
+start-sanitize-am30
+Wed June 10 14:34:00 1998 Joyce Janczyn <janczyn@cygnus.com>
+ * dv-mn103int.c (external_group): Use enumerated types to access
+ correct group addresses.
+ * dv-mn103tim.c (do_counter_event): Underflow of cascaded timer
+ triggers an interrupt on the higher-numbered timer's port.
+
+end-sanitize-am30
Mon June 8 13:30:00 1998 Joyce Janczyn <janczyn@cygnus.com>
* interp.c: (mn10300_option_handler): New function parses arguments
using sim-options.
G21_PORT = 84,
G22_PORT = 88,
G23_PORT = 92,
+ IRQ0_PORT = G23_PORT,
G24_PORT = 96,
G25_PORT = 100,
G26_PORT = 104,
G27_PORT = 108,
+ IRQ4_PORT = G27_PORT,
G28_PORT = 112,
G29_PORT = 116,
G30_PORT = 120,
switch (offset)
{
case 0:
- return &controller->group[16];
+ return &controller->group[IRQ0_PORT/4];
case 1:
- return &controller->group[20];
+ return &controller->group[IRQ4_PORT/4];
default:
return NULL;
}