v4_cli 0.5.0

CLI tool for V4 VM bytecode deployment
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
#include <cstdint>

#include "doctest.h"
#include "v4/errors.hpp"
#include "v4/internal/vm.h"
#include "v4/opcodes.hpp"
#include "v4/vm_api.h"

/* ------------------------------------------------------------------------- */
/* Bytecode emit helpers                                                     */
/* ------------------------------------------------------------------------- */
static inline void emit8(v4_u8 *code, int *k, uint8_t v)
{
  code[(*k)++] = v;
}
static inline void emit16(v4_u8 *code, int *k, int16_t v)
{
  code[(*k)++] = (v4_u8)(v & 0xFF);
  code[(*k)++] = (v4_u8)((v >> 8) & 0xFF);
}
static inline void emit32(v4_u8 *code, int *k, v4_i32 v)
{
  code[(*k)++] = (v4_u8)(v & 0xFF);
  code[(*k)++] = (v4_u8)((v >> 8) & 0xFF);
  code[(*k)++] = (v4_u8)((v >> 16) & 0xFF);
  code[(*k)++] = (v4_u8)((v >> 24) & 0xFF);
}

/* ------------------------------------------------------------------------- */
/* Smoke: version                                                            */
/* ------------------------------------------------------------------------- */
TEST_CASE("vm version")
{
  CHECK(v4_vm_version() == 0);
}

/* ------------------------------------------------------------------------- */
/* Arithmetic and stack operation tests                                      */
/* ------------------------------------------------------------------------- */
TEST_CASE("basic stack ops (LIT/SWAP/DUP/OVER/DROP/RET)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {(v4_u8)v4::Op::LIT,
                  1,
                  0,
                  0,
                  0,
                  (v4_u8)v4::Op::LIT,
                  2,
                  0,
                  0,
                  0,
                  (v4_u8)v4::Op::SWAP,
                  (v4_u8)v4::Op::DUP,
                  (v4_u8)v4::Op::OVER,
                  (v4_u8)v4::Op::DROP,
                  (v4_u8)v4::Op::RET};
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 3);
  CHECK(vm.DS[0] == 2);
  CHECK(vm.DS[1] == 1);
}

TEST_CASE("basic arithmetic (LIT/ADD/RET)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {(v4_u8)v4::Op::LIT,
                  10,
                  0,
                  0,
                  0,
                  (v4_u8)v4::Op::LIT,
                  20,
                  0,
                  0,
                  0,
                  (v4_u8)v4::Op::ADD,
                  (v4_u8)v4::Op::RET};
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == 30);
}

TEST_CASE("subtraction (LIT/SUB/RET)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {(v4_u8)v4::Op::LIT,
                  20,
                  0,
                  0,
                  0,
                  (v4_u8)v4::Op::LIT,
                  10,
                  0,
                  0,
                  0,
                  (v4_u8)v4::Op::SUB,
                  (v4_u8)v4::Op::RET};
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == 10);
}

TEST_CASE("multiplication (LIT/MUL/RET)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {
      (v4_u8)v4::Op::LIT, 6, 0, 0, 0, (v4_u8)v4::Op::LIT, 7, 0, 0, 0, (v4_u8)v4::Op::MUL,
      (v4_u8)v4::Op::RET};
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == 42);
}

TEST_CASE("division (LIT/DIV/RET)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {
      (v4_u8)v4::Op::LIT, 42, 0, 0, 0, (v4_u8)v4::Op::LIT, 7, 0, 0, 0, (v4_u8)v4::Op::DIV,
      (v4_u8)v4::Op::RET};
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == 6);
}

TEST_CASE("modulus (LIT/MOD/RET)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {
      (v4_u8)v4::Op::LIT, 43, 0, 0, 0, (v4_u8)v4::Op::LIT, 7, 0, 0, 0, (v4_u8)v4::Op::MOD,
      (v4_u8)v4::Op::RET};
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == 1);
}

TEST_CASE("error: division by zero")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {
      (v4_u8)v4::Op::LIT, 42, 0, 0, 0, (v4_u8)v4::Op::LIT, 0, 0, 0, 0, (v4_u8)v4::Op::DIV,
      (v4_u8)v4::Op::RET};
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == static_cast<int>(Err::DivByZero));
  CHECK(vm.sp == vm.DS + 0);
}

/* ------------------------------------------------------------------------- */
/* Comparison                                                                */
/* ------------------------------------------------------------------------- */
TEST_CASE("equality (LIT/EQ/RET)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {
      (v4_u8)v4::Op::LIT, 10, 0, 0, 0, (v4_u8)v4::Op::LIT, 10, 0, 0, 0, (v4_u8)v4::Op::EQ,
      (v4_u8)v4::Op::RET};
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == V4_TRUE);
}

