mirror of
https://github.com/thornAvery/kep-hack.git
synced 2026-02-22 15:12:18 +13:00
Use const_skip and const_next macros for brevity
This commit is contained in:
parent
676a35f76f
commit
3e572b6f48
20 changed files with 544 additions and 2284 deletions
|
|
@ -2,9 +2,10 @@ NAME_LENGTH EQU 11
|
|||
ITEM_NAME_LENGTH EQU 13
|
||||
|
||||
; PrintNumber
|
||||
BIT_MONEY_SIGN EQU 5
|
||||
BIT_LEFT_ALIGN EQU 6
|
||||
BIT_LEADING_ZEROES EQU 7
|
||||
const_def 5
|
||||
const BIT_MONEY_SIGN ; 5
|
||||
const BIT_LEFT_ALIGN ; 6
|
||||
const BIT_LEADING_ZEROES ; 7
|
||||
|
||||
MONEY_SIGN EQU (1 << BIT_MONEY_SIGN)
|
||||
LEFT_ALIGN EQU (1 << BIT_LEFT_ALIGN)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue