github.com/chenzhuoyu/iasm@v0.9.1/repl/regs.go (about) 1 package repl 2 3 type _Reg struct { 4 reg string 5 val string 6 vec bool 7 } 8 9 type _RegFile interface { 10 Dump(indent int) []_Reg 11 Compare(other _RegFile, indent int) []_Reg 12 } 13 14 var ( 15 _regs _RegFile 16 )