2023-11-08 15:52:36 +00:00
|
|
|
//
|
|
|
|
// BCD.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 08/11/2023.
|
|
|
|
// Copyright © 2023 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef BCD_h
|
|
|
|
#define BCD_h
|
|
|
|
|
|
|
|
#include "../AccessType.hpp"
|
|
|
|
|
|
|
|
#include "../../../Numeric/RegisterSizes.hpp"
|
|
|
|
|
|
|
|
namespace InstructionSet::x86::Primitive {
|
|
|
|
|
2023-11-09 03:30:39 +00:00
|
|
|
/// If @c add is @c true, performs an AAA; otherwise perfoms an AAS.
|
|
|
|
template <bool add, typename ContextT>
|
|
|
|
void aaas(
|
2023-11-09 03:26:48 +00:00
|
|
|
CPU::RegisterPair16 &ax,
|
|
|
|
ContextT &context
|
|
|
|
) {
|
|
|
|
if((ax.halves.low & 0x0f) > 9 || context.flags.template flag<Flag::AuxiliaryCarry>()) {
|
2023-11-09 03:30:39 +00:00
|
|
|
if constexpr (add) {
|
|
|
|
ax.halves.low += 6;
|
|
|
|
++ax.halves.high;
|
|
|
|
} else {
|
|
|
|
ax.halves.low -= 6;
|
|
|
|
--ax.halves.high;
|
|
|
|
}
|
2023-11-09 03:26:48 +00:00
|
|
|
context.flags.template set_from<Flag::Carry, Flag::AuxiliaryCarry>(1);
|
2023-11-11 03:47:50 +00:00
|
|
|
} else {
|
|
|
|
context.flags.template set_from<Flag::Carry>(0);
|
2023-11-09 03:26:48 +00:00
|
|
|
}
|
|
|
|
ax.halves.low &= 0x0f;
|
|
|
|
}
|
|
|
|
|
2023-11-08 15:52:36 +00:00
|
|
|
template <typename ContextT>
|
2023-11-08 16:23:21 +00:00
|
|
|
void aad(
|
|
|
|
CPU::RegisterPair16 &ax,
|
|
|
|
uint8_t imm,
|
|
|
|
ContextT &context
|
|
|
|
) {
|
2023-11-08 15:52:36 +00:00
|
|
|
/*
|
|
|
|
tempAL ← AL;
|
|
|
|
tempAH ← AH;
|
|
|
|
AL ← (tempAL + (tempAH * imm8)) AND FFH; (* imm8 is set to 0AH for the AAD mnemonic *)
|
|
|
|
AH ← 0
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
The SF, ZF, and PF flags are set according to the result;
|
|
|
|
the OF, AF, and CF flags are undefined.
|
|
|
|
*/
|
|
|
|
ax.halves.low = ax.halves.low + (ax.halves.high * imm);
|
|
|
|
ax.halves.high = 0;
|
|
|
|
context.flags.template set_from<uint8_t, Flag::Zero, Flag::Sign, Flag::ParityOdd>(ax.halves.low);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename ContextT>
|
2023-11-08 16:23:21 +00:00
|
|
|
void aam(
|
|
|
|
CPU::RegisterPair16 &ax,
|
|
|
|
uint8_t imm,
|
|
|
|
ContextT &context
|
|
|
|
) {
|
2023-11-08 15:52:36 +00:00
|
|
|
/*
|
|
|
|
tempAL ← AL;
|
|
|
|
AH ← tempAL / imm8; (* imm8 is set to 0AH for the AAD mnemonic *)
|
|
|
|
AL ← tempAL MOD imm8;
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
The SF, ZF, and PF flags are set according to the result.
|
|
|
|
The OF, AF, and CF flags are undefined.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
If ... an immediate value of 0 is used, it will cause a #DE (divide error) exception.
|
|
|
|
*/
|
|
|
|
if(!imm) {
|
|
|
|
interrupt(Interrupt::DivideError, context);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ax.halves.high = ax.halves.low / imm;
|
|
|
|
ax.halves.low = ax.halves.low % imm;
|
|
|
|
context.flags.template set_from<uint8_t, Flag::Zero, Flag::Sign, Flag::ParityOdd>(ax.halves.low);
|
|
|
|
}
|
|
|
|
|
2023-11-09 03:26:48 +00:00
|
|
|
/// If @c add is @c true, performs a DAA; otherwise perfoms a DAS.
|
|
|
|
template <bool add, typename ContextT>
|
|
|
|
void daas(
|
2023-11-08 16:23:21 +00:00
|
|
|
uint8_t &al,
|
|
|
|
ContextT &context
|
|
|
|
) {
|
2023-11-09 03:16:12 +00:00
|
|
|
bool top_exceeded_threshold;
|
|
|
|
if constexpr (ContextT::model == Model::i8086) {
|
|
|
|
top_exceeded_threshold = al > (context.flags.template flag<Flag::AuxiliaryCarry>() ? 0x9f : 0x99);
|
|
|
|
} else {
|
|
|
|
top_exceeded_threshold = al > 0x99;
|
|
|
|
}
|
2023-11-08 15:52:36 +00:00
|
|
|
|
|
|
|
if((al & 0x0f) > 0x09 || context.flags.template flag<Flag::AuxiliaryCarry>()) {
|
2023-11-09 03:26:48 +00:00
|
|
|
if constexpr (add) al += 0x06; else al -= 0x06;
|
2023-11-08 15:52:36 +00:00
|
|
|
context.flags.template set_from<Flag::AuxiliaryCarry>(1);
|
|
|
|
}
|
|
|
|
|
2023-11-09 03:16:12 +00:00
|
|
|
if(top_exceeded_threshold || context.flags.template flag<Flag::Carry>()) {
|
2023-11-09 03:26:48 +00:00
|
|
|
if constexpr (add) al += 0x60; else al -= 0x60;
|
2023-11-08 15:52:36 +00:00
|
|
|
context.flags.template set_from<Flag::Carry>(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
context.flags.template set_from<uint8_t, Flag::Zero, Flag::Sign, Flag::ParityOdd>(al);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* BCD_h */
|