openMSX
Dasm.hh
Go to the documentation of this file.
1#ifndef DASM_HH
2#define DASM_HH
3
4#include "EmuTime.hh"
5#include "openmsx.hh"
6#include <span>
7#include <string>
8
9namespace openmsx {
10
11class MSXCPUInterface;
12
22unsigned dasm(const MSXCPUInterface& interface, word pc, std::span<byte, 4> buf,
23 std::string& dest, EmuTime::param time);
24
25} // namespace openmsx
26
27#endif
This file implemented 3 utility functions:
Definition: Autofire.cc:9
unsigned dasm(const MSXCPUInterface &interface, word pc, std::span< byte, 4 > buf, std::string &dest, EmuTime::param time)
Disassemble.
Definition: Dasm.cc:19
uint16_t word
16 bit unsigned integer
Definition: openmsx.hh:29