TEST_CASE("comparison (LIT/NE/RET)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {
      (v4_u8)v4::Op::LIT, 10, 0, 0, 0, (v4_u8)v4::Op::LIT, 20, 0, 0, 0, (v4_u8)v4::Op::NE,
      (v4_u8)v4::Op::RET};
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == V4_TRUE);
}

TEST_CASE("comparison (LIT/GT/RET)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {
      (v4_u8)v4::Op::LIT, 20, 0, 0, 0, (v4_u8)v4::Op::LIT, 10, 0, 0, 0, (v4_u8)v4::Op::GT,
      (v4_u8)v4::Op::RET};
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == V4_TRUE);
}

TEST_CASE("comparison (LIT/GE/RET)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {
      (v4_u8)v4::Op::LIT, 10, 0, 0, 0, (v4_u8)v4::Op::LIT, 10, 0, 0, 0, (v4_u8)v4::Op::GE,
      (v4_u8)v4::Op::RET};
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == V4_TRUE);
}

TEST_CASE("comparison (LIT/LT/RET)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {
      (v4_u8)v4::Op::LIT, 10, 0, 0, 0, (v4_u8)v4::Op::LIT, 20, 0, 0, 0, (v4_u8)v4::Op::LT,
      (v4_u8)v4::Op::RET};
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == V4_TRUE);
}

TEST_CASE("comparison (LIT/LE/RET)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {
      (v4_u8)v4::Op::LIT, 10, 0, 0, 0, (v4_u8)v4::Op::LIT, 10, 0, 0, 0, (v4_u8)v4::Op::LE,
      (v4_u8)v4::Op::RET};
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == V4_TRUE);
}

/* ------------------------------------------------------------------------- */
/* Bitwise                                                                   */
/* ------------------------------------------------------------------------- */
TEST_CASE("bitwise AND (LIT/AND/RET)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {(v4_u8)v4::Op::LIT,
                  0b1100,
                  0,
                  0,
                  0,
                  (v4_u8)v4::Op::LIT,
                  0b1010,
                  0,
                  0,
                  0,
                  (v4_u8)v4::Op::AND,
                  (v4_u8)v4::Op::RET};
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == 0b1000);
}

TEST_CASE("bitwise OR (LIT/OR/RET)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {(v4_u8)v4::Op::LIT,
                  0b1100,
                  0,
                  0,
                  0,
                  (v4_u8)v4::Op::LIT,
                  0b1010,
                  0,
                  0,
                  0,
                  (v4_u8)v4::Op::OR,
                  (v4_u8)v4::Op::RET};
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == 0b1110);
}

TEST_CASE("bitwise INVERT (LIT/INVERT/RET)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {(v4_u8)v4::Op::LIT, 0b1100, 0, 0, 0, (v4_u8)v4::Op::INVERT,
                  (v4_u8)v4::Op::RET};
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == ~0b1100);
}

TEST_CASE("bitwise XOR (LIT/XOR/RET)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {(v4_u8)v4::Op::LIT,
                  0b1100,
                  0,
                  0,
                  0,
                  (v4_u8)v4::Op::LIT,
                  0b1010,
                  0,
                  0,
                  0,
                  (v4_u8)v4::Op::XOR,
                  (v4_u8)v4::Op::RET};
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == 0b0110);
}

/* ------------------------------------------------------------------------- */
/* Control flow                                                              */
/* ------------------------------------------------------------------------- */
TEST_CASE("unconditional branch (JMP)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {
      (v4_u8)v4::Op::LIT, 1, 0, 0, 0,  // 0: DS[0]=1
      (v4_u8)v4::Op::JMP, 5, 0,        // 5: jump to 12
      (v4_u8)v4::Op::LIT, 2, 0, 0, 0,  // 7: DS[0]=2 (skipped)
      (v4_u8)v4::Op::RET               // 12:
  };
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == 1);
}

TEST_CASE("conditional branch (JZ)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {
      (v4_u8)v4::Op::LIT, 0, 0, 0, 0,  // 0: DS[0]=0
      (v4_u8)v4::Op::JZ,  8, 0,        // 5: jump to 14 if DS[0]==0
      (v4_u8)v4::Op::LIT, 1, 0, 0, 0,  // 7: DS[0]=1 (skipped)
      (v4_u8)v4::Op::JMP, 6, 0,        // 12: jump to 20
      (v4_u8)v4::Op::LIT, 2, 0, 0, 0,  // 14: DS[0]=2
      (v4_u8)v4::Op::RET               // 19:
  };
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == 2);
}

