]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/log
francis/winuae.git
5 years agoCD insert/eject shortcut.
Toni Wilen [Sat, 31 Oct 2020 11:03:13 +0000 (13:03 +0200)]
CD insert/eject shortcut.

5 years agoMemory bank metadata support.
Toni Wilen [Sat, 31 Oct 2020 11:01:48 +0000 (13:01 +0200)]
Memory bank metadata support.

5 years ago24/32-bit DMA option and clockport expander support.
Toni Wilen [Sat, 31 Oct 2020 10:57:47 +0000 (12:57 +0200)]
24/32-bit DMA option and clockport expander support.

5 years ago4500b6
Toni Wilen [Sun, 18 Oct 2020 15:14:33 +0000 (18:14 +0300)]
4500b6

5 years agoUse MMU translation debug function.
Toni Wilen [Sun, 18 Oct 2020 13:00:49 +0000 (16:00 +0300)]
Use MMU translation debug function.

5 years agoHardware graphics board emulation updates and fixes.
Toni Wilen [Sun, 18 Oct 2020 13:00:23 +0000 (16:00 +0300)]
Hardware graphics board emulation updates and fixes.

5 years agoFix Virge 3D vertical clipping.
Toni Wilen [Sat, 17 Oct 2020 17:00:53 +0000 (20:00 +0300)]
Fix Virge 3D vertical clipping.

5 years agoMove horizontal doubling to common code.
Toni Wilen [Sat, 17 Oct 2020 17:00:11 +0000 (20:00 +0300)]
Move horizontal doubling to common code.

5 years ago4500b5
Toni Wilen [Sun, 11 Oct 2020 17:43:46 +0000 (20:43 +0300)]
4500b5

5 years agoCV64/3D uses original Virge, not Virge/DX chip.
Toni Wilen [Sun, 11 Oct 2020 17:18:52 +0000 (20:18 +0300)]
CV64/3D uses original Virge, not Virge/DX chip.

5 years agoReturn random data if disk DMA started with selected drive but motor turned off.
Toni Wilen [Sun, 11 Oct 2020 17:17:55 +0000 (20:17 +0300)]
Return random data if disk DMA started with selected drive but motor turned off.

5 years agoDo not mount executable as a bootable disk image if it has disk image extension or...
Toni Wilen [Sun, 11 Oct 2020 17:16:03 +0000 (20:16 +0300)]
Do not mount executable as a bootable disk image if it has disk image extension or is too large.

5 years agoMerge pull request #184 from huth/fixes
Toni Wilen [Sun, 11 Oct 2020 16:08:12 +0000 (19:08 +0300)]
Merge pull request #184 from huth/fixes

Avoid using isspace() with signed characters

5 years ago4500b4
Toni Wilen [Sat, 10 Oct 2020 14:41:03 +0000 (17:41 +0300)]
4500b4

5 years agoPCem RTG updates and fixes.
Toni Wilen [Sat, 10 Oct 2020 14:15:35 +0000 (17:15 +0300)]
PCem RTG updates and fixes.

5 years agoPCem RTG board support fixes.
Toni Wilen [Sat, 10 Oct 2020 14:14:48 +0000 (17:14 +0300)]
PCem RTG board support fixes.

5 years agoAdd used CHS/LBA mode to IDE logging.
Toni Wilen [Sat, 10 Oct 2020 14:13:01 +0000 (17:13 +0300)]
Add used CHS/LBA mode to IDE logging.

5 years agoDisk write length fix.
Toni Wilen [Sat, 10 Oct 2020 14:11:47 +0000 (17:11 +0300)]
Disk write length fix.

5 years agobsdsocket.library SBTC_GET_BYTES_RECEIVED and SBTC_GET_BYTES_SENT.
Toni Wilen [Sat, 10 Oct 2020 14:10:22 +0000 (17:10 +0300)]
bsdsocket.library SBTC_GET_BYTES_RECEIVED and SBTC_GET_BYTES_SENT.

5 years agoAvoid using isspace() with signed characters
Thomas Huth [Tue, 6 Oct 2020 02:44:57 +0000 (04:44 +0200)]
Avoid using isspace() with signed characters

"char" is signed by default on many systems, so when using a "char"
variable as input to isspace(), which takes an "int" parameter, the
parameter gets sign-extended. Now in some libc implementations, the
isspace() function is implemented as a macro that directly indexes
an array for looking up the result - which might go wrong, of course,
if the byte values has the highest bit set. So when compiling Hatari
with Cygwin, there are the following compiler warnings:

