-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
cpu.go
1140 lines (936 loc) · 21.3 KB
/
cpu.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Package cpu contains the CPU for our virtual machine interpreter.
//
// We should probably use the constants defined in `opcodes/opcodes.go`
// instead of the literal hex-constants for our bytecode, but that's a minor
// issue.
//
package cpu
import (
"bufio"
"bytes"
"context"
"fmt"
"io/ioutil"
"math/rand"
"os"
"os/exec"
"strconv"
"time"
"github.com/skx/go.vm/opcode"
)
// Flags holds the CPU flags - of which we only have one.
type Flags struct {
// Zero-flag
z bool
}
// CPU is our virtual machine state.
type CPU struct {
// Registers
regs [15]*Register
// Flags
flags Flags
// Our RAM - where the program is loaded
mem [0xFFFF]byte
// Instruction-pointer
ip int
// stack
stack *Stack
// context is used by callers to implement timeouts.
context context.Context
// STDIN is an input-reader used for the input-trap.
STDIN *bufio.Reader
// STDOUT is the writer used for outputing things.
STDOUT *bufio.Writer
}
//
// CPU / VM functions
//
// NewCPU returns a new CPU object.
func NewCPU() *CPU {
x := &CPU{context: context.Background()}
x.Reset()
// allow reading from STDIN
x.STDIN = bufio.NewReader(os.Stdin)
// set standard output for STDOUT
x.STDOUT = bufio.NewWriter(os.Stdout)
return x
}
// SetContext allows a context to be used as our virtual machine is
// running. This is most used to allow our caller to setup a
// timeout/deadline which will avoid denial-of-service problems if
// user-supplied script(s) contain infinite loops.
func (c *CPU) SetContext(ctx context.Context) {
c.context = ctx
}
// Reset sets the CPU into a known-good state, by setting the IP to zero,
// and emptying all registers (i.e. setting them to zero too).
func (c *CPU) Reset() {
// Reset registers
for i := 0; i < len(c.regs); i++ {
c.regs[i] = NewRegister()
}
// Reset stack
c.stack = NewStack()
// Reset instruction pointer to zero.
c.ip = 0
}
// LoadFile loads the program from the named file into RAM.
// NOTE: The CPU-state is reset prior to the load.
func (c *CPU) LoadFile(path string) error {
// Load the file
b, err := ioutil.ReadFile(path)
if err != nil {
return fmt.Errorf("failed to read file: %s - %s", path, err.Error())
}
if len(b) >= 0xFFFF {
return fmt.Errorf("program too large for RAM %d", len(b))
}
// Copy contents of file to our memory region.
// NOTE: This calls `Reset` too :)
c.LoadBytes(b)
return nil
}
// LoadBytes populates the given program into RAM.
// NOTE: The CPU-state is reset prior to the load.
func (c *CPU) LoadBytes(data []byte) {
// Ensure we reset our state.
c.Reset()
if len(data) >= 0xFFFF {
fmt.Printf("Program too large for RAM!\n")
os.Exit(1)
}
// Copy contents of file to our memory region
for i := 0; i < len(data); i++ {
// Addition to fix a linter warning suggesting the used
// of `copy`.
c.mem[i+0] = data[i+0]
}
}
// Read a string from the IP position
// Strings are prefixed by their lengths (two-bytes).
func (c *CPU) readString() (string, error) {
// Read the length of the string we expect
len := c.read2Val()
// Can't read beyond RAM, but we will allow wrap-around.
if len >= 0xffff {
return "", fmt.Errorf("string too large")
}
addr := c.ip
// Now build up the body of the string
s := ""
for i := 0; i < len; i++ {
tmp := addr + i
// wrap around
if tmp == 0xFFFF {
tmp = 0
}
s += string(c.mem[tmp])
}
// Jump the IP over the length of the string.
c.ip += (len)
return s, nil
}
// Read a two-byte number from the current IP.
// i.e This reads two bytes and returns a 16-bit value to the caller,
// skipping over both bytes in the IP.
func (c *CPU) read2Val() int {
l := int(c.mem[c.ip])
c.ip++
h := int(c.mem[c.ip])
c.ip++
val := l + h*256
return (val)
}
// Run launches our intepreter.
// It does not terminate until an `EXIT` instruction is hit.
func (c *CPU) Run() error {
run := true
for run {
if c.ip >= 0xffff {
return fmt.Errorf("reading beyond RAM")
}
op := opcode.NewOpcode(c.mem[c.ip])
debugPrintf("%04X %02X [%s]\n", c.ip, op.Value(), op.String())
//
// We've been given a context, which we'll test at every
// iteration of our main-loop.
//
// This is a little slow and inefficient, but we need
// to allow our execution to be time-limited.
//
select {
case <-c.context.Done():
return fmt.Errorf("timeout during execution")
default:
// nop
}
switch int(op.Value()) {
case opcode.EXIT:
run = false
case opcode.INT_STORE:
// register
c.ip++
reg := int(c.mem[c.ip])
// bounds-check our register
if reg >= len(c.regs) {
return fmt.Errorf("register %d out of range", reg)
}
c.ip++
val := c.read2Val()
c.regs[reg].SetInt(val)
case opcode.INT_PRINT:
// register
c.ip++
reg := c.mem[c.ip]
// bounds-check our register
if int(reg) >= len(c.regs) {
return fmt.Errorf("register %d out of range", reg)
}
val, err := c.regs[reg].GetInt()
if err != nil {
return err
}
if val < 256 {
_, err = c.STDOUT.WriteString(fmt.Sprintf("%02X", val))
if err != nil {
return err
}
} else {
_, err = c.STDOUT.WriteString(fmt.Sprintf("%04X", val))
if err != nil {
return err
}
}
c.STDOUT.Flush()
c.ip++
case opcode.INT_TOSTRING:
// register
c.ip++
reg := c.mem[c.ip]
// bounds-check our register
if int(reg) >= len(c.regs) {
return fmt.Errorf("register %d out of range", reg)
}
// get value
i, err := c.regs[reg].GetInt()
if err != nil {
return err
}
// change from int to string
c.regs[reg].SetString(fmt.Sprintf("%d", i))
// next instruction
c.ip++
case opcode.INT_RANDOM:
// register
c.ip++
reg := c.mem[c.ip]
// bounds-check our register
if int(reg) >= len(c.regs) {
return fmt.Errorf("register %d out of range", reg)
}
// New random source
s1 := rand.NewSource(time.Now().UnixNano())
r1 := rand.New(s1)
// New random number
c.regs[reg].SetInt(r1.Intn(0xffff))
c.ip++
case opcode.JUMP_TO:
c.ip++
addr := c.read2Val()
c.ip = addr
case opcode.JUMP_Z:
c.ip++
addr := c.read2Val()
if c.flags.z {
c.ip = addr
}
case opcode.JUMP_NZ:
c.ip++
addr := c.read2Val()
if !c.flags.z {
c.ip = addr
}
case opcode.XOR_OP:
c.ip++
res := c.mem[c.ip]
c.ip++
a := c.mem[c.ip]
c.ip++
b := c.mem[c.ip]
c.ip++
if int(a) >= len(c.regs) {
return fmt.Errorf("register %d out of range", a)
}
if int(b) >= len(c.regs) {
return fmt.Errorf("register %d out of range", b)
}
if int(res) >= len(c.regs) {
return fmt.Errorf("register %d out of range", res)
}
// store result
aVal, aErr := c.regs[a].GetInt()
if aErr != nil {
return aErr
}
bVal, bErr := c.regs[b].GetInt()
if bErr != nil {
return bErr
}
c.regs[res].SetInt(aVal ^ bVal)
case opcode.ADD_OP:
c.ip++
res := c.mem[c.ip]
c.ip++
a := c.mem[c.ip]
c.ip++
b := c.mem[c.ip]
c.ip++
if int(a) >= len(c.regs) {
return fmt.Errorf("register %d out of range", a)
}
if int(b) >= len(c.regs) {
return fmt.Errorf("register %d out of range", b)
}
if int(res) >= len(c.regs) {
return fmt.Errorf("register %d out of range", res)
}
// store result
aVal, aErr := c.regs[a].GetInt()
if aErr != nil {
return aErr
}
bVal, bErr := c.regs[b].GetInt()
if bErr != nil {
return bErr
}
c.regs[res].SetInt(aVal + bVal)
case opcode.SUB_OP:
c.ip++
res := c.mem[c.ip]
c.ip++
a := c.mem[c.ip]
c.ip++
b := c.mem[c.ip]
c.ip++
if int(a) >= len(c.regs) {
return fmt.Errorf("register %d out of range", a)
}
if int(b) >= len(c.regs) {
return fmt.Errorf("register %d out of range", b)
}
if int(res) >= len(c.regs) {
return fmt.Errorf("register %d out of range", res)
}
// store result
aVal, aErr := c.regs[a].GetInt()
if aErr != nil {
return aErr
}
bVal, bErr := c.regs[b].GetInt()
if bErr != nil {
return bErr
}
c.regs[res].SetInt(aVal - bVal)
// set the zero-flag if the result was zero or less
rVal, err := c.regs[res].GetInt()
if err != nil {
return err
}
if rVal <= 0 {
c.flags.z = true
}
case opcode.MUL_OP:
c.ip++
res := c.mem[c.ip]
c.ip++
a := c.mem[c.ip]
c.ip++
b := c.mem[c.ip]
c.ip++
if int(a) >= len(c.regs) {
return fmt.Errorf("register %d out of range", a)
}
if int(b) >= len(c.regs) {
return fmt.Errorf("register %d out of range", b)
}
if int(res) >= len(c.regs) {
return fmt.Errorf("register %d out of range", res)
}
// store result
aVal, aErr := c.regs[a].GetInt()
if aErr != nil {
return aErr
}
bVal, bErr := c.regs[b].GetInt()
if bErr != nil {
return bErr
}
c.regs[res].SetInt(aVal * bVal)
case opcode.DIV_OP:
c.ip++
res := c.mem[c.ip]
c.ip++
a := c.mem[c.ip]
c.ip++
b := c.mem[c.ip]
c.ip++
if int(a) >= len(c.regs) {
return fmt.Errorf("register %d out of range", a)
}
if int(b) >= len(c.regs) {
return fmt.Errorf("register %d out of range", b)
}
if int(res) >= len(c.regs) {
return fmt.Errorf("register %d out of range", res)
}
// store result
aVal, aErr := c.regs[a].GetInt()
if aErr != nil {
return aErr
}
bVal, bErr := c.regs[b].GetInt()
if bErr != nil {
return bErr
}
if bVal == 0 {
return fmt.Errorf("attempted division by zero")
}
c.regs[res].SetInt(aVal / bVal)
case opcode.INC_OP:
// register
c.ip++
reg := c.mem[c.ip]
// bounds-check our register
if int(reg) >= len(c.regs) {
return fmt.Errorf("register %d out of range", reg)
}
// get the value
val, err := c.regs[reg].GetInt()
if err != nil {
return err
}
// if the value is the max it will wrap around
if val == 0xFFFF {
val = 0
} else {
// otherwise be incremented normally
val++
}
// zero?
c.flags.z = (val == 0)
c.regs[reg].SetInt(val)
// bump past that
c.ip++
case opcode.DEC_OP:
// register
c.ip++
reg := c.mem[c.ip]
// bounds-check our register
if int(reg) >= len(c.regs) {
return fmt.Errorf("register %d out of range", reg)
}
// get the value
val, err := c.regs[reg].GetInt()
if err != nil {
return err
}
// if the value is the minimum it will wrap around
if val == 0x0000 {
val = 0xFFFF
} else {
// otherwise decrease normally
val--
}
// zero?
c.flags.z = (val == 0)
c.regs[reg].SetInt(val)
// bump past that
c.ip++
case opcode.AND_OP:
c.ip++
res := c.mem[c.ip]
c.ip++
a := c.mem[c.ip]
c.ip++
b := c.mem[c.ip]
c.ip++
if int(a) >= len(c.regs) {
return fmt.Errorf("register %d out of range", a)
}
if int(b) >= len(c.regs) {
return fmt.Errorf("register %d out of range", b)
}
if int(res) >= len(c.regs) {
return fmt.Errorf("register %d out of range", res)
}
// store result
aVal, aErr := c.regs[a].GetInt()
if aErr != nil {
return aErr
}
bVal, bErr := c.regs[b].GetInt()
if bErr != nil {
return bErr
}
c.regs[res].SetInt(aVal & bVal)
case opcode.OR_OP:
c.ip++
res := c.mem[c.ip]
c.ip++
a := c.mem[c.ip]
c.ip++
b := c.mem[c.ip]
c.ip++
if int(a) >= len(c.regs) {
return fmt.Errorf("register %d out of range", a)
}
if int(b) >= len(c.regs) {
return fmt.Errorf("register %d out of range", b)
}
if int(res) >= len(c.regs) {
return fmt.Errorf("register %d out of range", res)
}
// store result
aVal, aErr := c.regs[a].GetInt()
if aErr != nil {
return aErr
}
bVal, bErr := c.regs[b].GetInt()
if bErr != nil {
return bErr
}
c.regs[res].SetInt(aVal | bVal)
case opcode.STRING_STORE:
// register
c.ip++
reg := c.mem[c.ip]
// bounds-check our register
if int(reg) >= len(c.regs) {
return fmt.Errorf("register %d out of range", reg)
}
// bump past that to the length + string
c.ip++
// read it
str, err := c.readString()
if err != nil {
return err
}
// store the string
c.regs[reg].SetString(str)
case opcode.STRING_PRINT:
// register
c.ip++
reg := c.mem[c.ip]
// bounds-check our register
if int(reg) >= len(c.regs) {
return fmt.Errorf("register %d out of range", reg)
}
str, err := c.regs[reg].GetString()
if err != nil {
return err
}
_, err = c.STDOUT.WriteString(str)
if err != nil {
return err
}
c.STDOUT.Flush()
c.ip++
case opcode.STRING_CONCAT:
// output register
c.ip++
res := c.mem[c.ip]
// src1
c.ip++
a := c.mem[c.ip]
if int(a) >= len(c.regs) {
return fmt.Errorf("register %d out of range", a)
}
// src2
c.ip++
b := c.mem[c.ip]
if int(b) >= len(c.regs) {
return fmt.Errorf("register %d out of range", b)
}
c.ip++
if int(a) >= len(c.regs) {
return fmt.Errorf("register %d out of range", a)
}
if int(b) >= len(c.regs) {
return fmt.Errorf("register %d out of range", b)
}
if int(res) >= len(c.regs) {
return fmt.Errorf("register %d out of range", res)
}
aVal, aErr := c.regs[a].GetString()
if aErr != nil {
return aErr
}
bVal, bErr := c.regs[b].GetString()
if bErr != nil {
return bErr
}
c.regs[res].SetString(aVal + bVal)
case opcode.STRING_SYSTEM:
// register
c.ip++
r := c.mem[c.ip]
c.ip++
if int(r) >= len(c.regs) {
return fmt.Errorf("register %d out of range", r)
}
str, sErr := c.regs[r].GetString()
if sErr != nil {
return sErr
}
if false {
// run the command
toExec := splitCommand(str)
cmd := exec.Command(toExec[0], toExec[1:]...)
var out bytes.Buffer
var err bytes.Buffer
cmd.Stdout = &out
cmd.Stderr = &err
er := cmd.Run()
if er != nil {
return fmt.Errorf("error invoking system(%s): %s", str, er)
}
// stdout
fmt.Printf("%s", out.String())
// stderr - if non-empty
if len(err.String()) > 0 {
fmt.Printf("%s", err.String())
}
}
case opcode.STRING_TOINT:
// register
c.ip++
reg := c.mem[c.ip]
// bounds-check our register
if int(reg) >= len(c.regs) {
return fmt.Errorf("register %d out of range", reg)
}
// get value
s, sErr := c.regs[reg].GetString()
if sErr != nil {
return sErr
}
i, err := strconv.Atoi(s)
if err == nil {
c.regs[reg].SetInt(i)
} else {
return fmt.Errorf("failed to convert %s to int:%s", s, err)
}
// next instruction
c.ip++
case opcode.CMP_REG:
c.ip++
r1 := int(c.mem[c.ip])
c.ip++
r2 := int(c.mem[c.ip])
c.ip++
if int(r1) >= len(c.regs) {
return fmt.Errorf("register %d out of range", r1)
}
if int(r2) >= len(c.regs) {
return fmt.Errorf("register %d out of range", r2)
}
c.flags.z = false
switch c.regs[r1].Type() {
case "int":
aVal, aErr := c.regs[r1].GetInt()
if aErr != nil {
return aErr
}
bVal, bErr := c.regs[r2].GetInt()
if bErr != nil {
return bErr
}
if aVal == bVal {
c.flags.z = true
}
case "string":
aVal, aErr := c.regs[r1].GetString()
if aErr != nil {
return aErr
}
bVal, bErr := c.regs[r2].GetString()
if bErr != nil {
return bErr
}
if aVal == bVal {
c.flags.z = true
}
}
case opcode.CMP_IMMEDIATE:
// register
c.ip++
reg := int(c.mem[c.ip])
// bounds-check our register
if int(reg) >= len(c.regs) {
return fmt.Errorf("register %d out of range", reg)
}
c.ip++
val := c.read2Val()
if c.regs[reg].Type() == "int" {
valCur, err := c.regs[reg].GetInt()
if err != nil {
return err
}
if valCur == val {
c.flags.z = true
}
} else {
c.flags.z = false
}
case opcode.CMP_STRING:
// register
c.ip++
reg := int(c.mem[c.ip])
// bounds-check our register
if int(reg) >= len(c.regs) {
return fmt.Errorf("register %d out of range", reg)
}
c.ip++
// read it
str, err := c.readString()
if err != nil {
return err
}
if c.regs[reg].Type() == "string" {
val, err := c.regs[reg].GetString()
if err != nil {
return err
}
if val == str {
c.flags.z = true
}
} else {
c.flags.z = false
}
case opcode.IS_STRING:
// register
c.ip++
reg := int(c.mem[c.ip])
// bounds-check our register
if int(reg) >= len(c.regs) {
return fmt.Errorf("register %d out of range", reg)
}
c.ip++
if c.regs[reg].Type() == "string" {
c.flags.z = true
} else {
c.flags.z = false
}
case opcode.IS_INTEGER:
// register
c.ip++
reg := int(c.mem[c.ip])
// bounds-check our register
if int(reg) >= len(c.regs) {
return fmt.Errorf("register %d out of range", reg)
}
c.ip++
if c.regs[reg].Type() == "int" {
c.flags.z = true
} else {
c.flags.z = false
}
case opcode.NOP_OP:
c.ip++
case opcode.REG_STORE:
// register
c.ip++
dst := int(c.mem[c.ip])
c.ip++
// register
src := int(c.mem[c.ip])
c.ip++
if int(src) >= len(c.regs) {
return fmt.Errorf("register %d out of range", src)
}
if int(dst) >= len(c.regs) {
return fmt.Errorf("register %d out of range", dst)
}
// Copy the register - paying attention to types
if c.regs[src].Type() == "string" {
cur, err := c.regs[src].GetString()
if err != nil {
return err
}
c.regs[dst].SetString(cur)
} else if c.regs[src].Type() == "int" {
cur, err := c.regs[src].GetInt()
if err != nil {
return err
}
c.regs[dst].SetInt(cur)
} else {
return fmt.Errorf("invalid register type?")
}
case opcode.PEEK:
// register
c.ip++
result := int(c.mem[c.ip])
c.ip++
src := int(c.mem[c.ip])
if int(src) >= len(c.regs) {
return fmt.Errorf("register %d out of range", src)
}
if int(result) >= len(c.regs) {
return fmt.Errorf("register %d out of range", result)
}
// get the address from the src register contents
addr, err := c.regs[src].GetInt()
if err != nil {
return err
}
if addr >= 0xFFFF {
return fmt.Errorf("address out of range %d", addr)
}
// store the contents of the given address
c.regs[result].SetInt(int(c.mem[addr]))
c.ip++
case opcode.POKE:
// register
c.ip++
src := int(c.mem[c.ip])
c.ip++
dst := int(c.mem[c.ip])
c.ip++
if int(src) >= len(c.regs) {
return fmt.Errorf("register %d out of range", src)
}
if int(dst) >= len(c.regs) {
return fmt.Errorf("register %d out of range", dst)
}
// So the destination will contain an address
// put the contents of the source to that.
addr, err := c.regs[dst].GetInt()
if err != nil {
return err
}
if addr >= 0xFFFF {
return fmt.Errorf("address out of range %d", addr)
}
val, err2 := c.regs[src].GetInt()
if err2 != nil {
return err2
}
if addr >= 0xffff {
return fmt.Errorf("attempting to write beyond RAM")
}
c.mem[addr] = byte(val)
case opcode.MEMCPY:
// register