#pragma once namespace Execute { struct Registers { union { struct { int A; int B; int C; int D; }; int registers[4]; }; }; }