1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-07 23:25:00 +00:00

Correct filename.

This commit is contained in:
Thomas Harte
2021-10-16 05:37:46 -07:00
parent d9d20d9d30
commit aa6b0f07b7
4 changed files with 8 additions and 8 deletions

View File

@@ -8,7 +8,7 @@
#include "Blitter.hpp" #include "Blitter.hpp"
#include "Minterms.h" #include "Minterms.hpp"
//#define NDEBUG //#define NDEBUG
#define LOG_PREFIX "[Blitter] " #define LOG_PREFIX "[Blitter] "

View File

@@ -1,13 +1,13 @@
// //
// Minterms.h // Minterms.hpp
// Clock Signal // Clock Signal
// //
// Created by Thomas Harte on 20/09/2021. // Created by Thomas Harte on 20/09/2021.
// Copyright © 2021 Thomas Harte. All rights reserved. // Copyright © 2021 Thomas Harte. All rights reserved.
// //
#ifndef Minterms_h #ifndef Minterms_hpp
#define Minterms_h #define Minterms_hpp
namespace Amiga { namespace Amiga {
@@ -384,4 +384,4 @@ template <typename IntT> IntT apply_minterm(IntT a, IntT b, IntT c, int minterm)
} }
#endif /* Minterms_h */ #endif /* Minterms_hpp */

View File

@@ -1970,7 +1970,7 @@
4BC6236A26F178DA00F83DFE /* DMADevice.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = DMADevice.hpp; sourceTree = "<group>"; }; 4BC6236A26F178DA00F83DFE /* DMADevice.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = DMADevice.hpp; sourceTree = "<group>"; };
4BC6236B26F4224300F83DFE /* Copper.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = Copper.hpp; sourceTree = "<group>"; }; 4BC6236B26F4224300F83DFE /* Copper.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = Copper.hpp; sourceTree = "<group>"; };
4BC6236C26F4235400F83DFE /* Copper.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = Copper.cpp; sourceTree = "<group>"; }; 4BC6236C26F4235400F83DFE /* Copper.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = Copper.cpp; sourceTree = "<group>"; };
4BC6237026F94A5B00F83DFE /* Minterms.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Minterms.h; sourceTree = "<group>"; }; 4BC6237026F94A5B00F83DFE /* Minterms.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = Minterms.hpp; sourceTree = "<group>"; };
4BC6237126F94BCB00F83DFE /* MintermTests.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = MintermTests.mm; sourceTree = "<group>"; }; 4BC6237126F94BCB00F83DFE /* MintermTests.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = MintermTests.mm; sourceTree = "<group>"; };
4BC751B11D157E61006C31D9 /* 6522Tests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = 6522Tests.swift; sourceTree = "<group>"; }; 4BC751B11D157E61006C31D9 /* 6522Tests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = 6522Tests.swift; sourceTree = "<group>"; };
4BC76E671C98E31700E6EF73 /* FIRFilter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FIRFilter.cpp; sourceTree = "<group>"; }; 4BC76E671C98E31700E6EF73 /* FIRFilter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FIRFilter.cpp; sourceTree = "<group>"; };
@@ -4308,7 +4308,7 @@
4BC6236B26F4224300F83DFE /* Copper.hpp */, 4BC6236B26F4224300F83DFE /* Copper.hpp */,
4BC6236A26F178DA00F83DFE /* DMADevice.hpp */, 4BC6236A26F178DA00F83DFE /* DMADevice.hpp */,
4B9EC0E926B384080060A31F /* Keyboard.hpp */, 4B9EC0E926B384080060A31F /* Keyboard.hpp */,
4BC6237026F94A5B00F83DFE /* Minterms.h */, 4BC6237026F94A5B00F83DFE /* Minterms.hpp */,
4BD1552E270B14AC00410C6E /* MemoryMap.hpp */, 4BD1552E270B14AC00410C6E /* MemoryMap.hpp */,
4BD1553227178E8000410C6E /* Flags.hpp */, 4BD1553227178E8000410C6E /* Flags.hpp */,
); );

View File

@@ -9,7 +9,7 @@
#import <XCTest/XCTest.h> #import <XCTest/XCTest.h>
#include <cstdint> #include <cstdint>
#include "Minterms.h" #include "Minterms.hpp"
namespace { namespace {