Update HACKING.md (#439)

Add the missing `& offset_mask` to `offset_stop of memo`
This commit is contained in:
Yuhang Ji 2024-07-04 22:19:57 +08:00 committed by GitHub
parent 2b2ef525c8
commit 4c4ff13237
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -259,7 +259,7 @@ offset_start of memo = (int16*) LVAL_page[offset_num_rows + (row_id * 2) + 2]
if (row_id = 0)
offset_stop of memo = 2048(jet3) or 4096(jet4)
else
offset_stop of memo = (int16*) LVAL_page[offset_num_row + (row_id * 2)]
offset_stop of memo = (int16*) LVAL_page[offset_num_row + (row_id * 2)] & offset_mask // offset_mask = 0x1fff
```
The length (partial if type 2) for the memo is: