diff options
-rw-r--r-- | Readme.md | 3 | ||||
-rw-r--r-- | common.h | 3 | ||||
-rw-r--r-- | disasm.cpp | 3 | ||||
-rw-r--r-- | disasm.h | 3 |
4 files changed, 12 insertions, 0 deletions
@@ -68,6 +68,9 @@ Authors: This is free and unencumbered software released into the public domain. See ``UNLICENSE`` for more information. +This repository includes source code of other projects: +- Optparse ([gh:skeeto/optparse](https://github.com/skeeto/optparse)) - Unlicense + Resources used to implement the disassember (this set is more than sufficient to support all of M68000 instructions): - [The 68000's Instruction Set](http://wpage.unina.it/rcanonic/didattica/ce1/docs/68000.pdf) - Appendix of an unrecognized book. Basically the same information also could be found in [gh:prb28/m68k-instructions-documentation](https://github.com/prb28/m68k-instructions-documentation). @@ -1,3 +1,6 @@ +/* SPDX-License-Identifier: Unlicense + */ + #pragma once struct Settings { @@ -1,3 +1,6 @@ +/* SPDX-License-Identifier: Unlicense + */ + #include "disasm.h" #include "data_buffer.h" #include "common.h" @@ -1,3 +1,6 @@ +/* SPDX-License-Identifier: Unlicense + */ + #pragma once #include "data_buffer.h" |