c++/rgb-assembler/commands/IncrementDecrement.h
author František Kučera <franta-hg@frantovo.cz>
Mon, 25 Dec 2017 01:27:44 +0100
changeset 33 ff150572e8c0
parent 32 78c4d6b53499
permissions -rw-r--r--
memory: rename, refactor
franta-hg@29
     1
/**
franta-hg@29
     2
 * RGB assembler
franta-hg@29
     3
 * Copyright © 2017 František Kučera (frantovo.cz)
franta-hg@29
     4
 *
franta-hg@29
     5
 * This program is free software: you can redistribute it and/or modify
franta-hg@29
     6
 * it under the terms of the GNU General Public License as published by
franta-hg@29
     7
 * the Free Software Foundation, either version 3 of the License, or
franta-hg@29
     8
 * (at your option) any later version.
franta-hg@29
     9
 *
franta-hg@29
    10
 * This program is distributed in the hope that it will be useful,
franta-hg@29
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@29
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@29
    13
 * GNU General Public License for more details.
franta-hg@29
    14
 *
franta-hg@29
    15
 * You should have received a copy of the GNU General Public License
franta-hg@29
    16
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
franta-hg@29
    17
 */
franta-hg@29
    18
franta-hg@20
    19
#pragma once
franta-hg@20
    20
franta-hg@20
    21
#include <wchar.h>
franta-hg@22
    22
#include <chrono>
franta-hg@22
    23
#include <thread>
franta-hg@20
    24
franta-hg@20
    25
#include "../Command.h"
franta-hg@32
    26
#include "../Memory.h"
franta-hg@20
    27
franta-hg@22
    28
using namespace std;
franta-hg@22
    29
franta-hg@20
    30
namespace commands {
franta-hg@20
    31
franta-hg@26
    32
class IncrementDecrement : public Command {
franta-hg@20
    33
public:
franta-hg@20
    34
franta-hg@27
    35
	IncrementDecrement(const bool increment, octet_t change) {
franta-hg@26
    36
		this->increment = increment;
franta-hg@27
    37
		this->change = change;
franta-hg@26
    38
	}
franta-hg@26
    39
franta-hg@31
    40
	void process(Memory &memory) override {
franta-hg@31
    41
		address_t address = memory.read<address_t>();
franta-hg@33
    42
		octet_t value = memory.read<octet_t>(address);
franta-hg@27
    43
		value = increment ? value + change : value - change;
franta-hg@33
    44
		memory.write<octet_t>(address, value);
franta-hg@26
    45
		wprintf(L"%sCREMENT %*d → %02X\n", (increment ? "IN" : "DE"), 5, address, value);
franta-hg@20
    46
	}
franta-hg@20
    47
private:
franta-hg@26
    48
	bool increment;
franta-hg@27
    49
	octet_t change;
franta-hg@20
    50
franta-hg@20
    51
};
franta-hg@20
    52
franta-hg@20
    53
}