├── .github └── workflows │ └── main.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── dmgops.json ├── index.html ├── index.styl ├── index.ts ├── opcode.ts ├── package.json ├── search.ts ├── table ├── index.html └── table.html ├── tsconfig.json └── yarn.lock /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izik1/gbops/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izik1/gbops/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izik1/gbops/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izik1/gbops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izik1/gbops/HEAD/README.md -------------------------------------------------------------------------------- /dmgops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izik1/gbops/HEAD/dmgops.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izik1/gbops/HEAD/index.html -------------------------------------------------------------------------------- /index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izik1/gbops/HEAD/index.styl -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izik1/gbops/HEAD/index.ts -------------------------------------------------------------------------------- /opcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izik1/gbops/HEAD/opcode.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izik1/gbops/HEAD/package.json -------------------------------------------------------------------------------- /search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izik1/gbops/HEAD/search.ts -------------------------------------------------------------------------------- /table/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izik1/gbops/HEAD/table/index.html -------------------------------------------------------------------------------- /table/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izik1/gbops/HEAD/table/table.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izik1/gbops/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izik1/gbops/HEAD/yarn.lock --------------------------------------------------------------------------------