diff --git a/InstructionSets/x86/Implementation/Stack.hpp b/InstructionSets/x86/Implementation/Stack.hpp index 539b66773..b24619a15 100644 --- a/InstructionSets/x86/Implementation/Stack.hpp +++ b/InstructionSets/x86/Implementation/Stack.hpp @@ -16,7 +16,10 @@ namespace InstructionSet::x86::Primitive { // The below takes a reference in order properly to handle PUSH SP, // which should place the value of SP after the push onto the stack. template -void push(IntT &value, ContextT &context) { +void push( + IntT &value, + ContextT &context +) { context.registers.sp_ -= sizeof(IntT); if constexpr (preauthorised) { context.memory.template preauthorised_write(Source::SS, context.registers.sp_, value); @@ -29,7 +32,9 @@ void push(IntT &value, ContextT &context) { } template -IntT pop(ContextT &context) { +IntT pop( + ContextT &context +) { const auto value = context.memory.template access( Source::SS, context.registers.sp_);