mirror of
				https://github.com/TomHarte/CLK.git
				synced 2025-10-30 14:16:04 +00:00 
			
		
		
		
	Compare commits
	
		
			5 Commits
		
	
	
		
			Z80Tests
			...
			2024-01-22
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | 31cbcb206f | ||
|  | bf9e913a7b | ||
|  | d3cea4a10f | ||
|  | a6df20ff84 | ||
|  | 7122a9ee16 | 
| @@ -28,9 +28,6 @@ template <bool record_bus = false> class Blitter: public DMADevice<4, 4> { | ||||
| 		using DMADevice::DMADevice; | ||||
|  | ||||
| 		template <int id, int shift> void set_pointer(uint16_t value) { | ||||
| 			if(get_status() & 0x4000) { | ||||
| 				printf(">>>"); | ||||
| 			} | ||||
| 			DMADevice<4, 4>::set_pointer<id, shift>(value); | ||||
| 		} | ||||
|  | ||||
|   | ||||
| @@ -8,16 +8,18 @@ | ||||
|  | ||||
| #include "AppleIIgs.hpp" | ||||
|  | ||||
| #include "../../../Activity/Source.hpp" | ||||
| #include "../../MachineTypes.hpp" | ||||
|  | ||||
| #include "../../../Analyser/Static/AppleIIgs/Target.hpp" | ||||
|  | ||||
| #include "ADB.hpp" | ||||
| #include "MemoryMap.hpp" | ||||
| #include "Video.hpp" | ||||
| #include "Sound.hpp" | ||||
|  | ||||
| #include "../AppleII/Joystick.hpp" | ||||
|  | ||||
| #include "../../../Activity/Source.hpp" | ||||
| #include "../../MachineTypes.hpp" | ||||
|  | ||||
| #include "../../../Analyser/Static/AppleIIgs/Target.hpp" | ||||
|  | ||||
| #include "../../../Processors/65816/65816.hpp" | ||||
| #include "../../../Components/8530/z8530.hpp" | ||||
| #include "../../../Components/AppleClock/AppleClock.hpp" | ||||
| @@ -26,8 +28,6 @@ | ||||
| #include "../../../Components/DiskII/MacintoshDoubleDensityDrive.hpp" | ||||
| #include "../../../Components/DiskII/DiskIIDrive.hpp" | ||||
|  | ||||
| #include "../AppleII/Joystick.hpp" | ||||
|  | ||||
| #include "../../../Outputs/Speaker/Implementation/CompoundSource.hpp" | ||||
| #include "../../../Outputs/Speaker/Implementation/LowpassSpeaker.hpp" | ||||
|  | ||||
|   | ||||
| @@ -208,7 +208,7 @@ void MemoryMap::access(uint16_t address, bool is_read) { | ||||
| 	if((address & 0xfff0) == 0xc080) language_card_.access(address, is_read); | ||||
| } | ||||
|  | ||||
| void MemoryMap::assert_is_region(uint8_t start, uint8_t end) { | ||||
| void MemoryMap::assert_is_region([[maybe_unused]] uint8_t start, [[maybe_unused]] uint8_t end) { | ||||
| 	assert(region_map_[start] == region_map_[start-1]+1); | ||||
| 	assert(region_map_[end-1] == region_map_[start]); | ||||
| 	assert(region_map_[end] == region_map_[end-1]+1); | ||||
|   | ||||
| @@ -11,6 +11,7 @@ | ||||
| #include <array> | ||||
| #include <bitset> | ||||
| #include <cassert> | ||||
| #include <cstdint> | ||||
| #include <vector> | ||||
|  | ||||
| #include "../AppleII/LanguageCardSwitches.hpp" | ||||
|   | ||||
| @@ -769,17 +769,17 @@ | ||||
| 	<key>CFBundlePackageType</key> | ||||
| 	<string>APPL</string> | ||||
| 	<key>CFBundleShortVersionString</key> | ||||
| 	<string>23.12.28</string> | ||||
| 	<string>24.01.22</string> | ||||
| 	<key>CFBundleSignature</key> | ||||
| 	<string>????</string> | ||||
| 	<key>CFBundleVersion</key> | ||||
| 	<string>23.12.28</string> | ||||
| 	<string>24.01.22</string> | ||||
| 	<key>LSApplicationCategoryType</key> | ||||
| 	<string>public.app-category.entertainment</string> | ||||
| 	<key>LSMinimumSystemVersion</key> | ||||
| 	<string>$(MACOSX_DEPLOYMENT_TARGET)</string> | ||||
| 	<key>NSHumanReadableCopyright</key> | ||||
| 	<string>Copyright © 2015–2023 Thomas Harte. | ||||
| 	<string>Copyright © 2015–2024 Thomas Harte. | ||||
| All rights reserved.</string> | ||||
| 	<key>NSMainNibFile</key> | ||||
| 	<string>MainMenu</string> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user