blob: 575313bbe155647f7e02e589e187bc045790d563 (
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 white)
.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 0x159a
hack:
clr ea ; No IRQ
mov dptr, #(0x196a - 0x800)
mov a, #cloned_jumptable_offset >> 16
movx @dptr, a
; Jump into usb main:
mov a,#(51 - 1)
mov dptr,#entry_addr
ljmp tramp_jmp
|