ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/ChangeLog
Revision: 1.80
Committed: 2002-02-07T16:10:53Z (22 years, 2 months ago) by cebix
Branch: MAIN
Changes since 1.79: +1 -0 lines
Log Message:
cleaned up pthread attributes [Brian Johnson]

File Contents

# Content
1 V1.0 (snapshot) - <date>
2 - fixed the problem with Ticks getting incremented on every interrupt, not
3 just 60Hz (e.g. moving the mouse made the caret blink faster)
4 - Unix: cleaned up pthread attributes [Brian Johnson]
5
6 V1.0 (snapshot) - 15.Jan.2002
7 - added support for on-the-fly video resolution and depth switching, and
8 gamma tables
9 - fsave/frestore emulation under AmigaOS and NetBSD/m68k always behaves like
10 a 68882/68040 FPU, eliminating the need for 68060 FPU patches
11 - added support for platform-independant mutexes, used by adb.cpp for
12 thread-safe mouse handling
13 - the TIME_OFFSET constant has been replaced by a (portable) function
14 TimeToMacTime(); file dates in ExtFS should now be correct
15 - ADBInterrupt() is no longer called from the 60Hz interrupt but has its own
16 interrupt flag, potentially increasing the smoothness of mouse movement
17 - ether.cpp: implemented relatively platform-independant "AppleTalk over UDP"
18 mode that doesn't require any special kernel modules or network drivers but
19 can only interconnect instances of Basilisk II; this is enabled by setting
20 "udptunnel" to true
21 - Unix: windowed display mode supports different resolutions and color depths,
22 which can be switched on-the-fly
23 - Unix: Ctrl-F5 grabs mouse in windowed mode (enhanced compatibility with
24 games like flight simulators)
25 - Unix: X11 events are handled as soon as they arrive, outside of the 60Hz
26 video refresh raster
27 - Unix: audio sample rate, bit depth and channel count are adjustable in the
28 MacOS "Sound" control panel
29
30 V0.9 (release 0.9-1) - 31.May 2001
31 - final adjustments for 0.9 release
32
33 V0.9 (snapshot) - 29.May 2001
34 - added help for command line arguments, PrefsInit() now removes all processed
35 options
36 - serial_unix.cpp: input/output_thread_cancel weren't initialized
37 [Kolja Waschk]
38 - Unix: some performance improvements to VOSF screen update code
39 [Brian J. Johnson]
40 - Unix: renewed SIGSEGV support functions. Side effect: configure script
41 cleanups and probable Direct Addressing/VOSF support for other platforms
42 (NetBSD, AIX, OSF/1, Irix) [Gwenole Beauchesne]
43 - Unix: -Ofast option is supplied to MIPSPro compiler [Brian J. Johnson]
44 - Unix: workaround for IRIX pthreads bug in Delay_usec() [Brian J. Johnson]
45 - Unix: FreeBSD configure script cleanups [Michael Alyn Miller]
46 - Unix: ether_linux.cpp moved and renamed to ether_unix.cpp, now also works
47 with the tap driver under FreeBSD [Michael Alyn Miller]
48 - BeOS: fixed some bugs in the extfs file types handling
49 - AmigaOS: SCSI buffer type can be selected
50
51 V0.9 (snapshot) - 17.Feb.2001
52 - adapted for cxmon V3.0 which is now the required minimum
53 - UAE cpu: fixed a bug in the memory handlers preventing from correctly
54 updating 15 and 16 bpp displays on big endian systems
55 - Unix: added (experimental) real addressing mode [Gwenole Beauchesne]
56 (activated through the "--enable-addressing=real" configure option)
57 - Unix: added direct addressing mode [Gwenole Beauchesne] (default addressing
58 mode, if possible)
59 - Unix: added screen updates on SEGV signals [Gwenole Beauchesne] (activated
60 through the "--enable-vosf" configure option)
61 - Unix: added IRIX audio driver [Brian J. Johnson]
62 - Unix: improved timing of periodic threads
63 - Unix: command line options now use '--'-prefix, e.g. "--rominfo"
64 - AmigaOS: enabled floppy support, fixed floppy bugs [Jürgen Lachmann]
65 - AmigaOS: Amiga mouse pointer is hidden inside windowed Mac displays
66 - AmigaOS/sys_amiga.cpp: workaround for 2060scsi.device bug when when reading
67 from CD-ROM [Jürgen Lachmann]
68 - AmigaOS/prefs_editor_amiga.cpp: fixed bug when adding volumes
69 [Jürgen Lachmann]
70 - AmigaOS: added MacsBug support (tested with MacsBug6.6.1), fixed
71 <move sr,(sp)> bug [Jürgen Lachmann]
72 - AmigaOS: disabled 68060 Super Bypass mode because of CPU bug triggered by
73 MacOS 8
74 - AmigaOS: implemented XPRAM watchdog task
75 - AmigaOS/Unix/extfs_*.cpp: .finf helper file now stores complete
76 FInfo/FXInfo, replaced get/set_finder_*() functions by get/set_finfo()
77 - AmigaOS/Unix: it's possible to specify preferences items on the command line
78 - BeOS: implemented the "powerrom_cpu" CPU engine for BeOS/PPC that uses the
79 680x0 emulator contained in an Apple PowerMac ROM to run Basilisk II (ca.
80 4x speed improvement); when running on a BeBox, a PCI PowerMac ROM image is
81 needed to use this (the path name of the ROM file can be set with the
82 preferences item "powerrom", default is "PowerROM")
83 - include/macos_util.h: defines FOURCC() macro to make MacOS-like
84 four-character-codes, replaced most instances of multi-character constants
85 in the sources by this macro to avoid compiler warnings
86 - cdrom.cpp: implemented Status(6) call (return format list) [Landon Fuller]
87 - Imported some changes from the Windows port, most notably FPU fixes and the
88 1Hz interrupt [Lauri Pesonen]
89 - Ported Lauri Pesonen's FPU core to GCC/i386 [Gwenole Beauchesne]
90
91 V0.8 (snapshot) - 13.Jul.2000
92 - Unix: runs natively on NetBSD/m68k
93 - Unix: compiles without pthreads, but without serial/ethernet/audio support
94 - Unix: "--without-mon" configure option now works
95 - Unix/video_x.cpp: DGA and SHM are only tried on local X11 displays
96 - Unix/video_x.cpp: re-integrated old window update method; frameskip=0
97 ("Dynamic") selects new method, other values select old method
98 - Unix/prefs_editor_unix.cpp: new "Input" pane, containing keycode and mouse
99 wheel options
100 - AmigaOS: added support for CyberGraphX [Jürgen Lachmann]
101 - audio.cpp: audio_data is cleared on reset [Lauri Pesonen]
102 - prefs.cpp: empty string prefs items could be written to prefs file but not
103 read back correctly
104 - clip_*.cpp: added prefs item "noclipconversion" for turning off charset
105 conversion of text clips (only CR->LF gets translated) [Toshimitsu Tanaka]
106
107 V0.8 (snapshot) - 14.Mar.2000
108 - Unix/video_x.cpp: new window refresh code [Samuel Lander]
109 - Unix/timer_unix.cpp: fixed time zone handling under Linux and SVR4
110
111 V0.8 (release 0.8-1) - 30.Jan.2000
112 - extfs: extended size of finf helper files to 32 bytes to eventually allow
113 storing the complete FInfo/FXInfo in it
114
115 V0.8 (snapshot) - 22.Dec.1999
116 - imported UAE CPU 0.8.10 changes
117 - new utility functions Mac_memset, Mac2Host_memcpy, Host2Mac_memcpu and
118 Mac2Mac_memcpy
119 - extfs.cpp: fixed bug in fs_rename() and fs_cat_move() (auxiliary IOParam
120 block was not in Mac address space and FSItem parent IDs didn't get swapped)
121 [Lauri Pesonen]
122 - extfs.cpp: several fixes [Lauri Pesonen]
123 - some provisions for using UAE CPU compiler (doesn't work yet)
124 - video_x.cpp: XFree86 VidMode extension is used to switch modes in DGA mode
125
126 V0.8 (snapshot) - 2.Nov.1999
127 - fixed many UAE FPU bugs [Lauri Pesonen]
128 - added replacement for BlockMove() trap
129 - removed Windows sources from the source archive; a version of these that
130 actually compiles and works can be downloaded from Lauri Pesonen's site
131 - removed the MemoryDispatch() replacement routine; the routine in the ROM is
132 now always used; this fixes the MacOS 8 Finder copying bug and also most
133 "unimplemented trap" errors on MacOS bootup; yeah :-)
134 - a warning is issued if the ROM seems to require an FPU but FPU emulation is
135 turned off
136 - medium removal is allowed in CDROMExit()
137 - added (incomplete) emulation of 68040 instructions (CINV, CPUSH,
138 MOVE16 (Ax)+,(Ay)+, and FPU stack frames), enough to boot MacOS
139 - UAE CPU: opcode routines no longer return the cycle count
140 - extfs.cpp: fixed bug with fsResolveWDCB in fs_get_wd_info()
141 - Unix: added support for ESD audio output; merged with OSS audio and put in
142 a new "audio_oss_esd.cpp" file which is also used under FreeBSD 3.x
143 - Unix: added mkinstalldirs to "make install" target
144 - Unix: cleaned up the configure script
145 - Unix: ROM breakpoint can be specified with "-break" command line argument
146 - Unix: "-rominfo" command line argument to print information about ROM
147 version and tables
148 - Unix: ExtFS supports resource forks and Finder info (these are kept in
149 hidden ".finf" and ".rsrc" directories)
150 - Unix/audio_oss_esd.cpp: AudioStatus is re-set after determining audio
151 device capabilities (actual sample rate is also determined)
152 [Alexander R. Pruss]
153 - Unix/audio_oss_esd.cpp: "silence" in 8-bit mode used wrong fill value
154 (0 instead of 0x80) [Alexander R. Pruss]
155 - Unix/video_x.cpp: added mouse wheel support [Alexander R. Pruss]
156 - Unix/sys_unix.cpp: device size is read correctly under Linux
157 - AmigaOS: removed support for SAS/C
158 - AmigaOS/sys_amiga.cpp: supports 64-bit device I/O (NSD)
159 - AmigaOS/sys_amiga.cpp: device block size is respected on writes
160
161 V0.8 (snapshot) - 21.Oct.1999
162 - sony.cpp/disk.cpp/cdrom.cpp: disk insertions are now checked for by an
163 interrupt routine
164 - localizable strings are now split into a common and a platform-specific set
165 - added external file system to access host OS files from the MacOS; root
166 directory is specified by the "extfs" prefs item
167 - moved most initialization/deinitialization code to InitAll() and ExitAll()
168 in main.cpp
169 - added patches for NetBSD [Bernd Sieker]
170 - corrected TimerDateTime() in timer_unix.cpp and timer_beos.cpp
171 [Toshimitsu Tanaka]
172 - AmigaOS: fixed crash when gtlayout.library was not present
173 - AmigaOS: now compiles with GCC (Geek Gadgets)
174 - AmigaOS/clip_amiga.cpp: fixed small bug in CR->LF translation
175 [Giacomo Magnini]
176 - Unix: compilation of cpuemu.cpp is now split in 8 parts
177 - Unix: volume list in GTK prefs editor is reorderable
178 - Unix: added fbdev DGA support and SPARC assembly optimizations to UAE core
179 [Gwenole Beauchesne]
180
181 V0.7 (release 0.7-2) - 6.Oct.1999
182 - Added BasiliskII.spec for making RPMs [with assistance from Roman
183 Niewiarowski]
184 - Unix: "basilisk_ii_keycodes" renamed to "keycodes", default location of
185 keycodes file is now /usr/local/share/BasiliskII/keycodes
186 - Unix: improved the install target, added uninstall target
187 - Unix/Windows: fixed bugs in protocol removal [Lauri Pesonen]
188 - Unix/Linux/NetDriver: removed MAKEDEV, functionality now included in
189 Makefile ("make dev")
190 - Unix/sys_unix.cpp: Sys_open() checks whether an HFS volume is currently
191 mounted under Linux and tries to unmount it
192 - Unix/sys_unix.cpp: implemented SysAddDiskPrefs() for Linux (scans /etc/fstab
193 to find HFS volumes)
194 - Unix/sys_unix.cpp: implemented Sys(Prevent/Allow)Removal() [Ryan Cumming]
195 - Unix/main_unix.cpp: added call to gtk_set_locale() before gtk_init()
196 [Toshimitsu Tanaka]
197 - Unix/video_x.cpp: "dga" screen preferences now takes width and height as
198 parameters (e.g. dga/640/480), like "win" [Pablo Averbuj]
199 - Unix/video_x.cpp: Caps Lock behaves as expected [Pablo Averbuj]
200 - Unix/prefs_editor_gtk.cpp: made the window width/height widgets comboboxes
201 providing some useful defaults
202
203 V0.7 (alpha) - 25.Jul.1999
204 - with 32-bit clean ROMs, the CPU type is now reported as a 68030 (for those
205 OpenTransport fans :-)
206 - added new prefs item "nosound" to disable sound output
207 - sound output implemented for BeOS, Linux, Solaris and AmigaOS (requires
208 Sound Manager 3.x)
209 - dummy/audio_dummy.cpp: created
210 - dummy/prefs_dummy.cpp: created
211 - dummy/xpram_dummy.cpp: created
212 - macos_util.cpp: added FileDiskLayout()
213 - video.cpp: removed useless BlankMousePointer flag
214 - uae_cpu: updated to UAE 0.8.9
215 - uae_cpu/gencpu.c: fixed bug in CAS2, OpenTransport works now
216 - Unix: moved Linux- and FreeBSD-specific files to their respective
217 directories
218 - Unix: added 64-bit data types (needed by timer_unix.cpp)
219 - Unix: added keyboard translation method using raw keycodes instead of
220 keysyms (controlled by "keycodes" and "keycodefile" prefs items) which
221 doesn't depend on the selected keymap
222 - Unix: when running as root, Basilisk II tries to assign real-time priorities
223 to some threads
224 - Unix: calls to nanosleep() protected by autoconf define
225 - Unix/main_unix.cpp: tick thread replaced by POSIX.4 timer when possible
226 - Unix/timer_unix.cpp: uses POSIX.4 timing facilities when possible
227 - Unix/video_x.cpp: all X calls during emulation are now done from the redraw
228 thread which is also active in DGA mode; as a result,
229 XLockServer()/XUnlockServer() are no longer necessary
230 - Unix/sysdeps.h: changed C++ comments to C comments as this file is included
231 by some *.c files in uae_cpu [Brian J. Johnson]
232 - Unix/sysdeps.h: added unaligned access functions for SGI MIPSPro compiler
233 [Brian J. Johnson]
234 - Unix/Irix/unaligned.c: created [Brian J. Johnson]
235 - Windows: updated sources
236
237 V0.6 (alpha) - 12.Jul.1999
238 - Unix: Basilisk II now accepts a "-display <display>" argument to specify the
239 X display to use
240 - Unix: mounting floppies with Ctrl-F1 now works
241 - Unix/ether_linux.cpp: now works when ethertap is configured for multicast
242 support
243 - Unix/main_unix.cpp: XOpenDisplay() is now called from main()
244 - Unix/scsi_freebsd.cpp: added support for FreeBSD 2.x [Orlando Bassotto]
245 - Unix/posix_sem.cpp: updated [Orlando Bassotto]
246 - Unix/prefs_editor_gtk.cpp: serial pane recognizes FreeBSD serial/printer
247 devices [Orlando Bassotto]
248 - Unix/serial_unix.cpp: FreeBSD printer devices are recognized
249 [Orlando Bassotto]
250 - Unix/sys_unix.cpp: FreeBSD CD-ROM/floppy support, correct default serial
251 prefs for FreeBSD [Orlando Bassotto]
252 - Unix/sys_unix.cpp: fixed SysIsDiskInserted for Linux floppy
253 - Unix/FreeBSD/scsidump.cpp: added [Orlando Bassotto]
254
255 V0.6 (alpha) - 5.Jul.1999
256 - fixed mouse for Classic ROM and MacOS 6.x/7.x
257 - Unix/ether_linux.cpp: added ethertap support (see README for details)
258 - dummy/clip_dummy.cpp: created
259
260 V0.6 (alpha) - 2.Jul.1999
261 - rom_patches.cpp: added CheckROM() which has to be called before PatchROM()
262 - rom_patches.cpp: started ROM patches for Classic/SE ROMs
263 - adb.cpp: ADB handlers get ADBBase passed in a3
264 - adb.cpp: moved temporary data area to ADBBase+0x163 (Mac Classic mouse
265 handler wants it there)
266 - emul_op.cpp/EMUL_OP_CLKNOMEM: reading from the RTC time registers yields
267 the correct time and date
268 - uae_cpu/cpu_emulation.h: added FLAYOUT_NONE to disable frame buffer mapping
269 - uae_cpu/basilisk_glue.cpp: RAMBaseMac/ROMBaseMac are now set in Init680x0()
270 (instead of main_*.cpp)
271 - uae_cpu/memory.cpp: added support for Mac Plus/II memory maps and 24 bit
272 addressing
273 - uae_cpu/newcpu.cpp: re-implemented support for 68000/010 emulation
274 - uae_cpu/cpuopti.c: patched for egcs [Orlando Bassotto]
275 - main_*.cpp: added TwentyFourBitAddressing flag
276 - main_*.cpp: CPU type and addressing mode depends on ROM version
277 - main_*.cpp: tick thread changed to use new TimerDateTime() function
278 - include/video.h: VideoInit() takes "classic" parameter to select "Classic"
279 video mode (512x342, 1-bit)
280 - include/timer.h: new function TimerDateTime() to get local date/time in Mac
281 format
282 - Unix: support for FreeBSD [Orlando Bassotto]
283 - Unix/scsi_freebsd-cam.cpp: created [Orlando Bassotto]
284 - Unix/posix_sem.cpp: created [Orlando Bassotto]
285 - Unix/main_unix.cpp: added call to XF86DGAForkApp()
286 - Unix/video_x.cpp: support for Classic video mode and display on 1-bit
287 screens
288 - Unix/video_x.cpp: added check whether screen is really DGA capable
289 - Unix/video_x.cpp: added check for image endianess
290 - Unix/sys_unix.cpp: added replacement for Linux llseek() for platforms that
291 don't have it
292 - Unix/*.cpp: replaced sleep()/usleep() by nanosleep()
293 - Amiga/prefs_editor_amiga.cpp: ROM file selection via file requester didn't
294 work
295
296 V0.6 (alpha) - 22.Jun.1999
297 - fixed small compilation problems on BeOS/x86
298 - rsrc_patches.cpp: fixed for MacOS 7.6.1
299 - dummy/scsi_dummy.cpp: scsi_send_cmd() was missing timeout parameter
300 - Unix/video_x.cpp: fixed compilation problem on systems without DGA
301 - BeOS/prefs_editor_beos.cpp: it is now possible to drop ROM files on the
302 "ROM File" control
303 - BeOS/sys_beos.cpp: Basilisk II will not try to unmount volumes (from BeOS)
304 that are to be mounted read-only
305
306 V0.6 (alpha) - 20.Jun.1999
307 - scsi.cpp: added "timeout" parameter to scsi_send_cmd()
308 - scsi_*.cpp: fixed S/G table processing bug in scsi_send_cmd() (every entry
309 was written to/read from the same buffer address)
310 - Unix/scsi_linux.cpp: implemented
311 - Unix/video_x.cpp: new hotkeys:
312 Ctrl-Esc = emergency quit from DGA mode,
313 Ctrl-Tab = suspend DGA mode
314 - Unix/video_x.cpp: implemented VideoQuitFullScreen() (used by ErrorAlert())
315 - BeOS/video_beos.cpp: implemented VideoQuitFullScreen() (used by ErrorAlert())
316
317 V0.6 (alpha) - 19.Jun.1999
318 - sys_*.cpp: 400K DiskCopy disk images are now recognized (84 byte header)
319 - user_strings.cpp: added strings for GTK preferences editor
320 - Unix: implemented preferences editor (requires GTK)
321 - Unix: added "install" target to Makefile
322 - Unix: created minimal man page
323 - Unix/main_unix.cpp: ErrorAlert() and WarningAlert() pop up dialog boxes when
324 GTK is present
325 - BeOS/prefs_editor_beos.cpp: added "Create" button to volume list
326 - BeOS/prefs_editor_beos.cpp: "About" dialog added
327
328 V0.5 (alpha) - 13.Jun.1999
329 - prefs.cpp: added ZapPRAM()
330 - prefs.cpp: PrefsReplaceString() can now take an index
331 - user_strings.cpp: added strings for preferences editor
332 - prefs_editor_*.*: created
333 - sys.h: SysCDStop() now takes the MSF address of the lead-out track as a
334 parameter
335 - AmigaOS: start offset and size of devices is now given in blocks, not bytes
336 - AmigaOS: implemented preferences editor
337 - BeOS: implemented preferences editor
338 - AmigaOS/sys_amiga.cpp: added checks for NSD and 64-bit TD commands (not yet
339 used)
340 - AmigaOS/sys_amiga.cpp: implemented CD audio commands
341 - Unix/sys_unix.cpp: CD-ROM devices are opened with O_NONBLOCK flag
342 - Unix/sys_unix.cpp: using CDROM_DRIVE_STATUS to check for inserted disks if
343 drive supports it
344 - Unix/sys_unix.cpp: CD-ROM devices are closed and reopened on eject to clear
345 the driver's internal buffers
346 - Unix/video_x.cpp: added incremental refresh mode [David Lawrence]
347 - Unix/video_x.cpp: small changes to the DGA code
348
349 V0.5 (alpha) - 17.May 1999
350 - new "fpu" prefs item to enable/disable the (buggy) UAE FPU emulation
351 - Defaults for platform-specific prefs items can be set in the new
352 AddPlatformPrefsDefault() function which gets called by PrefsInit()
353 - added dummy audio component, so MacOS versions >=7.5 should be more stable
354 when running programs that try to do something with sound
355 - adb.cpp: relative mouse mode should work a bit better
356 - macos_util.cpp: new function HasMacStarted() to check Mac warm start flag
357 - macos_util.cpp: new function MountVolume() to aid implementation of manual
358 volume mounting
359 - cdrom.cpp: added CDROMMountVolume()
360 - BeOS: replaced "Mount floppy" menu item by submenu with list of all
361 removable volumes
362 - Win32: many fixes and improvements [Lauri Pesonen]
363
364 V0.5 (alpha) - 8.May 1999
365 - added information about GPL to all source files
366 - rom_patches.cpp: fixed one unaligned access problem (Sparc)
367 - replaced "off_t" by "loff_t" to allow 64 bit disk access under Linux
368 - created "dummy" platform directory containing generic "do-nothing" versions
369 of certain files to aid in testing and porting
370 - Unix: improved autoconf stuff and sysdeps.h
371 - Unix: now compiles under Solaris
372 - Unix/video_x.cpp: automatic SHM detection, fallback to XPutImage
373
374 V0.5 (alpha) - 26.Apr.1999
375 - main_*.cpp: ramsize is rounded down to 1MB boundary
376 - uae_cpu/memory.h: added "REGPARAM2" in more places [Lauri Pesonen]
377 - uae_cpu/memory.cpp: changed "Diff" variables from "uae_8 *" to "uae_u32"
378 [Lauri Pesonen]
379 - uae_cpu/memory.cpp: added "REGPARAM2" in more places [Lauri Pesonen]
380 - uae_cpu/newcpu.h: added "REGPARAM2" in more places [Lauri Pesonen]
381 - uae_cpu/newcpu.cpp: added "REGPARAM2" in more places [Lauri Pesonen]
382 - Windows/*: integrated updated Windows sources from Lauri Pesonen
383
384 V0.5 (alpha) - 25.Apr.1999
385 - prefs.cpp/PrefsRemoveItem(): deleting the last item now works
386 - uae_cpu/memory.cpp: changed "uae_u8 REGPARAM2 *func()" to
387 "uae_u8 *REGPARAM2 func()"
388 - Unix/ether_unix.cpp: implemented
389 - Unix/Linux/NetDriver: created
390 - Unix/video_x.cpp: added support for 32 bit screens, cleaned up VisualInfo
391 code
392 - BeOS/ether_beos.cpp: cleaned up the code
393 - BeOS/video_beos.cpp: full screen video mode and color depth can now be set
394 via prefs("scr/<mode>")
395
396 V0.4 (alpha) - 15.Apr.1999
397 - Added some literature references to the source files
398 - Modularized CPU engine: the interface of the CPU engine is now defined in
399 cpu_emulation.h, so different CPU engines can be substituted more easily
400 [as requested by Bill Huey]
401 - uae_cpu/gencpu.c: duplicate_carry() was missing in SUB and NBCD routines
402 - Unix: added autoconf stuff
403 - Unix: modified the makefile so it won't fail if cpuopti didn't work
404 [Daniel Thompson]
405
406 V0.4 (alpha) - 11.Apr.1999
407 - cdrom.cpp: find_hfs_partition() bailed out too soon when finding no "PN"
408 signature [Lauri Pesonen]
409 - prefs.cpp: prefs file allows more whitespace between keyword and value
410 [Lauri Pesonen]
411 - prefs.cpp: remodeled to allow platform-specific prefs items (list of
412 keywords is kept in table)
413 - video.cpp/cscSetEntries: luminance mapping uses integer instead of floating
414 point math
415 - video_*.cpp: on most systems, the frame buffer is allocated with two
416 additional lines as some ROM versions seem to write behind the frame buffer
417 proper
418 - BeOS/Unix/sysdeps.h: defined X86_ASSEMBLY on i386/GCC systems
419 - BeOS/Unix/sysdeps.h: redefined get/put_mem() functions to take and return
420 an uae_u32 value, added some more x86 optimizations
421 - Unix/serial_unix.cpp/kSERDBaudRate: rates between 57600 and 65535 result in
422 a rate of 57600 [Lauri Pesonen]
423
424 V0.4 (alpha) - 10.Apr.1999
425 - upgraded to UAE 0.8.8 CPU, CPU is now built with "gencpu", UAE sources moved
426 to "uae" directory
427 - new preferences item "rom" to specify the path of the ROM file
428 - new preferences item "ether" for Ethernet driver
429 - new INTFLAG_ETHER interrupt flag
430 - main_*.cpp: added ChoiceAlert()
431 - main_*.cpp: disabled UAE FPU (as it is buggy)
432 - serial_*.cpp: device_name is now a "const char *"
433 - serial_*.cpp: implemented monitor (#define MONITOR 1 to activate)
434 - *.h: changed "#ifdef _XXX_H_" to "#ifdef XXX_H" as symbols starting with an
435 underscore are reserved
436 - rom_patches.cpp: icon data moved to sony/disk/cdrom.cpp
437 - rom_patches.cpp: removed unnecessary a0/a1 save/restore from drivers
438 - slot_rom.cpp: removed unnecessary a0/a1 save/restore from drivers
439 - serial_defs.h: added error codes
440 - AmigaOS: the Kickstart ROM is no longer used to redirect NIL pointer
441 accesses as this crashes some machines (especially 68040-based); a scratch
442 memory block is used instead
443 - AmigaOS/serial_amiga.cpp: implemented
444 - AmigaOS/ether_amiga.cpp: implemented
445 - AmigaOS/sys_amiga.cpp: SysAddSerialPrefs() now returns real defaults
446 - AmigaOS/main_amiga.cpp: when the memory for the Mac RAM and ROM cannot be
447 allocated, an error message is displayed (instead of crashing)
448 - AmigaOS/main_amiga.cpp: interrupts are disabled during execution of an
449 EMUL_OP routine
450 - AmigaOS/asm_support.asm: the CTRL-C handler checks for pending AmigaDOS
451 operations
452 - AmigaOS/asm_support.asm: the interrupt signal exception is rethrown when the
453 interrupt level in EmulatedSR gets lowered while interrupts are pending
454 - BeOS: switched from project files to Be supplied makefile system
455 - BeOS/ether_beos.cpp: implemented
456 - BeOS/serial_beos.cpp: modem status of parallel device is returned as
457 (dsrEvent | dcdEvent | ctsEvent)
458 - BeOS/serial_beos.cpp: implemented kSERDBaudRate
459 - BeOS/serial_beos.cpp: serdtDCE is set in PrimeIn()/PrimeOut()
460 - Unix/serial_unix.cpp: added support for parallel ports
461 - Unix/serial_unix.cpp: serdtDCE is set in PrimeIn()/PrimeOut()
462 - Unix/video_x.cpp: pressing F12 and q will quit Basilisk II in DGA mode
463 (useful when it crashed)
464
465 V0.3 (alpha) - 14.Mar.1999
466 - Unix/video_x.cpp: added 15, 16 and 32 bit window modes [Bill Huey]
467 - BeOS/video_beos.cpp: "screen" prefs item is now either "win/<width>/<height>"
468 for window mode or "scr" for full-screen mode
469 - added documentation of preferences file format to README
470
471 V0.2 (alpha) - 11.Mar.1999
472 - tested with ROM versions 19 and 26
473 - prefs.cpp: renamed TYPE_BOOL to TYPE_BOOLEAN beacuse of name clash on BeOS
474 R4.1
475 - uae_memory.cpp: added support for frame buffer pixel type conversion in
476 virtual addressing mode, the Mac frame buffer layout now has to be specified
477 in MacFrameLayout (video.h)
478 - Unix/video_x.cpp: the "screen" prefs item is now read to select window mode
479 (with a specified window size) or DGA mode
480 - Unix/video_x.cpp: DGA mode supports 15, 16 and 32 bit modes (packed 24 bit
481 pixels don't work)
482 - Unix/Makefile.linux: added -D_REENTRANT to compiler flags
483
484 V0.2 (alpha) - 23.Jan.1999
485 - first alpha release