blob: aad97b924ea69f742bccdc79d157a2e802c52198 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
Copyright (C) 2020-2021 Reiko Asakura. All Rights Reserved.
Moonshine
*/
#ifndef OPCODE_H_
#define OPCODE_H_
#include <stdint.h>
int get_addr_blx(uint16_t *pc, uint16_t **addr);
#endif
|