TEST_CASE("conditional branch (JNZ)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {
      (v4_u8)v4::Op::LIT, 1, 0, 0, 0,  // 0: DS[0]=1
      (v4_u8)v4::Op::JNZ, 8, 0,        // 5: jump to 14 if DS[0]!=0
      (v4_u8)v4::Op::LIT, 2, 0, 0, 0,  // 7: DS[0]=2 (skipped)
      (v4_u8)v4::Op::JMP, 6, 0,        // 12: jump to 20
      (v4_u8)v4::Op::LIT, 3, 0, 0, 0,  // 14: DS[0]=3
      (v4_u8)v4::Op::RET               // 19:
  };
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == 3);
}

/* ------------------------------------------------------------------------- */
/* Error paths                                                               */
/* ------------------------------------------------------------------------- */
TEST_CASE("error: truncated LIT immediate")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {
      (v4_u8)v4::Op::LIT, 1, 0, 0  // missing one byte
  };
  int rc = vm_exec_raw(&vm, code, (int)sizeof(code));
  CHECK(rc == static_cast<int>(Err::TruncatedLiteral));
  CHECK(vm.sp == vm.DS + 0);
}

/* ------------------------------------------------------------------------- */
/* Simple loop                                                               */
/* ------------------------------------------------------------------------- */
TEST_CASE("Simple loop with JNZ")
{
  Vm vm{};
  vm_reset(&vm);

  // Program: count down from 5 to 0 using a loop.
  v4_u8 code[32];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);  // Push 5
  emit32(code, &k, 5);
  int loop_start = k;
  emit8(code, &k, (v4_u8)v4::Op::LIT);  // Push 1
  emit32(code, &k, 1);
  emit8(code, &k, (v4_u8)v4::Op::SUB);  // n = n - 1
  emit8(code, &k, (v4_u8)v4::Op::DUP);  // duplicate for JNZ test
  emit8(code, &k, (v4_u8)v4::Op::JNZ);  // if not zero, jump back
  emit16(code, &k, (int16_t)(loop_start - (k + 2)));
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm.DS[0] == 0);       // final value expected to be 0
  CHECK(vm.sp == vm.DS + 1);  // single value remains
}

/* ------------------------------------------------------------------------- */
/* Memory operations (LOAD/STORE)                                            */
/* ------------------------------------------------------------------------- */
TEST_CASE("LOAD/STORE roundtrip 32-bit")
{
  alignas(4) v4_u8 ram[64] = {};
  VmConfig cfg{};
  cfg.mem = ram;
  cfg.mem_size = sizeof(ram);

  Vm *vm = vm_create(&cfg);
  vm_reset(vm);

  // bc: LIT 0x12345678; LIT 0x10; STORE; LIT 0x10; LOAD; RET
  v4_u8 bc[64];
  int k = 0;
  emit8(bc, &k, (v4_u8)v4::Op::LIT);
  emit32(bc, &k, 0x12345678);
  emit8(bc, &k, (v4_u8)v4::Op::LIT);
  emit32(bc, &k, 0x10);
  emit8(bc, &k, (v4_u8)v4::Op::STORE);
  emit8(bc, &k, (v4_u8)v4::Op::LIT);
  emit32(bc, &k, 0x10);
  emit8(bc, &k, (v4_u8)v4::Op::LOAD);
  emit8(bc, &k, (v4_u8)v4::Op::RET);

  REQUIRE(vm_exec_raw(vm, bc, k) == (v4_err)Err::OK);

  CHECK(vm->sp > vm->DS);
  CHECK(*(vm->sp - 1) == 0x12345678);

  vm_destroy(vm);
}

TEST_CASE("LOAD/STORE out-of-bounds is rejected")
{
  alignas(4) v4_u8 ram[16] = {};
  VmConfig cfg{};
  cfg.mem = ram;
  cfg.mem_size = sizeof(ram);

  Vm *vm = vm_create(&cfg);
  vm_reset(vm);

  const v4_i32 bad_addr = (v4_i32)sizeof(ram) - 3;

  v4_u8 bc[64];
  int k = 0;
  emit8(bc, &k, (v4_u8)v4::Op::LIT);
  emit32(bc, &k, 0xDEADBEEF);
  emit8(bc, &k, (v4_u8)v4::Op::LIT);
  emit32(bc, &k, bad_addr);
  emit8(bc, &k, (v4_u8)v4::Op::STORE);
  emit8(bc, &k, (v4_u8)v4::Op::RET);

  v4_err e = vm_exec_raw(vm, bc, k);
  CHECK(e != (v4_err)Err::OK);

  vm_destroy(vm);
}

