Commit Graph

375 Commits

Author SHA1 Message Date
transistor 4dc4b6ad22 Reorganized z80 tests 2023-03-25 21:31:44 -07:00
transistor 099d557a3f Reorganized m68k tests 2023-03-25 21:27:02 -07:00
transistor bc4f63baf3 Refactored m68k decode 2023-03-25 16:06:03 -07:00
transistor 2fe24f325c Refactored m68k execution into functions 2023-03-25 15:12:46 -07:00
transistor 941c793523 Added pixel encoding, requested by frontend
The hope was that this would reduce the amount of copying and bit
shifting required by the frontend to get the data on screen, but
it doesn't seem to offer much advantage, surprisingly.  I'll leave
it in though.  There are a few other minor tweaks included here to
try to improve the performance a bit
2023-03-25 10:51:46 -07:00
transistor e6614f3e15 Refactored to allow dummy audio for console frontend 2023-03-14 20:05:29 -07:00
transistor 9be996d2a1 More clippy fixes after updating rustc 2023-03-05 20:34:30 -08:00
transistor 7bdd63bc76 Fixed all clippy warnings 2023-03-05 20:19:49 -08:00
transistor 0ac3f48b64 Minor changes 2023-03-05 13:32:45 -08:00
transistor 2cc7db8bf5 Fixed some grammatical mistakes 2022-12-14 20:14:09 -08:00
transistor ea2fc95905 Cleanup 2022-10-13 20:22:29 -07:00
transistor cd89a4c57d Minor tweaks to the update loop to keep it more realtime 2022-10-11 22:36:49 -07:00
transistor d26e80ffaa Refactored pixels web frontend to separate sim run
It will now run the sim on a separate loop powered by setTimeout
instead of trying to do it inline with the frame updating
2022-10-11 14:40:12 -07:00
transistor 0b27ac04e7 Minor fixes to audio 2022-10-11 10:28:59 -07:00
transistor 925a4e0750 Added log crate 2022-10-09 09:40:20 -07:00
transistor 43f655cdb4 Removed averaging of samples in ym2612 operators 2022-10-08 21:33:48 -07:00
transistor 258fd684e7 Cleanup 2022-10-08 21:32:59 -07:00
transistor d58bae77ea Fixed the biasing of DAC data in ym2612
It was using the DAC value as a positive offset, which makes a slight
click at the start and end of the SEGA voice at the start of a game.
 now subtracts half the value and amplifies it a bit so that it
crosses the 0 value
2022-10-08 16:21:41 -07:00
transistor 0876d85626 Fixed giltching from audio frame assembly from queue
It wasn't copying the frame data from the sources to the output frame
correctly, and there was a small period of zeros at the start of the
frame.

I also converted to using a vec of tuples for the two channels to
make it easier to reason about, since some of the issues were related
to the differences sizes calculated from the clock based on the sample
rate
2022-10-08 16:17:17 -07:00
transistor e4cd3dcd63 Sort of working audio using queues 2022-10-08 13:26:17 -07:00
transistor 721162684b Updated todo 2022-10-08 13:25:28 -07:00
transistor 9ee9d00ca6 Added work-in-progress on pixels frontend 2022-10-02 21:20:44 -07:00
transistor a9b8633531 Added mouse support, but it's not used yet 2022-10-02 20:39:02 -07:00
transistor 4cb423d85a Fixed minifb frame updater to allow slower framerates
If the sim is running slower than 60Hz, it was using the frame limiter
to not apply because no frame was drawn, and so it would end up running
at full speed.  Minifb can save the last frame without cloning it, and
redraw the same frame if no new frame is ready, which allows the limiter
to still delay the next frame, so slower speeds work.  This was also
preventing things that didn't update the screen from allowing inputs
including escape to have any effect
2022-10-02 13:07:15 -07:00
transistor a9d51fb919 Added DAC to ym2612 and changed mixing method 2022-10-02 10:29:34 -07:00
transistor 7c279613cc Moved AddressRepeater to core, and renamed AddressAdapter
AddressRepeater now takes the range it should repeat over, which only
really affects its reported size.

