MooZ
MooZ
Finish it!
Add license header to source files. Add license name.
In the configuration of string data section add optional "end of line" and "end of string" parameters.
For example move `print_comment` and `print_inline_comment`to `comment/print.c` It seems that it can be done for labels and sections with `label/print.c` and `section/print.c`
See [reference document](https://github.com/vhelin/wla-dx/blob/master/doc/symbols.rst). This will allow people to use Mesen debugger with the all the symbols and source files generated.
Create a type for each data type, i.e. ```c typedef struct { DataType type; int32_t element_size; int32_t elements_per_line; } DataHex; typedef struct { DataType type; } DataBinary; typedef struct {...
Hello, This PR updates the CMake scripts with the following: - Add a new configuration option (`BUILD_EXAMPLES`) to enable or disable the build of examples (enabled by default). - Add...