mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-11 08:30:55 +00:00
Merge pull request #1317 from TomHarte/IIgsIncludes
Add missing include of cstdint.
This commit is contained in:
commit
bf9e913a7b
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user