MCPcopy Create free account
hub / github.com/djhworld/simple-computer / Instructions

Struct Instructions

asm/instructions.go:664–666  ·  view source on GitHub ↗

Instructions - useful list data structure for convienience

Source from the content-addressed store, hash-verified

662
663// Instructions - useful list data structure for convienience
664type Instructions struct {
665 instructions []Instruction
666}
667
668func (s *Instructions) Add(ins ...Instruction) {
669 for _, i := range ins {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected