-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path04-operators.asm
40 lines (33 loc) · 996 Bytes
/
04-operators.asm
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
; Example that is used in following article:
; Kouzlo minimalismu potřetí: vývoj her a dem pro slavné ZX Spectrum
; https://www.root.cz/clanky/kouzlo-minimalismu-potreti-vyvoj-her-a-dem-pro-slavne-zx-spectrum/
;
; This article is part of series:
; "Vývoj pro slavné ZX Spectrum"
; https://www.root.cz/serialy/vyvoj-pro-slavne-zx-spectrum/
;
; Repository:
; https://github.com/tisnik/8bit-fame
;
; Example #4:
; Operators in assembly sources
;
; This source code is available at:
; https://github.com/tisnik/8bit-fame/blob/master/Speccy-asm/04-operators.asm
attribute_adr equ $5800
entry_point equ $8000
blink_bit equ %10000000
intensity_bit equ %01000000
black_color equ %000
blue_color equ %001
red_color equ %010
magenta_color equ %011
green_color equ %100
cyan_color equ %101
yellow_color equ %110
white_color equ %111
org entry_point
start:
ld a,blink_bit | intensity_bit | (blue_color << 3) | white_color
ld (attribute_adr),a
ret