#ifndef INC_6502_EMULATOR_PROGRAM_H #define INC_6502_EMULATOR_PROGRAM_H #include #include using namespace std; class Program { public: explicit Program(shared_ptr> bytes); uint8_t get_byte_at(uint16_t index); uint16_t get_size(); private: shared_ptr> bytes; }; #endif //INC_6502_EMULATOR_PROGRAM_H