-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog.3
More file actions
8765 lines (5787 loc) · 268 KB
/
Copy pathChangeLog.3
File metadata and controls
8765 lines (5787 loc) · 268 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2002-01-20 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.8.
* tape.c, tape.h (tape_tap_attched): New function.
* autostart.c (autostart_advance): Skip
`AUTOSTART_PRESSPLAYONTAPE' if no TAP image is attached.
* crtc/crtc-mem.c (crtc_read): Commented out debugging output.
2002-01-20 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.64.
2002-01-19 Dag Lem <resid@nimrod.no>
* resid/: Final reSID 0.13.
2002-01-19 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.63.
* t64.c (t64_read): Skip read if no image is attached.
2002-01-19 Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de>
* monitor/mon_assemble6502.c: Fixed a bug which prevented a
JSR to a location on the ZP to be assembled.
2002-01-19 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.62.
* maincpu.c: Undefined `TRACE'.
* arch/unix/uimon.c: #include "utils.h".
2002-01-15 Dag Lem <resid@nimrod.no>
* arch/unix/vsidui.c: New toggle PSIDKeepEnv.
* c64/psid.c: Replaced resources PSIDDefaultVideoStandard and
PSIDDefaultSidModel with PSIDKeepEnv. New vsid command line
option -keepenv.
* main.c (init_cmdline_options): Skip calls to
ui_init_cmdline_options and file_system_init_cmdline_options
in vsid mode.
2002-01-14 Andreas Dehmel <dehmel@forwiss.tu-muenchen.de>
* arch/riscos/console.c, arch/riscos/uimsgwin.c: escape stops
monitor output
* arch/riscos/plus4ui.c: fixed CBM key in default keyboard
mapping
* arch/riscos/videoarch.h: removed depth from canvas_t
2002-01-14 Thomas Bretz <tbretz@physik.tu-muenchen.de>
* arch/os2/dialogs/menubar.rc:
- excluded Fast Pal Emu entry for TED
* arch/os2/makedist.cmd:
- changed BUGS, COPYING, NEWS and FEEDBACK to new location
* arch/os2/video.c:
- removed comment when realizing palettes
* imagecontents.c:
- removed a unnecessary memset
* monitor/mon.c:
- simplified some pieces of code
* monitor/mon.h:
- added declaration for mon_abort
2002-01-14 pottendo <pottendo@utanet.at>
* arch/unix/vsidui.c: include `vsiduiunix.h'.
arch/unix/x11/gnome/uivsidcontrol.c: ditto.
arch/unix/x11/xaw/uivsidcontrol.c: ditto.
* arch/unix/vsiduiunix.h: replaces `arc/unix/vsidui.h' to avoid
clash with `src/vsidui.h'.
* arch/unix/Makefile.am (libarch_a_SOURCES): replaced `vsidui.h'
with `vsiduiunix.h'.
* arch/unix/x11/xaw/ui.c (ui_open_canvas_window):
arch/unix/x11/gnome/ui.c (ui_open_canvas_window): Handle vsid
mode canvas creation.
2002-01-14 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.61.
* gfxoutputdrv/bmpdrv.c (bmpdrv_bmp_size): New function.
(bmpdrv_write_file_header, bmpdrv_write_bitmap_info,
bmpdrv_open, bmpdrv_write): Added 8bpp support.
* gfxoutputdrv/pngdrv.c (pngdrv_open, pngdrv_write,
pngdrv_close): Simplified.
2002-01-13 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.60.
* arch/unix/x11/gnome/about.c, arch/unix/x11/xaw/about.c,
c1541.c, arch/win32/res.rc, arch/msdos/menudefs.c,
arch/beos/ui.cc, arch/msdos/ui.c, arch/os2/install.cmd,
arch/os2/dialogs/dialogs.rc: Updated dates and URLs.
2002-01-12 Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de>
* arch/win32/console.c: Pressing ESC while console_out()
returns -1
* arch/*/uimon.c: don't need a static buffer anymore (as it
has already been the case in the WIN32 und OS/2 versions
* monitor/mon_util.[ch]: added mon_out, which is a wrapper
around uimon_out() and handles a negative return value to
abort operations which last long
* monitor/mon_*.[cy]: use mon_out() instead of uimon_out()
2002-01-12 Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de>
* monitor/mon_ui.c: function determine_address_of_line()
changed have_label of mon_disassembly_private structure, so
that at next processing, it could have wrong contents. Fixed.
2002-01-12 Andreas Matthies <andreas.matthies@gmx.net>
* arch/beos/vsidui.cc (vsid_ui_init): Creates a window
for the vsid informations.
* arch/{beos|msdos|os2|riscos|unix|win32}/vsidui.cc:
New function vsid_ui_close().
* c64/c64.c (machine_shutdown): Call vsid_ui_close when
in vsid mode.
* vsidui.h: New prototype for vsid_ui_close.
2002-01-12 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.59.
* vdc/vdc.c (vdc_set_geometry): Restored old geometry
calculation.
2002-01-11 Dag Lem <resid@nimrod.no>
* arch/unix/uijoystick2.c, arch/unix/x11/gnome/ui.c,
arch/unix/x11/xaw/ui.c: Removed vsid code commented out with
#if 0.
* c64/psid.c (PSIDDefaultVideoStandard, PSIDDefaultSidModel):
New resources.
(psid_init_tune, psid_init_driver): Support revised PSID v2 NG
flags.
* sound.c (fill_buffer): Provide both attenuation and gain.
(sound_open, sound_flush): Fill buffer: repeat last sample.
(sound_suspend): Fill buffer: attenuate to zero.
(sound_resume): Fill buffer: gain to last sample.
2002-01-08 Tibor Biczo <crown@axelero.hu>
* plus4/plus4.c (plus4_tape_traps): Added plus4 tape traps.
(machine_init): Init tape with correct addresses.
* sound.c (sound_suspend): Call fill_buffer to attenuate last
sample if the driver needs it.
* sound.h (sound_device_t): New structure tag called
need_attenuation.
It is set if the driver needs attenuation/gain on suspend.
* sounddrv/soundacorn.c, sounddrv/soundaix.c,
sounddrv/soundallegro.c, sounddrv/soundarts.c,
sounddrv/soundbeos.cc, sounddrv/sounddart.c,
sounddrv/sounddummy.c, sounddrv/sounddump.c,
sounddrv/sounddx.c, sounddrv/soundesd.c, sounddrv/soundfs.c,
sounddrv/soundhpux.c, sounddrv/soundmidas.c,
sounddrv/soundmmos2.c, sounddrv/soundsb.c,
sounddrv/soundsdl.c, sounddrv/soundsgi.c,
sounddrv/soundspeed.c, sounddrv/soundsun.c,
sounddrv/sounduss.c, sounddrv/soundwav.c, sounddrv/soundwmm.c:
Set need_attenuation flag appropriately.
* tape.c (tape_find_header_trap_plus4,
tape_receive_trap_plus4): New functions, implementing plus4
specific tape traps.
* tape.h (tape_find_header_trap_plus4,
tape_receive_trap_plus4): New prototypes.
2002-01-07 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.58.
* serial.c, serial.h (serial_init): Set address of TMP IN
register.
* c64/c64.c, c128/c128.c, vic20/vic20.c, pet/pet.c,
plus4/plus4.c, cbm2/c610.c (machine_init): Pass address of
TMP IN register for this machine.
2002-01-07 Thomas Bretz <tbretz@physik.tu-muenchen.de>
* NEWS:
replaced a incorrect fix (dive->drive) by the correct DIVE
* attach.c, c1541.c, diskimage.c, drive/drive.c,
drive/drivemem.c, imagecontents.c, kbdbuf.c, palette.c,
pet/petsound.c, plus4/ted-sound.c, screenshot.c,
sid/fastsid.c, sid/sid.c, t64.c, vdrive/vdrive-dir.c,
vdrive/vdrive.c, vic20/vic20sound.c, vicii/vicii.c:
replaced malloc/memset combination by calloc call
corrected some bugs using sizeof() in memset
emoved some sizeofs in memset (replaced by numkbers or defines)
* pet/pet.c: small change in log_message output
* raster/raster.c:
removed call to canvas_create/destroy in vsid_mode again
2002-01-07 Andreas Matthies <andreas.matthies@gmx.net>
* arch/beos/ui_device.cc: Fixed resource name for the
printer file.
2002-01-07 Andreas Dehmel <dehmel@forwiss.tu-muenchen.de>
* arch/riscos/spritedrv.c: reniced sprite interface
* arch/riscos/videoarch.h: prepared for different colour
depths
* vdc/vdc.c: replaced C++ commentary
2002-01-07 Tibor Biczo <crown@axelero.hu>
* plus4/plus4.c (plus4_serial_traps): Updated serial traps.
2002-01-07 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.57.
* plus4/ted.c (ted_raster_draw_alarm_handler): Update the
color video memory pointer one line before the matrix video
pointer. (ted_fetch_color): Use `memptr_col'.
* plus4/tedtypes.h: Added new memberi `memptr_col' to `ted_t'.
* arch/win32/uimon.c (ExecuteDisassemblyPopup): Commented out
`TPM_TOPALIGN' as it is not provided by mingw32 headers.
Should not hurt as it would be defined `0x0000L' anyway.
* vicii/vicii.c (vic_ii_resize): Call
`raster_enable_double_size()' only if `VIC_II_NEED_2X' is
defined.
* plus4/ted.c (ted_resize): Fixed likewise.
* datasette.c: Separated some functions.
2002-01-06 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.56.
* plus4/ted.c (ted_raster_draw_alarm_handler,
do_matrix_fetch): Fixed color fetch.
* plus4/tedtypes.h: Fixed 24/25 row start.
* plus4/plus4mem.c (pio1_set_tape_sense): New function.
* plus4/ted-sound.c (ted_sound_read): Mask out other bits in
shared register.
* tap.c (tap_header_read, tap_open): Also recognise C16 tap
images.
* tape.c (tape_attach_image): Log TAP image version and
system.
* datasette.c (datasette_read_gap): Some C16 tap support.
2002-01-06 Tibor Biczo <crown@axelero.hu>
* arch/win32/arch.dsp: Added plus4 folder to include path.
* plus4/plus4mem.c (mem_initialize_memory, mem_powerup): Set
mem_config only during power up and hard reset, but don't
change during soft reset.
* plus4/ted-draw.c (_draw_hires_bitmap,
_draw_hires_bitmap_2x): Fixed wrong color nibble pairings.
* plus4/ted.c (ted_reset): Initialize ted.reverse_mode.
* sound.c (sound_suspend): Don't call fill_buffer.
* sounddrv/sounddx.c (dx_write): Store last samples.
(dx_suspend): Fill buffer up with last buffered sample.
(dx_resume): Restart playing buffer from start.
* sounddrv/soundwmm.c (wmm_write): Store last samples.
(wmm_timercallback): Don't watch inactivity and don't
stop buffer playing, this function became obsolete, will
be removed.
(wmm_suspend, wmm_resume): New functions.
2002-01-04 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.55.
* vicii/vicii-draw.c, plus4/ted-draw.c (_draw_mc_text): Fixed
those ugly castings.
2002-01-04 Andreas Matthies <andreas.matthies@gmx.net>
* arch/beos/plus4kb.c: Fixed keyboard mapping to
match with windows port.
* arch/beos/ui_video.cc (video_canvas_resize): Removed
call to vsync_suspend_speed_eval as this dialog doesn't
stop the emu.
* arch/win32/uivideo.c (init_advanced dialog): Fill
phase textbox with N/A to prevent random entries.
* c128/c128.c (machine_write_snapshot): Fixed typo.
2002-01-04 Tibor Biczo <crown@axelero.hu>
* plus4/ted-draw.c: Added blinking color support for normal
textmode.
Added reverse bit support to the draw functions I missed.
Added cursor support to noncached draw functions.
Masked out the 7th bit from cbuf, where it is not needed.
* plus4/ted.c (ted_fetch_color): Fetch all bits. Bit 7 is used
for blinking in normal text mode.
2002-01-04 Tibor Biczo <crown@axelero.hu>
* arch/win32/plus4kbd.c: Fixed Plus4 keyboard layout.
* arch/win32/ui.c (handle_wm_command): Preserve pressed state
of RUN/STOP key during reset on Plus4.
* keyboard.c (keyboard_set_keyarr_and_latch): New function,
sets key state and moves the latch immediately into the
keymatrix.
* keyboard.h (keyboard_set_keyarr_and_latch): New prototype.
* plus4/plus4mem.c (store_zero): Stores to CPU ports also goes
into RAM as well.
(rom_read): $FC00-$FCFF ROM area is always accessed from the
KERNAL rom.
(ram_ffxx_read, ram_ffxx_store, rom_ffxx_read,
rom_ffxx_store): $FF3E and $FF3F reads and writes never get to
the RAM.
* plus4/ted-draw.c (get_char_data, _draw_std_text):
Implemented reverse bit support.
* plus4/ted-mem.c (unused_bits_in_registers): Set $3E and $3F
to $FF.
(ted_07_store): Set ted.reverse_mode.
* plus4/tedtypes.h (ted_s): New struct member reverse_mode.
2002-01-03 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.54.
2002-01-03 Andreas Matthies <andreas.matthies@gmx.net>
* arch/beos/video.cc (video_canvas_resize): Return
immediately if size hasn't changed.
* arch/beos/vsidui.cc: Don't set color for the view as
it isn't updated properly.
2002-01-03 Andreas Matthies <andreas.matthies@gmx.net>
* arch/beos/Makefile.am: Added new files ui_sid.{h|cc}.
* arch/beos/C128ui.cc, c64ui.cc, ui_sound.cc: Removed every
SID related stuff.
* arch/beos/constants.h: Added id for SID setting menu,
removed every other SID related id.
* arch/beos/ui.cc: Handle MENU_SID_SETTINGS.
* arch/beos/ui_sid.cc, ui_sid.h: New files that implement the
SID settings dialog.
* arch/beos/vicemenu.cc: Added shortcut for PAL emulation.
Added SID settings menu item, removed every other SID related
menu item.
* arch/beos/vicewindow.cc: Fixed top of the stausbar frame.
2002-01-02 pottendo <pottendo@utanet.at>
* arch/unix/vsidui.c (vsid_ui_display_tune_nr): Added call to
updated UI control.
(vsid_ui_display_name): ditto.
(vsid_ui_display_author): ditto.
(vsid_ui_display_copyright): ditto.
(vsid_ui_display_sync): ditto.
(vsid_ui_display_sid_model): ditto.
(vsid_ui_display_tune_nr): ditto.
(vsid_ui_display_irqtype): ditto.
* arch/unix/x11/gnome/Makefile.am (libgnomeui_a_SOURCES):
* arch/unix/x11/xaw/Makefile.am (libxawui_a_SOURCES): Added
`vsidcontrol.c'
* arch/unix/vsidui.h: New file; API to UI for vsid control UI.
* arch/unix/x11/xaw/uivsidcontrol.c: Dummies for vsid control
widget.
* arch/unix/x11/gnome/uivsidcontrol.c: New file, implemented
vsid control UI.
* arch/unix/x11/videoarch.h: fullscreen_set_palette() New
interface.
* arch/unix/x11/video.c (video_canvas_set_palette): Update
fullscreen color palettes.
* arch/unix/x11/gnome/uipalcontrol.c (pal_ctrl_reset):
Reworked to access defaults via
`resources_get_default_value()'.
`resourcese()'. Triggered bug in resources.c, see below.
* arch/unix/x11/dga2.c:
(all): Introduced `dag_log' for log messages.
(fullscreen_set_palette): Save physical color representation
in window mode away.
Changed interface to pass the canvas as first argument.
(alarm_timeout): Use DGA primitives to switch back, instead of
`fullscreen_mode_odd()'.
(fullscreen_refresh_func): Render through video layer in case
of PAL Emulation.
(fullscreen_set_mode): Install segfault handler.
Allocate new colors only if necessary. Use saved colors when
possible. Recalculate physical representation for video layer.
Support for PAL Emulation: If active emulation goes into
malloc'ed backbuffer. Refresh uses the video renderer to
render the picture into the backbuffer of the graphics card,
which in turn is drawn by the gfx hardware in Sync with the
screen refresh.
(fullscreen_mode_init): Initialize `dga_log'.
* resources.c (resources_get_default_value): Fixed access to
struct resource_s for factory value to return direct values.
2002-01-02 Thomas Bretz <tbretz@physik.tu-muenchen.de>
* arch/os2/dialogs/menubar.c:
removed NewLuminances for TED
* arch/os2/video.c:
changed GetWindowHeight/Width to use the canvas pointer
changed output in case of wrong coordinates
changed order in canvas_resize to fix a bug when calling
WM_PAINT
* crtc/crtc-resources.c, src/crtc/crtc.c:
moved raster_enable_double_size to crtc_resize
removed force_repaint from exposure handler (already in
rastaer code)
* plus4/ted-resources.c, src/plus4/ted.c:
moved raster_enable_double_size to ted_resize
removed force_repaint from exposure handler (already in raster
code)
* raster/raster.c
some unimportant changes to the code layout
* vdc/vdc-resources.c, src/vdc/vdc.c
moved raster_enable_double_size to set_geometry
changed first/last_displayed_line to fit the meaning in all
other canvases (FIXME: Screenshot doesn't work anymore now)
* vic20/vic-resources.c, src/vic20/vic.c:
moved raster_enable_double_size to vic_resize
removed force_repaint from exposure handler (already in raster
code)
* vicii/vicii-resources.c, src/vicii/vicii.c:
moved raster_enable_double_size to vicii_resize
removed force_repaint from exposure handler (already in raster
code)
2002-01-01 Thomas Bretz <tbretz@physik.tu-muenchen.de>
* arch/os2/dialogs/menubar.c: fixed a bug in the CRTC double
size/scan menu
* arch/os2/video.c: fixed WmPaint
* crtc/crtc-mem.c: show a bug in startup
* pet/pet.c: changed mHz debugging to Hz. mHz is real unusual
unit
2002-01-01 Andreas Matthies <andreas.matthies@gmx.net>
* arch/win32/rescbm2.rc: Added SID settings menuitem.
* arch/win32/uisid.c (CreateAndGetSidAddress): List of
addresses for second SID now depends on the machine.
2002-01-01 Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de>
* arch/win32/res.h, arch/win32/uimon.c,
monitor/mon_breakpoint.[hc], monitor/mon_ui.[hc]:
added support for a context menu for the monitor disassembly
window (to be opened by right-clicking inside of the window)
* sid/resid.cc: rewrote two assignments int --> bool so that
two warnings about assigning int to bool are avoided
2002-01-01 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.53.
* plus4/plus4mem.c: Removed support for separate video banks.
(mem_proc_port_read): Use IEC read function.
(mem_initialize_memory): Fixed write pointer.
(pio1_read, pio1_store): New functions.
(rom_ffxx_read, rom_ffxx_store, ram_ffxx_read,
ram_ffxx_store, rom_read): Fixed banking.
* plus4/ted.c (ted_fetch_color): New functions.
(do_matrix_fetch): Added separate color fetch DMA.
* plus4/tedtypes.h: Removed `ted_fetch_idx_t'.
* plus4/ted-sound.c, plus4/ted-sound.h (ted_sound_read,
ted_sound_store): New functions. First try of implementing
sound.
* plus4/ted-mem.c (ted_store, ted_read, ted_peek): Added calls
to TED sound.
(ted12_store): Care about bit #2..5 only.
* vicii/vicii-color.c: Commented out `vic_ii_color_dither'.
* plus4/ted-color.c, vic20/vic-color.c, vicii/vicii-color.c:
Removed comma at end of struct video_cbm_palette_t.
* maincpu.c: Removed `EVALUATE_SPEED' hack.
* vic20/vic20sound.c, vic20/vic20sound.h, vic20/vic-mem.c
(store_vic_sound): Renamed.
* vic20/vic20sound.c, pet/petsound.c
(sound_machine_dump_state): Use `xmsprintf()'.
(sound_machine_open): Clear the entire malloc'ed struct.
2001-12-30 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.52.
* plus4/plus4mem.c, plus4/plus4mem.h (mem_get_tedmem_base):
New function.
(mem_ioreg_list_get): Fixed TED memory region.
(mem_get_screen_parameter): Fixed TED screen base.
(mem_bank_read, mem_bank_write): Added ROM configurations.
* plus4/ted.c (ted_update_memory_ptrs): Fixed RAM/ROM fetch.
(ted_reset): reset cursor variables.
(ted_raster_draw_alarm_handler): Increment cursor phase.
* plus4/ted-mem.c (store_ted08): Added joystick support.
(read_ted1a1b, read_ted1f, store_ted3e, store_ted3f): New
functions.
(store_ted13): Support read RAM/ROM status bit.
* plus4/ted-draw.c (get_char_data, cache_data_fill_text,
_draw_std_text_cached, _draw_std_text_cached_2x): New
functions.
(get_std_text): Added cursor support.
* plus4/tedtypes.h: New variables `cursor_visible',
`cursor_phase' and `crsrpos'.
* arch/unix/plus4ui.c: Added joystick submenu.
* vicii/vicii-draw.c (get_hires_bitmap, get_mc_text,
get_mc_bitmap, get_ext_text): Fixed update flag handling.
* vdc/vdc-draw.c (get_std_text, get_hires_bitmap): Fixed video
cache coordinates.
* arch/msdos/video.c: #include "ui.h".
(video_init, canvas_set_vga_mode, video_canvas_refresh):
Removed unused variables.
(canvas_set_border_color): No need to inline this function.
* arch/msdos/videoarch.h: Added prototype for
`canvas_set_border_color()'.
* sound.c (sound_flush): Initialize variable `space'.
2001-12-30 Dag Lem <resid@nimrod.no>
* arch/msdos/menudefs.c (show_copyright_callback): Corrected
copyright period.
* arch/unix/x11/gnome/about.c (ui_about): Likewise.
* arch/unix/x11/xaw/about.c (ui_about): Likewise.
* c64/psid.c (psid_init_tune): Corrected typo.
* raster/raster.c (raster_realize, raster_free): Realize
canvas in vsid mode.
2001-12-30 Andreas Matthies <andreas.matthies@gmx.net>
* arch/win32/res.h: Added id for SID address control.
* arch/win32/res.rc: Added combobox for SID address to the
SID settings dialog. New function CreateAndGetSidAddress that
creates the address entries and sets the resource.
* sid/sid-cmdline-options.c: Changed info text for the
SID address option.
2001-12-29 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.51.
* utils.c, utils.h (util_file_load): Fill up memory with
mirrors if the file is short and `UTIL_FILE_LOAD_FILL' is
defined.
* c64/cart/retroreplay.c, c128/functionrom.c: Use new file
load feature instead of doing mirroring by hand.
* plus4/ted-mem.c (read_ted1e): New function.
* plus4/plus4mem.c (mem_config_ram_set, mem_config_rom_set,
extromlo1_read, extromlo2_read, extromlo3_read,
extromhi1_read, extromhi2_read, extromhi3_read):
New functions. Increased number of configs to 32.
* plus4/plus4memlimit.c: Added new memory configs.
* plus4/ted.c (ted_set_geometry): Extra border is not needed
anymore.
* plus4/ted-draw.c (_draw_hires_bitmap, _draw_hires_bitmap_2x,
get_mc_text, get_mc_bitmap, _draw_mc_bitmap,
_draw_mc_bitmap_2x, draw_mc_bitmap_foreground,
draw_mc_bitmap_foreground_2x, get_ext_text): Fixed video
modes.
2001-12-29 Andreas Matthies <andreas.matthies@gmx.net>
* arch/beos/video.c, videoarch.h: Removed obsolete stuff.
* arch/msdos/c128ui.c, c64ui.c, vic20ui.c: Added menuitem for
Fast PAL emulation.
* arch/msdos/menudefs.c: Small change in the VGA submenu.
* arch/msdos/statusbar.{c|h}: Added struct for the colors in
the statusbar and functions statusbar_register_colors and
statusbar_get_color.
* arch/msdos/ui.c: Removed every use of STATUSBAR_COLOR_* with
the a call of statusbar_get_color.
* arch/msdos/videoarch.h: Changed video_frame_buffer to a
simple PIXEL array. Added videorender BITMAP, depth and
videoconfig to video_canvas. Moved video_canvas_refresh to
video.c. Include video.h and palette.h.
* arch/msdos/video.c: Added more VGA modes with variable color
depth. Added an array canvaslist[] for correct handling of
multi-canvas machines. video_frame_buffer_alloc and .._free
handle the new frame_buffer type.
New functions canvas_free_bitmaps, canvas_update_colors.
(video_canvas_create) falls back to standard VGA if selected
mode fails. Implemented video_canvas_destroy.
New function canvas_change_palette. Removed statusbar color
stuff from video_canvas_set_palette. disable_text handles
every registered canvas to make changes in the VGA mode
visible.
(video_canvas_refresh) updates colors and clears screen if
active canvas has changed; uses video_render_main before
blitting to screen.
* arch/win32/fullscreen.c: Include <prsht.h>.
* vice.h: Define VIDEO_REMOVE_2X for MSDOS.
2001-12-28 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.50.
* vic20/vic-draw.c (fill_cache, draw_line_cached,
draw_reverse_line_cached, draw_line_cached_2x,
draw_reverse_line_cached_2x): Fixed start and end changes
coordinates calculation.
* raster/raster.c (add_line_and_double_scan): Update the
region between `start' and `end' and not the whole line if
`VIDEO_REMOVE_2X' is undefined too.
(raster_screenshot): Always use a pixel size of one if
`VIDEO_REMOVE_2X' is defined.
* crtc/crtc.c (crtc_raster_draw_alarm_handler): Change xoffset
only at line 0.
2001-12-26 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.49.
* plus4/ted-draw.c: Some color table fixes.
* plus4/ted-mem.c (store_ted161718): New function.
* plus4/ted.c (ted_update_video_mode): Fixed vmode debugging.
(ted_fetch_matrix): Fixed matrix fetch.
(ted_update_memory_ptrs): Fixed bitmap address calculation.
* plus4/plus4.c (machine_init): Reduced autostart waiting
time.
* c64/c64.c, c128/c128.c, vic20/vic20.c, pet/pet.c,
plus4/plus4.c, cbm2/c610.c, vicii/vicii.c, vicii/vicii.h,
sid/sid-snapshot.c, sid/sid-snapshot.h, c64/c64cia.h,
c64/c64cia1.c, c64/c64cia2.c, c128/c128cia1.c, cbm2/c610cia.h,
cbm2/c610cia1.c, c64/c64-snapshot.c, c128/c128-snapshot.c,
c64/c64acia.h, c64/c64acia1.c, pet/petacia.h, pet/petacia1.c,
drive/drive-snapshot.h, drive/drive-snapshot.c,
cbm2/c610acia.h, cbm2/c610acia1.c, cbm2/c610tpi.h,
cbm2/c610tpi1.c, cbm2/c610tpi2.c, vic20/vic20via.h,
vic20/vic20via1.c, vic20/vic20via2.c, vic20/vic20ieeevia.h,
vic20/vic20ieeevia1.c, vic20/vic20ieeevia2.c, vic20/vic.h,
crtc/crtc.h, crtc/crtc-snapshot.c, pet/petpia.h,
pet/petpia1.c, pet/petpia2.c, pet/petvia.h, pet/petvia.c,
maincpu.h, maincpu.c, drive/drivecpu.h, drive/drivecpu.c,
drive/viad.h, drive/via1d.c, drive/via2d.c, drive/ciad.h,
drive/cia1571d.c, drive/cia1581d.c, drive/riotd.h,
drive/riot1d.c, drive/riot2d.c, drive/fdc.h, drive/fdc.c,
ciacore.c, viacore.c, piacore.c, aciacore.c, tpicore.c,
c64/c64tpi.h, c64/c64tpi.c, riotcore.c: Directly call snapshot
modules, names restructured.
2001-12-26 John Selck <graham@cruise.de>
* plus4/ted-color.c: Introduced ted_colors_with_lum to
carry the 128 ted colors. ted_colors has been reduced to
the 16 base colors. ted_luminances[] intruduced to
carry the 8 different ted luminances.
ted_update_palette() now calculates the ted colors into
ted_colors_with_lum from ted_colors and ted_luminances[].
2001-12-25 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.48.
* c64/c64iec.c, c128/c128iec.c, plus4/plus4iec.c
(iec_update_cpu_bus): New function.
* autostart.c (check): Skip some tests if zero is passed.
* plus4/plus4.c (machine_init): Fixed screen and keyboard
variables.
* plus4/plus4mem.c (mem_initialize_memory): Initialize wrap
around page too.
* plus4/ted-mem.c (read_ted1c1d): New function.
(store_ted0a, store_ted0b): Fixed raster irq line.
(read_ted0a): Fixed register read access.
(store_ted15, store_ted19):
* plus4/ted.c (ted_raster_draw_alarm_handler): Fixed ECM bit.
2001-12-25 Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de>
* arch/win32/uimon.c: added possibility to toggle breakpoints
by clicking into the disassembly window
* monitor/mon.c: In mon_process(), added uimon_notify_change()
so anything done on the command line will update the
corresponding windows (I will think about it if this will be
permanently or if I will find a solution with a finer
granularity).
* monitor/mon_breakpoint.[hc]: added mon_is_breakpoint() and
mon_toggle_breakpoint()
* monitor/mon_ui.[hc]: renamed mon_scroll[_to]() to
mon_disassembly_scroll[_to](),
added mon_disassembly_toggle_breakpoint()
2001-12-24 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.47.
* raster/raster.c (add_line_and_double_scan): Update the
region between `start' and `end' and not the whole line.
* raster/raster-cache.c: Removed VDC specific functions.
* vdc/vdc-draw.c (get_attr_char_data,
cache_data_fill_attr_text, cache_data_fill_attr_text_const):
Moved functions here.
(get_std_text): Improved cursor handling.
(get_std_bitmap): Improved reverse bit implementation.
(cache_data_fill): New function.
* vdc/vdc.c, vdc/vdctypes.h: Removed `raster_ycounter_divide'.
* c64/reu.c (reu_dma): Restructured block functions, added
support for DMA cycle stealing.
2001-12-23 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.46.
* sid/sid-cmdline-options.c: New command line switch to set
the base address for 2nd SID.
* sid/sid-resources.c, sid/sid-resources.h
(set_sid_stereo_address): New function.
* machine.h, c64/c64.c, c128/c128.c, cbm2/c610.c
(machine_sid2_check_range): New function.
* sid/sid.c (sid_read, sid_store): Call 2nd SID if enabled.
* c64/c64io.c, c128/c128io.c (io1_read, io1_store, io2_read,
io2_store): Base address support for 2nd SID.
* arch/unix/c64ui.c, arch/unix/c128ui.c, arch/unix/c610ui.c:
Added second SID base address menu entries.
* diskimage.c (disk_image_open): Warn if unknown disk image is
opened.
* attach.c (attach_disk_image): Removed warning.
* ciacore.c (check_ciatodalarm): Check for running TOD clock.
* autostart.c (autostart_advance, check): New state
`AUTOSTART_PRESSPLAYONTAPE'.
2001-12-22 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.45.
* vicii/vicii-draw.c, plus4/ted-draw.c (_draw_mc_text): Fixed
casting if `ALLOW_UNALIGNED_ACCESS' is not defined.
* crtc/crtc-draw.c (setup_double_size_modes): Fixed definition
of `VIDEO_REMOVE_2X'.
* arch/win32/ui.c (window_proc): Added drag & drop support
provided by `webulator'.
* info.c: Updated.
* video/video-resources.c (video_resources_init): Initialize
variable `result'.
* palette.c (palette_load_core): Use `%ld' for `unsigned long
int' format.
2001-12-21 Dag Lem <resid@nimrod.no>
* arch/unix/xaw/uimenu.c (menu_popup_callback): Removed call
to vsync_suspend_speed_eval
2001-12-21 Andreas Matthies <andreas.matthies@gmx.net>
* arch/win32/video.c (canvas_update): Changed test of
cut_*line again.
* vicii/vicii.c (vic_ii_set_geometry): Use fixed width instead
of scaled when calling raster_set_geometry.
2001-12-20 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.44.
2001-12-20 John Selck <graham@cruise.de>
* arch/win32/res.rc: Improved video gui a bit.
* video/raster1x1.c, raster1x2.c, raster2x2.c: Changed all
int variables and parameters to unsigned int. Most
paramaters and some variables now have "const" keyword.
* video/raster1x1.h, raster1x2.h, raster2x2.h: Changed
prototypes so parameters match with the sourcefiles.
2001-12-20 Andreas Matthies <andreas.matthies@gmx.net>
* arch/win32/video.c (canvas_update): The viewport is already
scaled, so don't scale cut_*line with pixel size.
2001-12-19 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.43.
* arch/win32/video.c: Disabled debugging.
2001-12-19 Thomas Bretz <tbretz@physik.tu-muenchen.de>
* arch/os2/joystick.c, arch/os2/kbd/kmap-pet.c,
arch/os2/kbd/kmap.c, arch/os2/video.c,
arch/os2/joystick.c, arch/os2/kbd/kmap-pet.c,
arch/os2/kbd/kmap.c, arch/os2/kbd.c,
arch/os2/rs232.c, arch/os2/ui.c;
replaced {NULL} in structure init block by NULL,
the pointer to one field is NULL, not the first entry in this
field (by chance it is the same)
* arch/os2/uicmdline.c:
- changed some variables to the correct size_t
* arch/os2/uicmdline.h:
- changed first argument to unsigned int
* arch/os2/video.c:
- fixed the wrong code in the Andreas-repository
* log.c:
- fixed some assignments between un/signed int and size_t
- simplified the code in log_open
* palette.c:
- simplified the structure of palette_load
- removed goto
- fixed some assignments between signed/unsigned
* resources.c:
- fixed the usage of function pointer set_func. I wonder that
no compiler printed a warning
* zipcode.c:
- fixed assignments between int and size_t
2001-12-18 Andreas Boose <boose@linux.rz.fh-hannover.de>
* Version 1.7.42.
2001-12-18 Andreas Dehmel <dehmel@forwiss.tu-muenchen.de>
* arch/riscos/videoarch.h: added video_render_config_t to
canvas_t
* plus4/ted.c: protect ted_resources.double_scan_enabled by
VIC_II_NEED_2X
* vicii/vicii.c: protect vic_ii_resources.double_scan_enabled
by VIC_II_NEED_2X
2001-12-17 Dag Lem <resid@nimrod.no>
* arch/unix/uijoystick2.c (set_joystick_device_1,
set_joystick_device_2): Don't call vsync_suspend_speed_eval().
* arch/unix/x11/gnome/ui.c (exposure_callback): Likewise.
* arch/unix/x11/xaw/ui.c (exposure_callback): Likewise.
2001-12-17 Andreas Matthies <andreas.matthies@gmx.net>
* raster/raster.c (update_sprite_collision): Even the
fake_frame_buffer_ptr uses extra_offscreen_border as
offset.
(raster_reset): Use extra_offscreen_border as first offset
for frame_buffer_ptr.