diff options
author | Ian C <ianc@noddybox.co.uk> | 2016-05-20 15:23:00 +0100 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2016-05-20 15:23:00 +0100 |
commit | 45fd0ca73ec84a9b605f918a7b1b3497d2a25b33 (patch) | |
tree | 4b01f2dcc8f0ce5b80092a08427f8aa449f43ad6 /src/nesout.h | |
parent | 393556d2fc70dc0def5a6bb0463daf234ef23e36 (diff) |
First pass at NES ROM support.
Diffstat (limited to 'src/nesout.h')
-rw-r--r-- | src/nesout.h | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/nesout.h b/src/nesout.h new file mode 100644 index 0000000..722db02 --- /dev/null +++ b/src/nesout.h @@ -0,0 +1,56 @@ +/* + + casm - Simple, portable assembler + + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + + ------------------------------------------------------------------------- + + Gameboy ROM output + +*/ + +#ifndef CASM_NESOUT_H +#define CASM_NESOUT_H + +#include "parse.h" +#include "state.h" +#include "cmd.h" + +/* ---------------------------------------- INTERFACES +*/ + + +/* NES Output options +*/ +const ValueTable *NESOutputOptions(void); + +CommandStatus NESOutputSetOption(int opt, int argc, char *argv[], + int quoted[], char *error, + size_t error_size); + + +/* NES ROM output of assembly. Returns TRUE if OK, FALSE for failure. +*/ +int NESOutput(const char *filename, const char *filename_bank, + MemoryBank **bank, int count, + char *error, size_t error_size); + +#endif + +/* +vim: ai sw=4 ts=8 expandtab +*/ |