AddressAdapter is now AddressRightShifter, which is literally the operation
it performs, where the input is still the bits to shift the address right by
2022-10-01 21:01:56 -07:00
transistor 2d6044084d Modified how frames are updated
It turns out to not be too much of a performance issue to allocate
a new frame each time one is produced, so to reduce lock contention
I added a queue where frames are added to and taken from without
locking the frame for the whole update.  I'm hoping this will give
more flexibility to frontend implementations, which can simply
skip or repeat frames if needed.
2022-10-01 12:12:25 -07:00
transistor 5278c301ef Added .smd file decoding 2022-09-30 11:24:11 -07:00
transistor da980b8ae8 Fixed regression when fixing interrupt handling in 68k
Mortal Kombat 2 was working but somewhere while getting the harte
tests to work, I fixed interrupts to change the flags before they're
pushed to the stack, in order to match the expected behaviour from
the tests when an address error occurs (sr is changed and the stack
push causes the error).  I correctly saved the state of sr in the
function for group0 interrupts, to push to the stack later, but the
normal interrupts was saving sr *after* the flags were changed...
Now it saves sr beforehand

I also included some changes to the gfx interface to allow taking
frames, to fix a compile error introduced by the last commit.
2022-09-29 20:21:00 -07:00
transistor 82644db3fc Added dummy audio device to disable audio while still simulating the devices 2022-09-29 19:55:12 -07:00
transistor 9e3b75f9fd Updated readme 2022-09-24 23:17:04 -07:00
transistor 083f3607ba Major reorganization into crates
I wanted to make this a bit more modular, so it's easier in theory to
write external crates that can reuse bits, and selectively compile in
bits, such as adding new systems or new cpu implementations
2022-09-24 23:14:03 -07:00
transistor c395199977 Minor fixes to some tests 2022-09-24 19:46:34 -07:00
transistor ce682565a9 Removed ProcessorTests as submodule because it's rather large 2022-09-24 19:24:52 -07:00
transistor 48bf76f430 Fixed some ASR cases, and updated test results 2022-09-18 22:09:56 -07:00
transistor 94d3e1d389 Renamed value and existing to src_val and dest_val in m68k impl 2022-09-18 20:44:45 -07:00
transistor eea8840483 Fixed the ABCD/SBCD/NBCD instructions (almost)
There are still some failures on the SBCD, but the logic is identical
to other emulator's calculations, but the test case doesn't seem to be
the way it should behave, so I'll leave it for now
2022-09-18 20:34:04 -07:00
transistor 267ef488ab Added PC hack to the various branch/jump instructions 2022-09-18 17:24:37 -07:00
transistor f5a548ac90 Added test results 2022-09-18 17:10:23 -07:00
transistor c55e3db87a Added test results with excluded address errors 2022-09-18 17:09:55 -07:00
transistor 1a65f50ba0 Added hack to return instructions to correctly adjust PC 2022-09-18 16:28:14 -07:00
transistor fa3e484288 Fixed DIVS overflow flag, and issue with exception processing
The signed division overflow was incorrect, and I tried a few bit-wise
approaches, but using the signed 32-bit number to determine 16-bit
overflow using greater than/less than work perfectly

There was also a bug in exception handling where it would push values
to the stack before setting the supervisor flag, but the push funcs
use the supervisor flag to determine which stack pointer to use, so
when an exception happened in user mode, it was pushing to USP when
it should have pushed to SSP
2022-09-18 16:09:50 -07:00
transistor bbd15abb76 Updated readme 2022-09-17 21:43:09 -07:00
transistor 481dd0d7f7 Fixed part of the problem in RTE test failures with Address Error
The I/N bit in the special status word on the stack should be set
when returning from RTE results in a PC that isn't word aligned.
Every other case pretty much, it should be clear
2022-09-17 21:29:04 -07:00
transistor 914ddb17dd Fixed moa-genisis not compiling 2022-09-17 11:16:16 -07:00
transistor e3c4ad88ee Fixed most DIVU tests, and some more DIVS ones 2022-09-16 22:54:59 -07:00
transistor 71c10ff0f0 Slightly improved the handling of the I/N bit in Address Error 2022-09-16 20:49:44 -07:00
transistor ef6fde2a4f Minor fix to RTE 2022-09-15 20:56:52 -07:00
transistor 5304df2a9f Minor fixes to the shift flags, but still haven't fixed the issue 2022-09-15 20:29:47 -07:00
transistor 84d2b5e15b Added test results 2022-09-14 22:51:48 -07:00