log

age author description
Wed, 20 Apr 2016 23:00:37 -0700 Michael Pavone Fix crash bug in Z80 debugger introduced with stack alignment changes
Wed, 20 Apr 2016 09:18:58 -0700 Michael Pavone Implemented linear resampling and low pass filter for the YM2612
Wed, 20 Apr 2016 00:18:01 -0700 Michael Pavone Fix PSG linear resampling and implement a low pass filter
Tue, 19 Apr 2016 00:38:44 -0700 Michael Pavone Not so successful attempt at improved PSG resampling
Mon, 18 Apr 2016 19:26:47 -0700 Michael Pavone Fixed loading save states from menu
Sun, 17 Apr 2016 23:50:41 -0700 Michael Pavone Save State menu option is now fully functional. Load state sort of works, but is mostly broken.
Sun, 17 Apr 2016 20:31:22 -0700 Michael Pavone Get cursor behaving properly in save state slot list
Sat, 16 Apr 2016 13:28:43 -0700 Michael Pavone Get stateview building again
Sat, 16 Apr 2016 13:07:03 -0700 Michael Pavone Get slot list displaying in "Save State" and "Load State" menu items
Fri, 15 Apr 2016 23:57:50 -0700 Michael Pavone Save state menu WIP
Fri, 15 Apr 2016 20:39:26 -0700 Michael Pavone Saving the save directory in the rom_info struct didn't make sense. It should be in the console context.
Fri, 15 Apr 2016 18:29:39 -0700 Michael Pavone Switch to storing SRAM/EEPROM and save states in a per-game directory rather than next to the ROM (for SRAM/EEPROM) or in the current working directory (for save states)
Tue, 12 Apr 2016 22:50:31 -0700 Michael Pavone Implement "Resume" button in pause menu
Tue, 12 Apr 2016 21:38:24 -0700 Michael Pavone Remove the int number argument to vdp_int_ack since it is no longer used
Tue, 12 Apr 2016 08:35:44 -0700 Michael Pavone Fix VDP interrupt ack. Big thanks to Eke-Eke or whoever left that helpful comment in Genesis Plus GX. Fixes Fatal Rewind
Mon, 11 Apr 2016 20:56:54 -0700 Michael Pavone Merge
Mon, 11 Apr 2016 20:56:48 -0700 Michael Pavone Initial work on pause menu
Sat, 19 Mar 2016 17:53:50 -0700 Michael Pavone Make Exit option in menu work
Sun, 10 Apr 2016 22:22:36 -0700 Michael Pavone Allow changing the 68K clock divider in the config file
Sun, 10 Apr 2016 22:22:01 -0700 Michael Pavone Allow specification of named labels as command line arguments to the 68K disassembler
Sat, 19 Mar 2016 17:40:17 -0700 Michael Pavone Get "Load ROM" menu option working correctly
Mon, 14 Mar 2016 09:39:27 -0700 Michael Pavone Working about menu
Sat, 12 Mar 2016 14:24:43 -0800 Michael Pavone Handle up down buttons when in a menu
Wed, 09 Mar 2016 21:46:31 -0800 Michael Pavone Adjust arrow X positions in menu
Wed, 09 Mar 2016 08:14:05 -0800 Michael Pavone Draw button labels
Mon, 07 Mar 2016 19:26:23 -0800 Michael Pavone WIP buttons in menu ROM
Thu, 25 Feb 2016 23:39:14 -0800 Michael Pavone Fix saving of SRAM/EEPROM when switching games in menu
Thu, 25 Feb 2016 23:08:50 -0800 Michael Pavone Fix filename used for SRAM/EEPROM when loading a game from the menu
Wed, 24 Feb 2016 19:24:13 -0800 Michael Pavone Accept address on 128-byte EEPROMs on both read and write
Tue, 23 Feb 2016 21:17:56 -0800 Michael Pavone Added reasonable handling of joystick hotplug
Sat, 20 Feb 2016 01:11:18 -0800 Michael Pavone Fix register to operator mapping for channel 3 special mode and actually get it right this time
Thu, 18 Feb 2016 21:28:33 -0800 Michael Pavone Remove phase increment caching. Fix LFO phase modulation calculation
Wed, 17 Feb 2016 22:58:07 -0800 Michael Pavone Add strerror output to menu dir open failure message
Wed, 17 Feb 2016 22:42:18 -0800 Michael Pavone Log errors opening directories in the menu code
Tue, 16 Feb 2016 22:43:24 -0800 Michael Pavone Comment out button test code in menu
Tue, 16 Feb 2016 19:13:00 -0800 Michael Pavone Make stateview and vgmplay compile again
Sat, 13 Feb 2016 22:20:37 -0800 Michael Pavone Add yt debug command for printing YM-2612 timer info. Fix AMS shift values.
Wed, 10 Feb 2016 20:05:39 -0800 Michael Pavone Change where decay to sustain transition happens to match hardware when decay rate is slow or 0
Wed, 10 Feb 2016 20:04:51 -0800 Michael Pavone Minor adjustment to refresh interval to better match latest measurements
Tue, 02 Feb 2016 22:24:49 -0800 Michael Pavone Merge
Tue, 02 Feb 2016 22:24:40 -0800 Michael Pavone Added some stuff for detecting refresh delays in one of my old logic analyzer scripts. Needs cleanup
Mon, 25 Jan 2016 09:37:27 -0800 Michael Pavone WIP menu button stuff
Tue, 02 Feb 2016 18:33:00 -0800 Michael Pavone Change the sentinel value for the hslot parameter of run_dma_src to something that is not a valid slot number and actually use it for calls during the active display period
Tue, 02 Feb 2016 18:24:15 -0800 Michael Pavone Perform the same slot mapping shift for H32 mode as I did for H40
Thu, 28 Jan 2016 09:10:14 -0800 Michael Pavone Shift slot number to slot behavior mapping by six slots in H40 mode. This makes the line change slot align with the point at which the display turns on and off at the end of the active display area. Also fixed a regression in which an external slot got accidentally changed into a sprite draw slot
Tue, 26 Jan 2016 19:23:10 -0800 Michael Pavone After reviewing the results of my test ROM again it seems pretty clear that the VBlank flag gets set at the same time as the vcounter changes
Sun, 17 Jan 2016 14:46:12 -0800 Michael Pavone Fix calculation of window start column when it's on the right side. This removes graphical glitches in Afterburner 2, Fireshark and Dungeons and Dragons: Warriors of the Eternal Sun and probably others
Sun, 17 Jan 2016 14:36:25 -0800 Michael Pavone Initialize commands field of breakpoint struct to NULL. Remove a debug printf
Wed, 30 Dec 2015 19:00:03 -0800 Michael Pavone Allow DMA from cartridge ROM above the 4MB mark. Should probably use get_native_pointer for everyting, but want to check the performance implications
Thu, 17 Dec 2015 20:41:43 -0800 Michael Pavone Added button graphic for menu
Thu, 17 Dec 2015 20:03:50 -0800 Michael Pavone Finished implementation of mouse capture mode
Tue, 15 Dec 2015 20:01:50 -0800 Michael Pavone Initial support for relative mouse mode and skeleton of support for capture mode. Avoid mouse position overflow in absolute mode. Allow absolute mode to be set by ROM DB.
Mon, 14 Dec 2015 19:36:01 -0800 Michael Pavone Scale mouse data based on window size
Tue, 08 Dec 2015 19:33:58 -0800 Michael Pavone Allow IO device config to be overriden by ROM DB
Sun, 06 Dec 2015 19:29:34 -0800 Michael Pavone Rough emulation of mouse response delays when TR is toggled. Latch current mouse value rather than delta. Some other IO cleanup/fixes
Sun, 06 Dec 2015 15:42:36 -0800 Michael Pavone IO port pins should read as high from the perspective of a device when they are set as inputs
Sat, 05 Dec 2015 18:40:34 -0800 Michael Pavone Mouse X and Y are 9-bit 2's complement not 8-bit magnitude + sign bit like I thought. Fixed mouse Y direction.
Sat, 05 Dec 2015 00:17:15 -0800 Michael Pavone Added mouse support to menu ROM
Wed, 02 Dec 2015 07:06:03 -0800 Michael Pavone Fix problem in 68K debugger caused by stack alignment change
Sat, 28 Nov 2015 21:27:21 -0800 Michael Pavone Mega mouse support is mostly done