TEST_CASE("LOAD/STORE unaligned is rejected (addr % 4 != 0)")
{
  alignas(4) v4_u8 ram[32] = {};
  VmConfig cfg{};
  cfg.mem = ram;
  cfg.mem_size = sizeof(ram);

  Vm *vm = vm_create(&cfg);
  vm_reset(vm);

  const v4_i32 unaligned = 0x02;

  v4_u8 bc[64];
  int k = 0;
  // STORE: LIT 0x01020304; LIT 0x02; STORE; RET
  emit8(bc, &k, (v4_u8)v4::Op::LIT);
  emit32(bc, &k, 0x01020304);
  emit8(bc, &k, (v4_u8)v4::Op::LIT);
  emit32(bc, &k, unaligned);
  emit8(bc, &k, (v4_u8)v4::Op::STORE);
  emit8(bc, &k, (v4_u8)v4::Op::RET);

  v4_err e1 = vm_exec_raw(vm, bc, k);
  CHECK(e1 != (v4_err)Err::OK);

  k = 0;
  emit8(bc, &k, (v4_u8)v4::Op::LIT);
  emit32(bc, &k, unaligned);
  emit8(bc, &k, (v4_u8)v4::Op::LOAD);
  emit8(bc, &k, (v4_u8)v4::Op::RET);

  v4_err e2 = vm_exec_raw(vm, bc, k);
  CHECK(e2 != (v4_err)Err::OK);

  vm_destroy(vm);
}

/* ------------------------------------------------------------------------- */
/* Stack inspection API tests                                                */
/* ------------------------------------------------------------------------- */
TEST_CASE("vm_ds_depth_public - empty stack")
{
  Vm vm{};
  vm_reset(&vm);

  CHECK(vm_ds_depth_public(&vm) == 0);
}

TEST_CASE("vm_ds_depth_public - after pushing values")
{
  Vm vm{};
  vm_reset(&vm);

  // LIT 10; LIT 20; LIT 30; RET
  v4_u8 code[32];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 10);
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 20);
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 30);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm_ds_depth_public(&vm) == 3);
}

TEST_CASE("vm_ds_depth_public - NULL vm")
{
  CHECK(vm_ds_depth_public(nullptr) == 0);
}

TEST_CASE("vm_ds_peek_public - peek at stack values")
{
  Vm vm{};
  vm_reset(&vm);

  // LIT 10; LIT 20; LIT 30; RET
  // Stack bottom to top: [10, 20, 30]
  v4_u8 code[32];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 10);
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 20);
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 30);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);

  // Peek from top
  CHECK(vm_ds_peek_public(&vm, 0) == 30);  // Top
  CHECK(vm_ds_peek_public(&vm, 1) == 20);  // Second from top
  CHECK(vm_ds_peek_public(&vm, 2) == 10);  // Third from top (bottom)
}

TEST_CASE("vm_ds_peek_public - out of range returns 0")
{
  Vm vm{};
  vm_reset(&vm);

  // LIT 42; RET
  v4_u8 code[16];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 42);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm_ds_depth_public(&vm) == 1);

  // Valid peek
  CHECK(vm_ds_peek_public(&vm, 0) == 42);

  // Out of range (negative)
  CHECK(vm_ds_peek_public(&vm, -1) == 0);

  // Out of range (too large)
  CHECK(vm_ds_peek_public(&vm, 1) == 0);
  CHECK(vm_ds_peek_public(&vm, 100) == 0);
}

TEST_CASE("vm_ds_peek_public - empty stack")
{
  Vm vm{};
  vm_reset(&vm);

  CHECK(vm_ds_depth_public(&vm) == 0);
  CHECK(vm_ds_peek_public(&vm, 0) == 0);
}

TEST_CASE("vm_ds_peek_public - NULL vm")
{
  CHECK(vm_ds_peek_public(nullptr, 0) == 0);
}

TEST_CASE("Stack inspection - integration test")
{
  Vm vm{};
  vm_reset(&vm);

  // Simulate Forth "5 3 +"
  // LIT 5; LIT 3; ADD; RET
  v4_u8 code[32];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 5);
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 3);
  emit8(code, &k, (v4_u8)v4::Op::ADD);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);

  // Verify result: stack depth is 1, top value is 8
  CHECK(vm_ds_depth_public(&vm) == 1);
  CHECK(vm_ds_peek_public(&vm, 0) == 8);
}

