Add tools/ and manual/, move sources to src/
[dpadhero2.git] / src / main.asm
blob6c0304fe8cac22254377899b94c2bd0fd46037b8
2 ; Copyright (C) 2010 Kent Hansen.
4 ; This program is free software; you can redistribute it and/or modify
5 ; it under the terms of the GNU General Public License as published by
6 ; the Free Software Foundation; either version 3 of the License, or
7 ; (at your option) any later version.
9 ; This program is distributed in the hope that it will be useful,
10 ; but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ; GNU General Public License for more details.
14 ; You should have received a copy of the GNU General Public License
15 ; along with this program. If not, see <http://www.gnu.org/licenses/>.
18 .codeseg
20 .extrn set_default_button_mapping:proc
21 .extrn go_to_title_screen:proc
23 .public init
24 .public noop_cycle
26 ; Program entrypoint.
27 .proc init
28 jsr set_defaults
29 jmp go_to_title_screen
30 .endp
32 .proc set_defaults
33 ldx #4
34 jsr set_default_button_mapping
35 ; jsr set_emu_button_mapping
36 ; jsr set_guitar_button_mapping
37 ldx #9
38 jsr set_default_button_mapping
39 ; jsr set_emu_button_mapping
40 ; jsr set_guitar_button_mapping
41 rts
42 .endp
44 .proc noop_cycle
45 rts
46 .endp
48 .end