diff --git a/include/vminstrs.hpp b/include/vminstrs.hpp
index 8eaa05c..38c131f 100644
--- a/include/vminstrs.hpp
+++ b/include/vminstrs.hpp
@@ -10,7 +10,7 @@ namespace vm::instrs {
///
/// mnemonic representation of supported virtual instructions...
///
-enum class mnemonic_t {
+enum class mnemonic_t : uint8_t {
unknown,
sreg,
lreg,
@@ -117,7 +117,7 @@ struct vblk_t {
///
/// image based relative virtual address...
///
- std::uintptr_t img_base;
+ std::uintptr_t img_based;
} m_vip;
///