TEST_CASE("Stack inspection - after complex operations")
{
  Vm vm{};
  vm_reset(&vm);

  // Simulate: 10 DUP * (10 squared = 100)
  // LIT 10; DUP; MUL; RET
  v4_u8 code[32];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 10);
  emit8(code, &k, (v4_u8)v4::Op::DUP);
  emit8(code, &k, (v4_u8)v4::Op::MUL);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);

  CHECK(vm_ds_depth_public(&vm) == 1);
  CHECK(vm_ds_peek_public(&vm, 0) == 100);
}
/* ------------------------------------------------------------------------- */
/* REPL support: Stack manipulation API tests                                */
/* ------------------------------------------------------------------------- */
TEST_CASE("Stack manipulation - vm_ds_push and vm_ds_pop")
{
  Vm vm{};
  vm_reset(&vm);

  // Push values
  CHECK(vm_ds_push(&vm, 10) == 0);
  CHECK(vm_ds_push(&vm, 20) == 0);
  CHECK(vm_ds_push(&vm, 30) == 0);
  CHECK(vm_ds_depth_public(&vm) == 3);

  // Pop values
  v4_i32 val;
  CHECK(vm_ds_pop(&vm, &val) == 0);
  CHECK(val == 30);
  CHECK(vm_ds_pop(&vm, &val) == 0);
  CHECK(val == 20);
  CHECK(vm_ds_depth_public(&vm) == 1);

  // Pop without output pointer
  CHECK(vm_ds_pop(&vm, nullptr) == 0);
  CHECK(vm_ds_depth_public(&vm) == 0);
}

TEST_CASE("Stack manipulation - vm_ds_clear")
{
  Vm vm{};
  vm_reset(&vm);

  vm_ds_push(&vm, 1);
  vm_ds_push(&vm, 2);
  vm_ds_push(&vm, 3);
  CHECK(vm_ds_depth_public(&vm) == 3);

  vm_ds_clear(&vm);
  CHECK(vm_ds_depth_public(&vm) == 0);
}

TEST_CASE("Stack manipulation - error handling")
{
  Vm vm{};
  vm_reset(&vm);

  // Stack underflow
  v4_i32 val;
  CHECK(vm_ds_pop(&vm, &val) != 0);

  // NULL vm
  CHECK(vm_ds_push(nullptr, 42) != 0);
  CHECK(vm_ds_pop(nullptr, &val) != 0);
}

TEST_CASE("Stack snapshot and restore - basic")
{
  Vm vm{};
  vm_reset(&vm);

  // Setup initial stack
  vm_ds_push(&vm, 10);
  vm_ds_push(&vm, 20);
  vm_ds_push(&vm, 30);

  // Create snapshot
  VmStackSnapshot *snap = vm_ds_snapshot(&vm);
  REQUIRE(snap != nullptr);
  REQUIRE(snap->depth == 3);
  REQUIRE(snap->data != nullptr);

  // Modify stack
  vm_ds_clear(&vm);
  vm_ds_push(&vm, 999);
  CHECK(vm_ds_depth_public(&vm) == 1);

  // Restore from snapshot
  CHECK(vm_ds_restore(&vm, snap) == 0);
  CHECK(vm_ds_depth_public(&vm) == 3);
  CHECK(vm_ds_peek_public(&vm, 0) == 30);
  CHECK(vm_ds_peek_public(&vm, 1) == 20);
  CHECK(vm_ds_peek_public(&vm, 2) == 10);

  vm_ds_snapshot_free(snap);
}

TEST_CASE("Stack snapshot - empty stack")
{
  Vm vm{};
  vm_reset(&vm);

  // Snapshot empty stack
  VmStackSnapshot *snap = vm_ds_snapshot(&vm);
  REQUIRE(snap != nullptr);
  REQUIRE(snap->depth == 0);

  // Push values then restore empty snapshot
  vm_ds_push(&vm, 42);
  CHECK(vm_ds_depth_public(&vm) == 1);

  CHECK(vm_ds_restore(&vm, snap) == 0);
  CHECK(vm_ds_depth_public(&vm) == 0);

  vm_ds_snapshot_free(snap);
}

TEST_CASE("Stack snapshot - NULL safety")
{
  // NULL snapshot free (should not crash)
  vm_ds_snapshot_free(nullptr);

  // NULL vm snapshot
  CHECK(vm_ds_snapshot(nullptr) == nullptr);

  // NULL restore
  Vm vm{};
  vm_reset(&vm);
  CHECK(vm_ds_restore(nullptr, nullptr) != 0);
  CHECK(vm_ds_restore(&vm, nullptr) != 0);
}

