1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-09 06:29:33 +00:00

Adds health warning.

This commit is contained in:
Thomas Harte 2021-01-02 19:16:21 -05:00
parent dc9d370952
commit 290972cedf

View File

@ -193,6 +193,11 @@ struct Instruction {
uint32_t oe() { return opcode & 0x800; }
};
/*!
Implements PowerPC instruction decoding.
This is an experimental implementation; it has not yet undergone significant testing.
*/
struct Decoder {
public:
Decoder(Model model);