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