| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
| |
Let's continue with the good ol' tradition of being terrible at naming
things.
I have also renamed another project which was referenced here, so update
all references as well.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
|
| |
|
|
|
|
|
| |
This opens up the door for developers to pass their own configuration
files.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This means that the source code under `crates/` is under the GNU
GPLv3 (or any later version), and that source code under `lib/` is under
the GNU LGPLv3 (or any later version).
In practice this relaxes a bit the previous licensing because before it
was all GNU GPLv3 (or any later version). For people compiling a binary
with these libraries then this would've been spilling over the GPLv3 on
their binaries as well, which might not be desired. Instead, for the
libraries abide by the LGPLv3 (or any later version), which has the same
guarantees when it comes to free/lliure software for this specific case,
but at least we don't force the GPLv3 (or any later version) onto users.
That being said, users of these libraries still need to provide object
files so third parties could theoretically recompile those binaries
under a modified library.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
|
| |
|
|
| |
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The readrom binary is similar to `readelf` from Linux and it will allow
to display information from an NES/Famicom ROM file. For now the
information being shown is just the header, but in the future we might
also include disassembling parts of the code, or retrieving the "CHARS"
section for a given ROM file, and similar.
In order to implement the header parsing part a new library has been
introduced, simply named "header" which abstracts everything away so you
just need to call `Header::try_from("my bytes")` to fetch the actual
information.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
|
| |
|
|
| |
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
|
|
|
A lot is missing and there is a long road ahead to make the assembler
even work.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
|