├── .gitignore ├── Chapter01 ├── Readme.md └── img │ └── TINYSLOT.png ├── Chapter02 └── README.md ├── Chapter03 └── README.md ├── Chapter04 ├── README.md └── img │ └── toshiba.png ├── Chapter05 └── README.md ├── Chapter06 └── README.md ├── Chapter07 └── README.md ├── Chapter08 └── README.md ├── Chapter09 └── README.md ├── Chapter10 └── README.md ├── Chapter11 └── README.md ├── Chapter12 └── README.md ├── Chapter13 └── README.md ├── Chapter14 └── README.md ├── Chapter15 └── Readme.md ├── Chapter16 └── Readme.md ├── Chapter17 └── Readme.md ├── Chapter18 └── Readme.md ├── Chapter19 └── README.md ├── Chapter20 └── Readme.md ├── Chapter21-30 └── Readme.md ├── LICENSE ├── README.md ├── cover.jpg ├── dicord.svg └── 부록 └── Readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter01/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter01/Readme.md -------------------------------------------------------------------------------- /Chapter01/img/TINYSLOT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter01/img/TINYSLOT.png -------------------------------------------------------------------------------- /Chapter02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter02/README.md -------------------------------------------------------------------------------- /Chapter03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter03/README.md -------------------------------------------------------------------------------- /Chapter04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter04/README.md -------------------------------------------------------------------------------- /Chapter04/img/toshiba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter04/img/toshiba.png -------------------------------------------------------------------------------- /Chapter05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter05/README.md -------------------------------------------------------------------------------- /Chapter06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter06/README.md -------------------------------------------------------------------------------- /Chapter07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter07/README.md -------------------------------------------------------------------------------- /Chapter08/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter08/README.md -------------------------------------------------------------------------------- /Chapter09/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter09/README.md -------------------------------------------------------------------------------- /Chapter10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter10/README.md -------------------------------------------------------------------------------- /Chapter11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter11/README.md -------------------------------------------------------------------------------- /Chapter12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter12/README.md -------------------------------------------------------------------------------- /Chapter13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter13/README.md -------------------------------------------------------------------------------- /Chapter14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter14/README.md -------------------------------------------------------------------------------- /Chapter15/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter15/Readme.md -------------------------------------------------------------------------------- /Chapter16/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter16/Readme.md -------------------------------------------------------------------------------- /Chapter17/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter17/Readme.md -------------------------------------------------------------------------------- /Chapter18/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter18/Readme.md -------------------------------------------------------------------------------- /Chapter19/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter19/README.md -------------------------------------------------------------------------------- /Chapter20/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter20/Readme.md -------------------------------------------------------------------------------- /Chapter21-30/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/Chapter21-30/Readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/README.md -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/cover.jpg -------------------------------------------------------------------------------- /dicord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/dicord.svg -------------------------------------------------------------------------------- /부록/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/retrogamedev/HEAD/부록/Readme.md --------------------------------------------------------------------------------