/* ------------------------------------------------------------------------- */
/* REPL support: Selective reset API tests                                  */
/* ------------------------------------------------------------------------- */
TEST_CASE("Selective reset - vm_reset_dictionary preserves stacks")
{
  Vm vm{};
  vm_reset(&vm);

  // Register words and push values
  v4_u8 code[16];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::RET);

  vm_register_word(&vm, "WORD1", code, k);
  vm_register_word(&vm, "WORD2", code, k);
  vm_ds_push(&vm, 42);
  vm_ds_push(&vm, 100);

  CHECK(vm.word_count == 2);
  CHECK(vm_ds_depth_public(&vm) == 2);

  // Reset dictionary only
  vm_reset_dictionary(&vm);

  // Stack should be preserved
  CHECK(vm_ds_depth_public(&vm) == 2);
  CHECK(vm_ds_peek_public(&vm, 0) == 100);
  CHECK(vm_ds_peek_public(&vm, 1) == 42);

  // Words should be cleared
  CHECK(vm.word_count == 0);
}

TEST_CASE("Selective reset - vm_reset_stacks preserves dictionary")
{
  Vm vm{};
  vm_reset(&vm);

  // Register words and push values
  v4_u8 code[16];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::RET);

  vm_register_word(&vm, "WORD1", code, k);
  vm_ds_push(&vm, 42);
  vm_ds_push(&vm, 100);

  CHECK(vm.word_count == 1);
  CHECK(vm_ds_depth_public(&vm) == 2);

  // Reset stacks only
  vm_reset_stacks(&vm);

  // Stacks should be cleared
  CHECK(vm_ds_depth_public(&vm) == 0);

  // Dictionary should be preserved
  CHECK(vm.word_count == 1);

  // Clean up word names to prevent memory leak
  vm_reset_dictionary(&vm);
}

TEST_CASE("Selective reset - vm_reset clears everything")
{
  Vm vm{};
  vm_reset(&vm);

  // Register words and push values
  v4_u8 code[16];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::RET);

  vm_register_word(&vm, "WORD1", code, k);
  vm_ds_push(&vm, 42);

  // Full reset
  vm_reset(&vm);

  // Everything should be cleared
  CHECK(vm_ds_depth_public(&vm) == 0);
  CHECK(vm.word_count == 0);
}

TEST_CASE("REPL use case - preserve stack across word definition")
{
  Vm vm{};
  vm_reset(&vm);

  // User evaluates: "1 2 +" (result: 3)
  vm_ds_push(&vm, 3);
  CHECK(vm_ds_depth_public(&vm) == 1);

  // User evaluates: "10 20 +" (result: 30)
  vm_ds_push(&vm, 30);
  CHECK(vm_ds_depth_public(&vm) == 2);

  // User defines: ": SQUARE DUP * ;"
  // REPL needs to reset dictionary but preserve stack
  VmStackSnapshot *snap = vm_ds_snapshot(&vm);
  vm_reset_dictionary(&vm);
  vm_ds_restore(&vm, snap);
  vm_ds_snapshot_free(snap);

  // Stack should still have [3, 30]
  CHECK(vm_ds_depth_public(&vm) == 2);
  CHECK(vm_ds_peek_public(&vm, 1) == 3);
  CHECK(vm_ds_peek_public(&vm, 0) == 30);

  // Dictionary is clear for new word
  CHECK(vm.word_count == 0);

  // Now register SQUARE
  v4_u8 square_code[16];
  int k = 0;
  emit8(square_code, &k, (v4_u8)v4::Op::DUP);
  emit8(square_code, &k, (v4_u8)v4::Op::MUL);
  emit8(square_code, &k, (v4_u8)v4::Op::RET);

  vm_register_word(&vm, "SQUARE", square_code, k);
  CHECK(vm.word_count == 1);

  // Execute "5 SQUARE"
  vm_ds_push(&vm, 5);
  v4_u8 call_code[16];
  k = 0;
  emit8(call_code, &k, (v4_u8)v4::Op::CALL);
  emit8(call_code, &k, 0);  // Word index 0
  emit8(call_code, &k, 0);
  emit8(call_code, &k, (v4_u8)v4::Op::RET);

  vm_exec_raw(&vm, call_code, k);

  // Stack should be [3, 30, 25]
  CHECK(vm_ds_depth_public(&vm) == 3);
  CHECK(vm_ds_peek_public(&vm, 2) == 3);
  CHECK(vm_ds_peek_public(&vm, 1) == 30);
  CHECK(vm_ds_peek_public(&vm, 0) == 25);

  // Clean up word names to prevent memory leak
  vm_reset_dictionary(&vm);
}