.../build68k.c: In function ‘main’:
.../build68k.c:314:18: warning: array subscript has type ‘char’ [-Wchar-subscripts]
  314 |   while (isspace(*opstrp))
      |                  ^~~~~~~
.../build68k.c:319:18: warning: array subscript has type ‘char’ [-Wchar-subscripts]
  319 |    if (!isspace (*osendp))
      |                  ^~~~~~~
.../build68k.c:331:19: warning: array subscript has type ‘char’ [-Wchar-subscripts]
  331 |   while (!isspace(*p++));
      |                   ^~~~

Thus let's make sure to cast the "char" to unsigned first before using
it as parameter to the isspace() function.

5 years ago4500b3
Toni Wilen [Fri, 2 Oct 2020 17:20:45 +0000 (20:20 +0300)]
4500b3

5 years ago4500b2
Toni Wilen [Mon, 28 Sep 2020 17:12:34 +0000 (20:12 +0300)]
4500b2

5 years agoReset uaegfx screen dragging position at startup.
Toni Wilen [Sun, 27 Sep 2020 18:10:22 +0000 (21:10 +0300)]
Reset uaegfx screen dragging position at startup.

5 years agoSet PPC VRAM flags.
Toni Wilen [Sun, 27 Sep 2020 18:09:39 +0000 (21:09 +0300)]
Set PPC VRAM flags.

5 years agoJIT opcode blacklist config entry.
Toni Wilen [Sun, 27 Sep 2020 18:08:15 +0000 (21:08 +0300)]
JIT opcode blacklist config entry.

5 years agoStatusline update.
Toni Wilen [Sun, 27 Sep 2020 18:06:58 +0000 (21:06 +0300)]
Statusline update.

5 years ago4500b1
Toni Wilen [Sat, 26 Sep 2020 15:53:06 +0000 (18:53 +0300)]
4500b1

5 years agoInterrupt could have been lost in some edge case situation.
Toni Wilen [Sat, 26 Sep 2020 15:09:30 +0000 (18:09 +0300)]
Interrupt could have been lost in some edge case situation.

5 years agoDo not do 68000 IPL sampling when writing last data, it is too late.
Toni Wilen [Sat, 26 Sep 2020 15:07:57 +0000 (18:07 +0300)]
Do not do 68000 IPL sampling when writing last data, it is too late.

5 years agoBitplane DMA special case/Blitter no-nasty mode/Copper update/cleanups.
Toni Wilen [Sat, 26 Sep 2020 15:06:55 +0000 (18:06 +0300)]
Bitplane DMA special case/Blitter no-nasty mode/Copper update/cleanups.

5 years agoIt seems SCSI chip always resets phase state after MSGACC command.
Toni Wilen [Sat, 26 Sep 2020 15:05:04 +0000 (18:05 +0300)]
It seems SCSI chip always resets phase state after MSGACC command.

5 years agoDisk rotation speed fix.
Toni Wilen [Sat, 26 Sep 2020 15:03:09 +0000 (18:03 +0300)]
Disk rotation speed fix.

5 years agoOSD font update.
Toni Wilen [Sat, 26 Sep 2020 14:47:55 +0000 (17:47 +0300)]
OSD font update.

5 years agoFix Cirrus Logic VRAM start if >2M board. Picaso IV 15-bit non-PC mode colors fixed...
Toni Wilen [Wed, 23 Sep 2020 19:18:05 +0000 (22:18 +0300)]
Fix Cirrus Logic VRAM start if >2M board. Picaso IV 15-bit non-PC mode colors fixed. Use total line count instead of visible count.

5 years agoMisc fixes.
Toni Wilen [Tue, 22 Sep 2020 16:45:52 +0000 (19:45 +0300)]
Misc fixes.

5 years agoFix for config file delete not refreshing config list.
Toni Wilen [Tue, 22 Sep 2020 16:44:11 +0000 (19:44 +0300)]
Fix for config file delete not refreshing config list.

5 years agoRemove unneeded CD label hack. Use case-insensitive duplicate volume check.
Toni Wilen [Tue, 22 Sep 2020 16:43:07 +0000 (19:43 +0300)]
Remove unneeded CD label hack. Use case-insensitive duplicate volume check.

5 years agoRemove unneeded variables.
Toni Wilen [Tue, 22 Sep 2020 16:42:14 +0000 (19:42 +0300)]
Remove unneeded variables.

5 years agoAmiga Bootblock Reader bootblock brainfile.xml support
Toni Wilen [Tue, 22 Sep 2020 16:39:49 +0000 (19:39 +0300)]
Amiga Bootblock Reader bootblock brainfile.xml support

