OSDN Git Service

78daebc0c71a37e7e9b985f0711a0b0273f1ed2d
[pf3gnuchains/pf3gnuchains4x.git] / sim / m68hc11 / ChangeLog
1 2005-03-23  Mark Kettenis  <kettenis@gnu.org>
2
3         * configure: Regenerate.
4
5 2005-01-14  Andrew Cagney  <cagney@gnu.org>
6
7         * configure.ac: Sinclude aclocal.m4 before common.m4.  Add
8         explicit call to AC_CONFIG_HEADER.
9         * configure: Regenerate.
10
11 2005-01-11  Andrew Cagney  <cagney@localhost.localdomain>
12
13         * configure: Regenerated to track ../common/aclocal.m4 changes.
14
15 2005-01-07  Andrew Cagney  <cagney@gnu.org>
16
17         * configure.ac: Rename configure.in, require autoconf 2.59.
18         * configure: Re-generate.
19
20 2004-12-08  Hans-Peter Nilsson  <hp@axis.com>
21
22         * configure: Regenerate for ../common/aclocal.m4 update.
23
24 2004-06-15  Alan Modra  <amodra@bigpond.net.au>
25
26         * interp.c (sim_prepare_for_program): Use bfd_get_section_size
27         instead of bfd_get_section_size_before_reloc.
28
29 2003-08-08  Stephane Carrez  <stcarrez@nerim.fr>
30
31         * dv-m68hc11tim.c (cycle_to_string): Add flags parameter to better
32         control the translation.
33         (m68hc11tim_print_timer): Update cycle_to_string conversion.
34         (m68hc11tim_timer_event): Fix handling of output
35         compare register with its interrupts.
36         (m68hc11tim_io_write_buffer): Check output compare
37         after setting M6811_TMSK1.
38         (m68hc11tim_io_read_buffer): Fix compilation warning.
39         * dv-m68hc11.c (m68hc11_option_handler): Likewise.
40         * dv-m68hc11spi.c (m68hc11spi_info): Likewise.
41         * dv-m68hc11sio.c (m68hc11sio_info): Likewise.
42         * interrupts.c (interrupts_info): Likewise.
43         (interrupts_reset): Recognize bootstrap mode.
44         * sim-main.h (PRINT_CYCLE, PRINT_TIME): New defines.
45         (_sim_cpu): Add cpu_start_mode.
46         (cycle_to_string): Add flags member.
47         * m68hc11_sim.c (OPTION_CPU_BOOTSTRAP): New option.
48         (cpu_options): Declare new option bootstrap.
49         (cpu_option_handler): Handle it.
50         (cpu_info): Update call to cycle_to_string.
51
52 2003-08-08  Stephane Carrez  <stcarrez@nerim.fr>
53
54         * sim-main.h (phys_to_virt): Use memory bank parameters to translate
55         the physical address in virtual address.
56         (struct _sim_cpu): Add memory bank members.
57         * m68hc11_sim.c (cpu_initialize): Clear memory bank parameters.
58         * interp.c (sim_hw_configure): Create memory bank according to memory
59         bank parameters.
60         (sim_get_bank_parameters): New function to obtain memory bank config
61         from the symbol table.
62         (sim_prepare_for_program): Call it to obtain the memory bank parameters.
63         (sim_open): Call sim_prepare_for_program.
64         * dv-m68hc11.c (m68hc11cpu_io_write_buffer): Use memory bank parameters
65         to check if address is within bank window.
66         (m68hc11cpu_io_read_buffer): Likewise.
67         (attach_m68hc11_regs): Map the memory bank according to memory bank
68         parameters.
69
70 2003-08-08  Stephane Carrez  <stcarrez@nerim.fr>,
71
72         * sim-main.h (PAGE_REGNUM, Z_REGNUM): Use same numbering as gdb.
73
74 2003-08-08  Stephane Carrez  <stcarrez@nerim.fr>,
75             Gary Piercey <gpiercey@northstar-technical.com>
76
77         * m68hc11_sim.c (print_io_word): New function to print 16-bit value.
78         * sim-main.h (print_io_word): Declare.
79         * dv-m68hc11tim.c (tmsk1_desc): New description table for TMSK1.
80         (tflg1_desc): Likewise for TFLG1.
81         (m68hc11tim_info): Print input and output compare registers
82
83 2003-03-02  Stephane Carrez  <stcarrez@nerim.fr>
84
85         * Makefile.in (SIM_EXTRA_CFLAGS): Set WITH_TARGET_ADDRESS_BITSIZE
86         to 32 to support memory bank switching; temporarily use 32-bit for
87         WORD_BITSIZE to avoid a bug in sim-common.
88
89 2003-03-01  Stephane Carrez  <stcarrez@nerim.fr>
90
91         * interp.c (sim_fetch_register): Only store a single byte for
92         1 byte registers.
93
94 2003-02-27  Andrew Cagney  <cagney@redhat.com>
95
96         * interp.c (sim_prepare_for_program, sim_open)
97         (sim_create_inferior): Rename _bfd to bfd.
98
99 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
100
101         * dv-m68hc11eepr.c (struct m68hc11eepr ): Use const char* for filename.
102
103 2002-08-13  Marko Kohtala  <marko.kohtala@luukku.com>
104
105         * interp.c (sim_prepare_for_program): Look up the image for the 
106         reset vector and set cpu_use_elf_start to 1 if not found.
107         (sim_open): Do not set cpu_use_elf_start.
108
109 2002-08-13  Marko Kohtala  <marko.kohtala@luukku.com>
110
111         * interp.c (sim_hw_configure): Return 1 for success.
112         (sim_prepare_for_program): Use the sim_hw_configure exit code to
113         return SIM_RC_FAIL.
114
115 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
116
117         * dv-m68hc11.c (m68hc11cpu_io_read_buffer): Translate memory
118         bank window to some virtual address to read from extended memory.
119         (m68hc11cpu_io_write_buffer): Likewise for writing.
120         (attach_m68hc11_regs): When use_bank property is defined, attach
121         to the 68HC12 16K memory bank window.
122         * interp.c (sim_hw_configure): Create memory region for banked
123         memory.
124
125 2002-08-13  Stephane Carrez  <Stephane.Carrez@nerim.fr>
126
127         * interp.c (sim_hw_configure): Connect port-X to cpu-write-port.
128         * dv-m68hc11.c (m68hc11cpu_ports): Add cpu-write-port input.
129         (m68hc11cpu_port_event): Handle CPU_WRITE_PORT event.
130
131 2002-08-13  Marko Kohtala  <marko.kohtala@luukku.com>
132
133         * dv-m68hc11.c (m68hc11cpu_io_write): Fix to update IO mapping
134         when IO mapping changed, not when internal RAM mapping is changed.
135
136 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
137
138         * m68hc11_sim.c (cpu_special): Handle call and rtc instructions.
139         * sim-main.h (M6812_CALL_INDIRECT): Add to enum.
140         (m6811_regs): Add page register.
141         (cpu_set_page, cpu_get_page): New macros.
142         (phys_to_virt): New function.
143         (cpu_get_indexed_operand_addr, cpu_return): Declare.
144         * gencode.c: Identify indirect addressing mode for call and fix daa.
145         (gen_function_entry): New param to tell if src8/dst8 locals are 
146         necessary.
147         (gen_interpreter): Use it to avoid generation of unused variables.
148         * interp.c (sim_fetch_register): Allow to read page register; page
149         register, A, B and CCR are only 1 byte wide.
150         (sim_store_register): Likewise for writing.
151
152 2002-06-16  Andrew Cagney  <ac131313@redhat.com>
153
154         * configure: Regenerated to track ../common/aclocal.m4 changes.
155
156 2002-06-09  Andrew Cagney  <cagney@redhat.com>
157
158         * Makefile.in (INCLUDE): Update path to callback.h.
159         * sim-main.h: Include "gdb/callback.h" and "gdb/remote-sim.h".
160
161 2002-03-07  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
162
163         * m68hc11_sim.c (cpu_move8): Call sim_engine_abort in default case.
164         (cpu_move16): Likewise.
165         (sim_memory_error): Use sim_io_printf.
166         (cpu_option_handler): Fix compilation warning.
167         * interp.c (sim_hw_configure): Fix compilation warning; 
168         remove m68hc12sio@2 device.
169         (sim_open): Likewise.
170         * dv-m68hc11tim.c (m68hc11tim_port_event): Fix clear of TFLG2 
171         flags when reset.
172         (cycle_to_string): Improve convertion of cpu cycle number.
173         (m68hc11tim_info): Print info about PACNT.
174         (m68hc11tim_io_write_buffer): Fix clearing of TFLG2; handle
175         TCTL1 and TCTL2 registers.
176         * dv-m68hc11.c (m68hc11_info): Print 6811 current running mode.
177
178 2002-03-07  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
179
180         * interp.c (sim_hw_configure): Save the HW cpu pointer in the 
181         cpu struct.
182         (sim_hw_configure): Connect the capture input/output events.
183         * sim-main.h (_sim_cpu): New member hw_cpu.
184         (m68hc11cpu_set_oscillator): Declare.
185         (m68hc11cpu_clear_oscillator): Declare.
186         (m68hc11cpu_set_port): Declare.
187         * dv-m68hc11.c (m68hc11_options): New for oscillator commands.
188         (m68hc11cpu_ports): New input ports and output ports to reflect
189         the HC11 IOs.
190         (m68hc11_delete): Cleanup any running oscillator.
191         (attach_m68hc11_regs): Create the input oscillators.
192         (make_oscillator): New function.
193         (find_oscillator): New function.
194         (oscillator_handler): New function.
195         (reset_oscillators): New function.
196         (m68hc11cpu_port_event): Handle the new input ports.
197         (m68hc11cpu_set_oscillator): New function.
198         (m68hc11cpu_clear_oscillator): New function.
199         (get_frequency): New function.
200         (m68hc11_option_handler): New function.
201         (m68hc11cpu_set_port): New function.
202         (m68hc11cpu_io_write): Post the port output events.
203         * dv-m68hc11spi.c (set_bit_port): Use m68hc11cpu_set_port to set
204         the output port value.
205         * dv-m68hc11tim.c (m68hc11tim_port_event): Handle CAPTURE event
206         by latching the TCNT value in the register.
207
208 2002-03-07  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
209
210         * sim-main.h (cpu_frame, cpu_frame_list): Remove.
211         (cpu_frame_reg, cpu_print_frame): Remove.
212         (cpu_m68hc11_push_uint8, cpu_m68hc11_pop_uint8): Cleanup.
213         (cpu_m68hc11_push_uint16, cpu_m68hc11_pop_uint16): Likewise.
214         (cpu_m68hc12_push_uint8, cpu_m68hc12_push_uint16): Likewise.
215         (cpu_m68hc12_pop_uint8, cpu_m68hc12_pop_uint16): Likewise.
216         * m68hc11_sim.c (cpu_find_frame): Remove.
217         (cpu_create_frame_list): Remove.
218         (cpu_remove_frame_list, cpu_create_frame, cpu_free_frame): Remove.
219         (cpu_frame_reg, cpu_print_frame, cpu_update_frame): Remove.
220         (cpu_call): Cleanup to remove #if HAVE_FRAME and calls to the above.
221         (cpu_update_frame): Likewise.
222         (cpu_return): Likewise.
223         (cpu_reset): Likewise.
224         (cpu_initialize): Likewise.     
225         * interp.c (sim_do_command): Remove call to cpu_print_frame.
226
227 2002-03-07  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
228
229         * interrupts.c (interrupts_reset): New function, setup interrupt
230         vector address according to cpu mode.
231         (interrupts_initialize): Move reset portion to the above.
232         (interrupt_names): New table to give a name to interrupts.
233         (idefs): Handle pulse accumulator interrupts.
234         (interrupts_info): Print the interrupt history.
235         (interrupt_option_handler): New function.
236         (interrupt_options): New table of options.
237         (interrupts_update_pending): Keep track of when interrupts are
238         raised and implement breakpoint-on-raise-interrupt.
239         (interrupts_process): Keep track of when interrupts are taken
240         and implement breakpoint-on-interrupt.
241         * interrupts.h (struct interrupt_history): Define.
242         (struct interrupt): Keep track of the interrupt history.
243         (interrupts_reset): Declare.
244         (interrupts_initialize): Update prototype.
245         * m68hc11_sim.c (cpu_reset): Reset interrupts.
246         (cpu_initialize): Cleanup.
247
248 2001-07-28  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
249
250         * dv-m68hc11eepr.c (m68hc11eepr_info): Fix print of current write
251         address.
252         (m68hc11eepr_port_event): Fix detach/attach logic.
253
254 2001-07-22  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
255
256         * Makefile.in (SIM_OBJS): Remove sim-resume.o
257         * interp.c (sim_resume): New function from sim-resume.c, install
258         the stepping event after having processed the pending ticks.
259         (has_stepped): Likewise.
260         (sim_info): Produce an output only if verbose or STATE_VERBOSE_P.
261
262 2001-07-10  Andrew Cagney  <ac131313@redhat.com>
263
264         * Makefile.in (gencode): Provide explicit path to gencode.c.
265
266 2001-05-20  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
267
268         * Makefile.in (M68HC11_OBJS): Add m68hc12int.o.
269         (m68hc12int.c): Generate using gencode -m6812.
270         (m68hc11int.c): Likewise with -m6811.
271
272         * gencode.c (m6811_opcode_patterns): New patterns for 68HC12.
273         (m6811_page1_opcodes): Remove duplicate entries.
274         (m6811_page2_opcodes): Likewise.
275         (m6811_page3_opcodes): Likewise.
276         (m6811_page4_opcodes): Likewise.
277         (m6812_page1_opcodes): New table for 68HC12 instructions.
278         (m6812_page2_opcodes): Likewise.
279         (gen_fetch_operands): New modes [] and &[] for 68HC12 operands.
280         (gen_save_result): Likewise.
281         (gen_interpreter_for_table): Handle 68HC11 and 68HC12 opcodes.
282         (cmp_opcode): New function for opcode comparision.
283         (prepare_table): Sort the opcodes.
284         (gen_interpreter): Prepare all the tables and generate either
285         a 68HC11 or a 68HC12 simulator.
286         (main): New options -m6811 and -m6812.
287
288         * m68hc11_sim.c (cpu_single_step): Use pointer to cpu interpretor.
289         (cpu_special): Simulation of some 68HC12 instructions.
290         (cpu_exg): New function.
291         (cpu_dbcc): Likewise.
292         (cpu_fetch_relbranch16): Likewise.
293         (cpu_push_all): Push according to 68HC11 or 68HC12.
294         (cpu_move16): Likewise.
295         (cpu_move8): Likewise.
296         (cpu_get_indexed_operand16): Likewise.
297         (cpu_get_indexed_operand8): Likewise.
298         (cpu_get_indexed_operand_addr): Likewise.
299         (cpu_set_reg, cpu_set_dst_reg, cpu_get_src_reg, cpu_get_reg): Likewise.
300         (cpu_reset): Setup INIT register according to architecture.
301         
302         * sim-main.h (M6811_Special): Add 68HC12 specific instructions.
303         (_sim_cpu): Keep track of the cpu being simulated.
304         (cpu_get_tmp3, cpu_get_tmp2, cpu_set_tmp3, cpu_set_tmp2): New.
305         (cpu_m68hc11_push_uintxx): Rename of cpu_push_uintxx.
306         (cpu_m68hc11_pop_uint8): Likewise.
307         (cpu_m68hc12_push_uintxx): New functions for 68HC12.
308         (cpu_m68hc12_pop_uintxx): Likewise.
309         (cpu_exg, cpu_dbcc, cpu_move8, cpu_move16): Likewise,
310         (cpu_fetch_relbranch16): Likewise.
311         (cpu_interp_m6811): Rename of cpu_interp.
312         (cpu_interp_m6812): New function.       
313         * interp.c (free_state): New function.
314         (dev_list_68hc12): New table.
315         (sim_board_reset): Reset depending on the cpu (HC11 or HC12).
316         (sim_hw_configure): New function.
317         (sim_prepare_for_program): New function.
318         (sim_open): Use above new functions.
319         (sim_close): Call free_state().
320         (sim_info): Print info according to cpu.
321         (sim_create_inferior): Use sim_prepare_for_program.
322         (sim_do_command): Configure the hardware after a change of the
323         architecture.
324
325 2001-05-20  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
326
327         * dv-m68hc11sio.c (m68hc11sio_tx_poll): Always check for
328         pending interrupts.
329         * interrupts.c (interrupts_process): Keep track of the last number
330         of masked insn cycles.
331         (interrupts_initialize): Clear last number of masked insn cycles.
332         (interrupts_info): Report them.
333         (interrupts_update_pending): Compute clear and set masks of 
334         interrupts and clear the interrupt bits before setting them 
335         (due to SCI interrupt sharing).
336         * interrupts.h (struct interrupts): New members last_mask_cycles
337         and xirq_last_mask_cycles.
338
339 2000-11-26  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
340
341         * dv-m68hc11.c (m68hc11cpu_io_read_buffer): Use attach_size
342         instead of a hard-coded value.
343         (m68hc11cpu_io_write_buffer): Likewise.
344         (dv_m68hc11_descriptor): Define a 68hc12 device.
345         * dv-m68hc11eepr.c (dv_m68hc11eepr_descriptor): Likewise.
346         * dv-m68hc11tim.c (dv_m68hc11tim_descriptor): Likewise.
347         * dv-m68hc11spi.c (dv_m68hc11spi_descriptor): Likewise.
348         * dv-m68hc11sio.c (dv_m68hc11sio_descriptor): Likewise.
349
350 2000-11-22  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
351
352         * dv-m68hc11.c (attach_m68hc11_regs): Register a delete handler.
353         (m68hc11cpu_delete): Delete handler to detach the address space.
354
355 2000-11-24  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
356
357         * dv-m68hc11eepr.c (attach_m68hc11eepr_regs): Use hw_malloc.
358         * dv-nvram.c (attach_nvram_regs): Use hw_free and hw_malloc
359         instead of free and malloc.
360
361 2000-09-11  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
362
363         * Makefile.in: Was missing from initial patch.
364
365 2000-09-10  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
366
367         * interp.c (sim_store_register): Remove soft register hack.
368         (sim_fetch_register): Likewise.
369         (sim_create_inferior): Likewise.
370         * sim-main.h: Likewise.
371
372 2000-09-10  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
373
374         * interrupts.c (interrupts_update_pending): Clear the mask of
375         pending interrupts here.
376         (interrupts_get_current): Don't clear the mask of pending interrupts.
377
378 2000-09-10  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
379
380         * sim-main.h: Define cycle_to_string.
381         * dv-m68hc11tim.c (cycle_to_string): New function to translate 
382         the cpu cycle into some formatted time string.
383         (m68hc11tim_print_timer): Use it.
384         * dv-m68hc11sio.c (m68hc11sio_info): Use cycle_to_string.
385         * dv-m68hc11spi.c (m68hc11spi_info): Likewise.
386         * interrupts.c (interrupts_info): Likewise.
387         * m68hc11_sim.c (cpu_info): Likewise.
388
389 2000-09-06  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
390
391         * dv-m68hc11tim.c (m68hc11tim_timer_event): Compute the overflow
392         interrupt and compare events accurately.  Take into account the
393         pending ticks not processed by the simulator yet (introduced a shift).
394         (m68hc11_port_event): Reset the timer interrupt delays.
395         (m68hc11tim_io_read_buffer): Be able to read several bytes.
396         (m68hc11tim_io_write_buffer): Likewise for write.
397         (m68hc11tim_io_write_buffer): Recompute the timer overflow interrupt.
398
399 2000-09-06  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
400
401         * dv-m68hc11spi.c (m68hc11spi_io_read_buffer): Clear the interrupts.
402         (m68hc11spi_io_write_buffer): Likewise and fix the spi frame.
403         (m68hc11spi_info): Clarify the status report
404         of the SPI when a byte is being sent.
405         (m68hc11spi_clock): Fix the spi send frame.
406         
407 2000-08-11  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
408
409         * sim-main.h (m68hc11_map_level): Define level of address mappings.
410         * dv-m68hc11eepr.c (struct m68hc11eepr ): New flag to indicate
411         whether the eeprom is currently mapped or not.
412         (m68hc11eepr_port_event): Use the flag to see if we must unmap
413         or map the eeprom.  Update the flag to reflect the current state.
414         Use M6811_EEPROM_LEVEL when mapping the eeprom.
415         (m68hc11eepr_finish): Remove overlap hack.
416         (attach_m68hc11eepr_regs): Use M6811_IO_LEVEL when mapping the
417         config and control registers.
418         * dv-m68hc11.c (m68hc11cpu_finish): Remove overlap hack.
419         (attach_m68hc11_regs): Use M6811_IO_LEVEL.
420         (m68hc11cpu_io_write): Likewise when unmapping and re-mapping.
421         * dv-m68hc11spi.c (m68hc11spi_finish): Likewise.
422         (attach_m68hc11spi_regs): Likewise.
423         * dv-m68hc11tim.c (m68hc11tim_finish): Likewise.
424         (attach_m68hc11tim_regs): Likewise.
425         * dv-m68hc11sio.c (m68hc11sio_finish): Likewise.
426         (attach_m68hc11sio_regs): Likewise.
427         * interp.c (sim_open): Likewise.
428         * dv-nvram.c (attach_nvram_regs): Likewise.
429
430 Thu Jul 27 21:27:25 2000  Andrew Cagney  <cagney@b1.cygnus.com>
431
432         * configure, config.in: Regenerate.
433
434 2000-06-25  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
435
436         * Makefile.in (SIM_RUN_OBJS): Define to use nrun.c
437         * dv-m68hc11.c (m68hc11cpu_finish): Register detach address callback.
438         (dv_m6811_detach_address_callback): New function to detach a
439         device from an address space.
440         * dv-m68hc11eepr.c (m68hc11eepr_port_event): Initialize
441         config register according to --cpu-config option.
442         * sim-main.h (_sim_cpu): Add cpu_config member.
443         * interp.c (sim_open): Delete specific simulator options.
444         * m68hc11_sim.c (cpu_option_handler): New options
445         --emulos and -cpu-config <val> to configure the simulator.
446         (cpu_initialize): Initialize cpu_config member.
447
448 2000-06-24  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
449
450         * emulos.c: Fix indentation and comments.
451         * gencode.c: Likewise.
452         * dv-m68hc11tim.c (m68hc11tim_timer_event): Handle COMPARE_EVENT.
453         (m68hc11tim_io_write_buffer): Write compare registers and
454         setup compare event.
455         * interp.c: Remove unused global variables.
456         * interrupts.c (idefs): New compare interrupts.
457         Fix indentation and comments.
458         * interrupts.h: Likewise.
459
460 2000-06-18  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
461
462         * dv-m68hc11sio.c: Fix indentation and comments.
463         Remove INT_PORT.
464         * dv-m68hc11.c: Fix indentation and comments.
465         (m68hc11cpu_port_event): Move initialization of M6811_HPRIO from here.
466         * m68hc11_sim.c (cpu_reset): To here.
467         * dv-m68hc11eepr.c: Fix indentation and comments.
468         
469 2000-06-17  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
470
471         * dv-nvram.c: New file, rename from dv-pram.c.
472         * dv-pram.c: Delete file.
473         * sim-main.h: Incorporate m68hc11_sim.h.
474         * m68hc11_sim.h: Delete file.
475         * configure.in: Rename pram into nvram.
476         * interp.c (sim_open): Likewise in creation of device tree.
477         
478 2000-05-31  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
479
480         * interp.c (sim_open): Create the SPI device.
481         * dv-m68hc11spi.c: New file for SPI device simulation.
482         * configure.in (hw_extra_devices): Add SPI device.
483
484 2000-05-28  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
485
486         * interrupts.c (interrupts_initialize): Clear XIRQ accounting.
487         (interrupts_process): Separate IRQ and XIRQ accounting.
488         (interrupts_info): Report XIRQ accounting.
489         * interrupts.h (struct interrupts): Added accounting for XIRQ.
490
491 2000-04-16  Stephane Carrez  <stcarrez@worldnet.fr>
492
493         * dv-pram.c (attach_pram_regs): Fix the 'save-modified' mode.
494         * m68hc11_sim.h (_sim_cpu): Allow configuration of cpu mode.
495         * dv-m68hc11.c (attach_m68hc11_regs): Get the cpu MODA,MODB 
496         configuration from the 'mode' device tree property.
497         (m68hc11cpu_port_event): Reset M6811_HPRIO to the cpu MODA, MODB
498         configuration.
499
500 2000-02-24  Stephane Carrez  <stcarrez@worldnet.fr>
501
502         * sim-main.h: Remove WITH_TARGET_* defines.
503         * Makefile.in (SIM_EXTRA_CFLAGS): Specify the WITH_TARGET_* flags.
504
505 2000-02-08  Stephane Carrez  <stcarrez@worldnet.fr>
506
507         * dv-m68hc11sio.c (m68hc11sio_port_event): Setup the SCI to
508         1200 baud when cpu is in bootstrap mode.
509
510         * dv-m68hc11tim.c (m68hc11tim_io_write_buffer): Be able to
511         write in the TCTN timer register.
512
513         * dv-m68hc11sio.c (m68hc11sio_io_write_buffer): Divide cpu clock
514         by 4 to obtain the E clock frequency.
515         (sccr2_desc): Use M6811_TIE for TIE bit.
516         (m68hc11sio_info): Fix baud rate report.
517
518         * dv-m68hc11tim.c (to_realtime): Likewise.
519
520         * interp.c (sim_open): When building device tree, only provide
521         devices that do not exist yet.
522
523         * emulos.c: Fix compilation pb under Windows.
524
525         * dv-m68hc11.c (attach_m68hc11_regs): Get the clock frequency
526         from the 'clock' property.
527
528 2000-01-02  Stephane Carrez  <stcarrez@worldnet.fr>
529
530         * m68hc11_sim.h (*_REGNUM): Define.
531         (_sim_cpu): New member cpu_page0_reg table.
532         * interp.c (sim_create_inferior): Fill the cpu_page0_reg table with
533         addresses of soft registers in .page0.
534         (sim_fetch_register, sim_store_register): Use cpu_page0_reg table 
535         to get/set soft registers.
536
537 1999-12-31  Stephane Carrez  <stcarrez@worldnet.fr>
538
539         * dv-m68hc11.c (m68hc11cpu_io_write_buffer): Clear byte to avoid
540         returning random values.
541
542 1999-12-17  Stephane Carrez  <stcarrez@worldnet.fr>
543
544         * gencode.c: Fix "subb N,x" that used a instead of b.
545
546 1999-09-09  Stephane Carrez  <stcarrez@worldnet.fr>
547
548         * gencode.c: Fixed sbc8 and adc8 when there was a initial carry.
549
550 1999-09-01  Stephane Carrez  <stcarrez@worldnet.fr>
551
552         * sim-main.h (SIM_HANDLES_LMA): Define to enable loading using lma.
553
554 1999-08-14  Stephane Carrez  <stcarrez@worldnet.fr>
555
556         * dv-m68hc11.c (attach_m68hc11_regs): Save the size of the
557         register region in the m68hc11cpu struct.
558         (m68hc11cpu_io_write): When the IO mapping addres changes,
559         detach the register region and re-attach it at the new address.
560         (m68hc11cpu_io_read_buffer): Renamed base_address into
561         attach_address.
562         (m68hc11cpu_io_write_buffer): Likewise. Pass the hw pointer
563         to m68hc11cpu_io_write.
564
565 1999-08-13  Stephane Carrez  <stcarrez@worldnet.fr>
566
567         * gencode.c: For sbc8, check the carry and increment the source
568         before trying to set the carry for the result.
569
570 1999-05-24  John S. Kallal <kallal@voicenet.com>
571         
572         * interp.c (sim_get_info): Don't crash if the command line is 0.
573         Define prototype for sim_get_info() and init_system().
574         (sim_info): Correct call to sim_get_info().
575         
576 1999-05-16  Stephane Carrez  <stcarrez@worldnet.fr>
577
578         * configure.in: Recognize m6811-*-*.
579         * configure: Regenerate.
580         * m68hc11_sim.h (cpu_ccr_update_add8, cpu_ccr_update_add16,
581         cpu_ccr_update_sub8, cpu_ccr_update_sub16):
582         Correct the computation of carry of 8 and 16-bits add and subtract.
583         * gencode.c: Use cpu_ccr_update_sub8 for subtraction (carry and
584         overflow set in a different manner than add).
585
586 1999-05-14  Stephane Carrez  <stcarrez@worldnet.fr>
587
588         * dv-m68hc11.c (dv_m6811_attach_address_callback): Removed a
589         trace message.
590         * interp.c (sim_open, sim_create_inferior): Initialize the
591         cpu_elf_start from the ELF header.
592         * m68hc11_sim.c (cpu_initialize): Clear the new data members.
593         (cpu_restart): Use cpu_elf_start as the starting address when
594         the flag is set.
595         (cpu_special): When cpu_use_elf_start is set, the WAI instruction
596         exits the simulator (exit status is in D).
597         * m68hc11_sim.h (_sim_cpu): Added members cpu_use_elf_start and
598         cpu_elf_star to start execution at address specified in ELF file.
599
600 1999-05-02  Stephane Carrez  <stcarrez@worldnet.fr>
601
602         * Makefile.in, config.in, configure, configure.in: New files.
603         * gencode.c: New file, generation of 68HC11 interpreter.
604         * m68hc11_sim.h, m68hc11_sim.c: New files, specific operations
605         for interpreter.
606         * interrupts.c, interrupts.h: New files, management of interrupts.
607         * interp.c, sim-main.h, 
608         * dv-m68hc11.c, dv-m68hc11eepr.c, dv-m68hc11sio.c,
609         dv-m68hc11tim.c, dv-pram.c: New files representing devices for
610         68HC11 (dv-pram.c is generic and could probably migrate to common).
611         * emulos.c: New file, basic emulation of some os.