blob: 4356214a302bf61491a61dc4eed02366142f892c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#ifndef NEC_COMMON_H
#define NEC_COMMON_H
#include <stdint.h>
extern int necv_dasm_one(std::ostream &stream, uint32_t eip, const uint8_t *oprom, const uint8_t *decryption_table);
extern int necv_dasm_one(char *buffer, uint32_t eip, const uint8_t *oprom, const uint8_t *decryption_table);
#endif // NEC_COMMON_H
|