5 years agoUpdate to correct filesys_helpers.asm. Remove extra spaces.
Toni Wilen [Sun, 20 Sep 2020 14:26:34 +0000 (17:26 +0300)]
Update to correct filesys_helpers.asm. Remove extra spaces.

5 years agoFix hardware emulated graphics board screenshots.
Toni Wilen [Sat, 19 Sep 2020 10:32:17 +0000 (13:32 +0300)]
Fix hardware emulated graphics board screenshots.

5 years agoOnly KS 3.0+ has fully working RTF_AFTERDOS.
Toni Wilen [Sat, 19 Sep 2020 10:30:20 +0000 (13:30 +0300)]
Only KS 3.0+ has fully working RTF_AFTERDOS.

5 years agoDisassemble FBF with zero offset as FNOP.
Toni Wilen [Sat, 19 Sep 2020 10:28:23 +0000 (13:28 +0300)]
Disassemble FBF with zero offset as FNOP.

5 years agoDual playfield with illegal BPLCON2 priorities didn't work correctly in hires mode.
Toni Wilen [Sat, 19 Sep 2020 10:27:07 +0000 (13:27 +0300)]
Dual playfield with illegal BPLCON2 priorities didn't work correctly in hires mode.

5 years agoEmulate HAM + DPF undocumented feature.
Toni Wilen [Sat, 5 Sep 2020 18:18:13 +0000 (21:18 +0300)]
Emulate HAM + DPF undocumented feature.

5 years agoSkip MMU cache flush if MMU is not enabled.
Toni Wilen [Wed, 2 Sep 2020 18:56:27 +0000 (21:56 +0300)]
Skip MMU cache flush if MMU is not enabled.

5 years agoFix CIA reset defaults and unused register return value.
Toni Wilen [Wed, 2 Sep 2020 18:55:48 +0000 (21:55 +0300)]
Fix CIA reset defaults and unused register return value.

5 years agoRemove use of unnecessary C++-only feature.
Toni Wilen [Sat, 29 Aug 2020 17:04:51 +0000 (20:04 +0300)]
Remove use of unnecessary C++-only feature.

5 years agoPicasso96 2.5.0+ screen dragging support.
Toni Wilen [Sat, 29 Aug 2020 17:03:51 +0000 (20:03 +0300)]
Picasso96 2.5.0+ screen dragging support.

5 years agoUpdate default analog joystick offset/multiplier.
Toni Wilen [Sat, 29 Aug 2020 17:02:23 +0000 (20:02 +0300)]
Update default analog joystick offset/multiplier.

5 years agoNV(ram) status line string.
Toni Wilen [Sat, 29 Aug 2020 17:01:45 +0000 (20:01 +0300)]
NV(ram) status line string.

5 years agox86 bridgeboard update/PCem 16.
Toni Wilen [Sat, 29 Aug 2020 17:00:44 +0000 (20:00 +0300)]
x86 bridgeboard update/PCem 16.

5 years agoPCem v16 merge. Modifications.
Toni Wilen [Sat, 29 Aug 2020 16:58:00 +0000 (19:58 +0300)]
PCem v16 merge. Modifications.

5 years agoPCem v16 merge. Original files.
Toni Wilen [Sat, 29 Aug 2020 16:56:46 +0000 (19:56 +0300)]
PCem v16 merge. Original files.

5 years agoMerge branch 'master' of github.com:tonioni/WinUAE
Toni Wilen [Wed, 26 Aug 2020 15:31:35 +0000 (18:31 +0300)]
Merge branch 'master' of github.com:tonioni/WinUAE

5 years agoMerge pull request #181 from huth/fixes
Toni Wilen [Mon, 24 Aug 2020 14:54:34 +0000 (17:54 +0300)]
Merge pull request #181 from huth/fixes

Silence some compiler warnings in the CPU code

5 years agoMark the nfgenerated variable with NOWARN_UNUSED
Thomas Huth [Sat, 22 Aug 2020 08:11:18 +0000 (10:11 +0200)]
Mark the nfgenerated variable with NOWARN_UNUSED

The variable is only used if NOFLAGS_SUPPORT_GENCPU is not set, so GCC
emits a compiler warning about a set-but-unused variable here. Let's
use the NOWARN_UNUSED() macro to suppress the unnecessary warning in
this case.

5 years agogetjitcputbl() and uaegetjitcputbl() are only useful if JIT is enabled
Thomas Huth [Sat, 22 Aug 2020 08:01:54 +0000 (10:01 +0200)]
getjitcputbl() and uaegetjitcputbl() are only useful if JIT is enabled

