mirror of
https://github.com/TomHarte/CLK.git
synced 2025-04-05 04:37:41 +00:00
Test add/sub, add an exception for invalid Sequence
s.
This commit is contained in:
parent
7efe30f34c
commit
fc9a35dd04
@ -8,6 +8,8 @@
|
||||
|
||||
#include "Sequence.hpp"
|
||||
|
||||
#include <cassert>
|
||||
|
||||
using namespace InstructionSet::M68k;
|
||||
|
||||
template <Step... T> struct Steps {
|
||||
@ -21,7 +23,7 @@ template <Step F, Step... T> struct Steps<F, T...> {
|
||||
template<Model model> uint32_t Sequence<model>::steps_for(Operation operation) {
|
||||
switch(operation) {
|
||||
// This handles a NOP, and not much else.
|
||||
default: return 0;
|
||||
default: assert(false);
|
||||
|
||||
//
|
||||
// No operands that require fetching.
|
||||
|
@ -28,7 +28,7 @@
|
||||
|
||||
- (void)setUp {
|
||||
// To limit tests run to a subset of files and/or of tests, uncomment and fill in below.
|
||||
_fileSet = [NSSet setWithArray:@[@"ext.json"]];
|
||||
_fileSet = [NSSet setWithArray:@[@"add_sub.json"]];
|
||||
// _fileSet = [NSSet setWithArray:@[@"jmp_jsr.json"]];
|
||||
// _testSet = [NSSet setWithArray:@[@"CHK 41a8"]];
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user