Oops, missed some warnings.
authorDJ Delorie <dj@redhat.com>
Fri, 6 Jun 2008 19:26:10 +0000 (19:26 +0000)
committerDJ Delorie <dj@redhat.com>
Fri, 6 Jun 2008 19:26:10 +0000 (19:26 +0000)
* mem.h (m32c_sim_restore_console): New.

sim/m32c/ChangeLog
sim/m32c/gdb-if.c
sim/m32c/mem.c
sim/m32c/mem.h
sim/m32c/timer_a.h

index 121670d..76cad22 100644 (file)
@@ -20,6 +20,7 @@
        * main.c: Add Timer A support.  Support TCP-based console.
        (setup_tcp_console): New.
        (main): Add Timer A support.  Support TCP-based console.
+       * mem.h (m32c_sim_restore_console): New.
        * mem.c: Add Timer A support.  Support TCP-based console.
        (mem_ptr): Enhance NULL pointer detection.
        (stdin_ready): New.
index a8ba392..04c5dba 100644 (file)
@@ -35,6 +35,9 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 #include "mem.h"
 #include "load.h"
 #include "syscalls.h"
+#ifdef TIMER_A
+#include "timer_a.h"
+#endif
 
 /* I don't want to wrap up all the minisim's data structures in an
    object and pass that around.  That'd be a big change, and neither
index a277787..474fc5e 100644 (file)
@@ -374,7 +374,7 @@ mem_get_pc ()
 }
 
 static int console_raw = 0;
-static struct termios attr, oattr;
+static struct termios oattr;
 
 static int
 stdin_ready ()
index c4354e4..ad53a01 100644 (file)
@@ -39,3 +39,5 @@ unsigned long mem_get_si (int address);
 void mem_get_blk (int address, void *bufptr, int nbytes);
 
 int sign_ext (int v, int bits);
+
+void m32c_sim_restore_console ();
index e1e7f21..abf5883 100644 (file)
@@ -10,3 +10,5 @@ typedef struct
 } Timer_A;
 
 extern Timer_A timer_a;
+
+extern void update_timer_a ();