5 years agoAdd missing prototype for do_merges()
Thomas Huth [Sat, 22 Aug 2020 07:58:17 +0000 (09:58 +0200)]
Add missing prototype for do_merges()

Without this prototype there is a GCC compiler warning when compiling
the corresponding code in Hatari.

5 years agoRemoved unneeded thread function return parameter.
Toni Wilen [Sun, 2 Aug 2020 07:32:34 +0000 (10:32 +0300)]
Removed unneeded thread function return parameter.

5 years agoPAL/NTSC vertical size adjustment in Default filtering mode.
Toni Wilen [Wed, 29 Jul 2020 14:38:58 +0000 (17:38 +0300)]
PAL/NTSC vertical size adjustment in Default filtering mode.

5 years agoEmulate T1/T0/M normally if JIT mode.
Toni Wilen [Wed, 29 Jul 2020 14:38:06 +0000 (17:38 +0300)]
Emulate T1/T0/M normally if JIT mode.

5 years agoCPU tester JIT loop mode updates.
Toni Wilen [Wed, 29 Jul 2020 13:12:02 +0000 (16:12 +0300)]
CPU tester JIT loop mode updates.

5 years agoReformatting.
Toni Wilen [Wed, 29 Jul 2020 12:57:38 +0000 (15:57 +0300)]
Reformatting.

5 years agoFix Hard flush JIT option.
Toni Wilen [Tue, 28 Jul 2020 14:21:42 +0000 (17:21 +0300)]
Fix Hard flush JIT option.

5 years agoSeparated NOFLAGS_SUPPORT to NOFLAGS_SUPPORT_GENCOMP and NOFLAGS_SUPPORT_GENCPU
Toni Wilen [Tue, 28 Jul 2020 13:06:18 +0000 (16:06 +0300)]
Separated NOFLAGS_SUPPORT to NOFLAGS_SUPPORT_GENCOMP and NOFLAGS_SUPPORT_GENCPU

5 years agoAranym JIT merge.
Toni Wilen [Mon, 27 Jul 2020 16:56:31 +0000 (19:56 +0300)]
Aranym JIT merge.

5 years agoAtari ST fixes.
Toni Wilen [Wed, 22 Jul 2020 19:30:26 +0000 (22:30 +0300)]
Atari ST fixes.

5 years agoJIT loop mode improved CCR error checking and reporting.
Toni Wilen [Tue, 21 Jul 2020 18:53:56 +0000 (21:53 +0300)]
JIT loop mode improved CCR error checking and reporting.

5 years agoShowEA_disp fix
Toni Wilen [Sun, 19 Jul 2020 17:23:28 +0000 (20:23 +0300)]
ShowEA_disp fix

5 years agoSkip A7 relative branches in supervisor mode.
Toni Wilen [Sun, 19 Jul 2020 17:18:40 +0000 (20:18 +0300)]
Skip A7 relative branches in supervisor mode.

5 years agoFix comp_catchfault
Toni Wilen [Sun, 19 Jul 2020 17:17:20 +0000 (20:17 +0300)]
Fix comp_catchfault

5 years agoFix CHK2 disassembly. PC8r shows displacement address.
Toni Wilen [Sun, 19 Jul 2020 17:16:26 +0000 (20:16 +0300)]
Fix CHK2 disassembly. PC8r shows displacement address.

5 years agoDebugger fi command multiword support.
Toni Wilen [Sun, 19 Jul 2020 17:06:49 +0000 (20:06 +0300)]
Debugger fi command multiword support.

5 years agoALF2 (OMTI variant) emulation.
Toni Wilen [Fri, 17 Jul 2020 19:09:35 +0000 (22:09 +0300)]
ALF2 (OMTI variant) emulation.

5 years agoSet also 68030 data cache flush bit.
Toni Wilen [Fri, 17 Jul 2020 19:03:00 +0000 (22:03 +0300)]
Set also 68030 data cache flush bit.

5 years agoJIT loop mode undefined CCR support
Toni Wilen [Mon, 13 Jul 2020 19:52:15 +0000 (22:52 +0300)]
JIT loop mode undefined CCR support

5 years agoCAS2 writes Rn2 first.
Toni Wilen [Mon, 13 Jul 2020 19:51:13 +0000 (22:51 +0300)]
CAS2 writes Rn2 first.

5 years agoCPU tester undefined CCR option.
Toni Wilen [Mon, 13 Jul 2020 18:00:59 +0000 (21:00 +0300)]
CPU tester undefined CCR option.

