mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-05 06:05:27 +00:00
3db2de7478
... revealing that I've leant a little too hard on __LINE__.
27 lines
499 B
C++
27 lines
499 B
C++
//
|
|
// RegisterSet.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 16/05/2022.
|
|
// Copyright © 2022 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef InstructionSets_M68k_RegisterSet_h
|
|
#define InstructionSets_M68k_RegisterSet_h
|
|
|
|
namespace InstructionSet {
|
|
namespace M68k {
|
|
|
|
struct RegisterSet {
|
|
uint32_t data[8], address[7];
|
|
uint32_t user_stack_pointer;
|
|
uint32_t supervisor_stack_pointer;
|
|
uint16_t status;
|
|
uint32_t program_counter;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* InstructionSets_M68k_RegisterSet_h */
|