PROLEAD
A Probing-Based Leakage Detection Tool for Hardware and Software
Loading...
Searching...
No Matches
registers.h
Go to the documentation of this file.
1#pragma once
2
3#include <ostream>
4
5namespace mulator
6{
7
8 const int REGISTER_COUNT = 17;
9
11 {
12 R0 = 0,
28
29 SB = R9,
36
38 };
39
40 std::string to_string(const Register& x);
41 std::string to_string_probe(const Register& x);
42 uint32_t to_int(const Register& x);
43 std::ostream& operator<<(std::ostream& os, const Register& x);
44
45}
std::string to_string(const Architecture &x)
const int REGISTER_COUNT
Definition: registers.h:8
std::string to_string_probe(const Register &x)
uint32_t to_int(const Register &x)
std::ostream & operator<<(std::ostream &os, const Architecture &x)