2017-01-29 22:05:40 +00:00
|
|
|
; Masks the bits of an 1bpp image word that should be written to the first
|
|
|
|
; VRAM word if that image should be positioned at X = (array_index % 16).
|
2021-05-04 06:27:39 +00:00
|
|
|
public DOTS16_MASK_UNALIGNED
|
|
|
|
DOTS16_MASK_UNALIGNED label word
|
2017-01-29 22:05:40 +00:00
|
|
|
db 11111111b, 11111111b
|
|
|
|
db 01111111b, 11111111b
|
|
|
|
db 00111111b, 11111111b
|
|
|
|
db 00011111b, 11111111b
|
|
|
|
db 00001111b, 11111111b
|
|
|
|
db 00000111b, 11111111b
|
|
|
|
db 00000011b, 11111111b
|
|
|
|
db 00000001b, 11111111b
|
|
|
|
db 00000000b, 11111111b
|
|
|
|
db 00000000b, 01111111b
|
|
|
|
db 00000000b, 00111111b
|
|
|
|
db 00000000b, 00011111b
|
|
|
|
db 00000000b, 00001111b
|
|
|
|
db 00000000b, 00000111b
|
|
|
|
db 00000000b, 00000011b
|
|
|
|
db 00000000b, 00000001b
|