summaryrefslogtreecommitdiff
path: root/src/Arithmetic.h
blob: fd80fc066858d495ce057f09b3ed9a39681d9154 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <cstdint>

struct CPUContext;

namespace executor_cases {
  void Add_rm32_r32(CPUContext& cc);
  void Add_r32_rm32(CPUContext& cc); //TODO: Finish

  namespace helpers {
    void Add_rm_dst(CPUContext& cc, uint32_t address);
  }
}