blob: e7b845ef149902f6e93238cfd0d1731534fe4cd8 (
plain)
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
|
; Patch for startup (mod37 on pink)
.include 'dpf.inc'
.include 'dpf_int.inc'
.include 'hack.inc'
.area HOME (CODE)
.area BANK0 (CODE, ABS)
.org 0x1330
orl wdtcon,#0x20
mov a,i_G_f
jbc acc.3, usbact ; If this bit is 1, USB is plugged in.
sjmp continue
usbact:
ljmp hack
.org 0x133c
continue:
.org 0x15ac
hack:
clr ea ; No IRQ
mov dptr, #(0x196a - 0x800)
mov a, #cloned_jumptable_offset >> 16;
movx @dptr, a
; Jump into usb main:
mov a,#(53 - 1)
mov dptr,#entry_addr
ljmp tramp_jmp
|