29 lines
294 B
Markdown
29 lines
294 B
Markdown
A work-in-progress Gameboy emulator with a terminal-based UI and a basic assembler.
|
|
|
|
## Compilation
|
|
|
|
```
|
|
make config-release
|
|
make
|
|
```
|
|
|
|
### Docs
|
|
|
|
```
|
|
doxygen ./doxygen.config
|
|
```
|
|
|
|
### Tests
|
|
|
|
```
|
|
make config-default
|
|
make check
|
|
```
|
|
|
|
### Coverage
|
|
|
|
```
|
|
make config-coverage
|
|
make coverage-report
|
|
```
|