ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/ChangeLog
Revision: 1.20
Committed: 1999-11-03T10:48:44Z (24 years, 6 months ago) by cebix
Branch: MAIN
Changes since 1.19: +1 -1 lines
Log Message:
- updated ChangeLog and spec file for 02111999 snapshot

File Contents

# Content
1 V0.8 (snapshot) - 2.Nov.1999
2 - fixed many UAE FPU bugs [Lauri Pesonen]
3 - added replacement for BlockMove() trap
4 - removed Windows sources from the source archive; a version of
5 these that actually compiles and works can be downloaded from
6 Lauri Pesonen's site
7 - removed the MemoryDispatch() replacement routine; the routine
8 in the ROM is now always used; this fixes the MacOS 8 Finder
9 copying bug and also most "unimplemented trap" errors on MacOS
10 bootup; yeah :-)
11 - a warning is issued if the ROM seems to require an FPU but FPU
12 emulation is turned off
13 - medium removal is allowed in CDROMExit()
14 - added (incomplete) emulation of 68040 instructions (CINV, CPUSH,
15 MOVE16 (Ax)+,(Ay)+, and FPU stack frames), enough to boot MacOS
16 - UAE CPU: opcode routines no longer return the cycle count
17 - extfs.cpp: fixed bug with fsResolveWDCB in fs_get_wd_info()
18 - Unix: added support for ESD audio output; merged with OSS audio
19 and put in a new "audio_oss_esd.cpp" file which is also used under
20 FreeBSD 3.x
21 - Unix: added mkinstalldirs to "make install" target
22 - Unix: cleaned up the configure script
23 - Unix: ROM breakpoint can be specified with "-break" command line
24 argument
25 - Unix: "-rominfo" command line argument to print information
26 about ROM version and tables
27 - Unix: ExtFS supports resource forks and Finder info (these are
28 kept in hidden ".finf" and ".rsrc" directories)
29 - Unix/audio_oss_esd.cpp: AudioStatus is re-set after determining
30 audio device capabilities (actual sample rate is also determined)
31 [Alexander R. Pruss]
32 - Unix/audio_oss_esd.cpp: "silence" in 8-bit mode used wrong fill
33 value (0 instead of 0x80) [Alexander R. Pruss]
34 - Unix/video_x.cpp: added mouse wheel support [Alexander R. Pruss]
35 - Unix/sys_unix.cpp: device size is read correctly under Linux
36 - AmigaOS: removed support for SAS/C
37 - AmigaOS/sys_amiga.cpp: supports 64-bit device I/O (NSD)
38 - AmigaOS/sys_amiga.cpp: device block size is respected on writes
39
40 V0.8 (snapshot) - 21.Oct.1999
41 - sony.cpp/disk.cpp/cdrom.cpp: disk insertions are now checked for
42 by an interrupt routine
43 - localizable strings are now split into a common and a platform-
44 specific set
45 - added external file system to access host OS files from the MacOS;
46 root directory is specified by the "extfs" prefs item
47 - moved most initialization/deinitialization code to InitAll() and
48 ExitAll() in main.cpp
49 - added patches for NetBSD [Bernd Sieker]
50 - corrected TimerDateTime() in timer_unix.cpp and timer_beos.cpp
51 [Toshimitsu Tanaka]
52 - AmigaOS: fixed crash when gtlayout.library was not present
53 - AmigaOS: now compiles with GCC (Geek Gadgets)
54 - AmigaOS/clip_amiga.cpp: fixed small bug in CR->LF translation
55 [Giacomo Magnini]
56 - Unix: compilation of cpuemu.cpp is now split in 8 parts
57 - Unix: volume list in GTK prefs editor is reorderable
58 - Unix: added fbdev DGA support and SPARC assembly optimizations to
59 UAE core [Gwenole Beauchesne]
60
61 V0.7 (release 0.7-2) - 6.Oct.1999
62 - Added BasiliskII.spec for making RPMs [with assistance from
63 Roman Niewiarowski]
64 - Unix: "basilisk_ii_keycodes" renamed to "keycodes", default
65 location of keycodes file is now /usr/local/share/BasiliskII/keycodes
66 - Unix: improved the install target, added uninstall target
67 - Unix/Windows: fixed bugs in protocol removal [Lauri Pesonen]
68 - Unix/Linux/NetDriver: removed MAKEDEV, functionality now included
69 in Makefile ("make dev")
70 - Unix/sys_unix.cpp: Sys_open() checks whether an HFS volume is currently
71 mounted under Linux and tries to unmount it
72 - Unix/sys_unix.cpp: implemented SysAddDiskPrefs() for Linux (scans
73 /etc/fstab to find HFS volumes)
74 - Unix/sys_unix.cpp: implemented Sys(Prevent/Allow)Removal() [Ryan Cumming]
75 - Unix/main_unix.cpp: added call to gtk_set_locale() before gtk_init()
76 [Toshimitsu Tanaka]
77 - Unix/video_x.cpp: "dga" screen preferences now takes width and
78 height as parameters (e.g. dga/640/480), like "win" [Pablo Averbuj]
79 - Unix/video_x.cpp: Caps Lock behaves as expected [Pablo Averbuj]
80 - Unix/prefs_editor_gtk.cpp: made the window width/height widgets
81 comboboxes providing some useful defaults
82
83 V0.7 (alpha) - 25.Jul.1999
84 - with 32-bit clean ROMs, the CPU type is now reported as a 68030
85 (for those OpenTransport fans :-)
86 - added new prefs item "nosound" to disable sound output
87 - sound output implemented for BeOS, Linux, Solaris and AmigaOS
88 (requires Sound Manager 3.x)
89 - dummy/audio_dummy.cpp: created
90 - dummy/prefs_dummy.cpp: created
91 - dummy/xpram_dummy.cpp: created
92 - macos_util.cpp: added FileDiskLayout()
93 - video.cpp: removed useless BlankMousePointer flag
94 - uae_cpu: updated to UAE 0.8.9
95 - uae_cpu/gencpu.c: fixed bug in CAS2, OpenTransport works now
96 - Unix: moved Linux- and FreeBSD-specific files to their respective
97 directories
98 - Unix: added 64-bit data types (needed by timer_unix.cpp)
99 - Unix: added keyboard translation method using raw keycodes instead of
100 keysyms (controlled by "keycodes" and "keycodefile" prefs items) which
101 doesn't depend on the selected keymap
102 - Unix: when running as root, Basilisk II tries to assign real-time
103 priorities to some threads
104 - Unix: calls to nanosleep() protected by autoconf define
105 - Unix/main_unix.cpp: tick thread replaced by POSIX.4 timer when possible
106 - Unix/timer_unix.cpp: uses POSIX.4 timing facilities when possible
107 - Unix/video_x.cpp: all X calls during emulation are now done from
108 the redraw thread which is also active in DGA mode; as a result,
109 XLockServer()/XUnlockServer() are no longer necessary
110 - Unix/sysdeps.h: changed C++ comments to C comments as this file is
111 included by some *.c files in uae_cpu [Brian J. Johnson]
112 - Unix/sysdeps.h: added unaligned access functions for SGI MIPSPro
113 compiler [Brian J. Johnson]
114 - Unix/Irix/unaligned.c: created [Brian J. Johnson]
115 - Windows: updated sources
116
117 V0.6 (alpha) - 12.Jul.1999
118 - Unix: Basilisk II now accepts a "-display <display>" argument to
119 specify the X display to use
120 - Unix: mounting floppies with Ctrl-F1 now works
121 - Unix/ether_linux.cpp: now works when ethertap is configured for
122 multicast support
123 - Unix/main_unix.cpp: XOpenDisplay() is now called from main()
124 - Unix/scsi_freebsd.cpp: added support for FreeBSD 2.x [Orlando Bassotto]
125 - Unix/posix_sem.cpp: updated [Orlando Bassotto]
126 - Unix/prefs_editor_gtk.cpp: serial pane recognizes FreeBSD serial/
127 printer devices [Orlando Bassotto]
128 - Unix/serial_unix.cpp: FreeBSD printer devices are recognized
129 [Orlando Bassotto]
130 - Unix/sys_unix.cpp: FreeBSD CD-ROM/floppy support, correct default
131 serial prefs for FreeBSD [Orlando Bassotto]
132 - Unix/sys_unix.cpp: fixed SysIsDiskInserted for Linux floppy
133 - Unix/FreeBSD/scsidump.cpp: added [Orlando Bassotto]
134
135 V0.6 (alpha) - 5.Jul.1999
136 - fixed mouse for Classic ROM and MacOS 6.x/7.x
137 - Unix/ether_linux.cpp: added ethertap support (see README for details)
138 - dummy/clip_dummy.cpp: created
139
140 V0.6 (alpha) - 2.Jul.1999
141 - rom_patches.cpp: added CheckROM() which has to be called before
142 PatchROM()
143 - rom_patches.cpp: started ROM patches for Classic/SE ROMs
144 - adb.cpp: ADB handlers get ADBBase passed in a3
145 - adb.cpp: moved temporary data area to ADBBase+0x163 (Mac Classic
146 mouse handler wants it there)
147 - emul_op.cpp/EMUL_OP_CLKNOMEM: reading from the RTC time registers
148 yields the correct time and date
149 - uae_cpu/cpu_emulation.h: added FLAYOUT_NONE to disable frame buffer
150 mapping
151 - uae_cpu/basilisk_glue.cpp: RAMBaseMac/ROMBaseMac are now set in
152 Init680x0() (instead of main_*.cpp)
153 - uae_cpu/memory.cpp: added support for Mac Plus/II memory maps
154 and 24 bit addressing
155 - uae_cpu/newcpu.cpp: re-implemented support for 68000/010 emulation
156 - uae_cpu/cpuopti.c: patched for egcs [Orlando Bassotto]
157 - main_*.cpp: added TwentyFourBitAddressing flag
158 - main_*.cpp: CPU type and addressing mode depends on ROM version
159 - main_*.cpp: tick thread changed to use new TimerDateTime() function
160 - include/video.h: VideoInit() takes "classic" parameter to select
161 "Classic" video mode (512x342, 1-bit)
162 - include/timer.h: new function TimerDateTime() to get local date/time
163 in Mac format
164 - Unix: support for FreeBSD [Orlando Bassotto]
165 - Unix/scsi_freebsd-cam.cpp: created [Orlando Bassotto]
166 - Unix/posix_sem.cpp: created [Orlando Bassotto]
167 - Unix/main_unix.cpp: added call to XF86DGAForkApp()
168 - Unix/video_x.cpp: support for Classic video mode and display on
169 1-bit screens
170 - Unix/video_x.cpp: added check whether screen is really DGA capable
171 - Unix/video_x.cpp: added check for image endianess
172 - Unix/sys_unix.cpp: added replacement for Linux llseek() for platforms
173 that don't have it
174 - Unix/*.cpp: replaced sleep()/usleep() by nanosleep()
175 - Amiga/prefs_editor_amiga.cpp: ROM file selection via file requester
176 didn't work
177
178 V0.6 (alpha) - 22.Jun.1999
179 - fixed small compilation problems on BeOS/x86
180 - rsrc_patches.cpp: fixed for MacOS 7.6.1
181 - dummy/scsi_dummy.cpp: scsi_send_cmd() was missing timeout parameter
182 - Unix/video_x.cpp: fixed compilation problem on systems without DGA
183 - BeOS/prefs_editor_beos.cpp: it is now possible to drop ROM files on
184 the "ROM File" control
185 - BeOS/sys_beos.cpp: Basilisk II will not try to unmount volumes (from
186 BeOS) that are to be mounted read-only
187
188 V0.6 (alpha) - 20.Jun.1999
189 - scsi.cpp: added "timeout" parameter to scsi_send_cmd()
190 - scsi_*.cpp: fixed S/G table processing bug in scsi_send_cmd()
191 (every entry was written to/read from the same buffer address)
192 - Unix/scsi_linux.cpp: implemented
193 - Unix/video_x.cpp: new hotkeys: Ctrl-Esc = emergency quit from DGA mode,
194 Ctrl-Tab = suspend DGA mode
195 - Unix/video_x.cpp: implemented VideoQuitFullScreen() (used by
196 ErrorAlert())
197 - BeOS/video_beos.cpp: implemented VideoQuitFullScreen() (used by
198 ErrorAlert())
199
200 V0.6 (alpha) - 19.Jun.1999
201 - sys_*.cpp: 400K DiskCopy disk images are now recognized (84 byte
202 header)
203 - user_strings.cpp: added strings for GTK preferences editor
204 - Unix: implemented preferences editor (requires GTK)
205 - Unix: added "install" target to Makefile
206 - Unix: created minimal man page
207 - Unix/main_unix.cpp: ErrorAlert() and WarningAlert() pop up dialog
208 boxes when GTK is present
209 - BeOS/prefs_editor_beos.cpp: added "Create" button to volume list
210 - BeOS/prefs_editor_beos.cpp: "About" dialog added
211
212 V0.5 (alpha) - 13.Jun.1999
213 - prefs.cpp: added ZapPRAM()
214 - prefs.cpp: PrefsReplaceString() can now take an index
215 - user_strings.cpp: added strings for preferences editor
216 - prefs_editor_*.*: created
217 - sys.h: SysCDStop() now takes the MSF address of the lead-out track
218 as a parameter
219 - AmigaOS: start offset and size of devices is now given in blocks,
220 not bytes
221 - AmigaOS: implemented preferences editor
222 - BeOS: implemented preferences editor
223 - AmigaOS/sys_amiga.cpp: added checks for NSD and 64-bit TD commands
224 (not yet used)
225 - AmigaOS/sys_amiga.cpp: implemented CD audio commands
226 - Unix/sys_unix.cpp: CD-ROM devices are opened with O_NONBLOCK flag
227 - Unix/sys_unix.cpp: using CDROM_DRIVE_STATUS to check for inserted
228 disks if drive supports it
229 - Unix/sys_unix.cpp: CD-ROM devices are closed and reopened on eject
230 to clear the driver's internal buffers
231 - Unix/video_x.cpp: added incremental refresh mode [David Lawrence]
232 - Unix/video_x.cpp: small changes to the DGA code
233
234 V0.5 (alpha) - 17.May 1999
235 - new "fpu" prefs item to enable/disable the (buggy) UAE FPU emulation
236 - Defaults for platform-specific prefs items can be set in the new
237 AddPlatformPrefsDefault() function which gets called by PrefsInit()
238 - added dummy audio component, so MacOS versions >=7.5 should be more
239 stable when running programs that try to do something with sound
240 - adb.cpp: relative mouse mode should work a bit better
241 - macos_util.cpp: new function HasMacStarted() to check Mac warm
242 start flag
243 - macos_util.cpp: new function MountVolume() to aid implementation
244 of manual volume mounting
245 - cdrom.cpp: added CDROMMountVolume()
246 - BeOS: replaced "Mount floppy" menu item by submenu with list of all
247 removable volumes
248 - Win32: many fixes and improvements [Lauri Pesonen]
249
250 V0.5 (alpha) - 8.May 1999
251 - added information about GPL to all source files
252 - rom_patches.cpp: fixed one unaligned access problem (Sparc)
253 - replaced "off_t" by "loff_t" to allow 64 bit disk access under Linux
254 - created "dummy" platform directory containing generic "do-nothing"
255 versions of certain files to aid in testing and porting
256 - Unix: improved autoconf stuff and sysdeps.h
257 - Unix: now compiles under Solaris
258 - Unix/video_x.cpp: automatic SHM detection, fallback to XPutImage
259
260 V0.5 (alpha) - 26.Apr.1999
261 - main_*.cpp: ramsize is rounded down to 1MB boundary
262 - uae_cpu/memory.h: added "REGPARAM2" in more places [Lauri Pesonen]
263 - uae_cpu/memory.cpp: changed "Diff" variables from "uae_8 *" to
264 "uae_u32" [Lauri Pesonen]
265 - uae_cpu/memory.cpp: added "REGPARAM2" in more places [Lauri Pesonen]
266 - uae_cpu/newcpu.h: added "REGPARAM2" in more places [Lauri Pesonen]
267 - uae_cpu/newcpu.cpp: added "REGPARAM2" in more places [Lauri Pesonen]
268 - Windows/*: integrated updated Windows sources from Lauri Pesonen
269
270 V0.5 (alpha) - 25.Apr.1999
271 - prefs.cpp/PrefsRemoveItem(): deleting the last item now works
272 - uae_cpu/memory.cpp: changed "uae_u8 REGPARAM2 *func()" to
273 "uae_u8 *REGPARAM2 func()"
274 - Unix/ether_unix.cpp: implemented
275 - Unix/Linux/NetDriver: created
276 - Unix/video_x.cpp: added support for 32 bit screens, cleaned up
277 VisualInfo code
278 - BeOS/ether_beos.cpp: cleaned up the code
279 - BeOS/video_beos.cpp: full screen video mode and color depth can now
280 be set via prefs("scr/<mode>")
281
282 V0.4 (alpha) - 15.Apr.1999
283 - Added some literature references to the source files
284 - Modularized CPU engine: the interface of the CPU engine is now
285 defined in cpu_emulation.h, so different CPU engines can be
286 substituted more easily [as requested by Bill Huey]
287 - uae_cpu/gencpu.c: duplicate_carry() was missing in SUB and NBCD routines
288 - Unix: added autoconf stuff
289 - Unix: modified the makefile so it won't fail if cpuopti didn't work
290 [Daniel Thompson]
291
292 V0.4 (alpha) - 11.Apr.1999
293 - cdrom.cpp: find_hfs_partition() bailed out too soon when finding no
294 "PN" signature [Lauri Pesonen]
295 - prefs.cpp: prefs file allows more whitespace between keyword and value
296 [Lauri Pesonen]
297 - prefs.cpp: remodeled to allow platform-specific prefs items (list of
298 keywords is kept in table)
299 - video.cpp/cscSetEntries: luminance mapping uses integer instead of
300 floating point math
301 - video_*.cpp: on most systems, the frame buffer is allocated with
302 two additional lines as some ROM versions seem to write behind
303 the frame buffer proper
304 - BeOS/Unix/sysdeps.h: defined X86_ASSEMBLY on i386/GCC systems
305 - BeOS/Unix/sysdeps.h: redefined get/put_mem() functions to take and
306 return an uae_u32 value, added some more x86 optimizations
307 - Unix/serial_unix.cpp/kSERDBaudRate: rates between 57600 and 65535
308 result in a rate of 57600 [Lauri Pesonen]
309
310 V0.4 (alpha) - 10.Apr.1999
311 - upgraded to UAE 0.8.8 CPU, CPU is now built with "gencpu", UAE sources
312 moved to "uae" directory
313 - new preferences item "rom" to specify the path of the ROM file
314 - new preferences item "ether" for Ethernet driver
315 - new INTFLAG_ETHER interrupt flag
316 - main_*.cpp: added ChoiceAlert()
317 - main_*.cpp: disabled UAE FPU (as it is buggy)
318 - serial_*.cpp: device_name is now a "const char *"
319 - serial_*.cpp: implemented monitor (#define MONITOR 1 to activate)
320 - *.h: changed "#ifdef _XXX_H_" to "#ifdef XXX_H" as symbols starting
321 with an underscore are reserved
322 - rom_patches.cpp: icon data moved to sony/disk/cdrom.cpp
323 - rom_patches.cpp: removed unnecessary a0/a1 save/restore from drivers
324 - slot_rom.cpp: removed unnecessary a0/a1 save/restore from drivers
325 - serial_defs.h: added error codes
326 - AmigaOS: the Kickstart ROM is no longer used to redirect NIL pointer
327 accesses as this crashes some machines (especially 68040-based);
328 a scratch memory block is used instead
329 - AmigaOS/serial_amiga.cpp: implemented
330 - AmigaOS/ether_amiga.cpp: implemented
331 - AmigaOS/sys_amiga.cpp: SysAddSerialPrefs() now returns real defaults
332 - AmigaOS/main_amiga.cpp: when the memory for the Mac RAM and ROM
333 cannot be allocated, an error message is displayed (instead of crashing)
334 - AmigaOS/main_amiga.cpp: interrupts are disabled during execution
335 of an EMUL_OP routine
336 - AmigaOS/asm_support.asm: the CTRL-C handler checks for pending
337 AmigaDOS operations
338 - AmigaOS/asm_support.asm: the interrupt signal exception is rethrown
339 when the interrupt level in EmulatedSR gets lowered while interrupts
340 are pending
341 - BeOS: switched from project files to Be supplied makefile system
342 - BeOS/ether_beos.cpp: implemented
343 - BeOS/serial_beos.cpp: modem status of parallel device is returned
344 as (dsrEvent | dcdEvent | ctsEvent)
345 - BeOS/serial_beos.cpp: implemented kSERDBaudRate
346 - BeOS/serial_beos.cpp: serdtDCE is set in PrimeIn()/PrimeOut()
347 - Unix/serial_unix.cpp: added support for parallel ports
348 - Unix/serial_unix.cpp: serdtDCE is set in PrimeIn()/PrimeOut()
349 - Unix/video_x.cpp: pressing F12 and q will quit Basilisk II in DGA mode
350 (useful when it crashed)
351
352 V0.3 (alpha) - 14.Mar.1999
353 - Unix/video_x.cpp: added 15, 16 and 32 bit window modes [Bill Huey]
354 - BeOS/video_beos.cpp: "screen" prefs item is now either
355 "win/<width>/<height>" for window mode or "scr" for full-screen
356 mode
357 - added documentation of preferences file format to README
358
359 V0.2 (alpha) - 11.Mar.1999
360 - tested with ROM versions 19 and 26
361 - prefs.cpp: renamed TYPE_BOOL to TYPE_BOOLEAN beacuse of name clash on
362 BeOS R4.1
363 - uae_memory.cpp: added support for frame buffer pixel type conversion
364 in virtual addressing mode, the Mac frame buffer layout now has to be
365 specified in MacFrameLayout (video.h)
366 - Unix/video_x.cpp: the "screen" prefs item is now read to select
367 window mode (with a specified window size) or DGA mode
368 - Unix/video_x.cpp: DGA mode supports 15, 16 and 32 bit modes (packed
369 24 bit pixels don't work)
370 - Unix/Makefile.linux: added -D_REENTRANT to compiler flags
371
372 V0.2 (alpha) - 23.Jan.1999
373 - first alpha release