5 years agoCPU tester storage size fix and prealloc mode.
Toni Wilen [Mon, 13 Jul 2020 12:25:31 +0000 (15:25 +0300)]
CPU tester storage size fix and prealloc mode.

5 years agoTrumpcard interrupt support option, ROM v1.5 and v3.1. GPV v4.13.
Toni Wilen [Fri, 10 Jul 2020 18:40:43 +0000 (21:40 +0300)]
Trumpcard interrupt support option, ROM v1.5 and v3.1. GPV v4.13.

5 years agoOnly Paula checks DMAEN when deciding if audio/disk DMA request needs to be generated...
Toni Wilen [Fri, 10 Jul 2020 18:39:40 +0000 (21:39 +0300)]
Only Paula checks DMAEN when deciding if audio/disk DMA request needs to be generated. Agnus does not check it.

5 years agoUse correct 68040/060 instruction cache bit. JIT loop mode should skip all tests...
Toni Wilen [Fri, 10 Jul 2020 18:27:24 +0000 (21:27 +0300)]
Use correct 68040/060 instruction cache bit. JIT loop mode should skip all tests that generate exception(s).

5 years agoAlways save and restore exception vectors if 68000 and no low test memory enabled.
Toni Wilen [Thu, 9 Jul 2020 06:53:26 +0000 (09:53 +0300)]
Always save and restore exception vectors if 68000 and no low test memory enabled.

5 years ago8.3 compatible filenames.
Toni Wilen [Wed, 8 Jul 2020 17:43:40 +0000 (20:43 +0300)]
8.3 compatible filenames.

5 years agoJIT loop mode updates and some fixes.
Toni Wilen [Tue, 7 Jul 2020 17:21:54 +0000 (20:21 +0300)]
JIT loop mode updates and some fixes.

5 years agoGVP A1230 Jaws Turbo+
Toni Wilen [Mon, 6 Jul 2020 19:28:59 +0000 (22:28 +0300)]
GVP A1230 Jaws Turbo+

5 years agoDIVL causing exception should only reset (an)+/-(an) if 68060 unimplemented.
Toni Wilen [Mon, 6 Jul 2020 19:28:14 +0000 (22:28 +0300)]
DIVL causing exception should only reset (an)+/-(an) if 68060 unimplemented.

5 years agoWorking CPU tester JIT loop mode test.
Toni Wilen [Mon, 6 Jul 2020 19:26:52 +0000 (22:26 +0300)]
Working CPU tester JIT loop mode test.

5 years agoCPU tester exception stacked PC validation
Toni Wilen [Fri, 3 Jul 2020 16:57:20 +0000 (19:57 +0300)]
CPU tester exception stacked PC validation

5 years ago4400 4400
Toni Wilen [Fri, 3 Jul 2020 09:46:21 +0000 (12:46 +0300)]
4400

5 years ago4400b9
Toni Wilen [Sun, 28 Jun 2020 18:57:41 +0000 (21:57 +0300)]
4400b9

5 years agoFix CHK2 and STOP/LPSTOP internally generated exception stacked PC.
Toni Wilen [Fri, 26 Jun 2020 07:08:42 +0000 (10:08 +0300)]
Fix CHK2 and STOP/LPSTOP internally generated exception stacked PC.

5 years agoFix TRAPcc stacked PC.
Toni Wilen [Thu, 25 Jun 2020 18:16:30 +0000 (21:16 +0300)]
Fix TRAPcc stacked PC.

5 years ago4400b8
Toni Wilen [Tue, 23 Jun 2020 17:29:12 +0000 (20:29 +0300)]
4400b8

5 years agoDefault filter mode improvements.
Toni Wilen [Thu, 18 Jun 2020 18:02:37 +0000 (21:02 +0300)]
Default filter mode improvements.

5 years ago4400b7
Toni Wilen [Sun, 14 Jun 2020 16:35:51 +0000 (19:35 +0300)]
4400b7

5 years agoDefault filter mode change
Toni Wilen [Sun, 14 Jun 2020 16:10:02 +0000 (19:10 +0300)]
Default filter mode change

5 years agoStatefile text box fix
Toni Wilen [Sun, 14 Jun 2020 16:08:50 +0000 (19:08 +0300)]
Statefile text box fix

5 years agoChipset/CPU multiplier in prefetch mode
Toni Wilen [Sun, 14 Jun 2020 16:08:30 +0000 (19:08 +0300)]
Chipset/CPU multiplier in prefetch mode