File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -391,6 +391,11 @@ func (instruction *AddImmediateInstruction) parse() error {
391
391
instruction .reg2 = SP
392
392
instruction .constant = uint (constant )
393
393
394
+ address := getRegisterValue (instruction .reg2 ) + int64 (instruction .constant )
395
+ if address >= MEMORY_SIZE {
396
+ return errors .New ("Stack underflow error in : " + instruction .inst )
397
+ }
398
+
394
399
return nil
395
400
}
396
401
@@ -454,6 +459,11 @@ func (instruction *SubImmediateInstruction) parse() error {
454
459
instruction .reg2 = SP
455
460
instruction .constant = uint (constant )
456
461
462
+ address := getRegisterValue (instruction .reg2 ) + int64 (instruction .constant )
463
+ if address < (MEMORY_SIZE - STACK_SIZE ) {
464
+ return errors .New ("Stack overflow error in : " + instruction .inst )
465
+ }
466
+
457
467
return nil
458
468
}
459
469
You can’t perform that action at this time.
0 commit comments