├── .circleci └── config.yml ├── .gitignore ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── README.md ├── example ├── testForFail.asm ├── testForParser.asm └── testForSuccess.asm ├── main.go └── tinyram ├── instruction.go ├── instruction_test.go ├── program.go ├── program_test.go ├── tinyram.go └── tinyram_test.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayerXcom/gram/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* 2 | -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayerXcom/gram/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayerXcom/gram/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayerXcom/gram/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayerXcom/gram/HEAD/README.md -------------------------------------------------------------------------------- /example/testForFail.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayerXcom/gram/HEAD/example/testForFail.asm -------------------------------------------------------------------------------- /example/testForParser.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayerXcom/gram/HEAD/example/testForParser.asm -------------------------------------------------------------------------------- /example/testForSuccess.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayerXcom/gram/HEAD/example/testForSuccess.asm -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayerXcom/gram/HEAD/main.go -------------------------------------------------------------------------------- /tinyram/instruction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayerXcom/gram/HEAD/tinyram/instruction.go -------------------------------------------------------------------------------- /tinyram/instruction_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayerXcom/gram/HEAD/tinyram/instruction_test.go -------------------------------------------------------------------------------- /tinyram/program.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayerXcom/gram/HEAD/tinyram/program.go -------------------------------------------------------------------------------- /tinyram/program_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayerXcom/gram/HEAD/tinyram/program_test.go -------------------------------------------------------------------------------- /tinyram/tinyram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayerXcom/gram/HEAD/tinyram/tinyram.go -------------------------------------------------------------------------------- /tinyram/tinyram_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayerXcom/gram/HEAD/tinyram/tinyram_test.go --------------------------------------------------------------------------------