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
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
|
Sometimes the simplest way to write something in assembly code isn't the best. All of your resources are limited: CPU speed, ROM size, RAM space, register use. You can rewrite code to use those resources more efficiently (sometimes by trading one for another).
Most of these tricks come from [Jeff's GB Assembly Code Tips v1.0](http://www.devrs.com/gb/files/asmtips.txt), [WikiTI's Z80 Optimization page](http://wikiti.brandonw.net/index.php?title=Z80_Optimization), and [z80 Heaven's optimization tutorial](http://z80-heaven.wikidot.com/optimization). (Note that Z80 assembly is *not* the same as GBZ80; it has more registers and some different instructions.)
WikiTI's advice fully applies here:
> Note that the following tricks act much like a [peephole optimizer](https://en.wikipedia.org/wiki/Peephole_optimization) and are the last optimization step: remember to first optimize your algorithm and register allocation before applying any of the following if you really want the fastest speed and the smallest code.
>
> Also note that nearly every trick turns the code less understandable and documenting them is a good idea. You can easily forgot after a while without reading parts of the code.
>
> Be warned that some tricks are not exactly equivalent to the normal way and may have exceptions on their use; comments warn about them. Some tricks apply to other cases, but again you have to be careful.
>
> There are some tricks that are nothing more than the correct use of the available instructions on the Z80. Keeping an [instruction set summary](https://rednex.github.io/rgbds/gbz80.7.html) helps to visualize what you can do during coding.
(There's also a "cheat sheet" [table of instructions](https://gbdev.io/gb-opcodes//optables/classic) summarizing their bytes, cycles, and affected flags, if you don't need a long listing of what each one does.)
## Contents
- [8-bit registers](#8-bit-registers)
- [Set `a` to 0](#set-a-to-0)
- [Increment or decrement `a`](#increment-or-decrement-a)
- [Invert the bits of `a`](#invert-the-bits-of-a)
- [Rotate the bits of `a`](#rotate-the-bits-of-a)
- [Reverse the bits of `a`](#reverse-the-bits-of-a)
- [Set `a` to some constant minus `a`](#set-a-to-some-constant-minus-a)
- [Set `a` to one constant or another depending on the carry flag](#set-a-to-one-constant-or-another-depending-on-the-carry-flag)
- [Increment or decrement `a` when the carry flag is set](#increment-or-decrement-a-when-the-carry-flag-is-set)
- [Divide `a` by 8 (shift `a` right 3 bits)](#divide-a-by-8-shift-a-right-3-bits)
- [Divide `a` by 16 (shift `a` right 4 bits)](#divide-a-by-16-shift-a-right-4-bits)
- [Set `a` to some value plus carry](#set-a-to-some-value-plus-carry)
- [Load from HRAM to `a` or from `a` to HRAM](#load-from-hram-to-a-or-from-a-to-hram)
- [16-bit registers](#16-bit-registers)
- [Multiply `hl` by 2](#multiply-hl-by-2)
- [Add `a` to a 16-bit register](#add-a-to-a-16-bit-register)
- [Subtract an 8-bit constant from a 16-bit register](#subtract-an-8-bit-constant-from-a-16-bit-register)
- [Set a 16-bit register to `a` plus a 16-bit constant](#set-a-16-bit-register-to-a-plus-a-16-bit-constant)
- [Set a 16-bit register to `a` \* 16](#set-a-16-bit-register-to-a--16)
- [Increment or decrement a 16-bit register](#increment-or-decrement-a-16-bit-register)
- [Load from an address to `hl`](#load-from-an-address-to-hl)
- [Exchange two 16-bit registers](#exchange-two-16-bit-registers)
- [Load two constants into a register pair](#load-two-constants-into-a-register-pair)
- [Load a constant into `[hl]`](#load-a-constant-into-hl)
- [Increment or decrement `[hl]`](#increment-or-decrement-hl)
- [Load a constant into `[hl]` and increment or decrement `hl`](#load-a-constant-into-hl-and-increment-or-decrement-hl)
- [Branching (control flow)](#branching-control-flow)
- [Relative jumps](#relative-jumps)
- [Compare `a` to 0](#compare-a-to-0)
- [Compare `a` to 1](#compare-a-to-1)
- [Compare `a` to 255](#compare-a-to-255)
- [Compare `a` to 0 after masking it](#compare-a-to-0-after-masking-it)
- [Test whether `a` is negative (compare `a` to $80)](#test-whether-a-is-negative-compare-a-to-80)
- [Subroutines (functions)](#subroutines-functions)
- [Tail call optimization](#tail-call-optimization)
- [Call `hl`](#call-hl)
- [Inlining](#inlining)
- [Fallthrough](#fallthrough)
- [Conditional fallthrough](#conditional-fallthrough)
- [Call `rst $38` depending on a flag](#call-rst-38-depending-on-a-flag)
- [Jump and lookup tables](#jump-and-lookup-tables)
- [Chain comparisons](#chain-comparisons)
## 8-bit registers
### Set `a` to 0
Don't do:
```asm
ld a, 0 ; 2 bytes, 2 cycles, no changes to flags
```
But do:
```asm
xor a ; 1 byte, 1 cycle, sets flags C to 0 and Z to 1
```
Or do:
```asm
sub a ; 1 byte, 1 cycle, sets flags C to 0 and Z to 1
```
Don't use the optimized versions if you need to preserve flags. As such, `ld a, 0` must be left intact in the code below:
```asm
ld a, [wIsTrainerBattle]
and a ; sets flag Z if [wIsTrainerBattle] is 0
ld a, 0 ; sets a to 0 without affecting Z
jr nz, .is_trainer_battle
```
### Increment or decrement `a`
When possible, avoid doing:
```asm
add 1 ; 2 bytes, 2 cycles; sets carry for -1 to 0 overflow
```
```asm
sub 1 ; 2 bytes, 2 cycles; sets carry for 0 to -1 underflow
```
If you don't need to set the carry flag, then do:
```asm
inc a ; 1 byte, 1 cycle
```
```asm
dec a ; 1 byte, 1 cycle
```
### Invert the bits of `a`
Don't do:
```asm
xor $ff ; 2 bytes, 2 cycles
```
But do:
```asm
cpl ; 1 byte, 1 cycle
```
### Rotate the bits of `a`
Don't do:
```asm
rl a ; 2 bytes, 2 cycles; updates Z and C flags
```
```asm
rlc a ; 2 bytes, 2 cycles; updates Z and C flags
```
```asm
rr a ; 2 bytes, 2 cycles; updates Z and C flags
```
```asm
rrc a ; 2 bytes, 2 cycles; updates Z and C flags
```
But do:
```asm
rla ; 1 byte, 1 cycle; updates C flag
```
```asm
rlca ; 1 byte, 1 cycle; updates C flag
```
```asm
rra ; 1 byte, 1 cycle; updates C flag
```
```asm
rrca ; 1 byte, 1 cycle; updates C flag
```
The exception is if you need to set the zero flag when the operation results in 0 for `a`; the two-byte operations can set `z`, the one-byte operations cannot.
### Reverse the bits of `a`
(This optimization is based on [Retro Programming](http://www.retroprogramming.com/2014/01/fast-z80-bit-reversal.html)).
(The example uses `b` and `c`, but any of `d`, `e`, `h`, or `l` would also work.)
Don't do:
```asm
; 26 bytes, 26 cycles
rept 8
rra
rl b
endr
ld a, b
```
And don't do:
```asm
; 17 bytes, 17 cycles
ld b, a
rlca
rlca
xor b
and $aa
xor b
ld b, a
rlca
rlca
rlca
rrc b
xor b
and $66
xor b
```
But do:
```asm
; 15 bytes, 15 cycles
ld b, a
rlca
rlca
xor b
and $aa
xor b
ld b, a
swap b
xor b
and $33
xor b
rrca
```
Or if you really want to optimize for size over speed, then do:
```asm
; 10 bytes, 59 cycles
ld bc, 8 ; lb bc, 0, 8
.loop
rra
rl b
dec c
jr nz, .loop
ld a, b
```
### Set `a` to some constant minus `a`
Don't do:
```asm
; 4 bytes, 4 cycles
ld b, a
ld a, FOOBAR
sub b
```
But do:
```asm
; 3 bytes, 3 cycles
cpl
add FOOBAR + 1
```
("What's [foobar](https://en.wikipedia.org/wiki/Foobar)?")
### Set `a` to one constant or another depending on the carry flag
(The example sets `a` to `CVAL` if the carry flag is set (`c`), or `NCVAL` is the carry flag is not set (`nc`).)
Don't do:
```asm
; 6 bytes, 6 or 7 cycles
ld a, CVAL
jr c, .carry
ld a, NCVAL
.carry
```
And don't do:
```asm
; 6 bytes, 6 or 7 cycles
ld a, NCVAL
jr nc, .no_carry
ld a, CVAL
.no_carry
```
And if either is 0, don't do:
```asm
; 5 bytes, 5 or 6 cycles
ld a, CVAL ; nor NCVAL
jr c, .carry ; nor jr nc
xor a
.carry
```
And if either is 1 more or less than the other, don't do:
```asm
; 5 bytes, 5 or 6 cycles
ld a, CVAL ; nor NCVAL
jr c, .carry ; nor jr nc
inc a ; nor dec a
.carry
```
Instead use `sbc a`, which copies the carry flag to all bits of `a`. Thus do:
```asm
; 5 bytes, 5 cycles
sbc a ; if carry, then $ff, else 0
and CVAL - NCVAL ; $ff becomes CVAL - NCVAL, 0 stays 0
add NCVAL ; CVAL - NCVAL becomes CVAL, 0 becomes NCVAL
```
Or do:
```asm
; 5 bytes, 5 cycles
sbc a ; if carry, then $ff, else 0
and CVAL ^ NCVAL ; $ff becomes CVAL ^ NCVAL, 0 stays 0
xor NCVAL ; CVAL ^ NCVAL becomes CVAL, 0 becomes NCVAL
```
And if certain conditions apply, then do something more efficient:
<table>
<tr>
<th>If this...</th>
<th>...then do:</th>
</tr>
<tr><td>
`CVAL` == $FF (aka −1) <br>and<br> `NCVAL` == 0
</td><td>
```asm
; 1 byte, 1 cycle
sbc a ; if carry, then $ff, else 0
```
</td></tr>
<tr><td>
`CVAL` == 0 <br>and<br> `NCVAL` == $FF (aka −1)
</td><td>
```asm
; 2 bytes, 2 cycles
ccf ; invert carry flag
sbc a ; if originally carry, then 0, else $ff
```
</td></tr>
<tr><td>
`CVAL` == 0 <br>and<br> `NCVAL` == 1
</td><td>
```asm
; 2 bytes, 2 cycles
sbc a ; if carry, then $ff aka -1, else 0
inc a ; -1 becomes 0, 0 becomes 1
```
</td></tr>
<tr><td>
`CVAL` == $FF (aka −1)
</td><td>
```asm
; 3 bytes, 3 cycles
sbc a ; if carry, then $ff, else 0
or NCVAL ; $ff stays $ff, $00 becomes NCVAL
```
</td></tr>
<tr><td>
`NCVAL` == 0
</td><td>
```asm
; 3 bytes, 3 cycles
sbc a ; if carry, then $ff, else 0
and CVAL ; $ff becomes CVAL, 0 stays 0
```
</td></tr>
<tr><td>
`CVAL` == `NCVAL - 1`, <br>aka<br> `CVAL + 1` == `NCVAL`
</td><td>
```asm
; 3 bytes, 3 cycles
sbc a ; if carry, then $ff aka -1, else 0
add NCVAL ; -1 becomes NCVAL - 1 aka CVAL, 0 becomes NCVAL
```
</td></tr>
<tr><td>
`CVAL` == `NCVAL - 2`, <br>aka<br> `CVAL + 2` == `NCVAL`
</td><td>
```asm
; 3 bytes, 3 cycles
sbc a ; if carry, then $ff aka -1, else 0; doesn't change the carry flag
sbc -NCVAL ; -1 becomes NCVAL - 2 aka CVAL, 0 becomes NCVAL
```
</td></tr>
<tr><td>
`CVAL` == 0
</td><td>
```asm
; 4 bytes, 4 cycles
ccf ; invert carry flag
sbc a ; if originally carry, then 0, else $ff
and NCVAL ; 0 stays 0, $ff becomes NCVAL
```
</td></tr>
<tr><td>
`NCVAL` == $FF (aka −1)
</td><td>
```asm
; 4 bytes, 4 cycles
ccf ; invert carry flag
sbc a ; if originally carry, then 0, else $ff
or CVAL ; $00 becomes CVAL, $ff stays $ff
```
</td></tr>
<tr><td>
`CVAL` == `NCVAL + 1`, <br>aka<br> `CVAL - 1` == `NCVAL`
</td><td>
```asm
; 4 bytes, 4 cycles
ccf ; invert carry flag
sbc a ; if originally carry, then 0, else $ff aka -1
add CVAL ; -1 becomes CVAL - 1 aka NCVAL, 0 becomes CVAL
```
</td></tr>
<tr><td>
`CVAL` == `NCVAL + 2`, <br>aka<br> `CVAL - 2` == `NCVAL`
</td><td>
```asm
; 4 bytes, 4 cycles
ccf ; invert carry flag
sbc a ; if carry, then 0, else $ff aka -1; doesn't change the carry flag
sbc -CVAL ; -1 becomes CVAL - 2 aka NCVAL, 0 becomes CVAL
```
</td></tr>
</table>
### Increment or decrement `a` when the carry flag is set
Don't do:
```asm
; 3 bytes, 3 cycles
jr nc, .ok
inc a
.ok
```
```asm
; 3 bytes, 3 cycles
jr nc, .ok
dec a
.ok
```
But do:
```asm
adc 0 ; 2 bytes, 2 cycles
```
```asm
sbc 0 ; 2 bytes, 2 cycles
```
### Divide `a` by 8 (shift `a` right 3 bits)
Don't do:
```asm
; 6 bytes, 9 cycles
; (15 bytes, at least 21 cycles, counting the definition of SimpleDivide)
ld c, 8 ; divisor
call SimpleDivide
ld a, b ; quotient
```
And don't do:
```asm
; 6 bytes, 6 cycles
srl a
srl a
srl a
```
But do:
```asm
; 5 bytes, 5 cycles
rrca
rrca
rrca
and %00011111
```
### Divide `a` by 16 (shift `a` right 4 bits)
Don't do:
```asm
; 6 bytes, 9 cycles
; (15 bytes, at least 21 cycles, counting the definition of SimpleDivide)
ld c, 16 ; divisor
call SimpleDivide
ld a, b ; quotient
```
And don't do:
```asm
; 8 bytes, 8 cycles
srl a
srl a
srl a
srl a
```
But do:
```asm
; 4 bytes, 4 cycles
swap a
and $f
```
### Set `a` to some value plus carry
(The example uses `b` and `c`, but any registers besides `a` would also work, including `[hl]`.)
Don't do:
```asm
; 4 bytes, 4 cycles
ld b, a
ld a, c
adc 0
```
And don't do:
```asm
; 4 bytes, 4 cycles
ld b, a
ld a, 0
adc c
```
But do:
```asm
; 3 bytes, 3 cycles
ld b, a
adc c
sub b
```
Also, don't do:
```asm
; 5 bytes, 5 cycles
ld b, a
ld a, N
adc 0
```
And don't do:
```asm
; 5 bytes, 5 cycles
ld b, a
ld a, 0
adc N
```
But do:
```asm
; 4 bytes, 4 cycles
ld b, a
adc N
sub b
```
### Load from HRAM to `a` or from `a` to HRAM
Don't do:
```asm
ld a, [hFoo] ; 3 bytes, 4 cycles
```
```asm
ld [hFoo], a ; 3 bytes, 4 cycles
```
But do:
```asm
ldh a, [hFoo] ; 2 bytes, 3 cycles
```
```asm
ldh [hFoo], a ; 2 bytes, 3 cycles
```
## 16-bit registers
### Multiply `hl` by 2
Don't do:
```asm
; 4 bytes, 4 cycles
sla l
rl h
```
But do:
```asm
add hl, hl ; 1 byte, 2 cycles
```
### Add `a` to a 16-bit register
(The example uses `hl`, but `bc` or `de` would also work.)
Don't do:
```asm
; 6 bytes, 6 cycles
add l
ld l, a
ld a, 0
adc h
ld h, a
```
and don't do:
```asm
; 6 bytes, 6 cycles
add l
ld l, a
ld a, h
adc 0
ld h, a
```
and don't do:
```asm
; 5 bytes, 5 or 6 cycles
add l
ld l, a
jr nc, .no_carry
inc h
.no_carry
```
But do:
```asm
; 5 bytes, 5 cycles
add l
ld l, a
adc h
sub l
ld h, a
```
Or if you can spare another 16-bit register and want to optimize for size over speed, do:
```asm
; 4 bytes, 5 cycles
ld d, 0
ld e, a
add hl, de
```
### Subtract an 8-bit constant from a 16-bit register
(The example uses `hl`, but `bc` or `de` would also work.)
Don't do:
```asm
; 8 bytes, 8 cycles
ld a, l
sub FOO
ld l, a
ld a, h
sbc 0
ld h, a
```
But do:
```asm
; 7 bytes, 7 or 8 cycles
ld a, l
sub FOO
ld l, a
jr nc, .no_carry
dec h
.no_carry
```
Or if you can spare another 16-bit register, do:
```asm
; 4 bytes, 5 cycles
ld de, -FOO
add hl, de
```
### Set a 16-bit register to `a` plus a 16-bit constant
(The example uses `hl`, but `bc` or `de` would also work.)
Don't do:
```asm
; 7 bytes, 8 cycles; uses another 16-bit register
ld e, a
ld d, 0
ld hl, Address
add hl, de
```
And don't do:
```asm
; 8 bytes, 8 cycles
ld hl, Address
add l
ld l, a
adc h
sub l
ld h, a
```
And don't do:
```asm
; 8 bytes, 7 or 8 cycles
ld h, HIGH(Address)
add LOW(Address)
ld l, a
jr nc, .no_carry
inc h
.no_carry
```
But do:
```asm
; 7 bytes, 7 cycles
add LOW(Address)
ld l, a
adc HIGH(Address)
sub l
ld h, a
```
### Set a 16-bit register to `a` \* 16
(The example uses `hl`, but `bc` or `de` would also work.)
You can do:
```asm
; 7 bytes, 11 cycles
ld l, a
ld h, 0
add hl, hl
add hl, hl
add hl, hl
add hl, hl
```
```asm
; 7 bytes, 11 cycles
ld l, a
ld h, 0
rept 4
add hl, hl
endr
```
But if `a` is definitely small enough, and its value can be changed, then do:
```asm
; 7 bytes, 10 cycles; sets a = a * 2; requires a < $80
add a
ld l, a
ld h, 0
add hl, hl
add hl, hl
add hl, hl
```
```asm
; 7 bytes, 9 cycles; sets a = a * 4; requires a < $40
add a
add a
ld l, a
ld h, 0
add hl, hl
add hl, hl
```
```asm
; 7 bytes, 8 cycles; sets a = a * 8; requires a < $20
add a
add a
add a
ld l, a
ld h, 0
add hl, hl
```
```asm
; 5 bytes, 5 cycles; sets a = a * 16; requires a < $10
swap a
ld l, a
ld h, 0
```
Or if the value of `a` can be changed and you want to optimize for speed over size, do:
```asm
; 8 bytes, 8 cycles; sets a = l
swap a
ld l, a
and $f
ld h, a
xor l
ld l, a
```
Or do:
```asm
; 8 bytes, 8 cycles; sets a = h
swap a
ld h, a
and $f0
ld l, a
xor h
ld h, a
```
### Increment or decrement a 16-bit register
When possible, avoid doing:
```asm
inc hl ; 1 byte, 2 cycles
```
```asm
dec hl ; 1 byte, 2 cycles
```
If the low byte *definitely* won't overflow, then do:
```asm
inc l ; 1 byte, 1 cycle
```
```asm
dec l ; 1 byte, 1 cycle
```
This is applicable, for instance, if you're reading a data table via `hl` one byte at a time, it has no more than 256 entries, and it's in its own `SECTION` which has been `ALIGN`ed to 8 bits. It's unlikely to apply to pokecrystal's existing systems.
### Load from an address to `hl`
Don't do:
```asm
; 8 bytes, 10 cycles
ld a, [Address] ; LSB first
ld l, a
ld a, [Address+1]
ld h, a
```
But do:
```asm
; 6 bytes, 8 cycles
ld hl, Address
ld a, [hli]
ld h, [hl]
ld l, a
```
And don't do:
```asm
; 8 bytes, 10 cycles
ld a, [Address] ; MSB first
ld h, a
ld a, [Address+1]
ld l, a
```
But do:
```asm
; 6 bytes, 8 cycles
ld hl, Address
ld a, [hli]
ld l, [hl]
ld h, a
```
### Exchange two 16-bit registers
(The example uses `hl` and `de`, but any pair of `bc`, `de`, or `hl` would also work.)
If you care about speed:
```asm
; 6 bytes, 6 cycles
ld a, d
ld d, h
ld h, a
ld a, e
ld e, l
ld l, a
```
If you care about size:
```asm
; 4 bytes, 9 cycles
push de
ld d, h
ld e, l
pop hl
```
### Load two constants into a register pair
(The example uses `bc`, but `hl` or `de` would also work.)
Don't do:
```asm
; 4 bytes, 4 cycles
ld b, FOO
ld c, BAR
```
But do:
```asm
ld bc, FOO << 8 | BAR ; 3 bytes, 3 cycles
```
Or better, use the `lb` macro in [macros/code.asm](../blob/master/macros/code.asm):
```asm
lb bc, FOO, BAR ; 3 bytes, 3 cycles
```
### Load a constant into `[hl]`
Don't do:
```asm
; 3 bytes, 4 cycles
ld a, FOOBAR
ld [hl], a
```
But do:
```asm
ld [hl], FOOBAR ; 2 bytes, 3 cycles
```
### Increment or decrement `[hl]`
Don't do:
```asm
; 3 bytes, 5 cycles
ld a, [hl]
inc a
ld [hl], a
```
```asm
; 3 bytes, 5 cycles
ld a, [hl]
dec a
ld [hl], a
```
But do:
```asm
inc [hl] ; 1 bytes, 3 cycles
```
```asm
dec [hl] ; 1 bytes, 3 cycles
```
### Load a constant into `[hl]` and increment or decrement `hl`
Don't do:
```asm
; 2 bytes, 4 cycles
ld [hl], a
inc hl
```
```asm
; 2 bytes, 4 cycles
ld [hl], a
dec hl
```
But do:
```asm
ld [hli], a ; 1 bytes, 2 cycles
```
```asm
ld [hld], a ; 1 bytes, 2 cycles
```
## Branching (control flow)
### Relative jumps
Don't do:
```asm
jp Somewhere ; 3 bytes, 4 cycles
```
But do:
```asm
jr Somewhere ; 2 bytes, 3 cycles
```
This only applies if `Somewhere` is within ±127 bytes of the jump.
### Compare `a` to 0
Don't do:
```asm
cp 0 ; 2 bytes, 2 cycles
```
And don't do:
```asm
or 0 ; 2 bytes, 2 cycles
```
And don't do:
```asm
and $ff ; 2 bytes, 2 cycles
```
But do:
```asm
or a ; 1 byte, 1 cycle
```
Or do:
```asm
and a ; 1 byte, 1 cycle
```
### Compare `a` to 1
```asm
cp 1 ; 2 bytes, 2 cycles
```
If you don't care about carry or the value in `a`:
```asm
dec a ; 1 byte, 1 cycle, decrements a
```
Note that you can still do `inc a` afterwards, which is one cycle faster if the jump is taken. Compare:
```asm
cp 1
jr z, .equals1
```
with:
```asm
dec a
jr z, .equals1
inc a
```
### Compare `a` to 255
(255, or $FF in hexadecimal, is the same as −1 due to [two's complement](https://en.wikipedia.org/wiki/Two%27s_complement).)
```asm
cp $ff ; 2 bytes, 2 cycles
```
If you don't care about carry or the value in `a`:
```asm
inc a ; 1 byte, 1 cycle, increments a
```
Note that you can still do `dec a` afterwards, which is one cycle faster if the jump is taken. Compare:
```asm
cp $ff
jr z, .equals255
```
with:
```asm
inc a
jr z, .equals255
dec a
```
### Compare `a` to 0 after masking it
Don't do:
```asm
; 3 bytes, 3 cycles; sets zero flag if a == 0
and MASK
and a
```
But do:
```asm
and MASK ; 2 bytes, 2 cycles; sets zero flag if a == 0
```
### Test whether `a` is negative (compare `a` to $80)
If you don't need to preserve the value in `a`, then don't do:
```asm
; 4 bytes, 4/5 cycles
cp $80
jr nc, .negative
```
And don't do:
```asm
; 4 bytes, 4/5 cycles
bit 7, a
jr nz, .negative
```
Instead, do:
```asm
; 3 bytes, 3/4 cycles
rlca
jr c, .negative
```
## Subroutines (functions)
### Tail call optimization
Don't do:
```asm
; 4 bytes, 10 cycles
call Function
ret
```
But do:
```asm
jp Function ; 3 bytes, 4 cycles
```
### Call `hl`
Don't do:
```asm
; 5 bytes, 8 cycles
(some code)
ld de, .return
push de
jp hl
.return:
(some more code)
```
But do:
```asm
; 3 bytes, 6 cycles
; (4 bytes, 7 cycles, counting the definition of _hl_)
(some code)
call _hl_
(some more code)
```
`_hl_` is a routine already defined in [home/call_regs.asm](../blob/master/home/call_regs.asm):
```asm
_hl_::
jp hl
```
### Inlining
Don't do:
```asm
; 4 additional bytes, 10 additional cycles
call GetOffset
...
GetOffset:
(some code)
ret
```
if `GetOffset` is only called a handful of times. Instead, do:
```asm
; GetOffset
(some code)
```
You can set `(some code)` apart with blank lines and put a comment on top to make its self-contained nature clear without the extra `call` and `ret`.
### Fallthrough
Don't do:
```asm
...
call Function
ret
Function:
(some code)
ret
```
And don't do:
```asm
...
jp Function
Function:
(some code)
ret
```
But do:
```asm
...
; fallthrough
Function:
(some code)
ret
```
Fallthrough is what you get when you combine inlining with tail calls. You can still `call Function` elsewhere, but one tail call can be optimized into a fallthrough.
## Conditional fallthrough
(The example uses `z`, but `nz`, `c`, or `nc` would also work.)
Don't do:
```asm
(some code)
jr z, .foo
jr .bar
.foo
(foo code)
.bar
(bar code)
```
But do:
```asm
(some code)
jr nz, .bar
; fallthrough
.foo
(foo code)
.bar
(bar code)
```
### Call `rst $38` depending on a flag
(The example uses `z`, but `nz`, `c`, or `nc` would also work.)
Don't do:
```asm
; 5 bytes, 3 or 14 cycles
call z, RstVector38
...
RstVector38:
rst $38
ret
```
And don't do:
```asm
; 3 bytes, 3 or 6 cycles
jr nz, .no_rst_38
rst $38
.no_rst_38
...
```
But do:
```asm
; 2 bytes, 2 or 7 cycles
jr z, @ + 1 ; the byte for @ + 1 is $ff, which is the opcode for rst $38
...
```
(The label `@` evaluates to the current `pc` value, which in `jr z, @ + 1` is right before the `jr` instruction. The instruction consists of two bytes, the opcode and the relative offset. `@ + 1` evaluates to in-between those two bytes. The `jr` instruction encodes its offset relative to the *end* of the instruction, i.e. the *next* `pc` value after the instruction has been read, so the relative offset is `-1`, aka `$ff`.)
## Jump and lookup tables
### Chain comparisons
Don't do:
```asm
cp 1
jr z, .equals1
cp 2
jr z, .equals2
cp 3
jr z, .equals3
...
```
But do:
```asm
dec a
jr z, .equals1
dec a
jr z, .equals2
dec a
jr z, .equals3
...
```
Or do:
```asm
dec a
ld hl, .jumptable
ld e, a
ld d, 0
add hl, de
add hl, de
ld a, [hli]
ld h, [hl]
ld l, a
jp hl
.jumptable:
dw .equals1
dw .equals2
dw .equals3
...
```
Or better, do:
```asm
dec a
ld hl, .jumptable
rst JumpTable
...
.jumptable:
dw .equals1
dw .equals2
dw .equals3
...
```
|