saxxonpike
|
1e8569be97
|
Commodore64: Renamed Sprite to SpriteGenerator. Created GraphicsGenerator file, with plans to isolate the background graphics generation (as it is a separate logical unit within the chip itself.)
|
2013-08-26 20:07:50 +00:00 |
saxxonpike
|
54c205ffe7
|
Commodore64: Added some documentation in the TimingBuilder code as to how the generated tables are used.
|
2013-08-26 19:29:09 +00:00 |
saxxonpike
|
6fdc7284bd
|
Commodore64: Split Sid classes into three files, up from one. Fixed border timing in TimingBuilder. Renamed Sync class to SaveState.
|
2013-08-26 19:22:04 +00:00 |
saxxonpike
|
3dc1e8dba2
|
Commodore64: Fix sprites and tweaked timing, should now be pixel perfect with test intro "rem-17".
|
2013-08-25 07:58:25 +00:00 |
saxxonpike
|
c0bad5eccb
|
Commodore64: Rewrote the character graphics generator as a shift register like real equipment. Roughly 10% performance increase and looks great. Sprites need work yet.
|
2013-08-25 00:31:52 +00:00 |
saxxonpike
|
1c18da52b3
|
Commodore64: Border unit implemented fully, timing is much better now and works for both PAL and NTSC.
|
2013-08-24 20:13:16 +00:00 |
saxxonpike
|
4ef73eb676
|
Fix some compiler warnings. Border is still odd, needs the other half of the border unit logic. Also, a marginal performance boost from sealing classes.
|
2013-08-24 17:30:46 +00:00 |
saxxonpike
|
228fa3869f
|
Video chip timing in the old core now builds its timing tables dynamically instead of having them hardcoded- should greatly reduce human error. The algorithm should cover every single revision of VIC.
|
2013-08-24 15:21:51 +00:00 |
saxxonpike
|
bde52b25bd
|
Commodore64: More work on the experimental VIC. Some speedups in the current VIC from caching the video mode and removing unnecessary shifts from the inner loops of the background graphics generator.
|
2013-08-23 08:57:20 +00:00 |
saxxonpike
|
2e7935938a
|
Commodore64: Split up and moved source files. No user-observable changes in execution.
|
2013-08-20 07:27:59 +00:00 |
saxxonpike
|
b5fcb81727
|
Commodore64: Save states implemented.
|
2013-08-19 03:42:40 +00:00 |
saxxonpike
|
d6056bb402
|
Commodore64: Fix VIC addressing for Ultimax format cartridges. PLA implementation should be 100% complete now
|
2013-08-18 04:27:08 +00:00 |
saxxonpike
|
e9bacfd683
|
Commodore64: More preparation for savestates, condensed the PLA (this is as fast as it can get)
|
2013-08-18 03:58:39 +00:00 |
saxxonpike
|
4efe07378f
|
Commodore64: Preparation to implement savestates once again.
|
2013-08-18 01:21:53 +00:00 |
saxxonpike
|
0b6bce0198
|
Commodore64: Fixed NMI not triggering on the CPU. Significant performance boost from PLA optimization and motherboard glue shortcuts.
|
2013-08-17 23:15:31 +00:00 |
saxxonpike
|
03087a88eb
|
Commodore64: Split the Vic code into a number of files. More time spent coding, less time spent looking for things.
|
2013-08-17 20:51:09 +00:00 |
saxxonpike
|
14a2952faf
|
Commodore64: Whoops. Forgot to disable debug borders.
|
2013-08-17 10:52:45 +00:00 |
saxxonpike
|
a3b1fb3c36
|
Commodore64: Interrupt and timer chip tweaks.
|
2013-08-17 10:46:27 +00:00 |
saxxonpike
|
60db7b9fe6
|
Commodore64: Marginal speedup from converting the rest of the uints to int. No noticeable accuracy difference.
|
2013-08-17 06:51:55 +00:00 |
saxxonpike
|
459368dd5b
|
6502: added RDY pin, required for C64 and possibly others
|
2013-08-15 06:08:21 +00:00 |
saxxonpike
|
af9bbd9ae4
|
Commodore64: Tweak Joystick 2 input.
|
2013-08-14 13:53:48 +00:00 |
saxxonpike
|
0a54f95b4f
|
Commodore64: Removed a lot of functions in the motherboard glue to simplify things.
|
2013-08-14 05:33:10 +00:00 |
saxxonpike
|
5c37b64eec
|
Commodore64: Removed a lot of unnecessary function chains and converted unsigned types to int.
|
2013-08-14 05:05:17 +00:00 |
saxxonpike
|
ef3be8db9a
|
Commodore64: More direct access to pins on Cartport, CIA and VIC.
|
2013-08-13 20:16:41 +00:00 |
saxxonpike
|
585223a814
|
Commodore64: Setting all 6510 pins to input-only now gives the proper value.
|
2013-08-13 19:52:03 +00:00 |
saxxonpike
|
9c8124bfd1
|
Commodore64: Added short circuits in PLA chip select for improved performance
|
2013-08-13 19:00:11 +00:00 |
saxxonpike
|
e075982a00
|
Commodore64: Rewrote cassette, serial, 6522, 6526 and 6510 port code.
|
2013-08-13 12:23:32 +00:00 |
saxxonpike
|
a061e898a6
|
Commodore64: don't use color-ram selector pin on PLA, marginal performance gain
|
2013-08-13 01:55:39 +00:00 |
saxxonpike
|
481e915aff
|
Commodore64: Move I/O port init into HardReset and fix default direction bits.
|
2013-08-12 07:00:31 +00:00 |
saxxonpike
|
842ead8c7e
|
Commodore64: Fully implement the interaction between Cpu, Vic and PLA on BA/AEC lines.
|
2013-08-12 05:04:50 +00:00 |
saxxonpike
|
c02f79e99c
|
Commodore64: Rewrote PLA to fix chip select problems.
|
2013-08-11 02:46:27 +00:00 |
saxxonpike
|
75f279a30b
|
Commodore64: Writing to expansion memory space while banked in does not write through to underlying RAM.
|
2013-08-09 05:33:40 +00:00 |
saxxonpike
|
8695ce07a4
|
Commodore64: Disable disk emulation (for now.)
|
2013-08-09 04:15:33 +00:00 |
saxxonpike
|
f504a9a4de
|
Commodore 64: outputs set to read-only on the 6510 IO port are always high
|
2013-08-09 03:14:11 +00:00 |
adelikat
|
be2937fdec
|
Code refactoring of Tools files - no functional changes other than some very tiny speedups and null checks
|
2013-04-14 23:56:45 +00:00 |
adelikat
|
cff1ff2940
|
Removing unused directives from a bunch of files because I was playing around with resharper, but that got boring so not every file
|
2013-04-14 20:39:19 +00:00 |
saxxonpike
|
31fba1ec2b
|
commodore64: change from uint to int, seems to speed things up a little with no side effects
|
2012-12-11 06:27:00 +00:00 |
saxxonpike
|
5a8ce4000b
|
commodore64: clean up unneeded files since the Sid is hooked up to the Speex resampler now
|
2012-12-10 22:51:02 +00:00 |
goyuken
|
1b83110a37
|
C64: connect audio to speexresampler. consider this commit a demonstration on "how it could be done"...
|
2012-12-08 16:05:00 +00:00 |
saxxonpike
|
1d3ff8524a
|
commodore64: slight tweak
|
2012-12-07 21:02:02 +00:00 |
saxxonpike
|
245ce3d72f
|
commodore64: fix up some timer chip routines, and directional dataport should be more accurate
|
2012-12-07 21:01:22 +00:00 |
saxxonpike
|
e4ff87e92a
|
commodore64: implement more c64-disk communications, hook up drive LED
|
2012-12-07 17:06:07 +00:00 |
saxxonpike
|
38adb50a10
|
commodore64: via6522 - implement more registers
|
2012-12-07 11:45:50 +00:00 |
saxxonpike
|
28d0328a54
|
commodore64: work on 1541 VIA timer chips
|
2012-12-07 06:20:20 +00:00 |
saxxonpike
|
e3082b206b
|
commodore64: connect the 1541 disk drive to the system, memory domains also available
|
2012-12-07 05:24:00 +00:00 |
saxxonpike
|
526ad358d1
|
commodore64: disk and tape framework added
|
2012-12-06 06:53:55 +00:00 |
saxxonpike
|
e1ff14e475
|
commodore64: change directory structure a little, rename namespaces for consistency
|
2012-12-06 06:25:30 +00:00 |
saxxonpike
|
e449ab34fd
|
commodore64: implement Serial and Datassette interfaces (there are no devices to connect them to yet)
|
2012-12-06 04:29:08 +00:00 |
saxxonpike
|
c64951fce8
|
commodore64: implement motherboard configuration, add sprite-sprite and sprite-data collision interrupts to VIC
|
2012-12-05 21:07:51 +00:00 |
saxxonpike
|
e60f308af0
|
commodore64: savestate support for all chips + cartridge
|
2012-12-03 08:38:12 +00:00 |