26 lines
358 B
C++
26 lines
358 B
C++
#pragma once
|
|
|
|
#include "bsuml.h"
|
|
#include "Emulation.h"
|
|
#include <iostream>
|
|
|
|
namespace bio {
|
|
|
|
// the simplest executable, no symbols, no nothing.
|
|
class BinFile {
|
|
bio::emu::application app;
|
|
public:
|
|
|
|
BinFile();
|
|
|
|
BinFile(std::string path);
|
|
|
|
void LoadFile(std::string path);
|
|
|
|
bio::emu::application* getApp() { return &app; }
|
|
|
|
~BinFile();
|
|
|
|
};
|
|
|
|
} |