-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathznake.asm
executable file
·59 lines (31 loc) · 962 Bytes
/
znake.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
; /////////////////////////////////////////////////////////////////////////////
; Znake (ZX Spectrum 48K)
; -----------------------------------------------------------------------------
; main.asm
; -----------------------------------------------------------------------------
; Copyright (C) 2016, Chris Wyatt
; All rights reserved
; Distributed under the Apache 2 license (see LICENSE)
; /////////////////////////////////////////////////////////////////////////////
include const.asm
org 0x8080
include im2_routine.asm
org 0x8100
include graphics.asm
include vars.asm
include utils.asm
include draw.asm
include find_free_space.asm
include input.asm
include score.asm
start:
include 0_init.asm
include 1_menu.asm
include 2_game_init.asm
include 3_loop_create_food.asm
include 4_loop_input.asm
include 5_loop_move_head.asm
include 6_loop_move_tail.asm
include 7_loop_collision_detection.asm
include 8_loop_draw_graphics.asm
end start