mirror of
https://github.com/gbdev/awesome-gbdev.git
synced 2025-08-26 17:14:47 +02:00
gbdk development workflow on windows, another emulator
This commit is contained in:
@@ -118,8 +118,9 @@ Here you can find everything to get started and master the development of unoffi
|
||||
- [GameLad](https://github.com/Dooskington/GameLad) - C++/SDL almost fully featured emulator.
|
||||
- [Wadatsumi](https://github.com/arrow-lang/wadatsumi) - Emulator written in Arrow.
|
||||
- [Binjgb](https://github.com/binji/binjgb) - 5kloc emulator in C that passes most of the tests.
|
||||
- [jgilchrist](https://github.com/jgilchrist/emulator) - A Gameboy emulator in modern C++.
|
||||
- [jgilchrist](https://github.com/jgilchrist/emulator) - A Game Boy emulator in modern C++.
|
||||
- [gameboyGO](https://github.com/gonccalo/gameboyGO) - Game Boy emulator in go.
|
||||
- [GameBoyEmulator-GBS](https://github.com/Salgat/GameBoyEmulator-GBS) - Game Boy emulator written in C++14 with a single library dependency of SFML.
|
||||
|
||||
|
||||
## Software Development
|
||||
|
24
articles/gbdk_workflow_windows.md
Normal file
24
articles/gbdk_workflow_windows.md
Normal file
@@ -0,0 +1,24 @@
|
||||
## GBDK development workflow on Windows and Sublime Text
|
||||
|
||||
|
||||
gbdk.sublime-build
|
||||
```
|
||||
{
|
||||
"cmd": ["C:\\..\\compile.bat"," $file"]
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
|
||||
compile.bat
|
||||
```
|
||||
color 0B
|
||||
set str=%1
|
||||
set str2=%str:~1,-3%
|
||||
del %str2%.gb
|
||||
bin\lcc -Wa-l -Wl-m -Wl-j -DUSE_SFR_FOR_REG -c -o %str2%.o %str2%.c
|
||||
bin\lcc -Wa-l -Wl-m -Wl-j -DUSE_SFR_FOR_REG -o %str2%.gb %str2%.o
|
||||
del *.o
|
||||
taskkill /f /im bgb.exe
|
||||
start bgb.exe %str2%.gb
|
||||
```
|
Reference in New Issue
Block a user