/* ------------------------------------------------------------------------- */
/* Extended arithmetic operations (Commit 1)                                 */
/* ------------------------------------------------------------------------- */
TEST_CASE("unsigned division (DIVU)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[32];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, -10);  // 0xFFFFFFF6 as unsigned = 4294967286
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 2);
  emit8(code, &k, (v4_u8)v4::Op::DIVU);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  // -10 as unsigned / 2 = 2147483643
  CHECK((v4_u32)vm.DS[0] == 2147483643u);
}

TEST_CASE("unsigned modulo (MODU)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[32];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, -10);
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 3);
  emit8(code, &k, (v4_u8)v4::Op::MODU);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  // -10 as unsigned % 3
  CHECK((v4_u32)vm.DS[0] == (4294967286u % 3));
}

TEST_CASE("increment (INC)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[32];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 42);
  emit8(code, &k, (v4_u8)v4::Op::INC);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == 43);
}

TEST_CASE("decrement (DEC)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[32];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 42);
  emit8(code, &k, (v4_u8)v4::Op::DEC);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == 41);
}

TEST_CASE("unsigned less than (LTU)")
{
  Vm vm{};
  vm_reset(&vm);

  // Test -1 < 1 (unsigned: 0xFFFFFFFF < 1 = false)
  v4_u8 code[32];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, -1);
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 1);
  emit8(code, &k, (v4_u8)v4::Op::LTU);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == V4_FALSE);  // 0xFFFFFFFF is not < 1 unsigned

  // Test 1 < 10 (unsigned: true)
  vm_reset(&vm);
  k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 1);
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 10);
  emit8(code, &k, (v4_u8)v4::Op::LTU);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm.DS[0] == V4_TRUE);
}

TEST_CASE("unsigned less than or equal (LEU)")
{
  Vm vm{};
  vm_reset(&vm);

  // Test 5 <= 5 (unsigned: true)
  v4_u8 code[32];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 5);
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 5);
  emit8(code, &k, (v4_u8)v4::Op::LEU);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm.DS[0] == V4_TRUE);
}

TEST_CASE("shift left (SHL)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[32];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 3);  // value
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 2);  // shift amount
  emit8(code, &k, (v4_u8)v4::Op::SHL);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == 12);  // 3 << 2 = 12
}

TEST_CASE("shift right logical (SHR)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[32];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, -8);  // 0xFFFFFFF8
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 2);
  emit8(code, &k, (v4_u8)v4::Op::SHR);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  // -8 >> 2 (logical) = 0x3FFFFFFE
  CHECK((v4_u32)vm.DS[0] == 0x3FFFFFFEu);
}

TEST_CASE("shift right arithmetic (SAR)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[32];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, -8);
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 2);
  emit8(code, &k, (v4_u8)v4::Op::SAR);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == -2);  // -8 >> 2 (arithmetic) = -2
}

/* ------------------------------------------------------------------------- */
/* Control flow and compact literals (Commit 3)                              */
/* ------------------------------------------------------------------------- */
TEST_CASE("SELECT instruction (ternary operator)")
{
  Vm vm{};
  vm_reset(&vm);

  // Test flag ? 10 : 20 with flag = true
  v4_u8 code[32];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, V4_TRUE);  // flag
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 20);  // b (false branch)
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 10);  // a (true branch)
  emit8(code, &k, (v4_u8)v4::Op::SELECT);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == 10);  // Selected a

  // Test with flag = false
  vm_reset(&vm);
  k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, V4_FALSE);  // flag
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 20);  // b
  emit8(code, &k, (v4_u8)v4::Op::LIT);
  emit32(code, &k, 10);  // a
  emit8(code, &k, (v4_u8)v4::Op::SELECT);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm.DS[0] == 20);  // Selected b
}

TEST_CASE("compact literals (LIT0, LIT1, LITN1)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {(v4_u8)v4::Op::LIT0, (v4_u8)v4::Op::LIT1, (v4_u8)v4::Op::LITN1,
                  (v4_u8)v4::Op::RET};

  int rc = vm_exec_raw(&vm, code, sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 3);
  CHECK(vm.DS[0] == 0);
  CHECK(vm.DS[1] == 1);
  CHECK(vm.DS[2] == -1);
}

