]> Git Repo - binutils.git/blob - sim/m32c/ChangeLog
* Makefile.in: Use CC_FOR_BUILD to build opc2c.
[binutils.git] / sim / m32c / ChangeLog
1 2010-12-04  Masaki Muranaka  <[email protected]>
2
3         * Makefile.in: Use CC_FOR_BUILD to build opc2c.
4
5 2010-05-26  Ozkan Sezer  <[email protected]>
6
7         * main.c (setup_tcp_console): Check error return from socket() call
8         by its equality to -1 not by it being negative.
9
10 2010-04-14  Mike Frysinger  <[email protected]>
11
12         * gdb-if.c (sim_write): Add const to buf arg.
13         * mem.h (mem_put_blk): Add const to bufptr arg.
14         * mem.c (mem_put_blk): Likewise, and add const to cast.
15
16 2010-01-20  DJ Delorie  <[email protected]>
17
18         * m32c.opc (MATH_OP): When doing subtraction, also set carry if
19         the result is zero.
20
21 2010-01-09  Ralf Wildenhues  <[email protected]>
22
23         * configure: Regenerate.
24
25 2009-08-22  Ralf Wildenhues  <[email protected]>
26
27         * config.in: Regenerate.
28         * configure: Likewise.
29
30         * configure: Regenerate.
31
32 2009-08-14  DJ Delorie  <[email protected]>
33
34         * configure.in: Check for sys/select.h, termios.h, sys/socket.h,
35         netinet/in.h, and netinet/tcp.h.
36         * configure: Regenerate.
37         * config.in: Add those headers.
38         * main.c: Check for them.
39         (setup_tcp_console): Disable if no networking.
40         (main): Note missing networking or termios.
41         * mem.c: Check for those headers.
42         (stdin_ready): Disable if no termios.
43         (m32c_sim_restore_console): Disable if no termios.
44         (mem_get_byte): Disable console input if no termios.
45         
46 2009-01-06  Joel Sherrill <[email protected]>
47
48         * r8c.opc, m32c.opc: Add parentheses to remove warnings.
49
50 2008-10-01  DJ Delorie  <[email protected]>
51
52         * int.c (trigger_peripheral_interrupt): Clear interrupt pending
53         bit when peripheral interrupts are serviced.
54
55 2008-07-11  Hans-Peter Nilsson  <[email protected]>
56
57         * configure: Regenerate to track ../common/common.m4 changes.
58         * config.in: Ditto.
59
60 2008-06-16  DJ Delorie  <[email protected]>
61
62         * m32c.opc (BRK, GDBBRK): Remove debug logic.
63         * main.c (main): Add option to set raw console.
64         * mem.h (m32c_use_raw_console): Declare.
65         * mem.c (m32c_sim_restore_console): Only restore console if it's
66         been previously set.
67         (m32c_use_raw_console): Define.
68         (mem_get_byte): Set raw console if m32c_use_raw_console is set.
69
70 2008-06-06  Vladimir Prus  <[email protected]>
71             Daniel Jacobowitz  <[email protected]>
72             Joseph Myers  <[email protected]>
73
74         * configure: Regenerate.
75
76 2008-06-06  DJ Delorie  <[email protected]>
77
78         * Makefile.in: Add Timer A support.
79         * cpu.h (m32c_opcode_pc): New.
80         (in_gdb): New.
81         * gdb-if.c (sim_open): Add Timer A support.  Support unbuffered
82         console.
83         * int.c (trigger_interrupt): Manage the U flag properly.
84         (trigger_based_interrupt): Likewise.
85         (trigger_fixed_interrupt): New.
86         (trigger_peripheral_interrupt): New.
87         * int.h (trigger_peripheral_interrupt): New.
88         * m32c.opc: Use m32c_opcode_pc throughout, as needed.
89         (decode_m32c): Detect jump-to-zero with traceback.
90         (BRK): Try to do the right thing, keeping track of whether we're
91         in gdb or not, and if the user has provided a handler or not.
92         (GBRK): Alternate break opcode for gdb, in case the user's app
93         needs to use BRK for itself.
94         (BRK2): Implement.
95         * main.c: Add Timer A support.  Support TCP-based console.
96         (setup_tcp_console): New.
97         (main): Add Timer A support.  Support TCP-based console.
98         * mem.h (m32c_sim_restore_console): New.
99         * mem.c: Add Timer A support.  Support TCP-based console.
100         (mem_ptr): Enhance NULL pointer detection.
101         (stdin_ready): New.
102         (m32c_sim_restore_console): New.
103         (mem_get_byte): Check for console input ready.
104         (update_timer_a): New.
105         * r8c.opc (SSTR): Use r0l, not r0h.
106         (REIT): Fix return frame logic.
107         * reg.c (print_flags): New.
108         (trace_register_changes): Use it.
109         (m32c_dump_all_registers): New.
110         * timer_a.h: New.
111         
112         * load.c: Fix indentation.
113         * trace.c: Fix indentation.
114         * trace.h: Fix indentation.
115
116 2006-06-26  DJ Delorie  <[email protected]>
117
118         * r8c.opc (decode_r8c): Don't bother reading the destination
119         before moving a constant into it.  Fix borrow comparison for SUB.
120
121 2006-06-13  Richard Earnshaw  <[email protected]>
122
123         * configure: Regenerated.
124
125 2006-06-05  Daniel Jacobowitz  <[email protected]>
126
127         * configure: Regenerated.
128
129 2006-05-31  Daniel Jacobowitz  <[email protected]>
130
131         * configure: Regenerated.
132
133 2006-03-13  DJ Delorie  <[email protected]>
134
135         * mem.c (mem_put_byte): Hook simulated UART to stdout.
136         (mem_put_hi): Hook in simulated trace port.
137         (mem_get_byte): Hook in simulated uart control port.
138         * opc2c: Be more picky about matching special comments.
139         * r8c.opc (shift_op): Limit shift counts to -16..16.
140         (BMcnd): Map conditional codes.
141         * reg.c (condition_true): Mask condition code to 4 bits.
142         * syscalls.c: Include local syscall.h.
143         * syscall.h: New, copied from libgloss.
144
145 2005-10-06  Jim Blandy  <[email protected]>
146
147         Simulator for Renesas M32C and M16C, by DJ Delorie <[email protected]>,
148         with further work from Jim Blandy <[email protected]> and
149         Kevin Buettner <[email protected]>.
150         
151         * ChangeLog: New.
152         * Makefile.in: New.
153         * blinky.S: New.
154         * config.in: New.
155         * configure: New.
156         * configure.in: New.
157         * cpu.h: New.
158         * gdb-if.c: New.
159         * gloss.S: New.
160         * int.c: New.
161         * int.h: New.
162         * load.c: New.
163         * load.h: New.
164         * m32c.opc: New.
165         * main.c: New.
166         * mem.c: New.
167         * mem.h: New.
168         * misc.c: New.
169         * misc.h: New.
170         * opc2c.c: New.
171         * r8c.opc: New.
172         * reg.c: New.
173         * safe-fgets.c: New.
174         * safe-fgets.h: New.
175         * sample.S: New.
176         * sample.ld: New.
177         * sample2.c: New.
178         * srcdest.c: New.
179         * syscalls.c: New.
180         * syscalls.h: New.
181         * trace.c: New.
182         * trace.h: New.
183
184
This page took 0.034576 seconds and 4 git commands to generate.