From b8b13680ad8cdc44e7b275bfb5d54f2d5cc5829c Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Tue, 16 Nov 2021 21:12:32 -1000 Subject: [PATCH] Naming --- assembler/parse.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assembler/parse.go b/assembler/parse.go index 329ed3b..ae938c0 100644 --- a/assembler/parse.go +++ b/assembler/parse.go @@ -6,8 +6,8 @@ type Program struct { Functions []*Function `yaml:"functions"` } -type Function []*Operation -type Operation []string +type Function []*Instruction +type Instruction []string func NewProgramFromBytes(in []byte) (*Program, error) { prog := &Program{}