TEST_CASE("compact literals (LIT_U8)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {(v4_u8)v4::Op::LIT_U8, 0xFF, (v4_u8)v4::Op::RET};

  int rc = vm_exec_raw(&vm, code, sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK((v4_u32)vm.DS[0] == 0xFF);  // Unsigned, not sign-extended
}

TEST_CASE("compact literals (LIT_I8)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[] = {(v4_u8)v4::Op::LIT_I8, 0xFF, (v4_u8)v4::Op::RET};

  int rc = vm_exec_raw(&vm, code, sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == -1);  // Signed, sign-extended
}

TEST_CASE("compact literals (LIT_I16)")
{
  Vm vm{};
  vm_reset(&vm);
  v4_u8 code[16];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LIT_I16);
  emit16(code, &k, -1000);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == -1000);
}

/* ------------------------------------------------------------------------- */
/* Local variable support (Commit 4)                                         */
/* ------------------------------------------------------------------------- */
TEST_CASE("local variables (LGET/LSET)")
{
  Vm vm{};
  vm_reset(&vm);

  // Setup: Manually create a local frame in return stack
  // Simulate having 3 locals
  vm.fp = vm.RS;  // Set frame pointer
  vm.RS[0] = 100;
  vm.RS[1] = 200;
  vm.RS[2] = 300;
  vm.rp = vm.RS + 3;

  // Test LGET 0
  v4_u8 code[16];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LGET);
  emit8(code, &k, 0);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 1);
  CHECK(vm.DS[0] == 100);

  // Test LSET 1
  vm_reset(&vm);
  vm.fp = vm.RS;
  vm.RS[0] = 100;
  vm.RS[1] = 200;
  vm.rp = vm.RS + 2;

  vm_ds_push(&vm, 999);  // New value
  k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LSET);
  emit8(code, &k, 1);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm.RS[1] == 999);
}

TEST_CASE("local variables (LTEE)")
{
  Vm vm{};
  vm_reset(&vm);

  vm.fp = vm.RS;
  vm.RS[0] = 0;
  vm.rp = vm.RS + 1;

  vm_ds_push(&vm, 42);
  v4_u8 code[] = {(v4_u8)v4::Op::LTEE, 0, (v4_u8)v4::Op::RET};

  int rc = vm_exec_raw(&vm, code, sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.RS[0] == 42);      // Local was set
  CHECK(vm.DS[0] == 42);      // Value still on stack
  CHECK(vm.sp == vm.DS + 1);  // Stack unchanged
}

TEST_CASE("local variables (LGET0/LGET1)")
{
  Vm vm{};
  vm_reset(&vm);

  vm.fp = vm.RS;
  vm.RS[0] = 111;
  vm.RS[1] = 222;
  vm.rp = vm.RS + 2;

  v4_u8 code[] = {(v4_u8)v4::Op::LGET0, (v4_u8)v4::Op::LGET1, (v4_u8)v4::Op::RET};

  int rc = vm_exec_raw(&vm, code, sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.sp == vm.DS + 2);
  CHECK(vm.DS[0] == 111);
  CHECK(vm.DS[1] == 222);
}

TEST_CASE("local variables (LSET0/LSET1)")
{
  Vm vm{};
  vm_reset(&vm);

  vm.fp = vm.RS;
  vm.RS[0] = 0;
  vm.RS[1] = 0;
  vm.rp = vm.RS + 2;

  vm_ds_push(&vm, 777);
  vm_ds_push(&vm, 888);
  v4_u8 code[] = {(v4_u8)v4::Op::LSET1, (v4_u8)v4::Op::LSET0, (v4_u8)v4::Op::RET};

  int rc = vm_exec_raw(&vm, code, sizeof(code));
  CHECK(rc == 0);
  CHECK(vm.RS[0] == 777);
  CHECK(vm.RS[1] == 888);
}

TEST_CASE("local variables (LINC/LDEC)")
{
  Vm vm{};
  vm_reset(&vm);

  vm.fp = vm.RS;
  vm.RS[0] = 10;
  vm.RS[1] = 20;
  vm.rp = vm.RS + 2;

  v4_u8 code[16];
  int k = 0;
  emit8(code, &k, (v4_u8)v4::Op::LINC);
  emit8(code, &k, 0);
  emit8(code, &k, (v4_u8)v4::Op::LDEC);
  emit8(code, &k, 1);
  emit8(code, &k, (v4_u8)v4::Op::RET);

  int rc = vm_exec_raw(&vm, code, k);
  CHECK(rc == 0);
  CHECK(vm.RS[0] == 11);
  CHECK(vm.RS[1] == 19);
}