diff options
author | David Phillips <david@sighup.nz> | 2019-04-14 16:14:02 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2019-08-03 12:43:30 +1200 |
commit | 38e3922cf7f521d1e119cbeff8722f0d8ca4c66a (patch) | |
tree | 1700548e0456e17ff4d6468ea4115f0049cbbc1b /output.h | |
parent | ac8150b7601d9611818bb8b265a125a347a67004 (diff) | |
download | toy-cpu-assembler-38e3922cf7f521d1e119cbeff8722f0d8ca4c66a.tar.xz |
Tidy assembler.c
Diffstat (limited to 'output.h')
-rw-r--r-- | output.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/output.h b/output.h new file mode 100644 index 0000000..c5edc97 --- /dev/null +++ b/output.h @@ -0,0 +1,6 @@ +#ifndef OUTPUT_H +#define OUTPUT_H + +int output(FILE *fout, struct label *labels, size_t label_count, struct instruction *insts, size_t insts_count); + +#endif /* OUTPUT_H */ |