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.
This commit is contained in:
Joyce Janczyn 1998-06-10 18:47:09 +00:00
parent 9408296b13
commit 8c2de2aa33
2 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,11 @@
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.

View File

@ -197,10 +197,12 @@ enum {
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,
@ -664,9 +666,9 @@ external_group (struct mn103int *controller,
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;
}