URL
https://opencores.org/ocsvn/s80186/s80186/trunk
Subversion Repositories s80186
[/] [s80186/] [trunk/] [sim/] [cppmodel/] [instructions/] [rol.cpp] - Rev 2
Compare with Previous | Blame | View Log
// Copyright Jamie Iles, 2017 // // This file is part of s80x86. // // s80x86 is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // s80x86 is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with s80x86. If not, see <http://www.gnu.org/licenses/>. template <typename T> std::pair<uint16_t, T> do_rol(T v, int count) { uint16_t flags = 0; T sign_bit = 0x80 << (8 * (sizeof(T) - 1)); for (int i = 0; i < (count & 0x1f); ++i) { bool sign_bit_set = !!(v & sign_bit); flags &= ~CF; if (v & sign_bit) flags |= CF; v <<= 1; v += sign_bit_set; } if (!!(flags & CF) ^ !!(v & sign_bit)) flags |= OF; return std::make_pair(flags, v); } // rol r/m, N void EmulatorPimpl::rolc0() { auto v = read_data<uint8_t>(); auto count = fetch_byte(); uint16_t flags; if (!(count & 0x1f)) return; std::tie(flags, v) = do_rol(v, count & 0x1f); write_data<uint8_t>(v); registers->set_flags(flags, CF); } // rol r/m, 1 void EmulatorPimpl::rolc1() { auto v = read_data<uint16_t>(); auto count = fetch_byte(); uint16_t flags; if (!(count & 0x1f)) return; std::tie(flags, v) = do_rol(v, count & 0x1f); write_data<uint16_t>(v); registers->set_flags(flags, CF); } // rol r/m, 1 void EmulatorPimpl::rold0() { auto v = read_data<uint8_t>(); uint16_t flags; std::tie(flags, v) = do_rol(v, 1); write_data<uint8_t>(v); registers->set_flags(flags, CF | OF); } // rol r/m, 1 void EmulatorPimpl::rold1() { auto v = read_data<uint16_t>(); uint16_t flags; std::tie(flags, v) = do_rol(v, 1); write_data<uint16_t>(v); registers->set_flags(flags, CF | OF); } // rol r/m, N void EmulatorPimpl::rold2() { auto v = read_data<uint8_t>(); uint16_t flags; if (!registers->get(CL)) return; std::tie(flags, v) = do_rol(v, registers->get(CL)); write_data<uint8_t>(v); registers->set_flags(flags, CF); } // rol r/m, N void EmulatorPimpl::rold3() { auto v = read_data<uint16_t>(); uint16_t flags; if (!registers->get(CL)) return; std::tie(flags, v) = do_rol(v, registers->get(CL)); write_data<uint16_t>(v); registers->set_flags(flags, CF); }