13 lines
302 B
C
13 lines
302 B
C
// SPDX-FileCopyrightText: 2012-2015 condret <condr3t@protonmail.com>
|
|
// SPDX-FileCopyrightText: 2012-2015 pancake <pancake@nopcode.org>
|
|
// SPDX-License-Identifier: LGPL-3.0-only
|
|
|
|
#ifndef ASM_P_ASM_SNES_H
|
|
#define ASM_P_ASM_SNES_H
|
|
|
|
struct snes_asm_flags {
|
|
unsigned char M;
|
|
unsigned char X;
|
|
};
|
|
|
|
#endif
|