]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Wed June 10 14:34:00 1998 Joyce Janczyn <janczyn@cygnus.com>
authorJoyce Janczyn <janczyn@cygnus>
Wed, 10 Jun 1998 18:47:09 +0000 (18:47 +0000)
committerJoyce Janczyn <janczyn@cygnus>
Wed, 10 Jun 1998 18:47:09 +0000 (18:47 +0000)
* 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.

sim/mn10300/ChangeLog
sim/mn10300/dv-mn103int.c

index 8854b2699d4e6f9feeb7622b4ec438f0e4bffba9..095054e623978d01ed938a80718db1ac0ea3cbb2 100644 (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.
index 80781deadb63d7345d3316d0da4555ebd6f37988..3056331d6aeabebf5dc4098e6f425d28dbb88156 100644 (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;
     }