Just trying to trigger release #1

Merged
S.D merged 13 commits from develop into master 2020-10-11 18:35:00 +00:00
5 changed files with 21 additions and 1 deletions
Showing only changes of commit 0578f1aa93 - Show all commits

View File

@ -6,4 +6,9 @@ steps:
- name : test
image: golang:latest
commands:
- go test -v ./pkg/...
- go test -v ./chip8
- name : build
image: golang:latest
commands:
- go build ./cmd/test_prog

12
cmd/test_prog/main.go Normal file
View File

@ -0,0 +1,12 @@
package main
import (
"git.jacknet.io/S.D/Chip-8_Go/chip8"
"fmt"
)
func main() {
prog := make([]byte, 6)
cpu := chip8.NewCHIP8(prog)
fmt.Printf("%d\n", cpu.GetGraphicsBuffer()[0])
}

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module git.jacknet.io/S.D/Chip-8_Go
go 1.15