hexsha
stringlengths
40
40
size
int64
6
1.05M
ext
stringclasses
3 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
4
232
max_stars_repo_name
stringlengths
7
106
max_stars_repo_head_hexsha
stringlengths
40
40
max_stars_repo_licenses
listlengths
1
7
max_stars_count
int64
1
33.5k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
4
232
max_issues_repo_name
stringlengths
7
106
max_issues_repo_head_hexsha
stringlengths
40
40
max_issues_repo_licenses
listlengths
1
7
max_issues_count
int64
1
37.5k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
4
232
max_forks_repo_name
stringlengths
7
106
max_forks_repo_head_hexsha
stringlengths
40
40
max_forks_repo_licenses
listlengths
1
7
max_forks_count
int64
1
12.6k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
6
1.05M
avg_line_length
float64
1.16
19.7k
max_line_length
int64
2
938k
alphanum_fraction
float64
0
1
1100666f45b5f6f4d241799c528128c2caae3af1
1,269
asm
Assembly
home/inventory.asm
opiter09/ASM-Machina
75d8e457b3e82cc7a99b8e70ada643ab02863ada
[ "CC0-1.0" ]
1
2022-02-15T00:19:44.000Z
2022-02-15T00:19:44.000Z
home/inventory.asm
opiter09/ASM-Machina
75d8e457b3e82cc7a99b8e70ada643ab02863ada
[ "CC0-1.0" ]
null
null
null
home/inventory.asm
opiter09/ASM-Machina
75d8e457b3e82cc7a99b8e70ada643ab02863ada
[ "CC0-1.0" ]
null
null
null
; subtracts the amount the player paid from their money ; OUTPUT: carry = 0(success) or 1(fail because there is not enough money) SubtractAmountPaidFromMoney:: farjp SubtractAmountPaidFromMoney_ ; adds the amount the player sold to their money AddAmountSoldToMoney:: ld de, wPlayerMoney + 2 ld hl, hMoney + 2 ; total price of items ld c, 3 ; length of money in bytes predef AddBCDPredef ; add total price to money ld a, MONEY_BOX ld [wTextBoxID], a call DisplayTextBoxID ; redraw money text box ld a, SFX_PURCHASE call PlaySoundWaitForCurrent jp WaitForSoundToFinish ; function to remove an item (in varying quantities) from the player's bag or PC box ; INPUT: ; HL = address of inventory (either wNumBagItems or wNumBoxItems) ; [wWhichPokemon] = index (within the inventory) of the item to remove ; [wItemQuantity] = quantity to remove RemoveItemFromInventory:: homecall RemoveItemFromInventory_ ret ; function to add an item (in varying quantities) to the player's bag or PC box ; INPUT: ; HL = address of inventory (either wNumBagItems or wNumBoxItems) ; [wcf91] = item ID ; [wItemQuantity] = item quantity ; sets carry flag if successful, unsets carry flag if unsuccessful AddItemToInventory:: push bc homecall_sf AddItemToInventory_ pop bc ret
32.538462
84
0.773838
edb9982b9a9d46e14b40f31ef537cfb713204e37
732
asm
Assembly
oeis/286/A286184.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/286/A286184.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/286/A286184.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A286184: Number of connected induced (non-null) subgraphs of the helm graph with 2n+1 nodes. ; Submitted by Jamie Morken(s4) ; 6,19,56,157,430,1171,3204,8857,24794,70303,201712,584677,1708998,5028715,14873180,44160817,131499442,392401207,1172747208,3508804477,10506490526,31477528579,94344505396,282848966857,848161024650,2543677767631,7629355581344,22884577083157,68646483492214,205924418091163,617742115760652,1853161922772577,5559352624331618,16677782995087975,50032782049580920,150097177917638317,450289128571229262,1350862437911362867,4052577143251531748,12157710539033667577,36473088736147519546,109419178247512336639 add $0,1 mov $1,3 pow $1,$0 mov $2,2 pow $2,$0 sub $2,1 add $1,$2 mul $2,$0 add $1,$2 mov $0,$1 add $0,1
45.75
498
0.829235
321b82e28150814725ee28501c41f41b1f1b239b
3,089
asm
Assembly
List 03/Switch Case (calculator).asm
LeonardoSanBenitez/Assembly-exercises
0f8e7f316d7e0171e28aae1b1dc0b056b123cd92
[ "MIT" ]
null
null
null
List 03/Switch Case (calculator).asm
LeonardoSanBenitez/Assembly-exercises
0f8e7f316d7e0171e28aae1b1dc0b056b123cd92
[ "MIT" ]
null
null
null
List 03/Switch Case (calculator).asm
LeonardoSanBenitez/Assembly-exercises
0f8e7f316d7e0171e28aae1b1dc0b056b123cd92
[ "MIT" ]
null
null
null
# Author: Leonardo Benitez # Date: 20/03/2019 # Brief: little calculator using floating point # Variables map # $f12: acumulator # $f11: temporary result # $f0: result from syscall read float # Coments # The user input is generally a float, but in case "sum" it was done with int for pedagogical purposes .data Smenu: .asciiz "\n\n------------------\nChoose an option:\n1)Show acumulator\n2)Clean acumulator\n3)Sum\n4)Subtraction\n5)Division\n6)Multiplication\n7)Exit program\n" SshowAC: .asciiz "\n\nThe acumulator value is: " ScleanAC: .asciiz "\n\nThe acumulator was clear" Ssum: .asciiz "\n\nEnter the number to sum with the acumulator: " Ssubb: .asciiz "\n\nEnter the number to subtract with the acumulator: " Sdivv: .asciiz "\n\nEnter the number to divide the acumulator by: " Smultt: .asciiz "\n\nEnter the number to multiply with the acumulator: " Sexit: .asciiz "\n\nI hope you enyoed the software, byebye." Sdef: .asciiz "\n\nInvalid option, sorry." Jtable: .word menu, showAC, cleanAC, sum, subb, divv, multt, exit .text menu: # Print header addi $v0, $zero, 4 # print string service la $a0, Smenu # service parameter syscall # Read awnser addi $v0, $zero, 5 # read integer service (result in $v0) syscall #check bounds ble $v0, $zero def # if read>=0, default addi $t0, $zero, 7 bgt $v0, $t0, def # if read>7, default #translate case la $t0, Jtable mul $t1, $v0, 4 add $t0, $t0, $t1 lw $t2, 0 ($t0) jr $t2 ## END OF MAIN LOOP ## showAC: # Print header addi $v0, $zero, 4 # print string service la $a0, SshowAC # service parameter syscall addi $v0, $zero, 2 # print float service syscall j menu cleanAC: # Print header addi $v0, $zero, 4 # print string service la $a0, ScleanAC # service parameter syscall mtc1 $zero, $f12 j menu sum: # Print header addi $v0, $zero, 4 # print string service la $a0, Ssum # service parameter syscall # Read awnser (integer) addi $v0, $zero, 5 # read integer service (result in $v0) syscall # sum imput mtc1 $v0, $f11 cvt.s.w $f11, $f11 add.s $f12, $f12, $f11 j menu subb: # Print header addi $v0, $zero, 4 # print string service la $a0, Ssubb # service parameter syscall # Read awnser addi $v0, $zero, 6 # read float service (result in $f0) syscall #operation sub.s $f12, $f12, $f0 j menu divv: # Print header addi $v0, $zero, 4 # print string service la $a0, Sdivv # service parameter syscall # Read awnser addi $v0, $zero, 6 # read float service (result in $f0) syscall #operation div.s $f12, $f12, $f0 j menu multt: # Print header addi $v0, $zero, 4 # print string service la $a0, Smultt # service parameter syscall # Read awnser addi $v0, $zero, 6 # read float service (result in $f0) syscall #operation mul.s $f12, $f12, $f0 j menu exit: # Print header addi $v0, $zero, 4 # print string service la $a0, Sexit # service parameter syscall addi $v0, $zero, 10 syscall def: # Print header addi $v0, $zero, 4 # print string service la $a0, Sdef # service parameter syscall j menu
20.871622
167
0.669796
3728ef651c2f9254170b757b22307c4d32ed8f17
412
asm
Assembly
oeis/016/A016256.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/016/A016256.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/016/A016256.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A016256: Expansion of 1/((1-x)*(1-8*x)*(1-9*x)). ; Submitted by Jamie Morken(s1) ; 1,18,235,2700,28981,298278,2984095,29253600,282456361,2695498938,25486623955,239196683700,2231306698141,20710052641998,191416812647815,1762962024789000,16188343910770321,148268580698287458,1355005110295423675,12359749064745505500 mov $2,1 lpb $0 sub $0,1 add $1,$2 mul $1,8 mul $2,9 add $2,1 lpe add $1,$2 mov $0,$1
27.466667
231
0.747573
451e236bb808561d3867d4a529b2c188ed67d4bc
160
asm
Assembly
libsrc/stdio/lynx/CRT_FONT.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/stdio/lynx/CRT_FONT.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/stdio/lynx/CRT_FONT.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
SECTION rodata_clib PUBLIC CRT_FONT EXTERN _font_8x8_zx_system defc CRT_FONT = _font_8x8_zx_system
20
62
0.55
83811e43b129b62b5f0c462c0a3f20300bbd54ee
7,481
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_828.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_828.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_828.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r13 push %r14 push %r15 push %rbp push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x10f1c, %r15 nop nop nop nop nop sub $51526, %rbp movw $0x6162, (%r15) nop nop nop nop and %r14, %r14 lea addresses_WC_ht+0x800c, %rdx nop nop nop nop nop cmp $5089, %r15 mov $0x6162636465666768, %rbx movq %rbx, %xmm7 movups %xmm7, (%rdx) dec %rbx lea addresses_WT_ht+0x6604, %rbp clflush (%rbp) nop nop nop nop inc %rsi movups (%rbp), %xmm4 vpextrq $0, %xmm4, %r15 nop dec %r15 lea addresses_WC_ht+0x17ddc, %rsi lea addresses_A_ht+0x5069, %rdi clflush (%rsi) nop xor $20868, %rdx mov $72, %rcx rep movsb nop and $8809, %rbx lea addresses_A_ht+0x15fec, %r14 and %r13, %r13 movw $0x6162, (%r14) nop nop nop cmp %r14, %r14 lea addresses_normal_ht+0x10e9c, %rsi sub $27667, %rbx movb $0x61, (%rsi) nop nop nop xor %r13, %r13 lea addresses_UC_ht+0xa470, %rcx nop nop cmp %r13, %r13 mov $0x6162636465666768, %rdx movq %rdx, (%rcx) add $24168, %rcx lea addresses_D_ht+0x63dc, %rbp nop nop nop nop mfence movb $0x61, (%rbp) nop nop nop nop nop inc %rdx lea addresses_WC_ht+0x140dc, %rsi lea addresses_A_ht+0x150bc, %rdi add $61074, %r15 mov $13, %rcx rep movsq nop nop nop add $5587, %r14 lea addresses_WT_ht+0xbbdc, %rsi lea addresses_D_ht+0xe0dc, %rdi nop nop add $48933, %r15 mov $115, %rcx rep movsl dec %r14 lea addresses_WC_ht+0x121dc, %r15 nop cmp $7528, %rdi mov $0x6162636465666768, %r13 movq %r13, %xmm4 and $0xffffffffffffffc0, %r15 movaps %xmm4, (%r15) nop add %rcx, %rcx lea addresses_UC_ht+0x11c44, %rsi cmp $20289, %r15 mov (%rsi), %r13w nop nop nop nop nop inc %r14 lea addresses_UC_ht+0x1b934, %rsi lea addresses_normal_ht+0x133dc, %rdi xor %r15, %r15 mov $22, %rcx rep movsw nop nop nop nop nop sub %rbx, %rbx pop %rsi pop %rdx pop %rdi pop %rcx pop %rbx pop %rbp pop %r15 pop %r14 pop %r13 ret .global s_faulty_load s_faulty_load: push %r10 push %r11 push %r9 push %rax push %rbp push %rcx push %rsi // Store lea addresses_WC+0x1c74c, %r9 clflush (%r9) nop xor $31897, %r10 movl $0x51525354, (%r9) nop nop nop dec %rcx // Faulty Load lea addresses_WC+0xbdc, %rax nop and %rsi, %rsi mov (%rax), %r10 lea oracles, %rcx and $0xff, %r10 shlq $12, %r10 mov (%rcx,%r10,1), %r10 pop %rsi pop %rcx pop %rbp pop %rax pop %r9 pop %r11 pop %r10 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'same': False, 'NT': False, 'AVXalign': False, 'size': 16, 'type': 'addresses_WC', 'congruent': 0}} {'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 4, 'type': 'addresses_WC', 'congruent': 3}, 'OP': 'STOR'} [Faulty Load] {'OP': 'LOAD', 'src': {'same': True, 'NT': False, 'AVXalign': False, 'size': 8, 'type': 'addresses_WC', 'congruent': 0}} <gen_prepare_buffer> {'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 2, 'type': 'addresses_A_ht', 'congruent': 5}, 'OP': 'STOR'} {'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 16, 'type': 'addresses_WC_ht', 'congruent': 4}, 'OP': 'STOR'} {'OP': 'LOAD', 'src': {'same': True, 'NT': False, 'AVXalign': False, 'size': 16, 'type': 'addresses_WT_ht', 'congruent': 3}} {'dst': {'same': False, 'congruent': 0, 'type': 'addresses_A_ht'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 7, 'type': 'addresses_WC_ht'}} {'dst': {'same': False, 'NT': True, 'AVXalign': False, 'size': 2, 'type': 'addresses_A_ht', 'congruent': 4}, 'OP': 'STOR'} {'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 1, 'type': 'addresses_normal_ht', 'congruent': 4}, 'OP': 'STOR'} {'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 8, 'type': 'addresses_UC_ht', 'congruent': 2}, 'OP': 'STOR'} {'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 1, 'type': 'addresses_D_ht', 'congruent': 11}, 'OP': 'STOR'} {'dst': {'same': False, 'congruent': 5, 'type': 'addresses_A_ht'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 7, 'type': 'addresses_WC_ht'}} {'dst': {'same': True, 'congruent': 8, 'type': 'addresses_D_ht'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 11, 'type': 'addresses_WT_ht'}} {'dst': {'same': False, 'NT': False, 'AVXalign': True, 'size': 16, 'type': 'addresses_WC_ht', 'congruent': 8}, 'OP': 'STOR'} {'OP': 'LOAD', 'src': {'same': True, 'NT': True, 'AVXalign': False, 'size': 2, 'type': 'addresses_UC_ht', 'congruent': 3}} {'dst': {'same': False, 'congruent': 11, 'type': 'addresses_normal_ht'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 1, 'type': 'addresses_UC_ht'}} {'38': 21829} 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 */
35.62381
2,999
0.657666
0909c2b3bb087d4aac802fc01cddada2ec42ab49
459
asm
Assembly
programs/oeis/254/A254626.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/254/A254626.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/254/A254626.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A254626: Indices of triangular numbers (A000217) that are also centered pentagonal numbers (A005891). ; 1,3,23,61,421,1103,7563,19801,135721,355323,2435423,6376021,43701901,114413063,784198803,2053059121,14071876561,36840651123,252509579303,661078661101,4531100550901,11862575248703,81307300336923,212865275815561,1459000305513721,3819712389431403 mul $0,3 div $0,2 add $0,1 cal $0,5592 ; a(n) = F(2n+1) + F(2n-1) - 1. mov $1,$0 div $1,4 mul $1,2 add $1,1
38.25
245
0.77342
444430b47026fe4b4a4d4af0f4763c97081fee57
2,482
asm
Assembly
C64Modules/c64_kernal.asm
Akira-Hojo/C64-Modules
fb829360fc38dbb6064cb84bb6130a4c94c569cc
[ "Unlicense" ]
1
2021-11-12T03:23:03.000Z
2021-11-12T03:23:03.000Z
C64Modules/c64_kernal.asm
Akira-Hojo/C64-Modules
fb829360fc38dbb6064cb84bb6130a4c94c569cc
[ "Unlicense" ]
null
null
null
C64Modules/c64_kernal.asm
Akira-Hojo/C64-Modules
fb829360fc38dbb6064cb84bb6130a4c94c569cc
[ "Unlicense" ]
null
null
null
;░█▄▀▒██▀▒█▀▄░█▄░█▒▄▀▄░█▒░░░▒█▀▄░▄▀▄░█▒█░▀█▀░█░█▄░█▒██▀░▄▀▀ ;░█▒█░█▄▄░█▀▄░█▒▀█░█▀█▒█▄▄▒░░█▀▄░▀▄▀░▀▄█░▒█▒░█░█▒▀█░█▄▄▒▄██ ;******************************************************************************* ;Kernal Routines - Modify as needed to save ram ;******************************************************************************* clrscrn = $e544 ;58692 clears screen (slow?-ish) acptr = $ffa5 ;65445 input byte from serial port chkin = $ffc6 ;65478 open channel for input chkout = $ffc9 ;65481 open a channel for output chrin = $ffcf ;65487 get a character from the input channel chrout = $ffd2 ;65490 output a character ciout = $ffa8 ;65448 transmit a byte over the serial bus cint = $ff81 ;65409 initialize the screen editor and vic-ii chip clall = $ffe7 ;65511 close all open files close = $ffc3 ;65475 close a logical file clrchn = $ffcc ;65484 clear all i/o channels getin = $ffe4 ;65508 get a character iobase = $fff3 ;65523 define i/o memory page ioinit = $ff84 ;65412 initialize i/o devices listen = $ffb1 ;65457 command a device on the serial bus to listen load = $ffd5 ;65493 load ram from device membot = $ff9c ;65436 set bottom of memory memtop = $ff99 ;65433 set the top of ram open = $ffc0 ;65472 open a logical file plot = $fff0 ;65520 set or retrieve cursor location ramtas = $ff87 ;65415 perform ram test rdtim = $ffde ;65502 read system clock readst = $ffb7 ;65463 read status word restor = $ff8a ;65418 set the top of ram save = $ffd8 ;65496 save memory to a device scnkey = $ff9f ;65439 scan the keyboard screen = $ffed ;65517 return screen format second = $ff93 ;65427 send secondary address for listen setlfs = $ffba ;65466 set up a logical file setmsg = $ff90 ;65424 set system message output setnam = $ffbd ;65469 set up file name settim = $ffdb ;65499 set the system clock settmo = $ffa2 ;65442 set ieee bus card timeout flag stop = $ffe1 ;65505 check if stop key is pressed talk = $ffb4 ;65460 command a device on the serial bus to talk tksa = $ff96 ;65430 send a secondary address to a device commanded to talk udtim = $ffea ;65514 update the system clock unlsn = $ffae ;65454 send an unlisten command untlk = $ffab ;65451 send an untalk command vector = $ff8d ;65421 manage ram vectors ;*******************************************************************************
51.708333
80
0.582595
5400b2a2179a10efd3aefad9feb642988eb4ae37
174
asm
Assembly
data/pokemon/dex_entries/wingull.asm
AtmaBuster/pokeplat-gen2
fa83b2e75575949b8f72cb2c48f7a1042e97f70f
[ "blessing" ]
6
2021-06-19T06:41:19.000Z
2022-02-15T17:12:33.000Z
data/pokemon/dex_entries/wingull.asm
AtmaBuster/pokeplat-gen2-old
01e42c55db5408d72d89133dc84a46c699d849ad
[ "blessing" ]
null
null
null
data/pokemon/dex_entries/wingull.asm
AtmaBuster/pokeplat-gen2-old
01e42c55db5408d72d89133dc84a46c699d849ad
[ "blessing" ]
3
2021-01-15T18:45:40.000Z
2021-10-16T03:35:27.000Z
db "SEAGULL@" ; species name db "It soars on" next "updrafts without" next "flapping its" page "wings. It makes a" next "nest on the cliffs" next "near the sea.@"
17.4
29
0.66092
eaf8068e6882a6a2d0c180509a43437c539de042
720
asm
Assembly
oeis/006/A006118.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/006/A006118.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/006/A006118.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A006118: Sum of Gaussian binomial coefficients [ n,k ] for q=4. ; Submitted by Christian Krause ; 1,2,7,44,529,12278,565723,51409856,9371059621,3387887032202,2463333456292207,3557380311703796564,10339081666350180289849,59703612489554311631068958,693963422317885067720038969603,16027954310621830160033227955045096,745169606083546041778513163308476896461,68841029909087198742470887206525034523928242,12802054033722780140909793747657561606246863517847,4730745157359024364629831209391101565285371120655485564,3519011278851222861480979972788357225635345528286610596682849 mov $1,2 mov $2,1 mov $4,1 lpb $0 sub $0,1 mul $4,$2 mul $4,$2 mul $2,2 add $3,$4 mov $4,$1 add $1,$3 add $1,1 lpe mov $0,$1 div $0,2
36
470
0.823611
9640f058e29edf605a9e63ca33395cde7cdddcf8
8,274
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_516.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_516.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_516.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r15 push %r8 push %rax push %rcx push %rdi push %rsi lea addresses_WC_ht+0x1dea, %rsi lea addresses_A_ht+0x1e726, %rdi nop nop nop nop nop dec %r11 mov $101, %rcx rep movsw nop nop nop nop nop sub %r8, %r8 lea addresses_WC_ht+0x8526, %r15 nop nop nop sub %rax, %rax mov (%r15), %rdi nop nop cmp $36869, %r8 lea addresses_A_ht+0xb526, %r11 nop nop nop nop nop dec %r8 vmovups (%r11), %ymm2 vextracti128 $1, %ymm2, %xmm2 vpextrq $1, %xmm2, %rax nop nop nop nop add %rsi, %rsi lea addresses_UC_ht+0x1e5de, %rsi nop nop nop nop xor $2805, %rdi mov (%rsi), %r8w nop nop nop dec %rsi lea addresses_normal_ht+0x9926, %r8 sub $6323, %rdi movb (%r8), %r11b nop nop nop inc %rcx lea addresses_WT_ht+0x148a6, %rsi lea addresses_normal_ht+0x6326, %rdi sub $13584, %r12 mov $47, %rcx rep movsb nop nop nop sub %r11, %r11 lea addresses_A_ht+0x8926, %r12 clflush (%r12) nop nop nop nop nop and %r11, %r11 mov (%r12), %r15d nop and $38239, %rax lea addresses_normal_ht+0x1a37f, %rax nop nop nop sub %rsi, %rsi movl $0x61626364, (%rax) cmp %rsi, %rsi lea addresses_normal_ht+0xf466, %rsi lea addresses_WT_ht+0xd6d6, %rdi nop nop nop cmp $35293, %rax mov $57, %rcx rep movsq nop nop cmp $29500, %r8 lea addresses_WT_ht+0x1c2f7, %rsi lea addresses_D_ht+0x18c26, %rdi nop nop sub %r8, %r8 mov $92, %rcx rep movsb nop nop nop cmp $30222, %rdi lea addresses_normal_ht+0xac2c, %rsi nop nop inc %r8 mov $0x6162636465666768, %r11 movq %r11, %xmm2 vmovups %ymm2, (%rsi) nop nop nop nop nop dec %r11 lea addresses_WT_ht+0x10126, %r11 nop nop nop nop nop add %rdi, %rdi mov (%r11), %r8 nop cmp %r15, %r15 pop %rsi pop %rdi pop %rcx pop %rax pop %r8 pop %r15 pop %r12 pop %r11 ret .global s_faulty_load s_faulty_load: push %r12 push %r13 push %r15 push %rbx push %rcx push %rdi push %rsi // Load lea addresses_US+0xd55a, %rcx nop nop nop and $50062, %rsi mov (%rcx), %di nop nop nop nop nop sub $30477, %rsi // Store lea addresses_PSE+0x1d026, %r15 clflush (%r15) nop xor %rsi, %rsi mov $0x5152535455565758, %rcx movq %rcx, %xmm7 vmovups %ymm7, (%r15) nop nop nop nop nop xor $18506, %rbx // Store mov $0x405c180000000066, %rsi nop dec %rcx mov $0x5152535455565758, %r13 movq %r13, %xmm0 movntdq %xmm0, (%rsi) nop nop cmp $54978, %rcx // Store lea addresses_normal+0x9666, %r13 nop sub $16062, %r12 movl $0x51525354, (%r13) nop nop cmp $4474, %r15 // Store mov $0x7aa, %rsi clflush (%rsi) add %r15, %r15 movw $0x5152, (%rsi) nop nop nop nop add $11551, %r13 // Faulty Load lea addresses_RW+0x11526, %rcx dec %rsi movb (%rcx), %r15b lea oracles, %rbx and $0xff, %r15 shlq $12, %r15 mov (%rbx,%r15,1), %r15 pop %rsi pop %rdi pop %rcx pop %rbx pop %r15 pop %r13 pop %r12 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'size': 16, 'NT': False, 'type': 'addresses_RW', 'same': False, 'AVXalign': False, 'congruent': 0}} {'OP': 'LOAD', 'src': {'size': 2, 'NT': False, 'type': 'addresses_US', 'same': False, 'AVXalign': False, 'congruent': 1}} {'OP': 'STOR', 'dst': {'size': 32, 'NT': False, 'type': 'addresses_PSE', 'same': False, 'AVXalign': False, 'congruent': 6}} {'OP': 'STOR', 'dst': {'size': 16, 'NT': True, 'type': 'addresses_NC', 'same': False, 'AVXalign': False, 'congruent': 4}} {'OP': 'STOR', 'dst': {'size': 4, 'NT': False, 'type': 'addresses_normal', 'same': False, 'AVXalign': False, 'congruent': 4}} {'OP': 'STOR', 'dst': {'size': 2, 'NT': False, 'type': 'addresses_P', 'same': False, 'AVXalign': False, 'congruent': 1}} [Faulty Load] {'OP': 'LOAD', 'src': {'size': 1, 'NT': False, 'type': 'addresses_RW', 'same': True, 'AVXalign': False, 'congruent': 0}} <gen_prepare_buffer> {'OP': 'REPM', 'src': {'same': True, 'type': 'addresses_WC_ht', 'congruent': 1}, 'dst': {'same': True, 'type': 'addresses_A_ht', 'congruent': 8}} {'OP': 'LOAD', 'src': {'size': 8, 'NT': False, 'type': 'addresses_WC_ht', 'same': False, 'AVXalign': False, 'congruent': 11}} {'OP': 'LOAD', 'src': {'size': 32, 'NT': False, 'type': 'addresses_A_ht', 'same': False, 'AVXalign': False, 'congruent': 10}} {'OP': 'LOAD', 'src': {'size': 2, 'NT': True, 'type': 'addresses_UC_ht', 'same': False, 'AVXalign': False, 'congruent': 2}} {'OP': 'LOAD', 'src': {'size': 1, 'NT': False, 'type': 'addresses_normal_ht', 'same': False, 'AVXalign': False, 'congruent': 9}} {'OP': 'REPM', 'src': {'same': False, 'type': 'addresses_WT_ht', 'congruent': 1}, 'dst': {'same': False, 'type': 'addresses_normal_ht', 'congruent': 6}} {'OP': 'LOAD', 'src': {'size': 4, 'NT': False, 'type': 'addresses_A_ht', 'same': False, 'AVXalign': False, 'congruent': 6}} {'OP': 'STOR', 'dst': {'size': 4, 'NT': True, 'type': 'addresses_normal_ht', 'same': True, 'AVXalign': False, 'congruent': 0}} {'OP': 'REPM', 'src': {'same': False, 'type': 'addresses_normal_ht', 'congruent': 5}, 'dst': {'same': False, 'type': 'addresses_WT_ht', 'congruent': 4}} {'OP': 'REPM', 'src': {'same': False, 'type': 'addresses_WT_ht', 'congruent': 0}, 'dst': {'same': False, 'type': 'addresses_D_ht', 'congruent': 7}} {'OP': 'STOR', 'dst': {'size': 32, 'NT': False, 'type': 'addresses_normal_ht', 'same': False, 'AVXalign': False, 'congruent': 0}} {'OP': 'LOAD', 'src': {'size': 8, 'NT': False, 'type': 'addresses_WT_ht', 'same': False, 'AVXalign': True, 'congruent': 7}} {'32': 21829} 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 */
31.222642
2,999
0.654822
06035b35fae0bda05d8b650e5216b525a35231a7
585
asm
Assembly
oeis/106/A106475.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/106/A106475.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/106/A106475.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A106475: An alternating sum of greatest common divisors. ; Submitted by Jon Maiga ; 1,0,1,-4,1,-8,1,-16,-3,-16,1,-36,1,-24,-15,-48,1,-48,1,-68,-23,-40,1,-112,-15,-48,-27,-100,1,-120,1,-128,-39,-64,-47,-180,1,-72,-47,-208,1,-176,1,-164,-99,-88,1,-304,-35,-160,-63,-196,1,-216,-79,-304,-71,-112,1,-420,1,-120,-147,-320,-95,-288,1,-260,-87,-328,1,-528,1,-144,-175,-292,-119,-344,1,-560,-135,-160,1,-612,-127,-168,-111,-496,1,-576,-143,-356,-119,-184,-143,-768,1,-336,-243,-580 add $0,1 mov $2,$0 lpb $0 sub $0,1 mov $3,$2 add $4,2 gcd $3,$4 add $1,$3 lpe sub $4,$1 mov $0,$4
36.5625
391
0.57094
8664255021b2d6c0dd9d7762fd1292da6cdb599b
228
asm
Assembly
programs/oeis/017/A017609.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/017/A017609.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/017/A017609.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A017609: (12n+7)^5. ; 16807,2476099,28629151,147008443,503284375,1350125107,3077056399,6240321451,11592740743,20113571875,33038369407,51888844699,78502725751,115063617043,164130859375,228669389707 mul $0,12 add $0,7 pow $0,5
32.571429
176
0.820175
1b9ee2466b9a3d8fb2de77aebe43153a706a03c3
1,779
asm
Assembly
programs/oeis/017/A017466.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/017/A017466.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/017/A017466.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A017466: a(n) = (11*n + 6)^6. ; 46656,24137569,481890304,3518743761,15625000000,51520374361,139314069504,326940373369,689869781056,1340095640625,2436396322816,4195872914689,6906762437184,10942526586601,16777216000000,25002110044521,36343632130624,51682540549249,72074394832896,98771297640625,133244912166976,177210755074809,232653764952064,301855146292441,387420489000000,492309163417681,619864990879744,773848189788129,958468597212736,1178420166015625,1438916737499136,1745729089577929,2105223260474944,2524400147941281,3010936384000000,3573226485213841,4220426278476864,4962497602330009,5810254283800576,6775409390765625,7870623759839296,9109555799784049,10506912570445824,12078502137213121,13841287201000000,15813440003753001,18014398509481984,20464923860814889,23187159111076416,26204689231890625,29542602396307456,33227552537453169,37287823182704704,41753392563387961,46656000000000000,52029213562955161,57908499008855104,64331289992282769,71337059553120256,78967392879390625,87266061345623616,96279097826745289,106054873287491584,116644174647345801,128100283921000000,140479058634340321,153839013515956224,168241403464173649,183750307789612096,200432715733265625,218358613260107776,237601071128220409,258236334233446464,280343912229566641,304006671424000000,329310927949028481,356346542208545344,385207014600327529,415989582513831936,448795318603515625,483729230337679936,520900360822838529,560421890903609344,602411242538130481,646990183449000000,694284933049739641,744426269646782464,797549638916984409,853795263660659776,913308254830140625,976238723833860096,1042741896115959649,1112978226011420224,1187113512876717321,1265319018496000000,1347771585762793801,1434653758637227584,1526153903378784289,1622466331054575616,1723791421323140625 mul $0,11 add $0,6 pow $0,6
254.142857
1,717
0.925239
3c726b2fd309e4f2e4432b548b79d9d7e83455b0
515
asm
Assembly
oeis/159/A159894.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/159/A159894.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/159/A159894.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A159894: Decimal expansion of (731+54*sqrt(2))/727. ; Submitted by Christian Krause ; 1,1,1,0,5,4,6,8,1,2,0,6,0,7,2,5,0,7,9,2,7,8,2,5,4,7,3,3,2,9,7,5,5,6,6,6,6,0,8,3,5,7,9,4,7,9,0,5,1,3,8,2,6,6,2,9,3,1,9,6,7,9,5,8,5,3,0,2,6,0,7,3,4,3,0,1,1,7,4,3,8,8,0,3,0,1,5,2,5,8,1,6,4,1,9,4,3,1,1,5 bin $1,$0 mov $2,2 mov $3,$0 mul $3,4 lpb $3 add $5,$2 add $1,$5 add $2,$1 mov $1,$2 sub $3,1 lpe mul $1,2 add $2,$5 mov $4,10 pow $4,$0 add $5,$2 div $2,4 mul $2,46 add $2,$5 div $2,$4 div $1,$2 mov $0,$1 mod $0,10
18.392857
201
0.541748
d8fee4fcc26a032124bdca62db56db7b7b669498
294
asm
Assembly
programs/oeis/144/A144597.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/144/A144597.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/144/A144597.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A144597: Christoffel word of slope 3/7. ; 0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0 mul $0,13 mod $0,10 div $0,7 mov $1,$0
36.75
211
0.537415
2b51e9c9bb031e26f8153b430d1d6058f7efac98
557
asm
Assembly
Script/1.asm
jumana1508/CSE331L_Section_7_Summer20_NSU_Final
897fffa9fa037f08b26e28d944550121cf0ce792
[ "MIT" ]
null
null
null
Script/1.asm
jumana1508/CSE331L_Section_7_Summer20_NSU_Final
897fffa9fa037f08b26e28d944550121cf0ce792
[ "MIT" ]
null
null
null
Script/1.asm
jumana1508/CSE331L_Section_7_Summer20_NSU_Final
897fffa9fa037f08b26e28d944550121cf0ce792
[ "MIT" ]
null
null
null
.MODEL SMALL .STACK 100H .DATA CR EQU 0DH LF EQU 0AH MSG1 DB ' LOWER CASE : $' MSG2 DB 0DH,0AH, ' UPPER CASE : ' CHAR DB ?,'$' .CODE MAIN PROC MOV AX, @DATA MOV DS,AX LEA DX,MSG1 MOV AH,9 INT 21H MOV AH,1 INT 21H SUB AL, 20H MOV CHAR, AL LEA DX,MSG2 MOV AH,9 INT 21H MOV AH,4CH INT 21H MAIN ENDP END MAIN
12.953488
33
0.375224
11e520b0507b71ff626bad361f07fef668df2f56
1,688
asm
Assembly
src/m2-bugfixes.asm
Iemnur/Mother2GbaTranslation
b8ca6df07ef69762fc5cc7453657b8e71178c78d
[ "MIT" ]
149
2015-03-19T11:22:47.000Z
2022-03-23T17:57:39.000Z
src/m2-bugfixes.asm
Iemnur/Mother2GbaTranslation
b8ca6df07ef69762fc5cc7453657b8e71178c78d
[ "MIT" ]
77
2015-06-16T17:38:47.000Z
2022-01-24T14:21:28.000Z
src/m2-bugfixes.asm
Iemnur/Mother2GbaTranslation
b8ca6df07ef69762fc5cc7453657b8e71178c78d
[ "MIT" ]
29
2015-06-16T00:58:04.000Z
2021-12-23T22:38:30.000Z
//============================================================================== //Fixes the issue where Gyigas and other enemies would not use their death attack //(or phase change) because of the poison dee6c_fix_poison_gyigas: push {lr} bl 0x80E9CFC //Normal code ldr r2,=#0x2024860 //Where the action's data is stored ldr r0,[r6,#0] //Load the entity's slot add r0,#0x44 ldrh r1,[r0,#0] cmp r1,#0 beq @@normal //Characters have this set as 0 cmp r1,#0xDA //This particular Gyigas phase does not need this... (It will reflect the poison randomly if we let it continue) beq @@normal ldrh r1,[r0,#4] // Get the enemy's current HP cmp r1,#0 //Check if they're 0 bne @@normal ldrh r1,[r0,#6] // Get the enemy's scrolling HP cmp r1,#0 //Check if they're 0 (probably not needed) bne @@normal mov r0,#0x9 //Fabricate a death check for the enemy add r2,#0x16 strh r0,[r2,#0] mov r0,#0 strh r0,[r2,#4] mov r0,#4 //This counts as a PSI, since setting it as a normal attack would make it so the Diamond Dog would reflect it strh r0,[r2,#6] add r2,#0xC strh r0,[r2,#0x6] mov r0,#1 strh r0,[r2,#4] mov r0,#0 strh r0,[r2,#0] add r2,#0x24 strh r0,[r2,#0] strh r0,[r2,#0x12] ldr r2,=#0x2025034 mov r0,#1 strh r0,[r2,#0] //This is a PSI. Not a physical attack ldr r0,=#0x3005378 mov r1,#0xC //This is PSI Cool Thing strh r1,[r0,#0] mov r1,#0 strh r1,[r0,#0x10] b @@end @@normal: mov r0,#0x64 //Normal game's behaviour strh r0,[r2,#0x16] @@end: pop {pc} //==============================================================================
29.614035
129
0.561019
ca95ce9d32ced8423a9830034858d79975886b79
110
asm
Assembly
implementations/ugene/src/corelibs/U2Private/src/crash_handler/StackRollbackX64.asm
r-barnes/sw_comparison
1ac2c9cc10a32badd6b8fb1e96516c97f7800176
[ "BSD-Source-Code" ]
null
null
null
implementations/ugene/src/corelibs/U2Private/src/crash_handler/StackRollbackX64.asm
r-barnes/sw_comparison
1ac2c9cc10a32badd6b8fb1e96516c97f7800176
[ "BSD-Source-Code" ]
null
null
null
implementations/ugene/src/corelibs/U2Private/src/crash_handler/StackRollbackX64.asm
r-barnes/sw_comparison
1ac2c9cc10a32badd6b8fb1e96516c97f7800176
[ "BSD-Source-Code" ]
null
null
null
.CODE PUBLIC rollbackStack rollbackStack PROC ; add esp, 1024; mov EBP, ESP rollbackStack ENDP END
13.75
21
0.718182
b4efb498f0b26034ef6f4fd839c49c1cd09fd116
376
asm
Assembly
programs/oeis/077/A077131.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/077/A077131.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/077/A077131.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A077131: Sum of odd-indexed primes. ; 2,7,18,35,58,89,130,177,236,303,376,459,556,659,768,895,1032,1181,1338,1505,1684,1875,2072,2283,2510,2743,2984,3241,3510,3787,4070,4377,4690,5021,5368,5721,6088,6467,6856,7257,7676,8107,8546,8995,9456,9923 mul $0,2 lpb $0 mov $2,$0 sub $0,2 seq $2,6005 ; The odd prime numbers together with 1. add $1,$2 lpe add $1,2 mov $0,$1
28.923077
207
0.702128
4cba3337a68461a96ecadb9cf7adc55971d9a3ec
754
asm
Assembly
oeis/307/A307811.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/307/A307811.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/307/A307811.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A307811: Expansion of 1/AGM(1-45*x, sqrt((1-25*x)*(1-81*x))). ; Submitted by Jon Maiga ; 1,49,2601,148225,8970025,570111129,37678303881,2567836387809,179267329355625,12754414737348025,921185098227422161,67340346156989933769,4971327735657992896201,369994703739586257235225,27725052308247030792515625,2089567204521186409129541025,158268346763606253214917813225,12039324393629642676432493520025,919284792151282427126121791000625,70428463447093899349641188378855625,5411759004075011684277787554477683025,416953514274607209049393696694689932225,32201977700369015032920654204542745155025 mul $0,2 mov $1,1 mov $2,1 mov $3,$0 mov $4,1 lpb $3 mul $1,$3 mul $1,$4 mul $2,5 sub $3,2 add $5,$4 div $1,$5 add $2,$1 add $4,2 lpe pow $2,2 mov $0,$2
34.272727
494
0.807692
6ba7bb3e1aa7f5c7a44bbc5c1eb331883bf93ee9
351
asm
Assembly
numofsetbits.asm
tamim87/Assembly-Samples
99290b8df6484ff9b46afa5bd1dc2f6bc31f29dd
[ "MIT" ]
null
null
null
numofsetbits.asm
tamim87/Assembly-Samples
99290b8df6484ff9b46afa5bd1dc2f6bc31f29dd
[ "MIT" ]
null
null
null
numofsetbits.asm
tamim87/Assembly-Samples
99290b8df6484ff9b46afa5bd1dc2f6bc31f29dd
[ "MIT" ]
null
null
null
;number of setbits ;credits: nabil faiyaz sadi org 100h mov cx, 8h mov al, num for: mov bl, al mov dl, 1h and bl, dl cmp bl, 1h je inc_set_bits resumeloop: shr al, 1 loop for ret inc_set_bits: inc setBitCount jmp resumeloop num db 0FFh setBitCount db 0h
13
28
0.549858
9b6ff8163084a0228b40c1de30505376a90780ad
579
asm
Assembly
programs/oeis/194/A194275.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/194/A194275.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/194/A194275.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A194275: Concentric pentagonal numbers of the second kind: a(n) = floor(5*n*(n+1)/6). ; 0,1,5,10,16,25,35,46,60,75,91,110,130,151,175,200,226,255,285,316,350,385,421,460,500,541,585,630,676,725,775,826,880,935,991,1050,1110,1171,1235,1300,1366,1435,1505,1576,1650,1725,1801,1880,1960,2041,2125,2210,2296,2385,2475,2566,2660,2755,2851,2950,3050,3151,3255,3360,3466,3575,3685,3796,3910,4025,4141,4260,4380,4501,4625,4750,4876,5005,5135,5266,5400,5535,5671,5810,5950,6091,6235,6380,6526,6675,6825,6976,7130,7285,7441,7600,7760,7921,8085,8250 add $0,1 bin $0,2 mul $0,10 div $0,6
72.375
452
0.747841
dcb6741cfe82cf978e54b9fcee49ff5bb2401398
541
asm
Assembly
oeis/066/A066004.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/066/A066004.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/066/A066004.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A066004: Sum of digits of 8^n. ; Submitted by Jamie Morken(s3.) ; 1,8,10,8,19,26,19,26,37,35,37,62,64,71,46,62,73,80,82,80,82,89,109,89,109,125,100,107,118,107,118,125,127,107,118,125,145,143,145,152,172,170,172,188,181,170,190,215,172,215,235,233,217,215,199,251,190,242,244,251,244,278,289,242,253,242,262,269,253,296,280,323,289,296,334,287,316,323,325,341,361,323,334,305,307,377,352,323,307,386,361,359,361,350,415,359,379,404,379,368 mov $4,$0 mov $0,8 pow $0,$4 lpb $0 mov $2,$0 div $0,10 mod $2,10 add $3,$2 lpe mov $0,$3
36.066667
375
0.68207
107dbb4a8c8df505a3fe9d99f4eda52c661756bf
145
asm
Assembly
other.7z/SFC.7z/SFC/ソースデータ/ゼルダの伝説神々のトライフォース/英語_PAL/pal_asm/zel_vma.asm
prismotizm/gigaleak
d082854866186a05fec4e2fdf1def0199e7f3098
[ "MIT" ]
null
null
null
other.7z/SFC.7z/SFC/ソースデータ/ゼルダの伝説神々のトライフォース/英語_PAL/pal_asm/zel_vma.asm
prismotizm/gigaleak
d082854866186a05fec4e2fdf1def0199e7f3098
[ "MIT" ]
null
null
null
other.7z/SFC.7z/SFC/ソースデータ/ゼルダの伝説神々のトライフォース/英語_PAL/pal_asm/zel_vma.asm
prismotizm/gigaleak
d082854866186a05fec4e2fdf1def0199e7f3098
[ "MIT" ]
null
null
null
Name: zel_vma.asm Type: file Size: 47613 Last-Modified: '2016-05-13T04:25:37Z' SHA-1: 84836B253DA17823EC3DD16A6C62C0A4C5E92ED2 Description: null
20.714286
47
0.813793
9963cb36a497671594882c733d5f0ab0916e8645
4,213
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1164.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1164.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1164.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: ret .global s_faulty_load s_faulty_load: push %r10 push %r11 push %rbp push %rbx push %rcx push %rdi push %rsi // Store lea addresses_A+0x18f11, %rsi nop nop cmp %rbx, %rbx mov $0x5152535455565758, %r10 movq %r10, %xmm2 vmovups %ymm2, (%rsi) nop and $26292, %rcx // Store lea addresses_PSE+0xa421, %rdi nop nop nop nop and %r11, %r11 movl $0x51525354, (%rdi) add %rbx, %rbx // Faulty Load lea addresses_UC+0x11911, %r11 cmp %r10, %r10 mov (%r11), %ebp lea oracles, %rcx and $0xff, %rbp shlq $12, %rbp mov (%rcx,%rbp,1), %rbp pop %rsi pop %rdi pop %rcx pop %rbx pop %rbp pop %r11 pop %r10 ret /* <gen_faulty_load> [REF] {'src': {'type': 'addresses_UC', 'AVXalign': False, 'size': 4, 'NT': False, 'same': False, 'congruent': 0}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'type': 'addresses_A', 'AVXalign': False, 'size': 32, 'NT': False, 'same': False, 'congruent': 9}} {'OP': 'STOR', 'dst': {'type': 'addresses_PSE', 'AVXalign': False, 'size': 4, 'NT': False, 'same': False, 'congruent': 1}} [Faulty Load] {'src': {'type': 'addresses_UC', 'AVXalign': False, 'size': 4, 'NT': False, 'same': True, 'congruent': 0}, 'OP': 'LOAD'} <gen_prepare_buffer> {'37': 21829} 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 */
64.815385
2,999
0.659862
4e7adda3d363238a0c1f0ce7ef86da2b782b9c6f
372
asm
Assembly
programs/oeis/046/A046143.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/046/A046143.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/046/A046143.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A046143: Triangle of gcd( 2^p-1, 2^q-1 ) = 2^gcd(p,q) - 1. ; 1,1,3,1,1,7,1,3,1,15,1,1,1,1,31,1,3,7,3,1,63,1,1,1,1,1,1,127,1,3,1,15,1,3,1,255,1,1,7,1,1,7,1,1,511,1,3,1,3,31,3,1,3,1,1023,1,1,1,1,1,1,1,1,1,1,2047,1,3,7,15,1,63,1,15,7,3,1,4095,1,1,1,1,1,1,1,1,1,1,1,1 seq $0,50873 ; Triangular array T read by rows: T(n,k) = gcd(n,k). mov $1,2 pow $1,$0 sub $1,1 mov $0,$1
41.333333
204
0.561828
2daa52c6988bc8362fd07b7d3eaf4ae0ec713b26
105
asm
Assembly
libsrc/stdio/inkey/getk.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/stdio/inkey/getk.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/stdio/inkey/getk.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
PUBLIC getk PUBLIC _getk EXTERN getk_inkey defc getk = getk_inkey defc _getk = getk_inkey
9.545455
25
0.704762
7d3fb3b8e7014fe405096c4920b1ea801b56bf1f
12,784
asm
Assembly
4greys.asm
hwreverse/PC-G850V
53a4dca7b31f940412e0ebddba395f2b8deda895
[ "MIT" ]
7
2020-09-30T19:56:39.000Z
2021-09-30T12:05:18.000Z
4greys.asm
hwreverse/PC-G850V
53a4dca7b31f940412e0ebddba395f2b8deda895
[ "MIT" ]
1
2021-09-04T02:52:33.000Z
2021-09-04T02:52:33.000Z
4greys.asm
hwreverse/PC-G850V
53a4dca7b31f940412e0ebddba395f2b8deda895
[ "MIT" ]
2
2021-09-03T12:28:16.000Z
2021-09-30T13:47:01.000Z
10 ORG 0100H 20CLS: 30 LD B,24*6 40 LD DE,0 50 CALL 0BFEEH 60START:LD HL,B_DATA 70 LD (ADDR),HL 80 CALL WRITE ; BLACK 90 ; CALL WAIT 100 LD HL,W_DATA 110 LD (ADDR),HL 120 CALL WRITE ; WHITE 130 CALL WAIT 140 IN A,(1FH) 150 RLCA 160 RET C 170 JR START 180WRITE: LD HL,(ADDR) 190 LD B,144 200 LD DE,0000H 210 CALL 0BFD0H 220 LD HL,(ADDR) 230 LD DE,144 240 ADD HL,DE 250 LD DE,0100H 260 LD B,144 270 CALL 0BFD0H 280 LD B,144 290 LD HL,(ADDR) 300 LD DE,288 310 ADD HL,DE 320 LD DE,0200H 330 LD B,144 340 CALL 0BFD0H 350 LD HL,(ADDR) 360 LD DE,432 370 ADD HL,DE 380 LD DE,0300H 390 LD B,144 400 CALL 0BFD0H 410 LD HL,(ADDR) 420 LD DE,576 430 ADD HL,DE 440 LD DE,0400H 450 LD B,144 460 CALL 0BFD0H 470 LD HL,(ADDR) 480 LD DE,720 490 ADD HL,DE 500 LD DE,0500H 510 LD B,144 520 CALL 0BFD0H 530 RET 540WAIT:XOR A 550L1:LD B,5 560L2:DJNZ L2 570 DEC A 580 JR NZ,L1 590 RET 999ADDR: DB 0,0 1000B_DATA: DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1001 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1002 DB 000H, 000H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H 1003 DB 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H 1004 DB 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H 1005 DB 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H 1006 DB 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H 1007 DB 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H 1008 DB 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H 1009 DB 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H 1010 DB 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H 1011 DB 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H 1012 DB 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H 1013 DB 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H 1014 DB 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H 1015 DB 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 0C0H, 000H, 000H 1016 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1017 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1018 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1020 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1021 DB 000H, 000H, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 1022 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 1023 DB 0FFH, 0FFH, 0FFH, 0FFH, 00FH, 00FH, 00FH, 00FH 1024 DB 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH 1025 DB 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH 1026 DB 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH 1027 DB 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH 1028 DB 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH 1029 DB 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH 1030 DB 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH 1031 DB 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH 1032 DB 00FH, 00FH, 00FH, 00FH, 0FFH, 0FFH, 0FFH, 0FFH 1033 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 1034 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 000H, 000H 1035 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1036 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1037 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1039 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1040 DB 000H, 000H, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 1041 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 1042 DB 0FFH, 0FFH, 0FFH, 0FFH, 000H, 000H, 000H, 000H 1043 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1044 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1045 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 0E0H 1046 DB 0E0H, 0E0H, 0E0H, 0E0H, 0E0H, 0E0H, 0E0H, 0E0H 1047 DB 0E0H, 0E0H, 0E0H, 0E0H, 0E0H, 0E0H, 0E0H, 0E0H 1048 DB 0E0H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1049 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1050 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1051 DB 000H, 000H, 000H, 000H, 0FFH, 0FFH, 0FFH, 0FFH 1052 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 1053 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 000H, 000H 1054 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1055 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1056 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1058 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1059 DB 000H, 000H, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 1060 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 1061 DB 0FFH, 0FFH, 0FFH, 0FFH, 000H, 000H, 000H, 000H 1062 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1063 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1064 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 007H 1065 DB 007H, 007H, 007H, 007H, 007H, 007H, 007H, 007H 1066 DB 007H, 007H, 007H, 007H, 007H, 007H, 007H, 007H 1067 DB 007H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1068 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1069 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1070 DB 000H, 000H, 000H, 000H, 0FFH, 0FFH, 0FFH, 0FFH 1071 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 1072 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 000H, 000H 1073 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1074 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1075 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1077 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1078 DB 000H, 000H, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 1079 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 1080 DB 0FFH, 0FFH, 0FFH, 0FFH, 0F0H, 0F0H, 0F0H, 0F0H 1081 DB 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H 1082 DB 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H 1083 DB 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H 1084 DB 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H 1085 DB 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H 1086 DB 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H 1087 DB 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H 1088 DB 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H 1089 DB 0F0H, 0F0H, 0F0H, 0F0H, 0FFH, 0FFH, 0FFH, 0FFH 1090 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 1091 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 000H, 000H 1092 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1093 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1094 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1096 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1097 DB 000H, 000H, 003H, 003H, 003H, 003H, 003H, 003H 1098 DB 003H, 003H, 003H, 003H, 003H, 003H, 003H, 003H 1099 DB 003H, 003H, 003H, 003H, 003H, 003H, 003H, 003H 1100 DB 003H, 003H, 003H, 003H, 003H, 003H, 003H, 003H 1101 DB 003H, 003H, 003H, 003H, 003H, 003H, 003H, 003H 1102 DB 003H, 003H, 003H, 003H, 003H, 003H, 003H, 003H 1103 DB 003H, 003H, 003H, 003H, 003H, 003H, 003H, 003H 1104 DB 003H, 003H, 003H, 003H, 003H, 003H, 003H, 003H 1105 DB 003H, 003H, 003H, 003H, 003H, 003H, 003H, 003H 1106 DB 003H, 003H, 003H, 003H, 003H, 003H, 003H, 003H 1107 DB 003H, 003H, 003H, 003H, 003H, 003H, 003H, 003H 1108 DB 003H, 003H, 003H, 003H, 003H, 003H, 003H, 003H 1109 DB 003H, 003H, 003H, 003H, 003H, 003H, 003H, 003H 1110 DB 003H, 003H, 003H, 003H, 003H, 003H, 000H, 000H 1111 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 1112 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2000W_DATA: DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2001 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2002 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2003 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2004 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2005 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2006 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2007 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2008 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2009 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2010 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2011 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2012 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2013 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2014 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2015 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2016 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2017 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2018 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2020 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2021 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2022 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2023 DB 000H, 000H, 000H, 000H, 0F0H, 0F0H, 0F0H, 0F0H 2024 DB 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H 2025 DB 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H 2026 DB 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H 2027 DB 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H 2028 DB 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H 2029 DB 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H 2030 DB 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H 2031 DB 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H, 0F0H 2032 DB 0F0H, 0F0H, 0F0H, 0F0H, 000H, 000H, 000H, 000H 2033 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2034 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2035 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2036 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2037 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2039 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2040 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2041 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2042 DB 000H, 000H, 000H, 000H, 0FFH, 0FFH, 0FFH, 0FFH 2043 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 2044 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 2045 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 2046 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 2047 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 2048 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 2049 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 2050 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 2051 DB 0FFH, 0FFH, 0FFH, 0FFH, 000H, 000H, 000H, 000H 2052 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2053 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2054 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2055 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2056 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2058 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2059 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2060 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2061 DB 000H, 000H, 000H, 000H, 0FFH, 0FFH, 0FFH, 0FFH 2062 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 2063 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 2064 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 2065 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 2066 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 2067 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 2068 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 2069 DB 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH, 0FFH 2070 DB 0FFH, 0FFH, 0FFH, 0FFH, 000H, 000H, 000H, 000H 2071 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2072 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2073 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2074 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2075 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2077 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2078 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2079 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2080 DB 000H, 000H, 000H, 000H, 00FH, 00FH, 00FH, 00FH 2081 DB 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH 2082 DB 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH 2083 DB 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH 2084 DB 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH 2085 DB 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH 2086 DB 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH 2087 DB 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH 2088 DB 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH, 00FH 2089 DB 00FH, 00FH, 00FH, 00FH, 000H, 000H, 000H, 000H 2090 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2091 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2092 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2093 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2094 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2096 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2097 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2098 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2099 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2100 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2101 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2102 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2103 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2104 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2105 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2106 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2107 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2108 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2109 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2110 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2111 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 2112 DB 000H, 000H, 000H, 000H, 000H, 000H, 000H, 000H 
44.388889
61
0.692584
e3894e28a3dd724ddefece2452968c27a0239b21
5,772
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1033.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1033.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1033.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r8 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x10081, %r11 nop nop sub %rdi, %rdi and $0xffffffffffffffc0, %r11 vmovaps (%r11), %ymm2 vextracti128 $0, %ymm2, %xmm2 vpextrq $1, %xmm2, %r13 nop nop nop nop nop add $19935, %r8 lea addresses_D_ht+0x4e65, %rsi lea addresses_WT_ht+0x124f9, %rdi nop nop nop inc %rbp mov $114, %rcx rep movsb nop nop nop nop xor $54138, %rsi lea addresses_A_ht+0x1c365, %rdi nop nop dec %rbp movb (%rdi), %r11b nop nop sub %r11, %r11 lea addresses_WC_ht+0xef16, %r13 nop nop nop nop nop cmp $47794, %r11 mov (%r13), %esi and $31562, %r13 lea addresses_WC_ht+0x1ea75, %rsi lea addresses_A_ht+0x12e65, %rdi clflush (%rsi) nop nop nop nop add $33637, %rdx mov $75, %rcx rep movsl nop nop nop inc %rsi pop %rsi pop %rdx pop %rdi pop %rcx pop %rbp pop %r8 pop %r13 pop %r11 ret .global s_faulty_load s_faulty_load: push %r14 push %r15 push %r9 push %rax push %rbp push %rdi push %rsi // Store lea addresses_UC+0x2165, %r15 clflush (%r15) nop add $64710, %r9 movb $0x51, (%r15) nop nop cmp $12676, %rbp // Store lea addresses_PSE+0x1c0e5, %rbp nop nop nop nop nop add %rax, %rax mov $0x5152535455565758, %rsi movq %rsi, (%rbp) nop nop nop nop nop cmp $21677, %rdi // Faulty Load lea addresses_UC+0x1d965, %rax clflush (%rax) nop nop nop nop add %rdi, %rdi mov (%rax), %r9 lea oracles, %r14 and $0xff, %r9 shlq $12, %r9 mov (%r14,%r9,1), %r9 pop %rsi pop %rdi pop %rbp pop %rax pop %r9 pop %r15 pop %r14 ret /* <gen_faulty_load> [REF] {'src': {'type': 'addresses_UC', 'AVXalign': False, 'size': 32, 'NT': True, 'same': False, 'congruent': 0}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'type': 'addresses_UC', 'AVXalign': False, 'size': 1, 'NT': False, 'same': False, 'congruent': 11}} {'OP': 'STOR', 'dst': {'type': 'addresses_PSE', 'AVXalign': False, 'size': 8, 'NT': False, 'same': False, 'congruent': 5}} [Faulty Load] {'src': {'type': 'addresses_UC', 'AVXalign': False, 'size': 8, 'NT': False, 'same': True, 'congruent': 0}, 'OP': 'LOAD'} <gen_prepare_buffer> {'src': {'type': 'addresses_A_ht', 'AVXalign': True, 'size': 32, 'NT': False, 'same': False, 'congruent': 1}, 'OP': 'LOAD'} {'src': {'type': 'addresses_D_ht', 'congruent': 7, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_WT_ht', 'congruent': 2, 'same': False}} {'src': {'type': 'addresses_A_ht', 'AVXalign': False, 'size': 1, 'NT': False, 'same': False, 'congruent': 9}, 'OP': 'LOAD'} {'src': {'type': 'addresses_WC_ht', 'AVXalign': False, 'size': 4, 'NT': False, 'same': False, 'congruent': 0}, 'OP': 'LOAD'} {'src': {'type': 'addresses_WC_ht', 'congruent': 1, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_A_ht', 'congruent': 8, 'same': False}} {'37': 21829} 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 */
37.23871
2,999
0.659044
4363c913fce91a2a862462e1ef3b83720ec72a95
29,498
asm
Assembly
AtlRunner/syncatl/Make2Ant.asm
georghinkel/atlbenchmark
d4281ec13fa864f77658f7f77dd4bbba160c51a1
[ "MIT" ]
null
null
null
AtlRunner/syncatl/Make2Ant.asm
georghinkel/atlbenchmark
d4281ec13fa864f77658f7f77dd4bbba160c51a1
[ "MIT" ]
null
null
null
AtlRunner/syncatl/Make2Ant.asm
georghinkel/atlbenchmark
d4281ec13fa864f77658f7f77dd4bbba160c51a1
[ "MIT" ]
null
null
null
<?xml version = '1.0' encoding = 'ISO-8859-1' ?> <asm name="0"> <cp> <constant value="Make2Ant"/> <constant value="links"/> <constant value="NTransientLinkSet;"/> <constant value="col"/> <constant value="J;"/> <constant value="main"/> <constant value="A"/> <constant value="0"/> <constant value="OclParametrizedType"/> <constant value="#native"/> <constant value="Collection"/> <constant value="J.setName(S):V"/> <constant value="OclSimpleType"/> <constant value="OclAny"/> <constant value="J.setElementType(J):V"/> <constant value="TransientLinkSet"/> <constant value="A.__matcher__():V"/> <constant value="A.__exec__():V"/> <constant value="self"/> <constant value="__matcher__"/> <constant value="A.__matchMakefile2Project():V"/> <constant value="A.__matchMacro2Property():V"/> <constant value="A.__matchRule2Target():V"/> <constant value="A.__matchShellLine2Task_Display():V"/> <constant value="A.__matchShellLine2Task_NoDisplay():V"/> <constant value="__matchMakefile2Project"/> <constant value="Makefile"/> <constant value="Make"/> <constant value="Sequence"/> <constant value="IN"/> <constant value="MMOF!Classifier;.allInstancesFrom(S):QJ"/> <constant value="CJ.union(CJ):CJ"/> <constant value="1"/> <constant value="B.not():B"/> <constant value="37"/> <constant value="TransientLink"/> <constant value="Makefile2Project"/> <constant value="NTransientLink;.setRule(MATL!Rule;):V"/> <constant value="m"/> <constant value="NTransientLink;.addSourceElement(SJ):V"/> <constant value="a"/> <constant value="Project"/> <constant value="Ant"/> <constant value="NTransientLink;.addTargetElement(SJ):V"/> <constant value="NTransientLinkSet;.addLink(NTransientLink;):V"/> <constant value="13:7-13:18"/> <constant value="__matchMacro2Property"/> <constant value="Macro"/> <constant value="Macro2Property"/> <constant value="PropertyValue"/> <constant value="32:7-32:24"/> <constant value="__matchRule2Target"/> <constant value="Rule"/> <constant value="Rule2Target"/> <constant value="Target"/> <constant value="47:5-47:15"/> <constant value="__matchShellLine2Task_Display"/> <constant value="ShellLine"/> <constant value="display"/> <constant value="44"/> <constant value="ShellLine2Task_Display"/> <constant value="e"/> <constant value="Echo"/> <constant value="x"/> <constant value="Exec"/> <constant value="62:5-62:6"/> <constant value="62:5-62:14"/> <constant value="65:5-65:13"/> <constant value="69:5-69:13"/> <constant value="__matchShellLine2Task_NoDisplay"/> <constant value="J.not():J"/> <constant value="39"/> <constant value="ShellLine2Task_NoDisplay"/> <constant value="81:9-81:10"/> <constant value="81:9-81:18"/> <constant value="81:5-81:18"/> <constant value="84:5-84:13"/> <constant value="__resolve__"/> <constant value="J"/> <constant value="J.oclIsKindOf(J):B"/> <constant value="18"/> <constant value="NTransientLinkSet;.getLinkBySourceElement(S):QNTransientLink;"/> <constant value="J.oclIsUndefined():J"/> <constant value="15"/> <constant value="NTransientLink;.getTargetFromSource(J):J"/> <constant value="17"/> <constant value="30"/> <constant value="2"/> <constant value="A.__resolve__(J):J"/> <constant value="QJ.including(J):QJ"/> <constant value="QJ.flatten():QJ"/> <constant value="value"/> <constant value="resolveTemp"/> <constant value="S"/> <constant value="NTransientLink;.getNamedTargetFromSource(JS):J"/> <constant value="name"/> <constant value="__exec__"/> <constant value="NTransientLinkSet;.getLinksByRule(S):QNTransientLink;"/> <constant value="A.__applyMakefile2Project(NTransientLink;):V"/> <constant value="A.__applyMacro2Property(NTransientLink;):V"/> <constant value="A.__applyRule2Target(NTransientLink;):V"/> <constant value="A.__applyShellLine2Task_Display(NTransientLink;):V"/> <constant value="A.__applyShellLine2Task_NoDisplay(NTransientLink;):V"/> <constant value="__applyMakefile2Project"/> <constant value="NTransientLink;"/> <constant value="NTransientLink;.getSourceElement(S):J"/> <constant value="NTransientLink;.getTargetElement(S):J"/> <constant value="3"/> <constant value="comment"/> <constant value="text"/> <constant value="description"/> <constant value="elements"/> <constant value="4"/> <constant value="J.oclIsKindOf(J):J"/> <constant value="40"/> <constant value="CJ.including(J):CJ"/> <constant value="properties"/> <constant value="61"/> <constant value="targets"/> <constant value="82"/> <constant value="J.first():J"/> <constant value="default"/> <constant value="ID"/> <constant value="a0"/> <constant value="J.+(J):J"/> <constant value="14:18-14:19"/> <constant value="14:18-14:24"/> <constant value="14:4-14:24"/> <constant value="15:19-15:20"/> <constant value="15:19-15:28"/> <constant value="15:19-15:33"/> <constant value="15:4-15:33"/> <constant value="16:18-16:19"/> <constant value="16:18-16:28"/> <constant value="17:16-17:17"/> <constant value="17:30-17:40"/> <constant value="17:16-17:41"/> <constant value="16:18-17:42"/> <constant value="16:4-17:42"/> <constant value="18:18-18:19"/> <constant value="18:18-18:28"/> <constant value="19:16-19:17"/> <constant value="19:30-19:39"/> <constant value="19:16-19:40"/> <constant value="18:18-19:41"/> <constant value="18:4-19:41"/> <constant value="20:18-20:19"/> <constant value="20:18-20:28"/> <constant value="21:16-21:17"/> <constant value="21:30-21:39"/> <constant value="21:16-21:40"/> <constant value="20:18-21:41"/> <constant value="20:18-21:52"/> <constant value="20:4-21:52"/> <constant value="22:10-22:11"/> <constant value="22:10-22:14"/> <constant value="22:17-22:21"/> <constant value="22:10-22:21"/> <constant value="22:4-22:21"/> <constant value="c"/> <constant value="link"/> <constant value="__applyMacro2Property"/> <constant value="a1"/> <constant value="33:13-33:14"/> <constant value="33:13-33:19"/> <constant value="33:4-33:19"/> <constant value="34:13-34:14"/> <constant value="34:13-34:20"/> <constant value="34:4-34:20"/> <constant value="35:10-35:11"/> <constant value="35:10-35:14"/> <constant value="35:17-35:21"/> <constant value="35:10-35:21"/> <constant value="35:4-35:21"/> <constant value="__applyRule2Target"/> <constant value="shellLines"/> <constant value="tasks"/> <constant value="dependencies"/> <constant value="RuleDep"/> <constant value="42"/> <constant value="ruledep"/> <constant value="depends"/> <constant value="a2"/> <constant value="48:15-48:16"/> <constant value="48:15-48:21"/> <constant value="48:4-48:21"/> <constant value="49:13-49:14"/> <constant value="49:13-49:25"/> <constant value="49:4-49:25"/> <constant value="50:15-50:16"/> <constant value="50:15-50:29"/> <constant value="51:19-51:20"/> <constant value="51:33-51:45"/> <constant value="51:19-51:46"/> <constant value="50:15-51:47"/> <constant value="52:21-52:22"/> <constant value="52:21-52:30"/> <constant value="50:15-52:31"/> <constant value="50:4-52:31"/> <constant value="53:10-53:11"/> <constant value="53:10-53:14"/> <constant value="53:17-53:21"/> <constant value="53:10-53:21"/> <constant value="53:4-53:21"/> <constant value="__applyShellLine2Task_Display"/> <constant value="command"/> <constant value="message"/> <constant value="ruleShellLine"/> <constant value="target"/> <constant value="a3"/> <constant value="executable"/> <constant value="a4"/> <constant value="66:15-66:16"/> <constant value="66:15-66:24"/> <constant value="66:4-66:24"/> <constant value="67:14-67:15"/> <constant value="67:14-67:29"/> <constant value="67:4-67:29"/> <constant value="68:10-68:11"/> <constant value="68:10-68:14"/> <constant value="68:17-68:21"/> <constant value="68:10-68:21"/> <constant value="68:4-68:21"/> <constant value="70:18-70:19"/> <constant value="70:18-70:27"/> <constant value="70:4-70:27"/> <constant value="71:14-71:15"/> <constant value="71:14-71:29"/> <constant value="71:4-71:29"/> <constant value="72:10-72:11"/> <constant value="72:10-72:14"/> <constant value="72:17-72:21"/> <constant value="72:10-72:21"/> <constant value="72:4-72:21"/> <constant value="__applyShellLine2Task_NoDisplay"/> <constant value="a5"/> <constant value="85:18-85:19"/> <constant value="85:18-85:27"/> <constant value="85:4-85:27"/> <constant value="86:14-86:15"/> <constant value="86:14-86:29"/> <constant value="86:4-86:29"/> <constant value="87:10-87:11"/> <constant value="87:10-87:14"/> <constant value="87:17-87:21"/> <constant value="87:10-87:21"/> <constant value="87:4-87:21"/> </cp> <field name="1" type="2"/> <field name="3" type="4"/> <operation name="5"> <context type="6"/> <parameters> </parameters> <code> <load arg="7"/> <push arg="8"/> <push arg="9"/> <new/> <dup/> <push arg="10"/> <call arg="11"/> <dup/> <push arg="12"/> <push arg="9"/> <new/> <dup/> <push arg="13"/> <call arg="11"/> <call arg="14"/> <set arg="3"/> <load arg="7"/> <push arg="15"/> <push arg="9"/> <new/> <set arg="1"/> <load arg="7"/> <call arg="16"/> <load arg="7"/> <call arg="17"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="18" begin="0" end="24"/> </localvariabletable> </operation> <operation name="19"> <context type="6"/> <parameters> </parameters> <code> <load arg="7"/> <call arg="20"/> <load arg="7"/> <call arg="21"/> <load arg="7"/> <call arg="22"/> <load arg="7"/> <call arg="23"/> <load arg="7"/> <call arg="24"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="18" begin="0" end="9"/> </localvariabletable> </operation> <operation name="25"> <context type="6"/> <parameters> </parameters> <code> <push arg="26"/> <push arg="27"/> <findme/> <push arg="28"/> <push arg="9"/> <new/> <swap/> <dup_x1/> <push arg="29"/> <call arg="30"/> <call arg="31"/> <swap/> <pop/> <iterate/> <store arg="32"/> <pusht/> <call arg="33"/> <if arg="34"/> <load arg="7"/> <get arg="1"/> <push arg="35"/> <push arg="9"/> <new/> <dup/> <push arg="36"/> <call arg="37"/> <dup/> <push arg="38"/> <load arg="32"/> <call arg="39"/> <dup/> <push arg="40"/> <push arg="41"/> <push arg="42"/> <new/> <call arg="43"/> <call arg="44"/> <enditerate/> </code> <linenumbertable> <lne id="45" begin="32" end="34"/> </linenumbertable> <localvariabletable> <lve slot="1" name="38" begin="14" end="36"/> <lve slot="0" name="18" begin="0" end="37"/> </localvariabletable> </operation> <operation name="46"> <context type="6"/> <parameters> </parameters> <code> <push arg="47"/> <push arg="27"/> <findme/> <push arg="28"/> <push arg="9"/> <new/> <swap/> <dup_x1/> <push arg="29"/> <call arg="30"/> <call arg="31"/> <swap/> <pop/> <iterate/> <store arg="32"/> <pusht/> <call arg="33"/> <if arg="34"/> <load arg="7"/> <get arg="1"/> <push arg="35"/> <push arg="9"/> <new/> <dup/> <push arg="48"/> <call arg="37"/> <dup/> <push arg="38"/> <load arg="32"/> <call arg="39"/> <dup/> <push arg="40"/> <push arg="49"/> <push arg="42"/> <new/> <call arg="43"/> <call arg="44"/> <enditerate/> </code> <linenumbertable> <lne id="50" begin="32" end="34"/> </linenumbertable> <localvariabletable> <lve slot="1" name="38" begin="14" end="36"/> <lve slot="0" name="18" begin="0" end="37"/> </localvariabletable> </operation> <operation name="51"> <context type="6"/> <parameters> </parameters> <code> <push arg="52"/> <push arg="27"/> <findme/> <push arg="28"/> <push arg="9"/> <new/> <swap/> <dup_x1/> <push arg="29"/> <call arg="30"/> <call arg="31"/> <swap/> <pop/> <iterate/> <store arg="32"/> <pusht/> <call arg="33"/> <if arg="34"/> <load arg="7"/> <get arg="1"/> <push arg="35"/> <push arg="9"/> <new/> <dup/> <push arg="53"/> <call arg="37"/> <dup/> <push arg="38"/> <load arg="32"/> <call arg="39"/> <dup/> <push arg="40"/> <push arg="54"/> <push arg="42"/> <new/> <call arg="43"/> <call arg="44"/> <enditerate/> </code> <linenumbertable> <lne id="55" begin="32" end="34"/> </linenumbertable> <localvariabletable> <lve slot="1" name="38" begin="14" end="36"/> <lve slot="0" name="18" begin="0" end="37"/> </localvariabletable> </operation> <operation name="56"> <context type="6"/> <parameters> </parameters> <code> <push arg="57"/> <push arg="27"/> <findme/> <push arg="28"/> <push arg="9"/> <new/> <swap/> <dup_x1/> <push arg="29"/> <call arg="30"/> <call arg="31"/> <swap/> <pop/> <iterate/> <store arg="32"/> <load arg="32"/> <get arg="58"/> <call arg="33"/> <if arg="59"/> <load arg="7"/> <get arg="1"/> <push arg="35"/> <push arg="9"/> <new/> <dup/> <push arg="60"/> <call arg="37"/> <dup/> <push arg="38"/> <load arg="32"/> <call arg="39"/> <dup/> <push arg="61"/> <push arg="62"/> <push arg="42"/> <new/> <call arg="43"/> <dup/> <push arg="63"/> <push arg="64"/> <push arg="42"/> <new/> <call arg="43"/> <call arg="44"/> <enditerate/> </code> <linenumbertable> <lne id="65" begin="15" end="15"/> <lne id="66" begin="15" end="16"/> <lne id="67" begin="33" end="35"/> <lne id="68" begin="39" end="41"/> </linenumbertable> <localvariabletable> <lve slot="1" name="38" begin="14" end="43"/> <lve slot="0" name="18" begin="0" end="44"/> </localvariabletable> </operation> <operation name="69"> <context type="6"/> <parameters> </parameters> <code> <push arg="57"/> <push arg="27"/> <findme/> <push arg="28"/> <push arg="9"/> <new/> <swap/> <dup_x1/> <push arg="29"/> <call arg="30"/> <call arg="31"/> <swap/> <pop/> <iterate/> <store arg="32"/> <load arg="32"/> <get arg="58"/> <call arg="70"/> <call arg="33"/> <if arg="71"/> <load arg="7"/> <get arg="1"/> <push arg="35"/> <push arg="9"/> <new/> <dup/> <push arg="72"/> <call arg="37"/> <dup/> <push arg="38"/> <load arg="32"/> <call arg="39"/> <dup/> <push arg="63"/> <push arg="64"/> <push arg="42"/> <new/> <call arg="43"/> <call arg="44"/> <enditerate/> </code> <linenumbertable> <lne id="73" begin="15" end="15"/> <lne id="74" begin="15" end="16"/> <lne id="75" begin="15" end="17"/> <lne id="76" begin="34" end="36"/> </linenumbertable> <localvariabletable> <lve slot="1" name="38" begin="14" end="38"/> <lve slot="0" name="18" begin="0" end="39"/> </localvariabletable> </operation> <operation name="77"> <context type="6"/> <parameters> <parameter name="32" type="78"/> </parameters> <code> <load arg="32"/> <load arg="7"/> <get arg="3"/> <call arg="79"/> <if arg="80"/> <load arg="7"/> <get arg="1"/> <load arg="32"/> <call arg="81"/> <dup/> <call arg="82"/> <if arg="83"/> <load arg="32"/> <call arg="84"/> <goto arg="85"/> <pop/> <load arg="32"/> <goto arg="86"/> <push arg="28"/> <push arg="9"/> <new/> <load arg="32"/> <iterate/> <store arg="87"/> <load arg="7"/> <load arg="87"/> <call arg="88"/> <call arg="89"/> <enditerate/> <call arg="90"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="2" name="61" begin="23" end="27"/> <lve slot="0" name="18" begin="0" end="29"/> <lve slot="1" name="91" begin="0" end="29"/> </localvariabletable> </operation> <operation name="92"> <context type="6"/> <parameters> <parameter name="32" type="78"/> <parameter name="87" type="93"/> </parameters> <code> <load arg="7"/> <get arg="1"/> <load arg="32"/> <call arg="81"/> <load arg="32"/> <load arg="87"/> <call arg="94"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="18" begin="0" end="6"/> <lve slot="1" name="91" begin="0" end="6"/> <lve slot="2" name="95" begin="0" end="6"/> </localvariabletable> </operation> <operation name="96"> <context type="6"/> <parameters> </parameters> <code> <load arg="7"/> <get arg="1"/> <push arg="36"/> <call arg="97"/> <iterate/> <store arg="32"/> <load arg="7"/> <load arg="32"/> <call arg="98"/> <enditerate/> <load arg="7"/> <get arg="1"/> <push arg="48"/> <call arg="97"/> <iterate/> <store arg="32"/> <load arg="7"/> <load arg="32"/> <call arg="99"/> <enditerate/> <load arg="7"/> <get arg="1"/> <push arg="53"/> <call arg="97"/> <iterate/> <store arg="32"/> <load arg="7"/> <load arg="32"/> <call arg="100"/> <enditerate/> <load arg="7"/> <get arg="1"/> <push arg="60"/> <call arg="97"/> <iterate/> <store arg="32"/> <load arg="7"/> <load arg="32"/> <call arg="101"/> <enditerate/> <load arg="7"/> <get arg="1"/> <push arg="72"/> <call arg="97"/> <iterate/> <store arg="32"/> <load arg="7"/> <load arg="32"/> <call arg="102"/> <enditerate/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="1" name="61" begin="5" end="8"/> <lve slot="1" name="61" begin="15" end="18"/> <lve slot="1" name="61" begin="25" end="28"/> <lve slot="1" name="61" begin="35" end="38"/> <lve slot="1" name="61" begin="45" end="48"/> <lve slot="0" name="18" begin="0" end="49"/> </localvariabletable> </operation> <operation name="103"> <context type="6"/> <parameters> <parameter name="32" type="104"/> </parameters> <code> <load arg="32"/> <push arg="38"/> <call arg="105"/> <store arg="87"/> <load arg="32"/> <push arg="40"/> <call arg="106"/> <store arg="107"/> <load arg="107"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="95"/> <call arg="88"/> <set arg="95"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="108"/> <get arg="109"/> <call arg="88"/> <set arg="110"/> <dup/> <load arg="7"/> <push arg="28"/> <push arg="9"/> <new/> <load arg="87"/> <get arg="111"/> <iterate/> <store arg="112"/> <load arg="112"/> <push arg="47"/> <push arg="27"/> <findme/> <call arg="113"/> <call arg="33"/> <if arg="114"/> <load arg="112"/> <call arg="115"/> <enditerate/> <call arg="88"/> <set arg="116"/> <dup/> <load arg="7"/> <push arg="28"/> <push arg="9"/> <new/> <load arg="87"/> <get arg="111"/> <iterate/> <store arg="112"/> <load arg="112"/> <push arg="52"/> <push arg="27"/> <findme/> <call arg="113"/> <call arg="33"/> <if arg="117"/> <load arg="112"/> <call arg="115"/> <enditerate/> <call arg="88"/> <set arg="118"/> <dup/> <load arg="7"/> <push arg="28"/> <push arg="9"/> <new/> <load arg="87"/> <get arg="111"/> <iterate/> <store arg="112"/> <load arg="112"/> <push arg="52"/> <push arg="27"/> <findme/> <call arg="113"/> <call arg="33"/> <if arg="119"/> <load arg="112"/> <call arg="115"/> <enditerate/> <call arg="120"/> <call arg="88"/> <set arg="121"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="122"/> <push arg="123"/> <call arg="124"/> <call arg="88"/> <set arg="122"/> <pop/> </code> <linenumbertable> <lne id="125" begin="11" end="11"/> <lne id="126" begin="11" end="12"/> <lne id="127" begin="9" end="14"/> <lne id="128" begin="17" end="17"/> <lne id="129" begin="17" end="18"/> <lne id="130" begin="17" end="19"/> <lne id="131" begin="15" end="21"/> <lne id="132" begin="27" end="27"/> <lne id="133" begin="27" end="28"/> <lne id="134" begin="31" end="31"/> <lne id="135" begin="32" end="34"/> <lne id="136" begin="31" end="35"/> <lne id="137" begin="24" end="40"/> <lne id="138" begin="22" end="42"/> <lne id="139" begin="48" end="48"/> <lne id="140" begin="48" end="49"/> <lne id="141" begin="52" end="52"/> <lne id="142" begin="53" end="55"/> <lne id="143" begin="52" end="56"/> <lne id="144" begin="45" end="61"/> <lne id="145" begin="43" end="63"/> <lne id="146" begin="69" end="69"/> <lne id="147" begin="69" end="70"/> <lne id="148" begin="73" end="73"/> <lne id="149" begin="74" end="76"/> <lne id="150" begin="73" end="77"/> <lne id="151" begin="66" end="82"/> <lne id="152" begin="66" end="83"/> <lne id="153" begin="64" end="85"/> <lne id="154" begin="88" end="88"/> <lne id="155" begin="88" end="89"/> <lne id="156" begin="90" end="90"/> <lne id="157" begin="88" end="91"/> <lne id="158" begin="86" end="93"/> </linenumbertable> <localvariabletable> <lve slot="4" name="159" begin="30" end="39"/> <lve slot="4" name="159" begin="51" end="60"/> <lve slot="4" name="159" begin="72" end="81"/> <lve slot="2" name="38" begin="3" end="94"/> <lve slot="3" name="40" begin="7" end="94"/> <lve slot="0" name="18" begin="0" end="94"/> <lve slot="1" name="160" begin="0" end="94"/> </localvariabletable> </operation> <operation name="161"> <context type="6"/> <parameters> <parameter name="32" type="104"/> </parameters> <code> <load arg="32"/> <push arg="38"/> <call arg="105"/> <store arg="87"/> <load arg="32"/> <push arg="40"/> <call arg="106"/> <store arg="107"/> <load arg="107"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="95"/> <call arg="88"/> <set arg="95"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="91"/> <call arg="88"/> <set arg="91"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="122"/> <push arg="162"/> <call arg="124"/> <call arg="88"/> <set arg="122"/> <pop/> </code> <linenumbertable> <lne id="163" begin="11" end="11"/> <lne id="164" begin="11" end="12"/> <lne id="165" begin="9" end="14"/> <lne id="166" begin="17" end="17"/> <lne id="167" begin="17" end="18"/> <lne id="168" begin="15" end="20"/> <lne id="169" begin="23" end="23"/> <lne id="170" begin="23" end="24"/> <lne id="171" begin="25" end="25"/> <lne id="172" begin="23" end="26"/> <lne id="173" begin="21" end="28"/> </linenumbertable> <localvariabletable> <lve slot="2" name="38" begin="3" end="29"/> <lve slot="3" name="40" begin="7" end="29"/> <lve slot="0" name="18" begin="0" end="29"/> <lve slot="1" name="160" begin="0" end="29"/> </localvariabletable> </operation> <operation name="174"> <context type="6"/> <parameters> <parameter name="32" type="104"/> </parameters> <code> <load arg="32"/> <push arg="38"/> <call arg="105"/> <store arg="87"/> <load arg="32"/> <push arg="40"/> <call arg="106"/> <store arg="107"/> <load arg="107"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="95"/> <call arg="88"/> <set arg="95"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="175"/> <call arg="88"/> <set arg="176"/> <dup/> <load arg="7"/> <push arg="28"/> <push arg="9"/> <new/> <push arg="28"/> <push arg="9"/> <new/> <load arg="87"/> <get arg="177"/> <iterate/> <store arg="112"/> <load arg="112"/> <push arg="178"/> <push arg="27"/> <findme/> <call arg="113"/> <call arg="33"/> <if arg="179"/> <load arg="112"/> <call arg="115"/> <enditerate/> <iterate/> <store arg="112"/> <load arg="112"/> <get arg="180"/> <call arg="115"/> <enditerate/> <call arg="88"/> <set arg="181"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="122"/> <push arg="182"/> <call arg="124"/> <call arg="88"/> <set arg="122"/> <pop/> </code> <linenumbertable> <lne id="183" begin="11" end="11"/> <lne id="184" begin="11" end="12"/> <lne id="185" begin="9" end="14"/> <lne id="186" begin="17" end="17"/> <lne id="187" begin="17" end="18"/> <lne id="188" begin="15" end="20"/> <lne id="189" begin="29" end="29"/> <lne id="190" begin="29" end="30"/> <lne id="191" begin="33" end="33"/> <lne id="192" begin="34" end="36"/> <lne id="193" begin="33" end="37"/> <lne id="194" begin="26" end="42"/> <lne id="195" begin="45" end="45"/> <lne id="196" begin="45" end="46"/> <lne id="197" begin="23" end="48"/> <lne id="198" begin="21" end="50"/> <lne id="199" begin="53" end="53"/> <lne id="200" begin="53" end="54"/> <lne id="201" begin="55" end="55"/> <lne id="202" begin="53" end="56"/> <lne id="203" begin="51" end="58"/> </linenumbertable> <localvariabletable> <lve slot="4" name="61" begin="32" end="41"/> <lve slot="4" name="61" begin="44" end="47"/> <lve slot="2" name="38" begin="3" end="59"/> <lve slot="3" name="40" begin="7" end="59"/> <lve slot="0" name="18" begin="0" end="59"/> <lve slot="1" name="160" begin="0" end="59"/> </localvariabletable> </operation> <operation name="204"> <context type="6"/> <parameters> <parameter name="32" type="104"/> </parameters> <code> <load arg="32"/> <push arg="38"/> <call arg="105"/> <store arg="87"/> <load arg="32"/> <push arg="61"/> <call arg="106"/> <store arg="107"/> <load arg="32"/> <push arg="63"/> <call arg="106"/> <store arg="112"/> <load arg="107"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="205"/> <call arg="88"/> <set arg="206"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="207"/> <call arg="88"/> <set arg="208"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="122"/> <push arg="209"/> <call arg="124"/> <call arg="88"/> <set arg="122"/> <pop/> <load arg="112"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="205"/> <call arg="88"/> <set arg="210"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="207"/> <call arg="88"/> <set arg="208"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="122"/> <push arg="211"/> <call arg="124"/> <call arg="88"/> <set arg="122"/> <pop/> </code> <linenumbertable> <lne id="212" begin="15" end="15"/> <lne id="213" begin="15" end="16"/> <lne id="214" begin="13" end="18"/> <lne id="215" begin="21" end="21"/> <lne id="216" begin="21" end="22"/> <lne id="217" begin="19" end="24"/> <lne id="218" begin="27" end="27"/> <lne id="219" begin="27" end="28"/> <lne id="220" begin="29" end="29"/> <lne id="221" begin="27" end="30"/> <lne id="222" begin="25" end="32"/> <lne id="223" begin="37" end="37"/> <lne id="224" begin="37" end="38"/> <lne id="225" begin="35" end="40"/> <lne id="226" begin="43" end="43"/> <lne id="227" begin="43" end="44"/> <lne id="228" begin="41" end="46"/> <lne id="229" begin="49" end="49"/> <lne id="230" begin="49" end="50"/> <lne id="231" begin="51" end="51"/> <lne id="232" begin="49" end="52"/> <lne id="233" begin="47" end="54"/> </linenumbertable> <localvariabletable> <lve slot="2" name="38" begin="3" end="55"/> <lve slot="3" name="61" begin="7" end="55"/> <lve slot="4" name="63" begin="11" end="55"/> <lve slot="0" name="18" begin="0" end="55"/> <lve slot="1" name="160" begin="0" end="55"/> </localvariabletable> </operation> <operation name="234"> <context type="6"/> <parameters> <parameter name="32" type="104"/> </parameters> <code> <load arg="32"/> <push arg="38"/> <call arg="105"/> <store arg="87"/> <load arg="32"/> <push arg="63"/> <call arg="106"/> <store arg="107"/> <load arg="107"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="205"/> <call arg="88"/> <set arg="210"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="207"/> <call arg="88"/> <set arg="208"/> <dup/> <load arg="7"/> <load arg="87"/> <get arg="122"/> <push arg="235"/> <call arg="124"/> <call arg="88"/> <set arg="122"/> <pop/> </code> <linenumbertable> <lne id="236" begin="11" end="11"/> <lne id="237" begin="11" end="12"/> <lne id="238" begin="9" end="14"/> <lne id="239" begin="17" end="17"/> <lne id="240" begin="17" end="18"/> <lne id="241" begin="15" end="20"/> <lne id="242" begin="23" end="23"/> <lne id="243" begin="23" end="24"/> <lne id="244" begin="25" end="25"/> <lne id="245" begin="23" end="26"/> <lne id="246" begin="21" end="28"/> </linenumbertable> <localvariabletable> <lve slot="2" name="38" begin="3" end="29"/> <lve slot="3" name="63" begin="7" end="29"/> <lve slot="0" name="18" begin="0" end="29"/> <lve slot="1" name="160" begin="0" end="29"/> </localvariabletable> </operation> </asm>
24.998305
83
0.546851
b80ceff35deda47e00dd208ead599e7e8d0b2347
331,666
asm
Assembly
roms/Donkey Kong.asm
mattconsto/nes
5107ead254a74492335414461a2ae8401d8bcbeb
[ "MIT" ]
4
2015-03-24T14:07:34.000Z
2018-09-05T18:06:08.000Z
roms/Donkey Kong.asm
mattconsto/nes
5107ead254a74492335414461a2ae8401d8bcbeb
[ "MIT" ]
null
null
null
roms/Donkey Kong.asm
mattconsto/nes
5107ead254a74492335414461a2ae8401d8bcbeb
[ "MIT" ]
null
null
null
00000000: 4E4553 LSR $5345 00000003: 1A .DB $1A 00000004: 0101 ORA ($01,X) 00000006: 00 BRK 00000007: 00 BRK 00000008: 00 BRK 00000009: 00 BRK 0000000A: 00 BRK 0000000B: 00 BRK 0000000C: 00 BRK 0000000D: 00 BRK 0000000E: 00 BRK 0000000F: 00 BRK 00000010: 207006 JSR $0670 00000013: 00 BRK 00000014: 206406 JSR $0664 00000017: 00 BRK 00000018: 207806 JSR $0678 0000001B: 00 BRK 0000001C: 20B704 JSR $04B7 0000001F: 00 BRK 00000020: 20BC01 JSR $01BC 00000023: 00 BRK 00000024: 0108 ORA ($08,X) 00000026: 02 .DB $02 00000027: 08 PHP 00000028: 02 .DB $02 00000029: 00 BRK 0000002A: 0501 ORA $01 0000002C: 00 BRK 0000002D: 02 .DB $02 0000002E: 0101 ORA ($01,X) 00000030: 0105 ORA ($05,X) 00000032: 0105 ORA ($05,X) 00000034: 0102 ORA ($02,X) 00000036: 0102 ORA ($02,X) 00000038: DB .DB $DB 00000039: 60 RTS 0000003A: E2 .DB $E2 0000003B: 5514 EOR $14,X 0000003D: 2001F9 JSR $F901 00000040: A0E0 LDY #$E0 00000042: 3010 BMI $10 00000044: 1001 BPL $01 00000046: 5001 BVC $01 00000048: 30D0 BMI $D0 0000004A: FF .DB $FF 0000004B: FF .DB $FF 0000004C: 3EC657 ROL $57C6,X 0000004F: C6E1 DEC $E1 00000051: C660 DEC $60 00000053: C7 .DB $C7 00000054: 7DC7E4 ADC $E4C7,X 00000057: C6F1 DEC $F1 00000059: C653 DEC $53 0000005B: C7 .DB $C7 0000005C: 08 PHP 0000005D: C7 .DB $C7 0000005E: 19C71C ORA $1CC7,Y 00000061: C7 .DB $C7 00000062: 35C7 AND $C7,X 00000064: 4EC78C LSR $8CC7 00000067: C0CF CPY #$CF 00000069: C061 CPY #$61 0000006B: C160 CMP ($60,X) 0000006D: 04 .DB $04 0000006E: C3 .DB $C3 0000006F: C0DF CPY #$DF 00000071: C06E CPY #$6E 00000073: C1C4 CMP ($C4,X) 00000075: C2 .DB $C2 00000076: C8 INY 00000077: C2 .DB $C2 00000078: 86C1 STX $C1 0000007A: B0C1 BCS $C1 0000007C: 92 .DB $92 0000007D: C1CF CMP ($CF,X) 0000007F: C1D5 CMP ($D5,X) 00000081: C1DB CMP ($DB,X) 00000083: C1E1 CMP ($E1,X) 00000085: C19E CMP ($9E,X) 00000087: C1E7 CMP ($E7,X) 00000089: C10C CMP ($0C,X) 0000008B: C670 DEC $70 0000008D: C689 DEC $89 0000008F: C625 DEC $25 00000091: C6A2 DEC $A2 00000093: C6CC DEC $CC 00000095: 00 BRK 00000096: 8EC196 STX $96C1 00000099: C1A6 CMP ($A6,X) 0000009B: C600 DEC $00 0000009D: D8 CLD 0000009E: 00 BRK 0000009F: 00 BRK 000000A0: 0100 ORA ($00,X) 000000A2: 80 .DB $80 000000A3: D7 .DB $D7 000000A4: 04 .DB $04 000000A5: 18 CLC 000000A6: 06FE ASL $FE 000000A8: C8 INY 000000A9: BC04E8 LDY $E804,X 000000AC: 09FE ORA #$FE 000000AE: 209E04 JSR $049E 000000B1: 18 CLC 000000B2: 09FE ORA #$FE 000000B4: C8 INY 000000B5: 80 .DB $80 000000B6: 04 .DB $04 000000B7: E8 INX 000000B8: 09FE ORA #$FE 000000BA: 206204 JSR $0462 000000BD: 18 CLC 000000BE: 09FE ORA #$FE 000000C0: C8 INY 000000C1: 44 .DB $44 000000C2: 04 .DB $04 000000C3: E8 INX 000000C4: 06FE ASL $FE 000000C6: 80 .DB $80 000000C7: 28 PLP 000000C8: 04 .DB $04 000000C9: 00 BRK 000000CA: 01FE ORA ($FE,X) 000000CC: BC9E80 LDY $809E,X 000000CF: 62 .DB $62 000000D0: 44 .DB $44 000000D1: 28 PLP 000000D2: FF .DB $FF 000000D3: 00 BRK 000000D4: 00 BRK 000000D5: 80 .DB $80 000000D6: 00 BRK 000000D7: 00 BRK 000000D8: 00 BRK 000000D9: 18 CLC 000000DA: 00 BRK 000000DB: 00 BRK 000000DC: 00 BRK 000000DD: 1000 BPL $00 000000DF: E0BC CPX #$BC 000000E1: 00 BRK 000000E2: 109E BPL $9E 000000E4: 00 BRK 000000E5: E080 CPX #$80 000000E7: 00 BRK 000000E8: 1062 BPL $62 000000EA: 00 BRK 000000EB: E044 CPX #$44 000000ED: 00 BRK 000000EE: FE0000 INC $0000,X 000000F1: 1003 BPL $03 000000F3: C8 INY 000000F4: BC08C8 LDY $C808,X 000000F7: 80 .DB $80 000000F8: 04 .DB $04 000000F9: B8 CLV 000000FA: 74 .DB $74 000000FB: 1068 BPL $68 000000FD: 58 CLI 000000FE: 14 .DB $14 000000FF: C8 INY 00000100: 44 .DB $44 00000101: 04 .DB $04 00000102: 60 RTS 00000103: CF .DB $CF 00000104: 0C .DB $0C 00000105: 709B BVS $9B 00000107: 00 BRK 00000108: 309E BMI $9E 0000010A: 04 .DB $04 0000010B: 5085 BVC $85 0000010D: 08 PHP 0000010E: 80 .DB $80 0000010F: 7D0030 ADC $3000,X 00000112: 62 .DB $62 00000113: 04 .DB $04 00000114: 58 CLI 00000115: 60 RTS 00000116: 00 BRK 00000117: 9028 BCC $28 00000119: 18 CLC 0000011A: FE0000 INC $0000,X 0000011D: 08 PHP 0000011E: 1D0000 ORA $0000,X 00000121: 08 PHP 00000122: 17 .DB $17 00000123: 00 BRK 00000124: 00 BRK 00000125: 08 PHP 00000126: 18 CLC 00000127: 00 BRK 00000128: 00 BRK 00000129: 08 PHP 0000012A: 0900 ORA #$00 0000012C: 00 BRK 0000012D: 08 PHP 0000012E: 0B .DB $0B 0000012F: 00 BRK 00000130: 00 BRK 00000131: 08 PHP 00000132: 07 .DB $07 00000133: 00 BRK 00000134: 00 BRK 00000135: 08 PHP 00000136: 19C8BC ORA $BCC8,Y 00000139: 00 BRK 0000013A: 709B BVS $9B 0000013C: 00 BRK 0000013D: 309E BMI $9E 0000013F: 00 BRK 00000140: C8 INY 00000141: 80 .DB $80 00000142: 00 BRK 00000143: 80 .DB $80 00000144: 7D0030 ADC $3000,X 00000147: 62 .DB $62 00000148: 00 BRK 00000149: 58 CLI 0000014A: 60 RTS 0000014B: 00 BRK 0000014C: C8 INY 0000014D: 44 .DB $44 0000014E: 00 BRK 0000014F: 9028 BCC $28 00000151: 00 BRK 00000152: FE0000 INC $0000,X 00000155: 08 PHP 00000156: 0D2424 ORA $2424 00000159: 54 .DB $54 0000015A: 54 .DB $54 0000015B: 60 RTS 0000015C: 60 RTS 0000015D: 64 .DB $64 0000015E: 64 .DB $64 0000015F: 60 RTS 00000160: 60 RTS 00000161: 2424 BIT $24 00000163: 68 PLA 00000164: 68 PLA 00000165: 68 PLA 00000166: 68 PLA 00000167: 68 PLA 00000168: 68 PLA 00000169: 2424 BIT $24 0000016B: 2454 BIT $54 0000016D: 54 .DB $54 0000016E: 54 .DB $54 0000016F: 00 BRK 00000170: 00 BRK 00000171: 60 RTS 00000172: B7 .DB $B7 00000173: 00 BRK 00000174: 507B BVC $7B 00000176: 00 BRK 00000177: B8 CLV 00000178: 5C .DB $5C 00000179: 00 BRK 0000017A: 68 PLA 0000017B: 40 RTI 0000017C: 00 BRK 0000017D: FE0000 INC $0000,X 00000180: 08 PHP 00000181: 18 CLC 00000182: CA DEX 00000183: A7 .DB $A7 00000184: 8E6B51 STX $516B 00000187: 5C .DB $5C 00000188: 2C4C2C BIT $2C4C 0000018B: 64 .DB $64 0000018C: C6AA DEC $AA 0000018E: 8C6D4D STY $4D6D 00000191: C46C CPY $6C 00000193: 7C .DB $7C 00000194: 54 .DB $54 00000195: C408 CPY $08 00000197: 110A ORA ($0A),Y 00000199: 1108 ORA ($08),Y 0000019B: 100A BPL $0A 0000019D: 1108 ORA ($08),Y 0000019F: 0F .DB $0F 000001A0: 0A ASL A 000001A1: 1105 ORA ($05),Y 000001A3: 010C ORA ($0C,X) 000001A5: 0905 ORA #$05 000001A7: 050A ORA $0A 000001A9: 0A ASL A 000001AA: 08 PHP 000001AB: 1008 BPL $08 000001AD: 1004 BPL $04 000001AF: 04 .DB $04 000001B0: 0C .DB $0C 000001B1: 0D0C14 ORA $140C 000001B4: 1C .DB $1C 000001B5: 1018 BPL $18 000001B7: 200305 JSR $0503 000001BA: 02 .DB $02 000001BB: 03 .DB $03 000001BC: 00 BRK 000001BD: 00 BRK 000001BE: 03 .DB $03 000001BF: 04 .DB $04 000001C0: 00 BRK 000001C1: 00 BRK 000001C2: 08 PHP 000001C3: 08 PHP 000001C4: 10E0 BPL $E0 000001C6: 10E0 BPL $E0 000001C8: 0C .DB $0C 000001C9: E008 CPX #$08 000001CB: E8 INX 000001CC: 0102 ORA ($02,X) 000001CE: 04 .DB $04 000001CF: 08 PHP 000001D0: 1020 BPL $20 000001D2: 40 RTI 000001D3: 80 .DB $80 000001D4: 13 .DB $13 000001D5: 3048 BMI $48 000001D7: 60 RTS 000001D8: 78 SEI 000001D9: 90A8 BCC $A8 000001DB: C0E0 CPY #$E0 000001DD: 13 .DB $13 000001DE: DB .DB $DB 000001DF: 4C6A88 JMP $886A 000001E2: A6C5 LDX $C5 000001E4: FE536B INC $6B53,X 000001E7: 8F .DB $8F 000001E8: A7 .DB $A7 000001E9: CA DEX 000001EA: FE526E INC $6E52,X 000001ED: 8CACC5 STY $C5AC 000001F0: FE526C INC $6C52,X 000001F3: 8EA8CA STX $CAA8 000001F6: FE0006 INC $0600,X 000001F9: 08 PHP 000001FA: 08 PHP 000001FB: 193034 ORA $3430,Y 000001FE: 3034 BMI $34 00000200: 3034 BMI $34 00000202: 38 SEC 00000203: 3C .DB $3C 00000204: 3C .DB $3C 00000205: 3C .DB $3C 00000206: 02 .DB $02 00000207: 04 .DB $04 00000208: 02 .DB $02 00000209: 04 .DB $04 0000020A: 07 .DB $07 0000020B: 0507 ORA $07 0000020D: 0903 ORA #$03 0000020F: 00 BRK 00000210: 00 BRK 00000211: 04 .DB $04 00000212: 08 PHP 00000213: 0102 ORA ($02,X) 00000215: 03 .DB $03 00000216: 04 .DB $04 00000217: 5060 BVC $60 00000219: 7080 BVS $80 0000021B: 900E BCC $0E 0000021D: D8 CLD 0000021E: 18 CLC 0000021F: 0EC804 ASL $04C8 00000222: 86C8 STX $C8 00000224: 04 .DB $04 00000225: A6C0 LDX $C0 00000227: 00 BRK 00000228: BEB800 LDX $00B8,Y 0000022B: D6B0 DEC $B0,X 0000022D: 04 .DB $04 0000022E: 4EB004 LSR $04B0 00000231: 0EA004 ASL $04A0 00000234: DEA000 DEC $00A0,X 00000237: C698 DEC $98 00000239: 00 BRK 0000023A: AE9000 LDX $0090 0000023D: 9688 STX $88,Y 0000023F: 14 .DB $14 00000240: C678 DEC $78 00000242: 0C .DB $0C 00000243: 0E7004 ASL $0470 00000246: 4670 LSR $70 00000248: 08 PHP 00000249: 8E6804 STX $0468 0000024C: AE6000 LDX $0060 0000024F: C658 DEC $58 00000251: 00 BRK 00000252: DE5000 DEC $0050,X 00000255: 6640 ROR $40 00000257: 1086 BPL $86 00000259: 28 PLP 0000025A: 00 BRK 0000025B: FEB078 INC $78B0,X 0000025E: 60 RTS 0000025F: 40 RTI 00000260: 28 PLP 00000261: FF .DB $FF 00000262: 00 BRK 00000263: 00 BRK 00000264: 14 .DB $14 00000265: 00 BRK 00000266: 00 BRK 00000267: 00 BRK 00000268: 1C .DB $1C 00000269: 00 BRK 0000026A: 00 BRK 0000026B: 00 BRK 0000026C: 2400 BIT $00 0000026E: 00 BRK 0000026F: 00 BRK 00000270: 2C0000 BIT $0000 00000273: 00 BRK 00000274: 54 .DB $54 00000275: 00 BRK 00000276: 00 BRK 00000277: 00 BRK 00000278: 12 .DB $12 00000279: 00 BRK 0000027A: 00 BRK 0000027B: 00 BRK 0000027C: E400 CPX $00 0000027E: 18 CLC 0000027F: A00C LDY #$0C 00000281: 207010 JSR $1070 00000284: 5070 BVC $70 00000286: 14 .DB $14 00000287: 60 RTS 00000288: 7014 BVS $14 0000028A: 98 TYA 0000028B: 68 PLA 0000028C: 08 PHP 0000028D: C8 INY 0000028E: 78 SEI 0000028F: 08 PHP 00000290: E0A0 CPX #$A0 00000292: 00 BRK 00000293: E050 CPX #$50 00000295: 0C .DB $0C 00000296: B040 BCS $40 00000298: 08 PHP 00000299: 9028 BCC $28 0000029B: 04 .DB $04 0000029C: FE0000 INC $0000,X 0000029F: 08 PHP 000002A0: 1000 BPL $00 000002A2: 00 BRK 000002A3: 08 PHP 000002A4: 18 CLC 000002A5: 00 BRK 000002A6: 00 BRK 000002A7: 08 PHP 000002A8: 200000 JSR $0000 000002AB: 08 PHP 000002AC: 28 PLP 000002AD: 00 BRK 000002AE: 00 BRK 000002AF: 08 PHP 000002B0: 3000 BMI $00 000002B2: 00 BRK 000002B3: 08 PHP 000002B4: 40 RTI 000002B5: 18 CLC 000002B6: A000 LDY #$00 000002B8: 207000 JSR $0070 000002BB: 5070 BVC $70 000002BD: 00 BRK 000002BE: 60 RTS 000002BF: 7000 BVS $00 000002C1: 98 TYA 000002C2: 68 PLA 000002C3: 00 BRK 000002C4: C8 INY 000002C5: 78 SEI 000002C6: 00 BRK 000002C7: E0A0 CPX #$A0 000002C9: 00 BRK 000002CA: E050 CPX #$50 000002CC: 00 BRK 000002CD: B040 BCS $40 000002CF: 00 BRK 000002D0: 9028 BCC $28 000002D2: 00 BRK 000002D3: FE0401 INC $0104,X 000002D6: 1B .DB $1B 000002D7: 0E0001 ASL $0100 000002DA: 12 .DB $12 000002DB: 0130 ORA ($30,X) 000002DD: 38 SEC 000002DE: 40 RTI 000002DF: 48 PHA 000002E0: 5058 BVC $58 000002E2: 00 BRK 000002E3: 00 BRK 000002E4: 0915 ORA #$15 000002E6: 18 CLC 000002E7: 00 BRK 000002E8: 4C5F03 JMP $035F 000002EB: 5C .DB $5C 000002EC: 5F .DB $5F 000002ED: 03 .DB $03 000002EE: C467 CPY $67 000002F0: 03 .DB $03 000002F1: 4C9F13 JMP $139F 000002F4: 5C .DB $5C 000002F5: 9F .DB $9F 000002F6: 13 .DB $13 000002F7: C487 CPY $87 000002F9: 13 .DB $13 000002FA: DC .DB $DC 000002FB: 3F .DB $3F 000002FC: 03 .DB $03 000002FD: DC .DB $DC 000002FE: 67 .DB $67 000002FF: 13 .DB $13 00000300: 06D8 ASL $D8 00000302: 00 BRK 00000303: 06B8 ASL $B8 00000305: 00 BRK 00000306: 1690 ASL $90,X 00000308: 04 .DB $04 00000309: 1E6808 ASL $0868,X 0000030C: 2640 ROL $40 0000030E: 0C .DB $0C 0000030F: FEB890 INC $90B8,X 00000312: 68 PLA 00000313: 40 RTI 00000314: 28 PLP 00000315: FF .DB $FF 00000316: 00 BRK 00000317: 00 BRK 00000318: F500 SBC $00,X 0000031A: 00 BRK 0000031B: 00 BRK 0000031C: D500 CMP $00,X 0000031E: 00 BRK 0000031F: 00 BRK 00000320: C500 CMP $00 00000322: 00 BRK 00000323: 00 BRK 00000324: B500 LDA $00,X 00000326: 10B8 BPL $B8 00000328: 00 BRK 00000329: 78 SEI 0000032A: B8 CLV 0000032B: 00 BRK 0000032C: E8 INX 0000032D: B8 CLV 0000032E: 00 BRK 0000032F: 18 CLC 00000330: 9004 BCC $04 00000332: 60 RTS 00000333: 9004 BCC $04 00000335: 98 TYA 00000336: 9004 BCC $04 00000338: E090 CPX #$90 0000033A: 04 .DB $04 0000033B: 206804 JSR $0468 0000033E: 80 .DB $80 0000033F: 68 PLA 00000340: 04 .DB $04 00000341: D8 CLD 00000342: 68 PLA 00000343: 04 .DB $04 00000344: 28 PLP 00000345: 40 RTI 00000346: 04 .DB $04 00000347: 48 PHA 00000348: 40 RTI 00000349: 04 .DB $04 0000034A: B040 BCS $40 0000034C: 04 .DB $04 0000034D: D040 BNE $40 0000034F: 04 .DB $04 00000350: FE0000 INC $0000,X 00000353: 08 PHP 00000354: 200000 JSR $0000 00000357: 08 PHP 00000358: 28 PLP 00000359: 10B8 BPL $B8 0000035B: 00 BRK 0000035C: 78 SEI 0000035D: B8 CLV 0000035E: 00 BRK 0000035F: E8 INX 00000360: B8 CLV 00000361: 00 BRK 00000362: 18 CLC 00000363: 9000 BCC $00 00000365: 60 RTS 00000366: 9000 BCC $00 00000368: 98 TYA 00000369: 9000 BCC $00 0000036B: E090 CPX #$90 0000036D: 00 BRK 0000036E: 206800 JSR $0068 00000371: 80 .DB $80 00000372: 68 PLA 00000373: 00 BRK 00000374: D8 CLD 00000375: 68 PLA 00000376: 00 BRK 00000377: 28 PLP 00000378: 40 RTI 00000379: 00 BRK 0000037A: 48 PHA 0000037B: 40 RTI 0000037C: 00 BRK 0000037D: B040 BCS $40 0000037F: 00 BRK 00000380: D040 BNE $40 00000382: 00 BRK 00000383: FE0009 INC $0900,X 00000386: 1E3348 ASL $4833,X 00000389: 54 .DB $54 0000038A: 0C .DB $0C 0000038B: A7 .DB $A7 0000038C: 03 .DB $03 0000038D: 74 .DB $74 0000038E: A7 .DB $A7 0000038F: 03 .DB $03 00000390: E4A7 CPX $A7 00000392: 03 .DB $03 00000393: 0C .DB $0C 00000394: C7 .DB $C7 00000395: 13 .DB $13 00000396: 74 .DB $74 00000397: C7 .DB $C7 00000398: 13 .DB $13 00000399: E4C7 CPX $C7 0000039B: 13 .DB $13 0000039C: 14 .DB $14 0000039D: 7F .DB $7F 0000039E: 03 .DB $03 0000039F: 5C .DB $5C 000003A0: 7F .DB $7F 000003A1: 03 .DB $03 000003A2: 947F STY $7F,X 000003A4: 03 .DB $03 000003A5: DC .DB $DC 000003A6: 7F .DB $7F 000003A7: 03 .DB $03 000003A8: 1C .DB $1C 000003A9: 57 .DB $57 000003AA: 03 .DB $03 000003AB: 7C .DB $7C 000003AC: 57 .DB $57 000003AD: 03 .DB $03 000003AE: D4 .DB $D4 000003AF: 57 .DB $57 000003B0: 03 .DB $03 000003B1: 14 .DB $14 000003B2: A7 .DB $A7 000003B3: 13 .DB $13 000003B4: 5C .DB $5C 000003B5: A7 .DB $A7 000003B6: 13 .DB $13 000003B7: 94A7 STY $A7,X 000003B9: 13 .DB $13 000003BA: DC .DB $DC 000003BB: A7 .DB $A7 000003BC: 13 .DB $13 000003BD: 242F BIT $2F 000003BF: 03 .DB $03 000003C0: 44 .DB $44 000003C1: 2F .DB $2F 000003C2: 03 .DB $03 000003C3: AC2F03 LDY $032F 000003C6: CC2F03 CPY $032F 000003C9: 1C .DB $1C 000003CA: 7F .DB $7F 000003CB: 13 .DB $13 000003CC: 7C .DB $7C 000003CD: 7F .DB $7F 000003CE: 13 .DB $13 000003CF: D4 .DB $D4 000003D0: 7F .DB $7F 000003D1: 13 .DB $13 000003D2: 2457 BIT $57 000003D4: 13 .DB $13 000003D5: 44 .DB $44 000003D6: 57 .DB $57 000003D7: 13 .DB $13 000003D8: AC5713 LDY $1357 000003DB: CC5713 CPY $1357 000003DE: 08 PHP 000003DF: C7 .DB $C7 000003E0: 10A7 BPL $A7 000003E2: 18 CLC 000003E3: 7F .DB $7F 000003E4: 2057E8 JSR $E857 000003E7: C7 .DB $C7 000003E8: E0A7 CPX #$A7 000003EA: D8 CLD 000003EB: 7F .DB $7F 000003EC: D057 BNE $57 000003EE: 34 .DB $34 000003EF: AC44BC LDY $BC44 000003F2: 0503 ORA $03 000003F4: 0D0BD4 ORA $D40B 000003F7: 0C .DB $0C 000003F8: E40C CPX $0C 000003FA: 5D4BCD EOR $CD4B,X 000003FD: C3 .DB $C3 000003FE: 5D43E5 EOR $E543,X 00000401: C3 .DB $C3 00000402: ED0324 SBC $2403 00000405: 4977 EOR #$77 00000407: 77 .DB $77 00000408: 77 .DB $77 00000409: 77 .DB $77 0000040A: FF .DB $FF 0000040B: FF .DB $FF 0000040C: 0B .DB $0B 0000040D: 0C .DB $0C 0000040E: 0D1516 ORA $1615 00000411: 17 .DB $17 00000412: 18 CLC 00000413: 191A1E ORA $1E1A,Y 00000416: 1F .DB $1F 00000417: FF .DB $FF 00000418: FF .DB $FF 00000419: FF .DB $FF 0000041A: 0101 ORA ($01,X) 0000041C: 0101 ORA ($01,X) 0000041E: FF .DB $FF 0000041F: FF .DB $FF 00000420: 0101 ORA ($01,X) 00000422: E4E3 CPX $E3 00000424: E2 .DB $E2 00000425: D8 CLD 00000426: D7 .DB $D7 00000427: D6D5 DEC $D5,X 00000429: D4 .DB $D4 0000042A: D3 .DB $D3 0000042B: D0CF BNE $CF 0000042D: 48 PHA 0000042E: 84C0 STY $C0 00000430: 508D BVC $8D 00000432: C7 .DB $C7 00000433: 20C078 JSR $78C0 00000436: 60 RTS 00000437: 28 PLP 00000438: 44 .DB $44 00000439: 6B .DB $6B 0000043A: 2033C4 JSR $C433 0000043D: 37 .DB $37 0000043E: C43B CPY $3B 00000440: C43F CPY $3F 00000442: C400 CPY $00 00000444: 00 BRK 00000445: 1008 BPL $08 00000447: 00 BRK 00000448: 00 BRK 00000449: 1008 BPL $08 0000044B: 00 BRK 0000044C: 00 BRK 0000044D: 60 RTS 0000044E: 1000 BPL $00 00000450: 00 BRK 00000451: 2A ROL A 00000452: 20B0A0 JSR $A0B0 00000455: 78 SEI 00000456: 68 PLA 00000457: 68 PLA 00000458: 88 DEY 00000459: 88 DEY 0000045A: 88 DEY 0000045B: 88 DEY 0000045C: 88 DEY 0000045D: 48 PHA 0000045E: 38 SEC 0000045F: 28 PLP 00000460: 18 CLC 00000461: 18 CLC 00000462: BB .DB $BB 00000463: BB .DB $BB 00000464: 5E2F13 LSR $132F,X 00000467: 88 DEY 00000468: 78 SEI 00000469: 64 .DB $64 0000046A: 5649 LSR $49,X 0000046C: 88 DEY 0000046D: 88 DEY 0000046E: 2455 BIT $55 00000470: 5588 EOR $88,X 00000472: 88 DEY 00000473: 4955 EOR #$55 00000475: 5540 EOR $40,X 00000477: 201008 JSR $0810 0000047A: 018C ORA ($8C,X) 0000047C: C00C CPY #$0C 0000047E: C2 .DB $C2 0000047F: 0C .DB $0C 00000480: C2 .DB $C2 00000481: F0C2 BEQ $C2 00000483: C3 .DB $C3 00000484: C00C CPY #$0C 00000486: C2 .DB $C2 00000487: 52 .DB $52 00000488: C2 .DB $C2 00000489: 06C3 ASL $C3 0000048B: E3 .DB $E3 0000048C: C00C CPY #$0C 0000048E: C2 .DB $C2 0000048F: 6EC216 ROR $16C2 00000492: C3 .DB $C3 00000493: 0B .DB $0B 00000494: C10C CMP ($0C,X) 00000496: C2 .DB $C2 00000497: 8DC241 STA $41C2 0000049A: C3 .DB $C3 0000049B: 27 .DB $27 0000049C: C10C CMP ($0C,X) 0000049E: C2 .DB $C2 0000049F: A5C2 LDA $C2 000004A1: 49C3 EOR #$C3 000004A3: BCC00C LDY $0CC0,X 000004A6: C2 .DB $C2 000004A7: 4CC200 JMP $00C2 000004AA: C3 .DB $C3 000004AB: 0C .DB $0C 000004AC: C2 .DB $C2 000004AD: D2 .DB $D2 000004AE: C2 .DB $C2 000004AF: 74 .DB $74 000004B0: C3 .DB $C3 000004B1: 0C .DB $0C 000004B2: C2 .DB $C2 000004B3: D8 CLD 000004B4: C2 .DB $C2 000004B5: 7A .DB $7A 000004B6: C3 .DB $C3 000004B7: 5B .DB $5B 000004B8: F5D9 SBC $D9,X 000004BA: F8 SED 000004BB: CDF71C CMP $1CF7 000004BE: F7 .DB $F7 000004BF: D9F81B CMP $1BF8,Y 000004C2: FA .DB $FA 000004C3: 00 BRK 000004C4: 00 BRK 000004C5: 0106 ORA ($06,X) 000004C7: E8 INX 000004C8: 04 .DB $04 000004C9: 5018 BVC $18 000004CB: D512 CMP $12,X 000004CD: E8 INX 000004CE: 00 BRK 000004CF: 5020 BVC $20 000004D1: DB .DB $DB 000004D2: 22 .DB $22 000004D3: F000 BEQ $00 000004D5: 00 BRK 000004D6: 00 BRK 000004D7: 03 .DB $03 000004D8: 2C3004 BIT $0430 000004DB: 207FF6 JSR $F67F 000004DE: 21D0 AND ($D0,X) 000004E0: 00 BRK 000004E1: 2046F6 JSR $F646 000004E4: 21D8 AND ($D8,X) 000004E6: 00 BRK 000004E7: 00 BRK 000004E8: 00 BRK 000004E9: 0104 ORA ($04,X) 000004EB: C004 CPY #$04 000004ED: 00 BRK 000004EE: 00 BRK 000004EF: 00 BRK 000004F0: 04 .DB $04 000004F1: 00 BRK 000004F2: 04 .DB $04 000004F3: 30C7 BMI $C7 000004F5: 04 .DB $04 000004F6: 22 .DB $22 000004F7: 00 BRK 000004F8: 00 BRK 000004F9: 00 BRK 000004FA: 00 BRK 000004FB: 02 .DB $02 000004FC: 08 PHP 000004FD: 1004 BPL $04 000004FF: 00 BRK 00000500: 00 BRK 00000501: 02 .DB $02 00000502: 02 .DB $02 00000503: E004 CPX #$04 00000505: FE0000 INC $0000,X 00000508: 0106 ORA ($06,X) 0000050A: E8 INX 0000050B: 04 .DB $04 0000050C: 5018 BVC $18 0000050E: D512 CMP $12,X 00000510: E8 INX 00000511: 00 BRK 00000512: 5020 BVC $20 00000514: DB .DB $DB 00000515: 22 .DB $22 00000516: F000 BEQ $00 00000518: 00 BRK 00000519: 00 BRK 0000051A: 03 .DB $03 0000051B: 0C .DB $0C 0000051C: 3004 BMI $04 0000051E: 3078 BMI $78 00000520: A012 LDY #$12 00000522: 3000 BMI $00 00000524: 30A8 BMI $A8 00000526: A012 LDY #$12 00000528: 38 SEC 00000529: 00 BRK 0000052A: 3049 BMI $49 0000052C: A012 LDY #$12 0000052E: 40 RTI 0000052F: 00 BRK 00000530: 7070 BVS $70 00000532: A012 LDY #$12 00000534: 48 PHA 00000535: 00 BRK 00000536: 70A0 BVS $A0 00000538: A012 LDY #$12 0000053A: 5000 BVC $00 0000053C: 70D7 BVS $D7 0000053E: A012 LDY #$12 00000540: 58 CLI 00000541: 00 BRK 00000542: 00 BRK 00000543: 00 BRK 00000544: 23 .DB $23 00000545: 02 .DB $02 00000546: 40 RTI 00000547: 04 .DB $04 00000548: 00 BRK 00000549: 00 BRK 0000054A: 23 .DB $23 0000054B: 02 .DB $02 0000054C: 58 CLI 0000054D: 04 .DB $04 0000054E: 00 BRK 0000054F: 00 BRK 00000550: 00 BRK 00000551: 04 .DB $04 00000552: 00 BRK 00000553: 04 .DB $04 00000554: 10B7 BPL $B7 00000556: 04 .DB $04 00000557: 22 .DB $22 00000558: 00 BRK 00000559: 00 BRK 0000055A: 00 BRK 0000055B: 00 BRK 0000055C: 02 .DB $02 0000055D: 08 PHP 0000055E: 1004 BPL $04 00000560: 4C9F98 JMP $989F 00000563: 22 .DB $22 00000564: 1000 BPL $00 00000566: CC6798 CPY $9867 00000569: 22 .DB $22 0000056A: 200000 JSR $0000 0000056D: 00 BRK 0000056E: 03 .DB $03 0000056F: 0C .DB $0C 00000570: 60 RTS 00000571: 04 .DB $04 00000572: 00 BRK 00000573: 00 BRK 00000574: 0116 ORA ($16,X) 00000576: 9004 BCC $04 00000578: FE0000 INC $0000,X 0000057B: 0106 ORA ($06,X) 0000057D: E8 INX 0000057E: 04 .DB $04 0000057F: 5018 BVC $18 00000581: D512 CMP $12,X 00000583: E8 INX 00000584: 00 BRK 00000585: 5020 BVC $20 00000587: DB .DB $DB 00000588: 22 .DB $22 00000589: F000 BEQ $00 0000058B: 00 BRK 0000058C: 00 BRK 0000058D: 03 .DB $03 0000058E: 04 .DB $04 0000058F: D004 BNE $04 00000591: 14 .DB $14 00000592: 6EF621 ROR $21F6 00000595: D000 BNE $00 00000597: 7C .DB $7C 00000598: 46F6 LSR $F6 0000059A: 21D8 AND ($D8,X) 0000059C: 00 BRK 0000059D: 00 BRK 0000059E: 00 BRK 0000059F: 0120 ORA ($20,X) 000005A1: 5004 BVC $04 000005A3: 00 BRK 000005A4: 00 BRK 000005A5: 00 BRK 000005A6: 04 .DB $04 000005A7: 00 BRK 000005A8: 04 .DB $04 000005A9: 38 SEC 000005AA: C7 .DB $C7 000005AB: 04 .DB $04 000005AC: 22 .DB $22 000005AD: 00 BRK 000005AE: 00 BRK 000005AF: 00 BRK 000005B0: 00 BRK 000005B1: 02 .DB $02 000005B2: 1010 BPL $10 000005B4: 04 .DB $04 000005B5: FEB3C4 INC $C4B3,X 000005B8: F6C4 INC $C4,X 000005BA: F6C4 INC $C4,X 000005BC: 69C5 ADC #$C5 000005BE: 7F .DB $7F 000005BF: 7F .DB $7F 000005C0: 7F .DB $7F 000005C1: 00 BRK 000005C2: 5F .DB $5F 000005C3: 3F .DB $3F 000005C4: 00 BRK 000005C5: 2F .DB $2F 000005C6: 7F .DB $7F 000005C7: 7F .DB $7F 000005C8: 00 BRK 000005C9: A9A9 LDA #$A9 000005CB: 8181 STA ($81,X) 000005CD: 595931 EOR $3159,Y 000005D0: 3100 AND ($00),Y 000005D2: 304C BMI $4C 000005D4: D500 CMP $00,X 000005D6: 10E0 BPL $E0 000005D8: 00 BRK 000005D9: 2450 BIT $50 000005DB: C000 CPY #$00 000005DD: 3B .DB $3B 000005DE: B3 .DB $B3 000005DF: 3B .DB $3B 000005E0: B3 .DB $B3 000005E1: 3B .DB $3B 000005E2: B3 .DB $B3 000005E3: 38 SEC 000005E4: B3 .DB $B3 000005E5: 00 BRK 000005E6: 22 .DB $22 000005E7: 22 .DB $22 000005E8: 22 .DB $22 000005E9: 00 BRK 000005EA: 2121 AND ($21,X) 000005EC: 00 BRK 000005ED: 202222 JSR $2222 000005F0: 00 BRK 000005F1: 22 .DB $22 000005F2: 22 .DB $22 000005F3: 22 .DB $22 000005F4: 22 .DB $22 000005F5: 2121 AND ($21,X) 000005F7: 2121 AND ($21,X) 000005F9: 060A ASL $0A 000005FB: 1B .DB $1B 000005FC: 00 BRK 000005FD: 82 .DB $82 000005FE: 1C .DB $1C 000005FF: 00 BRK 00000600: C50A CMP $0A 00000602: 18 CLC 00000603: 00 BRK 00000604: E8 INX 00000605: F7 .DB $F7 00000606: 48 PHA 00000607: 57 .DB $57 00000608: A8 TAY 00000609: B7 .DB $B7 0000060A: 08 PHP 0000060B: 17 .DB $17 0000060C: 00 BRK 0000060D: 04 .DB $04 0000060E: 07 .DB $07 0000060F: 0B .DB $0B 00000610: 0103 ORA ($03,X) 00000612: 0508 ORA $08 00000614: D0D1 BNE $D1 00000616: D2 .DB $D2 00000617: D3 .DB $D3 00000618: 848D STY $8D 0000061A: 848D STY $8D 0000061C: 4676 LSR $76 0000061E: 77 .DB $77 0000061F: 78 SEI 00000620: 797A7B ADC $7B7A,Y 00000623: 7C .DB $7C 00000624: 7D7E7F ADC $7F7E,X 00000627: 80 .DB $80 00000628: 8182 STA ($82,X) 0000062A: 83 .DB $83 0000062B: 8485 STY $85 0000062D: 2424 BIT $24 0000062F: 8687 STX $87 00000631: 2424 BIT $24 00000633: 2488 BIT $88 00000635: 4624 LSR $24 00000637: 9C .DB $9C 00000638: 9D9E9F STA $9F9E,X 0000063B: A0A1 LDY #$A1 0000063D: A2A3 LDX #$A3 0000063F: A4A5 LDY $A5 00000641: A6A7 LDX $A7 00000643: A8 TAY 00000644: A9AA LDA #$AA 00000646: AB .DB $AB 00000647: ACADAE LDY $AEAD 0000064A: 24AF BIT $AF 0000064C: B0B1 BCS $B1 0000064E: 4624 LSR $24 00000650: 2424 BIT $24 00000652: 89 .DB $89 00000653: 2424 BIT $24 00000655: 8A TXA 00000656: 8B .DB $8B 00000657: 8C8D8E STY $8E8D 0000065A: 8F .DB $8F 0000065B: 9091 BCC $91 0000065D: 92 .DB $92 0000065E: 93 .DB $93 0000065F: 9495 STY $95,X 00000661: 9697 STX $97,Y 00000663: 98 TYA 00000664: 999A9B STA $9B9A,Y 00000667: 4624 LSR $24 00000669: B2 .DB $B2 0000066A: 68 PLA 0000066B: 9E .DB $9E 0000066C: B5B6 LDA $B6,X 0000066E: 6CC7A3 JMP ($A3C7) 00000671: A469 LDY $69 00000673: A6A7 LDX $A7 00000675: A8 TAY 00000676: 6B .DB $6B 00000677: AA TAX 00000678: C9CA CMP #$CA 0000067A: 6DBF24 ADC $24BF 0000067D: CD6AB1 CMP $B16A 00000680: 46C2 LSR $C2 00000682: C3 .DB $C3 00000683: 249E BIT $9E 00000685: C4C5 CPY $C5 00000687: C6C7 DEC $C7 00000689: A3 .DB $A3 0000068A: B9A5A6 LDA $A6A5,Y 0000068D: A7 .DB $A7 0000068E: BB .DB $BB 0000068F: 6B .DB $6B 00000690: C8 INY 00000691: C9CA CMP #$CA 00000693: CB .DB $CB 00000694: CC24CD CPY $CD24 00000697: CECF46 DEC $46CF 0000069A: 24B2 BIT $B2 0000069C: B3 .DB $B3 0000069D: B4B5 LDY $B5,X 0000069F: B6B7 LDX $B7,Y 000006A1: B8 CLV 000006A2: A3 .DB $A3 000006A3: B969BA LDA $BA69,Y 000006A6: A7 .DB $A7 000006A7: BB .DB $BB 000006A8: A9AA LDA #$AA 000006AA: BCBDBE LDY $BEBD,X 000006AD: BF .DB $BF 000006AE: C0C1 CPY #$C1 000006B0: 24B1 BIT $B1 000006B2: 13 .DB $13 000006B3: 2C1613 BIT $1316 000006B6: 13 .DB $13 000006B7: 1630 ASL $30,X 000006B9: 37 .DB $37 000006BA: 23 .DB $23 000006BB: DB .DB $DB 000006BC: 42 .DB $42 000006BD: A021 LDY #$21 000006BF: CA DEX 000006C0: 4C2421 JMP $2124 000006C3: EA NOP 000006C4: 0C .DB $0C 000006C5: 2424 BIT $24 000006C7: 19150A ORA $0A15,Y 000006CA: 22 .DB $22 000006CB: 0E1B24 ASL $241B 000006CE: 6624 ROR $24 000006D0: 2400 BIT $00 000006D2: 23 .DB $23 000006D3: E2 .DB $E2 000006D4: 04 .DB $04 000006D5: 08 PHP 000006D6: 0A ASL A 000006D7: 0A ASL A 000006D8: 02 .DB $02 000006D9: 22 .DB $22 000006DA: 0A ASL A 000006DB: 4C2422 JMP $2224 000006DE: 2A ROL A 000006DF: 0C .DB $0C 000006E0: 2410 BIT $10 000006E2: 0A ASL A 000006E3: 160E ASL $0E,X 000006E5: 2424 BIT $24 000006E7: 18 CLC 000006E8: 1F .DB $1F 000006E9: 0E1B24 ASL $241B 000006EC: 22 .DB $22 000006ED: 4A LSR A 000006EE: 4C2400 JMP $0024 000006F1: 12 .DB $12 000006F2: 2424 BIT $24 000006F4: 20635B JSR $5B63 000006F7: 2420 BIT $20 000006F9: 944A STY $4A,X 000006FB: 2420 BIT $20 000006FD: B44A LDY $4A,X 000006FF: 2400 BIT $00 00000701: 2109 AND ($09,X) 00000703: 4E2421 LSR $2124 00000706: A94E LDA #$4E 00000708: 2422 BIT $22 0000070A: 494E EOR #$4E 0000070C: 2422 BIT $22 0000070E: E94E SBC #$4E 00000710: 243F BIT $3F 00000712: 1D0330 ORA $3003,X 00000715: 3606 ROL $06,X 00000717: 00 BRK 00000718: 208D46 JSR $468D 0000071B: 2420 BIT $20 0000071D: AD4624 LDA $2446 00000720: 20CD46 JSR $46CD 00000723: 2420 BIT $20 00000725: ED4624 SBC $2446 00000728: 00 BRK 00000729: 12 .DB $12 0000072A: AA TAX 0000072B: AA TAX 0000072C: 4624 LSR $24 0000072E: 24DC BIT $DC 00000730: DDD4D5 CMP $D5D4,X 00000733: DEDFD6 DEC $D6DF,X 00000736: D7 .DB $D7 00000737: E0E1 CPX #$E1 00000739: D8 CLD 0000073A: D9E2E3 CMP $E3E2,Y 0000073D: DA .DB $DA 0000073E: DB .DB $DB 0000073F: E4E5 CPX $E5 00000741: 2424 BIT $24 00000743: E6E7 INC $E7 00000745: 46E8 LSR $E8 00000747: E9EA SBC #$EA 00000749: EB .DB $EB 0000074A: ECEDEE CPX $EEED 0000074D: EF .DB $EF 0000074E: 24F0 BIT $F0 00000750: F1F2 SBC ($F2),Y 00000752: 24F3 BIT $F3 00000754: F4 .DB $F4 00000755: F5F6 SBC $F6,X 00000757: F7 .DB $F7 00000758: F8 SED 00000759: F9FAFB SBC $FBFA,Y 0000075C: FC .DB $FC 0000075D: FD2108 SBC $0821,X 00000760: 5062 BVC $62 00000762: 00 BRK 00000763: 23 .DB $23 00000764: 094E ORA #$4E 00000766: 62 .DB $62 00000767: 23 .DB $23 00000768: 294E AND #$4E 0000076A: 62 .DB $62 0000076B: 23 .DB $23 0000076C: 494E EOR #$4E 0000076E: 62 .DB $62 0000076F: 00 BRK 00000770: 20C542 JSR $42C5 00000773: 2420 BIT $20 00000775: CA DEX 00000776: 42 .DB $42 00000777: 2420 BIT $20 00000779: EA NOP 0000077A: 42 .DB $42 0000077B: 2420 BIT $20 0000077D: E542 SBC $42 0000077F: 2422 BIT $22 00000781: 0A ASL A 00000782: 42 .DB $42 00000783: 2422 BIT $22 00000785: 2A ROL A 00000786: 42 .DB $42 00000787: 2422 BIT $22 00000789: 18 CLC 0000078A: 42 .DB $42 0000078B: 2400 BIT $00 0000078D: 22 .DB $22 0000078E: 38 SEC 0000078F: 42 .DB $42 00000790: 2421 BIT $21 00000792: 29C4 AND #$C4 00000794: 2421 BIT $21 00000796: 36C4 ROL $C4,X 00000798: 2421 BIT $21 0000079A: D0C4 BNE $C4 0000079C: 2422 BIT $22 0000079E: 6CC424 JMP ($24C4) 000007A1: 22 .DB $22 000007A2: 73 .DB $73 000007A3: C424 CPY $24 000007A5: 23 .DB $23 000007A6: 0F .DB $0F 000007A7: C3 .DB $C3 000007A8: 2400 BIT $00 000007AA: FF .DB $FF 000007AB: 0101 ORA ($01,X) 000007AD: FF .DB $FF 000007AE: 78 SEI 000007AF: D8 CLD 000007B0: A910 LDA #$10 000007B2: 8D0020 STA $2000 000007B5: A2FF LDX #$FF 000007B7: 9A TXS 000007B8: AD0220 LDA $2002 000007BB: 2980 AND #$80 000007BD: F0F9 BEQ $F9 000007BF: A007 LDY #$07 000007C1: 8401 STY $01 000007C3: A000 LDY #$00 000007C5: 8400 STY $00 000007C7: A900 LDA #$00 000007C9: 9100 STA ($00),Y 000007CB: 88 DEY 000007CC: D0FB BNE $FB 000007CE: C601 DEC $01 000007D0: 10F7 BPL $F7 000007D2: 20E7C7 JSR $C7E7 000007D5: A97F LDA #$7F 000007D7: 8D1105 STA $0511 000007DA: A918 LDA #$18 000007DC: 8551 STA $51 000007DE: A901 LDA #$01 000007E0: 854E STA $4E 000007E2: 8555 STA $55 000007E4: A900 LDA #$00 000007E6: 854F STA $4F 000007E8: A510 LDA $10 000007EA: 4980 EOR #$80 000007EC: 8D0020 STA $2000 000007EF: 8510 STA $10 000007F1: 20EDF4 JSR $F4ED 000007F4: 4CE1C7 JMP $C7E1 000007F7: A910 LDA #$10 000007F9: 8D0020 STA $2000 000007FC: 8510 STA $10 000007FE: A906 LDA #$06 00000800: 8D0120 STA $2001 00000803: 8511 STA $11 00000805: A900 LDA #$00 00000807: 8D0520 STA $2005 0000080A: 8512 STA $12 0000080C: 8D0520 STA $2005 0000080F: 8513 STA $13 00000811: 20AECB JSR $CBAE 00000814: 4CB7CB JMP $CBB7 00000817: AA TAX 00000818: BDA7C4 LDA $C4A7,X 0000081B: 8500 STA $00 0000081D: BDA8C4 LDA $C4A8,X 00000820: 8501 STA $01 00000822: 4C28F2 JMP $F228 00000825: AA TAX 00000826: BD3CC0 LDA $C03C,X 00000829: 8502 STA $02 0000082B: BD3DC0 LDA $C03D,X 0000082E: 8503 STA $03 00000830: 4CD7F2 JMP $F2D7 00000833: AA TAX 00000834: BD3CC0 LDA $C03C,X 00000837: 8500 STA $00 00000839: BD3DC0 LDA $C03D,X 0000083C: 8501 STA $01 0000083E: 4C76CD JMP $CD76 00000841: AA TAX 00000842: BD3CC0 LDA $C03C,X 00000845: 8504 STA $04 00000847: BD3DC0 LDA $C03D,X 0000084A: 8505 STA $05 0000084C: BD44C0 LDA $C044,X 0000084F: 8506 STA $06 00000851: BD45C0 LDA $C045,X 00000854: 8507 STA $07 00000856: 60 RTS 00000857: AA TAX 00000858: BD3CC0 LDA $C03C,X 0000085B: 8502 STA $02 0000085D: BD3DC0 LDA $C03D,X 00000860: 8503 STA $03 00000862: 60 RTS 00000863: AA TAX 00000864: BD3CC0 LDA $C03C,X 00000867: 8508 STA $08 00000869: BD3DC0 LDA $C03D,X 0000086C: 8509 STA $09 0000086E: 60 RTS 0000086F: 48 PHA 00000870: A510 LDA $10 00000872: 297F AND #$7F 00000874: 8D0020 STA $2000 00000877: 8510 STA $10 00000879: A900 LDA #$00 0000087B: 8D0320 STA $2003 0000087E: A902 LDA #$02 00000880: 8D1440 STA $4014 00000883: A931 LDA #$31 00000885: 8500 STA $00 00000887: A903 LDA #$03 00000889: 8501 STA $01 0000088B: 2028F2 JSR $F228 0000088E: A900 LDA #$00 00000890: 8D3003 STA $0330 00000893: 8D3103 STA $0331 00000896: 200EF5 JSR $F50E 00000899: A511 LDA $11 0000089B: 4918 EOR #$18 0000089D: 8D0120 STA $2001 000008A0: 2048FA JSR $FA48 000008A3: A54E LDA $4E 000008A5: D02A BNE $2A 000008A7: A54F LDA $4F 000008A9: F039 BEQ $39 000008AB: A59A LDA $9A 000008AD: D006 BNE $06 000008AF: 207CCE JSR $CE7C 000008B2: 4CD7C8 JMP $C8D7 000008B5: AD4F04 LDA $044F 000008B8: C908 CMP #$08 000008BA: D028 BNE $28 000008BC: 20F4CC JSR $CCF4 000008BF: A543 LDA $43 000008C1: D024 BNE $24 000008C3: A900 LDA #$00 000008C5: 8D4F04 STA $044F 000008C8: 854F STA $4F 000008CA: A979 LDA #$79 000008CC: 8543 STA $43 000008CE: 4CD7C8 JMP $C8D7 000008D1: A555 LDA $55 000008D3: D006 BNE $06 000008D5: 2030CA JSR $CA30 000008D8: 4CD7C8 JMP $C8D7 000008DB: 20F3C8 JSR $C8F3 000008DE: 20ACF4 JSR $F4AC 000008E1: 4CD7C8 JMP $C8D7 000008E4: 20C9CA JSR $CAC9 000008E7: AD0505 LDA $0505 000008EA: C901 CMP #$01 000008EC: D00A BNE $0A 000008EE: A551 LDA $51 000008F0: 8500 STA $00 000008F2: 203CF2 JSR $F23C 000008F5: CE0505 DEC $0505 000008F8: A510 LDA $10 000008FA: 4980 EOR #$80 000008FC: 8D0020 STA $2000 000008FF: 8510 STA $10 00000901: 68 PLA 00000902: 40 RTI 00000903: AD0201 LDA $0102 00000906: D006 BNE $06 00000908: 8D1540 STA $4015 0000090B: 8D0001 STA $0100 0000090E: AD1805 LDA $0518 00000911: D011 BNE $11 00000913: A980 LDA #$80 00000915: 85FD STA $FD 00000917: A904 LDA #$04 00000919: 8D1805 STA $0518 0000091C: A90F LDA #$0F 0000091E: 8D1540 STA $4015 00000921: 8D0001 STA $0100 00000924: AD1005 LDA $0510 00000927: D027 BNE $27 00000929: 209AD1 JSR $D19A 0000092C: A908 LDA #$08 0000092E: 2007C8 JSR $C807 00000931: AD1105 LDA $0511 00000934: 8D0002 STA $0200 00000937: A9A2 LDA #$A2 00000939: 8D0102 STA $0201 0000093C: A900 LDA #$00 0000093E: 8D0202 STA $0202 00000941: 8558 STA $58 00000943: A938 LDA #$38 00000945: 8D0302 STA $0203 00000948: 8D1005 STA $0510 0000094B: A920 LDA #$20 0000094D: 8544 STA $44 0000094F: 60 RTS 00000950: A515 LDA $15 00000952: 2920 AND #$20 00000954: D017 BNE $17 00000956: A515 LDA $15 00000958: 2910 AND #$10 0000095A: D03E BNE $3E 0000095C: A900 LDA #$00 0000095E: 8D1205 STA $0512 00000961: A544 LDA $44 00000963: D007 BNE $07 00000965: A901 LDA #$01 00000967: 8558 STA $58 00000969: 4CB1C9 JMP $C9B1 0000096C: 60 RTS 0000096D: A940 LDA #$40 0000096F: 8544 STA $44 00000971: AD1205 LDA $0512 00000974: D01F BNE $1F 00000976: A940 LDA #$40 00000978: 8535 STA $35 0000097A: AD0002 LDA $0200 0000097D: 18 CLC 0000097E: 6910 ADC #$10 00000980: C9BF CMP #$BF 00000982: D002 BNE $02 00000984: A97F LDA #$7F 00000986: 8D0002 STA $0200 00000989: 8D1105 STA $0511 0000098C: EE1205 INC $0512 0000098F: A90A LDA #$0A 00000991: 8D1305 STA $0513 00000994: 60 RTS 00000995: A535 LDA $35 00000997: D000 BNE $00 00000999: 60 RTS 0000099A: 8D1405 STA $0514 0000099D: A20A LDX #$0A 0000099F: A900 LDA #$00 000009A1: 9524 STA $24,X 000009A3: CA DEX 000009A4: D0FB BNE $FB 000009A6: AD1105 LDA $0511 000009A9: 4A LSR A 000009AA: 4A LSR A 000009AB: 4A LSR A 000009AC: 4A LSR A 000009AD: 38 SEC 000009AE: E907 SBC #$07 000009B0: 8550 STA $50 000009B2: C902 CMP #$02 000009B4: 3007 BMI $07 000009B6: A91C LDA #$1C 000009B8: 8551 STA $51 000009BA: 4CB1C9 JMP $C9B1 000009BD: A918 LDA #$18 000009BF: 8551 STA $51 000009C1: A550 LDA $50 000009C3: 2901 AND #$01 000009C5: 0A ASL A 000009C6: AA TAX 000009C7: BD0705 LDA $0507,X 000009CA: 8521 STA $21 000009CC: BD0805 LDA $0508,X 000009CF: 8522 STA $22 000009D1: A90F LDA #$0F 000009D3: 8518 STA $18 000009D5: A913 LDA #$13 000009D7: 8519 STA $19 000009D9: A900 LDA #$00 000009DB: 854E STA $4E 000009DD: 8D0604 STA $0406 000009E0: 8D0704 STA $0407 000009E3: 854F STA $4F 000009E5: 8D1005 STA $0510 000009E8: 8D0B05 STA $050B 000009EB: 8D1205 STA $0512 000009EE: A901 LDA #$01 000009F0: 8553 STA $53 000009F2: 8D0004 STA $0400 000009F5: 8D0104 STA $0401 000009F8: A900 LDA #$00 000009FA: 8554 STA $54 000009FC: 8D0204 STA $0402 000009FF: 8D0304 STA $0403 00000A02: A900 LDA #$00 00000A04: 8552 STA $52 00000A06: 8D0804 STA $0408 00000A09: 8D0904 STA $0409 00000A0C: 85FC STA $FC 00000A0E: A903 LDA #$03 00000A10: A658 LDX $58 00000A12: F002 BEQ $02 00000A14: A901 LDA #$01 00000A16: 8555 STA $55 00000A18: 8D0404 STA $0404 00000A1B: 8D0504 STA $0405 00000A1E: 8D0B04 STA $040B 00000A21: A558 LDA $58 00000A23: D011 BNE $11 00000A25: A997 LDA #$97 00000A27: 8543 STA $43 00000A29: A901 LDA #$01 00000A2B: 85FD STA $FD 00000A2D: A90F LDA #$0F 00000A2F: 8D1540 STA $4015 00000A32: 8D0001 STA $0100 00000A35: 60 RTS 00000A36: CE1805 DEC $0518 00000A39: A975 LDA #$75 00000A3B: 8543 STA $43 00000A3D: 4CAECB JMP $CBAE 00000A40: 20ACF4 JSR $F4AC 00000A43: A558 LDA $58 00000A45: D013 BNE $13 00000A47: A543 LDA $43 00000A49: C975 CMP #$75 00000A4B: F01D BEQ $1D 00000A4D: C974 CMP #$74 00000A4F: F01E BEQ $1E 00000A51: C973 CMP #$73 00000A53: F01F BEQ $1F 00000A55: C95F CMP #$5F 00000A57: F030 BEQ $30 00000A59: 60 RTS 00000A5A: 8555 STA $55 00000A5C: A900 LDA #$00 00000A5E: 8558 STA $58 00000A60: 8D1005 STA $0510 00000A63: 20B7CB JSR $CBB7 00000A66: 20AECB JSR $CBAE 00000A69: 60 RTS 00000A6A: C643 DEC $43 00000A6C: 4CAECB JMP $CBAE 00000A6F: C643 DEC $43 00000A71: 4CCACB JMP $CBCA 00000A74: C643 DEC $43 00000A76: A550 LDA $50 00000A78: 2901 AND #$01 00000A7A: 0A ASL A 00000A7B: AA TAX 00000A7C: A521 LDA $21 00000A7E: 9D0705 STA $0507,X 00000A81: A522 LDA $22 00000A83: 9D0805 STA $0508,X 00000A86: 4CF5CB JMP $CBF5 00000A89: A652 LDX $52 00000A8B: A901 LDA #$01 00000A8D: 9D0604 STA $0406,X 00000A90: 854E STA $4E 00000A92: A551 LDA $51 00000A94: C91C CMP #$1C 00000A96: D00C BNE $0C 00000A98: A552 LDA $52 00000A9A: 4901 EOR #$01 00000A9C: AA TAX 00000A9D: BD0604 LDA $0406,X 00000AA0: 854E STA $4E 00000AA2: F005 BEQ $05 00000AA4: 8555 STA $55 00000AA6: 4C53CA JMP $CA53 00000AA9: A985 LDA #$85 00000AAB: 8543 STA $43 00000AAD: 8D0B04 STA $040B 00000AB0: A000 LDY #$00 00000AB2: 844F STY $4F 00000AB4: 8652 STX $52 00000AB6: 4CA9CA JMP $CAA9 00000AB9: A000 LDY #$00 00000ABB: BD0004 LDA $0400,X 00000ABE: 995300 STA $0053,Y 00000AC1: E8 INX 00000AC2: E8 INX 00000AC3: C8 INY 00000AC4: C003 CPY #$03 00000AC6: D0F3 BNE $F3 00000AC8: 60 RTS 00000AC9: A000 LDY #$00 00000ACB: B95300 LDA $0053,Y 00000ACE: 9D0004 STA $0400,X 00000AD1: E8 INX 00000AD2: E8 INX 00000AD3: C8 INY 00000AD4: C003 CPY #$03 00000AD6: D0F3 BNE $F3 00000AD8: 60 RTS 00000AD9: 20ACF4 JSR $F4AC 00000ADC: A553 LDA $53 00000ADE: C901 CMP #$01 00000AE0: F006 BEQ $06 00000AE2: A543 LDA $43 00000AE4: C984 CMP #$84 00000AE6: F02A BEQ $2A 00000AE8: A543 LDA $43 00000AEA: C972 CMP #$72 00000AEC: B03A BCS $3A 00000AEE: C96D CMP #$6D 00000AF0: F005 BEQ $05 00000AF2: C962 CMP #$62 00000AF4: F014 BEQ $14 00000AF6: 60 RTS 00000AF7: AD0B04 LDA $040B 00000AFA: F00A BEQ $0A 00000AFC: A900 LDA #$00 00000AFE: 8D0B04 STA $040B 00000B01: C655 DEC $55 00000B03: 20BDCB JSR $CBBD 00000B06: 2034CC JSR $CC34 00000B09: 60 RTS 00000B0A: A901 LDA #$01 00000B0C: 854F STA $4F 00000B0E: 2047CC JSR $CC47 00000B11: 60 RTS 00000B12: A652 LDX $52 00000B14: A553 LDA $53 00000B16: DD0004 CMP $0400,X 00000B19: F00A BEQ $0A 00000B1B: C901 CMP #$01 00000B1D: F006 BEQ $06 00000B1F: 2024CC JSR $CC24 00000B22: 2004CC JSR $CC04 00000B25: C643 DEC $43 00000B27: 60 RTS 00000B28: 4C1BCB JMP $CB1B 00000B2B: C97A CMP #$7A 00000B2D: F011 BEQ $11 00000B2F: C975 CMP #$75 00000B31: F016 BEQ $16 00000B33: C974 CMP #$74 00000B35: F00F BEQ $0F 00000B37: C973 CMP #$73 00000B39: F02D BEQ $2D 00000B3B: C972 CMP #$72 00000B3D: F018 BEQ $18 00000B3F: 60 RTS 00000B40: 2053CA JSR $CA53 00000B43: 20CACB JSR $CBCA 00000B46: C643 DEC $43 00000B48: 60 RTS 00000B49: 20B7CB JSR $CBB7 00000B4C: C643 DEC $43 00000B4E: A558 LDA $58 00000B50: D004 BNE $04 00000B52: A908 LDA #$08 00000B54: 85FD STA $FD 00000B56: 60 RTS 00000B57: C643 DEC $43 00000B59: A653 LDX $53 00000B5B: CA DEX 00000B5C: BD08C6 LDA $C608,X 00000B5F: 8500 STA $00 00000B61: A920 LDA #$20 00000B63: 8501 STA $01 00000B65: 4CA6EB JMP $EBA6 00000B68: 209AD1 JSR $D19A 00000B6B: A653 LDX $53 00000B6D: CA DEX 00000B6E: 8A TXA 00000B6F: 0A ASL A 00000B70: 2007C8 JSR $C807 00000B73: A90A LDA #$0A 00000B75: 2007C8 JSR $C807 00000B78: A551 LDA $51 00000B7A: C91C CMP #$1C 00000B7C: F00D BEQ $0D 00000B7E: A976 LDA #$76 00000B80: 8500 STA $00 00000B82: A920 LDA #$20 00000B84: 8501 STA $01 00000B86: A904 LDA #$04 00000B88: 2015C8 JSR $C815 00000B8B: A901 LDA #$01 00000B8D: 8D0505 STA $0505 00000B90: 2032D0 JSR $D032 00000B93: 20BDCB JSR $CBBD 00000B96: A9BC LDA #$BC 00000B98: 8500 STA $00 00000B9A: A454 LDY $54 00000B9C: C8 INY 00000B9D: 20C2F4 JSR $F4C2 00000BA0: A900 LDA #$00 00000BA2: 852C STA $2C 00000BA4: A980 LDA #$80 00000BA6: 88 DEY 00000BA7: C004 CPY #$04 00000BA9: 1003 BPL $03 00000BAB: B907C2 LDA $C207,Y 00000BAE: 852E STA $2E 00000BB0: A90D LDA #$0D 00000BB2: 8545 STA $45 00000BB4: A902 LDA #$02 00000BB6: 8500 STA $00 00000BB8: 203CF2 JSR $F23C 00000BBB: C643 DEC $43 00000BBD: 60 RTS 00000BBE: A900 LDA #$00 00000BC0: 8504 STA $04 00000BC2: A9FF LDA #$FF 00000BC4: 4C92F0 JMP $F092 00000BC7: 209AD1 JSR $D19A 00000BCA: 4CB4F1 JMP $F1B4 00000BCD: A9B5 LDA #$B5 00000BCF: 8500 STA $00 00000BD1: A920 LDA #$20 00000BD3: 8501 STA $01 00000BD5: A455 LDY $55 00000BD7: 4CC2F4 JMP $F4C2 00000BDA: A558 LDA $58 00000BDC: D026 BNE $26 00000BDE: A551 LDA $51 00000BE0: C91C CMP #$1C 00000BE2: D020 BNE $20 00000BE4: A652 LDX $52 00000BE6: A553 LDA $53 00000BE8: DD0004 CMP $0400,X 00000BEB: D017 BNE $17 00000BED: A000 LDY #$00 00000BEF: B9AAC6 LDA $C6AA,Y 00000BF2: 993103 STA $0331,Y 00000BF5: F004 BEQ $04 00000BF7: C8 INY 00000BF8: 4CDFCB JMP $CBDF 00000BFB: A552 LDA $52 00000BFD: F005 BEQ $05 00000BFF: A967 LDA #$67 00000C01: 8D4503 STA $0345 00000C04: 60 RTS 00000C05: A000 LDY #$00 00000C07: B9C2C6 LDA $C6C2,Y 00000C0A: 993103 STA $0331,Y 00000C0D: F004 BEQ $04 00000C0F: C8 INY 00000C10: 4CF7CB JMP $CBF7 00000C13: 60 RTS 00000C14: A558 LDA $58 00000C16: D01B BNE $1B 00000C18: A652 LDX $52 00000C1A: BD0804 LDA $0408,X 00000C1D: D014 BNE $14 00000C1F: 8A TXA 00000C20: A8 TAY 00000C21: 18 CLC 00000C22: 0A ASL A 00000C23: 0A ASL A 00000C24: AA TAX 00000C25: B525 LDA $25,X 00000C27: C902 CMP #$02 00000C29: 9008 BCC $08 00000C2B: 990804 STA $0408,Y 00000C2E: E655 INC $55 00000C30: 20BDCB JSR $CBBD 00000C33: 60 RTS 00000C34: A52E LDA $2E 00000C36: 8500 STA $00 00000C38: A552 LDA $52 00000C3A: 0908 ORA #$08 00000C3C: 8501 STA $01 00000C3E: 2042F3 JSR $F342 00000C41: 4C32D0 JMP $D032 00000C44: A901 LDA #$01 00000C46: 8D0505 STA $0505 00000C49: 2032D0 JSR $D032 00000C4C: A900 LDA #$00 00000C4E: 8D0B05 STA $050B 00000C51: 20C1CC JSR $CCC1 00000C54: 4CF2D7 JMP $D7F2 00000C57: A900 LDA #$00 00000C59: AA TAX 00000C5A: 9559 STA $59,X 00000C5C: 9D0D04 STA $040D,X 00000C5F: E8 INX 00000C60: E089 CPX #$89 00000C62: D0F6 BNE $F6 00000C64: A901 LDA #$01 00000C66: 8559 STA $59 00000C68: 8596 STA $96 00000C6A: 8D3E04 STA $043E 00000C6D: 8D5104 STA $0451 00000C70: 8D5204 STA $0452 00000C73: 859F STA $9F 00000C75: 8D0305 STA $0503 00000C78: A904 LDA #$04 00000C7A: 8597 STA $97 00000C7C: A958 LDA #$58 00000C7E: 8D3D04 STA $043D 00000C81: A920 LDA #$20 00000C83: 85A2 STA $A2 00000C85: A980 LDA #$80 00000C87: 8518 STA $18 00000C89: A90A LDA #$0A 00000C8B: 8534 STA $34 00000C8D: A652 LDX $52 00000C8F: 20B9CA JSR $CAB9 00000C92: A9BB LDA #$BB 00000C94: 8539 STA $39 00000C96: A927 LDA #$27 00000C98: 8544 STA $44 00000C9A: A553 LDA $53 00000C9C: C901 CMP #$01 00000C9E: F009 BEQ $09 00000CA0: C903 CMP #$03 00000CA2: F012 BEQ $12 00000CA4: A910 LDA #$10 00000CA6: 85FC STA $FC 00000CA8: 60 RTS 00000CA9: A938 LDA #$38 00000CAB: 8536 STA $36 00000CAD: A940 LDA #$40 00000CAF: 8543 STA $43 00000CB1: A902 LDA #$02 00000CB3: 85FC STA $FC 00000CB5: 60 RTS 00000CB6: A920 LDA #$20 00000CB8: 8536 STA $36 00000CBA: A950 LDA #$50 00000CBC: 8D3F04 STA $043F 00000CBF: 8D4104 STA $0441 00000CC2: 8D4304 STA $0443 00000CC5: A903 LDA #$03 00000CC7: 8D4004 STA $0440 00000CCA: 8D4204 STA $0442 00000CCD: 8D4404 STA $0444 00000CD0: 60 RTS 00000CD1: A553 LDA $53 00000CD3: 38 SEC 00000CD4: E901 SBC #$01 00000CD6: 0A ASL A 00000CD7: AA TAX 00000CD8: BDA6C5 LDA $C5A6,X 00000CDB: 8509 STA $09 00000CDD: BDA7C5 LDA $C5A7,X 00000CE0: 850A STA $0A 00000CE2: A200 LDX #$00 00000CE4: A000 LDY #$00 00000CE6: B109 LDA ($09),Y 00000CE8: C9FE CMP #$FE 00000CEA: F017 BEQ $17 00000CEC: 9500 STA $00,X 00000CEE: C8 INY 00000CEF: E8 INX 00000CF0: E005 CPX #$05 00000CF2: D0F2 BNE $F2 00000CF4: 8486 STY $86 00000CF6: B109 LDA ($09),Y 00000CF8: 2096F0 JSR $F096 00000CFB: A486 LDY $86 00000CFD: C8 INY 00000CFE: A200 LDX #$00 00000D00: 4CD6CC JMP $CCD6 00000D03: 60 RTS 00000D04: AD5004 LDA $0450 00000D07: D00E BNE $0E 00000D09: A901 LDA #$01 00000D0B: 8D5004 STA $0450 00000D0E: A90A LDA #$0A 00000D10: 8534 STA $34 00000D12: A910 LDA #$10 00000D14: 85FD STA $FD 00000D16: 60 RTS 00000D17: A543 LDA $43 00000D19: C958 CMP #$58 00000D1B: 9006 BCC $06 00000D1D: 20ACF4 JSR $F4AC 00000D20: 4C22CD JMP $CD22 00000D23: 2024CC JSR $CC24 00000D26: 2004CC JSR $CC04 00000D29: A900 LDA #$00 00000D2B: 8543 STA $43 00000D2D: 859A STA $9A 00000D2F: 4C53CA JMP $CA53 00000D32: A543 LDA $43 00000D34: C99F CMP #$9F 00000D36: F01D BEQ $1D 00000D38: C99E CMP #$9E 00000D3A: F01E BEQ $1E 00000D3C: C99D CMP #$9D 00000D3E: F01F BEQ $1F 00000D40: C99C CMP #$9C 00000D42: F024 BEQ $24 00000D44: C99B CMP #$9B 00000D46: F029 BEQ $29 00000D48: C990 CMP #$90 00000D4A: B02A BCS $2A 00000D4C: C986 CMP #$86 00000D4E: B029 BCS $29 00000D50: C970 CMP #$70 00000D52: B028 BCS $28 00000D54: 60 RTS 00000D55: C643 DEC $43 00000D57: 4C6FCD JMP $CD6F 00000D5A: C643 DEC $43 00000D5C: 4C7FCD JMP $CD7F 00000D5F: A01C LDY #$1C 00000D61: C643 DEC $43 00000D63: A906 LDA #$06 00000D65: 4C23C8 JMP $C823 00000D68: A01C LDY #$1C 00000D6A: C643 DEC $43 00000D6C: A908 LDA #$08 00000D6E: 4C23C8 JMP $C823 00000D71: C643 DEC $43 00000D73: 4C89CD JMP $CD89 00000D76: 4C9DCD JMP $CD9D 00000D79: 4CB1CD JMP $CDB1 00000D7C: 4C24CE JMP $CE24 00000D7F: A00C LDY #$0C 00000D81: A90A LDA #$0A 00000D83: 4C23C8 JMP $C823 00000D86: B100 LDA ($00),Y 00000D88: 993103 STA $0331,Y 00000D8B: 88 DEY 00000D8C: 10F8 BPL $F8 00000D8E: 60 RTS 00000D8F: 20AECB JSR $CBAE 00000D92: A016 LDY #$16 00000D94: A90C LDA #$0C 00000D96: 4C23C8 JMP $C823 00000D99: A00C LDY #$0C 00000D9B: A90E LDA #$0E 00000D9D: 2023C8 JSR $C823 00000DA0: A903 LDA #$03 00000DA2: 8502 STA $02 00000DA4: A918 LDA #$18 00000DA6: 8503 STA $03 00000DA8: A950 LDA #$50 00000DAA: 4C8CF0 JMP $F08C 00000DAD: A98D LDA #$8D 00000DAF: 8500 STA $00 00000DB1: A920 LDA #$20 00000DB3: 8501 STA $01 00000DB5: A543 LDA $43 00000DB7: 2901 AND #$01 00000DB9: F003 BEQ $03 00000DBB: 4C89EB JMP $EB89 00000DBE: 4C92EB JMP $EB92 00000DC1: C98F CMP #$8F 00000DC3: D022 BNE $22 00000DC5: C643 DEC $43 00000DC7: A010 LDY #$10 00000DC9: A910 LDA #$10 00000DCB: 2023C8 JSR $C823 00000DCE: A901 LDA #$01 00000DD0: 85FE STA $FE 00000DD2: A968 LDA #$68 00000DD4: 8500 STA $00 00000DD6: A93E LDA #$3E 00000DD8: 8501 STA $01 00000DDA: A940 LDA #$40 00000DDC: 8502 STA $02 00000DDE: A946 LDA #$46 00000DE0: 8503 STA $03 00000DE2: A950 LDA #$50 00000DE4: 4C80F0 JMP $F080 00000DE7: AD5002 LDA $0250 00000DEA: C9A0 CMP #$A0 00000DEC: F011 BEQ $11 00000DEE: C9FF CMP #$FF 00000DF0: F011 BEQ $11 00000DF2: 18 CLC 00000DF3: 6902 ADC #$02 00000DF5: 8501 STA $01 00000DF7: AD5302 LDA $0253 00000DFA: 8500 STA $00 00000DFC: 4CCACD JMP $CDCA 00000DFF: A980 LDA #$80 00000E01: 85FE STA $FE 00000E03: A918 LDA #$18 00000E05: 8503 STA $03 00000E07: A950 LDA #$50 00000E09: 208CF0 JSR $F08C 00000E0C: A9EB LDA #$EB 00000E0E: 8500 STA $00 00000E10: A923 LDA #$23 00000E12: 8501 STA $01 00000E14: A912 LDA #$12 00000E16: 2015C8 JSR $C815 00000E19: A901 LDA #$01 00000E1B: 4C0ECE JMP $CE0E 00000E1E: 08 PHP 00000E1F: A98D LDA #$8D 00000E21: 8500 STA $00 00000E23: A922 LDA #$22 00000E25: 8501 STA $01 00000E27: 28 PLP 00000E28: D005 BNE $05 00000E2A: A916 LDA #$16 00000E2C: 4C15C8 JMP $C815 00000E2F: A914 LDA #$14 00000E31: 4C15C8 JMP $C815 00000E34: C985 CMP #$85 00000E36: F007 BEQ $07 00000E38: A543 LDA $43 00000E3A: 2901 AND #$01 00000E3C: 4C0ECE JMP $CE0E 00000E3F: A904 LDA #$04 00000E41: 85FD STA $FD 00000E43: A004 LDY #$04 00000E45: A918 LDA #$18 00000E47: 2023C8 JSR $C823 00000E4A: A978 LDA #$78 00000E4C: 8500 STA $00 00000E4E: A920 LDA #$20 00000E50: 8501 STA $01 00000E52: A9C8 LDA #$C8 00000E54: 8502 STA $02 00000E56: A922 LDA #$22 00000E58: 8503 STA $03 00000E5A: A9B0 LDA #$B0 00000E5C: 2080F0 JSR $F080 00000E5F: C643 DEC $43 00000E61: A9A0 LDA #$A0 00000E63: 8500 STA $00 00000E65: A930 LDA #$30 00000E67: 8501 STA $01 00000E69: A904 LDA #$04 00000E6B: 20D4EA JSR $EAD4 00000E6E: A900 LDA #$00 00000E70: 2086F0 JSR $F086 00000E73: A928 LDA #$28 00000E75: 8DE802 STA $02E8 00000E78: 8DEC02 STA $02EC 00000E7B: A930 LDA #$30 00000E7D: 8DF002 STA $02F0 00000E80: 8DF802 STA $02F8 00000E83: A938 LDA #$38 00000E85: 8DF402 STA $02F4 00000E88: 8DFC02 STA $02FC 00000E8B: 60 RTS 00000E8C: A558 LDA $58 00000E8E: F014 BEQ $14 00000E90: AD0201 LDA $0102 00000E93: D006 BNE $06 00000E95: 8D1540 STA $4015 00000E98: 8D0001 STA $0100 00000E9B: A515 LDA $15 00000E9D: 2920 AND #$20 00000E9F: F003 BEQ $03 00000EA1: 4C2BCF JMP $CF2B 00000EA4: AD1605 LDA $0516 00000EA7: D015 BNE $15 00000EA9: AD1705 LDA $0517 00000EAC: F004 BEQ $04 00000EAE: CE1705 DEC $0517 00000EB1: 60 RTS 00000EB2: 2004CC JSR $CC04 00000EB5: 20A8CF JSR $CFA8 00000EB8: A59A LDA $9A 00000EBA: C901 CMP #$01 00000EBC: D003 BNE $03 00000EBE: 4C1CCF JMP $CF1C 00000EC1: A5BF LDA $BF 00000EC3: F003 BEQ $03 00000EC5: 4C13CF JMP $CF13 00000EC8: A596 LDA $96 00000ECA: C9FF CMP #$FF 00000ECC: D003 BNE $03 00000ECE: 4C19CF JMP $CF19 00000ED1: C908 CMP #$08 00000ED3: F011 BEQ $11 00000ED5: C904 CMP #$04 00000ED7: F00D BEQ $0D 00000ED9: A558 LDA $58 00000EDB: F006 BEQ $06 00000EDD: 20DAEB JSR $EBDA 00000EE0: 4CD6CE JMP $CED6 00000EE3: 2075D1 JSR $D175 00000EE6: 2006EB JSR $EB06 00000EE9: 20B6EB JSR $EBB6 00000EEC: 2041D0 JSR $D041 00000EEF: 20A4D1 JSR $D1A4 00000EF2: 205FEA JSR $EA5F 00000EF5: 20E5E1 JSR $E1E5 00000EF8: 2079EE JSR $EE79 00000EFB: A553 LDA $53 00000EFD: C903 CMP #$03 00000EFF: F010 BEQ $10 00000F01: C904 CMP #$04 00000F03: F018 BEQ $18 00000F05: 2016DA JSR $DA16 00000F08: 209AE1 JSR $E19A 00000F0B: 2029EC JSR $EC29 00000F0E: 4C1CCF JMP $CF1C 00000F11: 2034E8 JSR $E834 00000F14: 2081E9 JSR $E981 00000F17: 2029EC JSR $EC29 00000F1A: 4C1CCF JMP $CF1C 00000F1D: 2029EC JSR $EC29 00000F20: 4C1CCF JMP $CF1C 00000F23: 200CEE JSR $EE0C 00000F26: 4C1CCF JMP $CF1C 00000F29: 20C0D0 JSR $D0C0 00000F2C: 2042CF JSR $CF42 00000F2F: AD1605 LDA $0516 00000F32: D006 BNE $06 00000F34: 204CD0 JSR $D04C 00000F37: 20ACF4 JSR $F4AC 00000F3A: 60 RTS 00000F3B: A901 LDA #$01 00000F3D: 854E STA $4E 00000F3F: 8D1205 STA $0512 00000F42: 8555 STA $55 00000F44: A920 LDA #$20 00000F46: 8544 STA $44 00000F48: A900 LDA #$00 00000F4A: 8558 STA $58 00000F4C: 8D1005 STA $0510 00000F4F: 4C53CA JMP $CA53 00000F52: A515 LDA $15 00000F54: 2910 AND #$10 00000F56: F047 BEQ $47 00000F58: A558 LDA $58 00000F5A: F009 BEQ $09 00000F5C: A900 LDA #$00 00000F5E: 8558 STA $58 00000F60: A515 LDA $15 00000F62: 4C8AC9 JMP $C98A 00000F65: A515 LDA $15 00000F67: CD1405 CMP $0514 00000F6A: F036 BEQ $36 00000F6C: 8D1405 STA $0514 00000F6F: AD1605 LDA $0516 00000F72: F016 BEQ $16 00000F74: AD1705 LDA $0517 00000F77: D010 BNE $10 00000F79: 8D1605 STA $0516 00000F7C: A50F LDA $0F 00000F7E: 85FC STA $FC 00000F80: A511 LDA $11 00000F82: 29EF AND #$EF 00000F84: 8511 STA $11 00000F86: 4C87CF JMP $CF87 00000F89: 60 RTS 00000F8A: A901 LDA #$01 00000F8C: 8D1605 STA $0516 00000F8F: A5FC LDA $FC 00000F91: 850F STA $0F 00000F93: A900 LDA #$00 00000F95: 85FC STA $FC 00000F97: A940 LDA #$40 00000F99: 8D1705 STA $0517 00000F9C: 85FD STA $FD 00000F9E: 60 RTS 00000F9F: 8D1405 STA $0514 00000FA2: AD1705 LDA $0517 00000FA5: F004 BEQ $04 00000FA7: CE1705 DEC $0517 00000FAA: 60 RTS 00000FAB: AD1605 LDA $0516 00000FAE: D001 BNE $01 00000FB0: 60 RTS 00000FB1: A511 LDA $11 00000FB3: 0910 ORA #$10 00000FB5: 8511 STA $11 00000FB7: 60 RTS 00000FB8: A200 LDX #$00 00000FBA: A000 LDY #$00 00000FBC: B541 LDA $41,X 00000FBE: D008 BNE $08 00000FC0: A9FF LDA #$FF 00000FC2: 99C002 STA $02C0,Y 00000FC5: 99C402 STA $02C4,Y 00000FC8: E8 INX 00000FC9: C8 INY 00000FCA: C8 INY 00000FCB: C8 INY 00000FCC: C8 INY 00000FCD: C8 INY 00000FCE: C8 INY 00000FCF: C8 INY 00000FD0: C8 INY 00000FD1: E002 CPX #$02 00000FD3: 30E7 BMI $E7 00000FD5: 60 RTS 00000FD6: A000 LDY #$00 00000FD8: 840F STY $0F 00000FDA: 2008D0 JSR $D008 00000FDD: B9C002 LDA $02C0,Y 00000FE0: C9FF CMP #$FF 00000FE2: D025 BNE $25 00000FE4: A505 LDA $05 00000FE6: 99C302 STA $02C3,Y 00000FE9: 18 CLC 00000FEA: 6908 ADC #$08 00000FEC: 99C702 STA $02C7,Y 00000FEF: A506 LDA $06 00000FF1: 99C002 STA $02C0,Y 00000FF4: 99C402 STA $02C4,Y 00000FF7: BD04C6 LDA $C604,X 00000FFA: 99C102 STA $02C1,Y 00000FFD: A9D4 LDA #$D4 00000FFF: 99C502 STA $02C5,Y 00001002: A60F LDX $0F 00001004: A903 LDA #$03 00001006: 9541 STA $41,X 00001008: 60 RTS 00001009: C8 INY 0000100A: C8 INY 0000100B: C8 INY 0000100C: C8 INY 0000100D: C8 INY 0000100E: C8 INY 0000100F: C8 INY 00001010: C8 INY 00001011: E60F INC $0F 00001013: C010 CPY #$10 00001015: 30C6 BMI $C6 00001017: 60 RTS 00001018: 8A TXA 00001019: 48 PHA 0000101A: 98 TYA 0000101B: 48 PHA 0000101C: A558 LDA $58 0000101E: D01A BNE $1A 00001020: A552 LDA $52 00001022: 0918 ORA #$18 00001024: 8501 STA $01 00001026: BD00C6 LDA $C600,X 00001029: 8500 STA $00 0000102B: A505 LDA $05 0000102D: 48 PHA 0000102E: A506 LDA $06 00001030: 48 PHA 00001031: 2042F3 JSR $F342 00001034: 68 PLA 00001035: 8506 STA $06 00001037: 68 PLA 00001038: 8505 STA $05 0000103A: 2032D0 JSR $D032 0000103D: 68 PLA 0000103E: A8 TAY 0000103F: 68 PLA 00001040: AA TAX 00001041: 60 RTS 00001042: AD0505 LDA $0505 00001045: 0901 ORA #$01 00001047: 8D0505 STA $0505 0000104A: A9F9 LDA #$F9 0000104C: 8500 STA $00 0000104E: 4C35F4 JMP $F435 00001051: A52E LDA $2E 00001053: C910 CMP #$10 00001055: 1004 BPL $04 00001057: A920 LDA #$20 00001059: 85FC STA $FC 0000105B: 60 RTS 0000105C: A59A LDA $9A 0000105E: D042 BNE $42 00001060: A653 LDX $53 00001062: E004 CPX #$04 00001064: F00D BEQ $0D 00001066: A55A LDA $5A 00001068: F065 BEQ $65 0000106A: CA DEX 0000106B: BDFAC1 LDA $C1FA,X 0000106E: C559 CMP $59 00001070: F012 BEQ $12 00001072: 60 RTS 00001073: A200 LDX #$00 00001075: B5C1 LDA $C1,X 00001077: F056 BEQ $56 00001079: E8 INX 0000107A: 8E4F04 STX $044F 0000107D: E008 CPX #$08 0000107F: D0F4 BNE $F4 00001081: 4C86D0 JMP $D086 00001084: 20E1EA JSR $EAE1 00001087: A904 LDA #$04 00001089: 20D4EA JSR $EAD4 0000108C: 20CDEA JSR $EACD 0000108F: 2088F0 JSR $F088 00001092: A902 LDA #$02 00001094: 85FD STA $FD 00001096: A900 LDA #$00 00001098: 85FC STA $FC 0000109A: A901 LDA #$01 0000109C: 859A STA $9A 0000109E: A900 LDA #$00 000010A0: 853A STA $3A 000010A2: A53A LDA $3A 000010A4: D029 BNE $29 000010A6: E653 INC $53 000010A8: A553 LDA $53 000010AA: C902 CMP #$02 000010AC: F007 BEQ $07 000010AE: C905 CMP #$05 000010B0: B008 BCS $08 000010B2: 4CB5D0 JMP $D0B5 000010B5: E653 INC $53 000010B7: 4CB5D0 JMP $D0B5 000010BA: A901 LDA #$01 000010BC: 8553 STA $53 000010BE: E654 INC $54 000010C0: A9A0 LDA #$A0 000010C2: 8543 STA $43 000010C4: 60 RTS 000010C5: A98D LDA #$8D 000010C7: 8543 STA $43 000010C9: A900 LDA #$00 000010CB: 854F STA $4F 000010CD: 859A STA $9A 000010CF: 60 RTS 000010D0: A900 LDA #$00 000010D2: 85FC STA $FC 000010D4: A910 LDA #$10 000010D6: 20E6D9 JSR $D9E6 000010D9: F06D BEQ $6D 000010DB: A598 LDA $98 000010DD: C9FF CMP #$FF 000010DF: F05F BEQ $5F 000010E1: A598 LDA $98 000010E3: D00F BNE $0F 000010E5: A558 LDA $58 000010E7: D004 BNE $04 000010E9: A980 LDA #$80 000010EB: 85FE STA $FE 000010ED: A940 LDA #$40 000010EF: 853A STA $3A 000010F1: E698 INC $98 000010F3: 60 RTS 000010F4: A53A LDA $3A 000010F6: F010 BEQ $10 000010F8: C90E CMP #$0E 000010FA: 904C BCC $4C 000010FC: A558 LDA $58 000010FE: D004 BNE $04 00001100: A901 LDA #$01 00001102: 85FF STA $FF 00001104: A900 LDA #$00 00001106: 853A STA $3A 00001108: AD0102 LDA $0201 0000110B: C96C CMP #$6C 0000110D: B002 BCS $02 0000110F: A96C LDA #$6C 00001111: 18 CLC 00001112: 6904 ADC #$04 00001114: C97C CMP #$7C 00001116: 9017 BCC $17 00001118: E698 INC $98 0000111A: A598 LDA $98 0000111C: C905 CMP #$05 0000111E: F005 BEQ $05 00001120: A96C LDA #$6C 00001122: 4C1FD1 JMP $D11F 00001125: A558 LDA $58 00001127: F004 BEQ $04 00001129: A97D LDA #$7D 0000112B: 853A STA $3A 0000112D: A97C LDA #$7C 0000112F: 8502 STA $02 00001131: 20E1EA JSR $EAE1 00001134: 20CDEA JSR $EACD 00001137: 2082F0 JSR $F082 0000113A: A598 LDA $98 0000113C: C905 CMP #$05 0000113E: D008 BNE $08 00001140: A9FF LDA #$FF 00001142: 8598 STA $98 00001144: A53A LDA $3A 00001146: F001 BEQ $01 00001148: 60 RTS 00001149: A652 LDX $52 0000114B: 20B9CA JSR $CAB9 0000114E: A555 LDA $55 00001150: D009 BNE $09 00001152: A901 LDA #$01 00001154: 854E STA $4E 00001156: A987 LDA #$87 00001158: 8543 STA $43 0000115A: 60 RTS 0000115B: A551 LDA $51 0000115D: C91C CMP #$1C 0000115F: D018 BNE $18 00001161: A552 LDA $52 00001163: 4901 EOR #$01 00001165: AA TAX 00001166: 8652 STX $52 00001168: BD0604 LDA $0406,X 0000116B: F009 BEQ $09 0000116D: 8A TXA 0000116E: 4901 EOR #$01 00001170: AA TAX 00001171: 8652 STX $52 00001173: 4C69D1 JMP $D169 00001176: 20A9CA JSR $CAA9 00001179: A987 LDA #$87 0000117B: 8543 STA $43 0000117D: 8D0B04 STA $040B 00001180: A900 LDA #$00 00001182: 854F STA $4F 00001184: 60 RTS 00001185: A552 LDA $52 00001187: 0A ASL A 00001188: AA TAX 00001189: B515 LDA $15,X 0000118B: 290F AND #$0F 0000118D: 8556 STA $56 0000118F: F008 BEQ $08 00001191: 4A LSR A 00001192: 4A LSR A 00001193: D004 BNE $04 00001195: A556 LDA $56 00001197: 8557 STA $57 00001199: A596 LDA $96 0000119B: C901 CMP #$01 0000119D: D00A BNE $0A 0000119F: B515 LDA $15,X 000011A1: 2980 AND #$80 000011A3: F004 BEQ $04 000011A5: A904 LDA #$04 000011A7: 8596 STA $96 000011A9: 60 RTS 000011AA: A511 LDA $11 000011AC: 29E7 AND #$E7 000011AE: 8D0120 STA $2001 000011B1: 8511 STA $11 000011B3: 60 RTS 000011B4: A596 LDA $96 000011B6: C901 CMP #$01 000011B8: F011 BEQ $11 000011BA: C902 CMP #$02 000011BC: F015 BEQ $15 000011BE: C904 CMP #$04 000011C0: F014 BEQ $14 000011C2: C908 CMP #$08 000011C4: F013 BEQ $13 000011C6: C90A CMP #$0A 000011C8: F012 BEQ $12 000011CA: 60 RTS 000011CB: 20CFD1 JSR $D1CF 000011CE: A596 LDA $96 000011D0: 4CAAD1 JMP $D1AA 000011D3: 4C7ED3 JMP $D37E 000011D6: 4C47D5 JMP $D547 000011D9: 4C97D6 JMP $D697 000011DC: 4CC6D6 JMP $D6C6 000011DF: A556 LDA $56 000011E1: C901 CMP #$01 000011E3: F010 BEQ $10 000011E5: C902 CMP #$02 000011E7: F00C BEQ $0C 000011E9: C904 CMP #$04 000011EB: F005 BEQ $05 000011ED: C908 CMP #$08 000011EF: F001 BEQ $01 000011F1: 60 RTS 000011F2: 4C8BD2 JMP $D28B 000011F5: A9DB LDA #$DB 000011F7: 850A STA $0A 000011F9: A936 LDA #$36 000011FB: 20E8D9 JSR $D9E8 000011FE: D003 BNE $03 00001200: 4C75D2 JMP $D275 00001203: 2090D9 JSR $D990 00001206: F001 BEQ $01 00001208: 60 RTS 00001209: A556 LDA $56 0000120B: C902 CMP #$02 0000120D: F006 BEQ $06 0000120F: EE0302 INC $0203 00001212: 4C08D2 JMP $D208 00001215: CE0302 DEC $0203 00001218: 20CBD2 JSR $D2CB 0000121B: 855A STA $5A 0000121D: AD0002 LDA $0200 00001220: 2016E0 JSR $E016 00001223: 8559 STA $59 00001225: 20EBD8 JSR $D8EB 00001228: F019 BEQ $19 0000122A: A653 LDX $53 0000122C: E001 CPX #$01 0000122E: D007 BNE $07 00001230: 18 CLC 00001231: 6D0002 ADC $0200 00001234: 8D0002 STA $0200 00001237: 206AD3 JSR $D36A 0000123A: C900 CMP #$00 0000123C: F005 BEQ $05 0000123E: A908 LDA #$08 00001240: 8596 STA $96 00001242: 60 RTS 00001243: A59B LDA $9B 00001245: D007 BNE $07 00001247: A901 LDA #$01 00001249: 859B STA $9B 0000124B: 4C75D2 JMP $D275 0000124E: A908 LDA #$08 00001250: 85FF STA $FF 00001252: A900 LDA #$00 00001254: 859B STA $9B 00001256: A597 LDA $97 00001258: F018 BEQ $18 0000125A: C908 CMP #$08 0000125C: F01F BEQ $1F 0000125E: A904 LDA #$04 00001260: 8597 STA $97 00001262: A585 LDA $85 00001264: F005 BEQ $05 00001266: A900 LDA #$00 00001268: 4C5DD2 JMP $D25D 0000126B: A908 LDA #$08 0000126D: 8597 STA $97 0000126F: 4C75D2 JMP $D275 00001272: A904 LDA #$04 00001274: 8597 STA $97 00001276: A900 LDA #$00 00001278: 8585 STA $85 0000127A: 4C75D2 JMP $D275 0000127D: A904 LDA #$04 0000127F: 8597 STA $97 00001281: A901 LDA #$01 00001283: 8585 STA $85 00001285: 20E1EA JSR $EAE1 00001288: A597 LDA $97 0000128A: 8502 STA $02 0000128C: 20CDEA JSR $EACD 0000128F: A556 LDA $56 00001291: C902 CMP #$02 00001293: F003 BEQ $03 00001295: 4C82F0 JMP $F082 00001298: 4C88F0 JMP $F088 0000129B: 20E1EA JSR $EAE1 0000129E: A986 LDA #$86 000012A0: 8502 STA $02 000012A2: A9C1 LDA #$C1 000012A4: 8503 STA $03 000012A6: 20EBEF JSR $EFEB 000012A9: A553 LDA $53 000012AB: 38 SEC 000012AC: E901 SBC #$01 000012AE: 0A ASL A 000012AF: AA TAX 000012B0: BD7BC4 LDA $C47B,X 000012B3: 8504 STA $04 000012B5: BD7CC4 LDA $C47C,X 000012B8: 8505 STA $05 000012BA: BD83C4 LDA $C483,X 000012BD: 8506 STA $06 000012BF: BD84C4 LDA $C484,X 000012C2: 8507 STA $07 000012C4: 20ADD8 JSR $D8AD 000012C7: F011 BEQ $11 000012C9: A500 LDA $00 000012CB: 38 SEC 000012CC: E904 SBC #$04 000012CE: 85A1 STA $A1 000012D0: A902 LDA #$02 000012D2: 8596 STA $96 000012D4: A900 LDA #$00 000012D6: 855B STA $5B 000012D8: 855C STA $5C 000012DA: 60 RTS 000012DB: 20E1EA JSR $EAE1 000012DE: A596 LDA $96 000012E0: C904 CMP #$04 000012E2: F009 BEQ $09 000012E4: C908 CMP #$08 000012E6: F005 BEQ $05 000012E8: A92C LDA #$2C 000012EA: 4CDFD2 JMP $D2DF 000012ED: A94A LDA #$4A 000012EF: 20E8EF JSR $EFE8 000012F2: A553 LDA $53 000012F4: C901 CMP #$01 000012F6: F008 BEQ $08 000012F8: 38 SEC 000012F9: E901 SBC #$01 000012FB: 0A ASL A 000012FC: AA TAX 000012FD: 4CFDD2 JMP $D2FD 00001300: A91A LDA #$1A 00001302: 2031C8 JSR $C831 00001305: 201AD9 JSR $D91A 00001308: 850C STA $0C 0000130A: 4C23D3 JMP $D323 0000130D: BD6BC4 LDA $C46B,X 00001310: 8504 STA $04 00001312: BD6CC4 LDA $C46C,X 00001315: 8505 STA $05 00001317: BD73C4 LDA $C473,X 0000131A: 8506 STA $06 0000131C: BD74C4 LDA $C474,X 0000131F: 8507 STA $07 00001321: 20ADD8 JSR $D8AD 00001324: 850C STA $0C 00001326: D00B BNE $0B 00001328: A553 LDA $53 0000132A: C903 CMP #$03 0000132C: D005 BNE $05 0000132E: 2026D3 JSR $D326 00001331: 850C STA $0C 00001333: A50C LDA $0C 00001335: 60 RTS 00001336: A92A LDA #$2A 00001338: 2047C8 JSR $C847 0000133B: A900 LDA #$00 0000133D: 85D2 STA $D2 0000133F: A5D2 LDA $D2 00001341: C906 CMP #$06 00001343: F030 BEQ $30 00001345: AA TAX 00001346: BCCCC2 LDY $C2CC,X 00001349: B90002 LDA $0200,Y 0000134C: C9FF CMP #$FF 0000134E: F00E BEQ $0E 00001350: 8501 STA $01 00001352: B90302 LDA $0203,Y 00001355: 8500 STA $00 00001357: 20EFEF JSR $EFEF 0000135A: C901 CMP #$01 0000135C: F005 BEQ $05 0000135E: E6D2 INC $D2 00001360: 4C2FD3 JMP $D32F 00001363: A5D2 LDA $D2 00001365: C903 CMP #$03 00001367: B005 BCS $05 00001369: A901 LDA #$01 0000136B: 4C60D3 JMP $D360 0000136E: A902 LDA #$02 00001370: 85DA STA $DA 00001372: A901 LDA #$01 00001374: 60 RTS 00001375: A900 LDA #$00 00001377: 85DA STA $DA 00001379: 60 RTS 0000137A: A553 LDA $53 0000137C: C901 CMP #$01 0000137E: F003 BEQ $03 00001380: 4C7BD3 JMP $D37B 00001383: A91C LDA #$1C 00001385: 2031C8 JSR $C831 00001388: 4CADD8 JMP $D8AD 0000138B: A901 LDA #$01 0000138D: 60 RTS 0000138E: A556 LDA $56 00001390: C908 CMP #$08 00001392: F00A BEQ $0A 00001394: C904 CMP #$04 00001396: F003 BEQ $03 00001398: 4CCFD4 JMP $D4CF 0000139B: 4C32D4 JMP $D432 0000139E: A55A LDA $5A 000013A0: F00A BEQ $0A 000013A2: 20E1EA JSR $EAE1 000013A5: C601 DEC $01 000013A7: 200AD5 JSR $D50A 000013AA: D031 BNE $31 000013AC: A924 LDA #$24 000013AE: 850A STA $0A 000013B0: A949 LDA #$49 000013B2: 20E8D9 JSR $D9E8 000013B5: D008 BNE $08 000013B7: AD0002 LDA $0200 000013BA: 8501 STA $01 000013BC: 4CCFD4 JMP $D4CF 000013BF: 200AD5 JSR $D50A 000013C2: F033 BEQ $33 000013C4: C902 CMP #$02 000013C6: D003 BNE $03 000013C8: 4CCFD4 JMP $D4CF 000013CB: A55B LDA $5B 000013CD: F011 BEQ $11 000013CF: 18 CLC 000013D0: 6901 ADC #$01 000013D2: C910 CMP #$10 000013D4: F00C BEQ $0C 000013D6: 900A BCC $0A 000013D8: A910 LDA #$10 000013DA: 4CD2D3 JMP $D3D2 000013DD: 4CCFD4 JMP $D4CF 000013E0: A901 LDA #$01 000013E2: 855B STA $5B 000013E4: AA TAX 000013E5: CA DEX 000013E6: BD47C1 LDA $C147,X 000013E9: 8502 STA $02 000013EB: A900 LDA #$00 000013ED: 855A STA $5A 000013EF: 855C STA $5C 000013F1: 20EED4 JSR $D4EE 000013F4: 4C0DD4 JMP $D40D 000013F7: A55C LDA $5C 000013F9: F00E BEQ $0E 000013FB: 18 CLC 000013FC: 6901 ADC #$01 000013FE: C906 CMP #$06 00001400: F009 BEQ $09 00001402: 9007 BCC $07 00001404: A901 LDA #$01 00001406: 4CFBD3 JMP $D3FB 00001409: A902 LDA #$02 0000140B: 855C STA $5C 0000140D: AA TAX 0000140E: CA DEX 0000140F: BD59C1 LDA $C159,X 00001412: 8502 STA $02 00001414: A900 LDA #$00 00001416: 855A STA $5A 00001418: 855B STA $5B 0000141A: 20EED4 JSR $D4EE 0000141D: A5A1 LDA $A1 0000141F: 8500 STA $00 00001421: 8D0302 STA $0203 00001424: 20D1EA JSR $EAD1 00001427: A900 LDA #$00 00001429: 8504 STA $04 0000142B: A502 LDA $02 0000142D: C954 CMP #$54 0000142F: F005 BEQ $05 00001431: A900 LDA #$00 00001433: 4C2CD4 JMP $D42C 00001436: A924 LDA #$24 00001438: 8502 STA $02 0000143A: A901 LDA #$01 0000143C: 2096F0 JSR $F096 0000143F: 4CCFD4 JMP $D4CF 00001442: A55A LDA $5A 00001444: F00F BEQ $0F 00001446: 20E1EA JSR $EAE1 00001449: E601 INC $01 0000144B: 200AD5 JSR $D50A 0000144E: C901 CMP #$01 00001450: F003 BEQ $03 00001452: 4CCFD4 JMP $D4CF 00001455: A924 LDA #$24 00001457: 850A STA $0A 00001459: A949 LDA #$49 0000145B: 850B STA $0B 0000145D: 20E6D9 JSR $D9E6 00001460: D008 BNE $08 00001462: AD0002 LDA $0200 00001465: 8501 STA $01 00001467: 4CCFD4 JMP $D4CF 0000146A: 200AD5 JSR $D50A 0000146D: F02C BEQ $2C 0000146F: C902 CMP #$02 00001471: F028 BEQ $28 00001473: A55B LDA $5B 00001475: F00A BEQ $0A 00001477: 38 SEC 00001478: E901 SBC #$01 0000147A: C901 CMP #$01 0000147C: 9008 BCC $08 0000147E: 4C78D4 JMP $D478 00001481: A90D LDA #$0D 00001483: 4C78D4 JMP $D478 00001486: A901 LDA #$01 00001488: 855B STA $5B 0000148A: AA TAX 0000148B: CA DEX 0000148C: BD47C1 LDA $C147,X 0000148F: 8502 STA $02 00001491: A903 LDA #$03 00001493: 855C STA $5C 00001495: 20F9D4 JSR $D4F9 00001498: 4CB1D4 JMP $D4B1 0000149B: A55C LDA $5C 0000149D: F00E BEQ $0E 0000149F: 18 CLC 000014A0: 6901 ADC #$01 000014A2: C906 CMP #$06 000014A4: F009 BEQ $09 000014A6: 9007 BCC $07 000014A8: A901 LDA #$01 000014AA: 4C9FD4 JMP $D49F 000014AD: A901 LDA #$01 000014AF: 855C STA $5C 000014B1: 38 SEC 000014B2: E901 SBC #$01 000014B4: AA TAX 000014B5: BD59C1 LDA $C159,X 000014B8: 8502 STA $02 000014BA: A900 LDA #$00 000014BC: 855B STA $5B 000014BE: 20F9D4 JSR $D4F9 000014C1: A5A1 LDA $A1 000014C3: 8D0302 STA $0203 000014C6: 8500 STA $00 000014C8: 20CDEA JSR $EACD 000014CB: A502 LDA $02 000014CD: C954 CMP #$54 000014CF: F005 BEQ $05 000014D1: A900 LDA #$00 000014D3: 4CCCD4 JMP $D4CC 000014D6: A924 LDA #$24 000014D8: 8502 STA $02 000014DA: A901 LDA #$01 000014DC: 2096F0 JSR $F096 000014DF: 20CBD2 JSR $D2CB 000014E2: 855A STA $5A 000014E4: F017 BEQ $17 000014E6: AD0002 LDA $0200 000014E9: 18 CLC 000014EA: 6908 ADC #$08 000014EC: 2016E0 JSR $E016 000014EF: 8559 STA $59 000014F1: A901 LDA #$01 000014F3: 8596 STA $96 000014F5: A900 LDA #$00 000014F7: 855C STA $5C 000014F9: 855B STA $5B 000014FB: 8585 STA $85 000014FD: 60 RTS 000014FE: AD0002 LDA $0200 00001501: 38 SEC 00001502: E901 SBC #$01 00001504: 8501 STA $01 00001506: 4C01D5 JMP $D501 00001509: AD0002 LDA $0200 0000150C: 18 CLC 0000150D: 6901 ADC #$01 0000150F: 8501 STA $01 00001511: 2906 AND #$06 00001513: D004 BNE $04 00001515: A908 LDA #$08 00001517: 85FF STA $FF 00001519: 60 RTS 0000151A: 20E1EA JSR $EAE1 0000151D: A92C LDA #$2C 0000151F: 20E8EF JSR $EFE8 00001522: A553 LDA $53 00001524: 38 SEC 00001525: E901 SBC #$01 00001527: 0A ASL A 00001528: AA TAX 00001529: BD8BC4 LDA $C48B,X 0000152C: 8504 STA $04 0000152E: BD8CC4 LDA $C48C,X 00001531: 8505 STA $05 00001533: A943 LDA #$43 00001535: 8506 STA $06 00001537: A9C1 LDA #$C1 00001539: 8507 STA $07 0000153B: 20ADD8 JSR $D8AD 0000153E: 8508 STA $08 00001540: A553 LDA $53 00001542: C901 CMP #$01 00001544: D00E BNE $0E 00001546: A91E LDA #$1E 00001548: 2031C8 JSR $C831 0000154B: 20ADD8 JSR $D8AD 0000154E: F004 BEQ $04 00001550: A902 LDA #$02 00001552: 8508 STA $08 00001554: A508 LDA $08 00001556: 60 RTS 00001557: A9FF LDA #$FF 00001559: 20E6D9 JSR $D9E6 0000155C: C900 CMP #$00 0000155E: D001 BNE $01 00001560: 60 RTS 00001561: A594 LDA $94 00001563: C9F0 CMP #$F0 00001565: 9003 BCC $03 00001567: 4C0DD6 JMP $D60D 0000156A: 2090D9 JSR $D990 0000156D: F011 BEQ $11 0000156F: A556 LDA $56 00001571: C901 CMP #$01 00001573: D005 BNE $05 00001575: A902 LDA #$02 00001577: 4C6CD5 JMP $D56C 0000157A: A901 LDA #$01 0000157C: 8556 STA $56 0000157E: 8557 STA $57 00001580: AD0002 LDA $0200 00001583: 8501 STA $01 00001585: A900 LDA #$00 00001587: 2072EF JSR $EF72 0000158A: A501 LDA $01 0000158C: 8D0002 STA $0200 0000158F: A556 LDA $56 00001591: C901 CMP #$01 00001593: F007 BEQ $07 00001595: C902 CMP #$02 00001597: F018 BEQ $18 00001599: 4CB3D5 JMP $D5B3 0000159C: A59E LDA $9E 0000159E: F00A BEQ $0A 000015A0: EE0302 INC $0203 000015A3: A900 LDA #$00 000015A5: 859E STA $9E 000015A7: 4CB3D5 JMP $D5B3 000015AA: A901 LDA #$01 000015AC: 859E STA $9E 000015AE: 4CB3D5 JMP $D5B3 000015B1: A59E LDA $9E 000015B3: F00A BEQ $0A 000015B5: CE0302 DEC $0203 000015B8: A900 LDA #$00 000015BA: 859E STA $9E 000015BC: 4CB3D5 JMP $D5B3 000015BF: A901 LDA #$01 000015C1: 859E STA $9E 000015C3: AD0302 LDA $0203 000015C6: 8500 STA $00 000015C8: 2000D8 JSR $D800 000015CB: A594 LDA $94 000015CD: F023 BEQ $23 000015CF: A501 LDA $01 000015D1: 38 SEC 000015D2: E910 SBC #$10 000015D4: C595 CMP $95 000015D6: 9004 BCC $04 000015D8: A9FF LDA #$FF 000015DA: 8595 STA $95 000015DC: 20CBD2 JSR $D2CB 000015DF: 855A STA $5A 000015E1: F01E BEQ $1E 000015E3: A54B LDA $4B 000015E5: 38 SEC 000015E6: E911 SBC #$11 000015E8: 8D0002 STA $0200 000015EB: A901 LDA #$01 000015ED: 855A STA $5A 000015EF: 4CF6D5 JMP $D5F6 000015F2: A904 LDA #$04 000015F4: 85FF STA $FF 000015F6: A901 LDA #$01 000015F8: 8594 STA $94 000015FA: A501 LDA $01 000015FC: 8595 STA $95 000015FE: 4CF1D5 JMP $D5F1 00001601: A928 LDA #$28 00001603: 4C70F0 JMP $F070 00001606: 20E1EA JSR $EAE1 00001609: A92C LDA #$2C 0000160B: 8502 STA $02 0000160D: 20CDEA JSR $EACD 00001610: A557 LDA $57 00001612: 2903 AND #$03 00001614: 4A LSR A 00001615: 2096F0 JSR $F096 00001618: A9F0 LDA #$F0 0000161A: 8594 STA $94 0000161C: 60 RTS 0000161D: E694 INC $94 0000161F: A594 LDA $94 00001621: C9F4 CMP #$F4 00001623: D03A BNE $3A 00001625: A595 LDA $95 00001627: C9FF CMP #$FF 00001629: F027 BEQ $27 0000162B: A904 LDA #$04 0000162D: 2070F0 JSR $F070 00001630: A900 LDA #$00 00001632: 8D2C04 STA $042C 00001635: 8594 STA $94 00001637: 8595 STA $95 00001639: A901 LDA #$01 0000163B: 8596 STA $96 0000163D: A5A0 LDA $A0 0000163F: F01E BEQ $1E 00001641: A901 LDA #$01 00001643: 859F STA $9F 00001645: A94B LDA #$4B 00001647: 853F STA $3F 00001649: A90A LDA #$0A 0000164B: 8596 STA $96 0000164D: A940 LDA #$40 0000164F: 85FC STA $FC 00001651: 60 RTS 00001652: A900 LDA #$00 00001654: 8D2C04 STA $042C 00001657: 8594 STA $94 00001659: 8595 STA $95 0000165B: A9FF LDA #$FF 0000165D: 8596 STA $96 0000165F: 60 RTS 00001660: A9FE LDA #$FE 00001662: 8D7204 STA $0472 00001665: 8D7304 STA $0473 00001668: A200 LDX #$00 0000166A: A060 LDY #$60 0000166C: B90002 LDA $0200,Y 0000166F: C9FF CMP #$FF 00001671: F00F BEQ $0F 00001673: 9D6104 STA $0461,X 00001676: B90302 LDA $0203,Y 00001679: 38 SEC 0000167A: E908 SBC #$08 0000167C: 9D6004 STA $0460,X 0000167F: 4C7AD6 JMP $D67A 00001682: A900 LDA #$00 00001684: 9D6104 STA $0461,X 00001687: 9D6004 STA $0460,X 0000168A: 98 TYA 0000168B: 18 CLC 0000168C: 6908 ADC #$08 0000168E: A8 TAY 0000168F: E8 INX 00001690: E8 INX 00001691: E8 INX 00001692: C090 CPY #$90 00001694: D0D6 BNE $D6 00001696: A920 LDA #$20 00001698: 2031C8 JSR $C831 0000169B: 20ADD8 JSR $D8AD 0000169E: F006 BEQ $06 000016A0: A908 LDA #$08 000016A2: 8596 STA $96 000016A4: A901 LDA #$01 000016A6: 60 RTS 000016A7: A9FF LDA #$FF 000016A9: 20E6D9 JSR $D9E6 000016AC: F027 BEQ $27 000016AE: 20E1EA JSR $EAE1 000016B1: E601 INC $01 000016B3: E601 INC $01 000016B5: A557 LDA $57 000016B7: C902 CMP #$02 000016B9: F006 BEQ $06 000016BB: AD0102 LDA $0201 000016BE: 4CB7D6 JMP $D6B7 000016C1: AD0102 LDA $0201 000016C4: 38 SEC 000016C5: E902 SBC #$02 000016C7: 8502 STA $02 000016C9: 2075F0 JSR $F075 000016CC: 20CBD2 JSR $D2CB 000016CF: F004 BEQ $04 000016D1: A9FF LDA #$FF 000016D3: 8596 STA $96 000016D5: 60 RTS 000016D6: A53F LDA $3F 000016D8: D003 BNE $03 000016DA: 4CBFD7 JMP $D7BF 000016DD: A9DB LDA #$DB 000016DF: 850A STA $0A 000016E1: A936 LDA #$36 000016E3: 20E8D9 JSR $D9E8 000016E6: D001 BNE $01 000016E8: 60 RTS 000016E9: 2090D9 JSR $D990 000016EC: D00A BNE $0A 000016EE: A556 LDA $56 000016F0: C901 CMP #$01 000016F2: F026 BEQ $26 000016F4: C902 CMP #$02 000016F6: F028 BEQ $28 000016F8: A5A2 LDA $A2 000016FA: 0A ASL A 000016FB: 85A2 STA $A2 000016FD: F003 BEQ $03 000016FF: 4C53D7 JMP $D753 00001702: A920 LDA #$20 00001704: 85A2 STA $A2 00001706: A59F LDA $9F 00001708: F004 BEQ $04 0000170A: C904 CMP #$04 0000170C: 9005 BCC $05 0000170E: A902 LDA #$02 00001710: 4C05D7 JMP $D705 00001713: A905 LDA #$05 00001715: 859F STA $9F 00001717: 4C53D7 JMP $D753 0000171A: EE0302 INC $0203 0000171D: 4C13D7 JMP $D713 00001720: CE0302 DEC $0203 00001723: 20CBD2 JSR $D2CB 00001726: 855A STA $5A 00001728: AD0002 LDA $0200 0000172B: 2016E0 JSR $E016 0000172E: 8559 STA $59 00001730: 20EBD8 JSR $D8EB 00001733: F019 BEQ $19 00001735: A653 LDX $53 00001737: E001 CPX #$01 00001739: D007 BNE $07 0000173B: 18 CLC 0000173C: 6D0002 ADC $0200 0000173F: 8D0002 STA $0200 00001742: 206AD3 JSR $D36A 00001745: F007 BEQ $07 00001747: A908 LDA #$08 00001749: 8596 STA $96 0000174B: 4CBFD7 JMP $D7BF 0000174E: A908 LDA #$08 00001750: 85FF STA $FF 00001752: A59F LDA $9F 00001754: F009 BEQ $09 00001756: C906 CMP #$06 00001758: B005 BCS $05 0000175A: E69F INC $9F 0000175C: 4C53D7 JMP $D753 0000175F: A901 LDA #$01 00001761: 859F STA $9F 00001763: A69F LDX $9F 00001765: CA DEX 00001766: BDA2C1 LDA $C1A2,X 00001769: 2070F0 JSR $F070 0000176C: A59F LDA $9F 0000176E: 4A LSR A 0000176F: 4A LSR A 00001770: F005 BEQ $05 00001772: A900 LDA #$00 00001774: 4C69D7 JMP $D769 00001777: A901 LDA #$01 00001779: F01B BEQ $1B 0000177B: A904 LDA #$04 0000177D: 18 CLC 0000177E: 6D0302 ADC $0203 00001781: 8500 STA $00 00001783: AD0002 LDA $0200 00001786: 38 SEC 00001787: E90E SBC #$0E 00001789: 8501 STA $01 0000178B: A921 LDA #$21 0000178D: 8503 STA $03 0000178F: A9F6 LDA #$F6 00001791: 8502 STA $02 00001793: 4CADD7 JMP $D7AD 00001796: A557 LDA $57 00001798: C901 CMP #$01 0000179A: D009 BNE $09 0000179C: A90E LDA #$0E 0000179E: 18 CLC 0000179F: 6D0302 ADC $0203 000017A2: 4C9BD7 JMP $D79B 000017A5: AD0302 LDA $0203 000017A8: 38 SEC 000017A9: E90E SBC #$0E 000017AB: 8500 STA $00 000017AD: A906 LDA #$06 000017AF: 18 CLC 000017B0: 6D0002 ADC $0200 000017B3: 8501 STA $01 000017B5: A912 LDA #$12 000017B7: 8503 STA $03 000017B9: A9FA LDA #$FA 000017BB: 8502 STA $02 000017BD: A5A0 LDA $A0 000017BF: C901 CMP #$01 000017C1: F005 BEQ $05 000017C3: A9D8 LDA #$D8 000017C5: 4CBAD7 JMP $D7BA 000017C8: A9D0 LDA #$D0 000017CA: 8504 STA $04 000017CC: 4C78F0 JMP $F078 000017CF: A912 LDA #$12 000017D1: 8503 STA $03 000017D3: A5A0 LDA $A0 000017D5: C901 CMP #$01 000017D7: F00A BEQ $0A 000017D9: A900 LDA #$00 000017DB: 8D5204 STA $0452 000017DE: A9D8 LDA #$D8 000017E0: 4CDAD7 JMP $D7DA 000017E3: A900 LDA #$00 000017E5: 8D5104 STA $0451 000017E8: A9D0 LDA #$D0 000017EA: 8504 STA $04 000017EC: 2094F0 JSR $F094 000017EF: 20F2D7 JSR $D7F2 000017F2: A901 LDA #$01 000017F4: 8596 STA $96 000017F6: A900 LDA #$00 000017F8: 85A0 STA $A0 000017FA: 859F STA $9F 000017FC: AD1905 LDA $0519 000017FF: 85FC STA $FC 00001801: 60 RTS 00001802: A919 LDA #$19 00001804: 8500 STA $00 00001806: A93F LDA #$3F 00001808: 8501 STA $01 0000180A: A94E LDA #$4E 0000180C: 2015C8 JSR $C815 0000180F: 60 RTS 00001810: A5A0 LDA $A0 00001812: F001 BEQ $01 00001814: 60 RTS 00001815: A453 LDY $53 00001817: C003 CPY #$03 00001819: D003 BNE $03 0000181B: 4CA8D8 JMP $D8A8 0000181E: AD0302 LDA $0203 00001821: C001 CPY #$01 00001823: F009 BEQ $09 00001825: C988 CMP #$88 00001827: F00E BEQ $0E 00001829: 900C BCC $0C 0000182B: 4CA8D8 JMP $D8A8 0000182E: C928 CMP #$28 00001830: F005 BEQ $05 00001832: 9003 BCC $03 00001834: 4CA8D8 JMP $D8A8 00001837: AD0002 LDA $0200 0000183A: 18 CLC 0000183B: 6908 ADC #$08 0000183D: 2016E0 JSR $E016 00001840: 8559 STA $59 00001842: A553 LDA $53 00001844: 38 SEC 00001845: E901 SBC #$01 00001847: 0A ASL A 00001848: AA TAX 00001849: A559 LDA $59 0000184B: DDA8C1 CMP $C1A8,X 0000184E: F009 BEQ $09 00001850: E8 INX 00001851: DDA8C1 CMP $C1A8,X 00001854: F003 BEQ $03 00001856: 4CA8D8 JMP $D8A8 00001859: 8A TXA 0000185A: 2901 AND #$01 0000185C: F019 BEQ $19 0000185E: AD5204 LDA $0452 00001861: D003 BNE $03 00001863: 4CA8D8 JMP $D8A8 00001866: A902 LDA #$02 00001868: 85A0 STA $A0 0000186A: ADD802 LDA $02D8 0000186D: 8501 STA $01 0000186F: ADDB02 LDA $02DB 00001872: 8500 STA $00 00001874: 4C7DD8 JMP $D87D 00001877: AD5104 LDA $0451 0000187A: D003 BNE $03 0000187C: 4CA8D8 JMP $D8A8 0000187F: A901 LDA #$01 00001881: 85A0 STA $A0 00001883: ADD002 LDA $02D0 00001886: 8501 STA $01 00001888: ADD302 LDA $02D3 0000188B: 8500 STA $00 0000188D: A92E LDA #$2E 0000188F: 20E8EF JSR $EFE8 00001892: 20E1EA JSR $EAE1 00001895: A930 LDA #$30 00001897: 2047C8 JSR $C847 0000189A: 20EFEF JSR $EFEF 0000189D: F019 BEQ $19 0000189F: A5FC LDA $FC 000018A1: 8D1905 STA $0519 000018A4: A553 LDA $53 000018A6: C904 CMP #$04 000018A8: D00D BNE $0D 000018AA: A919 LDA #$19 000018AC: 8500 STA $00 000018AE: A93F LDA #$3F 000018B0: 8501 STA $01 000018B2: A946 LDA #$46 000018B4: 2015C8 JSR $C815 000018B7: 60 RTS 000018B8: A900 LDA #$00 000018BA: 85A0 STA $A0 000018BC: 60 RTS 000018BD: A9F3 LDA #$F3 000018BF: 850B STA $0B 000018C1: A900 LDA #$00 000018C3: 8586 STA $86 000018C5: A000 LDY #$00 000018C7: B104 LDA ($04),Y 000018C9: 8500 STA $00 000018CB: C8 INY 000018CC: B104 LDA ($04),Y 000018CE: 8501 STA $01 000018D0: C8 INY 000018D1: B104 LDA ($04),Y 000018D3: 18 CLC 000018D4: 6506 ADC $06 000018D6: 8502 STA $02 000018D8: A507 LDA $07 000018DA: 6900 ADC #$00 000018DC: 8503 STA $03 000018DE: 8486 STY $86 000018E0: 20F3EF JSR $EFF3 000018E3: D00C BNE $0C 000018E5: A486 LDY $86 000018E7: C8 INY 000018E8: B104 LDA ($04),Y 000018EA: C9FE CMP #$FE 000018EC: F008 BEQ $08 000018EE: 4CB9D8 JMP $D8B9 000018F1: A901 LDA #$01 000018F3: 4CE8D8 JMP $D8E8 000018F6: A900 LDA #$00 000018F8: 850C STA $0C 000018FA: 60 RTS 000018FB: A55A LDA $5A 000018FD: D028 BNE $28 000018FF: A559 LDA $59 00001901: F024 BEQ $24 00001903: 2901 AND #$01 00001905: D00D BNE $0D 00001907: A556 LDA $56 00001909: C901 CMP #$01 0000190B: F017 BEQ $17 0000190D: C902 CMP #$02 0000190F: F010 BEQ $10 00001911: 4C17D9 JMP $D917 00001914: A556 LDA $56 00001916: C901 CMP #$01 00001918: F007 BEQ $07 0000191A: C902 CMP #$02 0000191C: F006 BEQ $06 0000191E: 4C17D9 JMP $D917 00001921: A9FF LDA #$FF 00001923: 60 RTS 00001924: A901 LDA #$01 00001926: 60 RTS 00001927: A900 LDA #$00 00001929: 60 RTS 0000192A: AD0002 LDA $0200 0000192D: 18 CLC 0000192E: 6908 ADC #$08 00001930: 2016E0 JSR $E016 00001933: 8559 STA $59 00001935: C901 CMP #$01 00001937: F00F BEQ $0F 00001939: A202 LDX #$02 0000193B: A90C LDA #$0C 0000193D: E459 CPX $59 0000193F: F00A BEQ $0A 00001941: 18 CLC 00001942: 6906 ADC #$06 00001944: E8 INX 00001945: 4C2DD9 JMP $D92D 00001948: 38 SEC 00001949: E901 SBC #$01 0000194B: AA TAX 0000194C: A900 LDA #$00 0000194E: 8586 STA $86 00001950: BD8CC0 LDA $C08C,X 00001953: 8500 STA $00 00001955: E8 INX 00001956: BD8CC0 LDA $C08C,X 00001959: 8501 STA $01 0000195B: E8 INX 0000195C: BD8CC0 LDA $C08C,X 0000195F: 18 CLC 00001960: 6506 ADC $06 00001962: 8502 STA $02 00001964: A507 LDA $07 00001966: 8503 STA $03 00001968: E8 INX 00001969: BD8CC0 LDA $C08C,X 0000196C: 8508 STA $08 0000196E: E8 INX 0000196F: BD8CC0 LDA $C08C,X 00001972: 8509 STA $09 00001974: 20EFEF JSR $EFEF 00001977: D022 BNE $22 00001979: A500 LDA $00 0000197B: 18 CLC 0000197C: 6508 ADC $08 0000197E: 8500 STA $00 00001980: C601 DEC $01 00001982: E686 INC $86 00001984: A509 LDA $09 00001986: C586 CMP $86 00001988: D0EA BNE $EA 0000198A: E8 INX 0000198B: BD8CC0 LDA $C08C,X 0000198E: C9FE CMP #$FE 00001990: F004 BEQ $04 00001992: E8 INX 00001993: 4C3CD9 JMP $D93C 00001996: A900 LDA #$00 00001998: 4C8DD9 JMP $D98D 0000199B: A901 LDA #$01 0000199D: 855A STA $5A 0000199F: 60 RTS 000019A0: A556 LDA $56 000019A2: C901 CMP #$01 000019A4: F007 BEQ $07 000019A6: C902 CMP #$02 000019A8: F015 BEQ $15 000019AA: 4CE3D9 JMP $D9E3 000019AD: A553 LDA $53 000019AF: 0A ASL A 000019B0: AA TAX 000019B1: CA DEX 000019B2: BDB4C1 LDA $C1B4,X 000019B5: CD0302 CMP $0203 000019B8: F036 BEQ $36 000019BA: 9034 BCC $34 000019BC: 4CE3D9 JMP $D9E3 000019BF: A553 LDA $53 000019C1: 0A ASL A 000019C2: AA TAX 000019C3: CA DEX 000019C4: CA DEX 000019C5: BDB4C1 LDA $C1B4,X 000019C8: CD0302 CMP $0203 000019CB: B023 BCS $23 000019CD: A553 LDA $53 000019CF: C904 CMP #$04 000019D1: F020 BEQ $20 000019D3: A659 LDX $59 000019D5: C903 CMP #$03 000019D7: F007 BEQ $07 000019D9: E006 CPX #$06 000019DB: D016 BNE $16 000019DD: 4CD4D9 JMP $D9D4 000019E0: E005 CPX #$05 000019E2: D00F BNE $0F 000019E4: AD0302 LDA $0203 000019E7: C968 CMP #$68 000019E9: F005 BEQ $05 000019EB: 9003 BCC $03 000019ED: 4CE3D9 JMP $D9E3 000019F0: A901 LDA #$01 000019F2: 60 RTS 000019F3: A900 LDA #$00 000019F5: 60 RTS 000019F6: 850A STA $0A 000019F8: 850B STA $0B 000019FA: E688 INC $88 000019FC: A588 LDA $88 000019FE: C90F CMP #$0F 00001A00: B003 BCS $03 00001A02: 4CF9D9 JMP $D9F9 00001A05: A900 LDA #$00 00001A07: 8588 STA $88 00001A09: C908 CMP #$08 00001A0B: B009 BCS $09 00001A0D: AA TAX 00001A0E: BDBCC1 LDA $C1BC,X 00001A11: 250A AND $0A 00001A13: 4C0FDA JMP $DA0F 00001A16: 38 SEC 00001A17: E908 SBC #$08 00001A19: AA TAX 00001A1A: BDBCC1 LDA $C1BC,X 00001A1D: 250B AND $0B 00001A1F: F002 BEQ $02 00001A21: A901 LDA #$01 00001A23: 85BE STA $BE 00001A25: 60 RTS 00001A26: 2066E1 JSR $E166 00001A29: A900 LDA #$00 00001A2B: 855D STA $5D 00001A2D: 20D5EF JSR $EFD5 00001A30: BD0002 LDA $0200,X 00001A33: C9FF CMP #$FF 00001A35: D016 BNE $16 00001A37: A536 LDA $36 00001A39: D015 BNE $15 00001A3B: A980 LDA #$80 00001A3D: A65D LDX $5D 00001A3F: 955E STA $5E,X 00001A41: A910 LDA #$10 00001A43: 8537 STA $37 00001A45: 20F7EA JSR $EAF7 00001A48: BD43C4 LDA $C443,X 00001A4B: 8536 STA $36 00001A4D: 204CDA JSR $DA4C 00001A50: A55D LDA $5D 00001A52: 18 CLC 00001A53: 6901 ADC #$01 00001A55: 855D STA $5D 00001A57: C909 CMP #$09 00001A59: D0D2 BNE $D2 00001A5B: 60 RTS 00001A5C: A65D LDX $5D 00001A5E: B55E LDA $5E,X 00001A60: C980 CMP #$80 00001A62: F029 BEQ $29 00001A64: C981 CMP #$81 00001A66: F028 BEQ $28 00001A68: C901 CMP #$01 00001A6A: F027 BEQ $27 00001A6C: C902 CMP #$02 00001A6E: F026 BEQ $26 00001A70: C9C0 CMP #$C0 00001A72: F025 BEQ $25 00001A74: C9C1 CMP #$C1 00001A76: F021 BEQ $21 00001A78: C9C2 CMP #$C2 00001A7A: F01D BEQ $1D 00001A7C: C908 CMP #$08 00001A7E: F01F BEQ $1F 00001A80: C910 CMP #$10 00001A82: F01E BEQ $1E 00001A84: C920 CMP #$20 00001A86: F01D BEQ $1D 00001A88: C940 CMP #$40 00001A8A: F01C BEQ $1C 00001A8C: 60 RTS 00001A8D: 4C9CDA JMP $DA9C 00001A90: 4C00DB JMP $DB00 00001A93: 4C2CDB JMP $DB2C 00001A96: 4C30DC JMP $DC30 00001A99: BD2104 LDA $0421,X 00001A9C: 4C8BDD JMP $DD8B 00001A9F: 4C69DC JMP $DC69 00001AA2: 4CD0DC JMP $DCD0 00001AA5: 4C32DD JMP $DD32 00001AA8: 2007DF JSR $DF07 00001AAB: 60 RTS 00001AAC: 20D5EF JSR $EFD5 00001AAF: A930 LDA #$30 00001AB1: 8500 STA $00 00001AB3: 8501 STA $01 00001AB5: A990 LDA #$90 00001AB7: 8502 STA $02 00001AB9: 8604 STX $04 00001ABB: 20DBEA JSR $EADB 00001ABE: A537 LDA $37 00001AC0: D04D BNE $4D 00001AC2: A981 LDA #$81 00001AC4: A65D LDX $5D 00001AC6: 955E STA $5E,X 00001AC8: A900 LDA #$00 00001ACA: 958A STA $8A,X 00001ACC: A5AD LDA $AD 00001ACE: F003 BEQ $03 00001AD0: 4CD5DA JMP $DAD5 00001AD3: A55D LDA $5D 00001AD5: D038 BNE $38 00001AD7: A9C0 LDA #$C0 00001AD9: A65D LDX $5D 00001ADB: 955E STA $5E,X 00001ADD: A901 LDA #$01 00001ADF: 9D2104 STA $0421,X 00001AE2: 4CF7DA JMP $DAF7 00001AE5: A543 LDA $43 00001AE7: D026 BNE $26 00001AE9: A55D LDA $5D 00001AEB: D022 BNE $22 00001AED: A9C0 LDA #$C0 00001AEF: A65D LDX $5D 00001AF1: 955E STA $5E,X 00001AF3: BD2104 LDA $0421,X 00001AF6: C901 CMP #$01 00001AF8: D008 BNE $08 00001AFA: A903 LDA #$03 00001AFC: 9D2104 STA $0421,X 00001AFF: 4CF7DA JMP $DAF7 00001B02: A901 LDA #$01 00001B04: 9D2104 STA $0421,X 00001B07: 20F7EA JSR $EAF7 00001B0A: BD4DC4 LDA $C44D,X 00001B0D: 8543 STA $43 00001B0F: 60 RTS 00001B10: A955 LDA #$55 00001B12: 20E4DF JSR $DFE4 00001B15: D01A BNE $1A 00001B17: 20D5EF JSR $EFD5 00001B1A: A94D LDA #$4D 00001B1C: 8500 STA $00 00001B1E: A932 LDA #$32 00001B20: 8501 STA $01 00001B22: A984 LDA #$84 00001B24: 8502 STA $02 00001B26: 8604 STX $04 00001B28: 20DBEA JSR $EADB 00001B2B: EE1505 INC $0515 00001B2E: 4C2BDB JMP $DB2B 00001B31: A65D LDX $5D 00001B33: A901 LDA #$01 00001B35: 955E STA $5E,X 00001B37: A984 LDA #$84 00001B39: 9572 STA $72,X 00001B3B: 60 RTS 00001B3C: A9FF LDA #$FF 00001B3E: 20E4DF JSR $DFE4 00001B41: D001 BNE $01 00001B43: 60 RTS 00001B44: 20D5EF JSR $EFD5 00001B47: 48 PHA 00001B48: 20ECEA JSR $EAEC 00001B4B: A501 LDA $01 00001B4D: 2016E0 JSR $E016 00001B50: A45D LDY $5D 00001B52: 996800 STA $0068,Y 00001B55: 2901 AND #$01 00001B57: D005 BNE $05 00001B59: E600 INC $00 00001B5B: 4C50DB JMP $DB50 00001B5E: C600 DEC $00 00001B60: A500 LDA $00 00001B62: 205AE0 JSR $E05A 00001B65: 857D STA $7D 00001B67: 2048E0 JSR $E048 00001B6A: 18 CLC 00001B6B: 6501 ADC $01 00001B6D: 8501 STA $01 00001B6F: 20EEDB JSR $DBEE 00001B72: A65D LDX $5D 00001B74: B572 LDA $72,X 00001B76: 20D4EA JSR $EAD4 00001B79: 68 PLA 00001B7A: AA TAX 00001B7B: 2080F0 JSR $F080 00001B7E: A500 LDA $00 00001B80: 20AEE0 JSR $E0AE 00001B83: F037 BEQ $37 00001B85: 20F7EA JSR $EAF7 00001B88: BD48C4 LDA $C448,X 00001B8B: 2519 AND $19 00001B8D: D02D BNE $2D 00001B8F: A65D LDX $5D 00001B91: B568 LDA $68,X 00001B93: AA TAX 00001B94: CA DEX 00001B95: B57E LDA $7E,X 00001B97: C904 CMP #$04 00001B99: B021 BCS $21 00001B9B: A596 LDA $96 00001B9D: C902 CMP #$02 00001B9F: D012 BNE $12 00001BA1: A604 LDX $04 00001BA3: BD0002 LDA $0200,X 00001BA6: CD0002 CMP $0200 00001BA9: B008 BCS $08 00001BAB: 18 CLC 00001BAC: 690F ADC #$0F 00001BAE: CD0002 CMP $0200 00001BB1: B009 BCS $09 00001BB3: A902 LDA #$02 00001BB5: A65D LDX $5D 00001BB7: 955E STA $5E,X 00001BB9: D668 DEC $68,X 00001BBB: 60 RTS 00001BBC: A500 LDA $00 00001BBE: 2090E0 JSR $E090 00001BC1: F003 BEQ $03 00001BC3: 4CE7DB JMP $DBE7 00001BC6: 2040DF JSR $DF40 00001BC9: A65D LDX $5D 00001BCB: B568 LDA $68,X 00001BCD: C901 CMP #$01 00001BCF: D02C BNE $2C 00001BD1: 20C3DF JSR $DFC3 00001BD4: A500 LDA $00 00001BD6: C920 CMP #$20 00001BD8: F003 BEQ $03 00001BDA: 9001 BCC $01 00001BDC: 60 RTS 00001BDD: A903 LDA #$03 00001BDF: 8502 STA $02 00001BE1: A904 LDA #$04 00001BE3: 8503 STA $03 00001BE5: 208EF0 JSR $F08E 00001BE8: A901 LDA #$01 00001BEA: 85AD STA $AD 00001BEC: A900 LDA #$00 00001BEE: A65D LDX $5D 00001BF0: 9568 STA $68,X 00001BF2: A980 LDA #$80 00001BF4: 85FE STA $FE 00001BF6: 60 RTS 00001BF7: A65D LDX $5D 00001BF9: A908 LDA #$08 00001BFB: 955E STA $5E,X 00001BFD: 60 RTS 00001BFE: A65D LDX $5D 00001C00: FE0D04 INC $040D,X 00001C03: BD0D04 LDA $040D,X 00001C06: C906 CMP #$06 00001C08: B001 BCS $01 00001C0A: 60 RTS 00001C0B: A900 LDA #$00 00001C0D: 9D0D04 STA $040D,X 00001C10: B568 LDA $68,X 00001C12: 2901 AND #$01 00001C14: F015 BEQ $15 00001C16: B572 LDA $72,X 00001C18: 18 CLC 00001C19: 6904 ADC #$04 00001C1B: C980 CMP #$80 00001C1D: 9007 BCC $07 00001C1F: C990 CMP #$90 00001C21: B003 BCS $03 00001C23: 4C2DDC JMP $DC2D 00001C26: A980 LDA #$80 00001C28: 4C2DDC JMP $DC2D 00001C2B: B572 LDA $72,X 00001C2D: 38 SEC 00001C2E: E904 SBC #$04 00001C30: C980 CMP #$80 00001C32: 9007 BCC $07 00001C34: C990 CMP #$90 00001C36: B003 BCS $03 00001C38: 4C2DDC JMP $DC2D 00001C3B: A98C LDA #$8C 00001C3D: 9572 STA $72,X 00001C3F: 60 RTS 00001C40: A955 LDA #$55 00001C42: 20E4DF JSR $DFE4 00001C45: F031 BEQ $31 00001C47: 20D5EF JSR $EFD5 00001C4A: 8604 STX $04 00001C4C: 20ECEA JSR $EAEC 00001C4F: E601 INC $01 00001C51: A45D LDY $5D 00001C53: B97200 LDA $0072,Y 00001C56: C990 CMP #$90 00001C58: D005 BNE $05 00001C5A: A994 LDA #$94 00001C5C: 4C51DC JMP $DC51 00001C5F: A990 LDA #$90 00001C61: 8502 STA $02 00001C63: A65D LDX $5D 00001C65: 9572 STA $72,X 00001C67: 20DBEA JSR $EADB 00001C6A: A501 LDA $01 00001C6C: A65D LDX $5D 00001C6E: D5A3 CMP $A3,X 00001C70: D006 BNE $06 00001C72: A65D LDX $5D 00001C74: A901 LDA #$01 00001C76: 955E STA $5E,X 00001C78: 60 RTS 00001C79: A9FF LDA #$FF 00001C7B: 20E4DF JSR $DFE4 00001C7E: D001 BNE $01 00001C80: 60 RTS 00001C81: 20D5EF JSR $EFD5 00001C84: 8604 STX $04 00001C86: 20ECEA JSR $EAEC 00001C89: E601 INC $01 00001C8B: A501 LDA $01 00001C8D: 2901 AND #$01 00001C8F: F00F BEQ $0F 00001C91: A65D LDX $5D 00001C93: B568 LDA $68,X 00001C95: 2901 AND #$01 00001C97: F005 BEQ $05 00001C99: C600 DEC $00 00001C9B: 4C90DC JMP $DC90 00001C9E: E600 INC $00 00001CA0: 20EEDB JSR $DBEE 00001CA3: A65D LDX $5D 00001CA5: B572 LDA $72,X 00001CA7: 8502 STA $02 00001CA9: 20DBEA JSR $EADB 00001CAC: A932 LDA #$32 00001CAE: 2053C8 JSR $C853 00001CB1: A501 LDA $01 00001CB3: 2012E1 JSR $E112 00001CB6: F027 BEQ $27 00001CB8: A65D LDX $5D 00001CBA: A910 LDA #$10 00001CBC: 955E STA $5E,X 00001CBE: 2030E1 JSR $E130 00001CC1: F009 BEQ $09 00001CC3: A519 LDA $19 00001CC5: 2901 AND #$01 00001CC7: F003 BEQ $03 00001CC9: 4CC9DC JMP $DCC9 00001CCC: A65D LDX $5D 00001CCE: B568 LDA $68,X 00001CD0: AA TAX 00001CD1: CA DEX 00001CD2: B57E LDA $7E,X 00001CD4: C904 CMP #$04 00001CD6: B001 BCS $01 00001CD8: 60 RTS 00001CD9: A65D LDX $5D 00001CDB: A920 LDA #$20 00001CDD: 955E STA $5E,X 00001CDF: 60 RTS 00001CE0: A977 LDA #$77 00001CE2: 20E4DF JSR $DFE4 00001CE5: D001 BNE $01 00001CE7: 60 RTS 00001CE8: 20D5EF JSR $EFD5 00001CEB: 8604 STX $04 00001CED: 20ECEA JSR $EAEC 00001CF0: A501 LDA $01 00001CF2: 2016E0 JSR $E016 00001CF5: A65D LDX $5D 00001CF7: 9568 STA $68,X 00001CF9: 2901 AND #$01 00001CFB: D013 BNE $13 00001CFD: E600 INC $00 00001CFF: A500 LDA $00 00001D01: A200 LDX #$00 00001D03: DDFCC3 CMP $C3FC,X 00001D06: F01B BEQ $1B 00001D08: E8 INX 00001D09: E00B CPX #$0B 00001D0B: F028 BEQ $28 00001D0D: 4CF3DC JMP $DCF3 00001D10: C600 DEC $00 00001D12: A500 LDA $00 00001D14: A200 LDX #$00 00001D16: DD12C4 CMP $C412,X 00001D19: F008 BEQ $08 00001D1B: E8 INX 00001D1C: E00B CPX #$0B 00001D1E: F015 BEQ $15 00001D20: 4C06DD JMP $DD06 00001D23: A501 LDA $01 00001D25: 18 CLC 00001D26: 7D07C4 ADC $C407,X 00001D29: 8501 STA $01 00001D2B: E00A CPX #$0A 00001D2D: D006 BNE $06 00001D2F: A65D LDX $5D 00001D31: A901 LDA #$01 00001D33: 955E STA $5E,X 00001D35: 20EEDB JSR $DBEE 00001D38: A65D LDX $5D 00001D3A: B572 LDA $72,X 00001D3C: 8502 STA $02 00001D3E: 20DBEA JSR $EADB 00001D41: 60 RTS 00001D42: A955 LDA #$55 00001D44: 20E4DF JSR $DFE4 00001D47: D001 BNE $01 00001D49: 60 RTS 00001D4A: 20D5EF JSR $EFD5 00001D4D: 8604 STX $04 00001D4F: 20ECEA JSR $EAEC 00001D52: A501 LDA $01 00001D54: 2016E0 JSR $E016 00001D57: A65D LDX $5D 00001D59: 9568 STA $68,X 00001D5B: 2901 AND #$01 00001D5D: D011 BNE $11 00001D5F: C600 DEC $00 00001D61: A501 LDA $01 00001D63: C914 CMP #$14 00001D65: D002 BNE $02 00001D67: C601 DEC $01 00001D69: A500 LDA $00 00001D6B: D016 BNE $16 00001D6D: 4C7FDD JMP $DD7F 00001D70: E600 INC $00 00001D72: A501 LDA $01 00001D74: C9EC CMP #$EC 00001D76: D002 BNE $02 00001D78: C601 DEC $01 00001D7A: A500 LDA $00 00001D7C: C9F4 CMP #$F4 00001D7E: D003 BNE $03 00001D80: 4C7FDD JMP $DD7F 00001D83: 20EEDB JSR $DBEE 00001D86: A65D LDX $5D 00001D88: B572 LDA $72,X 00001D8A: 8502 STA $02 00001D8C: 4CDBEA JMP $EADB 00001D8F: A922 LDA #$22 00001D91: 2092F0 JSR $F092 00001D94: A900 LDA #$00 00001D96: A65D LDX $5D 00001D98: 9568 STA $68,X 00001D9A: 60 RTS 00001D9B: 8507 STA $07 00001D9D: A65D LDX $5D 00001D9F: B55E LDA $5E,X 00001DA1: C9C2 CMP #$C2 00001DA3: D003 BNE $03 00001DA5: 4C82DE JMP $DE82 00001DA8: C9C1 CMP #$C1 00001DAA: F03B BEQ $3B 00001DAC: A507 LDA $07 00001DAE: C902 CMP #$02 00001DB0: F009 BEQ $09 00001DB2: C903 CMP #$03 00001DB4: F00A BEQ $0A 00001DB6: A934 LDA #$34 00001DB8: 4CB2DD JMP $DDB2 00001DBB: A936 LDA #$36 00001DBD: 4CB2DD JMP $DDB2 00001DC0: A938 LDA #$38 00001DC2: 2053C8 JSR $C853 00001DC5: 20D5EF JSR $EFD5 00001DC8: 8604 STX $04 00001DCA: BD0002 LDA $0200,X 00001DCD: 2012E1 JSR $E112 00001DD0: A40A LDY $0A 00001DD2: C004 CPY #$04 00001DD4: D003 BNE $03 00001DD6: 4C73DE JMP $DE73 00001DD9: C900 CMP #$00 00001DDB: F00A BEQ $0A 00001DDD: A65D LDX $5D 00001DDF: A901 LDA #$01 00001DE1: 958A STA $8A,X 00001DE3: A9C1 LDA #$C1 00001DE5: 955E STA $5E,X 00001DE7: 20D5EF JSR $EFD5 00001DEA: 8604 STX $04 00001DEC: A65D LDX $5D 00001DEE: B55E LDA $5E,X 00001DF0: C9C1 CMP #$C1 00001DF2: D02F BNE $2F 00001DF4: A920 LDA #$20 00001DF6: 20E4DF JSR $DFE4 00001DF9: D00A BNE $0A 00001DFB: A604 LDX $04 00001DFD: BD0002 LDA $0200,X 00001E00: 8501 STA $01 00001E02: 4C27DE JMP $DE27 00001E05: A65D LDX $5D 00001E07: A9C0 LDA #$C0 00001E09: 955E STA $5E,X 00001E0B: A507 LDA $07 00001E0D: C903 CMP #$03 00001E0F: D00F BNE $0F 00001E11: BD1704 LDA $0417,X 00001E14: F005 BEQ $05 00001E16: A900 LDA #$00 00001E18: 4C0DDE JMP $DE0D 00001E1B: A901 LDA #$01 00001E1D: 9D1704 STA $0417,X 00001E20: 4C1ADE JMP $DE1A 00001E23: A9FF LDA #$FF 00001E25: 20E4DF JSR $DFE4 00001E28: F06B BEQ $6B 00001E2A: A604 LDX $04 00001E2C: A901 LDA #$01 00001E2E: 18 CLC 00001E2F: 7D0002 ADC $0200,X 00001E32: 8501 STA $01 00001E34: 2086DE JSR $DE86 00001E37: E8 INX 00001E38: E8 INX 00001E39: E8 INX 00001E3A: A507 LDA $07 00001E3C: C902 CMP #$02 00001E3E: D006 BNE $06 00001E40: FE0002 INC $0200,X 00001E43: 4C56DE JMP $DE56 00001E46: C903 CMP #$03 00001E48: D01C BNE $1C 00001E4A: A501 LDA $01 00001E4C: 2901 AND #$01 00001E4E: F016 BEQ $16 00001E50: A45D LDY $5D 00001E52: B91704 LDA $0417,Y 00001E55: D009 BNE $09 00001E57: FE0002 INC $0200,X 00001E5A: FE0002 INC $0200,X 00001E5D: 4C56DE JMP $DE56 00001E60: DE0002 DEC $0200,X 00001E63: DE0002 DEC $0200,X 00001E66: BD0002 LDA $0200,X 00001E69: 8500 STA $00 00001E6B: A65D LDX $5D 00001E6D: B572 LDA $72,X 00001E6F: C990 CMP #$90 00001E71: D005 BNE $05 00001E73: A994 LDA #$94 00001E75: 4C6ADE JMP $DE6A 00001E78: A990 LDA #$90 00001E7A: 8502 STA $02 00001E7C: A65D LDX $5D 00001E7E: 9572 STA $72,X 00001E80: 4CDBEA JMP $EADB 00001E83: A9C2 LDA #$C2 00001E85: A65D LDX $5D 00001E87: 955E STA $5E,X 00001E89: A604 LDX $04 00001E8B: BD0302 LDA $0203,X 00001E8E: 8D2B04 STA $042B 00001E91: 60 RTS 00001E92: 20A5DE JSR $DEA5 00001E95: 60 RTS 00001E96: A507 LDA $07 00001E98: C901 CMP #$01 00001E9A: D018 BNE $18 00001E9C: A000 LDY #$00 00001E9E: A501 LDA $01 00001EA0: D91DC4 CMP $C41D,Y 00001EA3: 900A BCC $0A 00001EA5: D920C4 CMP $C420,Y 00001EA8: B005 BCS $05 00001EAA: E601 INC $01 00001EAC: 4CA4DE JMP $DEA4 00001EAF: C8 INY 00001EB0: C003 CPY #$03 00001EB2: D0EC BNE $EC 00001EB4: 60 RTS 00001EB5: 20D5EF JSR $EFD5 00001EB8: 8604 STX $04 00001EBA: 20ECEA JSR $EAEC 00001EBD: C600 DEC $00 00001EBF: AD2B04 LDA $042B 00001EC2: 38 SEC 00001EC3: E901 SBC #$01 00001EC5: C500 CMP $00 00001EC7: F02F BEQ $2F 00001EC9: 38 SEC 00001ECA: E901 SBC #$01 00001ECC: C500 CMP $00 00001ECE: F028 BEQ $28 00001ED0: 38 SEC 00001ED1: E901 SBC #$01 00001ED3: C500 CMP $00 00001ED5: F02B BEQ $2B 00001ED7: 38 SEC 00001ED8: E908 SBC #$08 00001EDA: C500 CMP $00 00001EDC: F01F BEQ $1F 00001EDE: 38 SEC 00001EDF: E901 SBC #$01 00001EE1: C500 CMP $00 00001EE3: F018 BEQ $18 00001EE5: 38 SEC 00001EE6: E901 SBC #$01 00001EE8: C500 CMP $00 00001EEA: D01F BNE $1F 00001EEC: A901 LDA #$01 00001EEE: A65D LDX $5D 00001EF0: 955E STA $5E,X 00001EF2: A900 LDA #$00 00001EF4: 9D1704 STA $0417,X 00001EF7: 60 RTS 00001EF8: C601 DEC $01 00001EFA: 4CFBDE JMP $DEFB 00001EFD: E601 INC $01 00001EFF: 4CFBDE JMP $DEFB 00001F02: A65D LDX $5D 00001F04: BD2104 LDA $0421,X 00001F07: C901 CMP #$01 00001F09: F0E1 BEQ $E1 00001F0B: A984 LDA #$84 00001F0D: A65D LDX $5D 00001F0F: 9572 STA $72,X 00001F11: 8502 STA $02 00001F13: 20DBEA JSR $EADB 00001F16: 60 RTS 00001F17: A955 LDA #$55 00001F19: 20E4DF JSR $DFE4 00001F1C: D001 BNE $01 00001F1E: 60 RTS 00001F1F: 20D5EF JSR $EFD5 00001F22: 8604 STX $04 00001F24: 20ECEA JSR $EAEC 00001F27: E601 INC $01 00001F29: BD0102 LDA $0201,X 00001F2C: C990 CMP #$90 00001F2E: F005 BEQ $05 00001F30: A990 LDA #$90 00001F32: 4C27DF JMP $DF27 00001F35: A994 LDA #$94 00001F37: 8502 STA $02 00001F39: 20DBEA JSR $EADB 00001F3C: A5C0 LDA $C0 00001F3E: C501 CMP $01 00001F40: F003 BEQ $03 00001F42: 9001 BCC $01 00001F44: 60 RTS 00001F45: A65D LDX $5D 00001F47: A901 LDA #$01 00001F49: 955E STA $5E,X 00001F4B: A900 LDA #$00 00001F4D: 85C0 STA $C0 00001F4F: 60 RTS 00001F50: A5C0 LDA $C0 00001F52: F001 BEQ $01 00001F54: 60 RTS 00001F55: A596 LDA $96 00001F57: C90A CMP #$0A 00001F59: F001 BEQ $01 00001F5B: 60 RTS 00001F5C: A559 LDA $59 00001F5E: C903 CMP #$03 00001F60: F003 BEQ $03 00001F62: 4C72DF JMP $DF72 00001F65: A203 LDX #$03 00001F67: B57E LDA $7E,X 00001F69: C905 CMP #$05 00001F6B: B001 BCS $01 00001F6D: 60 RTS 00001F6E: A200 LDX #$00 00001F70: B55E LDA $5E,X 00001F72: C901 CMP #$01 00001F74: D006 BNE $06 00001F76: B568 LDA $68,X 00001F78: C903 CMP #$03 00001F7A: F023 BEQ $23 00001F7C: E8 INX 00001F7D: E00A CPX #$0A 00001F7F: D0EF BNE $EF 00001F81: 60 RTS 00001F82: A205 LDX #$05 00001F84: B57E LDA $7E,X 00001F86: C905 CMP #$05 00001F88: B001 BCS $01 00001F8A: 60 RTS 00001F8B: A200 LDX #$00 00001F8D: B55E LDA $5E,X 00001F8F: C901 CMP #$01 00001F91: D006 BNE $06 00001F93: B568 LDA $68,X 00001F95: C905 CMP #$05 00001F97: F006 BEQ $06 00001F99: E8 INX 00001F9A: C90A CMP #$0A 00001F9C: D0EF BNE $EF 00001F9E: 60 RTS 00001F9F: A940 LDA #$40 00001FA1: 955E STA $5E,X 00001FA3: D668 DEC $68,X 00001FA5: 8A TXA 00001FA6: 18 CLC 00001FA7: 6903 ADC #$03 00001FA9: 0A ASL A 00001FAA: 0A ASL A 00001FAB: 0A ASL A 00001FAC: 0A ASL A 00001FAD: A8 TAY 00001FAE: B90002 LDA $0200,Y 00001FB1: 8501 STA $01 00001FB3: B90302 LDA $0203,Y 00001FB6: 8500 STA $00 00001FB8: ADEBC1 LDA $C1EB 00001FBB: A000 LDY #$00 00001FBD: C500 CMP $00 00001FBF: B007 BCS $07 00001FC1: 18 CLC 00001FC2: 6918 ADC #$18 00001FC4: C8 INY 00001FC5: 4CADDF JMP $DFAD 00001FC8: 98 TYA 00001FC9: 0A ASL A 00001FCA: 18 CLC 00001FCB: 6915 ADC #$15 00001FCD: 18 CLC 00001FCE: 6501 ADC $01 00001FD0: 85C0 STA $C0 00001FD2: 60 RTS 00001FD3: A65D LDX $5D 00001FD5: B568 LDA $68,X 00001FD7: C901 CMP #$01 00001FD9: D018 BNE $18 00001FDB: 20D5EF JSR $EFD5 00001FDE: BD0302 LDA $0203,X 00001FE1: C930 CMP #$30 00001FE3: B00E BCS $0E 00001FE5: A923 LDA #$23 00001FE7: 9D0202 STA $0202,X 00001FEA: 9D0602 STA $0206,X 00001FED: 9D0A02 STA $020A,X 00001FF0: 9D0E02 STA $020E,X 00001FF3: 60 RTS 00001FF4: 850A STA $0A 00001FF6: 850B STA $0B 00001FF8: A65D LDX $5D 00001FFA: F68A INC $8A,X 00001FFC: B58A LDA $8A,X 00001FFE: 3007 BMI $07 00002000: C910 CMP #$10 00002002: B003 BCS $03 00002004: 4CFBDF JMP $DFFB 00002007: A900 LDA #$00 00002009: 958A STA $8A,X 0000200B: C908 CMP #$08 0000200D: B009 BCS $09 0000200F: AA TAX 00002010: BDBCC1 LDA $C1BC,X 00002013: 250A AND $0A 00002015: 4C11E0 JMP $E011 00002018: 38 SEC 00002019: E908 SBC #$08 0000201B: AA TAX 0000201C: BDBCC1 LDA $C1BC,X 0000201F: 250B AND $0B 00002021: F002 BEQ $02 00002023: A901 LDA #$01 00002025: 60 RTS 00002026: 850A STA $0A 00002028: A553 LDA $53 0000202A: 38 SEC 0000202B: E901 SBC #$01 0000202D: 0A ASL A 0000202E: AA TAX 0000202F: BD93C4 LDA $C493,X 00002032: 8508 STA $08 00002034: BD94C4 LDA $C494,X 00002037: 8509 STA $09 00002039: A000 LDY #$00 0000203B: A901 LDA #$01 0000203D: 850B STA $0B 0000203F: B108 LDA ($08),Y 00002041: C9FF CMP #$FF 00002043: F00C BEQ $0C 00002045: C50A CMP $0A 00002047: F00C BEQ $0C 00002049: 900A BCC $0A 0000204B: E60B INC $0B 0000204D: C8 INY 0000204E: 4C2FE0 JMP $E02F 00002051: A907 LDA #$07 00002053: 850B STA $0B 00002055: A50B LDA $0B 00002057: 60 RTS 00002058: A65D LDX $5D 0000205A: B55E LDA $5E,X 0000205C: C901 CMP #$01 0000205E: D007 BNE $07 00002060: A57D LDA $7D 00002062: D003 BNE $03 00002064: A901 LDA #$01 00002066: 60 RTS 00002067: A900 LDA #$00 00002069: 60 RTS 0000206A: 850C STA $0C 0000206C: A65D LDX $5D 0000206E: B568 LDA $68,X 00002070: C901 CMP #$01 00002072: F015 BEQ $15 00002074: C906 CMP #$06 00002076: F011 BEQ $11 00002078: A200 LDX #$00 0000207A: BDC4C1 LDA $C1C4,X 0000207D: C50C CMP $0C 0000207F: F019 BEQ $19 00002081: E8 INX 00002082: E009 CPX #$09 00002084: F017 BEQ $17 00002086: 4C6AE0 JMP $E06A 00002089: A204 LDX #$04 0000208B: BDC4C1 LDA $C1C4,X 0000208E: C50C CMP $0C 00002090: F008 BEQ $08 00002092: E8 INX 00002093: E009 CPX #$09 00002095: F006 BEQ $06 00002097: 4C7BE0 JMP $E07B 0000209A: A900 LDA #$00 0000209C: 60 RTS 0000209D: A901 LDA #$01 0000209F: 60 RTS 000020A0: 850C STA $0C 000020A2: A65D LDX $5D 000020A4: B568 LDA $68,X 000020A6: 2901 AND #$01 000020A8: F005 BEQ $05 000020AA: A200 LDX #$00 000020AC: 4CA1E0 JMP $E0A1 000020AF: A201 LDX #$01 000020B1: BDCDC1 LDA $C1CD,X 000020B4: C50C CMP $0C 000020B6: F003 BEQ $03 000020B8: A900 LDA #$00 000020BA: 60 RTS 000020BB: A901 LDA #$01 000020BD: 60 RTS 000020BE: 850C STA $0C 000020C0: A65D LDX $5D 000020C2: B568 LDA $68,X 000020C4: C902 CMP #$02 000020C6: F013 BEQ $13 000020C8: C903 CMP #$03 000020CA: F00F BEQ $0F 000020CC: C904 CMP #$04 000020CE: F011 BEQ $11 000020D0: C905 CMP #$05 000020D2: F019 BEQ $19 000020D4: C906 CMP #$06 000020D6: F021 BEQ $21 000020D8: 4CECE0 JMP $E0EC 000020DB: 20F1E0 JSR $E0F1 000020DE: 4CECE0 JMP $E0EC 000020E1: 20F1E0 JSR $E0F1 000020E4: A089 LDY #$89 000020E6: C9C4 CMP #$C4 000020E8: F02F BEQ $2F 000020EA: 4CECE0 JMP $E0EC 000020ED: 20F1E0 JSR $E0F1 000020F0: A071 LDY #$71 000020F2: C9B4 CMP #$B4 000020F4: F023 BEQ $23 000020F6: 4CECE0 JMP $E0EC 000020F9: 20F1E0 JSR $E0F1 000020FC: A900 LDA #$00 000020FE: 4C0FE1 JMP $E10F 00002101: AA TAX 00002102: CA DEX 00002103: CA DEX 00002104: A50C LDA $0C 00002106: BC72C1 LDY $C172,X 00002109: DD77C1 CMP $C177,X 0000210C: F009 BEQ $09 0000210E: BC7CC1 LDY $C17C,X 00002111: DD81C1 CMP $C181,X 00002114: F001 BEQ $01 00002116: 60 RTS 00002117: 68 PLA 00002118: 68 PLA 00002119: A65D LDX $5D 0000211B: 94A3 STY $A3,X 0000211D: A901 LDA #$01 0000211F: 850C STA $0C 00002121: 60 RTS 00002122: 850B STA $0B 00002124: A000 LDY #$00 00002126: B108 LDA ($08),Y 00002128: C9FE CMP #$FE 0000212A: F00D BEQ $0D 0000212C: C50B CMP $0B 0000212E: F004 BEQ $04 00002130: C8 INY 00002131: 4C16E1 JMP $E116 00002134: A901 LDA #$01 00002136: 4C2BE1 JMP $E12B 00002139: A900 LDA #$00 0000213B: 850C STA $0C 0000213D: 840A STY $0A 0000213F: 60 RTS 00002140: A65D LDX $5D 00002142: B568 LDA $68,X 00002144: 38 SEC 00002145: E559 SBC $59 00002147: F005 BEQ $05 00002149: 3003 BMI $03 0000214B: 4C41E1 JMP $E141 0000214E: A901 LDA #$01 00002150: 60 RTS 00002151: A900 LDA #$00 00002153: 60 RTS 00002154: A200 LDX #$00 00002156: A020 LDY #$20 00002158: B90002 LDA $0200,Y 0000215B: C9FF CMP #$FF 0000215D: F008 BEQ $08 0000215F: 2016E0 JSR $E016 00002162: 9568 STA $68,X 00002164: 4C5BE1 JMP $E15B 00002167: A900 LDA #$00 00002169: 9568 STA $68,X 0000216B: 98 TYA 0000216C: 18 CLC 0000216D: 6910 ADC #$10 0000216F: A8 TAY 00002170: E8 INX 00002171: E00A CPX #$0A 00002173: D0E3 BNE $E3 00002175: 60 RTS 00002176: A900 LDA #$00 00002178: A006 LDY #$06 0000217A: 997E00 STA $007E,Y 0000217D: 88 DEY 0000217E: 10FA BPL $FA 00002180: A000 LDY #$00 00002182: B96800 LDA $0068,Y 00002185: F008 BEQ $08 00002187: AA TAX 00002188: B57E LDA $7E,X 0000218A: 18 CLC 0000218B: 6901 ADC #$01 0000218D: 957E STA $7E,X 0000218F: C009 CPY #$09 00002191: F004 BEQ $04 00002193: C8 INY 00002194: 4C72E1 JMP $E172 00002197: A659 LDX $59 00002199: E007 CPX #$07 0000219B: F00C BEQ $0C 0000219D: F67E INC $7E,X 0000219F: A596 LDA $96 000021A1: C90A CMP #$0A 000021A3: D004 BNE $04 000021A5: A659 LDX $59 000021A7: F67E INC $7E,X 000021A9: 60 RTS 000021AA: A5AD LDA $AD 000021AC: D001 BNE $01 000021AE: 60 RTS 000021AF: C901 CMP #$01 000021B1: D01C BNE $1C 000021B3: A920 LDA #$20 000021B5: 8500 STA $00 000021B7: A9C0 LDA #$C0 000021B9: 8501 STA $01 000021BB: A9FC LDA #$FC 000021BD: 8502 STA $02 000021BF: A912 LDA #$12 000021C1: 8503 STA $03 000021C3: A9E0 LDA #$E0 000021C5: 2080F0 JSR $F080 000021C8: A902 LDA #$02 000021CA: 85AD STA $AD 000021CC: 4CE0E1 JMP $E1E0 000021CF: A538 LDA $38 000021D1: D021 BNE $21 000021D3: A903 LDA #$03 000021D5: 85AD STA $AD 000021D7: A2E1 LDX #$E1 000021D9: BD0002 LDA $0200,X 000021DC: C9FC CMP #$FC 000021DE: F005 BEQ $05 000021E0: A9FC LDA #$FC 000021E2: 4CD7E1 JMP $E1D7 000021E5: A9FE LDA #$FE 000021E7: 9D0002 STA $0200,X 000021EA: 18 CLC 000021EB: 6901 ADC #$01 000021ED: 9D0402 STA $0204,X 000021F0: A910 LDA #$10 000021F2: 8538 STA $38 000021F4: 60 RTS 000021F5: A900 LDA #$00 000021F7: 85AE STA $AE 000021F9: 20DDEF JSR $EFDD 000021FC: BD0002 LDA $0200,X 000021FF: C9FF CMP #$FF 00002201: D032 BNE $32 00002203: A553 LDA $53 00002205: C901 CMP #$01 00002207: F007 BEQ $07 00002209: C904 CMP #$04 0000220B: F016 BEQ $16 0000220D: 4C25E2 JMP $E225 00002210: A540 LDA $40 00002212: D024 BNE $24 00002214: A5AD LDA $AD 00002216: F020 BEQ $20 00002218: C902 CMP #$02 0000221A: D01C BNE $1C 0000221C: A919 LDA #$19 0000221E: 8540 STA $40 00002220: 4C1FE2 JMP $E21F 00002223: A540 LDA $40 00002225: D011 BNE $11 00002227: 20F7EA JSR $EAF7 0000222A: BD66C4 LDA $C466,X 0000222D: 8540 STA $40 0000222F: A906 LDA #$06 00002231: A6AE LDX $AE 00002233: 95AF STA $AF,X 00002235: 2050E2 JSR $E250 00002238: A653 LDX $53 0000223A: CA DEX 0000223B: E6AE INC $AE 0000223D: A5AE LDA $AE 0000223F: DDF6C1 CMP $C1F6,X 00002242: F003 BEQ $03 00002244: 4CE9E1 JMP $E1E9 00002247: A553 LDA $53 00002249: C903 CMP #$03 0000224B: F012 BEQ $12 0000224D: A53B LDA $3B 0000224F: D00E BNE $0E 00002251: A900 LDA #$00 00002253: 85D2 STA $D2 00002255: 85D3 STA $D3 00002257: 85D4 STA $D4 00002259: 85D5 STA $D5 0000225B: A9BC LDA #$BC 0000225D: 853B STA $3B 0000225F: 60 RTS 00002260: A6AE LDX $AE 00002262: B5AF LDA $AF,X 00002264: 290F AND #$0F 00002266: F03A BEQ $3A 00002268: C906 CMP #$06 0000226A: F033 BEQ $33 0000226C: C908 CMP #$08 0000226E: F02F BEQ $2F 00002270: C901 CMP #$01 00002272: F031 BEQ $31 00002274: C902 CMP #$02 00002276: F032 BEQ $32 00002278: C903 CMP #$03 0000227A: F035 BEQ $35 0000227C: A553 LDA $53 0000227E: C903 CMP #$03 00002280: F006 BEQ $06 00002282: 20B6E2 JSR $E2B6 00002285: 4C80E2 JMP $E280 00002288: B519 LDA $19,X 0000228A: 2903 AND #$03 0000228C: A6AE LDX $AE 0000228E: 95AF STA $AF,X 00002290: B5AF LDA $AF,X 00002292: C901 CMP #$01 00002294: F004 BEQ $04 00002296: C902 CMP #$02 00002298: D002 BNE $02 0000229A: 95B3 STA $B3,X 0000229C: 4C54E2 JMP $E254 0000229F: 4C38E5 JMP $E538 000022A2: 4CF9E2 JMP $E2F9 000022A5: A900 LDA #$00 000022A7: 4C9CE2 JMP $E29C 000022AA: A901 LDA #$01 000022AC: 8599 STA $99 000022AE: 4C68E3 JMP $E368 000022B1: A553 LDA $53 000022B3: C901 CMP #$01 000022B5: D00C BNE $0C 000022B7: 2026E6 JSR $E626 000022BA: A6AE LDX $AE 000022BC: B5AF LDA $AF,X 000022BE: D003 BNE $03 000022C0: 4C92E2 JMP $E292 000022C3: 4C1BE4 JMP $E41B 000022C6: A6AE LDX $AE 000022C8: B5D2 LDA $D2,X 000022CA: D021 BNE $21 000022CC: A901 LDA #$01 000022CE: 95D2 STA $D2,X 000022D0: A5AE LDA $AE 000022D2: 18 CLC 000022D3: 6901 ADC #$01 000022D5: 0A ASL A 000022D6: 0A ASL A 000022D7: 0A ASL A 000022D8: 0A ASL A 000022D9: A8 TAY 000022DA: B90302 LDA $0203,Y 000022DD: CD0302 CMP $0203 000022E0: B007 BCS $07 000022E2: A901 LDA #$01 000022E4: 95EC STA $EC,X 000022E6: 4CDDE2 JMP $E2DD 000022E9: A902 LDA #$02 000022EB: 95EC STA $EC,X 000022ED: B519 LDA $19,X 000022EF: 2907 AND #$07 000022F1: 95AF STA $AF,X 000022F3: A8 TAY 000022F4: C904 CMP #$04 000022F6: B003 BCS $03 000022F8: 4CF6E2 JMP $E2F6 000022FB: B4EC LDY $EC,X 000022FD: C907 CMP #$07 000022FF: B003 BCS $03 00002301: 4CF6E2 JMP $E2F6 00002304: A003 LDY #$03 00002306: 94AF STY $AF,X 00002308: 60 RTS 00002309: A955 LDA #$55 0000230B: 850A STA $0A 0000230D: 850B STA $0B 0000230F: 2006E8 JSR $E806 00002312: D001 BNE $01 00002314: 60 RTS 00002315: 20DDEF JSR $EFDD 00002318: 8604 STX $04 0000231A: 20ECEA JSR $EAEC 0000231D: A6AE LDX $AE 0000231F: B5AF LDA $AF,X 00002321: C920 CMP #$20 00002323: D005 BNE $05 00002325: A9FF LDA #$FF 00002327: 95AF STA $AF,X 00002329: 60 RTS 0000232A: C910 CMP #$10 0000232C: F005 BEQ $05 0000232E: C601 DEC $01 00002330: 4C25E3 JMP $E325 00002333: E601 INC $01 00002335: A504 LDA $04 00002337: A8 TAY 00002338: C8 INY 00002339: B90002 LDA $0200,Y 0000233C: A653 LDX $53 0000233E: E004 CPX #$04 00002340: F00E BEQ $0E 00002342: C99C CMP #$9C 00002344: F005 BEQ $05 00002346: A99C LDA #$9C 00002348: 4C4BE3 JMP $E34B 0000234B: A998 LDA #$98 0000234D: 4C4BE3 JMP $E34B 00002350: C9AC CMP #$AC 00002352: F005 BEQ $05 00002354: A9AC LDA #$AC 00002356: 4C4BE3 JMP $E34B 00002359: A9A8 LDA #$A8 0000235B: 20D4EA JSR $EAD4 0000235E: A6AE LDX $AE 00002360: B5B3 LDA $B3,X 00002362: 4A LSR A 00002363: 2096F0 JSR $F096 00002366: A6AE LDX $AE 00002368: B5AF LDA $AF,X 0000236A: C910 CMP #$10 0000236C: F005 BEQ $05 0000236E: A910 LDA #$10 00002370: 4C65E3 JMP $E365 00002373: A920 LDA #$20 00002375: 95AF STA $AF,X 00002377: 60 RTS 00002378: A955 LDA #$55 0000237A: 850A STA $0A 0000237C: 850B STA $0B 0000237E: 2006E8 JSR $E806 00002381: D001 BNE $01 00002383: 60 RTS 00002384: 20DDEF JSR $EFDD 00002387: 8604 STX $04 00002389: 20ECEA JSR $EAEC 0000238C: A599 LDA $99 0000238E: D005 BNE $05 00002390: E600 INC $00 00002392: 4C87E3 JMP $E387 00002395: C600 DEC $00 00002397: A500 LDA $00 00002399: 290F AND #$0F 0000239B: C904 CMP #$04 0000239D: F007 BEQ $07 0000239F: C90C CMP #$0C 000023A1: F003 BEQ $03 000023A3: 4C9BE3 JMP $E39B 000023A6: E601 INC $01 000023A8: 4CAFE3 JMP $E3AF 000023AB: A699 LDX $99 000023AD: DDE2C3 CMP $C3E2,X 000023B0: F008 BEQ $08 000023B2: DDE4C3 CMP $C3E4,X 000023B5: F003 BEQ $03 000023B7: 4CAFE3 JMP $E3AF 000023BA: C601 DEC $01 000023BC: 4CC0E3 JMP $E3C0 000023BF: C904 CMP #$04 000023C1: F007 BEQ $07 000023C3: C90C CMP #$0C 000023C5: F003 BEQ $03 000023C7: 4CC0E3 JMP $E3C0 000023CA: A6AE LDX $AE 000023CC: A9FF LDA #$FF 000023CE: 95AF STA $AF,X 000023D0: A499 LDY $99 000023D2: 20A5E6 JSR $E6A5 000023D5: D007 BNE $07 000023D7: A900 LDA #$00 000023D9: A6AE LDX $AE 000023DB: 95AF STA $AF,X 000023DD: 60 RTS 000023DE: A599 LDA $99 000023E0: F01B BEQ $1B 000023E2: A500 LDA $00 000023E4: C90C CMP #$0C 000023E6: F005 BEQ $05 000023E8: 900C BCC $0C 000023EA: 4CEDE3 JMP $E3ED 000023ED: A900 LDA #$00 000023EF: A6AE LDX $AE 000023F1: 95AF STA $AF,X 000023F3: 4CEDE3 JMP $E3ED 000023F6: A900 LDA #$00 000023F8: A6AE LDX $AE 000023FA: 95AF STA $AF,X 000023FC: 60 RTS 000023FD: A504 LDA $04 000023FF: A8 TAY 00002400: C8 INY 00002401: B90002 LDA $0200,Y 00002404: A653 LDX $53 00002406: E004 CPX #$04 00002408: F00E BEQ $0E 0000240A: C99C CMP #$9C 0000240C: B005 BCS $05 0000240E: A99C LDA #$9C 00002410: 4C13E4 JMP $E413 00002413: A998 LDA #$98 00002415: 4C13E4 JMP $E413 00002418: C9AC CMP #$AC 0000241A: B005 BCS $05 0000241C: A9AC LDA #$AC 0000241E: 4C13E4 JMP $E413 00002421: A9A8 LDA #$A8 00002423: 20D4EA JSR $EAD4 00002426: A599 LDA $99 00002428: 4C96F0 JMP $F096 0000242B: A6AE LDX $AE 0000242D: B5AF LDA $AF,X 0000242F: 4A LSR A 00002430: 4A LSR A 00002431: 4A LSR A 00002432: AA TAX 00002433: A553 LDA $53 00002435: C904 CMP #$04 00002437: F00D BEQ $0D 00002439: BDF4C3 LDA $C3F4,X 0000243C: 850A STA $0A 0000243E: BDF5C3 LDA $C3F5,X 00002441: 850B STA $0B 00002443: 4C4BE4 JMP $E44B 00002446: A550 LDA $50 00002448: 2901 AND #$01 0000244A: 18 CLC 0000244B: 6554 ADC $54 0000244D: C903 CMP #$03 0000244F: 90E8 BCC $E8 00002451: BDF8C3 LDA $C3F8,X 00002454: 850A STA $0A 00002456: BDF9C3 LDA $C3F9,X 00002459: 850B STA $0B 0000245B: 2006E8 JSR $E806 0000245E: D001 BNE $01 00002460: 60 RTS 00002461: 20DDEF JSR $EFDD 00002464: 8604 STX $04 00002466: 20ECEA JSR $EAEC 00002469: A6AE LDX $AE 0000246B: B5E8 LDA $E8,X 0000246D: F00E BEQ $0E 0000246F: C903 CMP #$03 00002471: F003 BEQ $03 00002473: 4C6DE4 JMP $E46D 00002476: A900 LDA #$00 00002478: 95E8 STA $E8,X 0000247A: 4C7AE4 JMP $E47A 0000247D: A501 LDA $01 0000247F: 2903 AND #$03 00002481: D007 BNE $07 00002483: A901 LDA #$01 00002485: F6E8 INC $E8,X 00002487: 4C0CE5 JMP $E50C 0000248A: A553 LDA $53 0000248C: C901 CMP #$01 0000248E: F035 BEQ $35 00002490: 20A3E7 JSR $E7A3 00002493: C903 CMP #$03 00002495: F007 BEQ $07 00002497: C913 CMP #$13 00002499: F010 BEQ $10 0000249B: 4C0CE5 JMP $E50C 0000249E: C601 DEC $01 000024A0: A501 LDA $01 000024A2: A6AE LDX $AE 000024A4: D5DB CMP $DB,X 000024A6: F010 BEQ $10 000024A8: 4C0CE5 JMP $E50C 000024AB: E601 INC $01 000024AD: A501 LDA $01 000024AF: A6AE LDX $AE 000024B1: D5DB CMP $DB,X 000024B3: F003 BEQ $03 000024B5: 4C0CE5 JMP $E50C 000024B8: A901 LDA #$01 000024BA: A6AE LDX $AE 000024BC: 95AF STA $AF,X 000024BE: A900 LDA #$00 000024C0: 95DB STA $DB,X 000024C2: 4C0CE5 JMP $E50C 000024C5: A6AE LDX $AE 000024C7: B5AF LDA $AF,X 000024C9: C913 CMP #$13 000024CB: F003 BEQ $03 000024CD: 4CD6E4 JMP $E4D6 000024D0: E601 INC $01 000024D2: A5AE LDA $AE 000024D4: 0A ASL A 000024D5: AA TAX 000024D6: E8 INX 000024D7: B5B9 LDA $B9,X 000024D9: C501 CMP $01 000024DB: D006 BNE $06 000024DD: A901 LDA #$01 000024DF: A6AE LDX $AE 000024E1: 95AF STA $AF,X 000024E3: 4C0CE5 JMP $E50C 000024E6: C601 DEC $01 000024E8: A6AE LDX $AE 000024EA: E000 CPX #$00 000024EC: D01B BNE $1B 000024EE: A6AE LDX $AE 000024F0: B5E0 LDA $E0,X 000024F2: C902 CMP #$02 000024F4: F013 BEQ $13 000024F6: A5AE LDA $AE 000024F8: 0A ASL A 000024F9: AA TAX 000024FA: B5B9 LDA $B9,X 000024FC: C501 CMP $01 000024FE: D01C BNE $1C 00002500: A902 LDA #$02 00002502: A6AE LDX $AE 00002504: 95AF STA $AF,X 00002506: 4C0CE5 JMP $E50C 00002509: A5AE LDA $AE 0000250B: 0A ASL A 0000250C: AA TAX 0000250D: B5B9 LDA $B9,X 0000250F: 18 CLC 00002510: 690D ADC #$0D 00002512: C501 CMP $01 00002514: D006 BNE $06 00002516: A913 LDA #$13 00002518: A6AE LDX $AE 0000251A: 95AF STA $AF,X 0000251C: A504 LDA $04 0000251E: A8 TAY 0000251F: C8 INY 00002520: B90002 LDA $0200,Y 00002523: A653 LDX $53 00002525: E004 CPX #$04 00002527: F00E BEQ $0E 00002529: C99C CMP #$9C 0000252B: B005 BCS $05 0000252D: A99C LDA #$9C 0000252F: 4C32E5 JMP $E532 00002532: A998 LDA #$98 00002534: 4C32E5 JMP $E532 00002537: C9AC CMP #$AC 00002539: B005 BCS $05 0000253B: A9AC LDA #$AC 0000253D: 4C32E5 JMP $E532 00002540: A9A8 LDA #$A8 00002542: 20D4EA JSR $EAD4 00002545: 4C88F0 JMP $F088 00002548: A6AE LDX $AE 0000254A: B5AF LDA $AF,X 0000254C: C906 CMP #$06 0000254E: F008 BEQ $08 00002550: C908 CMP #$08 00002552: F001 BEQ $01 00002554: 60 RTS 00002555: 4C9FE5 JMP $E59F 00002558: A553 LDA $53 0000255A: C901 CMP #$01 0000255C: F005 BEQ $05 0000255E: C904 CMP #$04 00002560: F012 BEQ $12 00002562: 60 RTS 00002563: A920 LDA #$20 00002565: 8500 STA $00 00002567: A9B8 LDA #$B8 00002569: 8501 STA $01 0000256B: A6AE LDX $AE 0000256D: A908 LDA #$08 0000256F: 95AF STA $AF,X 00002571: 4C92E5 JMP $E592 00002574: AD0302 LDA $0203 00002577: C978 CMP #$78 00002579: 9005 BCC $05 0000257B: A000 LDY #$00 0000257D: 4C72E5 JMP $E572 00002580: A008 LDY #$08 00002582: 840C STY $0C 00002584: A519 LDA $19 00002586: 2903 AND #$03 00002588: 0A ASL A 00002589: 18 CLC 0000258A: 650C ADC $0C 0000258C: AA TAX 0000258D: BDCEC3 LDA $C3CE,X 00002590: 8500 STA $00 00002592: BDCFC3 LDA $C3CF,X 00002595: 8501 STA $01 00002597: A6AE LDX $AE 00002599: A900 LDA #$00 0000259B: 95AF STA $AF,X 0000259D: A9A8 LDA #$A8 0000259F: 4C94E5 JMP $E594 000025A2: A998 LDA #$98 000025A4: 20D4EA JSR $EAD4 000025A7: 20DDEF JSR $EFDD 000025AA: 8504 STA $04 000025AC: 4C82F0 JMP $F082 000025AF: 20DDEF JSR $EFDD 000025B2: 8604 STX $04 000025B4: 20ECEA JSR $EAEC 000025B7: BD0102 LDA $0201,X 000025BA: 20D4EA JSR $EAD4 000025BD: A553 LDA $53 000025BF: C901 CMP #$01 000025C1: F001 BEQ $01 000025C3: 60 RTS 000025C4: E600 INC $00 000025C6: A500 LDA $00 000025C8: C92C CMP #$2C 000025CA: F002 BEQ $02 000025CC: 9027 BCC $27 000025CE: E601 INC $01 000025D0: A501 LDA $01 000025D2: C9C5 CMP #$C5 000025D4: D01F BNE $1F 000025D6: A900 LDA #$00 000025D8: A6AE LDX $AE 000025DA: 95AF STA $AF,X 000025DC: C600 DEC $00 000025DE: A500 LDA $00 000025E0: C968 CMP #$68 000025E2: B005 BCS $05 000025E4: E601 INC $01 000025E6: 4CDBE5 JMP $E5DB 000025E9: C601 DEC $01 000025EB: C960 CMP #$60 000025ED: D006 BNE $06 000025EF: A6AE LDX $AE 000025F1: A900 LDA #$00 000025F3: 95AF STA $AF,X 000025F5: 4C82F0 JMP $F082 000025F8: 850C STA $0C 000025FA: A6AE LDX $AE 000025FC: B5E0 LDA $E0,X 000025FE: C901 CMP #$01 00002600: F01D BEQ $1D 00002602: C906 CMP #$06 00002604: F019 BEQ $19 00002606: A200 LDX #$00 00002608: A918 LDA #$18 0000260A: C50C CMP $0C 0000260C: F00B BEQ $0B 0000260E: E8 INX 0000260F: E009 CPX #$09 00002611: F009 BEQ $09 00002613: BDC4C1 LDA $C1C4,X 00002616: 4CFAE5 JMP $E5FA 00002619: A900 LDA #$00 0000261B: 60 RTS 0000261C: A901 LDA #$01 0000261E: 60 RTS 0000261F: A204 LDX #$04 00002621: BDC4C1 LDA $C1C4,X 00002624: C50C CMP $0C 00002626: F008 BEQ $08 00002628: E8 INX 00002629: E009 CPX #$09 0000262B: F006 BEQ $06 0000262D: 4C11E6 JMP $E611 00002630: A900 LDA #$00 00002632: 60 RTS 00002633: A901 LDA #$01 00002635: 60 RTS 00002636: A6AE LDX $AE 00002638: B5AF LDA $AF,X 0000263A: C913 CMP #$13 0000263C: D001 BNE $01 0000263E: 60 RTS 0000263F: 20DDEF JSR $EFDD 00002642: 20ECEA JSR $EAEC 00002645: A6AE LDX $AE 00002647: B5E0 LDA $E0,X 00002649: C901 CMP #$01 0000264B: F003 BEQ $03 0000264D: 4C6DE6 JMP $E66D 00002650: A500 LDA $00 00002652: C95C CMP #$5C 00002654: F007 BEQ $07 00002656: C9C4 CMP #$C4 00002658: F013 BEQ $13 0000265A: 4C9EE6 JMP $E69E 0000265D: A5AE LDA $AE 0000265F: 0A ASL A 00002660: AA TAX 00002661: A9A6 LDA #$A6 00002663: 95B9 STA $B9,X 00002665: E8 INX 00002666: A9C7 LDA #$C7 00002668: 95B9 STA $B9,X 0000266A: 4C97E6 JMP $E697 0000266D: A5AE LDA $AE 0000266F: 0A ASL A 00002670: AA TAX 00002671: A9AB LDA #$AB 00002673: 95B9 STA $B9,X 00002675: E8 INX 00002676: A9C3 LDA #$C3 00002678: 95B9 STA $B9,X 0000267A: 4C97E6 JMP $E697 0000267D: A500 LDA $00 0000267F: C92C CMP #$2C 00002681: F007 BEQ $07 00002683: C96C CMP #$6C 00002685: F013 BEQ $13 00002687: 4C9EE6 JMP $E69E 0000268A: A5AE LDA $AE 0000268C: 0A ASL A 0000268D: AA TAX 0000268E: A98D LDA #$8D 00002690: 95B9 STA $B9,X 00002692: E8 INX 00002693: A9A4 LDA #$A4 00002695: 95B9 STA $B9,X 00002697: 4C97E6 JMP $E697 0000269A: A5AE LDA $AE 0000269C: 0A ASL A 0000269D: AA TAX 0000269E: A98A LDA #$8A 000026A0: 95B9 STA $B9,X 000026A2: E8 INX 000026A3: A9A7 LDA #$A7 000026A5: 95B9 STA $B9,X 000026A7: A903 LDA #$03 000026A9: A6AE LDX $AE 000026AB: 95AF STA $AF,X 000026AD: 60 RTS 000026AE: A900 LDA #$00 000026B0: A6AE LDX $AE 000026B2: 95AF STA $AF,X 000026B4: 60 RTS 000026B5: A501 LDA $01 000026B7: 18 CLC 000026B8: 690B ADC #$0B 000026BA: 2016E0 JSR $E016 000026BD: A499 LDY $99 000026BF: A6AE LDX $AE 000026C1: 95E0 STA $E0,X 000026C3: A553 LDA $53 000026C5: C901 CMP #$01 000026C7: D003 BNE $03 000026C9: 4CC6E6 JMP $E6C6 000026CC: C903 CMP #$03 000026CE: D003 BNE $03 000026D0: 4C02E7 JMP $E702 000026D3: 4C3CE7 JMP $E73C 000026D6: A500 LDA $00 000026D8: 20E8E5 JSR $E5E8 000026DB: D016 BNE $16 000026DD: A6AE LDX $AE 000026DF: B5E0 LDA $E0,X 000026E1: 2901 AND #$01 000026E3: F006 BEQ $06 000026E5: B99AC7 LDA $C79A,Y 000026E8: 4CDEE6 JMP $E6DE 000026EB: B99CC7 LDA $C79C,Y 000026EE: 18 CLC 000026EF: 6501 ADC $01 000026F1: 8501 STA $01 000026F3: A6AE LDX $AE 000026F5: B5E0 LDA $E0,X 000026F7: C901 CMP #$01 000026F9: F008 BEQ $08 000026FB: A500 LDA $00 000026FD: D9E6C3 CMP $C3E6,Y 00002700: F009 BEQ $09 00002702: 60 RTS 00002703: A500 LDA $00 00002705: D9E8C3 CMP $C3E8,Y 00002708: F001 BEQ $01 0000270A: 60 RTS 0000270B: A900 LDA #$00 0000270D: A6AE LDX $AE 0000270F: 95AF STA $AF,X 00002711: 60 RTS 00002712: A6AE LDX $AE 00002714: B5E0 LDA $E0,X 00002716: C902 CMP #$02 00002718: D00F BNE $0F 0000271A: A500 LDA $00 0000271C: D9EAC3 CMP $C3EA,Y 0000271F: F024 BEQ $24 00002721: D9ECC3 CMP $C3EC,Y 00002724: F01F BEQ $1F 00002726: 4C2DE7 JMP $E72D 00002729: C001 CPY #$01 0000272B: D004 BNE $04 0000272D: C904 CMP #$04 0000272F: F00D BEQ $0D 00002731: A500 LDA $00 00002733: D9EEC3 CMP $C3EE,Y 00002736: F00D BEQ $0D 00002738: D9F0C3 CMP $C3F0,Y 0000273B: F008 BEQ $08 0000273D: 60 RTS 0000273E: A500 LDA $00 00002740: C9DB CMP #$DB 00002742: F001 BEQ $01 00002744: 60 RTS 00002745: A6AE LDX $AE 00002747: A900 LDA #$00 00002749: 95AF STA $AF,X 0000274B: 60 RTS 0000274C: A6AE LDX $AE 0000274E: B5E0 LDA $E0,X 00002750: A8 TAY 00002751: 88 DEY 00002752: A699 LDX $99 00002754: BDF2C3 LDA $C3F2,X 00002757: C000 CPY #$00 00002759: F011 BEQ $11 0000275B: E000 CPX #$00 0000275D: F006 BEQ $06 0000275F: 18 CLC 00002760: 6908 ADC #$08 00002762: 4C58E7 JMP $E758 00002765: 38 SEC 00002766: E908 SBC #$08 00002768: 88 DEY 00002769: 4C47E7 JMP $E747 0000276C: C500 CMP $00 0000276E: F009 BEQ $09 00002770: A599 LDA $99 00002772: 0A ASL A 00002773: 2070E7 JSR $E770 00002776: F001 BEQ $01 00002778: 60 RTS 00002779: A6AE LDX $AE 0000277B: A900 LDA #$00 0000277D: 95AF STA $AF,X 0000277F: 60 RTS 00002780: 8509 STA $09 00002782: 20DDEF JSR $EFDD 00002785: BD0302 LDA $0203,X 00002788: 850A STA $0A 0000278A: A6AE LDX $AE 0000278C: B5E0 LDA $E0,X 0000278E: 38 SEC 0000278F: E902 SBC #$02 00002791: 0A ASL A 00002792: AA TAX 00002793: B5C1 LDA $C1,X 00002795: F009 BEQ $09 00002797: A409 LDY $09 00002799: B9DEC3 LDA $C3DE,Y 0000279C: C50A CMP $0A 0000279E: F00D BEQ $0D 000027A0: B5C2 LDA $C2,X 000027A2: F00C BEQ $0C 000027A4: A409 LDY $09 000027A6: B9DFC3 LDA $C3DF,Y 000027A9: C50A CMP $0A 000027AB: D003 BNE $03 000027AD: A900 LDA #$00 000027AF: 60 RTS 000027B0: A901 LDA #$01 000027B2: 60 RTS 000027B3: A6AE LDX $AE 000027B5: B5DB LDA $DB,X 000027B7: F005 BEQ $05 000027B9: A6AE LDX $AE 000027BB: B5AF LDA $AF,X 000027BD: 60 RTS 000027BE: A553 LDA $53 000027C0: 38 SEC 000027C1: E902 SBC #$02 000027C3: 0A ASL A 000027C4: A8 TAY 000027C5: B99BC4 LDA $C49B,Y 000027C8: 8507 STA $07 000027CA: B99CC4 LDA $C49C,Y 000027CD: 8508 STA $08 000027CF: A6AE LDX $AE 000027D1: B4E0 LDY $E0,X 000027D3: F02D BEQ $2D 000027D5: 88 DEY 000027D6: B107 LDA ($07),Y 000027D8: 8509 STA $09 000027DA: C8 INY 000027DB: B107 LDA ($07),Y 000027DD: 850A STA $0A 000027DF: A553 LDA $53 000027E1: 38 SEC 000027E2: E902 SBC #$02 000027E4: 0A ASL A 000027E5: A8 TAY 000027E6: B9A1C4 LDA $C4A1,Y 000027E9: 8507 STA $07 000027EB: B9A2C4 LDA $C4A2,Y 000027EE: 8508 STA $08 000027F0: A409 LDY $09 000027F2: C40A CPY $0A 000027F4: F00C BEQ $0C 000027F6: B107 LDA ($07),Y 000027F8: C500 CMP $00 000027FA: F00D BEQ $0D 000027FC: C8 INY 000027FD: C8 INY 000027FE: C8 INY 000027FF: 4CE2E7 JMP $E7E2 00002802: A900 LDA #$00 00002804: A6AE LDX $AE 00002806: 95AF STA $AF,X 00002808: 60 RTS 00002809: C8 INY 0000280A: B107 LDA ($07),Y 0000280C: A6AE LDX $AE 0000280E: 95DB STA $DB,X 00002810: C8 INY 00002811: B107 LDA ($07),Y 00002813: 95AF STA $AF,X 00002815: 60 RTS 00002816: A6AE LDX $AE 00002818: F6E4 INC $E4,X 0000281A: B5E4 LDA $E4,X 0000281C: 3007 BMI $07 0000281E: C910 CMP #$10 00002820: B003 BCS $03 00002822: 4C19E8 JMP $E819 00002825: A900 LDA #$00 00002827: 95E4 STA $E4,X 00002829: C908 CMP #$08 0000282B: B009 BCS $09 0000282D: AA TAX 0000282E: BDBCC1 LDA $C1BC,X 00002831: 250A AND $0A 00002833: 4C2FE8 JMP $E82F 00002836: 38 SEC 00002837: E908 SBC #$08 00002839: AA TAX 0000283A: BDBCC1 LDA $C1BC,X 0000283D: 250B AND $0B 0000283F: F002 BEQ $02 00002841: A901 LDA #$01 00002843: 60 RTS 00002844: 20F7EA JSR $EAF7 00002847: BD5CC4 LDA $C45C,X 0000284A: 850A STA $0A 0000284C: BD61C4 LDA $C461,X 0000284F: 850B STA $0B 00002851: A900 LDA #$00 00002853: 855D STA $5D 00002855: 20E8DF JSR $DFE8 00002858: D001 BNE $01 0000285A: 60 RTS 0000285B: A900 LDA #$00 0000285D: 85D2 STA $D2 0000285F: A5D2 LDA $D2 00002861: C903 CMP #$03 00002863: B054 BCS $54 00002865: AA TAX 00002866: D012 BNE $12 00002868: A5DA LDA $DA 0000286A: C901 CMP #$01 0000286C: D00C BNE $0C 0000286E: CE0002 DEC $0200 00002871: CE0402 DEC $0204 00002874: CE0802 DEC $0208 00002877: CE0C02 DEC $020C 0000287A: BCCCC2 LDY $C2CC,X 0000287D: B90002 LDA $0200,Y 00002880: C9FF CMP #$FF 00002882: F030 BEQ $30 00002884: 98 TYA 00002885: AA TAX 00002886: DE0002 DEC $0200,X 00002889: DE0402 DEC $0204,X 0000288C: BD0002 LDA $0200,X 0000288F: C950 CMP #$50 00002891: D006 BNE $06 00002893: 2068E9 JSR $E968 00002896: 4C90E8 JMP $E890 00002899: C9C8 CMP #$C8 0000289B: D003 BNE $03 0000289D: 2071E9 JSR $E971 000028A0: B90002 LDA $0200,Y 000028A3: C970 CMP #$70 000028A5: D004 BNE $04 000028A7: A901 LDA #$01 000028A9: 85D8 STA $D8 000028AB: B90002 LDA $0200,Y 000028AE: C948 CMP #$48 000028B0: F05F BEQ $5F 000028B2: 905D BCC $5D 000028B4: E6D2 INC $D2 000028B6: 4C4FE8 JMP $E84F 000028B9: C906 CMP #$06 000028BB: F061 BEQ $61 000028BD: AA TAX 000028BE: C903 CMP #$03 000028C0: D012 BNE $12 000028C2: A5DA LDA $DA 000028C4: C902 CMP #$02 000028C6: D00C BNE $0C 000028C8: EE0002 INC $0200 000028CB: EE0402 INC $0204 000028CE: EE0802 INC $0208 000028D1: EE0C02 INC $020C 000028D4: BCCCC2 LDY $C2CC,X 000028D7: B90002 LDA $0200,Y 000028DA: C9FF CMP #$FF 000028DC: F02E BEQ $2E 000028DE: 98 TYA 000028DF: AA TAX 000028E0: FE0002 INC $0200,X 000028E3: FE0402 INC $0204,X 000028E6: BD0002 LDA $0200,X 000028E9: C950 CMP #$50 000028EB: D006 BNE $06 000028ED: 2071E9 JSR $E971 000028F0: 4CEAE8 JMP $E8EA 000028F3: C9C8 CMP #$C8 000028F5: D003 BNE $03 000028F7: 2068E9 JSR $E968 000028FA: B90002 LDA $0200,Y 000028FD: C9A8 CMP #$A8 000028FF: D007 BNE $07 00002901: A901 LDA #$01 00002903: 85D9 STA $D9 00002905: B90002 LDA $0200,Y 00002908: C9D0 CMP #$D0 0000290A: B005 BCS $05 0000290C: E6D2 INC $D2 0000290E: 4C4FE8 JMP $E84F 00002911: A9FF LDA #$FF 00002913: 990002 STA $0200,Y 00002916: 990402 STA $0204,Y 00002919: E6D2 INC $D2 0000291B: 4C4FE8 JMP $E84F 0000291E: A5D8 LDA $D8 00002920: C901 CMP #$01 00002922: D027 BNE $27 00002924: A900 LDA #$00 00002926: 85D2 STA $D2 00002928: A5D2 LDA $D2 0000292A: C903 CMP #$03 0000292C: F049 BEQ $49 0000292E: AA TAX 0000292F: BCCCC2 LDY $C2CC,X 00002932: B90002 LDA $0200,Y 00002935: C9FF CMP #$FF 00002937: F005 BEQ $05 00002939: E6D2 INC $D2 0000293B: 4C18E9 JMP $E918 0000293E: A9D0 LDA #$D0 00002940: 207AE9 JSR $E97A 00002943: 2068E9 JSR $E968 00002946: A900 LDA #$00 00002948: 85D8 STA $D8 0000294A: 60 RTS 0000294B: A5D9 LDA $D9 0000294D: C901 CMP #$01 0000294F: D026 BNE $26 00002951: A903 LDA #$03 00002953: 85D2 STA $D2 00002955: A5D2 LDA $D2 00002957: C906 CMP #$06 00002959: F01C BEQ $1C 0000295B: AA TAX 0000295C: BCCCC2 LDY $C2CC,X 0000295F: B90002 LDA $0200,Y 00002962: C9FF CMP #$FF 00002964: F005 BEQ $05 00002966: E6D2 INC $D2 00002968: 4C45E9 JMP $E945 0000296B: A948 LDA #$48 0000296D: 207AE9 JSR $E97A 00002970: 2068E9 JSR $E968 00002973: A900 LDA #$00 00002975: 85D9 STA $D9 00002977: 60 RTS 00002978: A923 LDA #$23 0000297A: 990202 STA $0202,Y 0000297D: 990602 STA $0206,Y 00002980: 60 RTS 00002981: A903 LDA #$03 00002983: 990202 STA $0202,Y 00002986: 990602 STA $0206,Y 00002989: 60 RTS 0000298A: 990002 STA $0200,Y 0000298D: 990402 STA $0204,Y 00002990: 60 RTS 00002991: A900 LDA #$00 00002993: 8D4504 STA $0445 00002996: AD4504 LDA $0445 00002999: 20D7EF JSR $EFD7 0000299C: 8A TXA 0000299D: 18 CLC 0000299E: 6930 ADC #$30 000029A0: AA TAX 000029A1: 8604 STX $04 000029A3: 20ECEA JSR $EAEC 000029A6: C9FF CMP #$FF 000029A8: F056 BEQ $56 000029AA: AE4504 LDX $0445 000029AD: BD4604 LDA $0446,X 000029B0: 18 CLC 000029B1: 69B0 ADC #$B0 000029B3: C500 CMP $00 000029B5: 900D BCC $0D 000029B7: A501 LDA $01 000029B9: C926 CMP #$26 000029BB: B011 BCS $11 000029BD: A9C0 LDA #$C0 000029BF: 8502 STA $02 000029C1: 4CDAE9 JMP $E9DA 000029C4: 2001EA JSR $EA01 000029C7: C9FF CMP #$FF 000029C9: F038 BEQ $38 000029CB: 4CEAE9 JMP $E9EA 000029CE: A9C4 LDA #$C4 000029D0: 8502 STA $02 000029D2: A501 LDA $01 000029D4: C92E CMP #$2E 000029D6: 9012 BCC $12 000029D8: A902 LDA #$02 000029DA: 85FE STA $FE 000029DC: A92E LDA #$2E 000029DE: 8501 STA $01 000029E0: AD4504 LDA $0445 000029E3: 0A ASL A 000029E4: AA TAX 000029E5: A900 LDA #$00 000029E7: 9D2E04 STA $042E,X 000029EA: A500 LDA $00 000029EC: 18 CLC 000029ED: 6902 ADC #$02 000029EF: 8500 STA $00 000029F1: AD4504 LDA $0445 000029F4: 18 CLC 000029F5: 6901 ADC #$01 000029F7: 2072EF JSR $EF72 000029FA: 20DBEA JSR $EADB 000029FD: 4CF3E9 JMP $E9F3 00002A00: 2034EA JSR $EA34 00002A03: EE4504 INC $0445 00002A06: AD4504 LDA $0445 00002A09: C903 CMP #$03 00002A0B: F003 BEQ $03 00002A0D: 4C86E9 JMP $E986 00002A10: 60 RTS 00002A11: A501 LDA $01 00002A13: E601 INC $01 00002A15: E601 INC $01 00002A17: E601 INC $01 00002A19: C926 CMP #$26 00002A1B: D004 BNE $04 00002A1D: A201 LDX #$01 00002A1F: 86FE STX $FE 00002A21: C950 CMP #$50 00002A23: 9015 BCC $15 00002A25: C990 CMP #$90 00002A27: 9016 BCC $16 00002A29: C9C0 CMP #$C0 00002A2B: 900D BCC $0D 00002A2D: C9D8 CMP #$D8 00002A2F: 900E BCC $0E 00002A31: 20D1EA JSR $EAD1 00002A34: 2094F0 JSR $F094 00002A37: A9FF LDA #$FF 00002A39: 60 RTS 00002A3A: A9C4 LDA #$C4 00002A3C: 8502 STA $02 00002A3E: 60 RTS 00002A3F: A9C0 LDA #$C0 00002A41: 8502 STA $02 00002A43: 60 RTS 00002A44: A536 LDA $36 00002A46: D026 BNE $26 00002A48: A519 LDA $19 00002A4A: 2903 AND #$03 00002A4C: AA TAX 00002A4D: BDFFC1 LDA $C1FF,X 00002A50: 18 CLC 00002A51: 6910 ADC #$10 00002A53: AE4504 LDX $0445 00002A56: 9D4604 STA $0446,X 00002A59: 8500 STA $00 00002A5B: A930 LDA #$30 00002A5D: 8501 STA $01 00002A5F: A9C4 LDA #$C4 00002A61: 8502 STA $02 00002A63: 20DBEA JSR $EADB 00002A66: 20F7EA JSR $EAF7 00002A69: BD57C4 LDA $C457,X 00002A6C: 8536 STA $36 00002A6E: 60 RTS 00002A6F: A539 LDA $39 00002A71: F001 BEQ $01 00002A73: 60 RTS 00002A74: A908 LDA #$08 00002A76: 850A STA $0A 00002A78: A900 LDA #$00 00002A7A: 850B STA $0B 00002A7C: 20A1EA JSR $EAA1 00002A7F: D001 BNE $01 00002A81: 60 RTS 00002A82: A950 LDA #$50 00002A84: 8500 STA $00 00002A86: A920 LDA #$20 00002A88: 8501 STA $01 00002A8A: ADF102 LDA $02F1 00002A8D: C9DB CMP #$DB 00002A8F: F007 BEQ $07 00002A91: E6B7 INC $B7 00002A93: A9DB LDA #$DB 00002A95: 4C8AEA JMP $EA8A 00002A98: A9D7 LDA #$D7 00002A9A: 20D4EA JSR $EAD4 00002A9D: A9F0 LDA #$F0 00002A9F: 2080F0 JSR $F080 00002AA2: A5B7 LDA $B7 00002AA4: C904 CMP #$04 00002AA6: D008 BNE $08 00002AA8: A900 LDA #$00 00002AAA: 85B7 STA $B7 00002AAC: A9BB LDA #$BB 00002AAE: 8539 STA $39 00002AB0: 60 RTS 00002AB1: E6B8 INC $B8 00002AB3: A5B8 LDA $B8 00002AB5: 3007 BMI $07 00002AB7: C910 CMP #$10 00002AB9: B003 BCS $03 00002ABB: 4CB2EA JMP $EAB2 00002ABE: A900 LDA #$00 00002AC0: 85B8 STA $B8 00002AC2: C908 CMP #$08 00002AC4: B009 BCS $09 00002AC6: AA TAX 00002AC7: BDBCC1 LDA $C1BC,X 00002ACA: 250A AND $0A 00002ACC: 4CC8EA JMP $EAC8 00002ACF: 38 SEC 00002AD0: E908 SBC #$08 00002AD2: AA TAX 00002AD3: BDBCC1 LDA $C1BC,X 00002AD6: 250B AND $0B 00002AD8: F002 BEQ $02 00002ADA: A901 LDA #$01 00002ADC: 60 RTS 00002ADD: A900 LDA #$00 00002ADF: 8504 STA $04 00002AE1: 4CD6EA JMP $EAD6 00002AE4: 8502 STA $02 00002AE6: A922 LDA #$22 00002AE8: 8503 STA $03 00002AEA: 60 RTS 00002AEB: 20D1EA JSR $EAD1 00002AEE: 4C82F0 JMP $F082 00002AF1: AD0302 LDA $0203 00002AF4: 8500 STA $00 00002AF6: AD0002 LDA $0200 00002AF9: 8501 STA $01 00002AFB: 60 RTS 00002AFC: BD0302 LDA $0203,X 00002AFF: 8500 STA $00 00002B01: BD0002 LDA $0200,X 00002B04: 8501 STA $01 00002B06: 60 RTS 00002B07: A550 LDA $50 00002B09: 2901 AND #$01 00002B0B: 18 CLC 00002B0C: 6554 ADC $54 00002B0E: AA TAX 00002B0F: E004 CPX #$04 00002B11: 9002 BCC $02 00002B13: A204 LDX #$04 00002B15: 60 RTS 00002B16: AD0305 LDA $0503 00002B19: D001 BNE $01 00002B1B: 60 RTS 00002B1C: AD0505 LDA $0505 00002B1F: 290F AND #$0F 00002B21: 8D0505 STA $0505 00002B24: A553 LDA $53 00002B26: AA TAX 00002B27: A8 TAY 00002B28: CA DEX 00002B29: BD08C6 LDA $C608,X 00002B2C: 8500 STA $00 00002B2E: A920 LDA #$20 00002B30: 8501 STA $01 00002B32: 98 TYA 00002B33: C902 CMP #$02 00002B35: 302D BMI $2D 00002B37: A544 LDA $44 00002B39: F024 BEQ $24 00002B3B: C913 CMP #$13 00002B3D: D003 BNE $03 00002B3F: 4C85EB JMP $EB85 00002B42: C90F CMP #$0F 00002B44: D003 BNE $03 00002B46: 4C8EEB JMP $EB8E 00002B49: C90B CMP #$0B 00002B4B: D003 BNE $03 00002B4D: 4C85EB JMP $EB85 00002B50: C908 CMP #$08 00002B52: D003 BNE $03 00002B54: 4C8EEB JMP $EB8E 00002B57: C904 CMP #$04 00002B59: D003 BNE $03 00002B5B: 20A6EB JSR $EBA6 00002B5E: 60 RTS 00002B5F: A925 LDA #$25 00002B61: 8544 STA $44 00002B63: 60 RTS 00002B64: A536 LDA $36 00002B66: C918 CMP #$18 00002B68: F01A BEQ $1A 00002B6A: C900 CMP #$00 00002B6C: F01D BEQ $1D 00002B6E: AD1505 LDA $0515 00002B71: F00C BEQ $0C 00002B73: 20A1EB JSR $EBA1 00002B76: A900 LDA #$00 00002B78: 8D1505 STA $0515 00002B7B: A91A LDA #$1A 00002B7D: 8544 STA $44 00002B7F: A544 LDA $44 00002B81: 4C2BEB JMP $EB2B 00002B84: A930 LDA #$30 00002B86: 8544 STA $44 00002B88: 4C9CEB JMP $EB9C 00002B8B: A91A LDA #$1A 00002B8D: 8544 STA $44 00002B8F: 2097EB JSR $EB97 00002B92: 4C2BEB JMP $EB2B 00002B95: A980 LDA #$80 00002B97: 85FE STA $FE 00002B99: A940 LDA #$40 00002B9B: 4CA8EB JMP $EBA8 00002B9E: A980 LDA #$80 00002BA0: 85FE STA $FE 00002BA2: A942 LDA #$42 00002BA4: 4CA8EB JMP $EBA8 00002BA7: A944 LDA #$44 00002BA9: 4CA8EB JMP $EBA8 00002BAC: A93E LDA #$3E 00002BAE: 4CA8EB JMP $EBA8 00002BB1: A900 LDA #$00 00002BB3: 4CA8EB JMP $EBA8 00002BB6: A902 LDA #$02 00002BB8: 2015C8 JSR $C815 00002BBB: C644 DEC $44 00002BBD: AD0505 LDA $0505 00002BC0: 0910 ORA #$10 00002BC2: 8D0505 STA $0505 00002BC5: 60 RTS 00002BC6: A545 LDA $45 00002BC8: F001 BEQ $01 00002BCA: 60 RTS 00002BCB: A52E LDA $2E 00002BCD: D005 BNE $05 00002BCF: A9FF LDA #$FF 00002BD1: 8596 STA $96 00002BD3: 60 RTS 00002BD4: A90B LDA #$0B 00002BD6: 8545 STA $45 00002BD8: A901 LDA #$01 00002BDA: 8500 STA $00 00002BDC: A90A LDA #$0A 00002BDE: 8501 STA $01 00002BE0: 203EF3 JSR $F33E 00002BE3: A902 LDA #$02 00002BE5: 8500 STA $00 00002BE7: 4C3CF2 JMP $F23C 00002BEA: AD0B05 LDA $050B 00002BED: D00E BNE $0E 00002BEF: A901 LDA #$01 00002BF1: 8D0B05 STA $050B 00002BF4: A900 LDA #$00 00002BF6: 8D0E05 STA $050E 00002BF9: 8D0C05 STA $050C 00002BFC: 60 RTS 00002BFD: AD0C05 LDA $050C 00002C00: F024 BEQ $24 00002C02: AD0D05 LDA $050D 00002C05: C905 CMP #$05 00002C07: D011 BNE $11 00002C09: A596 LDA $96 00002C0B: C90A CMP #$0A 00002C0D: D004 BNE $04 00002C0F: A900 LDA #$00 00002C11: F007 BEQ $07 00002C13: A904 LDA #$04 00002C15: 8596 STA $96 00002C17: 4C12EC JMP $EC12 00002C1A: 8556 STA $56 00002C1C: 2903 AND #$03 00002C1E: F002 BEQ $02 00002C20: 8557 STA $57 00002C22: CE0C05 DEC $050C 00002C25: 60 RTS 00002C26: AE0E05 LDX $050E 00002C29: BD28C0 LDA $C028,X 00002C2C: 8D0C05 STA $050C 00002C2F: BD14C0 LDA $C014,X 00002C32: 8D0D05 STA $050D 00002C35: EE0E05 INC $050E 00002C38: 60 RTS 00002C39: 20E1EA JSR $EAE1 00002C3C: A94C LDA #$4C 00002C3E: 20E8EF JSR $EFE8 00002C41: A553 LDA $53 00002C43: C903 CMP #$03 00002C45: F004 BEQ $04 00002C47: C901 CMP #$01 00002C49: D003 BNE $03 00002C4B: 2044EC JSR $EC44 00002C4E: 208AED JSR $ED8A 00002C51: 4CC5ED JMP $EDC5 00002C54: A900 LDA #$00 00002C56: 855D STA $5D 00002C58: A93A LDA #$3A 00002C5A: 2047C8 JSR $C847 00002C5D: 20D5EF JSR $EFD5 00002C60: A553 LDA $53 00002C62: C901 CMP #$01 00002C64: F005 BEQ $05 00002C66: 8A TXA 00002C67: 18 CLC 00002C68: 6930 ADC #$30 00002C6A: AA TAX 00002C6B: 20ECEA JSR $EAEC 00002C6E: 20EFEF JSR $EFEF 00002C71: D044 BNE $44 00002C73: A596 LDA $96 00002C75: C904 CMP #$04 00002C77: D02E BNE $2E 00002C79: A556 LDA $56 00002C7B: 2903 AND #$03 00002C7D: D007 BNE $07 00002C7F: A59C LDA $9C 00002C81: F00D BEQ $0D 00002C83: 4C97EC JMP $EC97 00002C86: A59C LDA $9C 00002C88: C903 CMP #$03 00002C8A: B01B BCS $1B 00002C8C: A59E LDA $9E 00002C8E: D017 BNE $17 00002C90: A59D LDA $9D 00002C92: C918 CMP #$18 00002C94: B011 BCS $11 00002C96: A500 LDA $00 00002C98: 8505 STA $05 00002C9A: A501 LDA $01 00002C9C: 8506 STA $06 00002C9E: A200 LDX #$00 00002CA0: 20C6CF JSR $CFC6 00002CA3: A920 LDA #$20 00002CA5: 85FD STA $FD 00002CA7: E65D INC $5D 00002CA9: A553 LDA $53 00002CAB: 4A LSR A 00002CAC: AA TAX 00002CAD: A55D LDA $5D 00002CAF: DDFDC1 CMP $C1FD,X 00002CB2: F00B BEQ $0B 00002CB4: 4C48EC JMP $EC48 00002CB7: 2051EF JSR $EF51 00002CBA: A9FF LDA #$FF 00002CBC: 8596 STA $96 00002CBE: 60 RTS 00002CBF: A553 LDA $53 00002CC1: C903 CMP #$03 00002CC3: F009 BEQ $09 00002CC5: A596 LDA $96 00002CC7: C90A CMP #$0A 00002CC9: D003 BNE $03 00002CCB: 4CBFEC JMP $ECBF 00002CCE: 60 RTS 00002CCF: A5A0 LDA $A0 00002CD1: D003 BNE $03 00002CD3: 4C87ED JMP $ED87 00002CD6: A59F LDA $9F 00002CD8: 4A LSR A 00002CD9: 4A LSR A 00002CDA: F005 BEQ $05 00002CDC: A900 LDA #$00 00002CDE: 4CD3EC JMP $ECD3 00002CE1: A901 LDA #$01 00002CE3: F013 BEQ $13 00002CE5: A904 LDA #$04 00002CE7: 18 CLC 00002CE8: 6D0302 ADC $0203 00002CEB: 8500 STA $00 00002CED: AD0002 LDA $0200 00002CF0: 38 SEC 00002CF1: E910 SBC #$10 00002CF3: 8501 STA $01 00002CF5: 4C07ED JMP $ED07 00002CF8: A557 LDA $57 00002CFA: C901 CMP #$01 00002CFC: F009 BEQ $09 00002CFE: AD0302 LDA $0203 00002D01: 38 SEC 00002D02: E910 SBC #$10 00002D04: 4CFDEC JMP $ECFD 00002D07: AD0302 LDA $0203 00002D0A: 18 CLC 00002D0B: 6910 ADC #$10 00002D0D: 8500 STA $00 00002D0F: AD0002 LDA $0200 00002D12: 18 CLC 00002D13: 6906 ADC #$06 00002D15: 8501 STA $01 00002D17: A93C LDA #$3C 00002D19: 20E8EF JSR $EFE8 00002D1C: A553 LDA $53 00002D1E: C901 CMP #$01 00002D20: D022 BNE $22 00002D22: A900 LDA #$00 00002D24: 855D STA $5D 00002D26: 20D5EF JSR $EFD5 00002D29: 20ECEA JSR $EAEC 00002D2C: A93A LDA #$3A 00002D2E: 2047C8 JSR $C847 00002D31: 20EFEF JSR $EFEF 00002D34: D031 BNE $31 00002D36: A55D LDA $5D 00002D38: 18 CLC 00002D39: 6901 ADC #$01 00002D3B: 855D STA $5D 00002D3D: C909 CMP #$09 00002D3F: F054 BEQ $54 00002D41: 4C16ED JMP $ED16 00002D44: A900 LDA #$00 00002D46: 85AE STA $AE 00002D48: 20DDEF JSR $EFDD 00002D4B: 20ECEA JSR $EAEC 00002D4E: A93A LDA #$3A 00002D50: 2047C8 JSR $C847 00002D53: 20EFEF JSR $EFEF 00002D56: D00F BNE $0F 00002D58: E6AE INC $AE 00002D5A: A5AE LDA $AE 00002D5C: A653 LDX $53 00002D5E: CA DEX 00002D5F: DDF6C1 CMP $C1F6,X 00002D62: F031 BEQ $31 00002D64: 4C38ED JMP $ED38 00002D67: A902 LDA #$02 00002D69: 85FF STA $FF 00002D6B: A500 LDA $00 00002D6D: 8505 STA $05 00002D6F: A501 LDA $01 00002D71: 8506 STA $06 00002D73: A553 LDA $53 00002D75: C901 CMP #$01 00002D77: D00B BNE $0B 00002D79: A900 LDA #$00 00002D7B: A65D LDX $5D 00002D7D: 9568 STA $68,X 00002D7F: A901 LDA #$01 00002D81: 4C87ED JMP $ED87 00002D84: A910 LDA #$10 00002D86: 8540 STA $40 00002D88: A900 LDA #$00 00002D8A: A6AE LDX $AE 00002D8C: 95E0 STA $E0,X 00002D8E: 95DB STA $DB,X 00002D90: A901 LDA #$01 00002D92: 4C87ED JMP $ED87 00002D95: A900 LDA #$00 00002D97: 85BF STA $BF 00002D99: 60 RTS 00002D9A: A900 LDA #$00 00002D9C: 85AE STA $AE 00002D9E: A93A LDA #$3A 00002DA0: 2047C8 JSR $C847 00002DA3: 20DDEF JSR $EFDD 00002DA6: 20ECEA JSR $EAEC 00002DA9: 20EFEF JSR $EFEF 00002DAC: D00F BNE $0F 00002DAE: E6AE INC $AE 00002DB0: A5AE LDA $AE 00002DB2: A653 LDX $53 00002DB4: CA DEX 00002DB5: DDF6C1 CMP $C1F6,X 00002DB8: F00B BEQ $0B 00002DBA: 4C93ED JMP $ED93 00002DBD: 2051EF JSR $EF51 00002DC0: A9FF LDA #$FF 00002DC2: 8596 STA $96 00002DC4: 60 RTS 00002DC5: A596 LDA $96 00002DC7: C90A CMP #$0A 00002DC9: D009 BNE $09 00002DCB: A553 LDA $53 00002DCD: C901 CMP #$01 00002DCF: F003 BEQ $03 00002DD1: 20BFEC JSR $ECBF 00002DD4: 60 RTS 00002DD5: A553 LDA $53 00002DD7: C903 CMP #$03 00002DD9: D007 BNE $07 00002DDB: A496 LDY $96 00002DDD: C001 CPY #$01 00002DDF: F001 BEQ $01 00002DE1: 60 RTS 00002DE2: 38 SEC 00002DE3: E901 SBC #$01 00002DE5: 0A ASL A 00002DE6: AA TAX 00002DE7: BD2BC4 LDA $C42B,X 00002DEA: 8502 STA $02 00002DEC: BD2CC4 LDA $C42C,X 00002DEF: 8503 STA $03 00002DF1: BD23C4 LDA $C423,X 00002DF4: 8500 STA $00 00002DF6: BD24C4 LDA $C424,X 00002DF9: 8501 STA $01 00002DFB: 20EFEF JSR $EFEF 00002DFE: D017 BNE $17 00002E00: A553 LDA $53 00002E02: C903 CMP #$03 00002E04: D015 BNE $15 00002E06: A501 LDA $01 00002E08: C9C9 CMP #$C9 00002E0A: F00F BEQ $0F 00002E0C: A970 LDA #$70 00002E0E: 8500 STA $00 00002E10: A9C9 LDA #$C9 00002E12: 8501 STA $01 00002E14: 4CEBED JMP $EDEB 00002E17: A9FF LDA #$FF 00002E19: 8596 STA $96 00002E1B: 60 RTS 00002E1C: A980 LDA #$80 00002E1E: 850A STA $0A 00002E20: A980 LDA #$80 00002E22: 850B STA $0B 00002E24: 20E4DF JSR $DFE4 00002E27: D001 BNE $01 00002E29: 60 RTS 00002E2A: A553 LDA $53 00002E2C: C901 CMP #$01 00002E2E: D006 BNE $06 00002E30: 20D5EF JSR $EFD5 00002E33: 4C29EE JMP $EE29 00002E36: 20DDEF JSR $EFDD 00002E39: 8604 STX $04 00002E3B: 20ECEA JSR $EAEC 00002E3E: A5BF LDA $BF 00002E40: C901 CMP #$01 00002E42: D004 BNE $04 00002E44: A002 LDY #$02 00002E46: 84FF STY $FF 00002E48: C90B CMP #$0B 00002E4A: F015 BEQ $15 00002E4C: A6BF LDX $BF 00002E4E: CA DEX 00002E4F: BDECC1 LDA $C1EC,X 00002E52: 8502 STA $02 00002E54: 20DBEA JSR $EADB 00002E57: A604 LDX $04 00002E59: A902 LDA #$02 00002E5B: 206CEE JSR $EE6C 00002E5E: E6BF INC $BF 00002E60: 60 RTS 00002E61: A553 LDA $53 00002E63: C901 CMP #$01 00002E65: D005 BNE $05 00002E67: A903 LDA #$03 00002E69: 206CEE JSR $EE6C 00002E6C: 20D1EA JSR $EAD1 00002E6F: 2094F0 JSR $F094 00002E72: A202 LDX #$02 00002E74: 20C6CF JSR $CFC6 00002E77: A900 LDA #$00 00002E79: 85BF STA $BF 00002E7B: 60 RTS 00002E7C: 9D0202 STA $0202,X 00002E7F: 9D0602 STA $0206,X 00002E82: 9D0A02 STA $020A,X 00002E85: 9D0E02 STA $020E,X 00002E88: 60 RTS 00002E89: A453 LDY $53 00002E8B: C001 CPY #$01 00002E8D: D001 BNE $01 00002E8F: 60 RTS 00002E90: A5BE LDA $BE 00002E92: F054 BEQ $54 00002E94: C004 CPY #$04 00002E96: D068 BNE $68 00002E98: A000 LDY #$00 00002E9A: AEFFC5 LDX $C5FF 00002E9D: BDC2C5 LDA $C5C2,X 00002EA0: CD0302 CMP $0203 00002EA3: D052 BNE $52 00002EA5: BDAEC5 LDA $C5AE,X 00002EA8: CD0002 CMP $0200 00002EAB: 904A BCC $4A 00002EAD: 38 SEC 00002EAE: E911 SBC #$11 00002EB0: CD0002 CMP $0200 00002EB3: B042 BCS $42 00002EB5: B9C100 LDA $00C1,Y 00002EB8: C900 CMP #$00 00002EBA: D02D BNE $2D 00002EBC: A596 LDA $96 00002EBE: C908 CMP #$08 00002EC0: F026 BEQ $26 00002EC2: C9FF CMP #$FF 00002EC4: F022 BEQ $22 00002EC6: A911 LDA #$11 00002EC8: 85CC STA $CC 00002ECA: A901 LDA #$01 00002ECC: 99C100 STA $00C1,Y 00002ECF: 2038EF JSR $EF38 00002ED2: AD0002 LDA $0200 00002ED5: 18 CLC 00002ED6: 6910 ADC #$10 00002ED8: 8506 STA $06 00002EDA: AD0302 LDA $0203 00002EDD: 8505 STA $05 00002EDF: A200 LDX #$00 00002EE1: 20C6CF JSR $CFC6 00002EE4: A920 LDA #$20 00002EE6: 85FD STA $FD 00002EE8: 60 RTS 00002EE9: A596 LDA $96 00002EEB: C904 CMP #$04 00002EED: F007 BEQ $07 00002EEF: 2051EF JSR $EF51 00002EF2: A908 LDA #$08 00002EF4: 8596 STA $96 00002EF6: 60 RTS 00002EF7: C007 CPY #$07 00002EF9: F005 BEQ $05 00002EFB: E8 INX 00002EFC: C8 INY 00002EFD: 4C8DEE JMP $EE8D 00002F00: A453 LDY $53 00002F02: BEFAC5 LDX $C5FA,Y 00002F05: A000 LDY #$00 00002F07: BDAEC5 LDA $C5AE,X 00002F0A: CD0002 CMP $0200 00002F0D: D030 BNE $30 00002F0F: BDC2C5 LDA $C5C2,X 00002F12: CD0302 CMP $0203 00002F15: D028 BNE $28 00002F17: B9C900 LDA $00C9,Y 00002F1A: D023 BNE $23 00002F1C: A922 LDA #$22 00002F1E: 85CC STA $CC 00002F20: A901 LDA #$01 00002F22: 99C900 STA $00C9,Y 00002F25: 2038EF JSR $EF38 00002F28: AD0002 LDA $0200 00002F2B: 38 SEC 00002F2C: E908 SBC #$08 00002F2E: 8506 STA $06 00002F30: AD0302 LDA $0203 00002F33: 8505 STA $05 00002F35: A203 LDX #$03 00002F37: 20C6CF JSR $CFC6 00002F3A: A920 LDA #$20 00002F3C: 85FD STA $FD 00002F3E: 60 RTS 00002F3F: C002 CPY #$02 00002F41: F0FB BEQ $FB 00002F43: E8 INX 00002F44: C8 INY 00002F45: 4CF7EE JMP $EEF7 00002F48: A924 LDA #$24 00002F4A: 85CD STA $CD 00002F4C: 85CE STA $CE 00002F4E: 85CF STA $CF 00002F50: 85D0 STA $D0 00002F52: BDD6C5 LDA $C5D6,X 00002F55: 8501 STA $01 00002F57: BDE9C5 LDA $C5E9,X 00002F5A: 8500 STA $00 00002F5C: A948 LDA #$48 00002F5E: 4C15C8 JMP $C815 00002F61: A596 LDA $96 00002F63: C90A CMP #$0A 00002F65: D01A BNE $1A 00002F67: A5A0 LDA $A0 00002F69: F016 BEQ $16 00002F6B: 38 SEC 00002F6C: E901 SBC #$01 00002F6E: AA TAX 00002F6F: A900 LDA #$00 00002F71: 9D5104 STA $0451,X 00002F74: 8A TXA 00002F75: 0A ASL A 00002F76: 0A ASL A 00002F77: 0A ASL A 00002F78: AA TAX 00002F79: A9FF LDA #$FF 00002F7B: 9DD002 STA $02D0,X 00002F7E: 9DD402 STA $02D4,X 00002F81: 60 RTS 00002F82: 860F STX $0F 00002F84: 0A ASL A 00002F85: AA TAX 00002F86: BD2C04 LDA $042C,X 00002F89: D019 BNE $19 00002F8B: 9D3604 STA $0436,X 00002F8E: E000 CPX #$00 00002F90: D005 BNE $05 00002F92: A908 LDA #$08 00002F94: 4C89EF JMP $EF89 00002F97: A980 LDA #$80 00002F99: 9D3504 STA $0435,X 00002F9C: A9F0 LDA #$F0 00002F9E: 9D2D04 STA $042D,X 00002FA1: 4CADEF JMP $EFAD 00002FA4: BD3504 LDA $0435,X 00002FA7: E000 CPX #$00 00002FA9: D005 BNE $05 00002FAB: 6910 ADC #$10 00002FAD: 4CA2EF JMP $EFA2 00002FB0: 6930 ADC #$30 00002FB2: 9D3504 STA $0435,X 00002FB5: BD3604 LDA $0436,X 00002FB8: 6900 ADC #$00 00002FBA: 9D3604 STA $0436,X 00002FBD: BD2D04 LDA $042D,X 00002FC0: 38 SEC 00002FC1: FD3D04 SBC $043D,X 00002FC4: 9D2D04 STA $042D,X 00002FC7: A501 LDA $01 00002FC9: FD3E04 SBC $043E,X 00002FCC: 8501 STA $01 00002FCE: 18 CLC 00002FCF: BD2D04 LDA $042D,X 00002FD2: 7D3504 ADC $0435,X 00002FD5: 9D2D04 STA $042D,X 00002FD8: A501 LDA $01 00002FDA: 7D3604 ADC $0436,X 00002FDD: 8501 STA $01 00002FDF: FE2C04 INC $042C,X 00002FE2: A60F LDX $0F 00002FE4: 60 RTS 00002FE5: A55D LDA $5D 00002FE7: 18 CLC 00002FE8: 6903 ADC #$03 00002FEA: 4CE2EF JMP $EFE2 00002FED: A5AE LDA $AE 00002FEF: 18 CLC 00002FF0: 6901 ADC #$01 00002FF2: 0A ASL A 00002FF3: 0A ASL A 00002FF4: 0A ASL A 00002FF5: 0A ASL A 00002FF6: AA TAX 00002FF7: 60 RTS 00002FF8: 2047C8 JSR $C847 00002FFB: A900 LDA #$00 00002FFD: F006 BEQ $06 00002FFF: A901 LDA #$01 00003001: D002 BNE $02 00003003: A902 LDA #$02 00003005: 850C STA $0C 00003007: 8A TXA 00003008: 48 PHA 00003009: 98 TYA 0000300A: 48 PHA 0000300B: A000 LDY #$00 0000300D: A50C LDA $0C 0000300F: D017 BNE $17 00003011: 2063F0 JSR $F063 00003014: 8546 STA $46 00003016: 2069F0 JSR $F069 00003019: 8547 STA $47 0000301B: 2062F0 JSR $F062 0000301E: 8548 STA $48 00003020: 2069F0 JSR $F069 00003023: 8549 STA $49 00003025: 4C59F0 JMP $F059 00003028: 2063F0 JSR $F063 0000302B: 854A STA $4A 0000302D: 2069F0 JSR $F069 00003030: 854B STA $4B 00003032: 2062F0 JSR $F062 00003035: 854C STA $4C 00003037: 2069F0 JSR $F069 0000303A: 854D STA $4D 0000303C: A54A LDA $4A 0000303E: 38 SEC 0000303F: E546 SBC $46 00003041: 859C STA $9C 00003043: A54B LDA $4B 00003045: 38 SEC 00003046: E547 SBC $47 00003048: 859D STA $9D 0000304A: A549 LDA $49 0000304C: C54B CMP $4B 0000304E: 9017 BCC $17 00003050: A54D LDA $4D 00003052: C547 CMP $47 00003054: 9011 BCC $11 00003056: A54C LDA $4C 00003058: C546 CMP $46 0000305A: 900B BCC $0B 0000305C: A548 LDA $48 0000305E: C54A CMP $4A 00003060: 9005 BCC $05 00003062: A901 LDA #$01 00003064: 4C59F0 JMP $F059 00003067: A900 LDA #$00 00003069: 850C STA $0C 0000306B: 68 PLA 0000306C: A8 TAY 0000306D: 68 PLA 0000306E: AA TAX 0000306F: A50C LDA $0C 00003071: 60 RTS 00003072: C8 INY 00003073: B102 LDA ($02),Y 00003075: 18 CLC 00003076: 6500 ADC $00 00003078: 60 RTS 00003079: C8 INY 0000307A: B102 LDA ($02),Y 0000307C: 18 CLC 0000307D: 6501 ADC $01 0000307F: 60 RTS 00003080: 8502 STA $02 00003082: 20E1EA JSR $EAE1 00003085: 20CDEA JSR $EACD 00003088: A557 LDA $57 0000308A: 2903 AND #$03 0000308C: 4A LSR A 0000308D: 4C96F0 JMP $F096 00003090: 8504 STA $04 00003092: A900 LDA #$00 00003094: F010 BEQ $10 00003096: 8504 STA $04 00003098: A901 LDA #$01 0000309A: D00A BNE $0A 0000309C: 8504 STA $04 0000309E: A904 LDA #$04 000030A0: D004 BNE $04 000030A2: 8503 STA $03 000030A4: A90F LDA #$0F 000030A6: 48 PHA 000030A7: 850F STA $0F 000030A9: 8A TXA 000030AA: 48 PHA 000030AB: 98 TYA 000030AC: 48 PHA 000030AD: A500 LDA $00 000030AF: 48 PHA 000030B0: A505 LDA $05 000030B2: 48 PHA 000030B3: A506 LDA $06 000030B5: 48 PHA 000030B6: A507 LDA $07 000030B8: 48 PHA 000030B9: A508 LDA $08 000030BB: 48 PHA 000030BC: A509 LDA $09 000030BE: 48 PHA 000030BF: A902 LDA #$02 000030C1: 8505 STA $05 000030C3: A50F LDA $0F 000030C5: C904 CMP #$04 000030C7: F036 BEQ $36 000030C9: A90F LDA #$0F 000030CB: 2503 AND $03 000030CD: 8507 STA $07 000030CF: A503 LDA $03 000030D1: 4A LSR A 000030D2: 4A LSR A 000030D3: 4A LSR A 000030D4: 4A LSR A 000030D5: 8506 STA $06 000030D7: AA TAX 000030D8: A900 LDA #$00 000030DA: 18 CLC 000030DB: 6507 ADC $07 000030DD: CA DEX 000030DE: D0FB BNE $FB 000030E0: 8508 STA $08 000030E2: A50F LDA $0F 000030E4: D006 BNE $06 000030E6: 201EF1 JSR $F11E 000030E9: 4CE9F0 JMP $F0E9 000030EC: C901 CMP #$01 000030EE: F006 BEQ $06 000030F0: 2095F1 JSR $F195 000030F3: 4CF2F0 JMP $F0F2 000030F6: 2061F1 JSR $F161 000030F9: 2039F1 JSR $F139 000030FC: 4CF2F0 JMP $F0F2 000030FF: 200AF1 JSR $F10A 00003102: 68 PLA 00003103: 8509 STA $09 00003105: 68 PLA 00003106: 8508 STA $08 00003108: 68 PLA 00003109: 8507 STA $07 0000310B: 68 PLA 0000310C: 8506 STA $06 0000310E: 68 PLA 0000310F: 8505 STA $05 00003111: 68 PLA 00003112: 8500 STA $00 00003114: 68 PLA 00003115: A8 TAY 00003116: 68 PLA 00003117: AA TAX 00003118: 68 PLA 00003119: 60 RTS 0000311A: A603 LDX $03 0000311C: A000 LDY #$00 0000311E: A9FF LDA #$FF 00003120: 9104 STA ($04),Y 00003122: C8 INY 00003123: C8 INY 00003124: A502 LDA $02 00003126: 9104 STA ($04),Y 00003128: C8 INY 00003129: C8 INY 0000312A: CA DEX 0000312B: D0F1 BNE $F1 0000312D: 60 RTS 0000312E: A502 LDA $02 00003130: A608 LDX $08 00003132: A001 LDY #$01 00003134: 9104 STA ($04),Y 00003136: 18 CLC 00003137: 6901 ADC #$01 00003139: C8 INY 0000313A: 48 PHA 0000313B: B104 LDA ($04),Y 0000313D: 293F AND #$3F 0000313F: 9104 STA ($04),Y 00003141: 68 PLA 00003142: C8 INY 00003143: C8 INY 00003144: C8 INY 00003145: CA DEX 00003146: D0EC BNE $EC 00003148: 60 RTS 00003149: A000 LDY #$00 0000314B: A606 LDX $06 0000314D: A501 LDA $01 0000314F: 8509 STA $09 00003151: A509 LDA $09 00003153: 9104 STA ($04),Y 00003155: 18 CLC 00003156: 6908 ADC #$08 00003158: 8509 STA $09 0000315A: C8 INY 0000315B: C8 INY 0000315C: C8 INY 0000315D: A500 LDA $00 0000315F: 9104 STA ($04),Y 00003161: C8 INY 00003162: CA DEX 00003163: D0EC BNE $EC 00003165: A500 LDA $00 00003167: 18 CLC 00003168: 6908 ADC #$08 0000316A: 8500 STA $00 0000316C: C607 DEC $07 0000316E: D0DB BNE $DB 00003170: 60 RTS 00003171: A001 LDY #$01 00003173: 840A STY $0A 00003175: A508 LDA $08 00003177: 38 SEC 00003178: E506 SBC $06 0000317A: A8 TAY 0000317B: 850B STA $0B 0000317D: A606 LDX $06 0000317F: 98 TYA 00003180: 48 PHA 00003181: 18 CLC 00003182: 98 TYA 00003183: 6502 ADC $02 00003185: A40A LDY $0A 00003187: 9104 STA ($04),Y 00003189: C8 INY 0000318A: B104 LDA ($04),Y 0000318C: 293F AND #$3F 0000318E: 4940 EOR #$40 00003190: 9104 STA ($04),Y 00003192: C8 INY 00003193: C8 INY 00003194: C8 INY 00003195: 840A STY $0A 00003197: 68 PLA 00003198: A8 TAY 00003199: C8 INY 0000319A: CA DEX 0000319B: D0E2 BNE $E2 0000319D: A50B LDA $0B 0000319F: 38 SEC 000031A0: E506 SBC $06 000031A2: 10D6 BPL $D6 000031A4: 60 RTS 000031A5: A000 LDY #$00 000031A7: A606 LDX $06 000031A9: A501 LDA $01 000031AB: 8509 STA $09 000031AD: A9FF LDA #$FF 000031AF: 9104 STA ($04),Y 000031B1: C8 INY 000031B2: C8 INY 000031B3: C8 INY 000031B4: C8 INY 000031B5: CA DEX 000031B6: D0F7 BNE $F7 000031B8: A500 LDA $00 000031BA: 18 CLC 000031BB: 6908 ADC #$08 000031BD: 8500 STA $00 000031BF: C607 DEC $07 000031C1: D0E4 BNE $E4 000031C3: 60 RTS 000031C4: AD0220 LDA $2002 000031C7: A510 LDA $10 000031C9: 29FB AND #$FB 000031CB: 8D0020 STA $2000 000031CE: A920 LDA #$20 000031D0: 8D0620 STA $2006 000031D3: A900 LDA #$00 000031D5: 8D0620 STA $2006 000031D8: A204 LDX #$04 000031DA: A000 LDY #$00 000031DC: A924 LDA #$24 000031DE: 8D0720 STA $2007 000031E1: 88 DEY 000031E2: D0FA BNE $FA 000031E4: CA DEX 000031E5: D0F7 BNE $F7 000031E7: A923 LDA #$23 000031E9: 8D0620 STA $2006 000031EC: A9C0 LDA #$C0 000031EE: 8D0620 STA $2006 000031F1: A040 LDY #$40 000031F3: A900 LDA #$00 000031F5: 8D0720 STA $2007 000031F8: 88 DEY 000031F9: D0FA BNE $FA 000031FB: 60 RTS 000031FC: 8D0620 STA $2006 000031FF: C8 INY 00003200: B100 LDA ($00),Y 00003202: 8D0620 STA $2006 00003205: C8 INY 00003206: B100 LDA ($00),Y 00003208: 0A ASL A 00003209: 48 PHA 0000320A: A510 LDA $10 0000320C: 0904 ORA #$04 0000320E: B002 BCS $02 00003210: 29FB AND #$FB 00003212: 8D0020 STA $2000 00003215: 8510 STA $10 00003217: 68 PLA 00003218: 0A ASL A 00003219: 9003 BCC $03 0000321B: 0902 ORA #$02 0000321D: C8 INY 0000321E: 4A LSR A 0000321F: 4A LSR A 00003220: AA TAX 00003221: B001 BCS $01 00003223: C8 INY 00003224: B100 LDA ($00),Y 00003226: 8D0720 STA $2007 00003229: CA DEX 0000322A: D0F5 BNE $F5 0000322C: 38 SEC 0000322D: 98 TYA 0000322E: 6500 ADC $00 00003230: 8500 STA $00 00003232: A900 LDA #$00 00003234: 6501 ADC $01 00003236: 8501 STA $01 00003238: AE0220 LDX $2002 0000323B: A000 LDY #$00 0000323D: B100 LDA ($00),Y 0000323F: D0BB BNE $BB 00003241: A512 LDA $12 00003243: 8D0520 STA $2005 00003246: A513 LDA $13 00003248: 8D0520 STA $2005 0000324B: 60 RTS 0000324C: D8 CLD 0000324D: A904 LDA #$04 0000324F: 4600 LSR $00 00003251: 9005 BCC $05 00003253: 48 PHA 00003254: 204EF2 JSR $F24E 00003257: 68 PLA 00003258: 18 CLC 00003259: E900 SBC #$00 0000325B: 10F2 BPL $F2 0000325D: 60 RTS 0000325E: 0A ASL A 0000325F: 0A ASL A 00003260: A8 TAY 00003261: 8501 STA $01 00003263: AE3003 LDX $0330 00003266: B900C0 LDA $C000,Y 00003269: 9D3103 STA $0331,X 0000326C: 202DF3 JSR $F32D 0000326F: C8 INY 00003270: B900C0 LDA $C000,Y 00003273: 9D3103 STA $0331,X 00003276: 202DF3 JSR $F32D 00003279: C8 INY 0000327A: B900C0 LDA $C000,Y 0000327D: 2987 AND #$87 0000327F: 9D3103 STA $0331,X 00003282: 2907 AND #$07 00003284: 8502 STA $02 00003286: 8A TXA 00003287: 38 SEC 00003288: 6502 ADC $02 0000328A: 202FF3 JSR $F32F 0000328D: AA TAX 0000328E: 8E3003 STX $0330 00003291: A900 LDA #$00 00003293: 9D3103 STA $0331,X 00003296: C8 INY 00003297: B900C0 LDA $C000,Y 0000329A: 8503 STA $03 0000329C: CA DEX 0000329D: 18 CLC 0000329E: B92000 LDA $0020,Y 000032A1: 290F AND #$0F 000032A3: F001 BEQ $01 000032A5: 18 CLC 000032A6: 9002 BCC $02 000032A8: A924 LDA #$24 000032AA: 9D3103 STA $0331,X 000032AD: CA DEX 000032AE: C602 DEC $02 000032B0: F022 BEQ $22 000032B2: B92000 LDA $0020,Y 000032B5: 29F0 AND #$F0 000032B7: 08 PHP 000032B8: 4A LSR A 000032B9: 4A LSR A 000032BA: 4A LSR A 000032BB: 4A LSR A 000032BC: 28 PLP 000032BD: F001 BEQ $01 000032BF: 18 CLC 000032C0: 9002 BCC $02 000032C2: A924 LDA #$24 000032C4: 9D3103 STA $0331,X 000032C7: A503 LDA $03 000032C9: 2901 AND #$01 000032CB: F001 BEQ $01 000032CD: 38 SEC 000032CE: 88 DEY 000032CF: CA DEX 000032D0: C602 DEC $02 000032D2: D0CA BNE $CA 000032D4: A503 LDA $03 000032D6: 2910 AND #$10 000032D8: F00C BEQ $0C 000032DA: E8 INX 000032DB: A401 LDY $01 000032DD: 18 CLC 000032DE: B92000 LDA $0020,Y 000032E1: 6937 ADC #$37 000032E3: 9D3103 STA $0331,X 000032E6: 60 RTS 000032E7: A000 LDY #$00 000032E9: B102 LDA ($02),Y 000032EB: 290F AND #$0F 000032ED: 8505 STA $05 000032EF: B102 LDA ($02),Y 000032F1: 4A LSR A 000032F2: 4A LSR A 000032F3: 4A LSR A 000032F4: 4A LSR A 000032F5: 8504 STA $04 000032F7: AE3003 LDX $0330 000032FA: A501 LDA $01 000032FC: 9D3103 STA $0331,X 000032FF: 202DF3 JSR $F32D 00003302: A500 LDA $00 00003304: 9D3103 STA $0331,X 00003307: 202DF3 JSR $F32D 0000330A: A504 LDA $04 0000330C: 8506 STA $06 0000330E: 0980 ORA #$80 00003310: 9D3103 STA $0331,X 00003313: 202DF3 JSR $F32D 00003316: C8 INY 00003317: B102 LDA ($02),Y 00003319: 9D3103 STA $0331,X 0000331C: C606 DEC $06 0000331E: D0F3 BNE $F3 00003320: 202DF3 JSR $F32D 00003323: 18 CLC 00003324: A901 LDA #$01 00003326: 6500 ADC $00 00003328: 8500 STA $00 0000332A: A900 LDA #$00 0000332C: 6501 ADC $01 0000332E: 8501 STA $01 00003330: 8E3003 STX $0330 00003333: C605 DEC $05 00003335: D0C3 BNE $C3 00003337: A900 LDA #$00 00003339: 9D3103 STA $0331,X 0000333C: 60 RTS 0000333D: E8 INX 0000333E: 8A TXA 0000333F: C93F CMP #$3F 00003341: 900A BCC $0A 00003343: AE3003 LDX $0330 00003346: A900 LDA #$00 00003348: 9D3103 STA $0331,X 0000334B: 68 PLA 0000334C: 68 PLA 0000334D: 60 RTS 0000334E: A2FF LDX #$FF 00003350: D002 BNE $02 00003352: A200 LDX #$00 00003354: 8604 STX $04 00003356: A200 LDX #$00 00003358: 8605 STX $05 0000335A: 8606 STX $06 0000335C: 8607 STX $07 0000335E: A501 LDA $01 00003360: 2908 AND #$08 00003362: D001 BNE $01 00003364: E8 INX 00003365: A500 LDA $00 00003367: 9506 STA $06,X 00003369: A501 LDA $01 0000336B: 4C5EF3 JMP $F35E 0000336E: 2907 AND #$07 00003370: 0A ASL A 00003371: 0A ASL A 00003372: AA TAX 00003373: A504 LDA $04 00003375: F027 BEQ $27 00003377: B524 LDA $24,X 00003379: F027 BEQ $27 0000337B: 18 CLC 0000337C: B527 LDA $27,X 0000337E: 8503 STA $03 00003380: A507 LDA $07 00003382: 20E3F3 JSR $F3E3 00003385: 9527 STA $27,X 00003387: B526 LDA $26,X 00003389: 8503 STA $03 0000338B: A506 LDA $06 0000338D: 20E3F3 JSR $F3E3 00003390: 9526 STA $26,X 00003392: B525 LDA $25,X 00003394: 8503 STA $03 00003396: A505 LDA $05 00003398: 20E3F3 JSR $F3E3 0000339B: 9525 STA $25,X 0000339D: 60 RTS 0000339E: B524 LDA $24,X 000033A0: F0D9 BEQ $D9 000033A2: 38 SEC 000033A3: B527 LDA $27,X 000033A5: 8503 STA $03 000033A7: A507 LDA $07 000033A9: 2004F4 JSR $F404 000033AC: 9527 STA $27,X 000033AE: B526 LDA $26,X 000033B0: 8503 STA $03 000033B2: A506 LDA $06 000033B4: 2004F4 JSR $F404 000033B7: 9526 STA $26,X 000033B9: B525 LDA $25,X 000033BB: 8503 STA $03 000033BD: A505 LDA $05 000033BF: 2004F4 JSR $F404 000033C2: 9525 STA $25,X 000033C4: B525 LDA $25,X 000033C6: D008 BNE $08 000033C8: B526 LDA $26,X 000033CA: D004 BNE $04 000033CC: B527 LDA $27,X 000033CE: F006 BEQ $06 000033D0: B020 BCS $20 000033D2: B524 LDA $24,X 000033D4: 49FF EOR #$FF 000033D6: 9524 STA $24,X 000033D8: 38 SEC 000033D9: A900 LDA #$00 000033DB: 8503 STA $03 000033DD: B527 LDA $27,X 000033DF: 2004F4 JSR $F404 000033E2: 9527 STA $27,X 000033E4: B526 LDA $26,X 000033E6: 2004F4 JSR $F404 000033E9: 9526 STA $26,X 000033EB: B525 LDA $25,X 000033ED: 2004F4 JSR $F404 000033F0: 9525 STA $25,X 000033F2: 60 RTS 000033F3: 2026F4 JSR $F426 000033F6: 6501 ADC $01 000033F8: C90A CMP #$0A 000033FA: 9002 BCC $02 000033FC: 6905 ADC #$05 000033FE: 18 CLC 000033FF: 6502 ADC $02 00003401: 8502 STA $02 00003403: A503 LDA $03 00003405: 29F0 AND #$F0 00003407: 6502 ADC $02 00003409: 9004 BCC $04 0000340B: 695F ADC #$5F 0000340D: 38 SEC 0000340E: 60 RTS 0000340F: C9A0 CMP #$A0 00003411: B0F8 BCS $F8 00003413: 60 RTS 00003414: 2026F4 JSR $F426 00003417: E501 SBC $01 00003419: 8501 STA $01 0000341B: B00A BCS $0A 0000341D: 690A ADC #$0A 0000341F: 8501 STA $01 00003421: A502 LDA $02 00003423: 690F ADC #$0F 00003425: 8502 STA $02 00003427: A503 LDA $03 00003429: 29F0 AND #$F0 0000342B: 38 SEC 0000342C: E502 SBC $02 0000342E: B003 BCS $03 00003430: 69A0 ADC #$A0 00003432: 18 CLC 00003433: 0501 ORA $01 00003435: 60 RTS 00003436: 48 PHA 00003437: 290F AND #$0F 00003439: 8501 STA $01 0000343B: 68 PLA 0000343C: 29F0 AND #$F0 0000343E: 8502 STA $02 00003440: A503 LDA $03 00003442: 290F AND #$0F 00003444: 60 RTS 00003445: A900 LDA #$00 00003447: 8504 STA $04 00003449: 18 CLC 0000344A: A500 LDA $00 0000344C: 6910 ADC #$10 0000344E: 29F0 AND #$F0 00003450: 4A LSR A 00003451: 4A LSR A 00003452: A8 TAY 00003453: A500 LDA $00 00003455: 2907 AND #$07 00003457: 0A ASL A 00003458: 0A ASL A 00003459: AA TAX 0000345A: B92000 LDA $0020,Y 0000345D: F051 BEQ $51 0000345F: B524 LDA $24,X 00003461: F026 BEQ $26 00003463: 38 SEC 00003464: B92300 LDA $0023,Y 00003467: 8503 STA $03 00003469: B527 LDA $27,X 0000346B: 2004F4 JSR $F404 0000346E: B92200 LDA $0022,Y 00003471: 8503 STA $03 00003473: B526 LDA $26,X 00003475: 2004F4 JSR $F404 00003478: B92100 LDA $0021,Y 0000347B: 8503 STA $03 0000347D: B525 LDA $25,X 0000347F: 2004F4 JSR $F404 00003482: B030 BCS $30 00003484: B92000 LDA $0020,Y 00003487: D030 BNE $30 00003489: A9FF LDA #$FF 0000348B: 8504 STA $04 0000348D: 38 SEC 0000348E: 98 TYA 0000348F: D01E BNE $1E 00003491: 9010 BCC $10 00003493: B524 LDA $24,X 00003495: 8520 STA $20 00003497: B525 LDA $25,X 00003499: 8521 STA $21 0000349B: B526 LDA $26,X 0000349D: 8522 STA $22 0000349F: B527 LDA $27,X 000034A1: 8523 STA $23 000034A3: A500 LDA $00 000034A5: 2908 AND #$08 000034A7: F006 BEQ $06 000034A9: CA DEX 000034AA: CA DEX 000034AB: CA DEX 000034AC: CA DEX 000034AD: 10AB BPL $AB 000034AF: 60 RTS 000034B0: B524 LDA $24,X 000034B2: F0AF BEQ $AF 000034B4: B92000 LDA $0020,Y 000034B7: D0D0 BNE $D0 000034B9: 18 CLC 000034BA: 90D2 BCC $D2 000034BC: A209 LDX #$09 000034BE: C634 DEC $34 000034C0: 1006 BPL $06 000034C2: A90A LDA #$0A 000034C4: 8534 STA $34 000034C6: A210 LDX #$10 000034C8: B535 LDA $35,X 000034CA: F002 BEQ $02 000034CC: D635 DEC $35,X 000034CE: CA DEX 000034CF: 10F7 BPL $F7 000034D1: 60 RTS 000034D2: AE3003 LDX $0330 000034D5: A501 LDA $01 000034D7: 9D3103 STA $0331,X 000034DA: 202DF3 JSR $F32D 000034DD: A500 LDA $00 000034DF: 9D3103 STA $0331,X 000034E2: 202DF3 JSR $F32D 000034E5: A901 LDA #$01 000034E7: 9D3103 STA $0331,X 000034EA: 202DF3 JSR $F32D 000034ED: 98 TYA 000034EE: 9D3103 STA $0331,X 000034F1: 202DF3 JSR $F32D 000034F4: A900 LDA #$00 000034F6: 9D3103 STA $0331,X 000034F9: 8E3003 STX $0330 000034FC: 60 RTS 000034FD: A518 LDA $18 000034FF: 2902 AND #$02 00003501: 8500 STA $00 00003503: A519 LDA $19 00003505: 2902 AND #$02 00003507: 4500 EOR $00 00003509: 18 CLC 0000350A: F001 BEQ $01 0000350C: 38 SEC 0000350D: 6618 ROR $18 0000350F: 6619 ROR $19 00003511: 661A ROR $1A 00003513: 661B ROR $1B 00003515: 661C ROR $1C 00003517: 661D ROR $1D 00003519: 661E ROR $1E 0000351B: 661F ROR $1F 0000351D: 60 RTS 0000351E: A901 LDA #$01 00003520: 8D1640 STA $4016 00003523: A200 LDX #$00 00003525: A900 LDA #$00 00003527: 8D1640 STA $4016 0000352A: 2022F5 JSR $F522 0000352D: E8 INX 0000352E: 2022F5 JSR $F522 00003531: 60 RTS 00003532: A008 LDY #$08 00003534: 48 PHA 00003535: BD1640 LDA $4016,X 00003538: 8500 STA $00 0000353A: 4A LSR A 0000353B: 0500 ORA $00 0000353D: 4A LSR A 0000353E: 68 PLA 0000353F: 2A ROL A 00003540: 88 DEY 00003541: D0F1 BNE $F1 00003543: 8600 STX $00 00003545: 0600 ASL $00 00003547: A600 LDX $00 00003549: B414 LDY $14,X 0000354B: 8400 STY $00 0000354D: 9514 STA $14,X 0000354F: 29FF AND #$FF 00003551: 1006 BPL $06 00003553: 2400 BIT $00 00003555: 1002 BPL $02 00003557: 297F AND #$7F 00003559: B415 LDY $15,X 0000355B: 9515 STA $15,X 0000355D: 98 TYA 0000355E: 290F AND #$0F 00003560: 3515 AND $15,X 00003562: F006 BEQ $06 00003564: 09F0 ORA #$F0 00003566: 3515 AND $15,X 00003568: 9515 STA $15,X 0000356A: 60 RTS 0000356B: 3F .DB $3F 0000356C: 00 BRK 0000356D: 200F15 JSR $150F 00003570: 2C120F BIT $0F12 00003573: 27 .DB $27 00003574: 02 .DB $02 00003575: 17 .DB $17 00003576: 0F .DB $0F 00003577: 3036 BMI $36 00003579: 060F ASL $0F 0000357B: 302C BMI $2C 0000357D: 240F BIT $0F 0000357F: 02 .DB $02 00003580: 3616 ROL $16,X 00003582: 0F .DB $0F 00003583: 3027 BMI $27 00003585: 240F BIT $0F 00003587: 1630 ASL $30,X 00003589: 37 .DB $37 0000358A: 0F .DB $0F 0000358B: 0627 ASL $27 0000358D: 02 .DB $02 0000358E: 23 .DB $23 0000358F: C048 CPY #$48 00003591: FF .DB $FF 00003592: 23 .DB $23 00003593: C8 INY 00003594: 03 .DB $03 00003595: 55AA EOR $AA,X 00003597: 22 .DB $22 00003598: 23 .DB $23 00003599: CD430F CMP $0F43 0000359C: 202CC7 JSR $C72C 0000359F: 3F .DB $3F 000035A0: 208184 JSR $8481 000035A3: 5051 BVC $51 000035A5: 52 .DB $52 000035A6: 53 .DB $53 000035A7: 208284 JSR $8482 000035AA: 54 .DB $54 000035AB: 5556 EOR $56,X 000035AD: 57 .DB $57 000035AE: 208384 JSR $8483 000035B1: 58 CLI 000035B2: 595A5B EOR $5B5A,Y 000035B5: 202AC7 JSR $C72A 000035B8: 3F .DB $3F 000035B9: 20AD46 JSR $46AD 000035BC: 3020 BMI $20 000035BE: CA DEX 000035BF: 43 .DB $43 000035C0: 3020 BMI $20 000035C2: D2 .DB $D2 000035C3: C2 .DB $C2 000035C4: 3F .DB $3F 000035C5: 2102 AND ($02,X) 000035C7: 4E3021 LSR $2130 000035CA: 100C BPL $0C 000035CC: 3E3E45 ROL $453E,X 000035CF: 3D3D3D AND $3D3D,X 000035D2: 3C .DB $3C 000035D3: 3C .DB $3C 000035D4: 3C .DB $3C 000035D5: 3B .DB $3B 000035D6: 3B .DB $3B 000035D7: 3B .DB $3B 000035D8: 212D AND ($2D,X) 000035DA: 0F .DB $0F 000035DB: 3F .DB $3F 000035DC: 2424 BIT $24 000035DE: 37 .DB $37 000035DF: 37 .DB $37 000035E0: 37 .DB $37 000035E1: 3636 ROL $36,X 000035E3: 3635 ROL $35,X 000035E5: 3535 AND $35,X 000035E7: 4934 EOR #$34 000035E9: 34 .DB $34 000035EA: 2159 AND ($59,X) 000035EC: 013F ORA ($3F,X) 000035EE: 216D AND ($6D,X) 000035F0: 1140 ORA ($40),Y 000035F2: 38 SEC 000035F3: 38 SEC 000035F4: 393939 AND $3939,Y 000035F7: 3A .DB $3A 000035F8: 3A .DB $3A 000035F9: 3A .DB $3A 000035FA: 3B .DB $3B 000035FB: 3B .DB $3B 000035FC: 3B .DB $3B 000035FD: 43 .DB $43 000035FE: 3C .DB $3C 000035FF: 3C .DB $3C 00003600: 3D3D21 AND $213D,X 00003603: 841A STY $1A 00003605: 3D3D3D AND $3D3D,X 00003608: 3E3E3E ROL $3E3E,X 0000360B: 3030 BMI $30 0000360D: 3031 BMI $31 0000360F: 3131 AND ($31),Y 00003611: 32 .DB $32 00003612: 32 .DB $32 00003613: 32 .DB $32 00003614: 33 .DB $33 00003615: 33 .DB $33 00003616: 33 .DB $33 00003617: 34 .DB $34 00003618: 4934 EOR #$34 0000361A: 3535 AND $35,X 0000361C: 3536 AND $36,X 0000361E: 3621 ROL $21,X 00003620: A406 LDY $06 00003622: 3636 ROL $36,X 00003624: 4B .DB $4B 00003625: 37 .DB $37 00003626: 37 .DB $37 00003627: 37 .DB $37 00003628: 21C6 AND ($C6,X) 0000362A: 013F ORA ($3F,X) 0000362C: 21E2 AND ($E2,X) 0000362E: 17 .DB $17 0000362F: 3030 BMI $30 00003631: 3E3E45 ROL $453E,X 00003634: 3D3D3D AND $3D3D,X 00003637: 3C .DB $3C 00003638: 43 .DB $43 00003639: 3C .DB $3C 0000363A: 3B .DB $3B 0000363B: 3B .DB $3B 0000363C: 3B .DB $3B 0000363D: 3A .DB $3A 0000363E: 3A .DB $3A 0000363F: 3A .DB $3A 00003640: 393939 AND $3939,Y 00003643: 38 SEC 00003644: 40 RTI 00003645: 38 SEC 00003646: 21AB AND ($AB,X) 00003648: C2 .DB $C2 00003649: 3F .DB $3F 0000364A: 22 .DB $22 0000364B: 04 .DB $04 0000364C: 18 CLC 0000364D: 37 .DB $37 0000364E: 37 .DB $37 0000364F: 37 .DB $37 00003650: 3636 ROL $36,X 00003652: 364A ROL $4A,X 00003654: 3535 AND $35,X 00003656: 34 .DB $34 00003657: 34 .DB $34 00003658: 34 .DB $34 00003659: 48 PHA 0000365A: 33 .DB $33 0000365B: 33 .DB $33 0000365C: 32 .DB $32 0000365D: 32 .DB $32 0000365E: 32 .DB $32 0000365F: 3131 AND ($31),Y 00003661: 3130 AND ($30),Y 00003663: 3030 BMI $30 00003665: 22 .DB $22 00003666: 30C2 BMI $C2 00003668: 3F .DB $3F 00003669: 22 .DB $22 0000366A: 39013F AND $3F01,Y 0000366D: 22 .DB $22 0000366E: 4A LSR A 0000366F: 013F ORA ($3F,X) 00003671: 22 .DB $22 00003672: 590540 EOR $4005,Y 00003675: 38 SEC 00003676: 38 SEC 00003677: 393922 AND $2239,Y 0000367A: 64 .DB $64 0000367B: 1A .DB $1A 0000367C: 393939 AND $3939,Y 0000367F: 3A .DB $3A 00003680: 3A .DB $3A 00003681: 3A .DB $3A 00003682: 42 .DB $42 00003683: 3B .DB $3B 00003684: 3B .DB $3B 00003685: 3C .DB $3C 00003686: 3C .DB $3C 00003687: 3C .DB $3C 00003688: 44 .DB $44 00003689: 3D3D3E AND $3E3D,X 0000368C: 3E3E30 ROL $303E,X 0000368F: 3030 BMI $30 00003691: 3131 AND ($31),Y 00003693: 3132 AND ($32),Y 00003695: 32 .DB $32 00003696: 22 .DB $22 00003697: 8412 STY $12 00003699: 32 .DB $32 0000369A: 32 .DB $32 0000369B: 47 .DB $47 0000369C: 33 .DB $33 0000369D: 33 .DB $33 0000369E: 33 .DB $33 0000369F: 34 .DB $34 000036A0: 34 .DB $34 000036A1: 34 .DB $34 000036A2: 354A AND $4A,X 000036A4: 3536 AND $36,X 000036A6: 3636 ROL $36,X 000036A8: 37 .DB $37 000036A9: 37 .DB $37 000036AA: 37 .DB $37 000036AB: 22 .DB $22 000036AC: A601 LDX $01 000036AE: 3F .DB $3F 000036AF: 22 .DB $22 000036B0: AEC23F LDX $3FC2 000036B3: 22 .DB $22 000036B4: C2 .DB $C2 000036B5: 0B .DB $0B 000036B6: 3B .DB $3B 000036B7: 3B .DB $3B 000036B8: 3A .DB $3A 000036B9: 3A .DB $3A 000036BA: 4139 EOR ($39,X) 000036BC: 393938 AND $3839,Y 000036BF: 38 SEC 000036C0: 38 SEC 000036C1: 22 .DB $22 000036C2: E2 .DB $E2 000036C3: 1A .DB $1A 000036C4: 34 .DB $34 000036C5: 34 .DB $34 000036C6: 33 .DB $33 000036C7: 33 .DB $33 000036C8: 33 .DB $33 000036C9: 32 .DB $32 000036CA: 32 .DB $32 000036CB: 32 .DB $32 000036CC: 3131 AND ($31),Y 000036CE: 4630 LSR $30 000036D0: 3030 BMI $30 000036D2: 3E3E3E ROL $3E3E,X 000036D5: 3D3D3D AND $3D3D,X 000036D8: 3C .DB $3C 000036D9: 3C .DB $3C 000036DA: 3C .DB $3C 000036DB: 3B .DB $3B 000036DC: 3B .DB $3B 000036DD: 3B .DB $3B 000036DE: 23 .DB $23 000036DF: 0C .DB $0C 000036E0: 103F BPL $3F 000036E2: 2424 BIT $24 000036E4: 2437 BIT $37 000036E6: 37 .DB $37 000036E7: 37 .DB $37 000036E8: 3636 ROL $36,X 000036EA: 3635 ROL $35,X 000036EC: 3535 AND $35,X 000036EE: 4934 EOR #$34 000036F0: 34 .DB $34 000036F1: 23 .DB $23 000036F2: 39013F AND $3F01,Y 000036F5: 23 .DB $23 000036F6: 4C133F JMP $3F13 000036F9: 2424 BIT $24 000036FB: 2438 BIT $38 000036FD: 38 SEC 000036FE: 38 SEC 000036FF: 393939 AND $3939,Y 00003702: 3A .DB $3A 00003703: 3A .DB $3A 00003704: 3A .DB $3A 00003705: 42 .DB $42 00003706: 3B .DB $3B 00003707: 3B .DB $3B 00003708: 3C .DB $3C 00003709: 3C .DB $3C 0000370A: 3C .DB $3C 0000370B: 23 .DB $23 0000370C: 614F ADC ($4F,X) 0000370E: 3023 BMI $23 00003710: 700F BVS $0F 00003712: 3131 AND ($31),Y 00003714: 3132 AND ($32),Y 00003716: 32 .DB $32 00003717: 32 .DB $32 00003718: 33 .DB $33 00003719: 33 .DB $33 0000371A: 33 .DB $33 0000371B: 34 .DB $34 0000371C: 34 .DB $34 0000371D: 34 .DB $34 0000371E: 3535 AND $35,X 00003720: 3523 AND $23,X 00003722: 2482 BIT $82 00003724: 4C4D23 JMP $234D 00003727: 2582 AND $82 00003729: 4E4F00 LSR $004F 0000372C: 3F .DB $3F 0000372D: 00 BRK 0000372E: 08 PHP 0000372F: 0F .DB $0F 00003730: 2C2702 BIT $0227 00003733: 0F .DB $0F 00003734: 3012 BMI $12 00003736: 243F BIT $3F 00003738: 1D0306 ORA $0603,X 0000373B: 3012 BMI $12 0000373D: 23 .DB $23 0000373E: C048 CPY #$48 00003740: FF .DB $FF 00003741: 23 .DB $23 00003742: C907 CMP #$07 00003744: 5500 EOR $00,X 00003746: AA TAX 00003747: AA TAX 00003748: 0F .DB $0F 00003749: 0F .DB $0F 0000374A: 0F .DB $0F 0000374B: 23 .DB $23 0000374C: E2 .DB $E2 0000374D: 0504 ORA $04 0000374F: 00 BRK 00003750: 00 BRK 00003751: 00 BRK 00003752: 0120 ORA ($20,X) 00003754: C502 CMP $02 00003756: 7072 BVS $72 00003758: 20E502 JSR $02E5 0000375B: 7173 ADC ($73),Y 0000375D: 20CA42 JSR $42CA 00003760: 62 .DB $62 00003761: 2105 AND ($05,X) 00003763: 5662 LSR $62,X 00003765: 21A4 AND ($A4,X) 00003767: 58 CLI 00003768: 62 .DB $62 00003769: 22 .DB $22 0000376A: 43 .DB $43 0000376B: 5A .DB $5A 0000376C: 62 .DB $62 0000376D: 22 .DB $22 0000376E: E2 .DB $E2 0000376F: 5C .DB $5C 00003770: 62 .DB $62 00003771: 23 .DB $23 00003772: 615E ADC ($5E,X) 00003774: 62 .DB $62 00003775: 2108 AND ($08,X) 00003777: 0163 ORA ($63,X) 00003779: 2117 AND ($17,X) 0000377B: 0163 ORA ($63,X) 0000377D: 21A8 AND ($A8,X) 0000377F: 0163 ORA ($63,X) 00003781: 21B7 AND ($B7,X) 00003783: 0163 ORA ($63,X) 00003785: 22 .DB $22 00003786: 48 PHA 00003787: 0163 ORA ($63,X) 00003789: 22 .DB $22 0000378A: 57 .DB $57 0000378B: 0163 ORA ($63,X) 0000378D: 22 .DB $22 0000378E: E8 INX 0000378F: 0163 ORA ($63,X) 00003791: 22 .DB $22 00003792: F7 .DB $F7 00003793: 0163 ORA ($63,X) 00003795: 2125 AND ($25,X) 00003797: C43F CPY $3F 00003799: 2129 AND ($29,X) 0000379B: C43F CPY $3F 0000379D: 2136 AND ($36,X) 0000379F: C43F CPY $3F 000037A1: 213A AND ($3A,X) 000037A3: C43F CPY $3F 000037A5: 21C4 AND ($C4,X) 000037A7: C43F CPY $3F 000037A9: 21D0 AND ($D0,X) 000037AB: C43F CPY $3F 000037AD: 21DB AND ($DB,X) 000037AF: C43F CPY $3F 000037B1: 22 .DB $22 000037B2: 63 .DB $63 000037B3: C43F CPY $3F 000037B5: 22 .DB $22 000037B6: 6CC43F JMP ($3FC4) 000037B9: 22 .DB $22 000037BA: 73 .DB $73 000037BB: C43F CPY $3F 000037BD: 22 .DB $22 000037BE: 7C .DB $7C 000037BF: C43F CPY $3F 000037C1: 23 .DB $23 000037C2: 02 .DB $02 000037C3: C3 .DB $C3 000037C4: 3F .DB $3F 000037C5: 23 .DB $23 000037C6: 0F .DB $0F 000037C7: C3 .DB $C3 000037C8: 3F .DB $3F 000037C9: 23 .DB $23 000037CA: 1DC33F ORA $3FC3,X 000037CD: 22 .DB $22 000037CE: 0A ASL A 000037CF: 82 .DB $82 000037D0: 6E6F22 ROR $226F 000037D3: 18 CLC 000037D4: 82 .DB $82 000037D5: 7071 BVS $71 000037D7: 22 .DB $22 000037D8: 198272 ORA $7282,Y 000037DB: 73 .DB $73 000037DC: 00 BRK 000037DD: 3F .DB $3F 000037DE: 00 BRK 000037DF: 08 PHP 000037E0: 0F .DB $0F 000037E1: 152C ORA $2C,X 000037E3: 060F ASL $0F 000037E5: 3027 BMI $27 000037E7: 163F ASL $3F,X 000037E9: 1D0312 ORA $1203,X 000037EC: 37 .DB $37 000037ED: 1523 ORA $23,X 000037EF: C048 CPY #$48 000037F1: FF .DB $FF 000037F2: 23 .DB $23 000037F3: C902 CMP #$02 000037F5: AA TAX 000037F6: 22 .DB $22 000037F7: 23 .DB $23 000037F8: CD430F CMP $0F43 000037FB: 23 .DB $23 000037FC: D182 CMP ($82),Y 000037FE: 8448 STY $48 00003800: 23 .DB $23 00003801: D7 .DB $D7 00003802: 0503 ORA $03 00003804: 0C .DB $0C 00003805: 88 DEY 00003806: 00 BRK 00003807: 88 DEY 00003808: 23 .DB $23 00003809: E103 SBC ($03,X) 0000380B: 88 DEY 0000380C: 00 BRK 0000380D: 88 DEY 0000380E: 23 .DB $23 0000380F: E903 SBC #$03 00003811: 88 DEY 00003812: 00 BRK 00003813: 88 DEY 00003814: 23 .DB $23 00003815: D3 .DB $D3 00003816: 82 .DB $82 00003817: 8448 STY $48 00003819: 202CC7 JSR $C72C 0000381C: 3F .DB $3F 0000381D: 202AC7 JSR $C72A 00003820: 3F .DB $3F 00003821: 20CA43 JSR $43CA 00003824: 3020 BMI $20 00003826: AD4630 LDA $3046 00003829: 20D2C2 JSR $C2D2 0000382C: 3F .DB $3F 0000382D: 2102 AND ($02,X) 0000382F: 5530 EOR $30,X 00003831: 2106 AND ($06,X) 00003833: 02 .DB $02 00003834: 5E5F21 LSR $215F,X 00003837: 2602 ROL $02 00003839: 5C .DB $5C 0000383A: 5D210E EOR $0E21,X 0000383D: 02 .DB $02 0000383E: 5E5F21 LSR $215F,X 00003841: 2E025C ROL $5C02 00003844: 5D2361 EOR $6123,X 00003847: 5E3023 LSR $2330,X 0000384A: 4602 LSR $02 0000384C: 5C .DB $5C 0000384D: 5D2366 EOR $6623,X 00003850: 02 .DB $02 00003851: 60 RTS 00003852: 6123 ADC ($23,X) 00003854: 4E025C LSR $5C02 00003857: 5D236E EOR $6E23,X 0000385A: 02 .DB $02 0000385B: 60 RTS 0000385C: 6121 ADC ($21,X) 0000385E: 46D0 LSR $D0 00003860: 74 .DB $74 00003861: 2147 AND ($47,X) 00003863: D075 BNE $75 00003865: 215C AND ($5C,X) 00003867: 42 .DB $42 00003868: 3021 BMI $21 0000386A: 794230 ADC $3042,Y 0000386D: 2196 AND ($96,X) 0000386F: 42 .DB $42 00003870: 3021 BMI $21 00003872: B2 .DB $B2 00003873: 43 .DB $43 00003874: 3021 BMI $21 00003876: C2 .DB $C2 00003877: 43 .DB $43 00003878: 3021 BMI $21 0000387A: C944 CMP #$44 0000387C: 3021 BMI $21 0000387E: F94530 SBC $3045,Y 00003881: 22 .DB $22 00003882: 33 .DB $33 00003883: 42 .DB $42 00003884: 3022 BMI $22 00003886: 5642 LSR $42,X 00003888: 3022 BMI $22 0000388A: 794230 ADC $3042,Y 0000388D: 22 .DB $22 0000388E: 9C .DB $9C 0000388F: 42 .DB $42 00003890: 3022 BMI $22 00003892: 82 .DB $82 00003893: 43 .DB $43 00003894: 3022 BMI $22 00003896: CA DEX 00003897: 43 .DB $43 00003898: 3022 BMI $22 0000389A: DB .DB $DB 0000389B: 43 .DB $43 0000389C: 3022 BMI $22 0000389E: F8 SED 0000389F: 42 .DB $42 000038A0: 3023 BMI $23 000038A2: 1542 ORA $42,X 000038A4: 3023 BMI $23 000038A6: 22 .DB $22 000038A7: 43 .DB $43 000038A8: 3023 BMI $23 000038AA: 3143 AND ($43),Y 000038AC: 3021 BMI $21 000038AE: 36C3 ROL $C3,X 000038B0: 3F .DB $3F 000038B1: 217C AND ($7C,X) 000038B3: C43F CPY $3F 000038B5: 21D3 AND ($D3,X) 000038B7: C3 .DB $C3 000038B8: 3F .DB $3F 000038B9: 21E4 AND ($E4,X) 000038BB: C53F CMP $3F 000038BD: 21EA AND ($EA,X) 000038BF: C7 .DB $C7 000038C0: 3F .DB $3F 000038C1: 21EC AND ($EC,X) 000038C3: C7 .DB $C7 000038C4: 3F .DB $3F 000038C5: 22 .DB $22 000038C6: 19C33F ORA $3FC3,Y 000038C9: 22 .DB $22 000038CA: A3 .DB $A3 000038CB: C43F CPY $3F 000038CD: 22 .DB $22 000038CE: BC013F LDY $3F01,X 000038D1: 2182 AND ($82,X) 000038D3: 82 .DB $82 000038D4: 7071 BVS $71 000038D6: 2183 AND ($83,X) 000038D8: 82 .DB $82 000038D9: 72 .DB $72 000038DA: 73 .DB $73 000038DB: 211D AND ($1D,X) 000038DD: 82 .DB $82 000038DE: 6E6F21 ROR $216F 000038E1: 4ED074 LSR $74D0 000038E4: 214F AND ($4F,X) 000038E6: D075 BNE $75 000038E8: 00 BRK 000038E9: 3F .DB $3F 000038EA: 00 BRK 000038EB: 0D0F2C ORA $2C0F 000038EE: 38 SEC 000038EF: 12 .DB $12 000038F0: 0F .DB $0F 000038F1: 27 .DB $27 000038F2: 27 .DB $27 000038F3: 27 .DB $27 000038F4: 0F .DB $0F 000038F5: 3030 BMI $30 000038F7: 300F BMI $0F 000038F9: 3F .DB $3F 000038FA: 1101 ORA ($01),Y 000038FC: 2523 AND $23 000038FE: E050 CPX #$50 00003900: 5523 EOR $23,X 00003902: F048 BEQ $48 00003904: AA TAX 00003905: 2083C5 JSR $C583 00003908: 62 .DB $62 00003909: 2084C5 JSR $C584 0000390C: 62 .DB $62 0000390D: 208501 JSR $0185 00003910: 62 .DB $62 00003911: 2105 AND ($05,X) 00003913: 0162 ORA ($62,X) 00003915: 20A6C3 JSR $C3A6 00003918: 62 .DB $62 00003919: 2088C5 JSR $C588 0000391C: 62 .DB $62 0000391D: 208901 JSR $0189 00003920: 62 .DB $62 00003921: 2109 AND ($09,X) 00003923: 0162 ORA ($62,X) 00003925: 208AC5 JSR $C58A 00003928: 62 .DB $62 00003929: 208CC5 JSR $C58C 0000392C: 62 .DB $62 0000392D: 20ADC2 JSR $C2AD 00003930: 62 .DB $62 00003931: 20CEC2 JSR $C2CE 00003934: 62 .DB $62 00003935: 208FC5 JSR $C58F 00003938: 62 .DB $62 00003939: 2091C5 JSR $C591 0000393C: 62 .DB $62 0000393D: 20B2C2 JSR $C2B2 00003940: 62 .DB $62 00003941: 20B301 JSR $01B3 00003944: 62 .DB $62 00003945: 209401 JSR $0194 00003948: 62 .DB $62 00003949: 20F301 JSR $01F3 0000394C: 62 .DB $62 0000394D: 2114 AND ($14,X) 0000394F: 0162 ORA ($62,X) 00003951: 2096C5 JSR $C596 00003954: 62 .DB $62 00003955: 209742 JSR $4297 00003958: 62 .DB $62 00003959: 20D742 JSR $42D7 0000395C: 62 .DB $62 0000395D: 2117 AND ($17,X) 0000395F: 42 .DB $42 00003960: 62 .DB $62 00003961: 209AC3 JSR $C39A 00003964: 62 .DB $62 00003965: 20DBC3 JSR $C3DB 00003968: 62 .DB $62 00003969: 209CC3 JSR $C39C 0000396C: 62 .DB $62 0000396D: 2147 AND ($47,X) 0000396F: C562 CMP $62 00003971: 2168 AND ($68,X) 00003973: C2 .DB $C2 00003974: 62 .DB $62 00003975: 2169 AND ($69,X) 00003977: 0162 ORA ($62,X) 00003979: 214A AND ($4A,X) 0000397B: 0162 ORA ($62,X) 0000397D: 21A9 AND ($A9,X) 0000397F: 0162 ORA ($62,X) 00003981: 21CA AND ($CA,X) 00003983: 0162 ORA ($62,X) 00003985: 214C AND ($4C,X) 00003987: C562 CMP $62 00003989: 214D AND ($4D,X) 0000398B: 0162 ORA ($62,X) 0000398D: 21CD AND ($CD,X) 0000398F: 0162 ORA ($62,X) 00003991: 214E AND ($4E,X) 00003993: C562 CMP $62 00003995: 2150 AND ($50,X) 00003997: C562 CMP $62 00003999: 2171 AND ($71,X) 0000399B: C2 .DB $C2 0000399C: 62 .DB $62 0000399D: 2192 AND ($92,X) 0000399F: C2 .DB $C2 000039A0: 62 .DB $62 000039A1: 2153 AND ($53,X) 000039A3: C562 CMP $62 000039A5: 2155 AND ($55,X) 000039A7: C562 CMP $62 000039A9: 2156 AND ($56,X) 000039AB: 43 .DB $43 000039AC: 62 .DB $62 000039AD: 21D6 AND ($D6,X) 000039AF: 43 .DB $43 000039B0: 62 .DB $62 000039B1: 2198 AND ($98,X) 000039B3: C2 .DB $C2 000039B4: 62 .DB $62 000039B5: 2197 AND ($97,X) 000039B7: 0162 ORA ($62,X) 000039B9: 22 .DB $22 000039BA: 090F ORA #$0F 000039BC: 0124 ORA ($24,X) 000039BE: 19150A ORA $0A15,Y 000039C1: 22 .DB $22 000039C2: 0E1B24 ASL $241B 000039C5: 100A BPL $0A 000039C7: 160E ASL $0E,X 000039C9: 240A BIT $0A 000039CB: 22 .DB $22 000039CC: 490F EOR #$0F 000039CE: 0124 ORA ($24,X) 000039D0: 19150A ORA $0A15,Y 000039D3: 22 .DB $22 000039D4: 0E1B24 ASL $241B 000039D7: 100A BPL $0A 000039D9: 160E ASL $0E,X 000039DB: 240B BIT $0B 000039DD: 22 .DB $22 000039DE: 89 .DB $89 000039DF: 0F .DB $0F 000039E0: 02 .DB $02 000039E1: 2419 BIT $19 000039E3: 150A ORA $0A,X 000039E5: 22 .DB $22 000039E6: 0E1B24 ASL $241B 000039E9: 100A BPL $0A 000039EB: 160E ASL $0E,X 000039ED: 240A BIT $0A 000039EF: 22 .DB $22 000039F0: C90F CMP #$0F 000039F2: 02 .DB $02 000039F3: 2419 BIT $19 000039F5: 150A ORA $0A,X 000039F7: 22 .DB $22 000039F8: 0E1B24 ASL $241B 000039FB: 100A BPL $0A 000039FD: 160E ASL $0E,X 000039FF: 240B BIT $0B 00003A01: 23 .DB $23 00003A02: 0516 ORA $16 00003A04: D3 .DB $D3 00003A05: 0109 ORA ($09,X) 00003A07: 08 PHP 00003A08: 0124 ORA ($24,X) 00003A0A: 17 .DB $17 00003A0B: 12 .DB $12 00003A0C: 17 .DB $17 00003A0D: 1D0E17 ORA $170E,X 00003A10: 0D1824 ORA $2418 00003A13: 0C .DB $0C 00003A14: 18 CLC 00003A15: 6515 ADC $15 00003A17: 1D0D64 ORA $640D,X 00003A1A: 23 .DB $23 00003A1B: 4B .DB $4B 00003A1C: 0D160A ORA $0A16 00003A1F: 0D0E24 ORA $240E 00003A22: 12 .DB $12 00003A23: 17 .DB $17 00003A24: 2413 BIT $13 00003A26: 0A ASL A 00003A27: 190A17 ORA $170A,Y 00003A2A: 00 BRK 00003A2B: 206301 JSR $0163 00003A2E: FF .DB $FF 00003A2F: 206D03 JSR $036D 00003A32: D0D1 BNE $D1 00003A34: D2 .DB $D2 00003A35: 207602 JSR $0276 00003A38: FEFF20 INC $20FF,X 00003A3B: 940A STY $0A,X 00003A3D: 2516 AND $16 00003A3F: 2A ROL A 00003A40: 2627 ROL $27 00003A42: 28 PLP 00003A43: 292A AND #$2A 00003A45: 152D ORA $2D,X 00003A47: 20B40A JSR $0AB4 00003A4A: 2B .DB $2B 00003A4B: 242C BIT $2C 00003A4D: 2424 BIT $24 00003A4F: 2424 BIT $24 00003A51: 2C242F BIT $2F24 00003A54: 00 BRK 00003A55: FF .DB $FF 00003A56: FF .DB $FF 00003A57: FF .DB $FF 00003A58: A9C0 LDA #$C0 00003A5A: 8D1740 STA $4017 00003A5D: 20F2FB JSR $FBF2 00003A60: A200 LDX #$00 00003A62: 86FF STX $FF 00003A64: 86FE STX $FE 00003A66: 86FD STX $FD 00003A68: ADF006 LDA $06F0 00003A6B: C990 CMP #$90 00003A6D: B005 BCS $05 00003A6F: A200 LDX #$00 00003A71: 8EF106 STX $06F1 00003A74: C9D8 CMP #$D8 00003A76: 9003 BCC $03 00003A78: EEF106 INC $06F1 00003A7B: A8 TAY 00003A7C: 4A LSR A 00003A7D: 4A LSR A 00003A7E: 4A LSR A 00003A7F: 4A LSR A 00003A80: 4A LSR A 00003A81: 4A LSR A 00003A82: 8500 STA $00 00003A84: 98 TYA 00003A85: AEF106 LDX $06F1 00003A88: D005 BNE $05 00003A8A: 38 SEC 00003A8B: 6500 ADC $00 00003A8D: D003 BNE $03 00003A8F: 18 CLC 00003A90: E500 SBC $00 00003A92: 8DF006 STA $06F0 00003A95: 60 RTS 00003A96: A007 LDY #$07 00003A98: 0A ASL A 00003A99: B003 BCS $03 00003A9B: 88 DEY 00003A9C: D0FA BNE $FA 00003A9E: 60 RTS 00003A9F: 85F1 STA $F1 00003AA1: 84F2 STY $F2 00003AA3: A07F LDY #$7F 00003AA5: 8E0040 STX $4000 00003AA8: 8C0140 STY $4001 00003AAB: 60 RTS 00003AAC: 2095FA JSR $FA95 00003AAF: A200 LDX #$00 00003AB1: A8 TAY 00003AB2: B901FB LDA $FB01,Y 00003AB5: F00B BEQ $0B 00003AB7: 9D0240 STA $4002,X 00003ABA: B900FB LDA $FB00,Y 00003ABD: 0908 ORA #$08 00003ABF: 9D0340 STA $4003,X 00003AC2: 60 RTS 00003AC3: 8C0540 STY $4005 00003AC6: A204 LDX #$04 00003AC8: D0E7 BNE $E7 00003ACA: 8D0840 STA $4008 00003ACD: 8A TXA 00003ACE: 293E AND #$3E 00003AD0: A208 LDX #$08 00003AD2: D0DD BNE $DD 00003AD4: AA TAX 00003AD5: 6A ROR A 00003AD6: 8A TXA 00003AD7: 2A ROL A 00003AD8: 2A ROL A 00003AD9: 2A ROL A 00003ADA: 2907 AND #$07 00003ADC: 18 CLC 00003ADD: 6D8D06 ADC $068D 00003AE0: A8 TAY 00003AE1: B94CFB LDA $FB4C,Y 00003AE4: 60 RTS 00003AE5: 98 TYA 00003AE6: 4A LSR A 00003AE7: 4A LSR A 00003AE8: 4A LSR A 00003AE9: 8500 STA $00 00003AEB: 98 TYA 00003AEC: 38 SEC 00003AED: E500 SBC $00 00003AEF: 60 RTS 00003AF0: A990 LDA #$90 00003AF2: 8D0040 STA $4000 00003AF5: 60 RTS 00003AF6: 8D8D8C STA $8C8D 00003AF9: 8C8B8C STY $8C8B 00003AFC: 83 .DB $83 00003AFD: 83 .DB $83 00003AFE: 8F .DB $8F 00003AFF: 8F .DB $8F 00003B00: 8F .DB $8F 00003B01: 8F .DB $8F 00003B02: 8D8584 STA $8485 00003B05: 857F STA $7F 00003B07: 8585 STA $85 00003B09: 857F STA $7F 00003B0B: 8D8D8D STA $8D8D 00003B0E: 8D8D07 STA $078D 00003B11: F000 BEQ $00 00003B13: 00 BRK 00003B14: 00 BRK 00003B15: 6900 ADC #$00 00003B17: 53 .DB $53 00003B18: 00 BRK 00003B19: 4600 LSR $00 00003B1B: D4 .DB $D4 00003B1C: 00 BRK 00003B1D: BD00A8 LDA $A800,X 00003B20: 00 BRK 00003B21: 9F .DB $9F 00003B22: 00 BRK 00003B23: 8D007E STA $7E00 00003B26: 01AB ORA ($AB,X) 00003B28: 017C ORA ($7C,X) 00003B2A: 0152 ORA ($52,X) 00003B2C: 013F ORA ($3F,X) 00003B2E: 011C ORA ($1C,X) 00003B30: 00 BRK 00003B31: FD00EE SBC $EE00,X 00003B34: 00 BRK 00003B35: E103 SBC ($03,X) 00003B37: 57 .DB $57 00003B38: 02 .DB $02 00003B39: F902CF SBC $CF02,Y 00003B3C: 02 .DB $02 00003B3D: A602 LDX $02 00003B3F: 80 .DB $80 00003B40: 02 .DB $02 00003B41: 3A .DB $3A 00003B42: 02 .DB $02 00003B43: 1A .DB $1A 00003B44: 01FC ORA ($FC,X) 00003B46: 01DF ORA ($DF,X) 00003B48: 01C4 ORA ($C4,X) 00003B4A: 06AE ASL $AE 00003B4C: 059E ORA $9E 00003B4E: 054D ORA $4D 00003B50: 0501 ORA $01 00003B52: 04 .DB $04 00003B53: 7504 ADC $04,X 00003B55: 3503 AND $03,X 00003B57: F8 SED 00003B58: 03 .DB $03 00003B59: BF .DB $BF 00003B5A: 03 .DB $03 00003B5B: 89 .DB $89 00003B5C: 050A ORA $0A 00003B5E: 14 .DB $14 00003B5F: 28 PLP 00003B60: 501E BVC $1E 00003B62: 3C .DB $3C 00003B63: 0B .DB $0B 00003B64: 060C ASL $0C 00003B66: 18 CLC 00003B67: 3060 BMI $60 00003B69: 2448 BIT $48 00003B6B: 07 .DB $07 00003B6C: 0D1A34 ORA $341A 00003B6F: 78 SEI 00003B70: 27 .DB $27 00003B71: 4E0A08 LSR $080A 00003B74: 050A ORA $0A 00003B76: 0950 ORA #$50 00003B78: 40 RTI 00003B79: 464A LSR $4A 00003B7B: 5056 BVC $56 00003B7D: 5C .DB $5C 00003B7E: 64 .DB $64 00003B7F: 6C747C JMP ($7C74) 00003B82: 88 DEY 00003B83: 909A BCC $9A 00003B85: 85F0 STA $F0 00003B87: 85FB STA $FB 00003B89: A008 LDY #$08 00003B8B: 4C67FD JMP $FD67 00003B8E: 84F0 STY $F0 00003B90: A971 LDA #$71 00003B92: A000 LDY #$00 00003B94: A29F LDX #$9F 00003B96: 208FFA JSR $FA8F 00003B99: A6F2 LDX $F2 00003B9B: BC67FB LDY $FB67,X 00003B9E: C6F1 DEC $F1 00003BA0: A5F1 LDA $F1 00003BA2: F0E1 BEQ $E1 00003BA4: 2907 AND #$07 00003BA6: D008 BNE $08 00003BA8: 98 TYA 00003BA9: 4A LSR A 00003BAA: 7D67FB ADC $FB67,X 00003BAD: A8 TAY 00003BAE: D007 BNE $07 00003BB0: 2903 AND #$03 00003BB2: D00E BNE $0E 00003BB4: E6F2 INC $F2 00003BB6: 18 CLC 00003BB7: 8C0240 STY $4002 00003BBA: A028 LDY #$28 00003BBC: 9001 BCC $01 00003BBE: C8 INY 00003BBF: 8C0340 STY $4003 00003BC2: A900 LDA #$00 00003BC4: 4C00FE JMP $FE00 00003BC7: 84F0 STY $F0 00003BC9: A954 LDA #$54 00003BCB: A06A LDY #$6A 00003BCD: A29C LDX #$9C 00003BCF: 208FFA JSR $FA8F 00003BD2: A4F2 LDY $F2 00003BD4: A5F1 LDA $F1 00003BD6: 2903 AND #$03 00003BD8: F00A BEQ $0A 00003BDA: C903 CMP #$03 00003BDC: D00B BNE $0B 00003BDE: 20D5FA JSR $FAD5 00003BE1: 85F2 STA $F2 00003BE3: A8 TAY 00003BE4: 98 TYA 00003BE5: 4A LSR A 00003BE6: 65F2 ADC $F2 00003BE8: A8 TAY 00003BE9: 98 TYA 00003BEA: 2A ROL A 00003BEB: 2A ROL A 00003BEC: 2A ROL A 00003BED: 8D0240 STA $4002 00003BF0: 2A ROL A 00003BF1: 8D0340 STA $4003 00003BF4: A5F1 LDA $F1 00003BF6: C918 CMP #$18 00003BF8: B05A BCS $5A 00003BFA: 4A LSR A 00003BFB: 0990 ORA #$90 00003BFD: 8D0040 STA $4000 00003C00: D052 BNE $52 00003C02: A4FF LDY $FF 00003C04: A5F0 LDA $F0 00003C06: 4A LSR A 00003C07: B090 BCS $90 00003C09: 46FF LSR $FF 00003C0B: B081 BCS $81 00003C0D: A6FA LDX $FA 00003C0F: D04A BNE $4A 00003C11: 4A LSR A 00003C12: B0BE BCS $BE 00003C14: 46FF LSR $FF 00003C16: B0AF BCS $AF 00003C18: 4A LSR A 00003C19: B01D BCS $1D 00003C1B: 46FF LSR $FF 00003C1D: B00A BCS $0A 00003C1F: 4A LSR A 00003C20: B050 BCS $50 00003C22: 46FF LSR $FF 00003C24: B03B BCS $3B 00003C26: 4C90FC JMP $FC90 00003C29: 84F0 STY $F0 00003C2B: A922 LDA #$22 00003C2D: 85F1 STA $F1 00003C2F: A00B LDY #$0B 00003C31: 84F2 STY $F2 00003C33: A920 LDA #$20 00003C35: 209FFA JSR $FA9F 00003C38: C6F2 DEC $F2 00003C3A: D004 BNE $04 00003C3C: A907 LDA #$07 00003C3E: 85F2 STA $F2 00003C40: A6F2 LDX $F2 00003C42: BCF5FA LDY $FAF5,X 00003C45: A25A LDX #$5A 00003C47: A5F1 LDA $F1 00003C49: C914 CMP #$14 00003C4B: B004 BCS $04 00003C4D: 4A LSR A 00003C4E: 0950 ORA #$50 00003C50: AA TAX 00003C51: 2095FA JSR $FA95 00003C54: C6F1 DEC $F1 00003C56: D0CE BNE $CE 00003C58: 20E0FA JSR $FAE0 00003C5B: A900 LDA #$00 00003C5D: 85F0 STA $F0 00003C5F: F0C5 BEQ $C5 00003C61: 84F0 STY $F0 00003C63: A90A LDA #$0A 00003C65: 85F1 STA $F1 00003C67: ACF006 LDY $06F0 00003C6A: 8C0240 STY $4002 00003C6D: A988 LDA #$88 00003C6F: 8D0340 STA $4003 00003C72: A518 LDA $18 00003C74: 2908 AND #$08 00003C76: 18 CLC 00003C77: 65F1 ADC $F1 00003C79: 69FE ADC #$FE 00003C7B: AA TAX 00003C7C: BCE5FA LDY $FAE5,X 00003C7F: A241 LDX #$41 00003C81: D0CE BNE $CE 00003C83: A90E LDA #$0E 00003C85: 8DA506 STA $06A5 00003C88: A085 LDY #$85 00003C8A: A946 LDA #$46 00003C8C: 20B3FA JSR $FAB3 00003C8F: CEA506 DEC $06A5 00003C92: F019 BEQ $19 00003C94: ADA506 LDA $06A5 00003C97: 0990 ORA #$90 00003C99: A8 TAY 00003C9A: 88 DEY 00003C9B: 8C0440 STY $4004 00003C9E: D00D BNE $0D 00003CA0: A5F3 LDA $F3 00003CA2: D009 BNE $09 00003CA4: ADA506 LDA $06A5 00003CA7: D0E6 BNE $E6 00003CA9: A4FE LDY $FE 00003CAB: 30D6 BMI $D6 00003CAD: A5FC LDA $FC 00003CAF: D06A BNE $6A 00003CB1: A5F9 LDA $F9 00003CB3: D066 BNE $66 00003CB5: A4FE LDY $FE 00003CB7: ADA106 LDA $06A1 00003CBA: 46FE LSR $FE 00003CBC: B00C BCS $0C 00003CBE: 4A LSR A 00003CBF: B00D BCS $0D 00003CC1: 4A LSR A 00003CC2: B03C BCS $3C 00003CC4: 46FE LSR $FE 00003CC6: B023 BCS $23 00003CC8: 9051 BCC $51 00003CCA: A928 LDA #$28 00003CCC: D01F BNE $1F 00003CCE: A5F5 LDA $F5 00003CD0: D004 BNE $04 00003CD2: 46FE LSR $FE 00003CD4: B015 BCS $15 00003CD6: A5F6 LDA $F6 00003CD8: 4A LSR A 00003CD9: 4A LSR A 00003CDA: 4A LSR A 00003CDB: 4A LSR A 00003CDC: 4A LSR A 00003CDD: 65F6 ADC $F6 00003CDF: 902F BCC $2F 00003CE1: A900 LDA #$00 00003CE3: 8DA106 STA $06A1 00003CE6: 8D0840 STA $4008 00003CE9: F030 BEQ $30 00003CEB: A9FE LDA #$FE 00003CED: 8CA106 STY $06A1 00003CF0: A20E LDX #$0E 00003CF2: 86F5 STX $F5 00003CF4: A0FF LDY #$FF 00003CF6: 8C0840 STY $4008 00003CF9: A008 LDY #$08 00003CFB: 8C0B40 STY $400B 00003CFE: D010 BNE $10 00003D00: A9FE LDA #$FE 00003D02: A4F5 LDY $F5 00003D04: F0DB BEQ $DB 00003D06: C007 CPY #$07 00003D08: F006 BEQ $06 00003D0A: A5F6 LDA $F6 00003D0C: A8 TAY 00003D0D: 20D7FA JSR $FAD7 00003D10: 85F6 STA $F6 00003D12: 8D0A40 STA $400A 00003D15: A5F5 LDA $F5 00003D17: F002 BEQ $02 00003D19: C6F5 DEC $F5 00003D1B: A6FA LDX $FA 00003D1D: D049 BNE $49 00003D1F: A5FC LDA $FC 00003D21: D005 BNE $05 00003D23: 8DA306 STA $06A3 00003D26: F040 BEQ $40 00003D28: 4DA306 EOR $06A3 00003D2B: F018 BEQ $18 00003D2D: A5FC LDA $FC 00003D2F: 8DA306 STA $06A3 00003D32: 2086FA JSR $FA86 00003D35: B9CDFF LDA $FFCD,Y 00003D38: 8D8006 STA $0680 00003D3B: A9D4 LDA #$D4 00003D3D: 85F5 STA $F5 00003D3F: A9FF LDA #$FF 00003D41: 85F6 STA $F6 00003D43: D005 BNE $05 00003D45: CE9806 DEC $0698 00003D48: D01E BNE $1E 00003D4A: AC8006 LDY $0680 00003D4D: EE8006 INC $0680 00003D50: B1F5 LDA ($F5),Y 00003D52: F0D9 BEQ $D9 00003D54: AA TAX 00003D55: 6A ROR A 00003D56: 8A TXA 00003D57: 2A ROL A 00003D58: 2A ROL A 00003D59: 2A ROL A 00003D5A: 2907 AND #$07 00003D5C: A8 TAY 00003D5D: B962FB LDA $FB62,Y 00003D60: 8D9806 STA $0698 00003D63: A910 LDA #$10 00003D65: 20BAFA JSR $FABA 00003D68: A5FD LDA $FD 00003D6A: D006 BNE $06 00003D6C: AD0201 LDA $0102 00003D6F: D03A BNE $3A 00003D71: 60 RTS 00003D72: 2086FA JSR $FA86 00003D75: 84FB STY $FB 00003D77: B959FE LDA $FE59,Y 00003D7A: A8 TAY 00003D7B: B959FE LDA $FE59,Y 00003D7E: 8D8D06 STA $068D 00003D81: B95AFE LDA $FE5A,Y 00003D84: 85F7 STA $F7 00003D86: B95BFE LDA $FE5B,Y 00003D89: 85F8 STA $F8 00003D8B: B95CFE LDA $FE5C,Y 00003D8E: 85F9 STA $F9 00003D90: B95DFE LDA $FE5D,Y 00003D93: 85FA STA $FA 00003D95: A901 LDA #$01 00003D97: 8D9506 STA $0695 00003D9A: 8D9606 STA $0696 00003D9D: 8D9806 STA $0698 00003DA0: 8D0201 STA $0102 00003DA3: A000 LDY #$00 00003DA5: 84F3 STY $F3 00003DA7: A5FB LDA $FB 00003DA9: F009 BEQ $09 00003DAB: A4FA LDY $FA 00003DAD: F039 BEQ $39 00003DAF: CE9606 DEC $0696 00003DB2: D034 BNE $34 00003DB4: E6FA INC $FA 00003DB6: B1F7 LDA ($F7),Y 00003DB8: F03F BEQ $3F 00003DBA: 100C BPL $0C 00003DBC: 20CAFA JSR $FACA 00003DBF: 8D9106 STA $0691 00003DC2: A4FA LDY $FA 00003DC4: E6FA INC $FA 00003DC6: B1F7 LDA ($F7),Y 00003DC8: 209FFA JSR $FA9F 00003DCB: D004 BNE $04 00003DCD: A010 LDY #$10 00003DCF: D00E BNE $0E 00003DD1: A29F LDX #$9F 00003DD3: A5FB LDA $FB 00003DD5: F008 BEQ $08 00003DD7: A206 LDX #$06 00003DD9: A5F9 LDA $F9 00003DDB: D002 BNE $02 00003DDD: A286 LDX #$86 00003DDF: 2093FA JSR $FA93 00003DE2: AD9106 LDA $0691 00003DE5: 8D9606 STA $0696 00003DE8: A5FB LDA $FB 00003DEA: F055 BEQ $55 00003DEC: CE9506 DEC $0695 00003DEF: D050 BNE $50 00003DF1: A4F3 LDY $F3 00003DF3: E6F3 INC $F3 00003DF5: B1F7 LDA ($F7),Y 00003DF7: D020 BNE $20 00003DF9: 20E0FA JSR $FAE0 00003DFC: A900 LDA #$00 00003DFE: 85FA STA $FA 00003E00: 85F3 STA $F3 00003E02: 85F9 STA $F9 00003E04: 8D0201 STA $0102 00003E07: A4FB LDY $FB 00003E09: F005 BEQ $05 00003E0B: ACA106 LDY $06A1 00003E0E: D003 BNE $03 00003E10: 8D0840 STA $4008 00003E13: A910 LDA #$10 00003E15: 8D0440 STA $4004 00003E18: 60 RTS 00003E19: 20C4FA JSR $FAC4 00003E1C: 8D9506 STA $0695 00003E1F: 8A TXA 00003E20: 293E AND #$3E 00003E22: A07F LDY #$7F 00003E24: 20B3FA JSR $FAB3 00003E27: D004 BNE $04 00003E29: A210 LDX #$10 00003E2B: D011 BNE $11 00003E2D: A289 LDX #$89 00003E2F: AD9506 LDA $0695 00003E32: C918 CMP #$18 00003E34: B008 BCS $08 00003E36: A286 LDX #$86 00003E38: C910 CMP #$10 00003E3A: B002 BCS $02 00003E3C: A284 LDX #$84 00003E3E: 8E0440 STX $4004 00003E41: A4F9 LDY $F9 00003E43: F023 BEQ $23 00003E45: CE9806 DEC $0698 00003E48: D01E BNE $1E 00003E4A: E6F9 INC $F9 00003E4C: B1F7 LDA ($F7),Y 00003E4E: 20C4FA JSR $FAC4 00003E51: 8D9806 STA $0698 00003E54: 18 CLC 00003E55: 69FE ADC #$FE 00003E57: 0A ASL A 00003E58: 0A ASL A 00003E59: C938 CMP #$38 00003E5B: 9002 BCC $02 00003E5D: A938 LDA #$38 00003E5F: A4FB LDY $FB 00003E61: D002 BNE $02 00003E63: A9FF LDA #$FF 00003E65: 20BAFA JSR $FABA 00003E68: 60 RTS 00003E69: 090E ORA #$0E 00003E6B: 13 .DB $13 00003E6C: 18 CLC 00003E6D: 1D2227 ORA $2722,X 00003E70: 2C3100 BIT $0031 00003E73: 8F .DB $8F 00003E74: FE1B00 INC $001B,X 00003E77: 08 PHP 00003E78: B0FE BCS $FE 00003E7A: 00 BRK 00003E7B: 0C .DB $0C 00003E7C: 00 BRK 00003E7D: CF .DB $CF 00003E7E: FE001A INC $1A00,X 00003E81: 08 PHP 00003E82: 05FF ORA $FF 00003E84: 00 BRK 00003E85: 0B .DB $0B 00003E86: 00 BRK 00003E87: ADFF00 LDA $00FF 00003E8A: 03 .DB $03 00003E8B: 00 BRK 00003E8C: BEFF00 LDX $00FF,Y 00003E8F: 00 BRK 00003E90: 00 BRK 00003E91: C4FF CPY $FF 00003E93: 00 BRK 00003E94: 00 BRK 00003E95: 0F .DB $0F 00003E96: 20FF21 JSR $21FF 00003E99: 3E00A1 ROL $A100,X 00003E9C: FF .DB $FF 00003E9D: 08 PHP 00003E9E: 00 BRK 00003E9F: 8646 STX $46 00003EA1: 82 .DB $82 00003EA2: 4A LSR A 00003EA3: 83 .DB $83 00003EA4: 2646 ROL $46 00003EA6: 80 .DB $80 00003EA7: 34 .DB $34 00003EA8: 32 .DB $32 00003EA9: 34 .DB $34 00003EAA: 32 .DB $32 00003EAB: 34 .DB $34 00003EAC: 32 .DB $32 00003EAD: 34 .DB $34 00003EAE: 32 .DB $32 00003EAF: 34 .DB $34 00003EB0: 32 .DB $32 00003EB1: 34 .DB $34 00003EB2: 32 .DB $32 00003EB3: 34 .DB $34 00003EB4: 32 .DB $32 00003EB5: 34 .DB $34 00003EB6: 32 .DB $32 00003EB7: 8434 STY $34 00003EB9: 00 BRK 00003EBA: A9AC LDA #$AC 00003EBC: EEE833 INC $33E8 00003EBF: 3516 AND $16,X 00003EC1: 1657 ASL $57,X 00003EC3: 1E2064 ASL $6420,X 00003EC6: 9E .DB $9E 00003EC7: 1E2064 ASL $6420,X 00003ECA: 9E .DB $9E 00003ECB: 00 BRK 00003ECC: 80 .DB $80 00003ECD: 3030 BMI $30 00003ECF: 8530 STA $30 00003ED1: 80 .DB $80 00003ED2: 1A .DB $1A 00003ED3: 1C .DB $1C 00003ED4: 811E STA ($1E,X) 00003ED6: 82 .DB $82 00003ED7: 1A .DB $1A 00003ED8: 80 .DB $80 00003ED9: 1A .DB $1A 00003EDA: 1C .DB $1C 00003EDB: 811E STA ($1E,X) 00003EDD: 82 .DB $82 00003EDE: 1A .DB $1A 00003EDF: 5E5E5C LSR $5C5E,X 00003EE2: 5C .DB $5C 00003EE3: 5A .DB $5A 00003EE4: 5A .DB $5A 00003EE5: 58 CLI 00003EE6: 58 CLI 00003EE7: 57 .DB $57 00003EE8: 1618 ASL $18,X 00003EEA: 9A TXS 00003EEB: 9659 STX $59,Y 00003EED: 18 CLC 00003EEE: 1A .DB $1A 00003EEF: 9C .DB $9C 00003EF0: 98 TYA 00003EF1: 5F .DB $5F 00003EF2: 5E605E LSR $5E60,X 00003EF5: 5C .DB $5C 00003EF6: 5A .DB $5A 00003EF7: 1F .DB $1F 00003EF8: 00 BRK 00003EF9: 811A STA ($1A,X) 00003EFB: 1A .DB $1A 00003EFC: 18 CLC 00003EFD: 18 CLC 00003EFE: 1616 ASL $16,X 00003F00: 38 SEC 00003F01: 38 SEC 00003F02: 82 .DB $82 00003F03: 2642 ROL $42 00003F05: 2642 ROL $42 00003F07: 28 PLP 00003F08: 4628 LSR $28 00003F0A: 4630 LSR $30 00003F0C: 28 PLP 00003F0D: 3028 BMI $28 00003F0F: 813A STA ($3A,X) 00003F11: 853C STA $3C 00003F13: 843A STY $3A 00003F15: 5E0220 LSR $2002,X 00003F18: 42 .DB $42 00003F19: 4A LSR A 00003F1A: 42 .DB $42 00003F1B: 60 RTS 00003F1C: 5E601D LSR $1D60,X 00003F1F: 00 BRK 00003F20: 82 .DB $82 00003F21: 2642 ROL $42 00003F23: 2642 ROL $42 00003F25: 8140 STA ($40,X) 00003F27: 80 .DB $80 00003F28: 42 .DB $42 00003F29: 44 .DB $44 00003F2A: 48 PHA 00003F2B: 2628 ROL $28 00003F2D: 2C832E BIT $2E83 00003F30: 5656 LSR $56,X 00003F32: E042 CPX #$42 00003F34: 5A .DB $5A 00003F35: 5E5C99 LSR $995C,X 00003F38: 58 CLI 00003F39: 58 CLI 00003F3A: E2 .DB $E2 00003F3B: 42 .DB $42 00003F3C: 5E605E LSR $5E60,X 00003F3F: 9B .DB $9B 00003F40: 5A .DB $5A 00003F41: 5A .DB $5A 00003F42: CA DEX 00003F43: 42 .DB $42 00003F44: 60 RTS 00003F45: 62 .DB $62 00003F46: 4A LSR A 00003F47: 8D5C5E STA $5E5C 00003F4A: E042 CPX #$42 00003F4C: 5A .DB $5A 00003F4D: 5C .DB $5C 00003F4E: 5E1D00 LSR $001D,X 00003F51: 82 .DB $82 00003F52: 6F .DB $6F 00003F53: 6EEE71 ROR $71EE 00003F56: 70F0 BVS $F0 00003F58: 77 .DB $77 00003F59: 76F6 ROR $F6,X 00003F5B: 57 .DB $57 00003F5C: 56D6 LSR $D6,X 00003F5E: A09A LDY #$9A 00003F60: 96B4 STX $B4,Y 00003F62: A29C LDX #$9C 00003F64: 98 TYA 00003F65: B65C LDX $5C,Y 00003F67: 9C .DB $9C 00003F68: 9657 STX $57,Y 00003F6A: 5C .DB $5C 00003F6B: 9674 STX $74,Y 00003F6D: 2F .DB $2F 00003F6E: 8502 STA $02 00003F70: 812E STA ($2E,X) 00003F72: 34 .DB $34 00003F73: 2E8334 ROL $3483 00003F76: 8148 STA ($48,X) 00003F78: 28 PLP 00003F79: 3028 BMI $28 00003F7B: 3028 BMI $28 00003F7D: 8530 STA $30 00003F7F: 8130 STA ($30,X) 00003F81: 3630 ROL $30,X 00003F83: 83 .DB $83 00003F84: 3681 ROL $81,X 00003F86: 262C ROL $2C 00003F88: 302C BMI $2C 00003F8A: 302C BMI $2C 00003F8C: 1616 ASL $16,X 00003F8E: 1A .DB $1A 00003F8F: 1634 ASL $34,X 00003F91: 161A ASL $1A,X 00003F93: 1634 ASL $34,X 00003F95: 161C ASL $1C,X 00003F97: 18 CLC 00003F98: 3618 ROL $18,X 00003F9A: 1C .DB $1C 00003F9B: 18 CLC 00003F9C: 3618 ROL $18,X 00003F9E: 162E ASL $2E,X 00003FA0: 80 .DB $80 00003FA1: 1636 ASL $36,X 00003FA3: 34 .DB $34 00003FA4: 3683 ROL $83,X 00003FA6: 1681 ASL $81,X 00003FA8: 02 .DB $02 00003FA9: 2E8016 ROL $1680 00003FAC: 3634 ROL $34,X 00003FAE: 3086 BMI $86 00003FB0: 2E811A ROL $1A81 00003FB3: 82 .DB $82 00003FB4: 1E3083 ASL $8330,X 00003FB7: 1600 ASL $00,X 00003FB9: 42 .DB $42 00003FBA: 96B0 STX $B0,Y 00003FBC: E603 INC $03 00003FBE: 83 .DB $83 00003FBF: 00 BRK 00003FC0: 87 .DB $87 00003FC1: 42 .DB $42 00003FC2: 3E423E ROL $3E42,X 00003FC5: 42 .DB $42 00003FC6: 3E423E ROL $3E42,X 00003FC9: 42 .DB $42 00003FCA: 3E4282 ROL $8242,X 00003FCD: 3E0A0C ROL $0C0A,X 00003FD0: 0E5490 ASL $9054 00003FD3: 00 BRK 00003FD4: 04 .DB $04 00003FD5: 12 .DB $12 00003FD6: 04 .DB $04 00003FD7: 12 .DB $12 00003FD8: 04 .DB $04 00003FD9: 12 .DB $12 00003FDA: 04 .DB $04 00003FDB: 92 .DB $92 00003FDC: 00 BRK 00003FDD: 00 BRK 00003FDE: 00 BRK 00003FDF: 00 BRK 00003FE0: 00 BRK 00003FE1: 090E ORA #$0E 00003FE3: 12 .DB $12 00003FE4: 1602 ASL $02,X 00003FE6: 02 .DB $02 00003FE7: 1A .DB $1A 00003FE8: 02 .DB $02 00003FE9: 1E201E ASL $1E20,X 00003FEC: 00 BRK 00003FED: 5A .DB $5A 00003FEE: 42 .DB $42 00003FEF: 5656 LSR $56,X 00003FF1: 00 BRK 00003FF2: 0907 ORA #$07 00003FF4: 0500 ORA $00 00003FF6: CA DEX 00003FF7: 8A TXA 00003FF8: 8A TXA 00003FF9: CA DEX 00003FFA: CA DEX 00003FFB: CECACE DEC $CECA 00003FFE: CA DEX 00003FFF: CE8E8E DEC $8E8E 00004002: CECED2 DEC $D2CE 00004005: CED2CE DEC $CED2 00004008: 00 BRK 00004009: FF .DB $FF 0000400A: 5F .DB $5F 0000400B: C8 INY 0000400C: 9E .DB $9E 0000400D: C7 .DB $C7 0000400E: F0FF BEQ $FF 00004010: 00 BRK 00004011: 03 .DB $03 00004012: 07 .DB $07 00004013: 07 .DB $07 00004014: 0909 ORA #$09 00004016: 1C .DB $1C 00004017: 00 BRK 00004018: 00 BRK 00004019: 03 .DB $03 0000401A: 07 .DB $07 0000401B: 00 BRK 0000401C: 0606 ASL $06 0000401E: 03 .DB $03 0000401F: 03 .DB $03 00004020: 0F .DB $0F 00004021: 0F .DB $0F 00004022: 0F .DB $0F 00004023: FF .DB $FF 00004024: FF .DB $FF 00004025: FC .DB $FC 00004026: 8101 STA ($01,X) 00004028: 00 BRK 00004029: 103C BPL $3C 0000402B: 3F .DB $3F 0000402C: 3F .DB $3F 0000402D: 3C .DB $3C 0000402E: 00 BRK 0000402F: 00 BRK 00004030: 00 BRK 00004031: C0F8 CPY #$F8 00004033: 80 .DB $80 00004034: 20903C JSR $3C90 00004037: 00 BRK 00004038: 00 BRK 00004039: C0F8 CPY #$F8 0000403B: 60 RTS 0000403C: DC .DB $DC 0000403D: 6EC0F8 ROR $F8C0 00004040: C0C0 CPY #$C0 00004042: C0F0 CPY #$F0 00004044: F0E0 BEQ $E0 00004046: C0E0 CPY #$E0 00004048: 5038 BVC $38 0000404A: 30F0 BMI $F0 0000404C: F0E0 BEQ $E0 0000404E: 00 BRK 0000404F: 00 BRK 00004050: 07 .DB $07 00004051: 0F .DB $0F 00004052: 0F .DB $0F 00004053: 12 .DB $12 00004054: 13 .DB $13 00004055: 38 SEC 00004056: 00 BRK 00004057: 0F .DB $0F 00004058: 07 .DB $07 00004059: 0F .DB $0F 0000405A: 00 BRK 0000405B: 0D0C07 ORA $070C 0000405E: 07 .DB $07 0000405F: 00 BRK 00004060: 1F .DB $1F 00004061: 1F .DB $1F 00004062: 1F .DB $1F 00004063: 18 CLC 00004064: 191E1C ORA $1C1E,Y 00004067: 1E0103 ASL $0301,X 0000406A: 0117 ORA ($17,X) 0000406C: 1F .DB $1F 0000406D: 1E0000 ASL $0000,X 00004070: 80 .DB $80 00004071: F000 BEQ $00 00004073: 40 RTI 00004074: 207800 JSR $0078 00004077: C080 CPY #$80 00004079: F0C0 BEQ $C0 0000407B: B8 CLV 0000407C: DC .DB $DC 0000407D: 80 .DB $80 0000407E: F000 BEQ $00 00004080: E060 CPX #$60 00004082: F0F0 BEQ $F0 00004084: F0E0 BEQ $E0 00004086: E0F0 CPX #$F0 00004088: 80 .DB $80 00004089: E0F0 CPX #$F0 0000408B: F0F0 BEQ $F0 0000408D: E000 CPX #$00 0000408F: 00 BRK 00004090: 07 .DB $07 00004091: 0F .DB $0F 00004092: 0F .DB $0F 00004093: 12 .DB $12 00004094: 13 .DB $13 00004095: 38 SEC 00004096: 00 BRK 00004097: 3F .DB $3F 00004098: 07 .DB $07 00004099: 0F .DB $0F 0000409A: 00 BRK 0000409B: 0D0C07 ORA $070C 0000409E: 07 .DB $07 0000409F: 03 .DB $03 000040A0: 3F .DB $3F 000040A1: 0E0F1F ASL $1F0F 000040A4: 3F .DB $3F 000040A5: 7C .DB $7C 000040A6: 7038 BVS $38 000040A8: C3 .DB $C3 000040A9: E3 .DB $E3 000040AA: CF .DB $CF 000040AB: 1F .DB $1F 000040AC: 3F .DB $3F 000040AD: 0C .DB $0C 000040AE: 00 BRK 000040AF: 00 BRK 000040B0: 80 .DB $80 000040B1: F000 BEQ $00 000040B3: 40 RTI 000040B4: 207800 JSR $0078 000040B7: C080 CPY #$80 000040B9: F0C0 BEQ $C0 000040BB: B8 CLV 000040BC: DC .DB $DC 000040BD: 80 .DB $80 000040BE: F006 BEQ $06 000040C0: F0F8 BEQ $F8 000040C2: E4FC CPX $FC 000040C4: FC .DB $FC 000040C5: 7C .DB $7C 000040C6: 00 BRK 000040C7: 00 BRK 000040C8: 8EE6E0 STX $E0E6 000040CB: F0F0 BEQ $F0 000040CD: 7000 BVS $00 000040CF: 00 BRK 000040D0: 00 BRK 000040D1: 02 .DB $02 000040D2: 0607 ASL $07 000040D4: 0909 ORA #$09 000040D6: 1D0301 ORA $0103,X 000040D9: 03 .DB $03 000040DA: 07 .DB $07 000040DB: 00 BRK 000040DC: 0606 ASL $06 000040DE: 02 .DB $02 000040DF: 00 BRK 000040E0: 0F .DB $0F 000040E1: 0F .DB $0F 000040E2: 0F .DB $0F 000040E3: FF .DB $FF 000040E4: FF .DB $FF 000040E5: FC .DB $FC 000040E6: 8101 STA ($01,X) 000040E8: 00 BRK 000040E9: 00 BRK 000040EA: 0C .DB $0C 000040EB: 3F .DB $3F 000040EC: 3F .DB $3F 000040ED: 3C .DB $3C 000040EE: 00 BRK 000040EF: 00 BRK 000040F0: 00 BRK 000040F1: 00 BRK 000040F2: 38 SEC 000040F3: C0E0 CPY #$E0 000040F5: D0FC BNE $FC 000040F7: C0C0 CPY #$C0 000040F9: C0F8 CPY #$F8 000040FB: 201C2E JSR $2E1C 000040FE: 00 BRK 000040FF: 38 SEC 00004100: E0E0 CPX #$E0 00004102: B0F0 BCS $F0 00004104: F0E0 BEQ $E0 00004106: C0E0 CPY #$E0 00004108: 00 BRK 00004109: 60 RTS 0000410A: F0F0 BEQ $F0 0000410C: F0E0 BEQ $E0 0000410E: 00 BRK 0000410F: 00 BRK 00004110: 00 BRK 00004111: 03 .DB $03 00004112: 07 .DB $07 00004113: 07 .DB $07 00004114: 0909 ORA #$09 00004116: 1C .DB $1C 00004117: 00 BRK 00004118: 00 BRK 00004119: 03 .DB $03 0000411A: 07 .DB $07 0000411B: 00 BRK 0000411C: 0606 ASL $06 0000411E: 03 .DB $03 0000411F: 03 .DB $03 00004120: 0F .DB $0F 00004121: 0F .DB $0F 00004122: 0F .DB $0F 00004123: FF .DB $FF 00004124: FF .DB $FF 00004125: FC .DB $FC 00004126: 8101 STA ($01,X) 00004128: 00 BRK 00004129: 00 BRK 0000412A: 0C .DB $0C 0000412B: 3F .DB $3F 0000412C: 3F .DB $3F 0000412D: 3C .DB $3C 0000412E: 00 BRK 0000412F: 00 BRK 00004130: 00 BRK 00004131: C0F8 CPY #$F8 00004133: 80 .DB $80 00004134: 20903C JSR $3C90 00004137: 00 BRK 00004138: 00 BRK 00004139: C0F8 CPY #$F8 0000413B: 60 RTS 0000413C: DC .DB $DC 0000413D: 6EC0F8 ROR $F8C0 00004140: E0F0 CPX #$F0 00004142: F0F0 BEQ $F0 00004144: F0E0 BEQ $E0 00004146: C0E0 CPY #$E0 00004148: 47 .DB $47 00004149: 0F .DB $0F 0000414A: 0EF0F0 ASL $F0F0 0000414D: E000 CPX #$00 0000414F: 00 BRK 00004150: 04 .DB $04 00004151: 0C .DB $0C 00004152: 0C .DB $0C 00004153: 13 .DB $13 00004154: 13 .DB $13 00004155: 3B .DB $3B 00004156: 07 .DB $07 00004157: 0F .DB $0F 00004158: 07 .DB $07 00004159: 0F .DB $0F 0000415A: 03 .DB $03 0000415B: 0C .DB $0C 0000415C: 0C .DB $0C 0000415D: 04 .DB $04 0000415E: 00 BRK 0000415F: 00 BRK 00004160: 0F .DB $0F 00004161: 0F .DB $0F 00004162: 0F .DB $0F 00004163: 1F .DB $1F 00004164: 1F .DB $1F 00004165: 1E1C1E ASL $1E1C,X 00004168: 00 BRK 00004169: 010F ORA ($0F,X) 0000416B: 1F .DB $1F 0000416C: 1F .DB $1F 0000416D: 1E0000 ASL $0000,X 00004170: 00 BRK 00004171: 7000 BVS $00 00004173: C0A0 CPY #$A0 00004175: F8 SED 00004176: 80 .DB $80 00004177: C080 CPY #$80 00004179: F0C0 BEQ $C0 0000417B: 38 SEC 0000417C: 5C .DB $5C 0000417D: 00 BRK 0000417E: 7040 BVS $40 00004180: E060 CPX #$60 00004182: F0F0 BEQ $F0 00004184: F0E0 BEQ $E0 00004186: E0F0 CPX #$F0 00004188: C0E0 CPY #$E0 0000418A: F0F0 BEQ $F0 0000418C: F0E0 BEQ $E0 0000418E: 00 BRK 0000418F: 00 BRK 00004190: 07 .DB $07 00004191: 0F .DB $0F 00004192: 0F .DB $0F 00004193: 12 .DB $12 00004194: 13 .DB $13 00004195: 38 SEC 00004196: 00 BRK 00004197: 0F .DB $0F 00004198: 07 .DB $07 00004199: 0F .DB $0F 0000419A: 00 BRK 0000419B: 0D0C07 ORA $070C 0000419E: 07 .DB $07 0000419F: 011F ORA ($1F,X) 000041A1: 1F .DB $1F 000041A2: 1F .DB $1F 000041A3: 1F .DB $1F 000041A4: 1F .DB $1F 000041A5: 1E1C1E ASL $1E1C,X 000041A8: 00 BRK 000041A9: 00 BRK 000041AA: 13 .DB $13 000041AB: 1F .DB $1F 000041AC: 1F .DB $1F 000041AD: 1E0000 ASL $0000,X 000041B0: 80 .DB $80 000041B1: F000 BEQ $00 000041B3: 40 RTI 000041B4: 207800 JSR $0078 000041B7: C080 CPY #$80 000041B9: F0C0 BEQ $C0 000041BB: B8 CLV 000041BC: DC .DB $DC 000041BD: 80 .DB $80 000041BE: F080 BEQ $80 000041C0: F8 SED 000041C1: F8 SED 000041C2: F0F0 BEQ $F0 000041C4: F0E0 BEQ $E0 000041C6: E0F0 CPX #$F0 000041C8: 07 .DB $07 000041C9: 07 .DB $07 000041CA: FEF0F0 INC $F0F0,X 000041CD: E000 CPX #$00 000041CF: 00 BRK 000041D0: 04 .DB $04 000041D1: 0C .DB $0C 000041D2: 0C .DB $0C 000041D3: 13 .DB $13 000041D4: 13 .DB $13 000041D5: 3F .DB $3F 000041D6: 07 .DB $07 000041D7: 0F .DB $0F 000041D8: 07 .DB $07 000041D9: 0F .DB $0F 000041DA: 03 .DB $03 000041DB: 0C .DB $0C 000041DC: 0C .DB $0C 000041DD: 00 BRK 000041DE: 00 BRK 000041DF: 00 BRK 000041E0: 0F .DB $0F 000041E1: 0F .DB $0F 000041E2: 0F .DB $0F 000041E3: 1F .DB $1F 000041E4: 3F .DB $3F 000041E5: 7C .DB $7C 000041E6: 7038 BVS $38 000041E8: 0101 ORA ($01,X) 000041EA: 0F .DB $0F 000041EB: 1F .DB $1F 000041EC: 3F .DB $3F 000041ED: 1C .DB $1C 000041EE: 00 BRK 000041EF: 00 BRK 000041F0: 00 BRK 000041F1: 7000 BVS $00 000041F3: C0A0 CPY #$A0 000041F5: F8 SED 000041F6: 80 .DB $80 000041F7: C080 CPY #$80 000041F9: F0C0 BEQ $C0 000041FB: 38 SEC 000041FC: 5C .DB $5C 000041FD: 00 BRK 000041FE: 7040 BVS $40 00004200: C060 CPY #$60 00004202: E4FC CPX $FC 00004204: FC .DB $FC 00004205: 7C .DB $7C 00004206: 00 BRK 00004207: 00 BRK 00004208: C0E0 CPY #$E0 0000420A: E0F0 CPX #$F0 0000420C: F070 BEQ $70 0000420E: 00 BRK 0000420F: 00 BRK 00004210: 07 .DB $07 00004211: 0F .DB $0F 00004212: 0F .DB $0F 00004213: 12 .DB $12 00004214: 13 .DB $13 00004215: 38 SEC 00004216: 00 BRK 00004217: 07 .DB $07 00004218: 07 .DB $07 00004219: 0F .DB $0F 0000421A: 00 BRK 0000421B: 0D0C07 ORA $070C 0000421E: 07 .DB $07 0000421F: 010F ORA ($0F,X) 00004221: 0F .DB $0F 00004222: 0F .DB $0F 00004223: 1F .DB $1F 00004224: 3F .DB $3F 00004225: 7C .DB $7C 00004226: 7038 BVS $38 00004228: 00 BRK 00004229: 00 BRK 0000422A: 091F ORA #$1F 0000422C: 3F .DB $3F 0000422D: 1C .DB $1C 0000422E: 00 BRK 0000422F: 00 BRK 00004230: 80 .DB $80 00004231: F000 BEQ $00 00004233: 40 RTI 00004234: 207800 JSR $0078 00004237: C080 CPY #$80 00004239: F0C0 BEQ $C0 0000423B: B8 CLV 0000423C: DC .DB $DC 0000423D: 80 .DB $80 0000423E: F080 BEQ $80 00004240: F8 SED 00004241: F8 SED 00004242: E0FC CPX #$FC 00004244: FC .DB $FC 00004245: 7C .DB $7C 00004246: 00 BRK 00004247: 00 BRK 00004248: 07 .DB $07 00004249: 07 .DB $07 0000424A: EEF0F0 INC $F0F0 0000424D: 7000 BVS $00 0000424F: 00 BRK 00004250: 00 BRK 00004251: 07 .DB $07 00004252: 07 .DB $07 00004253: 0F .DB $0F 00004254: 0F .DB $0F 00004255: 38 SEC 00004256: 7F .DB $7F 00004257: 7F .DB $7F 00004258: 00 BRK 00004259: 07 .DB $07 0000425A: 03 .DB $03 0000425B: 00 BRK 0000425C: 00 BRK 0000425D: 07 .DB $07 0000425E: 04 .DB $04 0000425F: 04 .DB $04 00004260: 1F .DB $1F 00004261: 1F .DB $1F 00004262: 1F .DB $1F 00004263: 1F .DB $1F 00004264: 0F .DB $0F 00004265: 0F .DB $0F 00004266: 0F .DB $0F 00004267: 07 .DB $07 00004268: 1E1F1F ASL $1F1F,X 0000426B: 1F .DB $1F 0000426C: 0F .DB $0F 0000426D: 08 PHP 0000426E: 00 BRK 0000426F: 00 BRK 00004270: 00 BRK 00004271: E0F8 CPX #$F8 00004273: FC .DB $FC 00004274: FC .DB $FC 00004275: 1C .DB $1C 00004276: F8 SED 00004277: F8 SED 00004278: 38 SEC 00004279: F8 SED 0000427A: C000 CPY #$00 0000427C: 00 BRK 0000427D: E020 CPX #$20 0000427F: 20F8FC JSR $FCF8 00004282: FC .DB $FC 00004283: F8 SED 00004284: 78 SEI 00004285: 80 .DB $80 00004286: C0C0 CPY #$C0 00004288: 78 SEI 00004289: FC .DB $FC 0000428A: FC .DB $FC 0000428B: F8 SED 0000428C: 00 BRK 0000428D: 80 .DB $80 0000428E: 00 BRK 0000428F: 00 BRK 00004290: 00 BRK 00004291: 03 .DB $03 00004292: 07 .DB $07 00004293: 07 .DB $07 00004294: 0909 ORA #$09 00004296: 1C .DB $1C 00004297: 00 BRK 00004298: 00 BRK 00004299: 03 .DB $03 0000429A: 07 .DB $07 0000429B: 00 BRK 0000429C: 0606 ASL $06 0000429E: 03 .DB $03 0000429F: 63 .DB $63 000042A0: 1F .DB $1F 000042A1: 0F .DB $0F 000042A2: 07 .DB $07 000042A3: 37 .DB $37 000042A4: 7F .DB $7F 000042A5: DF .DB $DF 000042A6: 0F .DB $0F 000042A7: 06E0 ASL $E0 000042A9: 2101 AND ($01,X) 000042AB: 07 .DB $07 000042AC: 07 .DB $07 000042AD: 1F .DB $1F 000042AE: 0F .DB $0F 000042AF: 0600 ASL $00 000042B1: C0F8 CPY #$F8 000042B3: 80 .DB $80 000042B4: 20903C JSR $3C90 000042B7: 00 BRK 000042B8: 00 BRK 000042B9: C0F8 CPY #$F8 000042BB: 60 RTS 000042BC: DC .DB $DC 000042BD: 6EC0FB ROR $FBC0 000042C0: E4FE CPX $FE 000042C2: 70F1 BVS $F1 000042C4: FF .DB $FF 000042C5: FF .DB $FF 000042C6: 00 BRK 000042C7: 00 BRK 000042C8: 83 .DB $83 000042C9: C0F0 CPY #$F0 000042CB: F0FC BEQ $FC 000042CD: FC .DB $FC 000042CE: 00 BRK 000042CF: 00 BRK 000042D0: 07 .DB $07 000042D1: 0F .DB $0F 000042D2: 0F .DB $0F 000042D3: 12 .DB $12 000042D4: 13 .DB $13 000042D5: 38 SEC 000042D6: 70FF BVS $FF 000042D8: 07 .DB $07 000042D9: 0F .DB $0F 000042DA: 00 BRK 000042DB: 0D0C07 ORA $070C 000042DE: 0F .DB $0F 000042DF: 02 .DB $02 000042E0: DF .DB $DF 000042E1: 1E1F1F ASL $1F1F,X 000042E4: 1F .DB $1F 000042E5: 0F .DB $0F 000042E6: 07 .DB $07 000042E7: 0101 ORA ($01,X) 000042E9: F3 .DB $F3 000042EA: 5F .DB $5F 000042EB: 1F .DB $1F 000042EC: 1F .DB $1F 000042ED: 4F .DB $4F 000042EE: 37 .DB $37 000042EF: C080 CPY #$80 000042F1: F000 BEQ $00 000042F3: 40 RTI 000042F4: 207800 JSR $0078 000042F7: FC .DB $FC 000042F8: 80 .DB $80 000042F9: F0C0 BEQ $C0 000042FB: B8 CLV 000042FC: DC .DB $DC 000042FD: 80 .DB $80 000042FE: F000 BEQ $00 00004300: F0E0 BEQ $E0 00004302: E0F0 CPX #$F0 00004304: FA .DB $FA 00004305: FEFCD8 INC $D8FC,X 00004308: 8F .DB $8F 00004309: E7 .DB $E7 0000430A: E0F0 CPX #$F0 0000430C: C8 INY 0000430D: 88 DEY 0000430E: 1000 BPL $00 00004310: 00 BRK 00004311: 00 BRK 00004312: 07 .DB $07 00004313: 08 PHP 00004314: 1020 BPL $20 00004316: 40 RTI 00004317: 40 RTI 00004318: 00 BRK 00004319: 00 BRK 0000431A: 00 BRK 0000431B: 07 .DB $07 0000431C: 08 PHP 0000431D: 1020 BPL $20 0000431F: 204040 JSR $4040 00004322: 201008 JSR $0810 00004325: 07 .DB $07 00004326: 00 BRK 00004327: 00 BRK 00004328: 202010 JSR $1020 0000432B: 08 PHP 0000432C: 07 .DB $07 0000432D: 00 BRK 0000432E: 00 BRK 0000432F: 00 BRK 00004330: 00 BRK 00004331: 00 BRK 00004332: E010 CPX #$10 00004334: 08 PHP 00004335: 04 .DB $04 00004336: 02 .DB $02 00004337: 02 .DB $02 00004338: 00 BRK 00004339: 00 BRK 0000433A: 00 BRK 0000433B: E010 CPX #$10 0000433D: 08 PHP 0000433E: 04 .DB $04 0000433F: 04 .DB $04 00004340: 02 .DB $02 00004341: 02 .DB $02 00004342: 04 .DB $04 00004343: 08 PHP 00004344: 10E0 BPL $E0 00004346: 00 BRK 00004347: 00 BRK 00004348: 04 .DB $04 00004349: 04 .DB $04 0000434A: 08 PHP 0000434B: 10E0 BPL $E0 0000434D: 00 BRK 0000434E: 00 BRK 0000434F: 00 BRK 00004350: 00 BRK 00004351: 00 BRK 00004352: 00 BRK 00004353: 00 BRK 00004354: 03 .DB $03 00004355: 04 .DB $04 00004356: 08 PHP 00004357: 1000 BPL $00 00004359: 00 BRK 0000435A: 00 BRK 0000435B: 00 BRK 0000435C: 00 BRK 0000435D: 03 .DB $03 0000435E: 04 .DB $04 0000435F: 08 PHP 00004360: 1008 BPL $08 00004362: 04 .DB $04 00004363: 03 .DB $03 00004364: 00 BRK 00004365: 00 BRK 00004366: 00 BRK 00004367: 00 BRK 00004368: 08 PHP 00004369: 04 .DB $04 0000436A: 03 .DB $03 0000436B: 00 BRK 0000436C: 00 BRK 0000436D: 00 BRK 0000436E: 00 BRK 0000436F: 00 BRK 00004370: 00 BRK 00004371: 00 BRK 00004372: 00 BRK 00004373: 00 BRK 00004374: C020 CPY #$20 00004376: 1008 BPL $08 00004378: 00 BRK 00004379: 00 BRK 0000437A: 00 BRK 0000437B: 00 BRK 0000437C: 00 BRK 0000437D: C020 CPY #$20 0000437F: 1008 BPL $08 00004381: 1020 BPL $20 00004383: C000 CPY #$00 00004385: 00 BRK 00004386: 00 BRK 00004387: 00 BRK 00004388: 1020 BPL $20 0000438A: C000 CPY #$00 0000438C: 00 BRK 0000438D: 00 BRK 0000438E: 00 BRK 0000438F: 00 BRK 00004390: 00 BRK 00004391: 00 BRK 00004392: 00 BRK 00004393: 00 BRK 00004394: 00 BRK 00004395: 00 BRK 00004396: 00 BRK 00004397: 0100 ORA ($00,X) 00004399: 00 BRK 0000439A: 00 BRK 0000439B: 00 BRK 0000439C: 00 BRK 0000439D: 00 BRK 0000439E: 00 BRK 0000439F: 00 BRK 000043A0: 02 .DB $02 000043A1: 0100 ORA ($00,X) 000043A3: 00 BRK 000043A4: 00 BRK 000043A5: 00 BRK 000043A6: 00 BRK 000043A7: 00 BRK 000043A8: 0100 ORA ($00,X) 000043AA: 00 BRK 000043AB: 00 BRK 000043AC: 00 BRK 000043AD: 00 BRK 000043AE: 00 BRK 000043AF: 00 BRK 000043B0: 00 BRK 000043B1: 00 BRK 000043B2: 00 BRK 000043B3: 00 BRK 000043B4: 00 BRK 000043B5: 00 BRK 000043B6: 00 BRK 000043B7: 00 BRK 000043B8: 00 BRK 000043B9: 00 BRK 000043BA: 00 BRK 000043BB: 00 BRK 000043BC: 00 BRK 000043BD: 00 BRK 000043BE: 00 BRK 000043BF: 00 BRK 000043C0: 80 .DB $80 000043C1: 00 BRK 000043C2: 00 BRK 000043C3: 00 BRK 000043C4: 00 BRK 000043C5: 00 BRK 000043C6: 00 BRK 000043C7: 00 BRK 000043C8: 00 BRK 000043C9: 00 BRK 000043CA: 00 BRK 000043CB: 00 BRK 000043CC: 00 BRK 000043CD: 00 BRK 000043CE: 00 BRK 000043CF: 00 BRK 000043D0: 00 BRK 000043D1: 00 BRK 000043D2: 00 BRK 000043D3: 0121 ORA ($21,X) 000043D5: 1000 BPL $00 000043D7: 00 BRK 000043D8: 00 BRK 000043D9: 0101 ORA ($01,X) 000043DB: 40 RTI 000043DC: 00 BRK 000043DD: 00 BRK 000043DE: 00 BRK 000043DF: 00 BRK 000043E0: 60 RTS 000043E1: 00 BRK 000043E2: 00 BRK 000043E3: 1021 BPL $21 000043E5: 0100 ORA ($00,X) 000043E7: 00 BRK 000043E8: 80 .DB $80 000043E9: 00 BRK 000043EA: 00 BRK 000043EB: 00 BRK 000043EC: 00 BRK 000043ED: 40 RTI 000043EE: 0101 ORA ($01,X) 000043F0: 00 BRK 000043F1: 00 BRK 000043F2: 00 BRK 000043F3: 00 BRK 000043F4: 08 PHP 000043F5: 1000 BPL $00 000043F7: 00 BRK 000043F8: 00 BRK 000043F9: 00 BRK 000043FA: 00 BRK 000043FB: 04 .DB $04 000043FC: 00 BRK 000043FD: 00 BRK 000043FE: 00 BRK 000043FF: 00 BRK 00004400: 0C .DB $0C 00004401: 00 BRK 00004402: 00 BRK 00004403: 1008 BPL $08 00004405: 00 BRK 00004406: 00 BRK 00004407: 00 BRK 00004408: 02 .DB $02 00004409: 00 BRK 0000440A: 00 BRK 0000440B: 00 BRK 0000440C: 00 BRK 0000440D: 04 .DB $04 0000440E: 00 BRK 0000440F: 00 BRK 00004410: 04 .DB $04 00004411: 02 .DB $02 00004412: 0100 ORA ($00,X) 00004414: 00 BRK 00004415: 00 BRK 00004416: 00 BRK 00004417: 00 BRK 00004418: 0F .DB $0F 00004419: 07 .DB $07 0000441A: 03 .DB $03 0000441B: 00 BRK 0000441C: 00 BRK 0000441D: 0101 ORA ($01,X) 0000441F: 0100 ORA ($00,X) 00004421: 00 BRK 00004422: 00 BRK 00004423: 00 BRK 00004424: 00 BRK 00004425: 00 BRK 00004426: 0103 ORA ($03,X) 00004428: 00 BRK 00004429: 00 BRK 0000442A: 00 BRK 0000442B: 00 BRK 0000442C: 00 BRK 0000442D: 00 BRK 0000442E: 0103 ORA ($03,X) 00004430: 07 .DB $07 00004431: 07 .DB $07 00004432: 07 .DB $07 00004433: 03 .DB $03 00004434: 0100 ORA ($00,X) 00004436: 00 BRK 00004437: 00 BRK 00004438: 07 .DB $07 00004439: 07 .DB $07 0000443A: 07 .DB $07 0000443B: 07 .DB $07 0000443C: 03 .DB $03 0000443D: 0100 ORA ($00,X) 0000443F: 00 BRK 00004440: 00 BRK 00004441: 00 BRK 00004442: 00 BRK 00004443: 00 BRK 00004444: 00 BRK 00004445: 00 BRK 00004446: 00 BRK 00004447: 00 BRK 00004448: 00 BRK 00004449: 00 BRK 0000444A: 00 BRK 0000444B: 00 BRK 0000444C: 00 BRK 0000444D: 00 BRK 0000444E: 00 BRK 0000444F: 00 BRK 00004450: 00 BRK 00004451: 42 .DB $42 00004452: 39FFFF AND $FFFF,Y 00004455: FF .DB $FF 00004456: FF .DB $FF 00004457: FF .DB $FF 00004458: FF .DB $FF 00004459: FF .DB $FF 0000445A: FF .DB $FF 0000445B: FF .DB $FF 0000445C: FF .DB $FF 0000445D: FF .DB $FF 0000445E: FF .DB $FF 0000445F: FF .DB $FF 00004460: 7F .DB $7F 00004461: 3F .DB $3F 00004462: 1F .DB $1F 00004463: 0F .DB $0F 00004464: 1F .DB $1F 00004465: FF .DB $FF 00004466: FF .DB $FF 00004467: FF .DB $FF 00004468: FF .DB $FF 00004469: 7F .DB $7F 0000446A: 3F .DB $3F 0000446B: 1F .DB $1F 0000446C: 1F .DB $1F 0000446D: FF .DB $FF 0000446E: FF .DB $FF 0000446F: FF .DB $FF 00004470: F8 SED 00004471: F7 .DB $F7 00004472: EF .DB $EF 00004473: FF .DB $FF 00004474: FF .DB $FF 00004475: FE7E3E INC $3E7E,X 00004478: FF .DB $FF 00004479: FF .DB $FF 0000447A: FF .DB $FF 0000447B: FF .DB $FF 0000447C: FF .DB $FF 0000447D: FF .DB $FF 0000447E: FF .DB $FF 0000447F: 7F .DB $7F 00004480: 07 .DB $07 00004481: 00 BRK 00004482: 00 BRK 00004483: 00 BRK 00004484: 00 BRK 00004485: 00 BRK 00004486: 00 BRK 00004487: 00 BRK 00004488: 07 .DB $07 00004489: 03 .DB $03 0000448A: 03 .DB $03 0000448B: 0100 ORA ($00,X) 0000448D: 00 BRK 0000448E: 00 BRK 0000448F: 00 BRK 00004490: 00 BRK 00004491: 00 BRK 00004492: 00 BRK 00004493: C0E0 CPY #$E0 00004495: F0DB BEQ $DB 00004497: F600 INC $00,X 00004499: 80 .DB $80 0000449A: 80 .DB $80 0000449B: C0E0 CPY #$E0 0000449D: F0FF BEQ $FF 0000449F: FF .DB $FF 000044A0: CB .DB $CB 000044A1: E0C4 CPX #$C4 000044A3: 02 .DB $02 000044A4: D1E1 CMP ($E1),Y 000044A6: D183 CMP ($83),Y 000044A8: FF .DB $FF 000044A9: FF .DB $FF 000044AA: FF .DB $FF 000044AB: FF .DB $FF 000044AC: FF .DB $FF 000044AD: FF .DB $FF 000044AE: FF .DB $FF 000044AF: FF .DB $FF 000044B0: 0F .DB $0F 000044B1: FF .DB $FF 000044B2: E08F CPX #$8F 000044B4: 6E44EE ROR $EE44 000044B7: 60 RTS 000044B8: FF .DB $FF 000044B9: FF .DB $FF 000044BA: FF .DB $FF 000044BB: F080 BEQ $80 000044BD: 00 BRK 000044BE: 00 BRK 000044BF: 9F .DB $9F 000044C0: 83 .DB $83 000044C1: E0E4 CPX #$E4 000044C3: C661 DEC $61 000044C5: 33 .DB $33 000044C6: 1F .DB $1F 000044C7: 0F .DB $0F 000044C8: FF .DB $FF 000044C9: FF .DB $FF 000044CA: F9F97F SBC $7FF9,Y 000044CD: 3F .DB $3F 000044CE: 1F .DB $1F 000044CF: 0F .DB $0F 000044D0: 00 BRK 000044D1: 00 BRK 000044D2: 00 BRK 000044D3: 03 .DB $03 000044D4: 07 .DB $07 000044D5: 0F .DB $0F 000044D6: 5B .DB $5B 000044D7: A7 .DB $A7 000044D8: 00 BRK 000044D9: 0101 ORA ($01,X) 000044DB: 03 .DB $03 000044DC: 07 .DB $07 000044DD: 0F .DB $0F 000044DE: FF .DB $FF 000044DF: FF .DB $FF 000044E0: 73 .DB $73 000044E1: 07 .DB $07 000044E2: 27 .DB $27 000044E3: 40 RTI 000044E4: 8B .DB $8B 000044E5: 87 .DB $87 000044E6: 8B .DB $8B 000044E7: C1FF CMP ($FF,X) 000044E9: FF .DB $FF 000044EA: FF .DB $FF 000044EB: FF .DB $FF 000044EC: FF .DB $FF 000044ED: FF .DB $FF 000044EE: FF .DB $FF 000044EF: FF .DB $FF 000044F0: F0FF BEQ $FF 000044F2: 0F .DB $0F 000044F3: E1EC SBC ($EC,X) 000044F5: 44 .DB $44 000044F6: EE0CFF INC $FF0C 000044F9: FF .DB $FF 000044FA: FF .DB $FF 000044FB: 1F .DB $1F 000044FC: 03 .DB $03 000044FD: 0101 ORA ($01,X) 000044FF: F3 .DB $F3 00004500: 80 .DB $80 00004501: 0E4EC6 ASL $C64E 00004504: 0C .DB $0C 00004505: 98 TYA 00004506: F0E0 BEQ $E0 00004508: FF .DB $FF 00004509: FF .DB $FF 0000450A: 3F .DB $3F 0000450B: 3F .DB $3F 0000450C: FC .DB $FC 0000450D: F8 SED 0000450E: F0E0 BEQ $E0 00004510: 00 BRK 00004511: 42 .DB $42 00004512: 9C .DB $9C 00004513: FF .DB $FF 00004514: FF .DB $FF 00004515: FF .DB $FF 00004516: FF .DB $FF 00004517: FF .DB $FF 00004518: FF .DB $FF 00004519: FF .DB $FF 0000451A: FF .DB $FF 0000451B: FF .DB $FF 0000451C: FF .DB $FF 0000451D: FF .DB $FF 0000451E: FF .DB $FF 0000451F: FF .DB $FF 00004520: FEFCF8 INC $F8FC,X 00004523: F0F8 BEQ $F8 00004525: FF .DB $FF 00004526: FF .DB $FF 00004527: FF .DB $FF 00004528: FF .DB $FF 00004529: FEFCF8 INC $F8FC,X 0000452C: F8 SED 0000452D: FF .DB $FF 0000452E: FF .DB $FF 0000452F: FF .DB $FF 00004530: 1F .DB $1F 00004531: EF .DB $EF 00004532: F7 .DB $F7 00004533: FF .DB $FF 00004534: FF .DB $FF 00004535: FE7C70 INC $707C,X 00004538: FF .DB $FF 00004539: FF .DB $FF 0000453A: FF .DB $FF 0000453B: FF .DB $FF 0000453C: FF .DB $FF 0000453D: FF .DB $FF 0000453E: FEFCE0 INC $E0FC,X 00004541: 00 BRK 00004542: 00 BRK 00004543: 00 BRK 00004544: 00 BRK 00004545: 00 BRK 00004546: 00 BRK 00004547: 00 BRK 00004548: E080 CPX #$80 0000454A: 80 .DB $80 0000454B: 00 BRK 0000454C: 00 BRK 0000454D: 00 BRK 0000454E: 00 BRK 0000454F: 00 BRK 00004550: 204080 JSR $8040 00004553: 00 BRK 00004554: 00 BRK 00004555: 00 BRK 00004556: 00 BRK 00004557: 00 BRK 00004558: F0E0 BEQ $E0 0000455A: C000 CPY #$00 0000455C: 00 BRK 0000455D: 80 .DB $80 0000455E: 80 .DB $80 0000455F: 80 .DB $80 00004560: 00 BRK 00004561: 00 BRK 00004562: 00 BRK 00004563: 00 BRK 00004564: 00 BRK 00004565: 00 BRK 00004566: 80 .DB $80 00004567: C000 CPY #$00 00004569: 00 BRK 0000456A: 00 BRK 0000456B: 00 BRK 0000456C: 00 BRK 0000456D: 00 BRK 0000456E: 80 .DB $80 0000456F: C0E0 CPY #$E0 00004571: E0E0 CPX #$E0 00004573: C080 CPY #$80 00004575: 00 BRK 00004576: 00 BRK 00004577: 00 BRK 00004578: E0E0 CPX #$E0 0000457A: E0E0 CPX #$E0 0000457C: C080 CPY #$80 0000457E: 00 BRK 0000457F: 00 BRK 00004580: 00 BRK 00004581: 00 BRK 00004582: 00 BRK 00004583: 00 BRK 00004584: 00 BRK 00004585: 00 BRK 00004586: 00 BRK 00004587: 00 BRK 00004588: 00 BRK 00004589: 00 BRK 0000458A: 00 BRK 0000458B: 00 BRK 0000458C: 00 BRK 0000458D: 00 BRK 0000458E: 00 BRK 0000458F: 00 BRK 00004590: FF .DB $FF 00004591: FF .DB $FF 00004592: FF .DB $FF 00004593: FF .DB $FF 00004594: FF .DB $FF 00004595: FF .DB $FF 00004596: FF .DB $FF 00004597: FF .DB $FF 00004598: FF .DB $FF 00004599: FF .DB $FF 0000459A: FF .DB $FF 0000459B: FF .DB $FF 0000459C: FF .DB $FF 0000459D: FF .DB $FF 0000459E: FF .DB $FF 0000459F: FF .DB $FF 000045A0: FF .DB $FF 000045A1: FF .DB $FF 000045A2: FF .DB $FF 000045A3: FF .DB $FF 000045A4: FF .DB $FF 000045A5: FF .DB $FF 000045A6: FF .DB $FF 000045A7: FF .DB $FF 000045A8: FF .DB $FF 000045A9: FF .DB $FF 000045AA: FF .DB $FF 000045AB: FF .DB $FF 000045AC: FF .DB $FF 000045AD: FF .DB $FF 000045AE: FF .DB $FF 000045AF: FF .DB $FF 000045B0: FF .DB $FF 000045B1: FF .DB $FF 000045B2: FF .DB $FF 000045B3: FF .DB $FF 000045B4: FF .DB $FF 000045B5: FF .DB $FF 000045B6: FF .DB $FF 000045B7: FF .DB $FF 000045B8: FF .DB $FF 000045B9: FF .DB $FF 000045BA: FF .DB $FF 000045BB: FF .DB $FF 000045BC: FF .DB $FF 000045BD: FF .DB $FF 000045BE: FF .DB $FF 000045BF: FF .DB $FF 000045C0: FF .DB $FF 000045C1: FF .DB $FF 000045C2: FF .DB $FF 000045C3: FF .DB $FF 000045C4: FF .DB $FF 000045C5: FF .DB $FF 000045C6: FF .DB $FF 000045C7: FF .DB $FF 000045C8: FF .DB $FF 000045C9: FF .DB $FF 000045CA: FF .DB $FF 000045CB: FF .DB $FF 000045CC: FF .DB $FF 000045CD: FF .DB $FF 000045CE: FF .DB $FF 000045CF: FF .DB $FF 000045D0: FF .DB $FF 000045D1: FF .DB $FF 000045D2: FF .DB $FF 000045D3: FF .DB $FF 000045D4: FF .DB $FF 000045D5: FF .DB $FF 000045D6: FF .DB $FF 000045D7: FF .DB $FF 000045D8: FF .DB $FF 000045D9: FF .DB $FF 000045DA: FF .DB $FF 000045DB: FF .DB $FF 000045DC: FF .DB $FF 000045DD: FF .DB $FF 000045DE: FF .DB $FF 000045DF: FF .DB $FF 000045E0: FF .DB $FF 000045E1: FF .DB $FF 000045E2: FF .DB $FF 000045E3: FF .DB $FF 000045E4: FF .DB $FF 000045E5: FF .DB $FF 000045E6: FF .DB $FF 000045E7: FF .DB $FF 000045E8: FF .DB $FF 000045E9: FF .DB $FF 000045EA: FF .DB $FF 000045EB: FF .DB $FF 000045EC: FF .DB $FF 000045ED: FF .DB $FF 000045EE: FF .DB $FF 000045EF: FF .DB $FF 000045F0: FF .DB $FF 000045F1: FF .DB $FF 000045F2: FF .DB $FF 000045F3: FF .DB $FF 000045F4: FF .DB $FF 000045F5: FF .DB $FF 000045F6: FF .DB $FF 000045F7: FF .DB $FF 000045F8: FF .DB $FF 000045F9: FF .DB $FF 000045FA: FF .DB $FF 000045FB: FF .DB $FF 000045FC: FF .DB $FF 000045FD: FF .DB $FF 000045FE: FF .DB $FF 000045FF: FF .DB $FF 00004600: FF .DB $FF 00004601: FF .DB $FF 00004602: FF .DB $FF 00004603: FF .DB $FF 00004604: FF .DB $FF 00004605: FF .DB $FF 00004606: FF .DB $FF 00004607: FF .DB $FF 00004608: FF .DB $FF 00004609: FF .DB $FF 0000460A: FF .DB $FF 0000460B: FF .DB $FF 0000460C: FF .DB $FF 0000460D: FF .DB $FF 0000460E: FF .DB $FF 0000460F: FF .DB $FF 00004610: 00 BRK 00004611: 00 BRK 00004612: 1F .DB $1F 00004613: 3F .DB $3F 00004614: 3F .DB $3F 00004615: 7F .DB $7F 00004616: 7F .DB $7F 00004617: 7F .DB $7F 00004618: 00 BRK 00004619: 0F .DB $0F 0000461A: 28 PLP 0000461B: 5C .DB $5C 0000461C: 3F .DB $3F 0000461D: 7F .DB $7F 0000461E: 7F .DB $7F 0000461F: 7F .DB $7F 00004620: 7F .DB $7F 00004621: 3E1F1F ROL $1F1F,X 00004624: 0F .DB $0F 00004625: 0F .DB $0F 00004626: 0F .DB $0F 00004627: 07 .DB $07 00004628: 7F .DB $7F 00004629: 3E1F1F ROL $1F1F,X 0000462C: 08 PHP 0000462D: 00 BRK 0000462E: 00 BRK 0000462F: 00 BRK 00004630: 00 BRK 00004631: 60 RTS 00004632: F0F8 BEQ $F8 00004634: F8 SED 00004635: F8 SED 00004636: FC .DB $FC 00004637: FC .DB $FC 00004638: 00 BRK 00004639: 80 .DB $80 0000463A: 40 RTI 0000463B: C4F6 CPY $F6 0000463D: FEFCFC INC $FCFC,X 00004640: F8 SED 00004641: F0F0 BEQ $F0 00004643: E080 CPX #$80 00004645: 80 .DB $80 00004646: C0C0 CPY #$C0 00004648: F8 SED 00004649: F000 BEQ $00 0000464B: 00 BRK 0000464C: 80 .DB $80 0000464D: 00 BRK 0000464E: 00 BRK 0000464F: 00 BRK 00004650: 00 BRK 00004651: 1F .DB $1F 00004652: 3F .DB $3F 00004653: 7F .DB $7F 00004654: FF .DB $FF 00004655: FF .DB $FF 00004656: 3E0F00 ROL $000F,X 00004659: 1C .DB $1C 0000465A: 3F .DB $3F 0000465B: 7F .DB $7F 0000465C: FF .DB $FF 0000465D: FF .DB $FF 0000465E: 3E7000 ROL $0070,X 00004661: 00 BRK 00004662: 00 BRK 00004663: 0100 ORA ($00,X) 00004665: 00 BRK 00004666: 00 BRK 00004667: 00 BRK 00004668: 00 BRK 00004669: 00 BRK 0000466A: 00 BRK 0000466B: 00 BRK 0000466C: 00 BRK 0000466D: 00 BRK 0000466E: 00 BRK 0000466F: 00 BRK 00004670: 00 BRK 00004671: E0F0 CPX #$F0 00004673: FC .DB $FC 00004674: FEFEFF INC $FFFE,X 00004677: FC .DB $FC 00004678: 00 BRK 00004679: 60 RTS 0000467A: F0F8 BEQ $F8 0000467C: FC .DB $FC 0000467D: FC .DB $FC 0000467E: FC .DB $FC 0000467F: FF .DB $FF 00004680: 7C .DB $7C 00004681: FC .DB $FC 00004682: F8 SED 00004683: F0E0 BEQ $E0 00004685: 00 BRK 00004686: 00 BRK 00004687: 00 BRK 00004688: 7C .DB $7C 00004689: FC .DB $FC 0000468A: 88 DEY 0000468B: 00 BRK 0000468C: 00 BRK 0000468D: 00 BRK 0000468E: 00 BRK 0000468F: 00 BRK 00004690: 00 BRK 00004691: 07 .DB $07 00004692: 07 .DB $07 00004693: 0F .DB $0F 00004694: 0F .DB $0F 00004695: 00 BRK 00004696: 1F .DB $1F 00004697: 3F .DB $3F 00004698: 00 BRK 00004699: 07 .DB $07 0000469A: 03 .DB $03 0000469B: 00 BRK 0000469C: 00 BRK 0000469D: 07 .DB $07 0000469E: 04 .DB $04 0000469F: 04 .DB $04 000046A0: 7F .DB $7F 000046A1: 7F .DB $7F 000046A2: 1F .DB $1F 000046A3: 1F .DB $1F 000046A4: 1F .DB $1F 000046A5: 1E0F1F ASL $1F0F,X 000046A8: 0C .DB $0C 000046A9: 9E .DB $9E 000046AA: FF .DB $FF 000046AB: 1F .DB $1F 000046AC: 1F .DB $1F 000046AD: 1E0F00 ASL $000F,X 000046B0: 00 BRK 000046B1: E0E0 CPX #$E0 000046B3: F0F0 BEQ $F0 000046B5: 00 BRK 000046B6: F8 SED 000046B7: FC .DB $FC 000046B8: 00 BRK 000046B9: E0C0 CPX #$C0 000046BB: 00 BRK 000046BC: 00 BRK 000046BD: E020 CPX #$20 000046BF: 20FEFE JSR $FEFE 000046C2: F8 SED 000046C3: F8 SED 000046C4: F8 SED 000046C5: 78 SEI 000046C6: F0F8 BEQ $F8 000046C8: 3079 BMI $79 000046CA: FF .DB $FF 000046CB: F8 SED 000046CC: F8 SED 000046CD: 78 SEI 000046CE: F000 BEQ $00 000046D0: 03 .DB $03 000046D1: 07 .DB $07 000046D2: 0508 ORA $08 000046D4: 1B .DB $1B 000046D5: 19053F ORA $3F05,Y 000046D8: 03 .DB $03 000046D9: 07 .DB $07 000046DA: 02 .DB $02 000046DB: 07 .DB $07 000046DC: 04 .DB $04 000046DD: 46E3 LSR $E3 000046DF: C2 .DB $C2 000046E0: 3F .DB $3F 000046E1: 0F .DB $0F 000046E2: 0537 ORA $37 000046E4: 3F .DB $3F 000046E5: 3F .DB $3F 000046E6: 3E1C42 ROL $421C,X 000046E9: 07 .DB $07 000046EA: 07 .DB $07 000046EB: 07 .DB $07 000046EC: 07 .DB $07 000046ED: 03 .DB $03 000046EE: 02 .DB $02 000046EF: 00 BRK 000046F0: E0F0 CPX #$F0 000046F2: 5008 BVC $08 000046F4: 6CCCD0 JMP ($D0CC) 000046F7: FEE0F0 INC $F0E0,X 000046FA: A0F0 LDY #$F0 000046FC: 9032 BCC $32 000046FE: E3 .DB $E3 000046FF: 21FE AND ($FE,X) 00004701: F8 SED 00004702: D0FB BNE $FB 00004704: FF .DB $FF 00004705: FF .DB $FF 00004706: 3E0C20 ROL $200C,X 00004709: 70F0 BVS $F0 0000470B: F8 SED 0000470C: F8 SED 0000470D: F030 BEQ $30 0000470F: 00 BRK 00004710: 00 BRK 00004711: 00 BRK 00004712: 79F9F3 ADC $F3F9,Y 00004715: FF .DB $FF 00004716: 7B .DB $7B 00004717: 3F .DB $3F 00004718: 00 BRK 00004719: 0100 ORA ($00,X) 0000471B: 00 BRK 0000471C: 00 BRK 0000471D: 1E7F3E ASL $3E7F,X 00004720: 3F .DB $3F 00004721: 3F .DB $3F 00004722: 7B .DB $7B 00004723: 7F .DB $7F 00004724: FB .DB $FB 00004725: F179 SBC ($79),Y 00004727: 38 SEC 00004728: 3C .DB $3C 00004729: 3E7F7E ROL $7E7F,X 0000472C: 18 CLC 0000472D: 00 BRK 0000472E: 00 BRK 0000472F: 00 BRK 00004730: 00 BRK 00004731: 00 BRK 00004732: 80 .DB $80 00004733: B0B8 BCS $B8 00004735: C693 DEC $93 00004737: F7 .DB $F7 00004738: C0E0 CPY #$E0 0000473A: 40 RTI 0000473B: 00 BRK 0000473C: 00 BRK 0000473D: 3A .DB $3A 0000473E: EF .DB $EF 0000473F: 4B .DB $4B 00004740: E3 .DB $E3 00004741: F7 .DB $F7 00004742: 93 .DB $93 00004743: C6B8 DEC $B8 00004745: B080 BCS $80 00004747: 00 BRK 00004748: 5F .DB $5F 00004749: 4B .DB $4B 0000474A: EF .DB $EF 0000474B: 3A .DB $3A 0000474C: 00 BRK 0000474D: 00 BRK 0000474E: 60 RTS 0000474F: C030 CPY #$30 00004751: 7C .DB $7C 00004752: FF .DB $FF 00004753: FF .DB $FF 00004754: DF .DB $DF 00004755: 0B .DB $0B 00004756: 1F .DB $1F 00004757: 7F .DB $7F 00004758: 00 BRK 00004759: 0C .DB $0C 0000475A: 0F .DB $0F 0000475B: 1F .DB $1F 0000475C: 1F .DB $1F 0000475D: 0F .DB $0F 0000475E: 0E047F ASL $7F04 00004761: 0B .DB $0B 00004762: 33 .DB $33 00004763: 3610 ROL $10,X 00004765: 0A ASL A 00004766: 0F .DB $0F 00004767: 07 .DB $07 00004768: 84C7 STY $C7 0000476A: 4C090F JMP $0F09 0000476D: 050F ORA $0F 0000476F: 07 .DB $07 00004770: 38 SEC 00004771: 7C .DB $7C 00004772: FC .DB $FC 00004773: FC .DB $FC 00004774: ECA0F0 CPX $F0A0 00004777: FC .DB $FC 00004778: 00 BRK 00004779: 40 RTI 0000477A: C0E0 CPY #$E0 0000477C: E0E0 CPX #$E0 0000477E: E042 CPX #$42 00004780: FC .DB $FC 00004781: A098 LDY #$98 00004783: D8 CLD 00004784: 10A0 BPL $A0 00004786: E0C0 CPX #$C0 00004788: 43 .DB $43 00004789: C7 .DB $C7 0000478A: 62 .DB $62 0000478B: 20E040 JSR $40E0 0000478E: E0C0 CPX #$C0 00004790: 00 BRK 00004791: 010D ORA ($0D,X) 00004793: 1D63C9 ORA $C963,X 00004796: EF .DB $EF 00004797: C7 .DB $C7 00004798: 03 .DB $03 00004799: 04 .DB $04 0000479A: 00 BRK 0000479B: 00 BRK 0000479C: 5C .DB $5C 0000479D: F7 .DB $F7 0000479E: D2 .DB $D2 0000479F: FA .DB $FA 000047A0: EF .DB $EF 000047A1: C963 CMP #$63 000047A3: 1D0D01 ORA $010D,X 000047A6: 00 BRK 000047A7: 00 BRK 000047A8: D2 .DB $D2 000047A9: F7 .DB $F7 000047AA: 5C .DB $5C 000047AB: 00 BRK 000047AC: 00 BRK 000047AD: 02 .DB $02 000047AE: 07 .DB $07 000047AF: 03 .DB $03 000047B0: 1C .DB $1C 000047B1: 9E .DB $9E 000047B2: 8F .DB $8F 000047B3: DF .DB $DF 000047B4: FEDEFC INC $FCDE,X 000047B7: FC .DB $FC 000047B8: 00 BRK 000047B9: 00 BRK 000047BA: 00 BRK 000047BB: 18 CLC 000047BC: 7EFE7C ROR $7CFE,X 000047BF: 3C .DB $3C 000047C0: FC .DB $FC 000047C1: DEFFCF DEC $CFFF,X 000047C4: 9F .DB $9F 000047C5: 9E .DB $9E 000047C6: 00 BRK 000047C7: 00 BRK 000047C8: 7C .DB $7C 000047C9: FE7800 INC $0078,X 000047CC: 00 BRK 000047CD: 00 BRK 000047CE: 80 .DB $80 000047CF: 00 BRK 000047D0: 00 BRK 000047D1: 00 BRK 000047D2: 00 BRK 000047D3: 00 BRK 000047D4: 1E3F7D ASL $7D3F,X 000047D7: 78 SEI 000047D8: 00 BRK 000047D9: 00 BRK 000047DA: 0100 ORA ($00,X) 000047DC: 00 BRK 000047DD: 207C78 JSR $787C 000047E0: 7C .DB $7C 000047E1: FB .DB $FB 000047E2: FF .DB $FF 000047E3: FF .DB $FF 000047E4: 5F .DB $5F 000047E5: 1F .DB $1F 000047E6: 1F .DB $1F 000047E7: 1F .DB $1F 000047E8: 7C .DB $7C 000047E9: FEFFFE INC $FEFF,X 000047EC: 7C .DB $7C 000047ED: 60 RTS 000047EE: E0E1 CPX #$E1 000047F0: 00 BRK 000047F1: 00 BRK 000047F2: 00 BRK 000047F3: 00 BRK 000047F4: 00 BRK 000047F5: 80 .DB $80 000047F6: 80 .DB $80 000047F7: 00 BRK 000047F8: 7C .DB $7C 000047F9: 82 .DB $82 000047FA: 0182 ORA ($82,X) 000047FC: 7C .DB $7C 000047FD: 00 BRK 000047FE: 00 BRK 000047FF: 00 BRK 00004800: 00 BRK 00004801: 21A2 AND ($A2,X) 00004803: A3 .DB $A3 00004804: B3 .DB $B3 00004805: 8F .DB $8F 00004806: 27 .DB $27 00004807: FE1019 INC $1910,X 0000480A: 5A .DB $5A 0000480B: DF .DB $DF 0000480C: 4F .DB $4F 0000480D: 73 .DB $73 0000480E: DB .DB $DB 0000480F: 02 .DB $02 00004810: 00 BRK 00004811: 00 BRK 00004812: 00 BRK 00004813: 00 BRK 00004814: 03 .DB $03 00004815: 0F .DB $0F 00004816: 1F .DB $1F 00004817: 1F .DB $1F 00004818: 00 BRK 00004819: 00 BRK 0000481A: 00 BRK 0000481B: 03 .DB $03 0000481C: 0C .DB $0C 0000481D: 1022 BPL $22 0000481F: 201F1F JSR $1F1F 00004822: 0F .DB $0F 00004823: 03 .DB $03 00004824: 00 BRK 00004825: 00 BRK 00004826: 00 BRK 00004827: 00 BRK 00004828: 2123 AND ($23,X) 0000482A: 100C BPL $0C 0000482C: 03 .DB $03 0000482D: 00 BRK 0000482E: 00 BRK 0000482F: 00 BRK 00004830: 00 BRK 00004831: 00 BRK 00004832: 00 BRK 00004833: 00 BRK 00004834: C0F0 CPY #$F0 00004836: F8 SED 00004837: F8 SED 00004838: 00 BRK 00004839: 00 BRK 0000483A: 00 BRK 0000483B: C030 CPY #$30 0000483D: 08 PHP 0000483E: 64 .DB $64 0000483F: C4F8 CPY $F8 00004841: F8 SED 00004842: F0C0 BEQ $C0 00004844: 00 BRK 00004845: 00 BRK 00004846: 00 BRK 00004847: 00 BRK 00004848: 8404 STY $04 0000484A: 08 PHP 0000484B: 30C0 BMI $C0 0000484D: 00 BRK 0000484E: 00 BRK 0000484F: 00 BRK 00004850: 00 BRK 00004851: 00 BRK 00004852: 00 BRK 00004853: 00 BRK 00004854: 03 .DB $03 00004855: 0F .DB $0F 00004856: 1F .DB $1F 00004857: 1F .DB $1F 00004858: 00 BRK 00004859: 00 BRK 0000485A: 00 BRK 0000485B: 03 .DB $03 0000485C: 0C .DB $0C 0000485D: 1026 BPL $26 0000485F: 23 .DB $23 00004860: 1F .DB $1F 00004861: 1F .DB $1F 00004862: 0F .DB $0F 00004863: 03 .DB $03 00004864: 00 BRK 00004865: 00 BRK 00004866: 00 BRK 00004867: 00 BRK 00004868: 2120 AND ($20,X) 0000486A: 100C BPL $0C 0000486C: 03 .DB $03 0000486D: 00 BRK 0000486E: 00 BRK 0000486F: 00 BRK 00004870: 00 BRK 00004871: 00 BRK 00004872: 00 BRK 00004873: 00 BRK 00004874: C0F0 CPY #$F0 00004876: F8 SED 00004877: F8 SED 00004878: 00 BRK 00004879: 00 BRK 0000487A: 00 BRK 0000487B: C030 CPY #$30 0000487D: 08 PHP 0000487E: 44 .DB $44 0000487F: 04 .DB $04 00004880: F8 SED 00004881: F8 SED 00004882: F0C0 BEQ $C0 00004884: 00 BRK 00004885: 00 BRK 00004886: 00 BRK 00004887: 00 BRK 00004888: 84C4 STY $C4 0000488A: 08 PHP 0000488B: 30C0 BMI $C0 0000488D: 00 BRK 0000488E: 00 BRK 0000488F: 00 BRK 00004890: 00 BRK 00004891: 00 BRK 00004892: 00 BRK 00004893: 00 BRK 00004894: 03 .DB $03 00004895: 0F .DB $0F 00004896: 1F .DB $1F 00004897: 1F .DB $1F 00004898: 00 BRK 00004899: 00 BRK 0000489A: 00 BRK 0000489B: 03 .DB $03 0000489C: 0C .DB $0C 0000489D: 1020 BPL $20 0000489F: 211F AND ($1F,X) 000048A1: 1F .DB $1F 000048A2: 0F .DB $0F 000048A3: 03 .DB $03 000048A4: 00 BRK 000048A5: 00 BRK 000048A6: 00 BRK 000048A7: 00 BRK 000048A8: 23 .DB $23 000048A9: 2610 ROL $10 000048AB: 0C .DB $0C 000048AC: 03 .DB $03 000048AD: 00 BRK 000048AE: 00 BRK 000048AF: 00 BRK 000048B0: 00 BRK 000048B1: 00 BRK 000048B2: 00 BRK 000048B3: 00 BRK 000048B4: C0F0 CPY #$F0 000048B6: F8 SED 000048B7: F8 SED 000048B8: 00 BRK 000048B9: 00 BRK 000048BA: 00 BRK 000048BB: C030 CPY #$30 000048BD: 08 PHP 000048BE: C484 CPY $84 000048C0: F8 SED 000048C1: F8 SED 000048C2: F0C0 BEQ $C0 000048C4: 00 BRK 000048C5: 00 BRK 000048C6: 00 BRK 000048C7: 00 BRK 000048C8: 04 .DB $04 000048C9: 44 .DB $44 000048CA: 08 PHP 000048CB: 30C0 BMI $C0 000048CD: 00 BRK 000048CE: 00 BRK 000048CF: 00 BRK 000048D0: 00 BRK 000048D1: 00 BRK 000048D2: 00 BRK 000048D3: 00 BRK 000048D4: 03 .DB $03 000048D5: 0F .DB $0F 000048D6: 1F .DB $1F 000048D7: 1F .DB $1F 000048D8: 00 BRK 000048D9: 00 BRK 000048DA: 00 BRK 000048DB: 03 .DB $03 000048DC: 0C .DB $0C 000048DD: 1023 BPL $23 000048DF: 211F AND ($1F,X) 000048E1: 1F .DB $1F 000048E2: 0F .DB $0F 000048E3: 03 .DB $03 000048E4: 00 BRK 000048E5: 00 BRK 000048E6: 00 BRK 000048E7: 00 BRK 000048E8: 202210 JSR $1022 000048EB: 0C .DB $0C 000048EC: 03 .DB $03 000048ED: 00 BRK 000048EE: 00 BRK 000048EF: 00 BRK 000048F0: 00 BRK 000048F1: 00 BRK 000048F2: 00 BRK 000048F3: 00 BRK 000048F4: C0F0 CPY #$F0 000048F6: F8 SED 000048F7: F8 SED 000048F8: 00 BRK 000048F9: 00 BRK 000048FA: 00 BRK 000048FB: C030 CPY #$30 000048FD: 08 PHP 000048FE: 04 .DB $04 000048FF: 84F8 STY $F8 00004901: F8 SED 00004902: F0C0 BEQ $C0 00004904: 00 BRK 00004905: 00 BRK 00004906: 00 BRK 00004907: 00 BRK 00004908: C464 CPY $64 0000490A: 08 PHP 0000490B: 30C0 BMI $C0 0000490D: 00 BRK 0000490E: 00 BRK 0000490F: 00 BRK 00004910: 00 BRK 00004911: 00 BRK 00004912: 00 BRK 00004913: 0F .DB $0F 00004914: 3060 BMI $60 00004916: 3F .DB $3F 00004917: 7F .DB $7F 00004918: 00 BRK 00004919: 00 BRK 0000491A: 00 BRK 0000491B: 00 BRK 0000491C: 2F .DB $2F 0000491D: 3F .DB $3F 0000491E: 60 RTS 0000491F: 207F3F JSR $3F7F 00004922: 60 RTS 00004923: 300F BMI $0F 00004925: 00 BRK 00004926: 00 BRK 00004927: 00 BRK 00004928: 20603F JSR $3F60 0000492B: 2F .DB $2F 0000492C: 00 BRK 0000492D: 00 BRK 0000492E: 00 BRK 0000492F: 00 BRK 00004930: 00 BRK 00004931: 00 BRK 00004932: 00 BRK 00004933: F8 SED 00004934: 0603 ASL $03 00004936: FEFF00 INC $00FF,X 00004939: 00 BRK 0000493A: 00 BRK 0000493B: 00 BRK 0000493C: FA .DB $FA 0000493D: FE0302 INC $0203,X 00004940: FF .DB $FF 00004941: FE0306 INC $0603,X 00004944: F8 SED 00004945: 00 BRK 00004946: 00 BRK 00004947: 00 BRK 00004948: 02 .DB $02 00004949: 03 .DB $03 0000494A: FEFA00 INC $00FA,X 0000494D: 00 BRK 0000494E: 00 BRK 0000494F: 00 BRK 00004950: 00 BRK 00004951: 00 BRK 00004952: 00 BRK 00004953: 00 BRK 00004954: 2F .DB $2F 00004955: 3F .DB $3F 00004956: 60 RTS 00004957: 200000 JSR $0000 0000495A: 00 BRK 0000495B: 0F .DB $0F 0000495C: 3060 BMI $60 0000495E: 3F .DB $3F 0000495F: 7F .DB $7F 00004960: 20603F JSR $3F60 00004963: 2F .DB $2F 00004964: 00 BRK 00004965: 00 BRK 00004966: 00 BRK 00004967: 00 BRK 00004968: 7F .DB $7F 00004969: 3F .DB $3F 0000496A: 60 RTS 0000496B: 300F BMI $0F 0000496D: 00 BRK 0000496E: 00 BRK 0000496F: 00 BRK 00004970: 00 BRK 00004971: 00 BRK 00004972: 00 BRK 00004973: 00 BRK 00004974: FA .DB $FA 00004975: FE0302 INC $0203,X 00004978: 00 BRK 00004979: 00 BRK 0000497A: 00 BRK 0000497B: F8 SED 0000497C: 0603 ASL $03 0000497E: FEFF02 INC $02FF,X 00004981: 03 .DB $03 00004982: FEFA00 INC $00FA,X 00004985: 00 BRK 00004986: 00 BRK 00004987: 00 BRK 00004988: FF .DB $FF 00004989: FE0306 INC $0603,X 0000498C: F8 SED 0000498D: 00 BRK 0000498E: 00 BRK 0000498F: 00 BRK 00004990: 00 BRK 00004991: 44 .DB $44 00004992: 00 BRK 00004993: 4120 EOR ($20,X) 00004995: 4B .DB $4B 00004996: 27 .DB $27 00004997: 1F .DB $1F 00004998: 00 BRK 00004999: 00 BRK 0000499A: 00 BRK 0000499B: 40 RTI 0000499C: 200000 JSR $0000 0000499F: 010F ORA ($0F,X) 000049A1: 1E1F1F ASL $1F1F,X 000049A4: 1F .DB $1F 000049A5: 0F .DB $0F 000049A6: 0F .DB $0F 000049A7: 03 .DB $03 000049A8: 03 .DB $03 000049A9: 07 .DB $07 000049AA: 0606 ASL $06 000049AC: 07 .DB $07 000049AD: 03 .DB $03 000049AE: 00 BRK 000049AF: 00 BRK 000049B0: 00 BRK 000049B1: 205020 JSR $2050 000049B4: 60 RTS 000049B5: 48 PHA 000049B6: E0F0 CPX #$F0 000049B8: 00 BRK 000049B9: 00 BRK 000049BA: 40 RTI 000049BB: 00 BRK 000049BC: 00 BRK 000049BD: 08 PHP 000049BE: 00 BRK 000049BF: 40 RTI 000049C0: F8 SED 000049C1: 78 SEI 000049C2: 3C .DB $3C 000049C3: 3C .DB $3C 000049C4: 3C .DB $3C 000049C5: FC .DB $FC 000049C6: F8 SED 000049C7: E0E0 CPX #$E0 000049C9: F0D0 BEQ $D0 000049CB: D0F0 BNE $F0 000049CD: E000 CPX #$00 000049CF: 00 BRK 000049D0: 1001 BPL $01 000049D2: 2A ROL A 000049D3: 0C .DB $0C 000049D4: A617 LDX $17 000049D6: 1F .DB $1F 000049D7: 1F .DB $1F 000049D8: 00 BRK 000049D9: 00 BRK 000049DA: 02 .DB $02 000049DB: 00 BRK 000049DC: 80 .DB $80 000049DD: 00 BRK 000049DE: 03 .DB $03 000049DF: 07 .DB $07 000049E0: 5E3C3D LSR $3D3C,X 000049E3: 3D3E1F AND $1F3E,X 000049E6: 0F .DB $0F 000049E7: 07 .DB $07 000049E8: 07 .DB $07 000049E9: 0F .DB $0F 000049EA: 0E0E0F ASL $0F0E 000049ED: 07 .DB $07 000049EE: 03 .DB $03 000049EF: 00 BRK 000049F0: 00 BRK 000049F1: 00 BRK 000049F2: 80 .DB $80 000049F3: C8 INY 000049F4: 60 RTS 000049F5: E0F4 CPX #$F4 000049F7: F8 SED 000049F8: 00 BRK 000049F9: 00 BRK 000049FA: 00 BRK 000049FB: 08 PHP 000049FC: 00 BRK 000049FD: 80 .DB $80 000049FE: 24C0 BIT $C0 00004A00: 7C .DB $7C 00004A01: 1C .DB $1C 00004A02: 2E2E1E ROL $1E2E 00004A05: FC .DB $FC 00004A06: F8 SED 00004A07: E0F0 CPX #$F0 00004A09: F8 SED 00004A0A: D8 CLD 00004A0B: D8 CLD 00004A0C: F8 SED 00004A0D: F0C0 BEQ $C0 00004A0F: 00 BRK 00004A10: FF .DB $FF 00004A11: FF .DB $FF 00004A12: 38 SEC 00004A13: 6CC683 JMP ($83C6) 00004A16: FF .DB $FF 00004A17: FF .DB $FF 00004A18: FF .DB $FF 00004A19: FF .DB $FF 00004A1A: 38 SEC 00004A1B: 6CC683 JMP ($83C6) 00004A1E: FF .DB $FF 00004A1F: FF .DB $FF 00004A20: FF .DB $FF 00004A21: FF .DB $FF 00004A22: 38 SEC 00004A23: 6CC683 JMP ($83C6) 00004A26: FF .DB $FF 00004A27: FF .DB $FF 00004A28: FF .DB $FF 00004A29: FF .DB $FF 00004A2A: 38 SEC 00004A2B: 6CC683 JMP ($83C6) 00004A2E: FF .DB $FF 00004A2F: FF .DB $FF 00004A30: 92 .DB $92 00004A31: 54 .DB $54 00004A32: 38 SEC 00004A33: FE3854 INC $5438,X 00004A36: 92 .DB $92 00004A37: 00 BRK 00004A38: 00 BRK 00004A39: 00 BRK 00004A3A: 00 BRK 00004A3B: 00 BRK 00004A3C: 00 BRK 00004A3D: 00 BRK 00004A3E: 00 BRK 00004A3F: 00 BRK 00004A40: FF .DB $FF 00004A41: FF .DB $FF 00004A42: FF .DB $FF 00004A43: FF .DB $FF 00004A44: FF .DB $FF 00004A45: FF .DB $FF 00004A46: FF .DB $FF 00004A47: FF .DB $FF 00004A48: FF .DB $FF 00004A49: FF .DB $FF 00004A4A: FF .DB $FF 00004A4B: FF .DB $FF 00004A4C: FF .DB $FF 00004A4D: FF .DB $FF 00004A4E: FF .DB $FF 00004A4F: FF .DB $FF 00004A50: FF .DB $FF 00004A51: FF .DB $FF 00004A52: FF .DB $FF 00004A53: FF .DB $FF 00004A54: FF .DB $FF 00004A55: FF .DB $FF 00004A56: FF .DB $FF 00004A57: FF .DB $FF 00004A58: FF .DB $FF 00004A59: FF .DB $FF 00004A5A: FF .DB $FF 00004A5B: FF .DB $FF 00004A5C: FF .DB $FF 00004A5D: FF .DB $FF 00004A5E: FF .DB $FF 00004A5F: FF .DB $FF 00004A60: FF .DB $FF 00004A61: FF .DB $FF 00004A62: FF .DB $FF 00004A63: FF .DB $FF 00004A64: FF .DB $FF 00004A65: FF .DB $FF 00004A66: FF .DB $FF 00004A67: FF .DB $FF 00004A68: FF .DB $FF 00004A69: FF .DB $FF 00004A6A: FF .DB $FF 00004A6B: FF .DB $FF 00004A6C: FF .DB $FF 00004A6D: FF .DB $FF 00004A6E: FF .DB $FF 00004A6F: FF .DB $FF 00004A70: FF .DB $FF 00004A71: FF .DB $FF 00004A72: FF .DB $FF 00004A73: FF .DB $FF 00004A74: FF .DB $FF 00004A75: FF .DB $FF 00004A76: FF .DB $FF 00004A77: FF .DB $FF 00004A78: FF .DB $FF 00004A79: FF .DB $FF 00004A7A: FF .DB $FF 00004A7B: FF .DB $FF 00004A7C: FF .DB $FF 00004A7D: FF .DB $FF 00004A7E: FF .DB $FF 00004A7F: FF .DB $FF 00004A80: FF .DB $FF 00004A81: FF .DB $FF 00004A82: FF .DB $FF 00004A83: FF .DB $FF 00004A84: FF .DB $FF 00004A85: FF .DB $FF 00004A86: FF .DB $FF 00004A87: FF .DB $FF 00004A88: FF .DB $FF 00004A89: FF .DB $FF 00004A8A: FF .DB $FF 00004A8B: FF .DB $FF 00004A8C: FF .DB $FF 00004A8D: FF .DB $FF 00004A8E: FF .DB $FF 00004A8F: FF .DB $FF 00004A90: 00 BRK 00004A91: 00 BRK 00004A92: 00 BRK 00004A93: 00 BRK 00004A94: 00 BRK 00004A95: 23 .DB $23 00004A96: 97 .DB $97 00004A97: 2F .DB $2F 00004A98: 00 BRK 00004A99: 00 BRK 00004A9A: 00 BRK 00004A9B: 00 BRK 00004A9C: 00 BRK 00004A9D: 00 BRK 00004A9E: 0103 ORA ($03,X) 00004AA0: 6EEFF7 ROR $F7EF 00004AA3: FF .DB $FF 00004AA4: 7F .DB $7F 00004AA5: 3F .DB $3F 00004AA6: 5F .DB $5F 00004AA7: 0F .DB $0F 00004AA8: 07 .DB $07 00004AA9: 07 .DB $07 00004AAA: 03 .DB $03 00004AAB: 27 .DB $27 00004AAC: 1F .DB $1F 00004AAD: 07 .DB $07 00004AAE: 00 BRK 00004AAF: 00 BRK 00004AB0: 00 BRK 00004AB1: 00 BRK 00004AB2: 00 BRK 00004AB3: 00 BRK 00004AB4: F8 SED 00004AB5: FC .DB $FC 00004AB6: FE5E00 INC $005E,X 00004AB9: 00 BRK 00004ABA: 00 BRK 00004ABB: 00 BRK 00004ABC: 00 BRK 00004ABD: F0F8 BEQ $F8 00004ABF: AC5E0C LDY $0C5E 00004AC2: 9E .DB $9E 00004AC3: FEFEFE INC $FEFE,X 00004AC6: F8 SED 00004AC7: C0AC CPY #$AC 00004AC9: F8 SED 00004ACA: F8 SED 00004ACB: F8 SED 00004ACC: F0C0 BEQ $C0 00004ACE: 00 BRK 00004ACF: 00 BRK 00004AD0: 00 BRK 00004AD1: 00 BRK 00004AD2: 00 BRK 00004AD3: 00 BRK 00004AD4: 00 BRK 00004AD5: 03 .DB $03 00004AD6: 07 .DB $07 00004AD7: 2F .DB $2F 00004AD8: 00 BRK 00004AD9: 00 BRK 00004ADA: 00 BRK 00004ADB: 00 BRK 00004ADC: 00 BRK 00004ADD: 00 BRK 00004ADE: 0103 ORA ($03,X) 00004AE0: 4E6EFE LSR $FE6E 00004AE3: 7F .DB $7F 00004AE4: 3F .DB $3F 00004AE5: 1F .DB $1F 00004AE6: 0F .DB $0F 00004AE7: 03 .DB $03 00004AE8: 07 .DB $07 00004AE9: 07 .DB $07 00004AEA: 07 .DB $07 00004AEB: 27 .DB $27 00004AEC: 1F .DB $1F 00004AED: 07 .DB $07 00004AEE: 0100 ORA ($00,X) 00004AF0: 00 BRK 00004AF1: 00 BRK 00004AF2: 00 BRK 00004AF3: 00 BRK 00004AF4: F8 SED 00004AF5: FC .DB $FC 00004AF6: FE5600 INC $0056,X 00004AF9: 00 BRK 00004AFA: 00 BRK 00004AFB: 00 BRK 00004AFC: 00 BRK 00004AFD: F0F8 BEQ $F8 00004AFF: AC560C LDY $0C56 00004B02: 0E1FFF ASL $FF1F 00004B05: FF .DB $FF 00004B06: FEF8AC INC $ACF8,X 00004B09: F8 SED 00004B0A: F8 SED 00004B0B: FC .DB $FC 00004B0C: FC .DB $FC 00004B0D: F8 SED 00004B0E: F000 BEQ $00 00004B10: FF .DB $FF 00004B11: FF .DB $FF 00004B12: FF .DB $FF 00004B13: FF .DB $FF 00004B14: FF .DB $FF 00004B15: FF .DB $FF 00004B16: FF .DB $FF 00004B17: FF .DB $FF 00004B18: FF .DB $FF 00004B19: FF .DB $FF 00004B1A: FF .DB $FF 00004B1B: FF .DB $FF 00004B1C: FF .DB $FF 00004B1D: FF .DB $FF 00004B1E: FF .DB $FF 00004B1F: FF .DB $FF 00004B20: FF .DB $FF 00004B21: FF .DB $FF 00004B22: FF .DB $FF 00004B23: FF .DB $FF 00004B24: FF .DB $FF 00004B25: FF .DB $FF 00004B26: FF .DB $FF 00004B27: FF .DB $FF 00004B28: FF .DB $FF 00004B29: FF .DB $FF 00004B2A: FF .DB $FF 00004B2B: FF .DB $FF 00004B2C: FF .DB $FF 00004B2D: FF .DB $FF 00004B2E: FF .DB $FF 00004B2F: FF .DB $FF 00004B30: FF .DB $FF 00004B31: FF .DB $FF 00004B32: FF .DB $FF 00004B33: FF .DB $FF 00004B34: FF .DB $FF 00004B35: FF .DB $FF 00004B36: FF .DB $FF 00004B37: FF .DB $FF 00004B38: FF .DB $FF 00004B39: FF .DB $FF 00004B3A: FF .DB $FF 00004B3B: FF .DB $FF 00004B3C: FF .DB $FF 00004B3D: FF .DB $FF 00004B3E: FF .DB $FF 00004B3F: FF .DB $FF 00004B40: FF .DB $FF 00004B41: FF .DB $FF 00004B42: FF .DB $FF 00004B43: FF .DB $FF 00004B44: FF .DB $FF 00004B45: FF .DB $FF 00004B46: FF .DB $FF 00004B47: FF .DB $FF 00004B48: FF .DB $FF 00004B49: FF .DB $FF 00004B4A: FF .DB $FF 00004B4B: FF .DB $FF 00004B4C: FF .DB $FF 00004B4D: FF .DB $FF 00004B4E: FF .DB $FF 00004B4F: FF .DB $FF 00004B50: FF .DB $FF 00004B51: FF .DB $FF 00004B52: FF .DB $FF 00004B53: FF .DB $FF 00004B54: FF .DB $FF 00004B55: FF .DB $FF 00004B56: FF .DB $FF 00004B57: FF .DB $FF 00004B58: FF .DB $FF 00004B59: FF .DB $FF 00004B5A: FF .DB $FF 00004B5B: FF .DB $FF 00004B5C: FF .DB $FF 00004B5D: FF .DB $FF 00004B5E: FF .DB $FF 00004B5F: FF .DB $FF 00004B60: FF .DB $FF 00004B61: FF .DB $FF 00004B62: FF .DB $FF 00004B63: FF .DB $FF 00004B64: FF .DB $FF 00004B65: FF .DB $FF 00004B66: FF .DB $FF 00004B67: FF .DB $FF 00004B68: FF .DB $FF 00004B69: FF .DB $FF 00004B6A: FF .DB $FF 00004B6B: FF .DB $FF 00004B6C: FF .DB $FF 00004B6D: FF .DB $FF 00004B6E: FF .DB $FF 00004B6F: FF .DB $FF 00004B70: FF .DB $FF 00004B71: FF .DB $FF 00004B72: FF .DB $FF 00004B73: FF .DB $FF 00004B74: FF .DB $FF 00004B75: FF .DB $FF 00004B76: FF .DB $FF 00004B77: FF .DB $FF 00004B78: FF .DB $FF 00004B79: FF .DB $FF 00004B7A: FF .DB $FF 00004B7B: FF .DB $FF 00004B7C: FF .DB $FF 00004B7D: FF .DB $FF 00004B7E: FF .DB $FF 00004B7F: FF .DB $FF 00004B80: FF .DB $FF 00004B81: FF .DB $FF 00004B82: FF .DB $FF 00004B83: FF .DB $FF 00004B84: FF .DB $FF 00004B85: FF .DB $FF 00004B86: FF .DB $FF 00004B87: FF .DB $FF 00004B88: FF .DB $FF 00004B89: FF .DB $FF 00004B8A: FF .DB $FF 00004B8B: FF .DB $FF 00004B8C: FF .DB $FF 00004B8D: FF .DB $FF 00004B8E: FF .DB $FF 00004B8F: FF .DB $FF 00004B90: 00 BRK 00004B91: 07 .DB $07 00004B92: 08 PHP 00004B93: 1010 BPL $10 00004B95: 202020 JSR $2020 00004B98: 00 BRK 00004B99: 07 .DB $07 00004B9A: 08 PHP 00004B9B: 1010 BPL $10 00004B9D: 202020 JSR $2020 00004BA0: 1F .DB $1F 00004BA1: 2F .DB $2F 00004BA2: 37 .DB $37 00004BA3: 3A .DB $3A 00004BA4: 3D3E3F AND $3F3E,X 00004BA7: 00 BRK 00004BA8: 1F .DB $1F 00004BA9: 3F .DB $3F 00004BAA: 3F .DB $3F 00004BAB: 3F .DB $3F 00004BAC: 3E3F3F ROL $3F3F,X 00004BAF: 00 BRK 00004BB0: 00 BRK 00004BB1: 0519 ORA $19 00004BB3: 33 .DB $33 00004BB4: 63 .DB $63 00004BB5: C7 .DB $C7 00004BB6: C7 .DB $C7 00004BB7: C400 CPY $00 00004BB9: 07 .DB $07 00004BBA: 1F .DB $1F 00004BBB: 3F .DB $3F 00004BBC: 7F .DB $7F 00004BBD: FF .DB $FF 00004BBE: FF .DB $FF 00004BBF: DD8000 CMP $0080,X 00004BC2: 00 BRK 00004BC3: 00 BRK 00004BC4: 00 BRK 00004BC5: 03 .DB $03 00004BC6: 03 .DB $03 00004BC7: 00 BRK 00004BC8: 89 .DB $89 00004BC9: 0101 ORA ($01,X) 00004BCB: 0101 ORA ($01,X) 00004BCD: 00 BRK 00004BCE: 00 BRK 00004BCF: 00 BRK 00004BD0: 00 BRK 00004BD1: 00 BRK 00004BD2: 00 BRK 00004BD3: 00 BRK 00004BD4: 00 BRK 00004BD5: 00 BRK 00004BD6: 00 BRK 00004BD7: 00 BRK 00004BD8: 00 BRK 00004BD9: 00 BRK 00004BDA: 00 BRK 00004BDB: 00 BRK 00004BDC: 00 BRK 00004BDD: 00 BRK 00004BDE: 03 .DB $03 00004BDF: 07 .DB $07 00004BE0: 00 BRK 00004BE1: 00 BRK 00004BE2: 0F .DB $0F 00004BE3: 00 BRK 00004BE4: 80 .DB $80 00004BE5: 63 .DB $63 00004BE6: 1E000F ASL $0F00,X 00004BE9: 0F .DB $0F 00004BEA: 00 BRK 00004BEB: 1F .DB $1F 00004BEC: 7F .DB $7F 00004BED: 1C .DB $1C 00004BEE: 00 BRK 00004BEF: 00 BRK 00004BF0: 0103 ORA ($03,X) 00004BF2: 193C19 ORA $193C,Y 00004BF5: 23 .DB $23 00004BF6: 5120 EOR ($20),Y 00004BF8: 0102 ORA ($02,X) 00004BFA: 192419 ORA $1924,Y 00004BFD: 22 .DB $22 00004BFE: 112C ORA ($2C),Y 00004C00: 00 BRK 00004C01: 00 BRK 00004C02: 00 BRK 00004C03: 00 BRK 00004C04: 00 BRK 00004C05: 00 BRK 00004C06: 00 BRK 00004C07: 00 BRK 00004C08: 1F .DB $1F 00004C09: 07 .DB $07 00004C0A: 03 .DB $03 00004C0B: 03 .DB $03 00004C0C: 0101 ORA ($01,X) 00004C0E: 0100 ORA ($00,X) 00004C10: 00 BRK 00004C11: 3F .DB $3F 00004C12: 1F .DB $1F 00004C13: 00 BRK 00004C14: 0100 ORA ($00,X) 00004C16: 0100 ORA ($00,X) 00004C18: 00 BRK 00004C19: 00 BRK 00004C1A: 00 BRK 00004C1B: 0103 ORA ($03,X) 00004C1D: 07 .DB $07 00004C1E: 0D1911 ORA $1119 00004C21: 00 BRK 00004C22: 0100 ORA ($00,X) 00004C24: 0100 ORA ($00,X) 00004C26: 1F .DB $1F 00004C27: 3F .DB $3F 00004C28: 2919 AND #$19 00004C2A: 0D0703 ORA $0307 00004C2D: 0100 ORA ($00,X) 00004C2F: 00 BRK 00004C30: 00 BRK 00004C31: FC .DB $FC 00004C32: F8 SED 00004C33: 00 BRK 00004C34: 80 .DB $80 00004C35: 00 BRK 00004C36: 80 .DB $80 00004C37: 00 BRK 00004C38: 00 BRK 00004C39: 00 BRK 00004C3A: 00 BRK 00004C3B: 80 .DB $80 00004C3C: C0E0 CPY #$E0 00004C3E: B098 BCS $98 00004C40: 88 DEY 00004C41: 00 BRK 00004C42: 80 .DB $80 00004C43: 00 BRK 00004C44: 80 .DB $80 00004C45: 00 BRK 00004C46: F8 SED 00004C47: FC .DB $FC 00004C48: 9498 STY $98,X 00004C4A: B0E0 BCS $E0 00004C4C: C080 CPY #$80 00004C4E: 00 BRK 00004C4F: 00 BRK 00004C50: 00 BRK 00004C51: 00 BRK 00004C52: 00 BRK 00004C53: 00 BRK 00004C54: 00 BRK 00004C55: 3F .DB $3F 00004C56: 1F .DB $1F 00004C57: 00 BRK 00004C58: 00 BRK 00004C59: 00 BRK 00004C5A: 00 BRK 00004C5B: 00 BRK 00004C5C: 00 BRK 00004C5D: 00 BRK 00004C5E: 00 BRK 00004C5F: 0101 ORA ($01,X) 00004C61: 0141 ORA ($41,X) 00004C63: 0101 ORA ($01,X) 00004C65: 00 BRK 00004C66: 1F .DB $1F 00004C67: 3F .DB $3F 00004C68: 0F .DB $0F 00004C69: 79A179 ADC $79A1,Y 00004C6C: 0F .DB $0F 00004C6D: 0100 ORA ($00,X) 00004C6F: 00 BRK 00004C70: 00 BRK 00004C71: 00 BRK 00004C72: 00 BRK 00004C73: 00 BRK 00004C74: 00 BRK 00004C75: FC .DB $FC 00004C76: F8 SED 00004C77: 00 BRK 00004C78: 00 BRK 00004C79: 00 BRK 00004C7A: 00 BRK 00004C7B: 00 BRK 00004C7C: 00 BRK 00004C7D: 00 BRK 00004C7E: 00 BRK 00004C7F: 80 .DB $80 00004C80: 80 .DB $80 00004C81: 80 .DB $80 00004C82: 82 .DB $82 00004C83: 80 .DB $80 00004C84: 80 .DB $80 00004C85: 00 BRK 00004C86: F8 SED 00004C87: FC .DB $FC 00004C88: F09E BEQ $9E 00004C8A: 859E STA $9E 00004C8C: F080 BEQ $80 00004C8E: 00 BRK 00004C8F: 00 BRK 00004C90: 00 BRK 00004C91: 00 BRK 00004C92: 00 BRK 00004C93: 1E3F3F ASL $3F3F,X 00004C96: 3F .DB $3F 00004C97: 3F .DB $3F 00004C98: 00 BRK 00004C99: 00 BRK 00004C9A: 00 BRK 00004C9B: 1E3F3F ASL $3F3F,X 00004C9E: 3F .DB $3F 00004C9F: 3F .DB $3F 00004CA0: 1F .DB $1F 00004CA1: 0F .DB $0F 00004CA2: 07 .DB $07 00004CA3: 03 .DB $03 00004CA4: 0100 ORA ($00,X) 00004CA6: 00 BRK 00004CA7: 00 BRK 00004CA8: 1F .DB $1F 00004CA9: 0F .DB $0F 00004CAA: 07 .DB $07 00004CAB: 03 .DB $03 00004CAC: 0100 ORA ($00,X) 00004CAE: 00 BRK 00004CAF: 00 BRK 00004CB0: 00 BRK 00004CB1: 00 BRK 00004CB2: 00 BRK 00004CB3: 3C .DB $3C 00004CB4: 7EFEFE ROR $FEFE,X 00004CB7: FE0000 INC $0000,X 00004CBA: 00 BRK 00004CBB: 3C .DB $3C 00004CBC: 7EFEFE ROR $FEFE,X 00004CBF: FEFCF8 INC $F8FC,X 00004CC2: F0E0 BEQ $E0 00004CC4: C080 CPY #$80 00004CC6: 00 BRK 00004CC7: 00 BRK 00004CC8: FC .DB $FC 00004CC9: F8 SED 00004CCA: F0E0 BEQ $E0 00004CCC: C080 CPY #$80 00004CCE: 00 BRK 00004CCF: 00 BRK 00004CD0: FF .DB $FF 00004CD1: FF .DB $FF 00004CD2: FF .DB $FF 00004CD3: FF .DB $FF 00004CD4: FF .DB $FF 00004CD5: FF .DB $FF 00004CD6: FF .DB $FF 00004CD7: FF .DB $FF 00004CD8: FF .DB $FF 00004CD9: FF .DB $FF 00004CDA: FF .DB $FF 00004CDB: FF .DB $FF 00004CDC: FF .DB $FF 00004CDD: FF .DB $FF 00004CDE: FF .DB $FF 00004CDF: FF .DB $FF 00004CE0: FF .DB $FF 00004CE1: FF .DB $FF 00004CE2: FF .DB $FF 00004CE3: FF .DB $FF 00004CE4: FF .DB $FF 00004CE5: FF .DB $FF 00004CE6: FF .DB $FF 00004CE7: FF .DB $FF 00004CE8: FF .DB $FF 00004CE9: FF .DB $FF 00004CEA: FF .DB $FF 00004CEB: FF .DB $FF 00004CEC: FF .DB $FF 00004CED: FF .DB $FF 00004CEE: FF .DB $FF 00004CEF: FF .DB $FF 00004CF0: FF .DB $FF 00004CF1: FF .DB $FF 00004CF2: FF .DB $FF 00004CF3: FF .DB $FF 00004CF4: FF .DB $FF 00004CF5: FF .DB $FF 00004CF6: FF .DB $FF 00004CF7: FF .DB $FF 00004CF8: FF .DB $FF 00004CF9: FF .DB $FF 00004CFA: FF .DB $FF 00004CFB: FF .DB $FF 00004CFC: FF .DB $FF 00004CFD: FF .DB $FF 00004CFE: FF .DB $FF 00004CFF: FF .DB $FF 00004D00: FF .DB $FF 00004D01: FF .DB $FF 00004D02: FF .DB $FF 00004D03: FF .DB $FF 00004D04: FF .DB $FF 00004D05: FF .DB $FF 00004D06: FF .DB $FF 00004D07: FF .DB $FF 00004D08: FF .DB $FF 00004D09: FF .DB $FF 00004D0A: FF .DB $FF 00004D0B: FF .DB $FF 00004D0C: FF .DB $FF 00004D0D: FF .DB $FF 00004D0E: FF .DB $FF 00004D0F: FF .DB $FF 00004D10: 08 PHP 00004D11: 190909 ORA $0909,Y 00004D14: 0909 ORA #$09 00004D16: 1C .DB $1C 00004D17: 00 BRK 00004D18: 00 BRK 00004D19: 00 BRK 00004D1A: 00 BRK 00004D1B: 00 BRK 00004D1C: 00 BRK 00004D1D: 00 BRK 00004D1E: 00 BRK 00004D1F: 00 BRK 00004D20: 38 SEC 00004D21: 0505 ORA $05 00004D23: 190505 ORA $0505,Y 00004D26: 38 SEC 00004D27: 00 BRK 00004D28: 00 BRK 00004D29: 00 BRK 00004D2A: 00 BRK 00004D2B: 00 BRK 00004D2C: 00 BRK 00004D2D: 00 BRK 00004D2E: 00 BRK 00004D2F: 00 BRK 00004D30: 3C .DB $3C 00004D31: 2121 AND ($21,X) 00004D33: 3D0505 AND $0505,X 00004D36: 38 SEC 00004D37: 00 BRK 00004D38: 00 BRK 00004D39: 00 BRK 00004D3A: 00 BRK 00004D3B: 00 BRK 00004D3C: 00 BRK 00004D3D: 00 BRK 00004D3E: 00 BRK 00004D3F: 00 BRK 00004D40: 18 CLC 00004D41: 2525 AND $25 00004D43: 192525 ORA $2525,Y 00004D46: 18 CLC 00004D47: 00 BRK 00004D48: 00 BRK 00004D49: 00 BRK 00004D4A: 00 BRK 00004D4B: 00 BRK 00004D4C: 00 BRK 00004D4D: 00 BRK 00004D4E: 00 BRK 00004D4F: 00 BRK 00004D50: C629 DEC $29 00004D52: 2929 AND #$29 00004D54: 2929 AND #$29 00004D56: C600 DEC $00 00004D58: 00 BRK 00004D59: 00 BRK 00004D5A: 00 BRK 00004D5B: 00 BRK 00004D5C: 00 BRK 00004D5D: 00 BRK 00004D5E: 00 BRK 00004D5F: 00 BRK 00004D60: 00 BRK 00004D61: 00 BRK 00004D62: 00 BRK 00004D63: 00 BRK 00004D64: 00 BRK 00004D65: 00 BRK 00004D66: 00 BRK 00004D67: 00 BRK 00004D68: 00 BRK 00004D69: 00 BRK 00004D6A: 00 BRK 00004D6B: 0103 ORA ($03,X) 00004D6D: 63 .DB $63 00004D6E: 311F AND ($1F),Y 00004D70: 00 BRK 00004D71: 00 BRK 00004D72: 00 BRK 00004D73: 00 BRK 00004D74: 3C .DB $3C 00004D75: B67C LDX $7C,Y 00004D77: F8 SED 00004D78: 00 BRK 00004D79: 00 BRK 00004D7A: FC .DB $FC 00004D7B: FEC040 INC $40C0,X 00004D7E: 80 .DB $80 00004D7F: 00 BRK 00004D80: 03 .DB $03 00004D81: 03 .DB $03 00004D82: 03 .DB $03 00004D83: 07 .DB $07 00004D84: 0C .DB $0C 00004D85: 1B .DB $1B 00004D86: 77 .DB $77 00004D87: 07 .DB $07 00004D88: 7F .DB $7F 00004D89: 3F .DB $3F 00004D8A: 53 .DB $53 00004D8B: 07 .DB $07 00004D8C: 0C .DB $0C 00004D8D: 1B .DB $1B 00004D8E: 07 .DB $07 00004D8F: 07 .DB $07 00004D90: 0F .DB $0F 00004D91: 0F .DB $0F 00004D92: 1F .DB $1F 00004D93: 3F .DB $3F 00004D94: 7F .DB $7F 00004D95: 3F .DB $3F 00004D96: 00 BRK 00004D97: 00 BRK 00004D98: 0F .DB $0F 00004D99: 0F .DB $0F 00004D9A: 03 .DB $03 00004D9B: 38 SEC 00004D9C: 3F .DB $3F 00004D9D: 0E1C0E ASL $0E1C 00004DA0: E0F0 CPX #$F0 00004DA2: F0F0 BEQ $F0 00004DA4: 18 CLC 00004DA5: FC .DB $FC 00004DA6: FC .DB $FC 00004DA7: FC .DB $FC 00004DA8: 00 BRK 00004DA9: 90F0 BCC $F0 00004DAB: F018 BEQ $18 00004DAD: FC .DB $FC 00004DAE: F0F8 BEQ $F8 00004DB0: F8 SED 00004DB1: FC .DB $FC 00004DB2: FF .DB $FF 00004DB3: FF .DB $FF 00004DB4: FEF000 INC $00F0,X 00004DB7: 00 BRK 00004DB8: F8 SED 00004DB9: F087 BEQ $87 00004DBB: 3DFE1C AND $1CFE,X 00004DBE: 08 PHP 00004DBF: 00 BRK 00004DC0: 03 .DB $03 00004DC1: 03 .DB $03 00004DC2: 03 .DB $03 00004DC3: 03 .DB $03 00004DC4: 0100 ORA ($00,X) 00004DC6: 07 .DB $07 00004DC7: 1F .DB $1F 00004DC8: 7F .DB $7F 00004DC9: 3F .DB $3F 00004DCA: 53 .DB $53 00004DCB: 03 .DB $03 00004DCC: 0100 ORA ($00,X) 00004DCE: 07 .DB $07 00004DCF: 1F .DB $1F 00004DD0: FF .DB $FF 00004DD1: FF .DB $FF 00004DD2: 7F .DB $7F 00004DD3: 3F .DB $3F 00004DD4: 0F .DB $0F 00004DD5: 03 .DB $03 00004DD6: 00 BRK 00004DD7: 00 BRK 00004DD8: CF .DB $CF 00004DD9: 63 .DB $63 00004DDA: 38 SEC 00004DDB: 3E7B30 ROL $307B,X 00004DDE: 18 CLC 00004DDF: 00 BRK 00004DE0: E0F0 CPX #$F0 00004DE2: F0E0 BEQ $E0 00004DE4: FE3CF0 INC $F03C,X 00004DE7: FC .DB $FC 00004DE8: 00 BRK 00004DE9: 90F0 BCC $F0 00004DEB: E0F8 CPX #$F8 00004DED: 38 SEC 00004DEE: F0F0 BEQ $F0 00004DF0: FC .DB $FC 00004DF1: F8 SED 00004DF2: F8 SED 00004DF3: F8 SED 00004DF4: F8 SED 00004DF5: F8 SED 00004DF6: F8 SED 00004DF7: 00 BRK 00004DF8: F8 SED 00004DF9: F8 SED 00004DFA: F8 SED 00004DFB: 38 SEC 00004DFC: 80 .DB $80 00004DFD: F8 SED 00004DFE: 00 BRK 00004DFF: 5C .DB $5C 00004E00: FF .DB $FF 00004E01: FF .DB $FF 00004E02: FF .DB $FF 00004E03: FF .DB $FF 00004E04: FF .DB $FF 00004E05: FF .DB $FF 00004E06: FF .DB $FF 00004E07: FF .DB $FF 00004E08: FF .DB $FF 00004E09: FF .DB $FF 00004E0A: FF .DB $FF 00004E0B: FF .DB $FF 00004E0C: FF .DB $FF 00004E0D: FF .DB $FF 00004E0E: FF .DB $FF 00004E0F: FF .DB $FF 00004E10: FF .DB $FF 00004E11: FF .DB $FF 00004E12: FF .DB $FF 00004E13: FF .DB $FF 00004E14: FF .DB $FF 00004E15: FF .DB $FF 00004E16: FF .DB $FF 00004E17: FF .DB $FF 00004E18: FF .DB $FF 00004E19: FF .DB $FF 00004E1A: FF .DB $FF 00004E1B: FF .DB $FF 00004E1C: FF .DB $FF 00004E1D: FF .DB $FF 00004E1E: FF .DB $FF 00004E1F: FF .DB $FF 00004E20: FF .DB $FF 00004E21: FF .DB $FF 00004E22: FF .DB $FF 00004E23: FF .DB $FF 00004E24: FF .DB $FF 00004E25: FF .DB $FF 00004E26: FF .DB $FF 00004E27: FF .DB $FF 00004E28: FF .DB $FF 00004E29: FF .DB $FF 00004E2A: FF .DB $FF 00004E2B: FF .DB $FF 00004E2C: FF .DB $FF 00004E2D: FF .DB $FF 00004E2E: FF .DB $FF 00004E2F: FF .DB $FF 00004E30: FF .DB $FF 00004E31: FF .DB $FF 00004E32: FF .DB $FF 00004E33: FF .DB $FF 00004E34: FF .DB $FF 00004E35: FF .DB $FF 00004E36: FF .DB $FF 00004E37: FF .DB $FF 00004E38: FF .DB $FF 00004E39: FF .DB $FF 00004E3A: FF .DB $FF 00004E3B: FF .DB $FF 00004E3C: FF .DB $FF 00004E3D: FF .DB $FF 00004E3E: FF .DB $FF 00004E3F: FF .DB $FF 00004E40: FF .DB $FF 00004E41: FF .DB $FF 00004E42: FF .DB $FF 00004E43: FF .DB $FF 00004E44: FF .DB $FF 00004E45: FF .DB $FF 00004E46: FF .DB $FF 00004E47: FF .DB $FF 00004E48: FF .DB $FF 00004E49: FF .DB $FF 00004E4A: FF .DB $FF 00004E4B: FF .DB $FF 00004E4C: FF .DB $FF 00004E4D: FF .DB $FF 00004E4E: FF .DB $FF 00004E4F: FF .DB $FF 00004E50: FF .DB $FF 00004E51: FF .DB $FF 00004E52: FF .DB $FF 00004E53: FF .DB $FF 00004E54: FF .DB $FF 00004E55: FF .DB $FF 00004E56: FF .DB $FF 00004E57: FF .DB $FF 00004E58: FF .DB $FF 00004E59: FF .DB $FF 00004E5A: FF .DB $FF 00004E5B: FF .DB $FF 00004E5C: FF .DB $FF 00004E5D: FF .DB $FF 00004E5E: FF .DB $FF 00004E5F: FF .DB $FF 00004E60: FF .DB $FF 00004E61: FF .DB $FF 00004E62: FF .DB $FF 00004E63: FF .DB $FF 00004E64: FF .DB $FF 00004E65: FF .DB $FF 00004E66: FF .DB $FF 00004E67: FF .DB $FF 00004E68: FF .DB $FF 00004E69: FF .DB $FF 00004E6A: FF .DB $FF 00004E6B: FF .DB $FF 00004E6C: FF .DB $FF 00004E6D: FF .DB $FF 00004E6E: FF .DB $FF 00004E6F: FF .DB $FF 00004E70: FF .DB $FF 00004E71: FF .DB $FF 00004E72: FF .DB $FF 00004E73: FF .DB $FF 00004E74: FF .DB $FF 00004E75: FF .DB $FF 00004E76: FF .DB $FF 00004E77: FF .DB $FF 00004E78: FF .DB $FF 00004E79: FF .DB $FF 00004E7A: FF .DB $FF 00004E7B: FF .DB $FF 00004E7C: FF .DB $FF 00004E7D: FF .DB $FF 00004E7E: FF .DB $FF 00004E7F: FF .DB $FF 00004E80: FF .DB $FF 00004E81: FF .DB $FF 00004E82: FF .DB $FF 00004E83: FF .DB $FF 00004E84: FF .DB $FF 00004E85: FF .DB $FF 00004E86: FF .DB $FF 00004E87: FF .DB $FF 00004E88: FF .DB $FF 00004E89: FF .DB $FF 00004E8A: FF .DB $FF 00004E8B: FF .DB $FF 00004E8C: FF .DB $FF 00004E8D: FF .DB $FF 00004E8E: FF .DB $FF 00004E8F: FF .DB $FF 00004E90: FF .DB $FF 00004E91: FF .DB $FF 00004E92: FF .DB $FF 00004E93: FF .DB $FF 00004E94: FF .DB $FF 00004E95: FF .DB $FF 00004E96: FF .DB $FF 00004E97: FF .DB $FF 00004E98: FF .DB $FF 00004E99: FF .DB $FF 00004E9A: FF .DB $FF 00004E9B: FF .DB $FF 00004E9C: FF .DB $FF 00004E9D: FF .DB $FF 00004E9E: FF .DB $FF 00004E9F: FF .DB $FF 00004EA0: FF .DB $FF 00004EA1: FF .DB $FF 00004EA2: FF .DB $FF 00004EA3: FF .DB $FF 00004EA4: FF .DB $FF 00004EA5: FF .DB $FF 00004EA6: FF .DB $FF 00004EA7: FF .DB $FF 00004EA8: FF .DB $FF 00004EA9: FF .DB $FF 00004EAA: FF .DB $FF 00004EAB: FF .DB $FF 00004EAC: FF .DB $FF 00004EAD: FF .DB $FF 00004EAE: FF .DB $FF 00004EAF: FF .DB $FF 00004EB0: FF .DB $FF 00004EB1: FF .DB $FF 00004EB2: FF .DB $FF 00004EB3: FF .DB $FF 00004EB4: FF .DB $FF 00004EB5: FF .DB $FF 00004EB6: FF .DB $FF 00004EB7: FF .DB $FF 00004EB8: FF .DB $FF 00004EB9: FF .DB $FF 00004EBA: FF .DB $FF 00004EBB: FF .DB $FF 00004EBC: FF .DB $FF 00004EBD: FF .DB $FF 00004EBE: FF .DB $FF 00004EBF: FF .DB $FF 00004EC0: FF .DB $FF 00004EC1: FF .DB $FF 00004EC2: FF .DB $FF 00004EC3: FF .DB $FF 00004EC4: FF .DB $FF 00004EC5: FF .DB $FF 00004EC6: FF .DB $FF 00004EC7: FF .DB $FF 00004EC8: FF .DB $FF 00004EC9: FF .DB $FF 00004ECA: FF .DB $FF 00004ECB: FF .DB $FF 00004ECC: FF .DB $FF 00004ECD: FF .DB $FF 00004ECE: FF .DB $FF 00004ECF: FF .DB $FF 00004ED0: 00 BRK 00004ED1: 0103 ORA ($03,X) 00004ED3: 33 .DB $33 00004ED4: 190F3F ORA $3F0F,Y 00004ED7: 1F .DB $1F 00004ED8: 00 BRK 00004ED9: 0103 ORA ($03,X) 00004EDB: 33 .DB $33 00004EDC: 190F3F ORA $3F0F,Y 00004EDF: 1F .DB $1F 00004EE0: 2B .DB $2B 00004EE1: 07 .DB $07 00004EE2: 050D ORA $0D 00004EE4: 0B .DB $0B 00004EE5: 1B .DB $1B 00004EE6: 1B .DB $1B 00004EE7: 3B .DB $3B 00004EE8: 2B .DB $2B 00004EE9: 07 .DB $07 00004EEA: 050D ORA $0D 00004EEC: 0B .DB $0B 00004EED: 1B .DB $1B 00004EEE: 1B .DB $1B 00004EEF: 03 .DB $03 00004EF0: 0900 ORA #$00 00004EF2: 07 .DB $07 00004EF3: 07 .DB $07 00004EF4: 0F .DB $0F 00004EF5: 0D0100 ORA $0001 00004EF8: 0100 ORA ($00,X) 00004EFA: 03 .DB $03 00004EFB: 050E ORA $0E 00004EFD: 0D0100 ORA $0001 00004F00: F8 SED 00004F01: FC .DB $FC 00004F02: F8 SED 00004F03: ECF8F0 CPX $F0F8 00004F06: C0C0 CPY #$C0 00004F08: F8 SED 00004F09: FC .DB $FC 00004F0A: C040 CPY #$40 00004F0C: 80 .DB $80 00004F0D: 80 .DB $80 00004F0E: 00 BRK 00004F0F: 80 .DB $80 00004F10: F0F8 BEQ $F8 00004F12: F8 SED 00004F13: E8 INX 00004F14: CCE6FB CPY $FBE6 00004F17: FF .DB $FF 00004F18: D0F8 BNE $F8 00004F1A: F8 SED 00004F1B: E8 INX 00004F1C: CCE6F8 CPY $F8E6 00004F1F: FEFFFE INC $FEFF,X 00004F22: FEFEFE INC $FEFE,X 00004F25: 8F .DB $8F 00004F26: 00 BRK 00004F27: 00 BRK 00004F28: FEFE06 INC $06FE,X 00004F2B: F8 SED 00004F2C: 0E8000 ASL $0080 00004F2F: 00 BRK 00004F30: 010F ORA ($0F,X) 00004F32: 00 BRK 00004F33: 00 BRK 00004F34: 04 .DB $04 00004F35: 1E0003 ASL $0300,X 00004F38: 010F ORA ($0F,X) 00004F3A: 07 .DB $07 00004F3B: 1D3B01 ORA $013B,X 00004F3E: 0F .DB $0F 00004F3F: 02 .DB $02 00004F40: 07 .DB $07 00004F41: 0F .DB $0F 00004F42: 1F .DB $1F 00004F43: 0F .DB $0F 00004F44: 07 .DB $07 00004F45: 0F .DB $0F 00004F46: 0F .DB $0F 00004F47: 03 .DB $03 00004F48: 02 .DB $02 00004F49: 03 .DB $03 00004F4A: 02 .DB $02 00004F4B: 77 .DB $77 00004F4C: 17 .DB $17 00004F4D: 0100 ORA ($00,X) 00004F4F: 00 BRK 00004F50: E0F0 CPX #$F0 00004F52: F048 BEQ $48 00004F54: C8 INY 00004F55: 9C .DB $9C 00004F56: 00 BRK 00004F57: F0E0 BEQ $E0 00004F59: F000 BEQ $00 00004F5B: B030 BCS $30 00004F5D: 60 RTS 00004F5E: F010 BEQ $10 00004F60: F8 SED 00004F61: FC .DB $FC 00004F62: FC .DB $FC 00004F63: F8 SED 00004F64: F8 SED 00004F65: 78 SEI 00004F66: 7060 BVS $60 00004F68: 30F0 BMI $F0 00004F6A: D0FC BNE $FC 00004F6C: FE0800 INC $0008,X 00004F6F: 00 BRK 00004F70: 00 BRK 00004F71: 00 BRK 00004F72: 7C .DB $7C 00004F73: 8A TXA 00004F74: FEFEFE INC $FEFE,X 00004F77: FE0010 INC $1000,X 00004F7A: 00 BRK 00004F7B: 74 .DB $74 00004F7C: 00 BRK 00004F7D: 00 BRK 00004F7E: 00 BRK 00004F7F: 00 BRK 00004F80: FE7C00 INC $007C,X 00004F83: 00 BRK 00004F84: 00 BRK 00004F85: 00 BRK 00004F86: 00 BRK 00004F87: 00 BRK 00004F88: 00 BRK 00004F89: 00 BRK 00004F8A: 1010 BPL $10 00004F8C: 1010 BPL $10 00004F8E: 1010 BPL $10 00004F90: 07 .DB $07 00004F91: 0B .DB $0B 00004F92: 0F .DB $0F 00004F93: 0B .DB $0B 00004F94: 0B .DB $0B 00004F95: 0B .DB $0B 00004F96: 0B .DB $0B 00004F97: 07 .DB $07 00004F98: 00 BRK 00004F99: 04 .DB $04 00004F9A: 00 BRK 00004F9B: 14 .DB $14 00004F9C: 04 .DB $04 00004F9D: 04 .DB $04 00004F9E: 04 .DB $04 00004F9F: 00 BRK 00004FA0: C0E0 CPY #$E0 00004FA2: E0E0 CPX #$E0 00004FA4: E0E0 CPX #$E0 00004FA6: E0C0 CPX #$C0 00004FA8: 00 BRK 00004FA9: 00 BRK 00004FAA: 00 BRK 00004FAB: 1F .DB $1F 00004FAC: 00 BRK 00004FAD: 00 BRK 00004FAE: 00 BRK 00004FAF: 00 BRK 00004FB0: 03 .DB $03 00004FB1: 07 .DB $07 00004FB2: 07 .DB $07 00004FB3: 07 .DB $07 00004FB4: 07 .DB $07 00004FB5: 07 .DB $07 00004FB6: 07 .DB $07 00004FB7: 03 .DB $03 00004FB8: 00 BRK 00004FB9: 00 BRK 00004FBA: 00 BRK 00004FBB: F8 SED 00004FBC: 00 BRK 00004FBD: 00 BRK 00004FBE: 00 BRK 00004FBF: 00 BRK 00004FC0: E0D0 CPX #$D0 00004FC2: D0D0 BNE $D0 00004FC4: D0F0 BNE $F0 00004FC6: D0E0 BNE $E0 00004FC8: 00 BRK 00004FC9: 202028 JSR $2820 00004FCC: 200020 JSR $2000 00004FCF: 00 BRK 00004FD0: 00 BRK 00004FD1: 0113 ORA ($13,X) 00004FD3: 37 .DB $37 00004FD4: 3B .DB $3B 00004FD5: 74 .DB $74 00004FD6: 7A .DB $7A 00004FD7: 3E0000 ROL $0000,X 00004FDA: 08 PHP 00004FDB: 2512 AND $12 00004FDD: 53 .DB $53 00004FDE: 33 .DB $33 00004FDF: 39D898 AND $98D8,Y 00004FE2: A8 TAY 00004FE3: D8 CLD 00004FE4: DA .DB $DA 00004FE5: 74 .DB $74 00004FE6: 28 PLP 00004FE7: C8 INY 00004FE8: 08 PHP 00004FE9: 80 .DB $80 00004FEA: 309C BMI $9C 00004FEC: CA DEX 00004FED: B8 CLV 00004FEE: 98 TYA 00004FEF: 78 SEI 00004FF0: 08 PHP 00004FF1: 593071 EOR $7130,Y 00004FF4: 792B36 ADC $362B,Y 00004FF7: 1600 ASL $00,X 00004FF9: 08 PHP 00004FFA: 00 BRK 00004FFB: 40 RTI 00004FFC: 00 BRK 00004FFD: 313D AND ($3D),Y 00004FFF: 19C6C4 ORA $C4C6,Y 00005002: CCCCB8 CPY $B8CC 00005005: 7C .DB $7C 00005006: ECC800 CPX $00C8 00005009: 80 .DB $80 0000500A: C0C0 CPY #$C0 0000500C: C088 CPY #$88 0000500E: B8 CLV 0000500F: B8 CLV 00005010: 38 SEC 00005011: 4CC6C6 JMP $C6C6 00005014: C664 DEC $64 00005016: 38 SEC 00005017: 00 BRK 00005018: 00 BRK 00005019: 00 BRK 0000501A: 00 BRK 0000501B: 00 BRK 0000501C: 00 BRK 0000501D: 00 BRK 0000501E: 00 BRK 0000501F: 00 BRK 00005020: 18 CLC 00005021: 38 SEC 00005022: 18 CLC 00005023: 18 CLC 00005024: 18 CLC 00005025: 18 CLC 00005026: 7E0000 ROR $0000,X 00005029: 00 BRK 0000502A: 00 BRK 0000502B: 00 BRK 0000502C: 00 BRK 0000502D: 00 BRK 0000502E: 00 BRK 0000502F: 00 BRK 00005030: 7C .DB $7C 00005031: C60E DEC $0E 00005033: 3C .DB $3C 00005034: 78 SEI 00005035: E0FE CPX #$FE 00005037: 00 BRK 00005038: 00 BRK 00005039: 00 BRK 0000503A: 00 BRK 0000503B: 00 BRK 0000503C: 00 BRK 0000503D: 00 BRK 0000503E: 00 BRK 0000503F: 00 BRK 00005040: 7E0C18 ROR $180C,X 00005043: 3C .DB $3C 00005044: 06C6 ASL $C6 00005046: 7C .DB $7C 00005047: 00 BRK 00005048: 00 BRK 00005049: 00 BRK 0000504A: 00 BRK 0000504B: 00 BRK 0000504C: 00 BRK 0000504D: 00 BRK 0000504E: 00 BRK 0000504F: 00 BRK 00005050: 1C .DB $1C 00005051: 3C .DB $3C 00005052: 6CCCFE JMP ($FECC) 00005055: 0C .DB $0C 00005056: 0C .DB $0C 00005057: 00 BRK 00005058: 00 BRK 00005059: 00 BRK 0000505A: 00 BRK 0000505B: 00 BRK 0000505C: 00 BRK 0000505D: 00 BRK 0000505E: 00 BRK 0000505F: 00 BRK 00005060: FC .DB $FC 00005061: C0FC CPY #$FC 00005063: 0606 ASL $06 00005065: C67C DEC $7C 00005067: 00 BRK 00005068: 00 BRK 00005069: 00 BRK 0000506A: 00 BRK 0000506B: 00 BRK 0000506C: 00 BRK 0000506D: 00 BRK 0000506E: 00 BRK 0000506F: 00 BRK 00005070: 3C .DB $3C 00005071: 60 RTS 00005072: C0FC CPY #$FC 00005074: C6C6 DEC $C6 00005076: 7C .DB $7C 00005077: 00 BRK 00005078: 00 BRK 00005079: 00 BRK 0000507A: 00 BRK 0000507B: 00 BRK 0000507C: 00 BRK 0000507D: 00 BRK 0000507E: 00 BRK 0000507F: 00 BRK 00005080: FEC60C INC $0CC6,X 00005083: 18 CLC 00005084: 3030 BMI $30 00005086: 3000 BMI $00 00005088: 00 BRK 00005089: 00 BRK 0000508A: 00 BRK 0000508B: 00 BRK 0000508C: 00 BRK 0000508D: 00 BRK 0000508E: 00 BRK 0000508F: 00 BRK 00005090: 78 SEI 00005091: C4E4 CPY $E4 00005093: 78 SEI 00005094: 8686 STX $86 00005096: 7C .DB $7C 00005097: 00 BRK 00005098: 00 BRK 00005099: 00 BRK 0000509A: 00 BRK 0000509B: 00 BRK 0000509C: 00 BRK 0000509D: 00 BRK 0000509E: 00 BRK 0000509F: 00 BRK 000050A0: 7C .DB $7C 000050A1: C6C6 DEC $C6 000050A3: 7E060C ROR $0C06,X 000050A6: 78 SEI 000050A7: 00 BRK 000050A8: 00 BRK 000050A9: 00 BRK 000050AA: 00 BRK 000050AB: 00 BRK 000050AC: 00 BRK 000050AD: 00 BRK 000050AE: 00 BRK 000050AF: 00 BRK 000050B0: 38 SEC 000050B1: 6CC6C6 JMP ($C6C6) 000050B4: FEC6C6 INC $C6C6,X 000050B7: 00 BRK 000050B8: 00 BRK 000050B9: 00 BRK 000050BA: 00 BRK 000050BB: 00 BRK 000050BC: 00 BRK 000050BD: 00 BRK 000050BE: 00 BRK 000050BF: 00 BRK 000050C0: FC .DB $FC 000050C1: C6C6 DEC $C6 000050C3: FC .DB $FC 000050C4: C6C6 DEC $C6 000050C6: FC .DB $FC 000050C7: 00 BRK 000050C8: 00 BRK 000050C9: 00 BRK 000050CA: 00 BRK 000050CB: 00 BRK 000050CC: 00 BRK 000050CD: 00 BRK 000050CE: 00 BRK 000050CF: 00 BRK 000050D0: 3C .DB $3C 000050D1: 66C0 ROR $C0 000050D3: C0C0 CPY #$C0 000050D5: 663C ROR $3C 000050D7: 00 BRK 000050D8: 00 BRK 000050D9: 00 BRK 000050DA: 00 BRK 000050DB: 00 BRK 000050DC: 00 BRK 000050DD: 00 BRK 000050DE: 00 BRK 000050DF: 00 BRK 000050E0: F8 SED 000050E1: CCC6C6 CPY $C6C6 000050E4: C6CC DEC $CC 000050E6: F8 SED 000050E7: 00 BRK 000050E8: 00 BRK 000050E9: 00 BRK 000050EA: 00 BRK 000050EB: 00 BRK 000050EC: 00 BRK 000050ED: 00 BRK 000050EE: 00 BRK 000050EF: 00 BRK 000050F0: FEC0C0 INC $C0C0,X 000050F3: FC .DB $FC 000050F4: C0C0 CPY #$C0 000050F6: FE0000 INC $0000,X 000050F9: 00 BRK 000050FA: 00 BRK 000050FB: 00 BRK 000050FC: 00 BRK 000050FD: 00 BRK 000050FE: 00 BRK 000050FF: 00 BRK 00005100: FEC0C0 INC $C0C0,X 00005103: FC .DB $FC 00005104: C0C0 CPY #$C0 00005106: C000 CPY #$00 00005108: 00 BRK 00005109: 00 BRK 0000510A: 00 BRK 0000510B: 00 BRK 0000510C: 00 BRK 0000510D: 00 BRK 0000510E: 00 BRK 0000510F: 00 BRK 00005110: 3E60C0 ROL $C060,X 00005113: DEC666 DEC $66C6,X 00005116: 7E0000 ROR $0000,X 00005119: 00 BRK 0000511A: 00 BRK 0000511B: 00 BRK 0000511C: 00 BRK 0000511D: 00 BRK 0000511E: 00 BRK 0000511F: 00 BRK 00005120: C6C6 DEC $C6 00005122: C6FE DEC $FE 00005124: C6C6 DEC $C6 00005126: C600 DEC $00 00005128: 00 BRK 00005129: 00 BRK 0000512A: 00 BRK 0000512B: 00 BRK 0000512C: 00 BRK 0000512D: 00 BRK 0000512E: 00 BRK 0000512F: 00 BRK 00005130: 7E1818 ROR $1818,X 00005133: 18 CLC 00005134: 18 CLC 00005135: 18 CLC 00005136: 7E0000 ROR $0000,X 00005139: 00 BRK 0000513A: 00 BRK 0000513B: 00 BRK 0000513C: 00 BRK 0000513D: 00 BRK 0000513E: 00 BRK 0000513F: 00 BRK 00005140: 1E0606 ASL $0606,X 00005143: 06C6 ASL $C6 00005145: C67C DEC $7C 00005147: 00 BRK 00005148: 00 BRK 00005149: 00 BRK 0000514A: 00 BRK 0000514B: 00 BRK 0000514C: 00 BRK 0000514D: 00 BRK 0000514E: 00 BRK 0000514F: 00 BRK 00005150: C6CC DEC $CC 00005152: D8 CLD 00005153: F0F8 BEQ $F8 00005155: DC .DB $DC 00005156: CE0000 DEC $0000 00005159: 00 BRK 0000515A: 00 BRK 0000515B: 00 BRK 0000515C: 00 BRK 0000515D: 00 BRK 0000515E: 00 BRK 0000515F: 00 BRK 00005160: 60 RTS 00005161: 60 RTS 00005162: 60 RTS 00005163: 60 RTS 00005164: 60 RTS 00005165: 60 RTS 00005166: 7E0000 ROR $0000,X 00005169: 00 BRK 0000516A: 00 BRK 0000516B: 00 BRK 0000516C: 00 BRK 0000516D: 00 BRK 0000516E: 00 BRK 0000516F: 00 BRK 00005170: C6EE DEC $EE 00005172: FEFED6 INC $D6FE,X 00005175: C6C6 DEC $C6 00005177: 00 BRK 00005178: 00 BRK 00005179: 00 BRK 0000517A: 00 BRK 0000517B: 00 BRK 0000517C: 00 BRK 0000517D: 00 BRK 0000517E: 00 BRK 0000517F: 00 BRK 00005180: C6E6 DEC $E6 00005182: F6FE INC $FE,X 00005184: DECEC6 DEC $C6CE,X 00005187: 00 BRK 00005188: 00 BRK 00005189: 00 BRK 0000518A: 00 BRK 0000518B: 00 BRK 0000518C: 00 BRK 0000518D: 00 BRK 0000518E: 00 BRK 0000518F: 00 BRK 00005190: 7C .DB $7C 00005191: C6C6 DEC $C6 00005193: C6C6 DEC $C6 00005195: C67C DEC $7C 00005197: 00 BRK 00005198: 00 BRK 00005199: 00 BRK 0000519A: 00 BRK 0000519B: 00 BRK 0000519C: 00 BRK 0000519D: 00 BRK 0000519E: 00 BRK 0000519F: 00 BRK 000051A0: FC .DB $FC 000051A1: C6C6 DEC $C6 000051A3: C6FC DEC $FC 000051A5: C0C0 CPY #$C0 000051A7: 00 BRK 000051A8: 00 BRK 000051A9: 00 BRK 000051AA: 00 BRK 000051AB: 00 BRK 000051AC: 00 BRK 000051AD: 00 BRK 000051AE: 00 BRK 000051AF: 00 BRK 000051B0: 7C .DB $7C 000051B1: C6C6 DEC $C6 000051B3: C6DE DEC $DE 000051B5: CC7A00 CPY $007A 000051B8: 00 BRK 000051B9: 00 BRK 000051BA: 00 BRK 000051BB: 00 BRK 000051BC: 00 BRK 000051BD: 00 BRK 000051BE: 00 BRK 000051BF: 00 BRK 000051C0: FC .DB $FC 000051C1: C6C6 DEC $C6 000051C3: CEF8DC DEC $DCF8 000051C6: CE0000 DEC $0000 000051C9: 00 BRK 000051CA: 00 BRK 000051CB: 00 BRK 000051CC: 00 BRK 000051CD: 00 BRK 000051CE: 00 BRK 000051CF: 00 BRK 000051D0: 78 SEI 000051D1: CCC07C CPY $7CC0 000051D4: 06C6 ASL $C6 000051D6: 7C .DB $7C 000051D7: 00 BRK 000051D8: 00 BRK 000051D9: 00 BRK 000051DA: 00 BRK 000051DB: 00 BRK 000051DC: 00 BRK 000051DD: 00 BRK 000051DE: 00 BRK 000051DF: 00 BRK 000051E0: 7E1818 ROR $1818,X 000051E3: 18 CLC 000051E4: 18 CLC 000051E5: 18 CLC 000051E6: 18 CLC 000051E7: 00 BRK 000051E8: 00 BRK 000051E9: 00 BRK 000051EA: 00 BRK 000051EB: 00 BRK 000051EC: 00 BRK 000051ED: 00 BRK 000051EE: 00 BRK 000051EF: 00 BRK 000051F0: C6C6 DEC $C6 000051F2: C6C6 DEC $C6 000051F4: C6C6 DEC $C6 000051F6: 7C .DB $7C 000051F7: 00 BRK 000051F8: 00 BRK 000051F9: 00 BRK 000051FA: 00 BRK 000051FB: 00 BRK 000051FC: 00 BRK 000051FD: 00 BRK 000051FE: 00 BRK 000051FF: 00 BRK 00005200: C6C6 DEC $C6 00005202: C6EE DEC $EE 00005204: 7C .DB $7C 00005205: 38 SEC 00005206: 1000 BPL $00 00005208: 00 BRK 00005209: 00 BRK 0000520A: 00 BRK 0000520B: 00 BRK 0000520C: 00 BRK 0000520D: 00 BRK 0000520E: 00 BRK 0000520F: 00 BRK 00005210: C6C6 DEC $C6 00005212: D6FE DEC $FE,X 00005214: FEEEC6 INC $C6EE,X 00005217: 00 BRK 00005218: 00 BRK 00005219: 00 BRK 0000521A: 00 BRK 0000521B: 00 BRK 0000521C: 00 BRK 0000521D: 00 BRK 0000521E: 00 BRK 0000521F: 00 BRK 00005220: C6EE DEC $EE 00005222: 7C .DB $7C 00005223: 38 SEC 00005224: 7C .DB $7C 00005225: EEC600 INC $00C6 00005228: 00 BRK 00005229: 00 BRK 0000522A: 00 BRK 0000522B: 00 BRK 0000522C: 00 BRK 0000522D: 00 BRK 0000522E: 00 BRK 0000522F: 00 BRK 00005230: 6666 ROR $66 00005232: 663C ROR $3C 00005234: 18 CLC 00005235: 18 CLC 00005236: 18 CLC 00005237: 00 BRK 00005238: 00 BRK 00005239: 00 BRK 0000523A: 00 BRK 0000523B: 00 BRK 0000523C: 00 BRK 0000523D: 00 BRK 0000523E: 00 BRK 0000523F: 00 BRK 00005240: FE0E1C INC $1C0E,X 00005243: 38 SEC 00005244: 70E0 BVS $E0 00005246: FE0000 INC $0000,X 00005249: 00 BRK 0000524A: 00 BRK 0000524B: 00 BRK 0000524C: 00 BRK 0000524D: 00 BRK 0000524E: 00 BRK 0000524F: 00 BRK 00005250: 00 BRK 00005251: 00 BRK 00005252: 00 BRK 00005253: 00 BRK 00005254: 00 BRK 00005255: 00 BRK 00005256: 00 BRK 00005257: 00 BRK 00005258: 00 BRK 00005259: 00 BRK 0000525A: 00 BRK 0000525B: 00 BRK 0000525C: 00 BRK 0000525D: 00 BRK 0000525E: 00 BRK 0000525F: 00 BRK 00005260: 00 BRK 00005261: 00 BRK 00005262: 060E ASL $0E 00005264: 08 PHP 00005265: 08 PHP 00005266: 08 PHP 00005267: 08 PHP 00005268: 00 BRK 00005269: 00 BRK 0000526A: 00 BRK 0000526B: 00 BRK 0000526C: 00 BRK 0000526D: 00 BRK 0000526E: 00 BRK 0000526F: 00 BRK 00005270: 00 BRK 00005271: 78 SEI 00005272: 6579 ADC $79 00005274: 6565 ADC $65 00005276: 78 SEI 00005277: 00 BRK 00005278: 00 BRK 00005279: 00 BRK 0000527A: 00 BRK 0000527B: 00 BRK 0000527C: 00 BRK 0000527D: 00 BRK 0000527E: 00 BRK 0000527F: 00 BRK 00005280: 00 BRK 00005281: E496 CPX $96 00005283: 9697 STX $97,Y 00005285: 96E6 STX $E6,Y 00005287: 00 BRK 00005288: 00 BRK 00005289: 00 BRK 0000528A: 00 BRK 0000528B: 00 BRK 0000528C: 00 BRK 0000528D: 00 BRK 0000528E: 00 BRK 0000528F: 00 BRK 00005290: 00 BRK 00005291: 595959 EOR $5959,Y 00005294: 59D94E EOR $4ED9,Y 00005297: 00 BRK 00005298: 00 BRK 00005299: 00 BRK 0000529A: 00 BRK 0000529B: 00 BRK 0000529C: 00 BRK 0000529D: 00 BRK 0000529E: 00 BRK 0000529F: 00 BRK 000052A0: 00 BRK 000052A1: 3C .DB $3C 000052A2: 7070 BVS $70 000052A4: 3C .DB $3C 000052A5: 0C .DB $0C 000052A6: 78 SEI 000052A7: 00 BRK 000052A8: 00 BRK 000052A9: 00 BRK 000052AA: 00 BRK 000052AB: 00 BRK 000052AC: 00 BRK 000052AD: 00 BRK 000052AE: 00 BRK 000052AF: 00 BRK 000052B0: 00 BRK 000052B1: 00 BRK 000052B2: C6EE DEC $EE 000052B4: 28 PLP 000052B5: 28 PLP 000052B6: 28 PLP 000052B7: 28 PLP 000052B8: 00 BRK 000052B9: 00 BRK 000052BA: 00 BRK 000052BB: 00 BRK 000052BC: 00 BRK 000052BD: 00 BRK 000052BE: 00 BRK 000052BF: 00 BRK 000052C0: 08 PHP 000052C1: 08 PHP 000052C2: 08 PHP 000052C3: 08 PHP 000052C4: 0E0600 ASL $0006 000052C7: 00 BRK 000052C8: 00 BRK 000052C9: 00 BRK 000052CA: 00 BRK 000052CB: 00 BRK 000052CC: 00 BRK 000052CD: 00 BRK 000052CE: 00 BRK 000052CF: 00 BRK 000052D0: 28 PLP 000052D1: 28 PLP 000052D2: 28 PLP 000052D3: 28 PLP 000052D4: EEC600 INC $00C6 000052D7: 00 BRK 000052D8: 00 BRK 000052D9: 00 BRK 000052DA: 00 BRK 000052DB: 00 BRK 000052DC: 00 BRK 000052DD: 00 BRK 000052DE: 00 BRK 000052DF: 00 BRK 000052E0: 00 BRK 000052E1: 00 BRK 000052E2: 60 RTS 000052E3: 7010 BVS $10 000052E5: 1010 BPL $10 000052E7: 1000 BPL $00 000052E9: 00 BRK 000052EA: 00 BRK 000052EB: 00 BRK 000052EC: 00 BRK 000052ED: 00 BRK 000052EE: 00 BRK 000052EF: 00 BRK 000052F0: 1C .DB $1C 000052F1: 3E3C38 ROL $383C,X 000052F4: 3000 BMI $00 000052F6: 60 RTS 000052F7: 00 BRK 000052F8: 00 BRK 000052F9: 00 BRK 000052FA: 00 BRK 000052FB: 00 BRK 000052FC: 00 BRK 000052FD: 00 BRK 000052FE: 00 BRK 000052FF: 00 BRK 00005300: 1010 BPL $10 00005302: 1010 BPL $10 00005304: 7060 BVS $60 00005306: 00 BRK 00005307: 00 BRK 00005308: 00 BRK 00005309: 00 BRK 0000530A: 00 BRK 0000530B: 00 BRK 0000530C: 00 BRK 0000530D: 00 BRK 0000530E: 00 BRK 0000530F: 00 BRK 00005310: FF .DB $FF 00005311: FF .DB $FF 00005312: 38 SEC 00005313: 6CC683 JMP ($83C6) 00005316: FF .DB $FF 00005317: FF .DB $FF 00005318: 00 BRK 00005319: 00 BRK 0000531A: 00 BRK 0000531B: 00 BRK 0000531C: 00 BRK 0000531D: 00 BRK 0000531E: 00 BRK 0000531F: 00 BRK 00005320: FF .DB $FF 00005321: 38 SEC 00005322: 6CC683 JMP ($83C6) 00005325: FF .DB $FF 00005326: FF .DB $FF 00005327: 00 BRK 00005328: 00 BRK 00005329: 00 BRK 0000532A: 00 BRK 0000532B: 00 BRK 0000532C: 00 BRK 0000532D: 00 BRK 0000532E: 00 BRK 0000532F: 00 BRK 00005330: 38 SEC 00005331: 6CC683 JMP ($83C6) 00005334: FF .DB $FF 00005335: FF .DB $FF 00005336: 00 BRK 00005337: 00 BRK 00005338: 00 BRK 00005339: 00 BRK 0000533A: 00 BRK 0000533B: 00 BRK 0000533C: 00 BRK 0000533D: 00 BRK 0000533E: 00 BRK 0000533F: 00 BRK 00005340: 6CC683 JMP ($83C6) 00005343: FF .DB $FF 00005344: FF .DB $FF 00005345: 00 BRK 00005346: 00 BRK 00005347: 00 BRK 00005348: 00 BRK 00005349: 00 BRK 0000534A: 00 BRK 0000534B: 00 BRK 0000534C: 00 BRK 0000534D: 00 BRK 0000534E: 00 BRK 0000534F: 00 BRK 00005350: C683 DEC $83 00005352: FF .DB $FF 00005353: FF .DB $FF 00005354: 00 BRK 00005355: 00 BRK 00005356: 00 BRK 00005357: 00 BRK 00005358: 00 BRK 00005359: 00 BRK 0000535A: 00 BRK 0000535B: 00 BRK 0000535C: 00 BRK 0000535D: 00 BRK 0000535E: 00 BRK 0000535F: 00 BRK 00005360: 83 .DB $83 00005361: FF .DB $FF 00005362: FF .DB $FF 00005363: 00 BRK 00005364: 00 BRK 00005365: 00 BRK 00005366: 00 BRK 00005367: 00 BRK 00005368: 00 BRK 00005369: 00 BRK 0000536A: 00 BRK 0000536B: 00 BRK 0000536C: 00 BRK 0000536D: 00 BRK 0000536E: 00 BRK 0000536F: 00 BRK 00005370: FF .DB $FF 00005371: FF .DB $FF 00005372: 00 BRK 00005373: 00 BRK 00005374: 00 BRK 00005375: 00 BRK 00005376: 00 BRK 00005377: 00 BRK 00005378: 00 BRK 00005379: 00 BRK 0000537A: 00 BRK 0000537B: 00 BRK 0000537C: 00 BRK 0000537D: 00 BRK 0000537E: 00 BRK 0000537F: 00 BRK 00005380: FF .DB $FF 00005381: 00 BRK 00005382: 00 BRK 00005383: 00 BRK 00005384: 00 BRK 00005385: 00 BRK 00005386: 00 BRK 00005387: 00 BRK 00005388: 00 BRK 00005389: 00 BRK 0000538A: 00 BRK 0000538B: 00 BRK 0000538C: 00 BRK 0000538D: 00 BRK 0000538E: 00 BRK 0000538F: 00 BRK 00005390: 00 BRK 00005391: 00 BRK 00005392: 00 BRK 00005393: 00 BRK 00005394: 00 BRK 00005395: 00 BRK 00005396: 00 BRK 00005397: FF .DB $FF 00005398: 00 BRK 00005399: 00 BRK 0000539A: 00 BRK 0000539B: 00 BRK 0000539C: 00 BRK 0000539D: 00 BRK 0000539E: 00 BRK 0000539F: 00 BRK 000053A0: 00 BRK 000053A1: 00 BRK 000053A2: 00 BRK 000053A3: 00 BRK 000053A4: 00 BRK 000053A5: 00 BRK 000053A6: FF .DB $FF 000053A7: FF .DB $FF 000053A8: 00 BRK 000053A9: 00 BRK 000053AA: 00 BRK 000053AB: 00 BRK 000053AC: 00 BRK 000053AD: 00 BRK 000053AE: 00 BRK 000053AF: 00 BRK 000053B0: 00 BRK 000053B1: 00 BRK 000053B2: 00 BRK 000053B3: 00 BRK 000053B4: 00 BRK 000053B5: FF .DB $FF 000053B6: FF .DB $FF 000053B7: 38 SEC 000053B8: 00 BRK 000053B9: 00 BRK 000053BA: 00 BRK 000053BB: 00 BRK 000053BC: 00 BRK 000053BD: 00 BRK 000053BE: 00 BRK 000053BF: 00 BRK 000053C0: 00 BRK 000053C1: 00 BRK 000053C2: 00 BRK 000053C3: 00 BRK 000053C4: FF .DB $FF 000053C5: FF .DB $FF 000053C6: 38 SEC 000053C7: 6C0000 JMP ($0000) 000053CA: 00 BRK 000053CB: 00 BRK 000053CC: 00 BRK 000053CD: 00 BRK 000053CE: 00 BRK 000053CF: 00 BRK 000053D0: 00 BRK 000053D1: 00 BRK 000053D2: 00 BRK 000053D3: FF .DB $FF 000053D4: FF .DB $FF 000053D5: 38 SEC 000053D6: 6CC600 JMP ($00C6) 000053D9: 00 BRK 000053DA: 00 BRK 000053DB: 00 BRK 000053DC: 00 BRK 000053DD: 00 BRK 000053DE: 00 BRK 000053DF: 00 BRK 000053E0: 00 BRK 000053E1: 00 BRK 000053E2: FF .DB $FF 000053E3: FF .DB $FF 000053E4: 38 SEC 000053E5: 6CC683 JMP ($83C6) 000053E8: 00 BRK 000053E9: 00 BRK 000053EA: 00 BRK 000053EB: 00 BRK 000053EC: 00 BRK 000053ED: 00 BRK 000053EE: 00 BRK 000053EF: 00 BRK 000053F0: 00 BRK 000053F1: FF .DB $FF 000053F2: FF .DB $FF 000053F3: 38 SEC 000053F4: 6CC683 JMP ($83C6) 000053F7: FF .DB $FF 000053F8: 00 BRK 000053F9: 00 BRK 000053FA: 00 BRK 000053FB: 00 BRK 000053FC: 00 BRK 000053FD: 00 BRK 000053FE: 00 BRK 000053FF: 00 BRK 00005400: 00 BRK 00005401: 00 BRK 00005402: 00 BRK 00005403: 00 BRK 00005404: 00 BRK 00005405: 00 BRK 00005406: 00 BRK 00005407: 00 BRK 00005408: 81FF STA ($FF,X) 0000540A: 8181 STA ($81,X) 0000540C: 81FF STA ($FF,X) 0000540E: 8181 STA ($81,X) 00005410: 00 BRK 00005411: 00 BRK 00005412: 00 BRK 00005413: 00 BRK 00005414: 00 BRK 00005415: 00 BRK 00005416: 00 BRK 00005417: FF .DB $FF 00005418: 81FF STA ($FF,X) 0000541A: 8181 STA ($81,X) 0000541C: 81FF STA ($FF,X) 0000541E: 8100 STA ($00,X) 00005420: 00 BRK 00005421: 00 BRK 00005422: 00 BRK 00005423: 00 BRK 00005424: 00 BRK 00005425: FF .DB $FF 00005426: FF .DB $FF 00005427: 38 SEC 00005428: 81FF STA ($FF,X) 0000542A: 8181 STA ($81,X) 0000542C: 8100 STA ($00,X) 0000542E: 00 BRK 0000542F: 00 BRK 00005430: 00 BRK 00005431: 00 BRK 00005432: 00 BRK 00005433: 00 BRK 00005434: FF .DB $FF 00005435: FF .DB $FF 00005436: 38 SEC 00005437: 6C81FF JMP ($FF81) 0000543A: 8181 STA ($81,X) 0000543C: 00 BRK 0000543D: 00 BRK 0000543E: 00 BRK 0000543F: 00 BRK 00005440: 00 BRK 00005441: 00 BRK 00005442: 00 BRK 00005443: FF .DB $FF 00005444: FF .DB $FF 00005445: 38 SEC 00005446: 6CC681 JMP ($81C6) 00005449: FF .DB $FF 0000544A: 8100 STA ($00,X) 0000544C: 00 BRK 0000544D: 00 BRK 0000544E: 00 BRK 0000544F: 00 BRK 00005450: 00 BRK 00005451: 00 BRK 00005452: FF .DB $FF 00005453: FF .DB $FF 00005454: 38 SEC 00005455: 6CC683 JMP ($83C6) 00005458: 81FF STA ($FF,X) 0000545A: 00 BRK 0000545B: 00 BRK 0000545C: 00 BRK 0000545D: 00 BRK 0000545E: 00 BRK 0000545F: 00 BRK 00005460: 00 BRK 00005461: FF .DB $FF 00005462: FF .DB $FF 00005463: 38 SEC 00005464: 6CC683 JMP ($83C6) 00005467: FF .DB $FF 00005468: 8100 STA ($00,X) 0000546A: 00 BRK 0000546B: 00 BRK 0000546C: 00 BRK 0000546D: 00 BRK 0000546E: 00 BRK 0000546F: 00 BRK 00005470: FF .DB $FF 00005471: 38 SEC 00005472: 6CC683 JMP ($83C6) 00005475: FF .DB $FF 00005476: FF .DB $FF 00005477: 00 BRK 00005478: 00 BRK 00005479: 00 BRK 0000547A: 00 BRK 0000547B: 00 BRK 0000547C: 00 BRK 0000547D: 00 BRK 0000547E: 00 BRK 0000547F: 8138 STA ($38,X) 00005481: 6CC683 JMP ($83C6) 00005484: FF .DB $FF 00005485: FF .DB $FF 00005486: 00 BRK 00005487: 00 BRK 00005488: 00 BRK 00005489: 00 BRK 0000548A: 00 BRK 0000548B: 00 BRK 0000548C: 00 BRK 0000548D: 00 BRK 0000548E: 8181 STA ($81,X) 00005490: 6CC683 JMP ($83C6) 00005493: FF .DB $FF 00005494: FF .DB $FF 00005495: 00 BRK 00005496: 00 BRK 00005497: 00 BRK 00005498: 00 BRK 00005499: 00 BRK 0000549A: 00 BRK 0000549B: 00 BRK 0000549C: 00 BRK 0000549D: FF .DB $FF 0000549E: 8181 STA ($81,X) 000054A0: C683 DEC $83 000054A2: FF .DB $FF 000054A3: FF .DB $FF 000054A4: 00 BRK 000054A5: 00 BRK 000054A6: 00 BRK 000054A7: 00 BRK 000054A8: 00 BRK 000054A9: 00 BRK 000054AA: 00 BRK 000054AB: 00 BRK 000054AC: 81FF STA ($FF,X) 000054AE: 8181 STA ($81,X) 000054B0: 83 .DB $83 000054B1: FF .DB $FF 000054B2: FF .DB $FF 000054B3: 00 BRK 000054B4: 00 BRK 000054B5: 00 BRK 000054B6: 00 BRK 000054B7: 00 BRK 000054B8: 00 BRK 000054B9: 00 BRK 000054BA: 00 BRK 000054BB: 8181 STA ($81,X) 000054BD: FF .DB $FF 000054BE: 8181 STA ($81,X) 000054C0: FF .DB $FF 000054C1: FF .DB $FF 000054C2: 00 BRK 000054C3: 00 BRK 000054C4: 00 BRK 000054C5: 00 BRK 000054C6: 00 BRK 000054C7: 00 BRK 000054C8: 00 BRK 000054C9: 00 BRK 000054CA: 8181 STA ($81,X) 000054CC: 81FF STA ($FF,X) 000054CE: 8181 STA ($81,X) 000054D0: BF .DB $BF 000054D1: 5F .DB $5F 000054D2: 5F .DB $5F 000054D3: 5F .DB $5F 000054D4: 00 BRK 000054D5: 5F .DB $5F 000054D6: 5155 EOR ($55),Y 000054D8: FF .DB $FF 000054D9: 7F .DB $7F 000054DA: 7F .DB $7F 000054DB: 7F .DB $7F 000054DC: 7F .DB $7F 000054DD: 7F .DB $7F 000054DE: 7F .DB $7F 000054DF: 7F .DB $7F 000054E0: 515F EOR ($5F),Y 000054E2: 00 BRK 000054E3: 5F .DB $5F 000054E4: 5F .DB $5F 000054E5: 5F .DB $5F 000054E6: 5F .DB $5F 000054E7: BF .DB $BF 000054E8: 7F .DB $7F 000054E9: 7F .DB $7F 000054EA: 7F .DB $7F 000054EB: 7F .DB $7F 000054EC: 72 .DB $72 000054ED: 7F .DB $7F 000054EE: 7F .DB $7F 000054EF: FF .DB $FF 000054F0: FF .DB $FF 000054F1: FEFEFE INC $FEFE,X 000054F4: 00 BRK 000054F5: FE2626 INC $2626,X 000054F8: FF .DB $FF 000054F9: FEFEFE INC $FEFE,X 000054FC: FEFEFE INC $FEFE,X 000054FF: FE22FE INC $FE22,X 00005502: 00 BRK 00005503: FEFEFE INC $FEFE,X 00005506: FEFFFE INC $FEFF,X 00005509: FEFEFE INC $FEFE,X 0000550C: 4A LSR A 0000550D: FEFEFF INC $FFFE,X 00005510: 07 .DB $07 00005511: 00 BRK 00005512: 0F .DB $0F 00005513: 1F .DB $1F 00005514: 1F .DB $1F 00005515: 1F .DB $1F 00005516: 1F .DB $1F 00005517: 1F .DB $1F 00005518: 050F ORA $0F 0000551A: 0B .DB $0B 0000551B: 1B .DB $1B 0000551C: 13 .DB $13 0000551D: 13 .DB $13 0000551E: 13 .DB $13 0000551F: 13 .DB $13 00005520: 1F .DB $1F 00005521: 1F .DB $1F 00005522: 1F .DB $1F 00005523: 1F .DB $1F 00005524: 1F .DB $1F 00005525: 0F .DB $0F 00005526: 00 BRK 00005527: 07 .DB $07 00005528: 13 .DB $13 00005529: 13 .DB $13 0000552A: 13 .DB $13 0000552B: 13 .DB $13 0000552C: 1B .DB $1B 0000552D: 0B .DB $0B 0000552E: 0F .DB $0F 0000552F: 0507 ORA $07 00005531: 00 BRK 00005532: 0F .DB $0F 00005533: 1F .DB $1F 00005534: 1F .DB $1F 00005535: 1F .DB $1F 00005536: 1F .DB $1F 00005537: 1F .DB $1F 00005538: 050F ORA $0F 0000553A: 0B .DB $0B 0000553B: 1B .DB $1B 0000553C: 13 .DB $13 0000553D: 13 .DB $13 0000553E: 13 .DB $13 0000553F: 13 .DB $13 00005540: 1F .DB $1F 00005541: 1F .DB $1F 00005542: 1F .DB $1F 00005543: 1F .DB $1F 00005544: 1F .DB $1F 00005545: 0F .DB $0F 00005546: 00 BRK 00005547: 07 .DB $07 00005548: 13 .DB $13 00005549: 13 .DB $13 0000554A: 13 .DB $13 0000554B: 13 .DB $13 0000554C: 1B .DB $1B 0000554D: 0B .DB $0B 0000554E: 0F .DB $0F 0000554F: 05E0 ORA $E0 00005551: 00 BRK 00005552: F1FB SBC ($FB),Y 00005554: FB .DB $FB 00005555: FB .DB $FB 00005556: FB .DB $FB 00005557: FB .DB $FB 00005558: A0F1 LDY #$F1 0000555A: D1DB CMP ($DB),Y 0000555C: CA DEX 0000555D: CA DEX 0000555E: CA DEX 0000555F: CA DEX 00005560: FB .DB $FB 00005561: FB .DB $FB 00005562: FB .DB $FB 00005563: FB .DB $FB 00005564: FB .DB $FB 00005565: F100 SBC ($00),Y 00005567: E0CA CPX #$CA 00005569: CA DEX 0000556A: CA DEX 0000556B: CA DEX 0000556C: DB .DB $DB 0000556D: D1F1 CMP ($F1),Y 0000556F: A0E0 LDY #$E0 00005571: 00 BRK 00005572: F1FB SBC ($FB),Y 00005574: FB .DB $FB 00005575: FB .DB $FB 00005576: FB .DB $FB 00005577: FB .DB $FB 00005578: A0F1 LDY #$F1 0000557A: D1DB CMP ($DB),Y 0000557C: CA DEX 0000557D: CA DEX 0000557E: CA DEX 0000557F: CA DEX 00005580: FB .DB $FB 00005581: FB .DB $FB 00005582: FB .DB $FB 00005583: FB .DB $FB 00005584: FB .DB $FB 00005585: F100 SBC ($00),Y 00005587: E0CA CPX #$CA 00005589: CA DEX 0000558A: CA DEX 0000558B: CA DEX 0000558C: DB .DB $DB 0000558D: D1F0 CMP ($F0),Y 0000558F: A0FC LDY #$FC 00005591: 00 BRK 00005592: FEFFFF INC $FFFF,X 00005595: FF .DB $FF 00005596: FF .DB $FF 00005597: FF .DB $FF 00005598: B4FE LDY $FE,X 0000559A: 7A .DB $7A 0000559B: 7B .DB $7B 0000559C: 797979 ADC $7979,Y 0000559F: 79FFFF ADC $FFFF,Y 000055A2: FF .DB $FF 000055A3: FF .DB $FF 000055A4: FF .DB $FF 000055A5: FE00FC INC $FC00,X 000055A8: 797979 ADC $7979,Y 000055AB: 797B7A ADC $7A7B,Y 000055AE: FEB4FC INC $FCB4,X 000055B1: 00 BRK 000055B2: FEFFFF INC $FFFF,X 000055B5: FF .DB $FF 000055B6: FF .DB $FF 000055B7: FF .DB $FF 000055B8: B4FE LDY $FE,X 000055BA: 7A .DB $7A 000055BB: 7B .DB $7B 000055BC: 797979 ADC $7979,Y 000055BF: 79FFFF ADC $FFFF,Y 000055C2: FF .DB $FF 000055C3: FF .DB $FF 000055C4: FF .DB $FF 000055C5: FE00FC INC $FC00,X 000055C8: 797979 ADC $7979,Y 000055CB: 797B7A ADC $7A7B,Y 000055CE: FEB400 INC $00B4,X 000055D1: 00 BRK 000055D2: 1F .DB $1F 000055D3: 1010 BPL $10 000055D5: 1F .DB $1F 000055D6: 00 BRK 000055D7: 00 BRK 000055D8: 7F .DB $7F 000055D9: BF .DB $BF 000055DA: FF .DB $FF 000055DB: B2 .DB $B2 000055DC: B1FF LDA ($FF),Y 000055DE: BF .DB $BF 000055DF: 7F .DB $7F 000055E0: 00 BRK 000055E1: 00 BRK 000055E2: F8 SED 000055E3: 08 PHP 000055E4: 08 PHP 000055E5: F8 SED 000055E6: 00 BRK 000055E7: 00 BRK 000055E8: FEFDFF INC $FFFD,X 000055EB: CD6DFF CMP $FF6D 000055EE: FDFE00 SBC $00FE,X 000055F1: 0102 ORA ($02,X) 000055F3: 02 .DB $02 000055F4: F108 SBC ($08),Y 000055F6: 04 .DB $04 000055F7: 03 .DB $03 000055F8: FF .DB $FF 000055F9: FF .DB $FF 000055FA: AEFEFF LDX $FFFE 000055FD: 0F .DB $0F 000055FE: 07 .DB $07 000055FF: 03 .DB $03 00005600: 00 BRK 00005601: 80 .DB $80 00005602: 40 RTI 00005603: 40 RTI 00005604: 8F .DB $8F 00005605: 1020 BPL $20 00005607: C0FF CPY #$FF 00005609: FF .DB $FF 0000560A: 757F ADC $7F,X 0000560C: FF .DB $FF 0000560D: F0E0 BEQ $E0 0000560F: C003 CPY #$03 00005611: 04 .DB $04 00005612: 08 PHP 00005613: F102 SBC ($02),Y 00005615: 02 .DB $02 00005616: 0100 ORA ($00,X) 00005618: 03 .DB $03 00005619: 07 .DB $07 0000561A: 0F .DB $0F 0000561B: FF .DB $FF 0000561C: FEAEFF INC $FFAE,X 0000561F: FF .DB $FF 00005620: C020 CPY #$20 00005622: 108F BPL $8F 00005624: 40 RTI 00005625: 40 RTI 00005626: 80 .DB $80 00005627: 00 BRK 00005628: C0E0 CPY #$E0 0000562A: F0FF BEQ $FF 0000562C: 7F .DB $7F 0000562D: 75FF ADC $FF,X 0000562F: FF .DB $FF 00005630: FF .DB $FF 00005631: FF .DB $FF 00005632: C3 .DB $C3 00005633: 8181 STA ($81,X) 00005635: C3 .DB $C3 00005636: FF .DB $FF 00005637: FF .DB $FF 00005638: FF .DB $FF 00005639: 00 BRK 0000563A: C3 .DB $C3 0000563B: 8181 STA ($81,X) 0000563D: C3 .DB $C3 0000563E: FF .DB $FF 0000563F: 00 BRK 00005640: FF .DB $FF 00005641: 990000 STA $0000,Y 00005644: 00 BRK 00005645: 8181 STA ($81,X) 00005647: 8181 STA ($81,X) 00005649: 667E ROR $7E 0000564B: 7E7EFF ROR $FF7E,X 0000564E: FF .DB $FF 0000564F: 7E0000 ROR $0000,X 00005652: 00 BRK 00005653: 00 BRK 00005654: 60 RTS 00005655: 60 RTS 00005656: 00 BRK 00005657: 00 BRK 00005658: 00 BRK 00005659: 00 BRK 0000565A: 00 BRK 0000565B: 00 BRK 0000565C: 00 BRK 0000565D: 00 BRK 0000565E: 00 BRK 0000565F: 00 BRK 00005660: 00 BRK 00005661: 00 BRK 00005662: 00 BRK 00005663: 00 BRK 00005664: 6C6C08 JMP ($086C) 00005667: 00 BRK 00005668: 00 BRK 00005669: 00 BRK 0000566A: 00 BRK 0000566B: 00 BRK 0000566C: 00 BRK 0000566D: 00 BRK 0000566E: 00 BRK 0000566F: 00 BRK 00005670: 3C .DB $3C 00005671: 18 CLC 00005672: 18 CLC 00005673: 18 CLC 00005674: 18 CLC 00005675: 18 CLC 00005676: 3C .DB $3C 00005677: 00 BRK 00005678: 00 BRK 00005679: 00 BRK 0000567A: 00 BRK 0000567B: 00 BRK 0000567C: 00 BRK 0000567D: 00 BRK 0000567E: 00 BRK 0000567F: 00 BRK 00005680: FF .DB $FF 00005681: 6666 ROR $66 00005683: 6666 ROR $66 00005685: 6666 ROR $66 00005687: FF .DB $FF 00005688: 00 BRK 00005689: 00 BRK 0000568A: 00 BRK 0000568B: 00 BRK 0000568C: 00 BRK 0000568D: 00 BRK 0000568E: 00 BRK 0000568F: 00 BRK 00005690: 03 .DB $03 00005691: 0100 ORA ($00,X) 00005693: 00 BRK 00005694: 00 BRK 00005695: 00 BRK 00005696: 00 BRK 00005697: 00 BRK 00005698: 03 .DB $03 00005699: 0100 ORA ($00,X) 0000569B: 00 BRK 0000569C: 00 BRK 0000569D: 00 BRK 0000569E: 00 BRK 0000569F: 00 BRK 000056A0: 83 .DB $83 000056A1: D1E1 CMP ($E1),Y 000056A3: D102 CMP ($02),Y 000056A5: 84F0 STY $F0 000056A7: CEFFFF DEC $FFFF 000056AA: FF .DB $FF 000056AB: FF .DB $FF 000056AC: FF .DB $FF 000056AD: FF .DB $FF 000056AE: FF .DB $FF 000056AF: FF .DB $FF 000056B0: C080 CPY #$80 000056B2: 00 BRK 000056B3: 00 BRK 000056B4: 00 BRK 000056B5: 00 BRK 000056B6: 00 BRK 000056B7: 00 BRK 000056B8: C080 CPY #$80 000056BA: 00 BRK 000056BB: 00 BRK 000056BC: 00 BRK 000056BD: 00 BRK 000056BE: 00 BRK 000056BF: 00 BRK 000056C0: C18B CMP ($8B,X) 000056C2: 87 .DB $87 000056C3: 8B .DB $8B 000056C4: 40 RTI 000056C5: 210F AND ($0F,X) 000056C7: D3 .DB $D3 000056C8: FF .DB $FF 000056C9: FF .DB $FF 000056CA: FF .DB $FF 000056CB: FF .DB $FF 000056CC: FF .DB $FF 000056CD: FF .DB $FF 000056CE: FF .DB $FF 000056CF: FF .DB $FF 000056D0: FF .DB $FF 000056D1: FF .DB $FF 000056D2: FF .DB $FF 000056D3: 1F .DB $1F 000056D4: 0F .DB $0F 000056D5: 1E3F7F ASL $7F3F,X 000056D8: FF .DB $FF 000056D9: FF .DB $FF 000056DA: FF .DB $FF 000056DB: 1F .DB $1F 000056DC: 1F .DB $1F 000056DD: 3F .DB $3F 000056DE: 7F .DB $7F 000056DF: FF .DB $FF 000056E0: FF .DB $FF 000056E1: FF .DB $FF 000056E2: FF .DB $FF 000056E3: F8 SED 000056E4: F078 BEQ $78 000056E6: FC .DB $FC 000056E7: FEFFFF INC $FFFF,X 000056EA: FF .DB $FF 000056EB: F8 SED 000056EC: F8 SED 000056ED: FC .DB $FC 000056EE: FEFF00 INC $00FF,X 000056F1: 00 BRK 000056F2: 00 BRK 000056F3: 00 BRK 000056F4: 00 BRK 000056F5: 3C .DB $3C 000056F6: 42 .DB $42 000056F7: 8100 STA ($00,X) 000056F9: 00 BRK 000056FA: 00 BRK 000056FB: 00 BRK 000056FC: 00 BRK 000056FD: 3C .DB $3C 000056FE: 42 .DB $42 000056FF: 8181 STA ($81,X) 00005701: BD7EFF LDA $FF7E,X 00005704: E7 .DB $E7 00005705: FF .DB $FF 00005706: FF .DB $FF 00005707: FF .DB $FF 00005708: 81BD STA ($BD,X) 0000570A: 7EA5DB ROR $DBA5,X 0000570D: E7 .DB $E7 0000570E: FF .DB $FF 0000570F: FF .DB $FF 00005710: 0107 ORA ($07,X) 00005712: 1F .DB $1F 00005713: 3F .DB $3F 00005714: 7F .DB $7F 00005715: FF .DB $FF 00005716: FF .DB $FF 00005717: DD0005 CMP $0500,X 0000571A: 193363 ORA $6333,Y 0000571D: C7 .DB $C7 0000571E: C7 .DB $C7 0000571F: C489 CPY $89 00005721: 0101 ORA ($01,X) 00005723: 0101 ORA ($01,X) 00005725: 0100 ORA ($00,X) 00005727: 00 BRK 00005728: 80 .DB $80 00005729: 00 BRK 0000572A: 00 BRK 0000572B: 0101 ORA ($01,X) 0000572D: 0100 ORA ($00,X) 0000572F: 00 BRK 00005730: 80 .DB $80 00005731: E0F8 CPX #$F8 00005733: FC .DB $FC 00005734: FEFFFF INC $FFFF,X 00005737: 3B .DB $3B 00005738: 00 BRK 00005739: A098 LDY #$98 0000573B: CCC6E3 CPY $E3C6 0000573E: E3 .DB $E3 0000573F: 23 .DB $23 00005740: 1100 ORA ($00),Y 00005742: 00 BRK 00005743: 00 BRK 00005744: 00 BRK 00005745: 40 RTI 00005746: 80 .DB $80 00005747: 00 BRK 00005748: 0100 ORA ($00,X) 0000574A: 00 BRK 0000574B: 00 BRK 0000574C: 00 BRK 0000574D: 40 RTI 0000574E: 80 .DB $80 0000574F: 00 BRK 00005750: 0101 ORA ($01,X) 00005752: 0101 ORA ($01,X) 00005754: 0101 ORA ($01,X) 00005756: 0101 ORA ($01,X) 00005758: 0101 ORA ($01,X) 0000575A: 0101 ORA ($01,X) 0000575C: 0101 ORA ($01,X) 0000575E: 0101 ORA ($01,X) 00005760: 80 .DB $80 00005761: 80 .DB $80 00005762: 80 .DB $80 00005763: 80 .DB $80 00005764: 80 .DB $80 00005765: 80 .DB $80 00005766: 80 .DB $80 00005767: 80 .DB $80 00005768: 80 .DB $80 00005769: 80 .DB $80 0000576A: 80 .DB $80 0000576B: 80 .DB $80 0000576C: 80 .DB $80 0000576D: 80 .DB $80 0000576E: 80 .DB $80 0000576F: 80 .DB $80 00005770: 0103 ORA ($03,X) 00005772: 00 BRK 00005773: 00 BRK 00005774: 03 .DB $03 00005775: 190000 ORA $0000,Y 00005778: 0103 ORA ($03,X) 0000577A: 03 .DB $03 0000577B: 07 .DB $07 0000577C: 04 .DB $04 0000577D: 1C .DB $1C 0000577E: 3F .DB $3F 0000577F: 7F .DB $7F 00005780: 00 BRK 00005781: 00 BRK 00005782: 7C .DB $7C 00005783: 02 .DB $02 00005784: 0100 ORA ($00,X) 00005786: 00 BRK 00005787: 00 BRK 00005788: 7F .DB $7F 00005789: FF .DB $FF 0000578A: FF .DB $FF 0000578B: 7F .DB $7F 0000578C: 7F .DB $7F 0000578D: 1F .DB $1F 0000578E: 03 .DB $03 0000578F: 00 BRK 00005790: 00 BRK 00005791: 00 BRK 00005792: 0101 ORA ($01,X) 00005794: 03 .DB $03 00005795: 07 .DB $07 00005796: 07 .DB $07 00005797: 0F .DB $0F 00005798: 00 BRK 00005799: 00 BRK 0000579A: 0101 ORA ($01,X) 0000579C: 03 .DB $03 0000579D: 07 .DB $07 0000579E: 07 .DB $07 0000579F: 0F .DB $0F 000057A0: 0F .DB $0F 000057A1: 07 .DB $07 000057A2: 0F .DB $0F 000057A3: 07 .DB $07 000057A4: 0110 ORA ($10,X) 000057A6: 2000FF JSR $FF00 000057A9: FF .DB $FF 000057AA: 3F .DB $3F 000057AB: 3F .DB $3F 000057AC: 7F .DB $7F 000057AD: FEFC30 INC $30FC,X 000057B0: F8 SED 000057B1: FE7F1F INC $1F7F,X 000057B4: 0F .DB $0F 000057B5: 193070 ORA $7030,Y 000057B8: F8 SED 000057B9: FEFFFF INC $FFFF,X 000057BC: FF .DB $FF 000057BD: FF .DB $FF 000057BE: FF .DB $FF 000057BF: FF .DB $FF 000057C0: FB .DB $FB 000057C1: 73 .DB $73 000057C2: 27 .DB $27 000057C3: 0F .DB $0F 000057C4: 1F .DB $1F 000057C5: 1F .DB $1F 000057C6: 3F .DB $3F 000057C7: 7F .DB $7F 000057C8: FF .DB $FF 000057C9: FF .DB $FF 000057CA: FF .DB $FF 000057CB: FF .DB $FF 000057CC: FF .DB $FF 000057CD: FF .DB $FF 000057CE: FF .DB $FF 000057CF: 7F .DB $7F 000057D0: FF .DB $FF 000057D1: FF .DB $FF 000057D2: FF .DB $FF 000057D3: FF .DB $FF 000057D4: FEFDF8 INC $F8FD,X 000057D7: F6FF INC $FF,X 000057D9: FF .DB $FF 000057DA: FF .DB $FF 000057DB: FF .DB $FF 000057DC: FF .DB $FF 000057DD: FF .DB $FF 000057DE: FF .DB $FF 000057DF: FF .DB $FF 000057E0: EF .DB $EF 000057E1: CF .DB $CF 000057E2: 9F .DB $9F 000057E3: 1F .DB $1F 000057E4: 0F .DB $0F 000057E5: 2D5040 AND $4050 000057E8: EF .DB $EF 000057E9: CF .DB $CF 000057EA: 9F .DB $9F 000057EB: 1F .DB $1F 000057EC: 0F .DB $0F 000057ED: 7F .DB $7F 000057EE: FF .DB $FF 000057EF: FF .DB $FF 000057F0: 00 BRK 000057F1: 00 BRK 000057F2: 00 BRK 000057F3: 00 BRK 000057F4: E0FE CPX #$FE 000057F6: FF .DB $FF 000057F7: F3 .DB $F3 000057F8: 00 BRK 000057F9: 00 BRK 000057FA: 00 BRK 000057FB: F0FE BEQ $FE 000057FD: FF .DB $FF 000057FE: FF .DB $FF 000057FF: FF .DB $FF 00005800: FB .DB $FB 00005801: FB .DB $FB 00005802: FB .DB $FB 00005803: FB .DB $FB 00005804: FB .DB $FB 00005805: F3 .DB $F3 00005806: F7 .DB $F7 00005807: E7 .DB $E7 00005808: FF .DB $FF 00005809: FF .DB $FF 0000580A: FF .DB $FF 0000580B: FF .DB $FF 0000580C: FF .DB $FF 0000580D: FF .DB $FF 0000580E: FF .DB $FF 0000580F: FF .DB $FF 00005810: CF .DB $CF 00005811: 9F .DB $9F 00005812: 3F .DB $3F 00005813: 3F .DB $3F 00005814: 3F .DB $3F 00005815: 0F .DB $0F 00005816: 03 .DB $03 00005817: 00 BRK 00005818: FF .DB $FF 00005819: FF .DB $FF 0000581A: FF .DB $FF 0000581B: FF .DB $FF 0000581C: FF .DB $FF 0000581D: FF .DB $FF 0000581E: FF .DB $FF 0000581F: FF .DB $FF 00005820: C0F0 CPY #$F0 00005822: FC .DB $FC 00005823: F0F0 BEQ $F0 00005825: 98 TYA 00005826: 08 PHP 00005827: 00 BRK 00005828: FF .DB $FF 00005829: FF .DB $FF 0000582A: FF .DB $FF 0000582B: F0F0 BEQ $F0 0000582D: F8 SED 0000582E: F8 SED 0000582F: F8 SED 00005830: 00 BRK 00005831: 00 BRK 00005832: 00 BRK 00005833: 00 BRK 00005834: 00 BRK 00005835: 00 BRK 00005836: 80 .DB $80 00005837: C000 CPY #$00 00005839: 00 BRK 0000583A: 00 BRK 0000583B: 00 BRK 0000583C: 00 BRK 0000583D: 80 .DB $80 0000583E: C0E0 CPY #$E0 00005840: E0E0 CPX #$E0 00005842: F0F0 BEQ $F0 00005844: F0F0 BEQ $F0 00005846: F8 SED 00005847: F8 SED 00005848: F0F0 BEQ $F0 0000584A: F8 SED 0000584B: F8 SED 0000584C: F8 SED 0000584D: FC .DB $FC 0000584E: FC .DB $FC 0000584F: FEFEFF INC $FFFE,X 00005852: FF .DB $FF 00005853: FF .DB $FF 00005854: FF .DB $FF 00005855: FF .DB $FF 00005856: FF .DB $FF 00005857: FF .DB $FF 00005858: FF .DB $FF 00005859: FF .DB $FF 0000585A: FF .DB $FF 0000585B: FF .DB $FF 0000585C: FF .DB $FF 0000585D: FF .DB $FF 0000585E: FF .DB $FF 0000585F: FF .DB $FF 00005860: 3F .DB $3F 00005861: 1F .DB $1F 00005862: 1F .DB $1F 00005863: 0F .DB $0F 00005864: 07 .DB $07 00005865: 00 BRK 00005866: 00 BRK 00005867: 00 BRK 00005868: FF .DB $FF 00005869: FF .DB $FF 0000586A: FF .DB $FF 0000586B: 0F .DB $0F 0000586C: 07 .DB $07 0000586D: 00 BRK 0000586E: 00 BRK 0000586F: 00 BRK 00005870: 00 BRK 00005871: 00 BRK 00005872: C0E0 CPY #$E0 00005874: F0F0 BEQ $F0 00005876: F0F8 BEQ $F8 00005878: 00 BRK 00005879: 80 .DB $80 0000587A: C0E0 CPY #$E0 0000587C: F0F0 BEQ $F0 0000587E: F0FC BEQ $FC 00005880: F9FFFF SBC $FFFF,Y 00005883: FF .DB $FF 00005884: FF .DB $FF 00005885: 0E0214 ASL $1402 00005888: FF .DB $FF 00005889: FF .DB $FF 0000588A: FF .DB $FF 0000588B: FF .DB $FF 0000588C: FF .DB $FF 0000588D: 0F .DB $0F 0000588E: 1F .DB $1F 0000588F: 3F .DB $3F 00005890: 80 .DB $80 00005891: A020 LDY #$20 00005893: 20A080 JSR $80A0 00005896: 00 BRK 00005897: 00 BRK 00005898: C0E0 CPY #$E0 0000589A: E0E0 CPX #$E0 0000589C: E0C0 CPX #$C0 0000589E: C080 CPY #$80 000058A0: 0105 ORA ($05,X) 000058A2: 04 .DB $04 000058A3: 04 .DB $04 000058A4: 0501 ORA $01 000058A6: 00 BRK 000058A7: 00 BRK 000058A8: 03 .DB $03 000058A9: 07 .DB $07 000058AA: 07 .DB $07 000058AB: 07 .DB $07 000058AC: 07 .DB $07 000058AD: 03 .DB $03 000058AE: 03 .DB $03 000058AF: 0100 ORA ($00,X) 000058B1: 00 BRK 000058B2: 03 .DB $03 000058B3: 07 .DB $07 000058B4: 0F .DB $0F 000058B5: 0F .DB $0F 000058B6: 0F .DB $0F 000058B7: 0F .DB $0F 000058B8: 00 BRK 000058B9: 0103 ORA ($03,X) 000058BB: 07 .DB $07 000058BC: 0F .DB $0F 000058BD: 0F .DB $0F 000058BE: 0F .DB $0F 000058BF: 3F .DB $3F 000058C0: 9F .DB $9F 000058C1: FF .DB $FF 000058C2: FF .DB $FF 000058C3: FF .DB $FF 000058C4: FF .DB $FF 000058C5: 7040 BVS $40 000058C7: 28 PLP 000058C8: FF .DB $FF 000058C9: FF .DB $FF 000058CA: FF .DB $FF 000058CB: FF .DB $FF 000058CC: FF .DB $FF 000058CD: F0F8 BEQ $F8 000058CF: FC .DB $FC 000058D0: 00 BRK 000058D1: 00 BRK 000058D2: 00 BRK 000058D3: 00 BRK 000058D4: 00 BRK 000058D5: 00 BRK 000058D6: 0103 ORA ($03,X) 000058D8: 00 BRK 000058D9: 00 BRK 000058DA: 00 BRK 000058DB: 00 BRK 000058DC: 00 BRK 000058DD: 0103 ORA ($03,X) 000058DF: 07 .DB $07 000058E0: 07 .DB $07 000058E1: 07 .DB $07 000058E2: 0F .DB $0F 000058E3: 0F .DB $0F 000058E4: 0F .DB $0F 000058E5: 0F .DB $0F 000058E6: 1F .DB $1F 000058E7: 1F .DB $1F 000058E8: 0F .DB $0F 000058E9: 0F .DB $0F 000058EA: 1F .DB $1F 000058EB: 1F .DB $1F 000058EC: 1F .DB $1F 000058ED: 3F .DB $3F 000058EE: 3F .DB $3F 000058EF: 7F .DB $7F 000058F0: 7F .DB $7F 000058F1: FF .DB $FF 000058F2: FF .DB $FF 000058F3: FF .DB $FF 000058F4: FF .DB $FF 000058F5: FF .DB $FF 000058F6: FF .DB $FF 000058F7: FF .DB $FF 000058F8: FF .DB $FF 000058F9: FF .DB $FF 000058FA: FF .DB $FF 000058FB: FF .DB $FF 000058FC: FF .DB $FF 000058FD: FF .DB $FF 000058FE: FF .DB $FF 000058FF: FF .DB $FF 00005900: FC .DB $FC 00005901: F8 SED 00005902: F8 SED 00005903: F0E0 BEQ $E0 00005905: 00 BRK 00005906: 00 BRK 00005907: 00 BRK 00005908: FF .DB $FF 00005909: FF .DB $FF 0000590A: FF .DB $FF 0000590B: F0E0 BEQ $E0 0000590D: 00 BRK 0000590E: 00 BRK 0000590F: 00 BRK 00005910: 00 BRK 00005911: 00 BRK 00005912: 00 BRK 00005913: 00 BRK 00005914: 07 .DB $07 00005915: 7F .DB $7F 00005916: FF .DB $FF 00005917: CF .DB $CF 00005918: 00 BRK 00005919: 00 BRK 0000591A: 00 BRK 0000591B: 0F .DB $0F 0000591C: 7F .DB $7F 0000591D: FF .DB $FF 0000591E: FF .DB $FF 0000591F: FF .DB $FF 00005920: DF .DB $DF 00005921: DF .DB $DF 00005922: DF .DB $DF 00005923: DF .DB $DF 00005924: DF .DB $DF 00005925: CF .DB $CF 00005926: EF .DB $EF 00005927: E7 .DB $E7 00005928: FF .DB $FF 00005929: FF .DB $FF 0000592A: FF .DB $FF 0000592B: FF .DB $FF 0000592C: FF .DB $FF 0000592D: FF .DB $FF 0000592E: FF .DB $FF 0000592F: FF .DB $FF 00005930: F3 .DB $F3 00005931: F9FCFC SBC $FCFC,Y 00005934: FC .DB $FC 00005935: F0C0 BEQ $C0 00005937: 00 BRK 00005938: FF .DB $FF 00005939: FF .DB $FF 0000593A: FF .DB $FF 0000593B: FF .DB $FF 0000593C: FF .DB $FF 0000593D: FF .DB $FF 0000593E: FF .DB $FF 0000593F: FF .DB $FF 00005940: 03 .DB $03 00005941: 0F .DB $0F 00005942: 3F .DB $3F 00005943: 0F .DB $0F 00005944: 0F .DB $0F 00005945: 191000 ORA $0010,Y 00005948: FF .DB $FF 00005949: FF .DB $FF 0000594A: FF .DB $FF 0000594B: 0F .DB $0F 0000594C: 0F .DB $0F 0000594D: 1F .DB $1F 0000594E: 1F .DB $1F 0000594F: 1F .DB $1F 00005950: 1F .DB $1F 00005951: 7F .DB $7F 00005952: FEF8F0 INC $F0F8,X 00005955: 98 TYA 00005956: 0C .DB $0C 00005957: 0E1F7F ASL $7F1F 0000595A: FF .DB $FF 0000595B: FF .DB $FF 0000595C: FF .DB $FF 0000595D: FF .DB $FF 0000595E: FF .DB $FF 0000595F: FF .DB $FF 00005960: DF .DB $DF 00005961: CEE4F0 DEC $F0E4 00005964: F8 SED 00005965: F8 SED 00005966: FC .DB $FC 00005967: FEFFFF INC $FFFF,X 0000596A: FF .DB $FF 0000596B: FF .DB $FF 0000596C: FF .DB $FF 0000596D: FF .DB $FF 0000596E: FF .DB $FF 0000596F: FEFFFF INC $FFFF,X 00005972: FF .DB $FF 00005973: FF .DB $FF 00005974: 7F .DB $7F 00005975: BF .DB $BF 00005976: 1F .DB $1F 00005977: 6F .DB $6F 00005978: FF .DB $FF 00005979: FF .DB $FF 0000597A: FF .DB $FF 0000597B: FF .DB $FF 0000597C: FF .DB $FF 0000597D: FF .DB $FF 0000597E: FF .DB $FF 0000597F: FF .DB $FF 00005980: F7 .DB $F7 00005981: F3 .DB $F3 00005982: F9F8F0 SBC $F0F8,Y 00005985: B40A LDY $0A,X 00005987: 02 .DB $02 00005988: F7 .DB $F7 00005989: F3 .DB $F3 0000598A: F9F8F0 SBC $F0F8,Y 0000598D: FEFFFF INC $FFFF,X 00005990: 80 .DB $80 00005991: C000 CPY #$00 00005993: 00 BRK 00005994: C098 CPY #$98 00005996: 00 BRK 00005997: 00 BRK 00005998: 80 .DB $80 00005999: C0C0 CPY #$C0 0000599B: E020 CPX #$20 0000599D: 38 SEC 0000599E: FC .DB $FC 0000599F: FE0000 INC $0000,X 000059A2: 3E4080 ROL $8040,X 000059A5: 00 BRK 000059A6: 00 BRK 000059A7: 00 BRK 000059A8: FEFFFF INC $FFFF,X 000059AB: FEFCF8 INC $F8FC,X 000059AE: C000 CPY #$00 000059B0: 00 BRK 000059B1: 00 BRK 000059B2: 80 .DB $80 000059B3: 80 .DB $80 000059B4: C0E0 CPY #$E0 000059B6: E0F0 CPX #$F0 000059B8: 00 BRK 000059B9: 00 BRK 000059BA: 80 .DB $80 000059BB: 80 .DB $80 000059BC: C0E0 CPY #$E0 000059BE: E0F0 CPX #$F0 000059C0: F0E0 BEQ $E0 000059C2: F0E0 BEQ $E0 000059C4: 80 .DB $80 000059C5: 08 PHP 000059C6: 04 .DB $04 000059C7: 00 BRK 000059C8: FF .DB $FF 000059C9: FF .DB $FF 000059CA: FC .DB $FC 000059CB: FC .DB $FC 000059CC: FE7E3F INC $3F7E,X 000059CF: 0C .DB $0C 000059D0: 00 BRK 000059D1: 00 BRK 000059D2: 0103 ORA ($03,X) 000059D4: 03 .DB $03 000059D5: 03 .DB $03 000059D6: 07 .DB $07 000059D7: 07 .DB $07 000059D8: 00 BRK 000059D9: 0103 ORA ($03,X) 000059DB: 07 .DB $07 000059DC: 07 .DB $07 000059DD: 07 .DB $07 000059DE: 0F .DB $0F 000059DF: 0F .DB $0F 000059E0: 07 .DB $07 000059E1: 03 .DB $03 000059E2: 03 .DB $03 000059E3: 03 .DB $03 000059E4: 03 .DB $03 000059E5: 03 .DB $03 000059E6: 03 .DB $03 000059E7: 010F ORA ($0F,X) 000059E9: 0F .DB $0F 000059EA: 07 .DB $07 000059EB: 07 .DB $07 000059EC: 07 .DB $07 000059ED: 03 .DB $03 000059EE: 03 .DB $03 000059EF: 0100 ORA ($00,X) 000059F1: 00 BRK 000059F2: 00 BRK 000059F3: 00 BRK 000059F4: 00 BRK 000059F5: 0102 ORA ($02,X) 000059F7: 04 .DB $04 000059F8: 0101 ORA ($01,X) 000059FA: 0100 ORA ($00,X) 000059FC: 00 BRK 000059FD: 03 .DB $03 000059FE: 07 .DB $07 000059FF: 0F .DB $0F 00005A00: 00 BRK 00005A01: 00 BRK 00005A02: 00 BRK 00005A03: 00 BRK 00005A04: 00 BRK 00005A05: 00 BRK 00005A06: 1C .DB $1C 00005A07: 3B .DB $3B 00005A08: 00 BRK 00005A09: 00 BRK 00005A0A: 00 BRK 00005A0B: 00 BRK 00005A0C: 0103 ORA ($03,X) 00005A0E: 3F .DB $3F 00005A0F: 7F .DB $7F 00005A10: 7EFEFF ROR $FFFE,X 00005A13: FF .DB $FF 00005A14: FF .DB $FF 00005A15: FF .DB $FF 00005A16: FDF9FF SBC $FFF9,X 00005A19: FF .DB $FF 00005A1A: FF .DB $FF 00005A1B: FF .DB $FF 00005A1C: FF .DB $FF 00005A1D: FF .DB $FF 00005A1E: FDF9F3 SBC $F3F9,X 00005A21: F7 .DB $F7 00005A22: F6EE INC $EE,X 00005A24: FDFCF8 SBC $F8FC,X 00005A27: E1F3 SBC ($F3,X) 00005A29: FF .DB $FF 00005A2A: FF .DB $FF 00005A2B: FF .DB $FF 00005A2C: FF .DB $FF 00005A2D: FF .DB $FF 00005A2E: FF .DB $FF 00005A2F: FF .DB $FF 00005A30: D3 .DB $D3 00005A31: CB .DB $CB 00005A32: C3 .DB $C3 00005A33: E1F9 SBC ($F9,X) 00005A35: 394200 AND $0042,Y 00005A38: FF .DB $FF 00005A39: FF .DB $FF 00005A3A: FF .DB $FF 00005A3B: FF .DB $FF 00005A3C: FF .DB $FF 00005A3D: FF .DB $FF 00005A3E: FF .DB $FF 00005A3F: FF .DB $FF 00005A40: 07 .DB $07 00005A41: 0F .DB $0F 00005A42: 193063 ORA $6330,Y 00005A45: 72 .DB $72 00005A46: 7001 BVS $01 00005A48: 07 .DB $07 00005A49: 0F .DB $0F 00005A4A: 1F .DB $1F 00005A4B: 3F .DB $3F 00005A4C: FC .DB $FC 00005A4D: FC .DB $FC 00005A4E: FF .DB $FF 00005A4F: FF .DB $FF 00005A50: 00 BRK 00005A51: 1F .DB $1F 00005A52: 20C0C0 JSR $C0C0 00005A55: F0FF BEQ $FF 00005A57: FF .DB $FF 00005A58: FF .DB $FF 00005A59: FF .DB $FF 00005A5A: FF .DB $FF 00005A5B: FF .DB $FF 00005A5C: FF .DB $FF 00005A5D: FF .DB $FF 00005A5E: FF .DB $FF 00005A5F: FF .DB $FF 00005A60: AB .DB $AB 00005A61: C181 CMP ($81,X) 00005A63: 9182 STA ($82),Y 00005A65: FC .DB $FC 00005A66: E0CE CPX #$CE 00005A68: FF .DB $FF 00005A69: FF .DB $FF 00005A6A: FF .DB $FF 00005A6B: FF .DB $FF 00005A6C: FF .DB $FF 00005A6D: FF .DB $FF 00005A6E: FF .DB $FF 00005A6F: FF .DB $FF 00005A70: E5DA SBC $DA 00005A72: F0E0 BEQ $E0 00005A74: C000 CPY #$00 00005A76: 00 BRK 00005A77: 00 BRK 00005A78: FF .DB $FF 00005A79: FF .DB $FF 00005A7A: F0E0 BEQ $E0 00005A7C: C080 CPY #$80 00005A7E: 80 .DB $80 00005A7F: 00 BRK 00005A80: F0F8 BEQ $F8 00005A82: CC8662 CPY $6286 00005A85: 2606 ROL $06 00005A87: C0F0 CPY #$F0 00005A89: F8 SED 00005A8A: FC .DB $FC 00005A8B: FE9F9F INC $9F9F,X 00005A8E: FF .DB $FF 00005A8F: FF .DB $FF 00005A90: 00 BRK 00005A91: FC .DB $FC 00005A92: 0603 ASL $03 00005A94: 0107 ORA ($07,X) 00005A96: FF .DB $FF 00005A97: FF .DB $FF 00005A98: FF .DB $FF 00005A99: FF .DB $FF 00005A9A: FF .DB $FF 00005A9B: FF .DB $FF 00005A9C: FF .DB $FF 00005A9D: FF .DB $FF 00005A9E: FF .DB $FF 00005A9F: FF .DB $FF 00005AA0: D583 CMP $83,X 00005AA2: 8189 STA ($89,X) 00005AA4: 413F EOR ($3F,X) 00005AA6: 07 .DB $07 00005AA7: D3 .DB $D3 00005AA8: FF .DB $FF 00005AA9: FF .DB $FF 00005AAA: FF .DB $FF 00005AAB: FF .DB $FF 00005AAC: FF .DB $FF 00005AAD: FF .DB $FF 00005AAE: FF .DB $FF 00005AAF: FF .DB $FF 00005AB0: 6F .DB $6F 00005AB1: DB .DB $DB 00005AB2: 0F .DB $0F 00005AB3: 07 .DB $07 00005AB4: 03 .DB $03 00005AB5: 00 BRK 00005AB6: 00 BRK 00005AB7: 00 BRK 00005AB8: FF .DB $FF 00005AB9: FF .DB $FF 00005ABA: 0F .DB $0F 00005ABB: 07 .DB $07 00005ABC: 03 .DB $03 00005ABD: 0101 ORA ($01,X) 00005ABF: 00 BRK 00005AC0: 00 BRK 00005AC1: 00 BRK 00005AC2: 00 BRK 00005AC3: 00 BRK 00005AC4: 00 BRK 00005AC5: 00 BRK 00005AC6: 38 SEC 00005AC7: DC .DB $DC 00005AC8: 00 BRK 00005AC9: 00 BRK 00005ACA: 00 BRK 00005ACB: 00 BRK 00005ACC: 80 .DB $80 00005ACD: C0FC CPY #$FC 00005ACF: FE7E7F INC $7F7E,X 00005AD2: 7F .DB $7F 00005AD3: FF .DB $FF 00005AD4: FF .DB $FF 00005AD5: FF .DB $FF 00005AD6: BF .DB $BF 00005AD7: 9F .DB $9F 00005AD8: FF .DB $FF 00005AD9: FF .DB $FF 00005ADA: FF .DB $FF 00005ADB: FF .DB $FF 00005ADC: FF .DB $FF 00005ADD: FF .DB $FF 00005ADE: BF .DB $BF 00005ADF: 9F .DB $9F 00005AE0: CF .DB $CF 00005AE1: EF .DB $EF 00005AE2: 6F .DB $6F 00005AE3: 77 .DB $77 00005AE4: BF .DB $BF 00005AE5: 3F .DB $3F 00005AE6: 1F .DB $1F 00005AE7: 87 .DB $87 00005AE8: CF .DB $CF 00005AE9: FF .DB $FF 00005AEA: FF .DB $FF 00005AEB: FF .DB $FF 00005AEC: FF .DB $FF 00005AED: FF .DB $FF 00005AEE: FF .DB $FF 00005AEF: FF .DB $FF 00005AF0: CB .DB $CB 00005AF1: D3 .DB $D3 00005AF2: C3 .DB $C3 00005AF3: 87 .DB $87 00005AF4: 9F .DB $9F 00005AF5: 9C .DB $9C 00005AF6: 42 .DB $42 00005AF7: 00 BRK 00005AF8: FF .DB $FF 00005AF9: FF .DB $FF 00005AFA: FF .DB $FF 00005AFB: FF .DB $FF 00005AFC: FF .DB $FF 00005AFD: FF .DB $FF 00005AFE: FF .DB $FF 00005AFF: FF .DB $FF 00005B00: 00 BRK 00005B01: 00 BRK 00005B02: 80 .DB $80 00005B03: C0C0 CPY #$C0 00005B05: C0E0 CPY #$E0 00005B07: E000 CPX #$00 00005B09: 80 .DB $80 00005B0A: C0E0 CPY #$E0 00005B0C: E0E0 CPX #$E0 00005B0E: F0F0 BEQ $F0 00005B10: E0C0 CPX #$C0 00005B12: C0C0 CPY #$C0 00005B14: C0C0 CPY #$C0 00005B16: C080 CPY #$80 00005B18: F0F0 BEQ $F0 00005B1A: E0E0 CPX #$E0 00005B1C: E0C0 CPX #$C0 00005B1E: C080 CPY #$80 00005B20: 00 BRK 00005B21: 00 BRK 00005B22: 00 BRK 00005B23: 00 BRK 00005B24: 00 BRK 00005B25: 80 .DB $80 00005B26: 40 RTI 00005B27: 208080 JSR $8080 00005B2A: 80 .DB $80 00005B2B: 00 BRK 00005B2C: 00 BRK 00005B2D: C0E0 CPY #$E0 00005B2F: F000 BEQ $00 00005B31: 00 BRK 00005B32: 00 BRK 00005B33: 0103 ORA ($03,X) 00005B35: 07 .DB $07 00005B36: 07 .DB $07 00005B37: 07 .DB $07 00005B38: 00 BRK 00005B39: 00 BRK 00005B3A: 0103 ORA ($03,X) 00005B3C: 07 .DB $07 00005B3D: 07 .DB $07 00005B3E: 07 .DB $07 00005B3F: 07 .DB $07 00005B40: 03 .DB $03 00005B41: 0100 ORA ($00,X) 00005B43: 00 BRK 00005B44: 00 BRK 00005B45: 00 BRK 00005B46: 0101 ORA ($01,X) 00005B48: 03 .DB $03 00005B49: 0100 ORA ($00,X) 00005B4B: 00 BRK 00005B4C: 00 BRK 00005B4D: 0103 ORA ($03,X) 00005B4F: 03 .DB $03 00005B50: 0101 ORA ($01,X) 00005B52: 07 .DB $07 00005B53: 03 .DB $03 00005B54: 04 .DB $04 00005B55: 00 BRK 00005B56: 00 BRK 00005B57: 00 BRK 00005B58: 03 .DB $03 00005B59: 03 .DB $03 00005B5A: 07 .DB $07 00005B5B: 1F .DB $1F 00005B5C: 3F .DB $3F 00005B5D: 3F .DB $3F 00005B5E: 00 BRK 00005B5F: 00 BRK 00005B60: 00 BRK 00005B61: 00 BRK 00005B62: 00 BRK 00005B63: 00 BRK 00005B64: 00 BRK 00005B65: 00 BRK 00005B66: 00 BRK 00005B67: 07 .DB $07 00005B68: 00 BRK 00005B69: 00 BRK 00005B6A: 00 BRK 00005B6B: 00 BRK 00005B6C: 0103 ORA ($03,X) 00005B6E: 03 .DB $03 00005B6F: 0F .DB $0F 00005B70: 0E3E7F ASL $7F3E 00005B73: FF .DB $FF 00005B74: FF .DB $FF 00005B75: EF .DB $EF 00005B76: F7 .DB $F7 00005B77: F8 SED 00005B78: 3F .DB $3F 00005B79: 7F .DB $7F 00005B7A: FF .DB $FF 00005B7B: FF .DB $FF 00005B7C: FF .DB $FF 00005B7D: FF .DB $FF 00005B7E: FF .DB $FF 00005B7F: FF .DB $FF 00005B80: FF .DB $FF 00005B81: FF .DB $FF 00005B82: FF .DB $FF 00005B83: 1F .DB $1F 00005B84: 1F .DB $1F 00005B85: 7F .DB $7F 00005B86: FF .DB $FF 00005B87: FEFFFF INC $FFFF,X 00005B8A: FF .DB $FF 00005B8B: 1F .DB $1F 00005B8C: 7F .DB $7F 00005B8D: FF .DB $FF 00005B8E: FF .DB $FF 00005B8F: FF .DB $FF 00005B90: FF .DB $FF 00005B91: FF .DB $FF 00005B92: FF .DB $FF 00005B93: FC .DB $FC 00005B94: F8 SED 00005B95: 80 .DB $80 00005B96: 00 BRK 00005B97: 00 BRK 00005B98: FF .DB $FF 00005B99: FF .DB $FF 00005B9A: FF .DB $FF 00005B9B: FC .DB $FC 00005B9C: F8 SED 00005B9D: F8 SED 00005B9E: 00 BRK 00005B9F: 00 BRK 00005BA0: 307F BMI $7F 00005BA2: 7F .DB $7F 00005BA3: 3F .DB $3F 00005BA4: 87 .DB $87 00005BA5: F0FF BEQ $FF 00005BA7: FF .DB $FF 00005BA8: CF .DB $CF 00005BA9: 88 DEY 00005BAA: DDC8F8 CMP $F8C8,X 00005BAD: FF .DB $FF 00005BAE: FF .DB $FF 00005BAF: FF .DB $FF 00005BB0: E5DA SBC $DA 00005BB2: C000 CPY #$00 00005BB4: 00 BRK 00005BB5: 00 BRK 00005BB6: 00 BRK 00005BB7: 00 BRK 00005BB8: FF .DB $FF 00005BB9: FF .DB $FF 00005BBA: C000 CPY #$00 00005BBC: 00 BRK 00005BBD: 00 BRK 00005BBE: 00 BRK 00005BBF: 00 BRK 00005BC0: 06FF ASL $FF 00005BC2: FF .DB $FF 00005BC3: FEF107 INC $07F1,X 00005BC6: FF .DB $FF 00005BC7: FF .DB $FF 00005BC8: F988DD SBC $DD88,Y 00005BCB: 89 .DB $89 00005BCC: 0F .DB $0F 00005BCD: FF .DB $FF 00005BCE: FF .DB $FF 00005BCF: FF .DB $FF 00005BD0: 00 BRK 00005BD1: 0102 ORA ($02,X) 00005BD3: 07 .DB $07 00005BD4: 00 BRK 00005BD5: 00 BRK 00005BD6: 20FF03 JSR $03FF 00005BD9: 07 .DB $07 00005BDA: 0F .DB $0F 00005BDB: 07 .DB $07 00005BDC: 87 .DB $87 00005BDD: C3 .DB $C3 00005BDE: E0FF CPX #$FF 00005BE0: 7F .DB $7F 00005BE1: 7F .DB $7F 00005BE2: 7F .DB $7F 00005BE3: FF .DB $FF 00005BE4: FF .DB $FF 00005BE5: FF .DB $FF 00005BE6: FF .DB $FF 00005BE7: FEFFFF INC $FFFF,X 00005BEA: FF .DB $FF 00005BEB: FF .DB $FF 00005BEC: FF .DB $FF 00005BED: FF .DB $FF 00005BEE: FF .DB $FF 00005BEF: FEFCB8 INC $B8FC,X 00005BF2: 78 SEI 00005BF3: 78 SEI 00005BF4: B078 BCS $78 00005BF6: FC .DB $FC 00005BF7: FEFCF8 INC $F8FC,X 00005BFA: F8 SED 00005BFB: F8 SED 00005BFC: F8 SED 00005BFD: FC .DB $FC 00005BFE: FEFFFF INC $FFFF,X 00005C01: FF .DB $FF 00005C02: FF .DB $FF 00005C03: FF .DB $FF 00005C04: FF .DB $FF 00005C05: 9C .DB $9C 00005C06: 42 .DB $42 00005C07: 00 BRK 00005C08: FF .DB $FF 00005C09: FF .DB $FF 00005C0A: FF .DB $FF 00005C0B: FF .DB $FF 00005C0C: FF .DB $FF 00005C0D: FF .DB $FF 00005C0E: FF .DB $FF 00005C0F: FF .DB $FF 00005C10: 00 BRK 00005C11: 00 BRK 00005C12: 20408A JSR $8A40 00005C15: 1E7EBE ASL $BE7E,X 00005C18: C0F0 CPY #$F0 00005C1A: FC .DB $FC 00005C1B: FC .DB $FC 00005C1C: FEFEFE INC $FEFE,X 00005C1F: FEDFFF INC $FFDF,X 00005C22: FEFCF0 INC $F0FC,X 00005C25: E080 CPX #$80 00005C27: 00 BRK 00005C28: FF .DB $FF 00005C29: FF .DB $FF 00005C2A: FEFCF0 INC $F0FC,X 00005C2D: E080 CPX #$80 00005C2F: 00 BRK 00005C30: 00 BRK 00005C31: 00 BRK 00005C32: 04 .DB $04 00005C33: 02 .DB $02 00005C34: 5178 EOR ($78),Y 00005C36: 7EFD03 ROR $03FD,X 00005C39: 0F .DB $0F 00005C3A: 3F .DB $3F 00005C3B: 3F .DB $3F 00005C3C: 7F .DB $7F 00005C3D: 7F .DB $7F 00005C3E: 7EFFFB ROR $FBFF,X 00005C41: FF .DB $FF 00005C42: 7F .DB $7F 00005C43: 3F .DB $3F 00005C44: 0F .DB $0F 00005C45: 07 .DB $07 00005C46: 0100 ORA ($00,X) 00005C48: FF .DB $FF 00005C49: FF .DB $FF 00005C4A: 7F .DB $7F 00005C4B: 3F .DB $3F 00005C4C: 0F .DB $0F 00005C4D: 07 .DB $07 00005C4E: 0100 ORA ($00,X) 00005C50: 00 BRK 00005C51: 80 .DB $80 00005C52: 40 RTI 00005C53: E000 CPX #$00 00005C55: 00 BRK 00005C56: 04 .DB $04 00005C57: FF .DB $FF 00005C58: C0E0 CPY #$E0 00005C5A: F0E0 BEQ $E0 00005C5C: E1C3 SBC ($C3,X) 00005C5E: 07 .DB $07 00005C5F: FF .DB $FF 00005C60: FEFEFE INC $FEFE,X 00005C63: FF .DB $FF 00005C64: FF .DB $FF 00005C65: FF .DB $FF 00005C66: FF .DB $FF 00005C67: 7F .DB $7F 00005C68: FF .DB $FF 00005C69: FF .DB $FF 00005C6A: FF .DB $FF 00005C6B: FF .DB $FF 00005C6C: FF .DB $FF 00005C6D: FF .DB $FF 00005C6E: FF .DB $FF 00005C6F: 7F .DB $7F 00005C70: 3F .DB $3F 00005C71: 1D1E1E ORA $1E1E,X 00005C74: 0D1E3F ORA $3F1E 00005C77: 7F .DB $7F 00005C78: 3F .DB $3F 00005C79: 1F .DB $1F 00005C7A: 1F .DB $1F 00005C7B: 1F .DB $1F 00005C7C: 1F .DB $1F 00005C7D: 3F .DB $3F 00005C7E: 7F .DB $7F 00005C7F: FF .DB $FF 00005C80: FF .DB $FF 00005C81: FF .DB $FF 00005C82: FF .DB $FF 00005C83: FF .DB $FF 00005C84: FF .DB $FF 00005C85: 394200 AND $0042,Y 00005C88: FF .DB $FF 00005C89: FF .DB $FF 00005C8A: FF .DB $FF 00005C8B: FF .DB $FF 00005C8C: FF .DB $FF 00005C8D: FF .DB $FF 00005C8E: FF .DB $FF 00005C8F: FF .DB $FF 00005C90: 6F .DB $6F 00005C91: DB .DB $DB 00005C92: 03 .DB $03 00005C93: 00 BRK 00005C94: 00 BRK 00005C95: 00 BRK 00005C96: 00 BRK 00005C97: 00 BRK 00005C98: FF .DB $FF 00005C99: FF .DB $FF 00005C9A: 03 .DB $03 00005C9B: 00 BRK 00005C9C: 00 BRK 00005C9D: 00 BRK 00005C9E: 00 BRK 00005C9F: 00 BRK 00005CA0: 00 BRK 00005CA1: 00 BRK 00005CA2: 00 BRK 00005CA3: 00 BRK 00005CA4: 00 BRK 00005CA5: 00 BRK 00005CA6: 00 BRK 00005CA7: E000 CPX #$00 00005CA9: 00 BRK 00005CAA: 00 BRK 00005CAB: 00 BRK 00005CAC: 80 .DB $80 00005CAD: C0C0 CPY #$C0 00005CAF: F070 BEQ $70 00005CB1: 7C .DB $7C 00005CB2: 7EFFFF ROR $FFFF,X 00005CB5: F7 .DB $F7 00005CB6: EF .DB $EF 00005CB7: 1F .DB $1F 00005CB8: FC .DB $FC 00005CB9: FEFFFF INC $FFFF,X 00005CBC: FF .DB $FF 00005CBD: FF .DB $FF 00005CBE: FF .DB $FF 00005CBF: FF .DB $FF 00005CC0: FF .DB $FF 00005CC1: FF .DB $FF 00005CC2: FF .DB $FF 00005CC3: F8 SED 00005CC4: F8 SED 00005CC5: FEFFFF INC $FFFF,X 00005CC8: FF .DB $FF 00005CC9: FF .DB $FF 00005CCA: FF .DB $FF 00005CCB: F8 SED 00005CCC: FEFFFF INC $FFFF,X 00005CCF: FF .DB $FF 00005CD0: FF .DB $FF 00005CD1: FF .DB $FF 00005CD2: FF .DB $FF 00005CD3: 3F .DB $3F 00005CD4: 1E0100 ASL $0001,X 00005CD7: 00 BRK 00005CD8: FF .DB $FF 00005CD9: FF .DB $FF 00005CDA: FF .DB $FF 00005CDB: 3F .DB $3F 00005CDC: 1F .DB $1F 00005CDD: 1F .DB $1F 00005CDE: 00 BRK 00005CDF: 00 BRK 00005CE0: 00 BRK 00005CE1: 00 BRK 00005CE2: 00 BRK 00005CE3: 80 .DB $80 00005CE4: C0E0 CPY #$E0 00005CE6: E0E0 CPX #$E0 00005CE8: 00 BRK 00005CE9: 00 BRK 00005CEA: 80 .DB $80 00005CEB: C0E0 CPY #$E0 00005CED: E0E0 CPX #$E0 00005CEF: E0C0 CPX #$C0 00005CF1: 80 .DB $80 00005CF2: 00 BRK 00005CF3: 00 BRK 00005CF4: 00 BRK 00005CF5: 00 BRK 00005CF6: 80 .DB $80 00005CF7: 80 .DB $80 00005CF8: C080 CPY #$80 00005CFA: 00 BRK 00005CFB: 00 BRK 00005CFC: 00 BRK 00005CFD: 80 .DB $80 00005CFE: C0C0 CPY #$C0 00005D00: 80 .DB $80 00005D01: 80 .DB $80 00005D02: E0C0 CPX #$C0 00005D04: 200000 JSR $0000 00005D07: 00 BRK 00005D08: C0C0 CPY #$C0 00005D0A: E0F8 CPX #$F8 00005D0C: FC .DB $FC 00005D0D: FC .DB $FC 00005D0E: 00 BRK 00005D0F: 00 BRK 00005D10: 1F .DB $1F 00005D11: 0606 ASL $06 00005D13: 0606 ASL $06 00005D15: 0606 ASL $06 00005D17: 00 BRK 00005D18: 00 BRK 00005D19: 00 BRK 00005D1A: 00 BRK 00005D1B: 00 BRK 00005D1C: 00 BRK 00005D1D: 00 BRK 00005D1E: 00 BRK 00005D1F: 00 BRK 00005D20: 396565 AND $6565,Y 00005D23: 6565 ADC $65 00005D25: 6539 ADC $39 00005D27: 00 BRK 00005D28: 00 BRK 00005D29: 00 BRK 00005D2A: 00 BRK 00005D2B: 00 BRK 00005D2C: 00 BRK 00005D2D: 00 BRK 00005D2E: 00 BRK 00005D2F: 00 BRK 00005D30: E0B0 CPX #$B0 00005D32: B0B6 BCS $B6 00005D34: E680 INC $80 00005D36: 80 .DB $80 00005D37: 00 BRK 00005D38: 00 BRK 00005D39: 00 BRK 00005D3A: 00 BRK 00005D3B: 00 BRK 00005D3C: 00 BRK 00005D3D: 00 BRK 00005D3E: 00 BRK 00005D3F: 00 BRK 00005D40: 3C .DB $3C 00005D41: 42 .DB $42 00005D42: 99A1A1 STA $A1A1,Y 00005D45: 99423C STA $3C42,Y 00005D48: 00 BRK 00005D49: 00 BRK 00005D4A: 00 BRK 00005D4B: 00 BRK 00005D4C: 00 BRK 00005D4D: 00 BRK 00005D4E: 00 BRK 00005D4F: 00 BRK 00005D50: 00 BRK 00005D51: 00 BRK 00005D52: 00 BRK 00005D53: 03 .DB $03 00005D54: 0600 ASL $00 00005D56: 0107 ORA ($07,X) 00005D58: 00 BRK 00005D59: 00 BRK 00005D5A: 00 BRK 00005D5B: 00 BRK 00005D5C: 03 .DB $03 00005D5D: 07 .DB $07 00005D5E: 03 .DB $03 00005D5F: 07 .DB $07 00005D60: 0F .DB $0F 00005D61: 1F .DB $1F 00005D62: 3F .DB $3F 00005D63: 7F .DB $7F 00005D64: 7F .DB $7F 00005D65: 7F .DB $7F 00005D66: FF .DB $FF 00005D67: 7F .DB $7F 00005D68: 1F .DB $1F 00005D69: 3F .DB $3F 00005D6A: 7F .DB $7F 00005D6B: FF .DB $FF 00005D6C: FF .DB $FF 00005D6D: FF .DB $FF 00005D6E: FF .DB $FF 00005D6F: 7F .DB $7F 00005D70: 00 BRK 00005D71: 00 BRK 00005D72: 00 BRK 00005D73: 80 .DB $80 00005D74: 00 BRK 00005D75: 00 BRK 00005D76: 00 BRK 00005D77: A000 LDY #$00 00005D79: 00 BRK 00005D7A: 00 BRK 00005D7B: C0E0 CPY #$E0 00005D7D: F0F0 BEQ $F0 00005D7F: F8 SED 00005D80: E0F0 CPX #$F0 00005D82: E0DD CPX #$DD 00005D84: FA .DB $FA 00005D85: EB .DB $EB 00005D86: 80 .DB $80 00005D87: 00 BRK 00005D88: FC .DB $FC 00005D89: F8 SED 00005D8A: F0FF BEQ $FF 00005D8C: FF .DB $FF 00005D8D: FF .DB $FF 00005D8E: FF .DB $FF 00005D8F: FF .DB $FF 00005D90: 00 BRK 00005D91: 00 BRK 00005D92: 00 BRK 00005D93: 03 .DB $03 00005D94: 0600 ASL $00 00005D96: 0101 ORA ($01,X) 00005D98: 00 BRK 00005D99: 00 BRK 00005D9A: 00 BRK 00005D9B: 00 BRK 00005D9C: 03 .DB $03 00005D9D: 07 .DB $07 00005D9E: 0F .DB $0F 00005D9F: 1F .DB $1F 00005DA0: 0B .DB $0B 00005DA1: 07 .DB $07 00005DA2: 03 .DB $03 00005DA3: 5DAF53 EOR $53AF,X 00005DA6: 00 BRK 00005DA7: 00 BRK 00005DA8: 3F .DB $3F 00005DA9: 1F .DB $1F 00005DAA: 07 .DB $07 00005DAB: FF .DB $FF 00005DAC: FF .DB $FF 00005DAD: FF .DB $FF 00005DAE: FF .DB $FF 00005DAF: FF .DB $FF 00005DB0: 00 BRK 00005DB1: 00 BRK 00005DB2: 00 BRK 00005DB3: 80 .DB $80 00005DB4: 00 BRK 00005DB5: 00 BRK 00005DB6: 60 RTS 00005DB7: F000 BEQ $00 00005DB9: 00 BRK 00005DBA: 00 BRK 00005DBB: C0C0 CPY #$C0 00005DBD: C0E0 CPY #$E0 00005DBF: F8 SED 00005DC0: F8 SED 00005DC1: FC .DB $FC 00005DC2: FC .DB $FC 00005DC3: FEFEFF INC $FFFE,X 00005DC6: FF .DB $FF 00005DC7: 7EFCFE ROR $FEFC,X 00005DCA: FEFFFF INC $FFFF,X 00005DCD: FF .DB $FF 00005DCE: FF .DB $FF 00005DCF: FE0000 INC $0000,X 00005DD2: 00 BRK 00005DD3: 00 BRK 00005DD4: 00 BRK 00005DD5: 00 BRK 00005DD6: 213F AND ($3F,X) 00005DD8: 3636 ROL $36,X 00005DDA: 7E7F7F ROR $7F7F,X 00005DDD: 7F .DB $7F 00005DDE: 3F .DB $3F 00005DDF: 3F .DB $3F 00005DE0: 3F .DB $3F 00005DE1: 1F .DB $1F 00005DE2: 1F .DB $1F 00005DE3: 0F .DB $0F 00005DE4: 07 .DB $07 00005DE5: 03 .DB $03 00005DE6: 00 BRK 00005DE7: 00 BRK 00005DE8: 3F .DB $3F 00005DE9: 1F .DB $1F 00005DEA: 1F .DB $1F 00005DEB: 0F .DB $0F 00005DEC: 07 .DB $07 00005DED: 03 .DB $03 00005DEE: 00 BRK 00005DEF: 00 BRK 00005DF0: 3E1E1E ROL $1E1E,X 00005DF3: 0E0F1F ASL $1F0F 00005DF6: 9F .DB $9F 00005DF7: 9F .DB $9F 00005DF8: 3F .DB $3F 00005DF9: 1F .DB $1F 00005DFA: DF .DB $DF 00005DFB: CF .DB $CF 00005DFC: CF .DB $CF 00005DFD: 9F .DB $9F 00005DFE: DF .DB $DF 00005DFF: FF .DB $FF 00005E00: DF .DB $DF 00005E01: FF .DB $FF 00005E02: FF .DB $FF 00005E03: FF .DB $FF 00005E04: FF .DB $FF 00005E05: DF .DB $DF 00005E06: E7 .DB $E7 00005E07: 00 BRK 00005E08: FF .DB $FF 00005E09: FF .DB $FF 00005E0A: FF .DB $FF 00005E0B: FF .DB $FF 00005E0C: FF .DB $FF 00005E0D: FF .DB $FF 00005E0E: FF .DB $FF 00005E0F: 0F .DB $0F 00005E10: 200F30 JSR $300F 00005E13: 40 RTI 00005E14: 98 TYA 00005E15: 3E1F00 ROL $001F,X 00005E18: FF .DB $FF 00005E19: FF .DB $FF 00005E1A: FF .DB $FF 00005E1B: FF .DB $FF 00005E1C: FF .DB $FF 00005E1D: FF .DB $FF 00005E1E: FF .DB $FF 00005E1F: FF .DB $FF 00005E20: 8136 STA ($36,X) 00005E22: 2EAFAE ROL $AEAF 00005E25: D1EF CMP ($EF),Y 00005E27: 87 .DB $87 00005E28: FF .DB $FF 00005E29: F9F0F0 SBC $F0F0,Y 00005E2C: B1DF LDA ($DF),Y 00005E2E: EF .DB $EF 00005E2F: 87 .DB $87 00005E30: 02 .DB $02 00005E31: F8 SED 00005E32: 0601 ASL $01 00005E34: 0C .DB $0C 00005E35: 3EFC00 ROL $00FC,X 00005E38: FF .DB $FF 00005E39: FF .DB $FF 00005E3A: FF .DB $FF 00005E3B: FF .DB $FF 00005E3C: FF .DB $FF 00005E3D: FF .DB $FF 00005E3E: FF .DB $FF 00005E3F: FF .DB $FF 00005E40: C036 CPY #$36 00005E42: 3E7AB6 ROL $B67A,X 00005E45: CDFBF0 CMP $F0FB 00005E48: FF .DB $FF 00005E49: CF .DB $CF 00005E4A: 87 .DB $87 00005E4B: 87 .DB $87 00005E4C: CEFDFB DEC $FBFD 00005E4F: F03E BEQ $3E 00005E51: 3C .DB $3C 00005E52: 3C .DB $3C 00005E53: 38 SEC 00005E54: F8 SED 00005E55: 7C .DB $7C 00005E56: 7E78FE ROR $FE78,X 00005E59: FC .DB $FC 00005E5A: FC .DB $FC 00005E5B: F8 SED 00005E5C: FB .DB $FB 00005E5D: FDFEFF SBC $FFFE,X 00005E60: F8 SED 00005E61: 7F .DB $7F 00005E62: 7F .DB $7F 00005E63: FEFFFF INC $FFFF,X 00005E66: F3 .DB $F3 00005E67: 81FF STA ($FF,X) 00005E69: FF .DB $FF 00005E6A: FF .DB $FF 00005E6B: FF .DB $FF 00005E6C: FF .DB $FF 00005E6D: FF .DB $FF 00005E6E: FF .DB $FF 00005E6F: F90000 SBC $0000,Y 00005E72: 00 BRK 00005E73: 1040 BPL $40 00005E75: 200000 JSR $0000 00005E78: 00 BRK 00005E79: 00 BRK 00005E7A: 00 BRK 00005E7B: 78 SEI 00005E7C: FC .DB $FC 00005E7D: FC .DB $FC 00005E7E: FC .DB $FC 00005E7F: FC .DB $FC 00005E80: 060E ASL $0E 00005E82: 7EFEFE ROR $FEFE,X 00005E85: FC .DB $FC 00005E86: F8 SED 00005E87: F0FE BEQ $FE 00005E89: FEFEFE INC $FEFE,X 00005E8C: FEFCF8 INC $F8FC,X 00005E8F: F000 BEQ $00 00005E91: 00 BRK 00005E92: 00 BRK 00005E93: 00 BRK 00005E94: 00 BRK 00005E95: 00 BRK 00005E96: 00 BRK 00005E97: 0100 ORA ($00,X) 00005E99: 00 BRK 00005E9A: 00 BRK 00005E9B: 00 BRK 00005E9C: 00 BRK 00005E9D: 00 BRK 00005E9E: 00 BRK 00005E9F: 00 BRK 00005EA0: 02 .DB $02 00005EA1: 00 BRK 00005EA2: 08 PHP 00005EA3: 0113 ORA ($13,X) 00005EA5: 0100 ORA ($00,X) 00005EA7: 00 BRK 00005EA8: 010F ORA ($0F,X) 00005EAA: 1F .DB $1F 00005EAB: 1F .DB $1F 00005EAC: 3B .DB $3B 00005EAD: 33 .DB $33 00005EAE: 0101 ORA ($01,X) 00005EB0: 00 BRK 00005EB1: 00 BRK 00005EB2: 00 BRK 00005EB3: 00 BRK 00005EB4: 00 BRK 00005EB5: 00 BRK 00005EB6: 00 BRK 00005EB7: 00 BRK 00005EB8: 00 BRK 00005EB9: 00 BRK 00005EBA: 00 BRK 00005EBB: 366C ROL $6C,X 00005EBD: FDFFFF SBC $FFFF,X 00005EC0: 00 BRK 00005EC1: 43 .DB $43 00005EC2: 7F .DB $7F 00005EC3: 7F .DB $7F 00005EC4: 7F .DB $7F 00005EC5: 3F .DB $3F 00005EC6: 1F .DB $1F 00005EC7: 07 .DB $07 00005EC8: FF .DB $FF 00005EC9: 7F .DB $7F 00005ECA: 7F .DB $7F 00005ECB: 7F .DB $7F 00005ECC: 7F .DB $7F 00005ECD: 3F .DB $3F 00005ECE: 1F .DB $1F 00005ECF: 07 .DB $07 00005ED0: 00 BRK 00005ED1: 00 BRK 00005ED2: 00 BRK 00005ED3: 00 BRK 00005ED4: 00 BRK 00005ED5: 00 BRK 00005ED6: C000 CPY #$00 00005ED8: 00 BRK 00005ED9: 00 BRK 00005EDA: 00 BRK 00005EDB: 00 BRK 00005EDC: 00 BRK 00005EDD: 00 BRK 00005EDE: 00 BRK 00005EDF: E010 CPX #$10 00005EE1: 38 SEC 00005EE2: BF .DB $BF 00005EE3: FF .DB $FF 00005EE4: FF .DB $FF 00005EE5: FF .DB $FF 00005EE6: FF .DB $FF 00005EE7: FF .DB $FF 00005EE8: F8 SED 00005EE9: FF .DB $FF 00005EEA: FF .DB $FF 00005EEB: FF .DB $FF 00005EEC: FF .DB $FF 00005EED: FF .DB $FF 00005EEE: FF .DB $FF 00005EEF: FF .DB $FF 00005EF0: 7E1E1E ROR $1E1E,X 00005EF3: 0E0F1E ASL $1E0F 00005EF6: 1E3EFF ASL $FF3E,X 00005EF9: 7F .DB $7F 00005EFA: 1F .DB $1F 00005EFB: 0F .DB $0F 00005EFC: 0F .DB $0F 00005EFD: 9F .DB $9F 00005EFE: 9F .DB $9F 00005EFF: BF .DB $BF 00005F00: 7F .DB $7F 00005F01: 7F .DB $7F 00005F02: BF .DB $BF 00005F03: FF .DB $FF 00005F04: FF .DB $FF 00005F05: FF .DB $FF 00005F06: E7 .DB $E7 00005F07: C07F CPY #$7F 00005F09: FF .DB $FF 00005F0A: FF .DB $FF 00005F0B: FF .DB $FF 00005F0C: FF .DB $FF 00005F0D: FF .DB $FF 00005F0E: FF .DB $FF 00005F0F: CF .DB $CF 00005F10: 00 BRK 00005F11: 00 BRK 00005F12: 10FD BPL $FD 00005F14: FA .DB $FA 00005F15: EB .DB $EB 00005F16: 80 .DB $80 00005F17: 00 BRK 00005F18: 00 BRK 00005F19: 00 BRK 00005F1A: F0FF BEQ $FF 00005F1C: FF .DB $FF 00005F1D: FF .DB $FF 00005F1E: FF .DB $FF 00005F1F: FF .DB $FF 00005F20: 201F60 JSR $601F 00005F23: 8E3F7F STX $7F3F 00005F26: 7F .DB $7F 00005F27: 7C .DB $7C 00005F28: FF .DB $FF 00005F29: FF .DB $FF 00005F2A: FF .DB $FF 00005F2B: F1C4 SBC ($C4),Y 00005F2D: EEC483 INC $83C4 00005F30: 39362E AND $2E36,Y 00005F33: AF .DB $AF 00005F34: AED1EF LDX $EFD1 00005F37: 87 .DB $87 00005F38: C7 .DB $C7 00005F39: F9F0F0 SBC $F0F0,Y 00005F3C: B1DF LDA ($DF),Y 00005F3E: EF .DB $EF 00005F3F: 87 .DB $87 00005F40: 00 BRK 00005F41: 00 BRK 00005F42: 04 .DB $04 00005F43: 5F .DB $5F 00005F44: AF .DB $AF 00005F45: 53 .DB $53 00005F46: 00 BRK 00005F47: 00 BRK 00005F48: 00 BRK 00005F49: 00 BRK 00005F4A: 07 .DB $07 00005F4B: FF .DB $FF 00005F4C: FF .DB $FF 00005F4D: FF .DB $FF 00005F4E: FF .DB $FF 00005F4F: FF .DB $FF 00005F50: 02 .DB $02 00005F51: FC .DB $FC 00005F52: 03 .DB $03 00005F53: 38 SEC 00005F54: FEFFFF INC $FFFF,X 00005F57: 1EFFFF ASL $FFFF,X 00005F5A: FF .DB $FF 00005F5B: C7 .DB $C7 00005F5C: 45EE EOR $EE 00005F5E: 44 .DB $44 00005F5F: E1C0 SBC ($C0,X) 00005F61: 363E ROL $3E,X 00005F63: 7A .DB $7A 00005F64: B6CD LDX $CD,Y 00005F66: FB .DB $FB 00005F67: F0FF BEQ $FF 00005F69: CF .DB $CF 00005F6A: 87 .DB $87 00005F6B: 87 .DB $87 00005F6C: CEFDFB DEC $FBFD 00005F6F: F000 BEQ $00 00005F71: 00 BRK 00005F72: 00 BRK 00005F73: 00 BRK 00005F74: 00 BRK 00005F75: 0E0808 ASL $0808 00005F78: 00 BRK 00005F79: 00 BRK 00005F7A: 00 BRK 00005F7B: 00 BRK 00005F7C: 00 BRK 00005F7D: 0107 ORA ($07,X) 00005F7F: 0F .DB $0F 00005F80: 1F .DB $1F 00005F81: 3F .DB $3F 00005F82: FF .DB $FF 00005F83: FF .DB $FF 00005F84: FF .DB $FF 00005F85: FF .DB $FF 00005F86: FF .DB $FF 00005F87: 7F .DB $7F 00005F88: 3F .DB $3F 00005F89: FF .DB $FF 00005F8A: FF .DB $FF 00005F8B: FF .DB $FF 00005F8C: FF .DB $FF 00005F8D: FF .DB $FF 00005F8E: FF .DB $FF 00005F8F: FF .DB $FF 00005F90: 3F .DB $3F 00005F91: 3E3CB8 ROL $B83C,X 00005F94: 78 SEI 00005F95: 78 SEI 00005F96: 7E7EFF ROR $FF7E,X 00005F99: FF .DB $FF 00005F9A: FDF8FF SBC $FFF8,X 00005F9D: FF .DB $FF 00005F9E: FEFFFD INC $FDFF,X 00005FA1: 797BFF ADC $FF7B,Y 00005FA4: FF .DB $FF 00005FA5: FF .DB $FF 00005FA6: F3 .DB $F3 00005FA7: 80 .DB $80 00005FA8: FF .DB $FF 00005FA9: FF .DB $FF 00005FAA: FF .DB $FF 00005FAB: FF .DB $FF 00005FAC: FF .DB $FF 00005FAD: FF .DB $FF 00005FAE: FF .DB $FF 00005FAF: F8 SED 00005FB0: 00 BRK 00005FB1: 00 BRK 00005FB2: 00 BRK 00005FB3: 00 BRK 00005FB4: 00 BRK 00005FB5: 00 BRK 00005FB6: 00 BRK 00005FB7: 00 BRK 00005FB8: 00 BRK 00005FB9: 00 BRK 00005FBA: 00 BRK 00005FBB: 00 BRK 00005FBC: 00 BRK 00005FBD: 00 BRK 00005FBE: C0F0 CPY #$F0 00005FC0: 1084 BPL $84 00005FC2: E0C0 CPX #$C0 00005FC4: 80 .DB $80 00005FC5: 80 .DB $80 00005FC6: 00 BRK 00005FC7: 00 BRK 00005FC8: FC .DB $FC 00005FC9: FEECE0 INC $E0EC,X 00005FCC: C0C0 CPY #$C0 00005FCE: 80 .DB $80 00005FCF: 80 .DB $80 00005FD0: 00 BRK 00005FD1: 48 PHA 00005FD2: 200000 JSR $0000 00005FD5: 04 .DB $04 00005FD6: 0EFE70 ASL $70FE 00005FD9: FC .DB $FC 00005FDA: FC .DB $FC 00005FDB: FC .DB $FC 00005FDC: FC .DB $FC 00005FDD: FC .DB $FC 00005FDE: FEFEFE INC $FEFE,X 00005FE1: FC .DB $FC 00005FE2: FC .DB $FC 00005FE3: F8 SED 00005FE4: F0E0 BEQ $E0 00005FE6: 80 .DB $80 00005FE7: 00 BRK 00005FE8: FEFCFC INC $FCFC,X 00005FEB: F8 SED 00005FEC: F0E0 BEQ $E0 00005FEE: 80 .DB $80 00005FEF: 00 BRK 00005FF0: 0F .DB $0F 00005FF1: 0606 ASL $06 00005FF3: 0606 ASL $06 00005FF5: 060F ASL $0F 00005FF7: 00 BRK 00005FF8: 00 BRK 00005FF9: 00 BRK 00005FFA: 00 BRK 00005FFB: 00 BRK 00005FFC: 00 BRK 00005FFD: 00 BRK 00005FFE: 00 BRK 00005FFF: 00 BRK 00006000: F060 BEQ $60 00006002: 60 RTS 00006003: 6666 ROR $66 00006005: 60 RTS 00006006: F000 BEQ $00 00006008: 00 BRK 00006009: 00 BRK 0000600A: 00 BRK 0000600B: 00 BRK 0000600C: 00 BRK 0000600D: 00 .DB $00 0000600E: 00 .DB $00 0000600F: 00 .DB $00
21.835934
28
0.725127
4497d1f559fc0886ddaae6d2dd9282e3d3ed27ce
341
asm
Assembly
programs/oeis/155/A155590.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/155/A155590.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/155/A155590.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A155590: 7^n+2^n-1^n. ; 1,8,52,350,2416,16838,117712,823670,5765056,40354118,282476272,1977328790,13841291296,96889018598,678223089232,4747561542710,33232930635136,232630514118278,1628413598172592,11398895185897430 mov $2,2 pow $2,$0 add $2,2 mov $3,7 pow $3,$0 add $2,$3 mov $4,$2 add $4,2 mul $4,2 gcd $1,$4 sub $1,12 div $1,2 add $1,1
20.058824
192
0.733138
22864536ae5b7e81afda2e4a266b4d08b9bbe5d1
3,722
asm
Assembly
samples/nes/tilemap_render/static_screens_MMC5/data/tilemap.asm
0x8BitDev/MAPeD-SPReD
da1a8a582980ea5963777a46fd3dfddc0d69aa82
[ "MIT" ]
23
2019-05-16T20:23:49.000Z
2022-03-13T21:53:10.000Z
samples/nes/tilemap_render/static_screens_MMC5/data/tilemap.asm
0x8BitDev/MAPeD-SPReD
da1a8a582980ea5963777a46fd3dfddc0d69aa82
[ "MIT" ]
6
2021-03-30T05:51:46.000Z
2022-01-07T13:18:44.000Z
samples/nes/tilemap_render/static_screens_MMC5/data/tilemap.asm
0x8BitDev/MAPeD-SPReD
da1a8a582980ea5963777a46fd3dfddc0d69aa82
[ "MIT" ]
null
null
null
;####################################################### ; ; Generated by MAPeD-NES Copyright 2017-2021 0x8BitDev ; ;####################################################### ; export options: ; - tiles 4x4 (RLE)/(columns) ; - attributes per CHR (MMC5) ; - properties per block ; - mode: static screens ; - layout: adjacent screens (marks) ; - entities (screen coordinates) MAP_DATA_MAGIC = $34B8E ; data flags: MAP_FLAG_TILES2X2 = $01 MAP_FLAG_TILES4X4 = $02 MAP_FLAG_RLE = $04 MAP_FLAG_DIR_COLUMNS = $08 MAP_FLAG_DIR_ROWS = $10 MAP_FLAG_MODE_MULTIDIR_SCROLL = $20 MAP_FLAG_MODE_BIDIR_SCROLL = $40 MAP_FLAG_MODE_STATIC_SCREENS = $80 MAP_FLAG_ENTITIES = $100 MAP_FLAG_ENTITY_SCREEN_COORDS = $200 MAP_FLAG_ENTITY_MAP_COORS = $400 MAP_FLAG_LAYOUT_ADJACENT_SCREENS = $800 MAP_FLAG_LAYOUT_ADJACENT_SCR_INDS = $1000 MAP_FLAG_LAYOUT_MATRIX = $2000 MAP_FLAG_MARKS = $4000 MAP_FLAG_ATTRS_PER_BLOCK = $8000 MAP_FLAG_ATTRS_PER_CHR = $10000 MAP_FLAG_PROP_ID_PER_BLOCK = $20000 MAP_FLAG_PROP_ID_PER_CHR = $40000 ; *** BASE ENTITIES *** ; *** GLOBAL DATA *** ; chr0: .incbin "tilemap_chr0.bin" ; (1216) ; chr1: .incbin "tilemap_chr1.bin" ; (944) ; chr2: .incbin "tilemap_chr2.bin" ; (1024) tilemap_Props: .incbin "tilemap_Props.bin" ; (82) block properties array of all exported data banks ( 1 byte per block; data offset = props offset / 4 ) tilemap_PropsOffs: .word 0 ; (chr0) .word 132 ; (chr1) .word 212 ; (chr2) tilemap_Tiles: .incbin "tilemap_Tiles.bin" ; (792) tiles (4x4) array of all exported data banks ( 4 bytes per tile ) tilemap_TilesOffs: .word 0 ; (chr0) .word 252 ; (chr1) .word 484 ; (chr2) tilemap_PPUScr: .incbin "tilemap_PPUScr.bin" ; compressed (5196 / 5760) PPU-ready data array for each screen ( 960 bytes per screen ) tilemap_AttrsScr: .incbin "tilemap_AttrsScr.bin" ; compressed (1704 / 5760) MMC5-ready attributes array for each screen ( 960 bytes per screen ) tilemap_TilesScr: .incbin "tilemap_TilesScr.bin" ; (384) tiles (4x4) array for each screen ( 64 bytes per screen \ 1 byte per tile ) tilemap_Plts: .incbin "tilemap_Plts.bin" ; (48) palettes array of all exported data banks ( data offset = chr_id * 16 ) ; *** Lev0 *** Lev0_StartScr: .word Lev0Scr4 Lev0Scr1: .byte 2 ; chr_id .byte $C0 ; (marks) bits: 7-4 - bit mask of user defined adjacent screens ( Down(7)-Right(6)-Up(5)-Left(4) ); 3-0 - screen property .word 1759 ; tilemap_PPUScr offset .word 519 ; tilemap_AttrsScr offset .byte 4 ; screen index .word 0 ; left adjacent screen .word 0 ; up adjacent screen .word Lev0Scr2 ; right adjacent screen .word Lev0Scr5 ; down adjacent screen Lev0Scr1EntsArr: .byte 0 Lev0Scr2: .byte 0 .byte $90 .word 863 .word 273 .byte 1 .word Lev0Scr1 .word 0 .word 0 .word Lev0Scr6 Lev0Scr2EntsArr: .byte 0 Lev0Scr4: .byte 0 .byte $40 .word 0 .word 0 .byte 0 .word 0 .word 0 .word Lev0Scr5 .word 0 Lev0Scr4EntsArr: .byte 0 Lev0Scr5: .byte 1 .byte $30 .word 4311 .word 1361 .byte 3 .word Lev0Scr4 .word Lev0Scr1 .word Lev0Scr6 .word 0 Lev0Scr5EntsArr: .byte 0 Lev0Scr6: .byte 1 .byte $60 .word 3472 .word 1039 .byte 2 .word Lev0Scr5 .word Lev0Scr2 .word Lev0Scr7 .word 0 Lev0Scr6EntsArr: .byte 0 Lev0Scr7: .byte 2 .byte $10 .word 2621 .word 785 .byte 5 .word Lev0Scr6 .word 0 .word 0 .word 0 Lev0Scr7EntsArr: .byte 0 .define Lev0_EntInstCnt 0 ; number of entities instances
21.268571
152
0.631112
79c2504396cc2a901eb7453416adf48fd32ebc8f
686
asm
Assembly
MEMZ/NyanMBR/Source/Stage2/Utils/timer.asm
johnmelodyme/viruses
c8c4b628a6ae725a45312b4365fa8a6876509706
[ "BSD-2-Clause" ]
4
2018-11-15T08:23:06.000Z
2019-04-29T13:30:44.000Z
MEMZ/NyanMBR/Source/Stage2/Utils/timer.asm
johnmelodyme/Viruses
c8c4b628a6ae725a45312b4365fa8a6876509706
[ "BSD-2-Clause" ]
null
null
null
MEMZ/NyanMBR/Source/Stage2/Utils/timer.asm
johnmelodyme/Viruses
c8c4b628a6ae725a45312b4365fa8a6876509706
[ "BSD-2-Clause" ]
2
2019-02-13T19:53:26.000Z
2021-05-30T19:04:43.000Z
defaultClock equ 11932 ; ~100 Hz currentClock dw defaultClock ; Updates the current timer value setTimer: mov ax, [currentClock] out 0x40, al mov al, ah out 0x40, al ret maxClock equ defaultClock/6 minClock equ defaultClock*3 ; Speed increase is calculated using the following formula: ; currentClock = currentClock * clockPreMul / clockDiv clockPreMul equ 2 clockDiv equ 3 ; Speeds up the current timer speedUp: mov ax, [currentClock] mov bx, clockPreMul mul bx mov bx, clockDiv div bx cmp ax, maxClock ja .resetTimer ; If too fast, reset the timer to the minimum speed mov ax, minClock .resetTimer: mov [currentClock], ax call setTimer ret
16.333333
59
0.733236
33e9e9ac22a33bb9ac182cf259066145bff6436c
137
asm
Assembly
src/main/fragment/mos6502-common/vwsm1=pwsm2_derefidx_vbuyy_plus_vbsaa.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
2
2022-03-01T02:21:14.000Z
2022-03-01T04:33:35.000Z
src/main/fragment/mos6502-common/vwsm1=pwsm2_derefidx_vbuyy_plus_vbsaa.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
null
null
null
src/main/fragment/mos6502-common/vwsm1=pwsm2_derefidx_vbuyy_plus_vbsaa.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
null
null
null
sta $fd lda {m2} sta $fe lda {m2}+1 sta $ff lda ($fe),y clc adc $fd sta {m1} iny lda $fd ora #$7f bmi !+ lda #0 !: adc ($fe),y sta {m1}+1
8.058824
11
0.562044
acd98bdf455ca1a3cd0f7bc67371b5fbef83afbb
246
asm
Assembly
programs/oeis/022/A022984.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/022/A022984.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/022/A022984.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A022984: 28-n. ; 28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,-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 mov $1,28 sub $1,$0 mov $0,$1
35.142857
197
0.52439
e6c855ce6c39bc8d41de4366b05a9be3d2ab4e95
9,456
asm
Assembly
third_party/virtualbox/src/VBox/Devices/EFI/Firmware/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/Ia32/SecEntry.asm
Fimbure/icebox-1
0b81992a53e1b410955ca89bdb6f8169d6f2da86
[ "MIT" ]
521
2019-03-29T15:44:08.000Z
2022-03-22T09:46:19.000Z
third_party/virtualbox/src/VBox/Devices/EFI/Firmware/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/Ia32/SecEntry.asm
Fimbure/icebox-1
0b81992a53e1b410955ca89bdb6f8169d6f2da86
[ "MIT" ]
30
2019-06-04T17:00:49.000Z
2021-09-08T20:44:19.000Z
third_party/virtualbox/src/VBox/Devices/EFI/Firmware/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/Ia32/SecEntry.asm
Fimbure/icebox-1
0b81992a53e1b410955ca89bdb6f8169d6f2da86
[ "MIT" ]
99
2019-03-29T16:04:13.000Z
2022-03-28T16:59:34.000Z
;------------------------------------------------------------------------------ ; ; Copyright (c) 2014, Intel Corporation. All rights reserved.<BR> ; This program and the accompanying materials ; are licensed and made available under the terms and conditions of the BSD License ; which accompanies this distribution. The full text of the license may be found at ; http://opensource.org/licenses/bsd-license.php. ; ; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, ; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. ; ; Module Name: ; ; SecEntry.asm ; ; Abstract: ; ; This is the code that goes from real-mode to protected mode. ; It consumes the reset vector, calls TempRamInit API from FSP binary. ; ;------------------------------------------------------------------------------ #include "Fsp.h" .686p .xmm .model small, c EXTRN CallPeiCoreEntryPoint:NEAR EXTRN TempRamInitParams:FAR ; Pcds EXTRN PcdGet32 (PcdFlashFvFspBase):DWORD EXTRN PcdGet32 (PcdFlashFvFspSize):DWORD _TEXT_REALMODE SEGMENT PARA PUBLIC USE16 'CODE' ASSUME CS:_TEXT_REALMODE, DS:_TEXT_REALMODE ;---------------------------------------------------------------------------- ; ; Procedure: _ModuleEntryPoint ; ; Input: None ; ; Output: None ; ; Destroys: Assume all registers ; ; Description: ; ; Transition to non-paged flat-model protected mode from a ; hard-coded GDT that provides exactly two descriptors. ; This is a bare bones transition to protected mode only ; used for a while in PEI and possibly DXE. ; ; After enabling protected mode, a far jump is executed to ; transfer to PEI using the newly loaded GDT. ; ; Return: None ; ; MMX Usage: ; MM0 = BIST State ; MM5 = Save time-stamp counter value high32bit ; MM6 = Save time-stamp counter value low32bit. ; ;---------------------------------------------------------------------------- align 4 _ModuleEntryPoint PROC NEAR C PUBLIC fninit ; clear any pending Floating point exceptions ; ; Store the BIST value in mm0 ; movd mm0, eax ; ; Save time-stamp counter value ; rdtsc load 64bit time-stamp counter to EDX:EAX ; rdtsc movd mm5, edx movd mm6, eax ; ; Load the GDT table in GdtDesc ; mov esi, OFFSET GdtDesc DB 66h lgdt fword ptr cs:[si] ; ; Transition to 16 bit protected mode ; mov eax, cr0 ; Get control register 0 or eax, 00000003h ; Set PE bit (bit #0) & MP bit (bit #1) mov cr0, eax ; Activate protected mode mov eax, cr4 ; Get control register 4 or eax, 00000600h ; Set OSFXSR bit (bit #9) & OSXMMEXCPT bit (bit #10) mov cr4, eax ; ; Now we're in 16 bit protected mode ; Set up the selectors for 32 bit protected mode entry ; mov ax, SYS_DATA_SEL mov ds, ax mov es, ax mov fs, ax mov gs, ax mov ss, ax ; ; Transition to Flat 32 bit protected mode ; The jump to a far pointer causes the transition to 32 bit mode ; mov esi, offset ProtectedModeEntryLinearAddress jmp fword ptr cs:[si] _ModuleEntryPoint ENDP _TEXT_REALMODE ENDS _TEXT_PROTECTED_MODE SEGMENT PARA PUBLIC USE32 'CODE' ASSUME CS:_TEXT_PROTECTED_MODE, DS:_TEXT_PROTECTED_MODE ;---------------------------------------------------------------------------- ; ; Procedure: ProtectedModeEntryPoint ; ; Input: None ; ; Output: None ; ; Destroys: Assume all registers ; ; Description: ; ; This function handles: ; Call two basic APIs from FSP binary ; Initializes stack with some early data (BIST, PEI entry, etc) ; ; Return: None ; ;---------------------------------------------------------------------------- align 4 ProtectedModeEntryPoint PROC NEAR PUBLIC ; Find the fsp info header mov edi, PcdGet32 (PcdFlashFvFspBase) mov ecx, PcdGet32 (PcdFlashFvFspSize) mov eax, dword ptr [edi + FVH_SIGINATURE_OFFSET] cmp eax, FVH_SIGINATURE_VALID_VALUE jnz FspHeaderNotFound xor eax, eax mov ax, word ptr [edi + FVH_EXTHEADER_OFFSET_OFFSET] cmp ax, 0 jnz FspFvExtHeaderExist xor eax, eax mov ax, word ptr [edi + FVH_HEADER_LENGTH_OFFSET] ; Bypass Fv Header add edi, eax jmp FspCheckFfsHeader FspFvExtHeaderExist: add edi, eax mov eax, dword ptr [edi + FVH_EXTHEADER_SIZE_OFFSET] ; Bypass Ext Fv Header add edi, eax ; Round up to 8 byte alignment mov eax, edi and al, 07h jz FspCheckFfsHeader and edi, 0FFFFFFF8h add edi, 08h FspCheckFfsHeader: ; Check the ffs guid mov eax, dword ptr [edi] cmp eax, FSP_HEADER_GUID_DWORD1 jnz FspHeaderNotFound mov eax, dword ptr [edi + 4] cmp eax, FSP_HEADER_GUID_DWORD2 jnz FspHeaderNotFound mov eax, dword ptr [edi + 8] cmp eax, FSP_HEADER_GUID_DWORD3 jnz FspHeaderNotFound mov eax, dword ptr [edi + 0Ch] cmp eax, FSP_HEADER_GUID_DWORD4 jnz FspHeaderNotFound add edi, FFS_HEADER_SIZE_VALUE ; Bypass the ffs header ; Check the section type as raw section mov al, byte ptr [edi + SECTION_HEADER_TYPE_OFFSET] cmp al, 019h jnz FspHeaderNotFound add edi, RAW_SECTION_HEADER_SIZE_VALUE ; Bypass the section header jmp FspHeaderFound FspHeaderNotFound: jmp $ FspHeaderFound: ; Get the fsp TempRamInit Api address mov eax, dword ptr [edi + FSP_HEADER_IMAGEBASE_OFFSET] add eax, dword ptr [edi + FSP_HEADER_TEMPRAMINIT_OFFSET] ; Setup the hardcode stack mov esp, OFFSET TempRamInitStack ; Call the fsp TempRamInit Api jmp eax TempRamInitDone: cmp eax, 0 jnz FspApiFailed ; ECX: start of range ; EDX: end of range mov esp, edx push edx push ecx push eax ; zero - no hob list yet call CallPeiCoreEntryPoint FspApiFailed: jmp $ align 10h TempRamInitStack: DD OFFSET TempRamInitDone DD OFFSET TempRamInitParams ProtectedModeEntryPoint ENDP ; ; ROM-based Global-Descriptor Table for the Tiano PEI Phase ; align 16 PUBLIC BootGdtTable ; ; GDT[0]: 0x00: Null entry, never used. ; NULL_SEL EQU $ - GDT_BASE ; Selector [0] GDT_BASE: BootGdtTable DD 0 DD 0 ; ; Linear data segment descriptor ; LINEAR_SEL EQU $ - GDT_BASE ; Selector [0x8] DW 0FFFFh ; limit 0xFFFFF DW 0 ; base 0 DB 0 DB 092h ; present, ring 0, data, expand-up, writable DB 0CFh ; page-granular, 32-bit DB 0 ; ; Linear code segment descriptor ; LINEAR_CODE_SEL EQU $ - GDT_BASE ; Selector [0x10] DW 0FFFFh ; limit 0xFFFFF DW 0 ; base 0 DB 0 DB 09Bh ; present, ring 0, data, expand-up, not-writable DB 0CFh ; page-granular, 32-bit DB 0 ; ; System data segment descriptor ; SYS_DATA_SEL EQU $ - GDT_BASE ; Selector [0x18] DW 0FFFFh ; limit 0xFFFFF DW 0 ; base 0 DB 0 DB 093h ; present, ring 0, data, expand-up, not-writable DB 0CFh ; page-granular, 32-bit DB 0 ; ; System code segment descriptor ; SYS_CODE_SEL EQU $ - GDT_BASE ; Selector [0x20] DW 0FFFFh ; limit 0xFFFFF DW 0 ; base 0 DB 0 DB 09Ah ; present, ring 0, data, expand-up, writable DB 0CFh ; page-granular, 32-bit DB 0 ; ; Spare segment descriptor ; SYS16_CODE_SEL EQU $ - GDT_BASE ; Selector [0x28] DW 0FFFFh ; limit 0xFFFFF DW 0 ; base 0 DB 0Eh ; Changed from F000 to E000. DB 09Bh ; present, ring 0, code, expand-up, writable DB 00h ; byte-granular, 16-bit DB 0 ; ; Spare segment descriptor ; SYS16_DATA_SEL EQU $ - GDT_BASE ; Selector [0x30] DW 0FFFFh ; limit 0xFFFF DW 0 ; base 0 DB 0 DB 093h ; present, ring 0, data, expand-up, not-writable DB 00h ; byte-granular, 16-bit DB 0 ; ; Spare segment descriptor ; SPARE5_SEL EQU $ - GDT_BASE ; Selector [0x38] DW 0 ; limit 0 DW 0 ; base 0 DB 0 DB 0 ; present, ring 0, data, expand-up, writable DB 0 ; page-granular, 32-bit DB 0 GDT_SIZE EQU $ - BootGdtTable ; Size, in bytes ; ; GDT Descriptor ; GdtDesc: ; GDT descriptor DW GDT_SIZE - 1 ; GDT limit DD OFFSET BootGdtTable ; GDT base address ProtectedModeEntryLinearAddress LABEL FWORD ProtectedModeEntryLinearOffset LABEL DWORD DD OFFSET ProtectedModeEntryPoint ; Offset of our 32 bit code DW LINEAR_CODE_SEL _TEXT_PROTECTED_MODE ENDS END
27.32948
89
0.567047
6f9d40f21daeb3ea73ea7b65446f3756a2e556e7
40,182
asm
Assembly
iod/con2/8/smulc.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
iod/con2/8/smulc.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
iod/con2/8/smulc.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
; CON2 Aurora 8 bit Send characters to CONSOLE V2.01  1999 Tony Tebby ; 2003 Marcel Kilgus ; ; 2016-04-16 2.01 Added alpha blending (MK) section con xdef cn_sbyte xdef cn_smulc xref cn_cksize_p xref cn_donl xref bm_apixel include 'dev8_keys_con' include 'dev8_keys_k' include 'dev8_keys_err' include 'dev8_mac_assert' ;+++ ; Send a byte ; ; d1 c p byte to send ; a0 c p CDB ; a3 c p linkage ; ; status return standard ;--- cn_sbyte cnsb.reg reg d1/a1 movem.l cnsb.reg,-(sp) cmp.b #k.nl,d0 ; newline beq.s cnsb_nl ; ... yes lea 3(sp),a1 ; ... no, cheat moveq #0,d1 moveq #1,d2 bsr.s cn_smulc movem.l (sp)+,cnsb.reg rts cnsb_nl bclr #sd..gmod,sd_cattr(a0) ; ... newline, not graphic mode now tas sd_nlsta(a0) ; set pending nl bpl.s cnsb_exit ; there was not one before jsr cn_donl ; ... oh yes there was move.b #$80,sd_nlsta(a0) ; and still is cnsb_exit movem.l (sp)+,cnsb.reg rts cnsm_rtok moveq #0,d0 rts ;+++ ; Send multiple bytes ; ; d1 c u bytes sent so far ; d2 c s bytes to send ; a0 c p CDB ; a1 c u pointer to characters ; a3 c p linkage ; ; status return standard ;--- cn_smulc cnsm.reg reg a3/a6 sub.w d1,d2 ; count ble.s cnsm_rtok ; nothing to print, so quit movem.l cnsm.reg,-(sp) sub.w d1,a1 move.l a1,-(sp) ; start of buffer add.w d1,a1 move.w d2,-(sp) subq.l #6,sp ; number to get this time + screen base stk_base equ $00 stk_slice equ $04 stk_count equ $06 tst.b sd_sflag(a0) ; check if we can fit in bpl.s cnsm_do jsr cn_cksize_p ; re-check the size blo.l cnsm_orng ; ... oops cnsm_do move.w sd_linel(a0),a2 ; will be modified for print mode sub.w #6,a2 ; standard print mode moveq #$ff-1<<sd..gmod-1<<sd..flsh,d0 ; ignore graphics and flash bit and.b sd_cattr(a0),d0 cmp.b #$ff,sd_alpha(a0) beq.s cnsm_noalpha ori.b #1<<sd..flsh,d0 ; we abuse the flash bit for alpha here cnsm_noalpha add.w d0,d0 lea cnsm_optab,a5 ; operation table add.w (a5,d0.w),a5 ; ... operation ; loop slicing up string cnsm_sloop cmp.b #k.nl,(a1) ; new line? bne.s cnsm_doch ; ... no ; newline character found cnsm_fnl bclr #sd..gmod,sd_cattr(a0) ; ... yes, not graphic mode now tas sd_nlsta(a0) ; ... yes bpl.s cnsm_enl ; there was not one before jsr cn_donl ; ... oh yes there was move.b #$80,sd_nlsta(a0) ; and there still is cnsm_enl addq.l #1,a1 subq.w #1,stk_count(sp) ; one fewer to go bgt.s cnsm_sloop bra.l cnsm_finished ; process real characters in string cnsm_doch tst.b sd_nlsta(a0) ; pending newline? beq.s cnsm_count ; ... no, count characters on this line blt.s cnsm_donl ; ... yes genuine assert sd..gmod,7 tst.b sd_cattr(a0) ; graphic mode? bpl.s cnsm_donl ; ... no, do newline cnsm_lnl cmp.b #k.nl,(a1)+ ; look for newline beq.s cnsm_egraph subq.w #1,stk_count(sp) bgt.s cnsm_lnl bra.l cnsm_finished ; no newline found cnsm_egraph subq.l #1,a1 ; backspace to nl bra.s cnsm_fnl ; and carry on cnsm_donl jsr cn_donl ; do newline ; first count how many fit in cnsm_count move.w sd_xpos(a0),d0 move.w d0,d1 move.w sd_xinc(a0),d2 move.w sd_xsize(a0),d3 move.w stk_count(sp),d4 move.w d4,d5 move.l a1,a3 moveq #k.nl,d6 cnsm_cnt cmp.b (a3)+,d6 ; next is newline beq.s cnsm_scnt add.w d2,d1 cmp.w d3,d1 ; off edge yet? bgt.s cnsm_seol ; ... yes subq.w #1,d4 ; one more gone bge.s cnsm_cnt ; ... not all gone yet moveq #0,d4 ; all gone bra.s cnsm_scnt cnsm_seol move.b #1,sd_nlsta(a0) ; newline required cnsm_scnt move.w d4,stk_count(sp) ; number left to go sub.w d4,d5 ; number to go beq.s cnsm_more ; back to beginning of slicing loop move.w d5,stk_slice(sp) ; number in this slice assert sd.sfout,1 tst.b sd_sflag(a0) ; out of window? beq.s cnsm_scolour ; ... no add.w d5,a1 ; ... yes, skip these cnsm_more tst.w stk_count(sp) ; any more characters? bgt.l cnsm_sloop bra.l cnsm_finished ; set up colours cnsm_scolour movem.l sd_smask(a0),d5/d7 ; set colour contrast main ; ; d4 c p strip colour mask first pixel (second row, first row) ; d5 c p strip colour mask next pixel ; d6 c p ink colour mask first pixel ; d7 c p ink colour mask next pixel ; move.l d5,d4 ; assume strip colour is solid move.w #%11111000,d0 and.b sd_scolr(a0),d0 beq.s cnsm_icolr lsr.w #6,d0 add.w d0,d0 move.w cnsm_stable(pc,d0.w),d0 jmp cnsm_stable(pc,d0.w) cnsm_stable dc.w cnsms_1of4-cnsm_stable dc.w cnsms_horiz-cnsm_stable dc.w cnsms_vert-cnsm_stable dc.w cnsms_check-cnsm_stable cnsms_1of4 ror.w #8,d5 move.b d5,d4 ; first column is solid ror.w #8,d5 bra.s cnsm_icolr cnsms_vert ror.w #8,d5 ; odd column is contrast move.b d4,d0 move.b d5,d4 ; in both lines move.b d0,d5 bra.s cnsm_icolr cnsms_horiz ror.w #8,d4 ; even column is different cnsms_check ror.w #8,d5 ; odd column is different cnsm_icolr move.l d7,d6 ; assume ink colour is solid move.w #%11111000,d0 and.b sd_icolr(a0),d0 beq.s cnsm_colrset lsr.w #6,d0 add.w d0,d0 move.w cnsm_itable(pc,d0.w),d0 jmp cnsm_itable(pc,d0.w) cnsm_itable dc.w cnsmi_1of4-cnsm_itable dc.w cnsmi_horiz-cnsm_itable dc.w cnsmi_vert-cnsm_itable dc.w cnsmi_check-cnsm_itable cnsmi_1of4 ror.w #8,d7 move.b d7,d6 ; first column is solid ror.w #8,d7 bra.s cnsm_colrset cnsmi_vert ror.w #8,d7 ; odd column is contrast move.b d6,d0 move.b d7,d6 ; in both lines move.b d0,d7 bra.s cnsm_colrset cnsmi_horiz ror.w #8,d6 ; even column is different cnsmi_check ror.w #8,d7 ; odd column is different cnsm_colrset ; set row address cnsm_srow move.w sd_linel(a0),d2 move.w sd_ymin(a0),d1 add.w sd_ypos(a0),d1 mulu d1,d2 ; row start in screen add.l sd_scrb(a0),d2 move.l d2,stk_base(sp) ; veritable row address move.w sd_xmin(a0),d0 ; area origin add.w sd_xpos(a0),d0 ; cursor origin cnsm_colrpos btst #0,d0 beq.s cnsm_colry exg d4,d5 exg d6,d7 ; odd pixel cnsm_colry lsr.w #1,d1 bcc.s cnsm_colrdone ror.w #8,d4 ror.w #8,d5 ror.w #8,d6 ; odd row ror.w #8,d7 cnsm_colrdone ; now do a slice move.w stk_slice(sp),d1 cnsm_cloop move.l stk_base(sp),a4 move.w d1,-(sp) move.w d0,-(sp) add.w d0,a4 ; screen address moveq #0,d1 move.b (a1)+,d1 ; next character move.l sd_font(a0),a3 ; base fount sub.b (a3)+,d1 ; offset in fount table blo.s cnsm_f2 ; ... off bottom cmp.b (a3)+,d1 ; top bls.s cnsm_fset ; ... ok subq.l #1,a3 cnsm_f2 add.b -(a3),d1 move.l sd_font+4(a0),a3 ; second fount sub.b (a3)+,d1 ; offset in fount table blo.s cnsm_f2z ; ... off bottom cmp.b (a3),d1 ; top bls.s cnsm_fs2 ; ... ok cnsm_f2z moveq #0,d1 ; ... no, use bottom cnsm_fs2 addq.l #1,a3 cnsm_fset add.w d1,a3 lsl.w #3,d1 add.w d1,a3 ; at last, the fount pointer jmp (a5) ; screen address, fount and colours set cnsm_next move.w (sp)+,d0 move.w (sp)+,d1 move.w sd_xinc(a0),d2 add.w d2,d0 ; new x pos lsr.w #1,d2 bcc.s cnsm_ecloop exg d4,d5 exg d6,d7 ; odd/even pixel cnsm_ecloop subq.w #1,d1 ; one more gone bgt.s cnsm_cloop sub.w sd_xmin(a0),d0 move.w d0,sd_xpos(a0) tst.w stk_count(sp) ; any more characters? bgt.l cnsm_sloop cnsm_finished moveq #0,d0 ; ... ok cnsm_exit addq.l #stk_count+2,sp ; remove frame from stack move.l a1,d1 ; set character count sub.l (sp)+,d1 movem.l (sp)+,cnsm.reg tst.l d0 rts cnsm_orng moveq #err.orng,d0 bra.s cnsm_exit page ; table of character operations cnsm_optab . dc.w cc_stdch-.,cc_stdul-.,cc_alpch-.,cc_alpul-. dc.w cc_ovrch-.,cc_ovrul-.,cc_alpch-.,cc_alpul-. dc.w cc_xorch-.,cc_xorul-.,cc_xorch-.,cc_xorul-. dc.w cc_xorch-.,cc_xorul-.,cc_xorch-.,cc_xorul-. dc.w ch_stdch-.,ch_stdul-.,ch_alpch-.,ch_alpul-. dc.w ch_ovrch-.,ch_ovrul-.,ch_alpch-.,ch_alpul-. dc.w ch_xorch-.,ch_xorul-.,ch_xorch-.,ch_xorul-. dc.w ch_xorch-.,ch_xorul-.,ch_xorch-.,ch_xorul-. dc.w cc_stdcx-.,cc_stdux-.,cc_alpcx-.,cc_alpux-. dc.w cc_ovrcx-.,cc_ovrux-.,cc_alpcx-.,cc_alpux-. dc.w cc_xorcx-.,cc_xorux-.,cc_xorcx-.,cc_xorux-. dc.w cc_xorcx-.,cc_xorux-.,cc_xorcx-.,cc_xorux-. dc.w ch_stdcx-.,ch_stdux-.,ch_alpcx-.,ch_alpux-. dc.w ch_ovrcx-.,ch_ovrux-.,ch_alpcx-.,ch_alpux-. dc.w ch_xorcx-.,ch_xorux-.,ch_xorcx-.,ch_xorux-. dc.w ch_xorcx-.,ch_xorux-.,ch_xorcx-.,ch_xorux-. dc.w cw_stdch-.,cw_stdul-.,cw_alpch-.,cw_alpul-. dc.w cw_ovrch-.,cw_ovrul-.,cw_alpch-.,cw_alpul-. dc.w cw_xorch-.,cw_xorul-.,cw_xorch-.,cw_xorul-. dc.w cw_xorch-.,cw_xorul-.,cw_xorch-.,cw_xorul-. dc.w cz_stdch-.,cz_stdul-.,cz_alpch-.,cz_alpul-. dc.w cz_ovrch-.,cz_ovrul-.,cz_alpch-.,cz_alpul-. dc.w cz_xorch-.,cz_xorul-.,cz_xorch-.,cz_xorul-. dc.w cz_xorch-.,cz_xorul-.,cz_xorch-.,cz_xorul-. dc.w cw_stdcx-.,cw_stdux-.,cw_alpcx-.,cw_alpux-. dc.w cw_ovrcx-.,cw_ovrux-.,cw_alpcx-.,cw_alpux-. dc.w cw_xorcx-.,cw_xorux-.,cw_xorcx-.,cw_xorux-. dc.w cw_xorcx-.,cw_xorux-.,cw_xorcx-.,cw_xorux-. dc.w cz_stdcx-.,cz_stdux-.,cz_alpcx-.,cz_alpux-. dc.w cz_ovrcx-.,cz_ovrux-.,cz_alpcx-.,cz_alpux-. dc.w cz_xorcx-.,cz_xorux-.,cz_xorcx-.,cz_xorux-. dc.w cz_xorcx-.,cz_xorux-.,cz_xorcx-.,cz_xorux-. page ;+++ ; General character drawing code ; ; d4 c p strip colour mask first pixel (second row, first row) ; d5 c p strip colour mask next pixel ; d6 c p ink colour mask first pixel ; d7 c p ink colour mask next pixel ; a2 c u line increment ; a3 cs pointer to fount patterns for this character ; a4 cs pointer to screen ; a5 cr pointer to character code ;--- ;+++ ; Standard size underline character drawing code ;--- cc_stdul move.l #$ffff0006,d1 ; one + seven + two rows bra.s cc_stdc1 ;+++ ; Standard size / attribute character drawing code ;--- cc_stdch moveq #8,d1 ; nine rows cc_stdc1 move.b d4,(a4)+ ; the blank line move.b d5,(a4)+ move.b d4,(a4)+ ; the blank line move.b d5,(a4)+ move.b d4,(a4)+ ; the blank line move.b d5,(a4)+ ror.w #8,d4 ror.w #8,d5 ror.w #8,d6 ror.w #8,d7 cc_stdll add.l a2,a4 move.b (a3)+,d2 add.b d2,d2 bcc.s cc_stdpap0 move.b d6,(a4)+ ; ink point bra.s cc_stdpx1 cc_stdpap0 move.b d4,(a4)+ ; paper point cc_stdpx1 add.b d2,d2 bcc.s cc_stdpap1 move.b d7,(a4)+ ; ink point bra.s cc_stdpx2 cc_stdpap1 move.b d5,(a4)+ ; paper point cc_stdpx2 add.b d2,d2 bcc.s cc_stdpap2 move.b d6,(a4)+ ; ink point bra.s cc_stdpx3 cc_stdpap2 move.b d4,(a4)+ ; paper point cc_stdpx3 add.b d2,d2 bcc.s cc_stdpap3 move.b d7,(a4)+ ; ink point bra.s cc_stdpx4 cc_stdpap3 move.b d5,(a4)+ ; paper point cc_stdpx4 add.b d2,d2 bcc.s cc_stdpap4 move.b d6,(a4)+ ; ink point bra.s cc_stdpx5 cc_stdpap4 move.b d4,(a4)+ ; paper point cc_stdpx5 add.b d2,d2 bcc.s cc_stdpap5 move.b d7,(a4)+ ; ink point bra.s cc_stdls cc_stdpap5 move.b d5,(a4)+ ; paper point cc_stdls ror.w #8,d4 ror.w #8,d5 ror.w #8,d6 ror.w #8,d7 dbra d1,cc_stdll tst.l d1 ; underscore? bpl cnsm_next ; ... no add.l a2,a4 move.b d6,(a4)+ ; the underscore move.b d7,(a4)+ move.b d6,(a4)+ ; the underscore move.b d7,(a4)+ move.b d6,(a4)+ ; the underscore move.b d7,(a4)+ moveq #1,d1 addq.l #1,a3 ; skip font line bra.s cc_stdls ;+++ ; Standard size underline extended character drawing code ;--- cc_stdux subq.l #2,a2 ; reduce increment addq.l #4,a5 ; and move entry move.l #$ffff0006,d1 ; one + seven + two rows bra.s cc_stdx ;+++ ; Standard size extended character drawing code ;--- cc_stdcx subq.l #2,a2 ; reduce increment addq.l #4,a5 ; and move entry moveq #8,d1 ; one + nine rows cc_stdx moveq #3,d0 cc_stdxbl move.b d4,(a4)+ ; the blank line move.b d5,(a4)+ dbra d0,cc_stdxbl ror.w #8,d4 ror.w #8,d5 ror.w #8,d6 ror.w #8,d7 cc_stdxll add.l a2,a4 move.b (a3)+,d2 moveq #3,d0 cc_stdxpl add.b d2,d2 bcs.s cc_stdxink0 move.b d4,(a4)+ ; paper point add.b d2,d2 bcs.s cc_stdxink1 move.b d5,(a4)+ ; paper point dbra d0,cc_stdxpl bra.s cc_stdxls cc_stdxink0 move.b d6,(a4)+ ; ink point add.b d2,d2 bcs.s cc_stdxink1 move.b d5,(a4)+ ; paper point dbra d0,cc_stdxpl bra.s cc_stdxls cc_stdxink1 move.b d7,(a4)+ ; ink point dbra d0,cc_stdxpl cc_stdxls ror.w #8,d4 ror.w #8,d5 ror.w #8,d6 ror.w #8,d7 dbra d1,cc_stdxll tst.l d1 ; underscore? bpl cnsm_next ; ... no add.l a2,a4 moveq #3,d0 cc_stdxull move.b d6,(a4)+ ; the underscore move.b d7,(a4)+ dbra d0,cc_stdxull moveq #1,d1 addq.l #1,a3 ; skip font line bra.s cc_stdxls ;+++ ; Double width underline character drawing code ;--- cw_stdul subq.w #6,a2 ; reduce increment addq.l #4,a5 ; and move entry move.l #$ffff0006,d1 ; one + seven + two rows move.w #5,d3 bra.s cw_std ;+++ ; Double width character drawing code ;--- cw_stdch subq.w #6,a2 ; reduce increment addq.l #4,a5 ; and move entry moveq #8,d1 ; one + nine rows move.w #5,d3 bra.s cw_std ;+++ ; Double width underline extended character drawing code ;--- cw_stdux sub.w #10,a2 ; reduce increment addq.l #6,a5 ; and move entry move.l #$ffff0006,d1 ; one + seven + two rows move.w #7,d3 bra.s cw_std ;+++ ; Double width extended character drawing code ;--- cw_stdcx sub.w #10,a2 ; reduce increment addq.l #6,a5 ; and move entry moveq #8,d1 ; one + nine rows move.w #7,d3 cw_std move.w d3,d0 cw_stdbl move.b d4,(a4)+ ; the blank line move.b d5,(a4)+ dbra d0,cw_stdbl ror.w #8,d4 ror.w #8,d5 ror.w #8,d6 ror.w #8,d7 cw_stdll add.l a2,a4 move.b (a3)+,d2 move.w d3,d0 cw_stdpl add.b d2,d2 bcc.s cw_stdpap move.b d6,(a4)+ ; ink point move.b d7,(a4)+ ; ink point dbra d0,cw_stdpl bra.s cw_stdls cw_stdpap move.b d4,(a4)+ ; paper point move.b d5,(a4)+ ; paper point dbra d0,cw_stdpl cw_stdls ror.w #8,d4 ror.w #8,d5 ror.w #8,d6 ror.w #8,d7 dbra d1,cw_stdll tst.l d1 ; underscore? bpl cnsm_next ; ... no add.l a2,a4 move.w d3,d0 cw_stdull move.b d6,(a4)+ ; the underscore move.b d7,(a4)+ dbra d0,cw_stdull moveq #1,d1 addq.l #1,a3 ; skip font line bra.s cw_stdls ;+++ ; Double height underline character drawing code ;--- ch_stdul move.l #$fffd000d,d1 ; two + fourteen + four rows move.w #2,d3 bra.s ch_std ;+++ ; Double height character drawing code ;--- ch_stdch moveq #$11,d1 ; eighteen rows move.w #2,d3 bra.s ch_std ;+++ ; Double height underline extended character drawing code ;--- ch_stdux subq.l #2,a2 ; reduce increment addq.l #4,a5 ; and move entry move.l #$fffd000d,d1 ; two + fourteen + four rows move.w #3,d3 bra.s ch_std ;+++ ; Double height extended character drawing code ;--- ch_stdcx subq.l #2,a2 ; reduce increment addq.l #4,a5 ; and move entry moveq #$11,d1 ; eighteen rows move.w #3,d3 ch_std move.w d3,d0 ch_stdbl move.b d4,(a4)+ ; the blank line move.b d5,(a4)+ dbra d0,ch_stdbl ror.w #8,d4 ror.w #8,d5 ror.w #8,d6 ror.w #8,d7 add.l a2,a4 move.w d3,d0 ch_stdbl1 move.b d4,(a4)+ ; the second blank line move.b d5,(a4)+ dbra d0,ch_stdbl1 ror.w #8,d4 ror.w #8,d5 ror.w #8,d6 ror.w #8,d7 ch_stdll move.b (a3)+,d2 ch_stdllu add.l a2,a4 move.w d3,d0 ch_stdpl add.b d2,d2 bcs.s ch_stdink0 move.b d4,(a4)+ ; paper point add.b d2,d2 bcs.s ch_stdink1 move.b d5,(a4)+ ; paper point dbra d0,ch_stdpl bra.s ch_stdls ch_stdink0 move.b d6,(a4)+ ; ink point add.b d2,d2 bcs.s ch_stdink1 move.b d5,(a4)+ ; paper point dbra d0,ch_stdpl bra.s ch_stdls ch_stdink1 move.b d7,(a4)+ ; ink point dbra d0,ch_stdpl ch_stdls ror.w #8,d4 ror.w #8,d5 ror.w #8,d6 ror.w #8,d7 btst #0,d1 ; first line of pair? beq.s ch_stdle ; ... no subq.l #1,a3 ; yes backspace ch_stdle dbra d1,ch_stdll tst.l d1 ; underscore? bpl cnsm_next ; ... no moveq #-1,d2 addq.l #1,d1 ; ... yes bne.s ch_stdllu ; genuine addq.l #1,a3 ; skip font line moveq #1,d1 bra.s ch_stdll ;+++ ; Double size underline character drawing code ;--- cz_stdul subq.w #6,a2 ; reduce increment addq.l #4,a5 ; and move entry move.l #$fffd000d,d1 ; two + fourteen + four rows move.w #5,d3 bra.s cz_std ;+++ ; Double size character drawing code ;--- cz_stdch subq.w #6,a2 ; reduce increment addq.l #4,a5 ; and move entry moveq #$11,d1 ; eighteen rows move.w #5,d3 bra.s cz_std ;+++ ; Double size underline extended character drawing code ;--- cz_stdux sub.w #10,a2 ; reduce increment addq.l #6,a5 ; and move entry move.l #$fffd000d,d1 ; two + fourteen + four rows move.w #7,d3 bra.s cz_std ;+++ ; Double size extended character drawing code ;--- cz_stdcx sub.w #10,a2 ; reduce increment addq.l #6,a5 ; and move entry moveq #$11,d1 ; eighteen rows move.w #7,d3 cz_std move.w d3,d0 cz_stdbl move.b d4,(a4)+ ; the blank line move.b d5,(a4)+ dbra d0,cz_stdbl ror.w #8,d4 ror.w #8,d5 ror.w #8,d6 ror.w #8,d7 add.l a2,a4 move.w d3,d0 cz_stdbl1 move.b d4,(a4)+ ; the blank line move.b d5,(a4)+ dbra d0,cz_stdbl1 ror.w #8,d4 ror.w #8,d5 ror.w #8,d6 ror.w #8,d7 cz_stdll move.b (a3)+,d2 cz_stdllu add.l a2,a4 move.w d3,d0 cz_stdpl add.b d2,d2 bcc.s cz_stdpap move.b d6,(a4)+ ; ink point move.b d7,(a4)+ ; ink point dbra d0,cz_stdpl bra.s cz_stdls cz_stdpap move.b d4,(a4)+ ; paper point move.b d5,(a4)+ ; paper point dbra d0,cz_stdpl cz_stdls ror.w #8,d4 ror.w #8,d5 ror.w #8,d6 ror.w #8,d7 btst #0,d1 ; first line of pair? beq.s cz_stdle ; ... no subq.l #1,a3 ; yes backspace cz_stdle dbra d1,cz_stdll tst.l d1 ; underscore? bpl cnsm_next ; ... no moveq #-1,d2 addq.l #1,d1 ; ... yes bne.s cz_stdllu ; ... genuine addq.l #1,a3 ; skip font line moveq #1,d1 bra.s cz_stdll ;+++ ; Standard size over underline character drawing code ;--- cc_ovrul move.l #$ffff0006,d1 ; one + seven + two rows bra.s cc_ovrc1 ;+++ ; Standard size over character drawing code ;--- cc_ovrch moveq #8,d1 ; nine rows cc_ovrc1 swap d6 swap d7 add.w #6,a4 cc_ovrll add.l a2,a4 move.b (a3)+,d2 bne.s cc_ovrpx add.w #6,a4 ; blank line bra.s cc_ovrls cc_ovrpx add.b d2,d2 bcc.s cc_ovrpap0 move.b d6,(a4) ; ink point cc_ovrpap0 addq.l #1,a4 cc_ovrpx1 add.b d2,d2 bcc.s cc_ovrpap1 move.b d7,(a4) ; ink point cc_ovrpap1 addq.l #1,a4 cc_ovrpx2 add.b d2,d2 bcc.s cc_ovrpap2 move.b d6,(a4) ; ink point cc_ovrpap2 addq.l #1,a4 cc_ovrpx3 add.b d2,d2 bcc.s cc_ovrpap3 move.b d7,(a4) ; ink point cc_ovrpap3 addq.l #1,a4 cc_ovrpx4 add.b d2,d2 bcc.s cc_ovrpap4 move.b d6,(a4) ; ink point cc_ovrpap4 addq.l #1,a4 cc_ovrpx5 add.b d2,d2 bcc.s cc_ovrpap5 move.b d7,(a4) ; ink point cc_ovrpap5 addq.l #1,a4 cc_ovrls ror.w #8,d6 ror.w #8,d7 dbra d1,cc_ovrll tst.l d1 ; underscore? bpl cnsm_next ; ... no add.l a2,a4 move.b d6,(a4)+ ; the underscore move.b d7,(a4)+ move.b d6,(a4)+ ; the underscore move.b d7,(a4)+ move.b d6,(a4)+ ; the underscore move.b d7,(a4)+ moveq #1,d1 addq.l #1,a3 ; skip font line bra.s cc_ovrls ;+++ ; Standard size over underline extended character drawing code ;--- cc_ovrux subq.l #2,a2 ; reduce increment addq.l #4,a5 ; and move entry move.l #$ffff0006,d1 ; one + seven + two rows bra.s cc_ovrx ;+++ ; Standard size over extended character drawing code ;--- cc_ovrcx subq.l #2,a2 ; reduce increment addq.l #4,a5 ; and move entry moveq #8,d1 ; one + nine rows cc_ovrx ror.w #8,d6 ror.w #8,d7 add.w #8,a4 cc_ovrxll add.l a2,a4 move.b (a3)+,d2 bne.s cc_ovrxpx add.w #8,a4 ; blank line bra.s cc_ovrxls cc_ovrxpx moveq #3,d0 cc_ovrxpl add.b d2,d2 bcc.s cc_ovrxpap0 move.b d6,(a4) ; ink point cc_ovrxpap0 addq.l #1,a4 add.b d2,d2 bcc.s cc_ovrxpap1 move.b d7,(a4) ; ink point cc_ovrxpap1 addq.l #1,a4 dbra d0,cc_ovrxpl cc_ovrxls ror.w #8,d6 ror.w #8,d7 dbra d1,cc_ovrxll tst.l d1 ; underscore? bpl cnsm_next ; ... no add.l a2,a4 moveq #3,d0 cc_ovrxull move.b d6,(a4)+ ; the underscore move.b d7,(a4)+ dbra d0,cc_ovrxull moveq #1,d1 addq.l #1,a3 ; skip font line bra.s cc_ovrxls ;+++ ; Double width over underline character drawing code ;--- cw_ovrul subq.w #6,a2 ; reduce increment addq.l #4,a5 ; and move entry move.l #$ffff0006,d1 ; one + seven + two rows move.w #5,d3 bra.s cw_ovr ;+++ ; Double width over character drawing code ;--- cw_ovrch subq.w #6,a2 ; reduce increment addq.l #4,a5 ; and move entry moveq #8,d1 ; one + nine rows move.w #5,d3 bra.s cw_ovr ;+++ ; Double width over underline extended character drawing code ;--- cw_ovrux sub.w #10,a2 ; reduce increment addq.l #6,a5 ; and move entry move.l #$ffff0006,d1 ; one + seven + two rows move.w #7,d3 bra.s cw_ovr ;+++ ; Double width over extended character drawing code ;--- cw_ovrcx sub.w #10,a2 ; reduce increment addq.l #6,a5 ; and move entry moveq #8,d1 ; one + nine rows move.w #7,d3 cw_ovr ror.w #8,d6 ror.w #8,d7 move.w d3,d0 addq.w #1,d0 lsl.w #1,d0 add.w d0,a4 ; skip line cw_ovrll add.l a2,a4 move.b (a3)+,d2 bne.s cw_ovrpx move.w d3,d0 addq.w #1,d0 lsl.w #1,d0 add.w d0,a4 ; blank line bra.s cw_ovrls cw_ovrpx move.w d3,d0 cw_ovrpl add.b d2,d2 bcc.s cw_ovrpap move.b d6,(a4)+ ; ink point move.b d7,(a4)+ ; ink point dbra d0,cw_ovrpl bra.s cw_ovrls cw_ovrpap addq.l #2,a4 dbra d0,cw_ovrpl cw_ovrls ror.w #8,d6 ror.w #8,d7 dbra d1,cw_ovrll tst.l d1 ; underscore? bpl cnsm_next ; ... no add.l a2,a4 move.w d3,d0 cw_ovrull move.b d6,(a4)+ ; the underscore move.b d7,(a4)+ dbra d0,cw_ovrull moveq #1,d1 addq.l #1,a3 ; skip font line bra.s cw_ovrls ;+++ ; Double height over underline character drawing code ;--- ch_ovrul move.l #$fffd000d,d1 ; two + fourteen + four rows move.w #2,d3 bra.s ch_ovr ;+++ ; Double height over character drawing code ;--- ch_ovrch moveq #$11,d1 ; eighteen rows move.w #2,d3 bra.s ch_ovr ;+++ ; Double height over underline extended character drawing code ;--- ch_ovrux subq.l #2,a2 ; reduce increment addq.l #4,a5 ; and move entry move.l #$fffd000d,d1 ; two + fourteen + four rows move.w #3,d3 bra.s ch_ovr ;+++ ; Double height over extended character drawing code ;--- ch_ovrcx subq.l #2,a2 ; reduce increment addq.l #4,a5 ; and move entry moveq #$11,d1 ; eighteen rows move.w #3,d3 ch_ovr move.w d3,d0 ; skip two lines addq.w #1,d0 lsl.w #2,d0 add.w d0,a4 add.l a2,a4 ch_ovrll move.b (a3)+,d2 bne.s ch_ovrpx move.w d3,d0 ; two blank lines addq.w #1,d0 lsl.w #2,d0 add.w d0,a4 add.l a2,a4 add.l a2,a4 subq.w #1,d1 bra.s ch_ovrle ch_ovrpx ch_ovrllu add.l a2,a4 move.w d3,d0 ch_ovrpl add.b d2,d2 bcc.s ch_ovrpap0 move.b d6,(a4) ; ink point ch_ovrpap0 addq.l #1,a4 add.b d2,d2 bcc.s ch_ovrpap1 move.b d7,(a4) ; ink point ch_ovrpap1 addq.l #1,a4 dbra d0,ch_ovrpl ch_ovrls ror.w #8,d6 ror.w #8,d7 btst #0,d1 ; first line of pair? beq.s ch_ovrle ; ... no subq.l #1,a3 ; yes backspace ch_ovrle dbra d1,ch_ovrll tst.l d1 ; underscore? bpl cnsm_next ; ... no moveq #-1,d2 addq.l #1,d1 ; ... yes bne.s ch_ovrllu ; genuine addq.l #1,a3 ; skip font line moveq #1,d1 bra.s ch_ovrll ;+++ ; Double size over underline character drawing code ;--- cz_ovrul subq.w #6,a2 ; reduce increment addq.l #4,a5 ; and move entry move.l #$fffd000d,d1 ; two + fourteen + four rows move.w #5,d3 bra.s cz_ovr ;+++ ; Double size over character drawing code ;--- cz_ovrch subq.w #6,a2 ; reduce increment addq.l #4,a5 ; and move entry moveq #$11,d1 ; eighteen rows move.w #5,d3 bra.s cz_ovr ;+++ ; Double size over underline extended character drawing code ;--- cz_ovrux sub.w #10,a2 ; reduce increment addq.l #6,a5 ; and move entry move.l #$fffd000d,d1 ; two + fourteen + four rows move.w #7,d3 bra.s cz_ovr ;+++ ; Double size over extended character drawing code ;--- cz_ovrcx sub.w #10,a2 ; reduce increment addq.l #6,a5 ; and move entry moveq #$11,d1 ; eighteen rows move.w #7,d3 cz_ovr move.w d3,d0 addq.w #1,d0 lsl.w #2,d0 add.w d0,a4 add.l a2,a4 cz_ovrll move.b (a3)+,d2 bne.s cz_ovrpx move.w d3,d0 addq.w #1,d0 lsl.w #2,d0 add.w d0,a4 add.l a2,a4 add.l a2,a4 subq.w #1,d1 bra.s cz_ovrle cz_ovrpx cz_ovrllu add.l a2,a4 move.w d3,d0 cz_ovrpl add.b d2,d2 bcc.s cz_ovrpap move.b d6,(a4)+ ; ink point move.b d7,(a4)+ ; ink point dbra d0,cz_ovrpl bra.s cz_ovrls cz_ovrpap addq.l #2,a4 dbra d0,cz_ovrpl cz_ovrls ror.w #8,d6 ror.w #8,d7 btst #0,d1 ; first line of pair? beq.s cz_ovrle ; ... no subq.l #1,a3 ; yes backspace cz_ovrle dbra d1,cz_ovrll tst.l d1 ; underscore? bpl cnsm_next ; ... no moveq #-1,d2 addq.l #1,d1 ; ... yes bne.s cz_ovrllu ; ... genuine addq.l #1,a3 ; skip font line moveq #1,d1 bra.s cz_ovrll ;+++ ; Standard size xor underline character drawing code ;--- cc_xorul move.l #$ffff0006,d1 ; one + seven + two rows bra.s cc_xorc1 ;+++ ; Standard size xor character drawing code ;--- cc_xorch moveq #8,d1 ; nine rows cc_xorc1 ror.w #8,d6 ror.w #8,d7 add.w #6,a4 cc_xorll add.l a2,a4 move.b (a3)+,d2 bne.s cc_xorpx add.w #6,a4 ; blank line bra.s cc_xorls cc_xorpx add.b d2,d2 bcc.s cc_xorpap0 eor.b d6,(a4) ; ink point cc_xorpap0 addq.l #1,a4 cc_xorpx1 add.b d2,d2 bcc.s cc_xorpap1 eor.b d7,(a4) ; ink point cc_xorpap1 addq.l #1,a4 cc_xorpx2 add.b d2,d2 bcc.s cc_xorpap2 eor.b d6,(a4) ; ink point cc_xorpap2 addq.l #1,a4 cc_xorpx3 add.b d2,d2 bcc.s cc_xorpap3 eor.b d7,(a4) ; ink point cc_xorpap3 addq.l #1,a4 cc_xorpx4 add.b d2,d2 bcc.s cc_xorpap4 eor.b d6,(a4) ; ink point cc_xorpap4 addq.l #1,a4 cc_xorpx5 add.b d2,d2 bcc.s cc_xorpap5 eor.b d7,(a4) ; ink point cc_xorpap5 addq.l #1,a4 cc_xorls ror.w #8,d6 ror.w #8,d7 dbra d1,cc_xorll tst.l d1 ; underscore? bpl cnsm_next ; ... no add.l a2,a4 eor.b d6,(a4)+ ; the underscore eor.b d7,(a4)+ eor.b d6,(a4)+ ; the underscore eor.b d7,(a4)+ eor.b d6,(a4)+ ; the underscore eor.b d7,(a4)+ moveq #1,d1 addq.l #1,a3 ; skip font line bra.s cc_xorls ;+++ ; Standard size xor underline extended character drawing code ;--- cc_xorux subq.l #2,a2 ; reduce increment addq.l #4,a5 ; and move entry move.l #$ffff0006,d1 ; one + seven + two rows bra.s cc_xorx ;+++ ; Standard size xor extended character drawing code ;--- cc_xorcx subq.l #2,a2 ; reduce increment addq.l #4,a5 ; and move entry moveq #8,d1 ; one + nine rows cc_xorx ror.w #8,d6 ror.w #8,d7 add.w #8,a4 cc_xorxll add.l a2,a4 move.b (a3)+,d2 bne.s cc_xorxpx add.w #8,a4 ; blank line bra.s cc_xorxls cc_xorxpx moveq #3,d0 cc_xorxpl add.b d2,d2 bcc.s cc_xorxpap0 eor.b d6,(a4) ; ink point cc_xorxpap0 addq.l #1,a4 add.b d2,d2 bcc.s cc_xorxpap1 eor.b d7,(a4) ; ink point cc_xorxpap1 addq.l #1,a4 dbra d0,cc_xorxpl cc_xorxls ror.w #8,d6 ror.w #8,d7 dbra d1,cc_xorxll tst.l d1 ; underscore? bpl cnsm_next ; ... no add.l a2,a4 moveq #3,d0 cc_xorxull eor.b d6,(a4)+ ; the underscore eor.b d7,(a4)+ dbra d0,cc_xorxull moveq #1,d1 addq.l #1,a3 ; skip font line bra.s cc_xorxls ;+++ ; Double width xor underline character drawing code ;--- cw_xorul subq.w #6,a2 ; reduce increment addq.l #4,a5 ; and move entry move.l #$ffff0006,d1 ; one + seven + two rows move.w #5,d3 bra.s cw_xor ;+++ ; Double width xor character drawing code ;--- cw_xorch subq.w #6,a2 ; reduce increment addq.l #4,a5 ; and move entry moveq #8,d1 ; one + nine rows move.w #5,d3 bra.s cw_xor ;+++ ; Double width xor underline extended character drawing code ;--- cw_xorux sub.w #10,a2 ; reduce increment addq.l #6,a5 ; and move entry move.l #$ffff0006,d1 ; one + seven + two rows move.w #7,d3 bra.s cw_xor ;+++ ; Double width xor extended character drawing code ;--- cw_xorcx sub.w #10,a2 ; reduce increment addq.l #6,a5 ; and move entry moveq #8,d1 ; one + nine rows move.w #7,d3 cw_xor ror.w #8,d6 ror.w #8,d7 move.w d3,d0 addq.w #1,d0 lsl.w #1,d0 add.w d0,a4 ; skip line cw_xorll add.l a2,a4 move.b (a3)+,d2 bne.s cw_xorpx move.w d3,d0 addq.w #1,d0 lsl.w #1,d0 add.w d0,a4 ; blank line bra.s cw_xorls cw_xorpx move.w d3,d0 cw_xorpl add.b d2,d2 bcc.s cw_xorpap eor.b d6,(a4)+ ; ink point eor.b d7,(a4)+ ; ink point dbra d0,cw_xorpl bra.s cw_xorls cw_xorpap addq.l #2,a4 dbra d0,cw_xorpl cw_xorls ror.w #8,d6 ror.w #8,d7 dbra d1,cw_xorll tst.l d1 ; underscore? bpl cnsm_next ; ... no add.l a2,a4 move.w d3,d0 cw_xorull eor.b d6,(a4)+ ; the underscore eor.b d7,(a4)+ dbra d0,cw_xorull moveq #1,d1 addq.l #1,a3 ; skip font line bra.s cw_xorls ;+++ ; Double height xor underline character drawing code ;--- ch_xorul move.l #$fffd000d,d1 ; two + fourteen + four rows move.w #2,d3 bra.s ch_xor ;+++ ; Double height xor character drawing code ;--- ch_xorch moveq #$11,d1 ; eighteen rows move.w #2,d3 bra.s ch_xor ;+++ ; Double height xor underline extended character drawing code ;--- ch_xorux subq.l #2,a2 ; reduce increment addq.l #4,a5 ; and move entry move.l #$fffd000d,d1 ; two + fourteen + four rows move.w #3,d3 bra.s ch_xor ;+++ ; Double height xor extended character drawing code ;--- ch_xorcx subq.l #2,a2 ; reduce increment addq.l #4,a5 ; and move entry moveq #$11,d1 ; eighteen rows move.w #3,d3 ch_xor move.w d3,d0 ; skip two lines addq.w #1,d0 lsl.w #2,d0 add.w d0,a4 add.l a2,a4 ch_xorll move.b (a3)+,d2 bne.s ch_xorpx move.w d3,d0 ; two blank lines addq.w #1,d0 lsl.w #2,d0 add.w d0,a4 add.l a2,a4 add.l a2,a4 subq.w #1,d1 bra.s ch_xorle ch_xorpx ch_xorllu add.l a2,a4 move.w d3,d0 ch_xorpl add.b d2,d2 bcc.s ch_xorpap0 eor.b d6,(a4) ; ink point ch_xorpap0 addq.l #1,a4 add.b d2,d2 bcc.s ch_xorpap1 eor.b d7,(a4) ; ink point ch_xorpap1 addq.l #1,a4 dbra d0,ch_xorpl ch_xorls ror.w #8,d6 ror.w #8,d7 btst #0,d1 ; first line of pair? beq.s ch_xorle ; ... no subq.l #1,a3 ; yes backspace ch_xorle dbra d1,ch_xorll tst.l d1 ; underscore? bpl cnsm_next ; ... no moveq #-1,d2 addq.l #1,d1 ; ... yes bne.s ch_xorllu ; genuine addq.l #1,a3 ; skip font line moveq #1,d1 bra.s ch_xorll ;+++ ; Double size xor underline character drawing code ;--- cz_xorul subq.w #6,a2 ; reduce increment addq.l #4,a5 ; and move entry move.l #$fffd000d,d1 ; two + fourteen + four rows move.w #5,d3 bra.s cz_xor ;+++ ; Double size xor character drawing code ;--- cz_xorch subq.w #6,a2 ; reduce increment addq.l #4,a5 ; and move entry moveq #$11,d1 ; eighteen rows move.w #5,d3 bra.s cz_xor ;+++ ; Double size xor underline extended character drawing code ;--- cz_xorux sub.w #10,a2 ; reduce increment addq.l #6,a5 ; and move entry move.l #$fffd000d,d1 ; two + fourteen + four rows move.w #7,d3 bra.s cz_xor ;+++ ; Double size xor extended character drawing code ;--- cz_xorcx sub.w #10,a2 ; reduce increment addq.l #6,a5 ; and move entry moveq #$11,d1 ; eighteen rows move.w #7,d3 cz_xor move.w d3,d0 addq.w #1,d0 lsl.w #2,d0 add.w d0,a4 add.l a2,a4 cz_xorll move.b (a3)+,d2 bne.s cz_xorpx move.w d3,d0 addq.w #1,d0 lsl.w #2,d0 add.w d0,a4 add.l a2,a4 add.l a2,a4 subq.w #1,d1 bra.s cz_xorle cz_xorpx cz_xorllu add.l a2,a4 move.w d3,d0 cz_xorpl add.b d2,d2 bcc.s cz_xorpap eor.b d6,(a4)+ ; ink point eor.b d7,(a4)+ ; ink point dbra d0,cz_xorpl bra.s cz_xorls cz_xorpap addq.l #2,a4 dbra d0,cz_xorpl cz_xorls ror.w #8,d6 ror.w #8,d7 btst #0,d1 ; first line of pair? beq.s cz_xorle ; ... no subq.l #1,a3 ; yes backspace cz_xorle dbra d1,cz_xorll tst.l d1 ; underscore? bpl cnsm_next ; ... no moveq #-1,d2 addq.l #1,d1 ; ... yes bne.s cz_xorllu ; ... genuine addq.l #1,a3 ; skip font line moveq #1,d1 bra.s cz_xorll pp.reg reg d0-d7/a1 pp.d4 equ 16 pp.d5 equ 20 pp.d6 equ 24 pp.d7 equ 28 ; Put background colour d4 put_pixel_d4 btst #sd..over,sd_cattr(a0) bne.s pp_rts ; OVER mode, don't draw background movem.l pp.reg,-(sp) pp_all move.b sd_alpha(a0),d5 move.l a4,a1 jsr bm_apixel movem.l (sp)+,pp.reg pp_rts addq.w #1,a4 rts ; Put background colour d5 put_pixel_d5 btst #sd..over,sd_cattr(a0) bne.s pp_rts ; OVER mode, don't draw background movem.l pp.reg,-(sp) move.b d5,d4 bra.s pp_all ; Put ink colour d6 put_pixel_d6 movem.l pp.reg,-(sp) move.b d6,d4 bra.s pp_all ; Put ink colour d7 put_pixel_d7 movem.l pp.reg,-(sp) move.b d7,d4 bra.s pp_all ;+++ ; Standard size (over) underline alpha character drawing code ;--- cc_alpul move.l #$ffff0006,d1 ; one + seven + two rows bra.s cc_alpc1 ;+++ ; Standard size / attribute (over) alpha character drawing code ;--- cc_alpch moveq #8,d1 ; nine rows cc_alpc1 bsr.s put_pixel_d4 ; paper ink bsr.s put_pixel_d5 bsr.s put_pixel_d4 bsr.s put_pixel_d5 bsr.s put_pixel_d4 bsr.s put_pixel_d5 swap d4 swap d5 swap d6 swap d7 cc_alpll add.l a2,a4 move.b (a3)+,d2 moveq #2,d3 cc_alppxl add.b d2,d2 bcc.s cc_alppap0 bsr put_pixel_d6 ; ink point bra.s cc_alppx1 cc_alppap0 bsr put_pixel_d4 ; paper point cc_alppx1 add.b d2,d2 bcc.s cc_alppap1 bsr put_pixel_d7 ; ink point bra.s cc_alppx2 cc_alppap1 bsr put_pixel_d5 ; paper point cc_alppx2 dbf d3,cc_alppxl cc_alpls swap d4 swap d5 swap d6 swap d7 dbra d1,cc_alpll tst.l d1 ; underscore? bpl cnsm_next ; ... no add.l a2,a4 bsr.s put_pixel_d6 ; the underscore bsr.s put_pixel_d7 bsr.s put_pixel_d6 bsr.s put_pixel_d7 bsr.s put_pixel_d6 bsr.s put_pixel_d7 moveq #1,d1 addq.l #1,a3 ; skip font line bra.s cc_alpls ;+++ ; Standard size (over) underline extended alpha character drawing code ;--- cc_alpux subq.l #2,a2 ; reduce increment addq.l #4,a5 ; and move entry move.l #$ffff0006,d1 ; one + seven + two rows bra.s cc_alpx ;+++ ; Standard size (over) extended alpha character drawing code ;--- cc_alpcx subq.l #2,a2 ; reduce increment addq.l #4,a5 ; and move entry moveq #8,d1 ; one + nine rows cc_alpx moveq #3,d0 cc_alpxbl bsr put_pixel_d4 ; the blank line bsr put_pixel_d5 dbra d0,cc_alpxbl swap d4 swap d5 swap d6 swap d7 cc_alpxll add.l a2,a4 move.b (a3)+,d2 moveq #3,d0 cc_alpxpl add.b d2,d2 bcs.s cc_alpxink0 bsr put_pixel_d4 ; paper point add.b d2,d2 bcs.s cc_alpxink1 bsr put_pixel_d5 ; paper point dbra d0,cc_alpxpl bra.s cc_alpxls cc_alpxink0 bsr put_pixel_d6 ; ink point add.b d2,d2 bcs.s cc_alpxink1 bsr put_pixel_d5 ; paper point dbra d0,cc_alpxpl bra.s cc_alpxls cc_alpxink1 bsr put_pixel_d7 ; ink point dbra d0,cc_alpxpl cc_alpxls swap d4 swap d5 swap d6 swap d7 dbra d1,cc_alpxll tst.l d1 ; underscore? bpl cnsm_next ; ... no add.l a2,a4 moveq #3,d0 cc_alpxull bsr put_pixel_d6 ; the underscore bsr put_pixel_d7 dbra d0,cc_alpxull moveq #1,d1 addq.l #1,a3 ; skip font line bra.s cc_alpxls ;+++ ; Double width (over) underline character drawing code ;--- cw_alpul subq.w #6,a2 ; reduce increment addq.l #4,a5 ; and move entry move.l #$ffff0006,d1 ; one + seven + two rows move.w #5,d3 bra.s cw_alp ;+++ ; Double width (over) character drawing code ;--- cw_alpch subq.w #6,a2 ; reduce increment addq.l #4,a5 ; and move entry moveq #8,d1 ; one + nine rows move.w #5,d3 bra.s cw_alp ;+++ ; Double width (over) underline extended character drawing code ;--- cw_alpux sub.w #10,a2 ; reduce increment addq.l #6,a5 ; and move entry move.l #$ffff0006,d1 ; one + seven + two rows move.w #7,d3 bra.s cw_alp ;+++ ; Double width (over) extended character drawing code ;--- cw_alpcx sub.w #10,a2 ; reduce increment addq.l #6,a5 ; and move entry moveq #8,d1 ; one + nine rows move.w #7,d3 cw_alp move.w d3,d0 cw_alpbl bsr put_pixel_d4 ; the blank line bsr put_pixel_d5 dbra d0,cw_alpbl swap d4 swap d5 swap d6 swap d7 cw_alpll add.l a2,a4 move.b (a3)+,d2 move.w d3,d0 cw_alppl add.b d2,d2 bcc.s cw_alppap bsr put_pixel_d6 ; ink point bsr put_pixel_d7 ; ink point dbra d0,cw_alppl bra.s cw_alpls cw_alppap bsr put_pixel_d4 ; paper point bsr put_pixel_d5 ; paper point dbra d0,cw_alppl cw_alpls swap d4 swap d5 swap d6 swap d7 dbra d1,cw_alpll tst.l d1 ; underscore? bpl cnsm_next ; ... no add.l a2,a4 move.w d3,d0 cw_alpull bsr put_pixel_d6 ; the underscore bsr put_pixel_d7 dbra d0,cw_alpull moveq #1,d1 addq.l #1,a3 ; skip font line bra.s cw_alpls ;+++ ; Double height underline character drawing code ;--- ch_alpul move.l #$fffd000d,d1 ; two + fourteen + four rows move.w #2,d3 bra.s ch_alp ;+++ ; Double height (over) character drawing code ;--- ch_alpch moveq #$11,d1 ; eighteen rows move.w #2,d3 bra.s ch_alp ;+++ ; Double height (over) underline extended character drawing code ;--- ch_alpux subq.l #2,a2 ; reduce increment addq.l #4,a5 ; and move entry move.l #$fffd000d,d1 ; two + fourteen + four rows move.w #3,d3 bra.s ch_alp ;+++ ; Double height (over) extended character drawing code ;--- ch_alpcx subq.l #2,a2 ; reduce increment addq.l #4,a5 ; and move entry moveq #$11,d1 ; eighteen rows move.w #3,d3 ch_alp move.w d3,d0 ch_alpbl bsr put_pixel_d4 ; the blank line bsr put_pixel_d5 dbra d0,ch_alpbl swap d4 swap d5 swap d6 swap d7 add.l a2,a4 move.w d3,d0 ch_alpbl1 bsr put_pixel_d4 ; the second blank line bsr put_pixel_d5 dbra d0,ch_alpbl1 swap d4 swap d5 swap d6 swap d7 ch_alpll move.b (a3)+,d2 ch_alpllu add.l a2,a4 move.w d3,d0 ch_alppl add.b d2,d2 bcs.s ch_alpink0 bsr put_pixel_d4 ; paper point add.b d2,d2 bcs.s ch_alpink1 bsr put_pixel_d5 ; paper point dbra d0,ch_alppl bra.s ch_alpls ch_alpink0 bsr put_pixel_d6 ; ink point add.b d2,d2 bcs.s ch_alpink1 bsr put_pixel_d5 ; paper point dbra d0,ch_alppl bra.s ch_alpls ch_alpink1 bsr put_pixel_d7 ; ink point dbra d0,ch_alppl ch_alpls swap d4 swap d5 swap d6 swap d7 btst #0,d1 ; first line of pair? beq.s ch_alple ; ... no subq.l #1,a3 ; yes backspace ch_alple dbra d1,ch_alpll tst.l d1 ; underscore? bpl cnsm_next ; ... no moveq #-1,d2 addq.l #1,d1 ; ... yes bne.s ch_alpllu ; genuine addq.l #1,a3 ; skip font line moveq #1,d1 bra.s ch_alpll ;+++ ; Double size (over) underline character drawing code ;--- cz_alpul subq.w #6,a2 ; reduce increment addq.l #4,a5 ; and move entry move.l #$fffd000d,d1 ; two + fourteen + four rows move.w #5,d3 bra.s cz_alp ;+++ ; Double size (over) character drawing code ;--- cz_alpch subq.w #6,a2 ; reduce increment addq.l #4,a5 ; and move entry moveq #$11,d1 ; eighteen rows move.w #5,d3 bra.s cz_alp ;+++ ; Double size (over) underline extended character drawing code ;--- cz_alpux sub.w #10,a2 ; reduce increment addq.l #6,a5 ; and move entry move.l #$fffd000d,d1 ; two + fourteen + four rows move.w #7,d3 bra.s cz_alp ;+++ ; Double size (over) extended character drawing code ;--- cz_alpcx sub.w #10,a2 ; reduce increment addq.l #6,a5 ; and move entry moveq #$11,d1 ; eighteen rows move.w #7,d3 cz_alp move.w d3,d0 cz_alpbl bsr put_pixel_d4 ; the blank line bsr put_pixel_d5 dbra d0,cz_alpbl swap d4 swap d5 swap d6 swap d7 add.l a2,a4 move.w d3,d0 cz_alpbl1 bsr put_pixel_d4 ; the blank line bsr put_pixel_d5 dbra d0,cz_alpbl1 swap d4 swap d5 swap d6 swap d7 cz_alpll move.b (a3)+,d2 cz_alpllu add.l a2,a4 move.w d3,d0 cz_alppl add.b d2,d2 bcc.s cz_alppap bsr put_pixel_d6 ; ink point bsr put_pixel_d7 ; ink point dbra d0,cz_alppl bra.s cz_alpls cz_alppap bsr put_pixel_d4 ; paper point bsr put_pixel_d5 ; paper point dbra d0,cz_alppl cz_alpls swap d4 swap d5 swap d6 swap d7 btst #0,d1 ; first line of pair? beq.s cz_alple ; ... no subq.l #1,a3 ; yes backspace cz_alple dbra d1,cz_alpll tst.l d1 ; underscore? bpl cnsm_next ; ... no moveq #-1,d2 addq.l #1,d1 ; ... yes bne.s cz_alpllu ; ... genuine addq.l #1,a3 ; skip font line moveq #1,d1 bra.s cz_alpll end
17.639157
74
0.658479
4beca9c4109c78d596a63925dac9fabac011ccb2
7,505
asm
Assembly
hram.asm
AmateurPanda92/pokemon-rby-dx
f7ba1cc50b22d93ed176571e074a52d73360da93
[ "MIT" ]
9
2020-07-12T19:44:21.000Z
2022-03-03T23:32:40.000Z
hram.asm
JStar-debug2020/pokemon-rby-dx
c2fdd8145d96683addbd8d9075f946a68d1527a1
[ "MIT" ]
7
2020-07-16T10:48:52.000Z
2021-01-28T18:32:02.000Z
hram.asm
JStar-debug2020/pokemon-rby-dx
c2fdd8145d96683addbd8d9075f946a68d1527a1
[ "MIT" ]
2
2021-03-28T18:33:43.000Z
2021-05-06T13:12:09.000Z
hSoftReset EQU $FF8A ; Initialized to 16. ; Decremented each input iteration if the player ; presses the reset sequence (A+B+SEL+START). ; Soft reset when 0 is reached. ; base tile ID to which offsets are added hBaseTileID EQU $FF8B ; 3-byte BCD number hItemPrice EQU $FF8B hDexWeight EQU $FF8B hWarpDestinationMap EQU $FF8B hOAMTile EQU $FF8B hROMBankTemp EQU $FF8B hPreviousTileset EQU $FF8B hEastWestConnectedMapWidth EQU $FF8B hSlideAmount EQU $FF8B hRLEByteValue EQU $FF8B H_SPRITEWIDTH EQU $FF8B ; in tiles H_SPRITEINTERLACECOUNTER EQU $FF8B H_SPRITEHEIGHT EQU $FF8C ; in tiles H_SPRITEOFFSET EQU $FF8D ; counters for blinking down arrow H_DOWNARROWBLINKCNT1 EQU $FF8B H_DOWNARROWBLINKCNT2 EQU $FF8C H_SPRITEDATAOFFSET EQU $FF8B H_SPRITEINDEX EQU $FF8C hMapStride EQU $FF8B hMapWidth EQU $FF8C hNorthSouthConnectionStripWidth EQU $FF8B hNorthSouthConnectedMapWidth EQU $FF8C ; DisplayTextID's argument hSpriteIndexOrTextID EQU $FF8C hPartyMonIndex EQU $FF8C ; the total number of tiles being shifted each time the pic slides by one tile hSlidingRegionSize EQU $FF8C ; 2 bytes hEnemySpeed EQU $FF8D hVRAMSlot EQU $FF8D hFourTileSpriteCount EQU $FF8E ; -1 = left ; 0 = right hSlideDirection EQU $FF8D hSpriteFacingDirection EQU $FF8D hSpriteMovementByte2 EQU $FF8D hSpriteImageIndex EQU $FF8D hLoadSpriteTemp1 EQU $FF8D hLoadSpriteTemp2 EQU $FF8E hHalveItemPrices EQU $FF8E hSpriteOffset2 EQU $FF8F hOAMBufferOffset EQU $FF90 hSpriteScreenX EQU $FF91 hSpriteScreenY EQU $FF92 hTilePlayerStandingOn EQU $FF93 hSpritePriority EQU $FF94 ; 2 bytes hSignCoordPointer EQU $FF95 hNPCMovementDirections2Index EQU $FF95 ; CalcPositionOfPlayerRelativeToNPC hNPCSpriteOffset EQU $FF95 ; temp value used when swapping bytes hSwapTemp EQU $FF95 hExperience EQU $FF96 ; 3 bytes, big endian ; Multiplication and division variables are meant ; to overlap for back-to-back usage. Big endian. H_MULTIPLICAND EQU $FF96 ; 3 bytes H_MULTIPLIER EQU $FF99 ; 1 byte H_PRODUCT EQU $FF95 ; 4 bytes H_DIVIDEND EQU $FF95 ; 4 bytes H_DIVISOR EQU $FF99 ; 1 byte H_QUOTIENT EQU $FF95 ; 4 bytes H_REMAINDER EQU $FF99 ; 1 byte H_DIVIDEBUFFER EQU $FF9A H_MULTIPLYBUFFER EQU $FF9B ; PrintNumber (big endian). H_PASTLEADINGZEROES EQU $FF95 ; last char printed H_NUMTOPRINT EQU $FF96 ; 3 bytes H_POWEROFTEN EQU $FF99 ; 3 bytes H_SAVEDNUMTOPRINT EQU $FF9C ; 3 bytes ; distance in steps between NPC and player hNPCPlayerYDistance EQU $FF95 hNPCPlayerXDistance EQU $FF96 hFindPathNumSteps EQU $FF97 ; bit 0: set when the end of the path's Y coordinate matches the target's ; bit 1: set when the end of the path's X coordinate matches the target's ; When both bits are set, the end of the path is at the target's position ; (i.e. the path has been found). hFindPathFlags EQU $FF98 hFindPathYProgress EQU $FF99 hFindPathXProgress EQU $FF9A ; 0 = from player to NPC ; 1 = from NPC to player hNPCPlayerRelativePosPerspective EQU $FF9B ; bit 0: ; 0 = target is to the south or aligned ; 1 = target is to the north ; bit 1: ; 0 = target is to the east or aligned ; 1 = target is to the west hNPCPlayerRelativePosFlags EQU $FF9D ; some code zeroes this for no reason when writing a coin amount hUnusedCoinsByte EQU $FF9F hMoney EQU $FF9F ; 3-byte BCD number hCoins EQU $FFA0 ; 2-byte BCD number hDivideBCDDivisor EQU $FFA2 ; 3-byte BCD number hDivideBCDQuotient EQU $FFA2 ; 3-byte BCD number hDivideBCDBuffer EQU $FFA5 ; 3-byte BCD number hSerialReceivedNewData EQU $FFA9 ; $01 = using external clock ; $02 = using internal clock ; $ff = establishing connection hSerialConnectionStatus EQU $FFAA hSerialIgnoringInitialData EQU $FFAB hSerialSendData EQU $FFAC hSerialReceiveData EQU $FFAD ; these values are copied to SCX, SCY, and WY during V-blank hSCX EQU $FFAE hSCY EQU $FFAF hWY EQU $FFB0 hJoyLast EQU $FFB1 hJoyReleased EQU $FFB2 hJoyPressed EQU $FFB3 hJoyHeld EQU $FFB4 hJoy5 EQU $FFB5 hJoy6 EQU $FFB6 hJoy7 EQU $FFB7 H_LOADEDROMBANK EQU $FFB8 hSavedROMBank EQU $FFB9 ; is automatic background transfer during V-blank enabled? ; if nonzero, yes ; if zero, no H_AUTOBGTRANSFERENABLED EQU $FFBA TRANSFERTOP EQU 0 TRANSFERMIDDLE EQU 1 TRANSFERBOTTOM EQU 2 ; 00 = top third of background ; 01 = middle third of background ; 02 = bottom third of background H_AUTOBGTRANSFERPORTION EQU $FFBB ; the destination address of the automatic background transfer H_AUTOBGTRANSFERDEST EQU $FFBC ; 2 bytes ; temporary storage for stack pointer during memory transfers that use pop ; to increase speed H_SPTEMP EQU $FFBF ; 2 bytes ; source address for VBlankCopyBgMap function ; the first byte doubles as the byte that enabled the transfer. ; if it is 0, the transfer is disabled ; if it is not 0, the transfer is enabled ; this means that XX00 is not a valid source address H_VBCOPYBGSRC EQU $FFC1 ; 2 bytes ; destination address for VBlankCopyBgMap function H_VBCOPYBGDEST EQU $FFC3 ; 2 bytes ; number of rows for VBlankCopyBgMap to copy H_VBCOPYBGNUMROWS EQU $FFC5 ; size of VBlankCopy transfer in 16-byte units H_VBCOPYSIZE EQU $FFC6 ; source address for VBlankCopy function H_VBCOPYSRC EQU $FFC7 ; destination address for VBlankCopy function H_VBCOPYDEST EQU $FFC9 ; size of source data for VBlankCopyDouble in 8-byte units H_VBCOPYDOUBLESIZE EQU $FFCB ; source address for VBlankCopyDouble function H_VBCOPYDOUBLESRC EQU $FFCC ; destination address for VBlankCopyDouble function H_VBCOPYDOUBLEDEST EQU $FFCE ; controls whether a row or column of 2x2 tile blocks is redrawn in V-blank ; 00 = no redraw ; 01 = redraw column ; 02 = redraw row hRedrawRowOrColumnMode EQU $FFD0 REDRAW_COL EQU 1 REDRAW_ROW EQU 2 hRedrawRowOrColumnDest EQU $FFD1 hRandomAdd EQU $FFD3 hRandomSub EQU $FFD4 H_FRAMECOUNTER EQU $FFD5 ; decremented every V-blank (used for delays) ; V-blank sets this to 0 each time it runs. ; So, by setting it to a nonzero value and waiting for it to become 0 again, ; you can detect that the V-blank handler has run since then. H_VBLANKOCCURRED EQU $FFD6 ; 00 = indoor ; 01 = cave ; 02 = outdoor ; this is often set to 00 in order to turn off water and flower BG tile animations hTilesetType EQU $FFD7 hMovingBGTilesCounter1 EQU $FFD8 H_CURRENTSPRITEOFFSET EQU $FFDA ; multiple of $10 hItemCounter EQU $FFDB hGymGateIndex EQU $FFDB hGymTrashCanRandNumMask EQU $FFDB hDexRatingNumMonsSeen EQU $FFDB hDexRatingNumMonsOwned EQU $FFDC ; $00 = bag full ; $01 = got item ; $80 = didn't meet required number of owned mons ; $FF = player cancelled hOaksAideResult EQU $FFDB hOaksAideRequirement EQU $FFDB ; required number of owned mons hOaksAideRewardItem EQU $FFDC hOaksAideNumMonsOwned EQU $FFDD hItemToRemoveID EQU $FFDB hItemToRemoveIndex EQU $FFDC hVendingMachineItem EQU $FFDB hVendingMachinePrice EQU $FFDC ; 3-byte BCD number ; the first tile ID in a sequence of tile IDs that increase by 1 each step hStartTileID EQU $FFE1 hNewPartyLength EQU $FFE4 hDividend2 EQU $FFE5 hDivisor2 EQU $FFE6 hQuotient2 EQU $FFE7 hSpriteVRAMSlotAndFacing EQU $FFE9 hCoordsInFrontOfPlayerMatch EQU $FFEA hSpriteAnimFrameCounter EQU $FFEA H_WHOSETURN EQU $FFF3 ; 0 on player’s turn, 1 on enemy’s turn ; bit 0: draw HP fraction to the right of bar instead of below (for party menu) ; bit 1: menu is double spaced hFlags_0xFFF6 EQU $FFF6 hFieldMoveMonMenuTopMenuItemX EQU $FFF7 hDisableJoypadPolling EQU $FFF9 hJoyInput EQU $FFF8
23.092308
82
0.771486
afb395566c4872c7c56d190ad3be7b6978f6619f
23,629
asm
Assembly
2.26/CRACK2TXT.asm
alexanderbazhenoff/brainwave-cracktro-v2
4b441d0a60f0b2b7fe2dc811c1376862205d4267
[ "MIT" ]
null
null
null
2.26/CRACK2TXT.asm
alexanderbazhenoff/brainwave-cracktro-v2
4b441d0a60f0b2b7fe2dc811c1376862205d4267
[ "MIT" ]
null
null
null
2.26/CRACK2TXT.asm
alexanderbazhenoff/brainwave-cracktro-v2
4b441d0a60f0b2b7fe2dc811c1376862205d4267
[ "MIT" ]
null
null
null
; This Source Code Form is subject to the terms of the MIT ; hLicense. If a copy of the MPL was not distributed with ; this file, You can obtain one at ttps://github.com/aws/mit-0 MAIN "CRACKTR2" MACRO FROM DB 12,20,K2,38,2,4,"from" ENDM WGC EQU 15 MACRO GC DB 3,13,K4,T03,1,7,"cracked" DB 3,13,K1,T04,2,1,"+" DB 3,23,K2,T05,1,6,"disked" DB 3,22,K1,T06,1,1,"+" DB 3,32,K3,T07,1,7,"tra",#80,"ined" DB 5,4,K1,T08,1,1,"+" DB 5,14,K3,T09,1,6,"packed" DB 5,13,K1,T10,1,1,"." DB 5,15,K1,T11,1,1,"." DB 5,17,K1,T12,1,1,"." DB 5,19,K1,T13,1,1,"." DB 5,21,K1,T14,1,1,"." DB 5,27,K4,T15,1,3,"ALX" DB 5,27,K1,T16,1,1,"/" DB 5,33,K3,T17,2,2,"BW" ENDM WGDR EQU 15 MACRO GDR DB 3,13,K4,T03,1,6,"disked" DB 3,12,K1,T04,2,1,"+" DB 3,23,K2,T05,1,6,"packed" DB 3,22,K1,T06,1,1,"+" DB 3,32,K3,T07,1,7,"tra",#80,"ined" DB 5,1,K1,T08,1,1,"+" IF0 OPT DB 5,13,K3,T09,1,9,"optim",#80,"ized" ELSE DB 5,13,K3,T09,1,9,"corrected" ENDIF DB 5,13,K1,T10,1,1,"." DB 5,15,K1,T11,1,1,"." DB 5,17,K1,T12,1,1,"." DB 5,19,K1,T13,1,1,"." DB 5,21,K1,T14,1,1,"." DB 5,27,K4,T15,1,3,"ALX" DB 5,27,K1,T16,1,1,"/" DB 5,33,K3,T17,2,2,"BW" ENDM CLIF EQU 16 MACRO N_CLIF DB 10,2,K1,25,1,1,"*" DB 10,4,K4,26,2,1,"C" DB 10,6,K4,27,1,1,"L" DB 10,8,K4,28,0,1,"I" DB 10,10,K4,29,1,1,"F" DB 10,12,K4,30,2,1,"F" DB 10,16,K4,31,1,1,"H" DB 10,18,K4,32,2,1,"A" DB 10,20,K4,33,1,1,"N" DB 10,22,K4,34,2,1,"G" DB 10,24,K4,35,1,1,"E" DB 10,26,K4,36,2,1,"R" DB 10,28,K1,37,1,1,"*" FROM DB 14,7,K2,40,1,3,"N",#83,"ew" DB 14,20,K4,42,1,10,"Generat",#80,"ion" DB 14,30,K3,46,1,8,"S",1,#82,"of",0,#83,"tware" ENDM MACRO C_CLI1 DB 10,8,K4,0,1,7,"%ENTER$" DB 10,8,K1,1,1,1,"-" DB 10,18,K2,2,1,6,"toggle" DB 11,23,K4,3,1,5,"%SPC",#81,"$" DB 11,30,K3,4,2,5," load" DB 11,23,K1,5,1,1,"-" DB 6,0,K1,6,1,1,"1" DB 6,11,K3,7,1,7,"unl",#80,1,"imi",#81,"t" ENDM MACRO C_CLIF DB 13 C_CLI1 DB 6,17,K4,8,1,5,"lives" DB 6,24,K1,9,2,1,"]" DB 6,18,K1,10,2,1,"[" DB 6,24,K4,11,2,3,"yep" DB 6,24,K4,12,1,3,"nop" ENDM HERT EQU 15 MACRO N_HERT DB 10,5,K4,25,1,1,"H" DB 10,7,K4,26,1,1,"E" DB 10,9,K4,27,1,1,"A" DB 10,11,K4,28,1,1,"R" DB 10,13,K4,29,1,1,"T" DB 10,15,K4,30,1,1,"B" DB 10,17,K4,31,1,1,"R" DB 10,19,K1,32,1,1,"\" DB 10,21,K4,33,1,1,"K" DB 10,23,K4,34,1,1,"E" DB 10,25,K4,35,1,1,"N" FROM DB 14,11,K4,40,3,8,"Atlant",#80,"is" DB 14,21,K3,42,1,8,"S",1,#82,"of",0,#82,"tware" DB 14,27,K4,44,2,4,"L",1,"td." DB 14,30,K2,46,1,3,"'89" ENDM MACRO C_HERT DB 12 DB 10,8,K4,0,1,7,"%ENTER$" DB 10,8,K1,1,1,1,"-" DB 10,18,K2,2,1,6,"toggle" DB 11,23,K4,3,1,5,"%SPC",#81,"$" DB 11,30,K3,4,2,5," load" DB 11,23,K1,5,1,1,"-" DB 6,0,K1,6,1,1,"1" DB 6,15,K3,7,0,10,"invenc",#80,"ib",#82,"le" DB 6,21,K1,8,2,1,"]" DB 6,15,K1,9,2,1,"[" DB 6,21,K4,10,2,3,"yep" DB 6,21,K4,11,1,3,"nop" ENDM BUBLER EQU 13 MACRO N_BUBLER DB 10,3,K1,33,1,1,"@" DB 10,6,K4,25,1,1,"B" DB 10,9,K4,26,1,1,"U" DB 10,12,K4,27,1,1,"B" DB 10,15,K4,28,1,1,"B" DB 10,18,K4,29,1,1,"L" DB 10,21,K4,30,1,1,"E" DB 10,24,K4,31,1,1,"R" DB 10,27,K1,35,1,1,"@" FROM DB 14,7,K4,40,2,5,"Ashby" DB 14,17,K3,42,1,9,"Computers" DB 14,21,K2,44,2,3,"And" DB 14,31,K4,46,1,8,"Graphics" ENDM MACRO C_BUBL DB 46 DB 14,8,K4,0,1,7,"%ENTER$" DB 14,8,K2,1,1,1,"-" DB 14,18,K1,2,1,6,"toggle" DB 14,23,K4,3,1,5,"%SPC",#81,"$" DB 14,30,K3,4,2,5," load" DB 14,23,K2,5,1,1,"-" DB 8,0,K1,6,2,1,"5" DB 8,11,K2,7,0,7,"in",#82,"-",#81,"game" DB 8,17,K4,8,1,4,"keys" DB 8,26,K1,9,1,9,"%H+E+L+P$" DB 10,0,K1,10,3,1,"6" DB 10,9,K4,11,1,4,"fast" DB 10,17,K3,12,1,7,"enem",#80,"ies" DB 10,21,K2,13,3,2,":)" DB 0,0,K1,14,1,1,"1" DB 0,11,K2,15,1,7,"unl",#80,1,"imi",#81,"t" DB 0,17,K4,16,1,5,"lives" DB 2,0,K1,17,2,1,"2" DB 2,11,K4,18,3,7,"u",#82,"n",#81,"l",#80,1,"imi",#82 DB "t" DB 2,17,K1,19,1,4,"time" DB 4,0,K1,20,1,1,"3" DB 4,15,K3,21,0,10,"invenc",#80,"ib",#82,"le" DB 6,0,K1,22,2,1,"4" DB 6,9,K4,23,3,4,"sk",#80,"ip" DB 6,8,K2,24,1,1,"'" DB 6,14,K1,25,1,3,"out" DB 6,18,K2,26,1,2,"of" DB 6,23,K3,27,2,5,"floor" DB 6,23,K2,28,1,1,"'" DB 12,6,K3,29,1,5,"Wanna" DB 12,6,K2,30,1,1,"'" DB 12,22,K4,31,1,12,"hid",#82,"den cheat" DB 12,21,K2,32,2,1,"'" DB 12,27,K1,33,1,3,"??",#81,"?" DB 0,30,K4,34,2,3,"yep" DB 2,30,K4,35,2,3,"yep" DB 4,30,K4,36,2,3,"yep" DB 6,30,K4,37,2,3,"yep" DB 8,30,K4,38,2,3,"yep" DB 10,30,K4,39,2,3,"yep" DB 0,30,K4,40,2,3,"nop" DB 2,30,K4,41,2,3,"nop" DB 4,30,K4,42,2,3,"nop" DB 6,30,K4,43,2,3,"nop" DB 8,30,K4,44,2,3,"nop" DB 10,30,K4,45,2,3,"nop" ENDM XENO EQU 15 MACRO N_XENO DB 10,9,K4,26,3,3,"$",#82,"X",#81,"%" DB 10,15,K4,28,1,3,"$",#82,"E",#83,"%" DB 10,21,K4,30,3,3,"$",#82,"N",#81,"%" DB 10,27,K4,32,1,3,"$",#82,"@",#83,"%" FROM DB 14,1,K4,39,1,1,"A" DB 14,3,K1,40,1,1,"'" DB 14,5,K4,41,1,1,"N" DB 14,7,K1,42,1,1,"'" DB 14,9,K4,43,1,1,"F" DB 14,14,K2,44,1,1,"L" DB 14,17,K2,45,1,1,"T" DB 14,20,K2,46,1,1,"D" DB 14,24,K1,47,1,1,"'" DB 14,26,K3,48,1,1,"8" DB 14,29,K3,49,1,1,"6" ENDM MACRO C_XENO DB 22 DB 0,6,K2,0,1,5,"Sorry" DB 1,12,K4,1,1,4,"guys" DB 1,11,K2,2,1,1,"!" DB 2,19,K1,3,2,5,"There" DB 3,23,K2,4,1,3,"are" DB 4,27,K3,5,1,2,"no" DB 6,12,K1,6,1,1,"*" DB 6,28,K4,7,1,13,"tra",#80,"iner menue" DB 6,28,K1,8,1,1,"*" DB 6,30,K2,9,1,1,"!" DB 8,12,K1,10,1,1,"(" DB 8,24,K2,11,3,8,"Khe-",#83,"Khe!" DB 8,23,K1,12,1,1,")" DB 10,6,K3,13,1,4,"K",#80,"ick" DB 11,5,K1,14,1,1,"%" DB 11,13,K4,15,1,5,"SPACE" DB 11,13,K1,16,1,1,"$" DB 12,19,K2,17,1,3,"and" DB 12,25,K1,18,1,5,"en",#80,"joy" DB 14,22,K3,19,2,3,"the" DB 14,30,K4,20,1,6,"act",#80,"ion" DB 14,30,K2,21,1,1,"!" ENDM MACRO TOPO DB 14,0,K4,39,1,1,"T" DB 14,3,K3,40,1,1,"@" DB 14,6,K4,41,1,1,"P" DB 14,9,K3,42,1,1,"@" DB 14,13,K4,43,1,1,"S" DB 14,16,K3,44,1,1,"@" DB 14,19,K4,45,1,1,"F" DB 14,22,K4,46,1,1,"T" DB 14,25,K1,47,1,1,"'" DB 14,27,K2,48,1,1,"8" ENDM WELLS EQU 24 MACRO N_WELLS DB 10,2,K1,25,1,1,"+" DB 10,4,K4,26,1,1,"W" DB 10,6,K4,27,1,1,"E" DB 10,8,K4,28,1,1,"L" DB 10,10,K4,29,1,1,"L" DB 10,12,K4,30,1,1,"'" DB 10,14,K4,31,1,1,"S" DB 10,18,K4,32,1,1,"F" DB 10,20,K3,33,1,1,#7B DB 10,22,K4,34,1,1,"R" DB 10,24,K4,35,1,1,"G" DB 10,26,K3,36,1,1,#7D DB 10,28,K1,37,1,1,"+" FROM TOPO DB 14,30,K2,49,1,1,"7" ENDM MACRO C_WELLS DB 22 DB 7,6,K2,0,1,5,"Wanna" DB 7,12,K3,1,1,4,"have" DB 7,15,K4,2,1,3,"fun" DB 7,15,K1,3,1,1,"?" DB 9,6,K1,4,1,5,"Press" DB 9,12,K4,5,1,5,"%B+W$" DB 9,18,K2,6,1,5,"wh",#80,"ile" DB 9,30,K3,7,1,11,"decrunch",#80,"ing" DB 9,30,K1,8,1,1,"!" DB 13,8,K4,9,1,7,"%ENTER$" DB 13,8,K1,10,1,1,"-" DB 13,18,K2,11,1,6,"toggle" DB 14,23,K4,12,1,5,"%SPC",#81,"$" DB 14,30,K3,13,2,5," load" DB 14,23,K1,14,1,1,"-" DB 2,0,K1,15,1,1,"1" DB 2,11,K3,16,1,7,"unl",#80,1,"imi",#81,"t" DB 2,17,K4,17,1,5,"lives" DB 2,24,K1,18,2,1,"]" DB 2,18,K1,19,2,1,"[" DB 2,24,K4,20,2,3,"yep" DB 2,24,K4,21,1,3,"nop" ENDM VIAJ EQU 17 MACRO N_VIAJ DB 10,7,K4,27,1,5,"Via",#80,"je" DB 10,11,K4,29,1,2,"As" DB 10,18,K4,31,1,6,"Centro" DB 10,21,K4,33,1,2,"De" DB 10,24,K4,35,1,2,"La" DB 10,31,K4,37,1,6,"T",#80,"ierra" FROM TOPO DB 14,30,K2,49,1,1,"9" ENDM GFORC EQU 20 MACRO N_GFORC DB 10,1,K1,25,1,1,"$" DB 10,3,K4,26,1,1,"G" DB 10,5,K4,27,1,1,"A" DB 10,7,K4,28,1,1,"L" DB 10,9,K4,29,1,1,"A" DB 10,11,K4,30,1,1,"X" DB 10,13,K4,31,1,1,"Y" DB 10,19,K4,32,1,1,"F" DB 10,21,K4,33,1,1,"O" DB 10,23,K4,34,1,1,"R" DB 10,25,K4,35,1,1,"C" DB 10,27,K4,36,1,1,"E" DB 10,29,K1,37,1,1,"%" FROM DB 14,11,K4,40,2,#B," Act",#80,"ivis",#80,"i",#82,"on" DB 14,17,K3,41,0,4,"Inc." DB 14,16,K1,42,2,1,"/" DB 14,22,K2,44,3,2,"M." DB 14,25,K3,45,2,2,"C." DB 14,28,K4,46,3,2,"M." DB 14,31,K2,48,3,3,"'89" ENDM MACRO C_GFORC DB 13 C_CLI1 DB 6,19,K4,8,1,7,"credits" DB 6,26,K1,9,2,1,"]" DB 6,20,K1,10,2,1,"[" DB 6,26,K4,11,2,3,"yep" DB 6,26,K4,12,1,3,"nop" ENDM CYCL EQU 21 MACRO N_CYCL DB 10,6,K4,25,1,1,"C" DB 10,9,K4,26,1,1,"Y" DB 10,12,K4,27,1,1,"C" DB 10,15,K4,28,1,1,"L" DB 10,18,K4,29,1,1,"O" DB 10,21,K4,30,1,1,"N" DB 10,24,K4,31,1,1,"E" DB 12,20,K2,33,2,4,"from" DB 14,0,K3,35,1,1,"V" DB 14,2,K3,36,1,1,"O" DB 14,4,K3,37,1,1,"R" DB 14,6,K3,38,1,1,"T" DB 14,8,K3,39,1,1,"E" DB 14,10,K3,40,1,1,"X" DB 14,16,K1,41,1,1,"S" DB 14,18,K1,42,1,1,"O" DB 14,20,K1,43,1,1,"F" DB 14,22,K1,44,1,1,"T" DB 14,24,K1,45,1,1,"W" DB 14,26,K1,46,1,1,"A" DB 14,28,K1,47,1,1,"R" DB 14,30,K1,48,1,1,"E" ENDM PUZN EQU 11 MACRO N_PUZN DB 10,6,K4,25,1,1,"P" DB 10,9,K4,26,1,1,"U" DB 10,12,K4,27,1,1,"Z" DB 10,15,K4,28,1,1,"Z" DB 10,18,K4,29,1,1,"N" DB 10,21,K4,30,0,1,"I" DB 10,24,K4,31,1,1,"C" DB 12,20,K2,33,2,4,"from" DB 14,9,K3,37,1,5,"Ocean" DB 14,20,K2,39,1,8,"Software" DB 14,26,K1,41,2,4,"Lt",#81,"d." DB 14,29,K3,43,2,3,"'90" ENDM YOGI EQU 9 MACRO N_YOGI DB 10,10,K4,28,1,4,"Yo",#81,"g",#80,"i" DB 10,16,K4,30,2,4,"Bear" DB 10,28,K4,32,1,10,"collect",#80,"ion" FROM DB 14,11,K4,40,1,9,"Mac",#81,"m",#80,"i",#81 DB "l",#81,"l",#82,"an" DB 14,12,K1,42,1,1,"/" DB 14,22,K4,44,1,6,"HI-TEC" DB 14,25,K3,46,2,3,"'8T" DB 14,25,K1,48,2,1,"/" DB 14,31,K3,50,2,2,"90" ENDM MACRO P_YOGI DB 27 DB 3,8,K4,0,1,6,"Select" DB 3,13,K2,1,1,4,"game" DB 3,19,K3,2,2,4,"part" DB 3,18,K1,3,2,1,":" DB 6,8,K3,4,1,7,"load",#80,"ing" DB 6,14,K4,5,2,4,"part" DB 6,14,K1,6,1,1,"[" DB 6,18,K1,7,1,1,"]" DB 10,4,K2,8,1,3,"Use" DB 10,4,K1,9,1,1,"%" DB 10,6,K4,10,1,1,"1" DB 10,8,K1,11,1,1,"/" DB 10,10,K4,12,1,1,"2" DB 10,12,K1,13,1,1,"/" DB 10,14,K4,14,1,1,"3" DB 10,16,K1,15,1,1,"/" DB 10,24,K4,16,1,5,"ENTER" DB 10,24,K1,17,1,1,"$" DB 10,30,K2,18,1,2,"to" DB 12,31,K3,19,1,6,"choose" DB 14,8,K4,20,1,7,"%SPACE$" DB 14,8,K1,21,1,1,"-" DB 14,14,K3,22,1,3,"end" DB 14,24,K2,23,1,9,"select",#80,"ion" DB 6,16,K4,24,2,1,"1" DB 6,16,K4,25,2,1,"2" DB 6,16,K4,26,2,1,"3" ENDM MACRO YK DB 13,8,K4,0,1,7,"%ENTER$" DB 13,8,K1,1,1,1,"-" DB 13,18,K2,2,1,6,"toggle" DB 14,23,K4,3,1,5,"%SPC",#81,"$" DB 14,30,K3,4,2,5," load" DB 14,23,K1,5,1,1,"-" ENDM MACRO YP1 DB 2,0,K1,6,1,1,"1" DB 2,11,K2,7,1,7,"unlim",#80,"it" ENDM MACRO YP11 YP1 DB 2,17,K4,8,1,5,"lives" ENDM MACRO YP2 DB 6,0,K1,9,2,1,"2" ENDM MACRO YP22 YP2 DB 6,11,K4,10,1,7,"unlim",#80,"it" ENDM MACRO C_YOG3 YK YP11 YP22 DB 6,17,K3,11,1,4,"time" ENDM MACRO C_CYCL DB 27 C_YOG3 DB 10,0,K1,12,1,1,"3" DB 10,11,K3,13,1,7,"unl",#80,1,"imi",#81,"t" DB 10,17,K2,14,1,4,"fuel" DB 2,18,K1,15,2,1,"[" DB 10,18,K1,16,2,1,"[" DB 10,24,K1,17,2,1,"]" DB 6,18,K1,18,2,1,"[" DB 2,24,K1,19,2,1,"]" DB 6,24,K1,20,2,1,"]" DB 2,24,K4,21,2,3,"yep" DB 6,24,K4,22,2,3,"yep" DB 10,24,K4,23,2,3,"yep" DB 2,24,K4,24,1,3,"nop" DB 6,24,K4,25,1,3,"nop" DB 10,24,K4,26,1,3,"nop" ENDM MACRO C_PUZN DB 27 YK DB 2,0,K1,6,1,1,"1" DB 2,11,K2,7,1,7,"unlim",#80,"it" DB 2,17,K4,8,1,4,"time" DB 6,0,K1,9,2,1,"2" DB 6,11,K4,10,1,7,"unlim",#80,"it" DB 6,19,K3,11,1,6,"retrys" DB 10,0,K1,12,1,1,"3" DB 10,13,K3,13,1,8,"pen",#81,"tagon" DB 10,17,K2,14,1,3,"fix" DB 2,19,K1,15,2,1,"[" DB 10,19,K1,16,2,1,"[" DB 10,25,K1,17,2,1,"]" DB 6,19,K1,18,2,1,"[" DB 2,25,K1,19,2,1,"]" DB 6,25,K1,20,2,1,"]" DB 2,25,K4,21,2,3,"yep" DB 6,25,K4,22,2,3,"yep" DB 10,25,K4,23,2,3,"yep" DB 2,25,K4,24,1,3,"nop" DB 6,25,K4,25,1,3,"nop" DB 10,25,K4,26,1,3,"nop" ENDM MACRO C_VIAJ DB 28 YK YP1 DB 2,19,K4,8,1,6,"healt",#81,"h" YP2 DB 6,11,K4,10,1,7,"unlim",#80,"it" DB 6,17,K3,11,1,4,"time" DB 10,0,K1,12,1,1,"3" DB 10,9,K3,13,1,4,"open" DB 10,12,K2,14,2,3,"the" DB 10,16,K4,15,1,3,"map" DB 2,19,K1,16,2,1,"[" DB 10,19,K1,17,2,1,"[" DB 10,25,K1,18,2,1,"]" DB 6,19,K1,19,2,1,"[" DB 2,25,K1,20,2,1,"]" DB 6,25,K1,21,2,1,"]" DB 2,25,K4,22,2,3,"yep" DB 6,25,K4,23,2,3,"yep" DB 10,25,K4,24,2,3,"yep" DB 2,25,K4,25,1,3,"nop" DB 6,25,K4,26,1,3,"nop" DB 10,25,K4,27,1,3,"nop" ENDM CDTTD EQU 23 MACRO N_CDTTD DB 10,0,K4,25,1,1,"C" DB 10,2,K2,26,2,1,"O" DB 10,4,K3,27,1,1,"U" DB 10,6,K4,28,2,1,"N" DB 10,8,K1,29,1,1,"T" DB 10,10,K3,30,2,1,"D" DB 10,12,K2,31,1,1,"O" DB 10,14,K4,32,2,1,"W" DB 10,16,K3,33,1,1,"N" DB 10,20,K1,34,2,1,"T" DB 10,22,K4,35,1,1,"O" DB 10,26,K2,36,2,1,"T" DB 10,28,K3,37,1,1,"H" DB 10,30,K1,38,2,1,"E" DB 12,9,K4,39,1,1,"D" DB 12,12,K2,40,1,1,"E" DB 12,15,K1,41,1,1,"A" DB 12,18,K4,42,1,1,"T" DB 12,21,K3,43,1,1,"H" DB 14,10,K2,44,1,4,"from" DB 14,21,K4,45,2,6,"MGSo",#82,"ft" DB 14,22,K1,46,1,1,"'" DB 14,24,K2,47,1,1,"9" DB 14,26,K2,48,1,1,"0" ENDM MACRO C_CDTTD DB 27 DB 13,8,K4,0,1,7,"%ENTER$" DB 13,8,K1,1,1,1,"-" DB 13,18,K2,2,1,6,"toggle" DB 14,23,K4,3,1,5,"%SPC",#81,"$" DB 14,30,K3,4,2,5," load" DB 14,23,K1,5,1,1,"-" DB 10,4,K1,6,1,3,"Try" DB 10,8,K2,7,2,2,"to" DB 10,13,K3,8,1,4,"fin",#82,"d" DB 10,12,K1,9,1,1,"'" DB 10,28,K4,10,1,12,"hid",#82,"den cheat" DB 10,27,K1,11,1,1,"'" DB 10,29,K1,12,1,1,"!" DB 1,0,K1,13,1,1,"1" DB 1,11,K2,14,1,7,"unl",#80,1,"imi",#81,"t" DB 1,17,K4,15,1,5,"lives" DB 5,0,K1,16,2,1,"2" DB 5,11,K4,17,3,7,"u",#82,"n",#81,"l",#80,1,"imi",#81 DB "t" DB 5,17,K3,18,1,4,"time" DB 1,24,K1,19,2,1,"]" DB 1,18,K1,20,2,1,"[" DB 5,24,K1,21,2,1,"]" DB 5,18,K1,22,2,1,"[" DB 1,24,K4,23,2,3,"yep" DB 5,24,K4,24,2,3,"yep" DB 1,24,K4,25,1,3,"nop" DB 5,24,K4,26,1,3,"nop" ENDM WO EQU BUBLER TEXT IF0 GA-2 WO=CYCL ENDIF IF0 GA-1 WO=GFORC ENDIF IF0 GA-4 WO=CDTTD ENDIF IF0 GA-3 WO=VIAJ ENDIF IF0 GA-5 WO=YOGI ENDIF IF0 GA-6 WO=CLIF ENDIF IF0 GA-7 WO=HERT ENDIF IF0 GA-8 WO=WELLS ENDIF IF0 GA-9 WO=PUZN ENDIF IF0 GA-10 WO=XENO ENDIF DB 19+WO DB 7,8,K3,19,2,4,"next" DB 7,11,K2,20,2,3,"our" DB 7,17,K4,21,1,5,"crack" DB 7,17,K3,22,2,1,"-" DB 7,27,K1,23,2,7,"release" DB 7,31,K4,24,1,2,"of" IF0 GA N_BUBLER ENDIF IF0 GA-1 N_GFORC ENDIF IF0 GA-2 N_CYCL ENDIF IF0 GA-3 N_VIAJ ENDIF IF0 GA-4 N_CDTTD ENDIF IF0 GA-5 N_YOGI ENDIF IF0 GA-6 N_CLIF ENDIF IF0 GA-7 N_HERT ENDIF IF0 GA-8 N_WELLS ENDIF IF0 GA-9 N_PUZN ENDIF IF0 GA-10 N_XENO ENDIF DB 1,8,K4,0,2,6,"Beware" DB 1,11,K1,2,1,3,"!!",#81,"!" DB 1,24,K4,9,1,11,"$Bra",#80,"inwave%" DB 1,30,K2,10,2,5,"backs" DB 1,30,K1,11,2,1,"!" DB 4,6,K2,12,1,3,"Now" DB 4,10,K4,13,0,2,"we" DB 4,13,K1,14,0,3,"are" DB 4,19,K2,15,0,5,"proud" DB 4,23,K1,16,1,2,"to" DB 4,28,K3,17,3,5,"br",#80,"ing" DB 4,28,K2,18,3,1,"U" TEXT2 DB 22 DB 5,4,K3,0,1,3,"And" DB 5,8,K1,1,1,3,"now" DB 5,8,K2,2,1,1,"U" DB 5,14,K4,3,1,3,"may" DB 7,10,K4,4,1,6,"escape" DB 7,13,K3,5,1,2,"to" DB 7,20,K2,6,1,7,"tra",#80,"iner" DB 9,11,K2,7,1,5,"menue" DB 9,16,K1,8,2,2,"by" DB 9,25,K3,9,1,8,"press",#80,"ing" DB 11,8,K1,10,2,1,"%" DB 11,16,K4,11,1,5,"SPACE" DB 11,16,K1,12,1,1,"$" DB 11,22,K2,13,1,3,"key" DB 11,26,K1,14,1,2,"or" DB 11,31,K3,15,1,4,"read" DB 13,16,K1,16,1,3,"all" DB 13,22,K2,17,2,4,"this" DB 13,27,K4,18,0,4,"info" DB 13,26,K1,19,0,1,"." DB 13,28,K3,20,0,1,"." DB 13,30,K2,21,0,1,"." IF0 CCR WTC=WGC ELSE WTC=WGDR ENDIF TEXT3 DB 25+WTC DB 8,15,K1,T20,1,1,"+" DB 8,21,K2,T21,1,3,"fn",#81,"t" DB 8,21,K1,T22,1,1,"." DB 8,27,K4,T23,1,3,"ALX" DB 8,27,K1,T24,1,1,"/" DB 8,33,K3,T25,2,2,"BW" DB 8,10,K2,T18,1,8,"cracktro" DB 8,15,K4,T19,1,5,"coded" DB 10,15,K1,T27,1,1,"." DB 10,17,K1,T28,1,1,"." DB 10,19,K1,T29,1,1,"." DB 10,27,K4,T30,1,5,"Megus" DB 10,27,K1,T31,1,1,"/" DB 10,33,K3,T32,2,2,"BW" DB 10,15,K3,T26,1,5,"mus",#80,"ic" DB 12,26,K4,T37,1,4,"P",#81,"rof" DB 12,32,K3,T39,2,3," 4D" DB 12,26,K1,T38,1,1,"/" DB 12,15,K2,T33,1,4,"logo" DB 12,14,K1,T34,2,1,"." DB 12,16,K1,T35,1,1,"." DB 12,18,K1,T36,1,1,"." DB 0,8,K4,T00,1,7,"Cred",#80,"its" DB 0,8,K1,T01,1,1,":" DB 3,6,K2,T02,1,4,"game" IF0 CCR GC ELSE GDR ENDIF TEXT4 DB 35 DB 8,10,K1,0,1,1,#7B DB 8,20,K4,4,1,6,"GREETZ" DB 8,19,K1,2,1,1,#7B DB 9,5,K1,24,0,2,"I8" DB 9,9,K4,44,2,3,"RZ",#83,"L" DB 9,31,K2,50,1,7,"Tr",#80,"ium",#82,"ph" DB 11,8,K2,14,1,6,"Mayhem" DB 11,11,K1,64,1,2,1,"RS" DB 11,25,K3,26,1,12,"Stud",#80,"io " DB "Stall" DB 11,28,K1,20,2,3,"HWC" DB 11,32,K4,42,2,2,"TL" DB 13,6,K4,58,1,4,"R",#82,"USH" DB 13,10,K2,8,1,3,"GBG" DB 13,19,K1,40,1,6,"Psycho" DB 13,32,K3,52,0,7,"M",#80,"ilytia" DB 13,24,K4,34,1,2,1,"DT" DB 1,4,K4,66,1,3,"PCB" DB 1,10,K3,28,1,5,"Ey",#81,1,"E-Q" DB 1,14,K1,16,1,2,"AF" DB 1,24,K4,68,1,9,"Raww Arse" DB 1,28,K1,60,1,3,"B",#82,"rC" DB 1,32,K2,36,1,2,1,"DR" DB 3,6,K3,12,1,5,"Skr",#80,"ju" DB 3,10,K4,54,1,2,"4D" DB 3,18,K2,10,1,6,1,"H-Pro",#80,"g" DB 3,26,K1,22,1,7,"Freeart" DB 3,31,K4,62,1,3,"PH",#82,"T" DB 5,4,K4,18,1,3,"CPU" DB 5,14,K1,30,1,9,"Serzhsoft" DB 5,22,K3,48,1,6,"P",#83,"o",#81,"S-",1,"WT" DB 5,27,K4,56,2,3,"XTM" DB 5,32,K2,38,1,3,"OCA" DB 7,10,K2,46,1,6,"Gas 13" DB 7,27,K3,32,1,3,"Ctl" DB 7,31,K1,6,1,3,"PHF" TEXT5 DB 25 DB 7,3,K2,20,1,1,"$" DB 7,5,K4,0,1,1,"C" DB 7,7,K1,2,1,1,"@" DB 7,9,K4,4,1,1,"M" DB 7,11,K4,6,0,1,"I" DB 7,13,K4,8,1,1,"N" DB 7,15,K4,10,1,1,"G" DB 7,19,K4,12,1,1,"S" DB 7,21,K1,14,1,1,"@" DB 7,23,K1,16,1,1,"@" DB 7,25,K4,18,1,1,"N" DB 7,27,K2,22,1,1,"%" DB 10,11,K3,26,1,7,"H",#80,"ighWay" DB 10,21,K3,28,1,9,"Encounter" DB 10,33,K3,30,1,10,"collect",#80,"ion" DB 12,6,K1,24,1,5,"Bas",#80,"il" DB 14,19,K4,36,1,11,"Alternat",#80,"ive" DB 14,25,K4,38,1,5,"World" DB 14,31,K4,40,1,5,"Games" DB 0,8,K4,32,1,6,"P",#82,"o",#81,"P",#81,1,"eYe" DB 0,20,K4,34,1,10,"collect",#80,"ion" DB 2,25,K1,46,1,7,"Altered" DB 2,32,K1,48,1,5,"Beast" DB 4,8,K2,42,1,6,"Savage" DB 4,20,K2,44,2,10,"collect",#80,"ion" TEXT6 DB 9 DB 5,4,K3,1,1,3,"Our" DB 5,10,K2,2,1,5,"stuff" DB 5,10,K1,3,1,1,":" DB 9,8,K2,4,2,7,"h",#81,1,"tt",#82,"p:",#83,"//" DB 9,18,K4,5,1,9,"bra",#80,"inwave" DB 9,18,K1,6,1,1,"." DB 9,26,K4,7,1,5,"fatal" DB 9,26,K1,8,1,1,"." DB 9,32,K4,9,1,2,"ru" MACRO TP DB 2,19,K1,12,2,1,"[" DB 6,19,K1,13,2,1,"[" DB 2,25,K1,14,2,1,"]" DB 6,25,K1,15,2,1,"]" DB 0,10,K0,16,1,9 DS 9,32 DB 2,25,K4,17,2,3,"yep" DB 6,25,K4,18,2,3,"yep" DB 2,25,K4,19,1,3,"nop" DB 6,25,K4,20,1,3,"nop" ENDM MACRO YB2 DB 21 YK YP1 DB 2,17,K4,8,1,4,"food" YP22 DB 6,19,K3,11,1,6,"sweets" TP ENDM MACRO YB1 DB 21 YK YP11 YP2 DB 6,9,K4,10,3,4,"sk",#80,"ip" DB 6,20,K3,11,1,10,"prec",#80,"ip",#80,"ices" TP ENDM
27.963314
62
0.422235
7641d153a87cc1f42c77228f2357952764360355
7,470
asm
Assembly
Transynther/x86/_processed/NONE/_ht_st_zr_un_/i9-9900K_12_0xa0.log_21829_149.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_ht_st_zr_un_/i9-9900K_12_0xa0.log_21829_149.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_ht_st_zr_un_/i9-9900K_12_0xa0.log_21829_149.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r14 push %rax push %rbp push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x8792, %r14 clflush (%r14) nop cmp $50233, %r11 movb (%r14), %dl nop sub %rdx, %rdx lea addresses_WT_ht+0xf342, %r13 nop nop nop inc %rax mov $0x6162636465666768, %rbx movq %rbx, %xmm1 and $0xffffffffffffffc0, %r13 movaps %xmm1, (%r13) nop nop nop xor %rdx, %rdx lea addresses_normal_ht+0xf53a, %r14 nop nop nop nop xor $6426, %rbp movups (%r14), %xmm0 vpextrq $1, %xmm0, %rdx nop nop nop nop nop and %rbp, %rbp lea addresses_WC_ht+0xe6c2, %rsi lea addresses_D_ht+0x14e22, %rdi nop nop nop and %rbx, %rbx mov $95, %rcx rep movsl nop nop nop nop lfence lea addresses_UC_ht+0x1496, %rax nop nop nop nop inc %r14 movb $0x61, (%rax) nop nop add $17, %rbp lea addresses_WT_ht+0x16162, %rbp nop cmp $26110, %rsi movl $0x61626364, (%rbp) and %rbx, %rbx lea addresses_UC_ht+0x122b6, %rdi add $53096, %r11 movl $0x61626364, (%rdi) nop nop nop nop inc %r13 lea addresses_WC_ht+0x176c2, %rbp nop nop nop nop nop cmp $12229, %rdx mov $0x6162636465666768, %rdi movq %rdi, %xmm6 vmovups %ymm6, (%rbp) nop nop and $20700, %rsi lea addresses_WT_ht+0xd465, %rsi lea addresses_UC_ht+0xd2fe, %rdi nop nop nop nop add %r14, %r14 mov $37, %rcx rep movsw nop nop nop xor $27411, %rbx lea addresses_WT_ht+0x14b16, %rsi lea addresses_normal_ht+0x1dac2, %rdi nop nop cmp %rbp, %rbp mov $41, %rcx rep movsb nop nop nop nop cmp %rdx, %rdx lea addresses_A_ht+0x1eec2, %rax nop nop add %rdx, %rdx mov (%rax), %r13d and $25477, %rdx lea addresses_WT_ht+0x152c2, %rsi lea addresses_WC_ht+0x2b92, %rdi clflush (%rsi) clflush (%rdi) nop nop nop nop and %r11, %r11 mov $41, %rcx rep movsb nop nop add %r13, %r13 lea addresses_normal_ht+0x1108b, %rsi nop nop nop and %rdi, %rdi movb (%rsi), %r11b nop nop nop nop nop inc %rbx pop %rsi pop %rdx pop %rdi pop %rcx pop %rbx pop %rbp pop %rax pop %r14 pop %r13 pop %r11 ret .global s_faulty_load s_faulty_load: push %r12 push %r13 push %r8 push %r9 push %rbp push %rcx // Faulty Load lea addresses_A+0x116c2, %r9 nop nop nop sub $39203, %rcx vmovups (%r9), %ymm3 vextracti128 $1, %ymm3, %xmm3 vpextrq $0, %xmm3, %r8 lea oracles, %r13 and $0xff, %r8 shlq $12, %r8 mov (%r13,%r8,1), %r8 pop %rcx pop %rbp pop %r9 pop %r8 pop %r13 pop %r12 ret /* <gen_faulty_load> [REF] {'src': {'NT': False, 'same': False, 'congruent': 0, 'type': 'addresses_A', 'AVXalign': False, 'size': 4}, 'OP': 'LOAD'} [Faulty Load] {'src': {'NT': False, 'same': True, 'congruent': 0, 'type': 'addresses_A', 'AVXalign': False, 'size': 32}, 'OP': 'LOAD'} <gen_prepare_buffer> {'src': {'NT': False, 'same': False, 'congruent': 4, 'type': 'addresses_D_ht', 'AVXalign': False, 'size': 1}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 6, 'type': 'addresses_WT_ht', 'AVXalign': True, 'size': 16}} {'src': {'NT': False, 'same': False, 'congruent': 2, 'type': 'addresses_normal_ht', 'AVXalign': False, 'size': 16}, 'OP': 'LOAD'} {'src': {'same': False, 'congruent': 10, 'type': 'addresses_WC_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 5, 'type': 'addresses_D_ht'}} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 2, 'type': 'addresses_UC_ht', 'AVXalign': False, 'size': 1}} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 3, 'type': 'addresses_WT_ht', 'AVXalign': False, 'size': 4}} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 1, 'type': 'addresses_UC_ht', 'AVXalign': False, 'size': 4}} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 11, 'type': 'addresses_WC_ht', 'AVXalign': False, 'size': 32}} {'src': {'same': False, 'congruent': 0, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 2, 'type': 'addresses_UC_ht'}} {'src': {'same': False, 'congruent': 0, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 9, 'type': 'addresses_normal_ht'}} {'src': {'NT': False, 'same': False, 'congruent': 11, 'type': 'addresses_A_ht', 'AVXalign': False, 'size': 4}, 'OP': 'LOAD'} {'src': {'same': False, 'congruent': 9, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 4, 'type': 'addresses_WC_ht'}} {'src': {'NT': False, 'same': False, 'congruent': 0, 'type': 'addresses_normal_ht', 'AVXalign': False, 'size': 1}, 'OP': 'LOAD'} {'ee': 1, '48': 21804, 'd8': 6, 'c2': 1, 'da': 1, '00': 3, 'd7': 5, '52': 1, 'ec': 2, '67': 2, 'dc': 3} 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 00 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 */
34.266055
2,999
0.655689
4b1a90fdbbb1fc29ee599238f352f73bf9ff31f6
289
asm
Assembly
programs/oeis/208/A208528.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/208/A208528.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/208/A208528.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A208528: Number of permutations of n>1 having exactly 3 points P on the boundary of their bounding square. ; 0,4,16,72,384,2400,17280,141120,1290240,13063680,145152000,1756339200,22992076800,323805081600,4881984307200,78460462080000,1339058552832000 mov $1,$0 fac $1 mul $1,4 mul $1,$0
36.125
142
0.792388
a0bdbee9f75ff8dce1afd6a31e4630e67a8e4bfa
1,062
asm
Assembly
Asm4Kids/32joystickcolors.asm
jacmoe/c64adventures
c33854a4fa22bf5877ea7cc9a207bc0aebf2a4c7
[ "BSD-2-Clause" ]
17
2017-04-18T14:00:14.000Z
2021-06-07T18:57:02.000Z
Asm4Kids/32joystickcolors.asm
jacmoe/c64adventures
c33854a4fa22bf5877ea7cc9a207bc0aebf2a4c7
[ "BSD-2-Clause" ]
null
null
null
Asm4Kids/32joystickcolors.asm
jacmoe/c64adventures
c33854a4fa22bf5877ea7cc9a207bc0aebf2a4c7
[ "BSD-2-Clause" ]
3
2018-04-09T14:34:40.000Z
2021-04-06T17:02:28.000Z
;**************************************** ;* * ;* Joystick colors * ;* * ;* Change the background colors * ;* using the joystick * ;* * ;**************************************** ; 10 SYS (49152) *=$0801 BYTE $0E, $08, $0A, $00, $9E, $20, $28, $34, $39, $31, $35, $32, $29, $00, $00, $00 *=$c000 jstick =$dc01 ofset =$c100 clear =$e544 fire =$c102 jsr clear lda #$ff ; value to eor sta ofset ; eor offset lda #16 ; eor'ed value of fire button sta fire ; store here for easy reference start lda jstick ; read joystick eor ofset ; eor with $ff cmp fire ; fire button pressed? beq end ; if it is, then quit sta $d021 ; put joystick value into background color register jmp start end rts
31.235294
96
0.37194
7aec962f584fcb68ba957a1e52a12af3d9df91a4
373
asm
Assembly
programs/oeis/269/A269247.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/269/A269247.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/269/A269247.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A269247: Number of times the digit 7 appears in the decimal expansion of n^3. ; 0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,2,0,0,0,1,1,1,1,0,1,0,0,1,0,0,0,1,2,0,0,1,0,0,1,0,0,0,2,1,1,1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,1,1,0,1,0,0,0,0,3,1,0,0,0,1,1,1,2,2,1,0,2,1,1,0,1,0 pow $0,3 cal $0,316868 ; Number of times 7 appears in decimal expansion of n. mov $1,$0
53.285714
203
0.600536
6723652b9525f1981f43d528436cc97e0b973434
613
asm
Assembly
Bootloader/Legacy/One.asm
bitPanG98/SillyOS
7cda791caaa017d6c5b95ea6215fc76d620a0a78
[ "MIT" ]
1
2021-02-04T01:19:04.000Z
2021-02-04T01:19:04.000Z
Bootloader/Legacy/One.asm
bitPanG98/SillyOS
7cda791caaa017d6c5b95ea6215fc76d620a0a78
[ "MIT" ]
null
null
null
Bootloader/Legacy/One.asm
bitPanG98/SillyOS
7cda791caaa017d6c5b95ea6215fc76d620a0a78
[ "MIT" ]
null
null
null
; 3===========================================================D ; @File: one.asm ; @Path: /Bootloader/x86_64/Legacy ; @Authors: KeyboardMayCry ; @Descriptions: ; ; @Updates: ; 12 Jan 2018 || KeyboardMayCry || File Created. ; 3===========================================================D %include "two.asm" global IN_REAL_MODE [bits 16] org 0x7c00 section .text IN_REAL_MODE: ;Clear registers xor ax, ax mov bx, ax mov cx, ax mov dx, ax mov cs, ax mov ds, ax mov es, ax mov ss, ax mov si, ax mov sp, ax ; self loading ; activate A20 ; goto protected mode
18.575758
64
0.499184
ec5e577a1cd93d8c601232002199614743edbc01
680
asm
Assembly
oeis/162/A162483.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/162/A162483.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/162/A162483.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A162483: a(n) is the number of perfect matchings of an edge-labeled 2 X (2n+1) Mobius grid graph. ; 3,6,13,31,78,201,523,1366,3573,9351,24478,64081,167763,439206,1149853,3010351,7881198,20633241,54018523,141422326,370248453,969323031,2537720638,6643838881,17393796003,45537549126,119218851373,312119004991,817138163598,2139295485801,5600748293803,14662949395606,38388099893013,100501350283431,263115950957278,688846502588401,1803423556807923,4721424167835366,12360848946698173,32361122672259151,84722519070079278,221806434537978681,580696784543856763,1520283919093591606,3980154972736918053 mov $1,3 mov $2,$0 lpb $2 add $3,$1 add $1,$3 sub $2,1 sub $3,2 lpe mov $0,$1
52.307692
492
0.825
f238352c523b2198bf2a1104e0f6a21af1a3600a
2,453
asm
Assembly
src/firmware/SunriseSunset/LookupTables.asm
pete-restall/Cluck2Sesame-Prototype
99119b6748847a7b6aeadc4bee42cbed726f7fdc
[ "MIT" ]
1
2019-12-12T09:07:08.000Z
2019-12-12T09:07:08.000Z
src/utilities/sunrise-sunset/lookup/lookup.asm
pete-restall/Cluck2Sesame-Prototype
99119b6748847a7b6aeadc4bee42cbed726f7fdc
[ "MIT" ]
null
null
null
src/utilities/sunrise-sunset/lookup/lookup.asm
pete-restall/Cluck2Sesame-Prototype
99119b6748847a7b6aeadc4bee42cbed726f7fdc
[ "MIT" ]
null
null
null
radix decimal SunriseSunset code global sunriseLookupTable global sunsetLookupTable sunriseLookupTable: dw 0x0828, 0x01e4 dw 0x0726, 0x3ee6 dw 0x0724, 0x39e8 dw 0x071f, 0x33e9 dw 0x071c, 0x2aeb dw 0x0719, 0x20ed dw 0x0716, 0x14f0 dw 0x0712, 0x08f2 dw 0x060f, 0x3bf4 dw 0x060c, 0x2df6 dw 0x0609, 0x1ef9 dw 0x0606, 0x0ffc dw 0x0603, 0x00fe dw 0x0500, 0x3100 dw 0x05fd, 0x2202 dw 0x05fb, 0x1205 dw 0x05f8, 0x0307 dw 0x04f5, 0x3409 dw 0x04f2, 0x260b dw 0x04ef, 0x180e dw 0x04eb, 0x0b10 dw 0x03e8, 0x3f11 dw 0x03e5, 0x3314 dw 0x03e2, 0x2916 dw 0x03de, 0x2118 dw 0x03db, 0x1a19 dw 0x03da, 0x141b dw 0x03d8, 0x111c dw 0x03d7, 0x101d dw 0x03d7, 0x111d dw 0x03d7, 0x151c dw 0x03d9, 0x1a1b dw 0x03db, 0x2119 dw 0x03de, 0x2918 dw 0x03e1, 0x3216 dw 0x03e4, 0x3c14 dw 0x04e8, 0x0612 dw 0x04eb, 0x1110 dw 0x04ee, 0x1c0e dw 0x04f1, 0x270c dw 0x04f4, 0x3209 dw 0x04f7, 0x3d07 dw 0x05fa, 0x0805 dw 0x05fd, 0x1303 dw 0x05ff, 0x1f00 dw 0x0502, 0x2afe dw 0x0506, 0x35fc dw 0x0608, 0x01fa dw 0x060b, 0x0df7 dw 0x060e, 0x19f5 dw 0x0612, 0x25f3 dw 0x0614, 0x32f0 dw 0x0618, 0x3eee dw 0x071c, 0x0aec dw 0x071f, 0x16ea dw 0x0722, 0x21e8 dw 0x0725, 0x2be6 dw 0x0727, 0x34e5 dw 0x0729, 0x3be3 dw 0x072a, 0x3fe3 dw 0x0829, 0x01e4 sunsetLookupTable: dw 0x0ed7, 0x271b dw 0x0eda, 0x2f1a dw 0x0edd, 0x3819 dw 0x0fe1, 0x0317 dw 0x0fe4, 0x0f15 dw 0x0fe7, 0x1c12 dw 0x0fea, 0x2910 dw 0x0fee, 0x350e dw 0x10f1, 0x020c dw 0x10f4, 0x0f09 dw 0x10f7, 0x1b07 dw 0x10fb, 0x2705 dw 0x10fe, 0x3303 dw 0x1000, 0x3f00 dw 0x1103, 0x0bfe dw 0x1105, 0x17fb dw 0x1109, 0x22fa dw 0x110c, 0x2ef7 dw 0x110f, 0x39f5 dw 0x1212, 0x05f2 dw 0x1215, 0x10f1 dw 0x1218, 0x1cee dw 0x121c, 0x26ec dw 0x121e, 0x31e9 dw 0x1222, 0x3ae8 dw 0x1325, 0x02e7 dw 0x1327, 0x09e5 dw 0x1328, 0x0fe4 dw 0x132a, 0x12e3 dw 0x132a, 0x13e4 dw 0x1329, 0x12e4 dw 0x1327, 0x0fe5 dw 0x1324, 0x0ae6 dw 0x1321, 0x03e8 dw 0x121e, 0x3aea dw 0x121b, 0x30ec dw 0x1218, 0x25ee dw 0x1215, 0x18f0 dw 0x1212, 0x0bf2 dw 0x110f, 0x3df5 dw 0x110c, 0x2ef8 dw 0x1108, 0x20f9 dw 0x1106, 0x10fc dw 0x1103, 0x01fe dw 0x1000, 0x3200 dw 0x10fe, 0x2202 dw 0x10fb, 0x1304 dw 0x10f8, 0x0407 dw 0x0ff5, 0x3509 dw 0x0ff2, 0x270b dw 0x0fef, 0x190e dw 0x0feb, 0x0d0f dw 0x0fe8, 0x0112 dw 0x0ee5, 0x3614 dw 0x0ee1, 0x2d16 dw 0x0ede, 0x2519 dw 0x0edb, 0x201a dw 0x0ed9, 0x1c1c dw 0x0ed6, 0x1c1c dw 0x0ed6, 0x1d1d dw 0x0ed7, 0x211c end
18.30597
26
0.742764
b17e8d552eeff9e5541e2c118dd3bee991ab6143
513
asm
Assembly
supports/helloworld/hello32.asm
yaps8/these
feaa17a72710e8958cbc23b4c006a4b206445076
[ "MIT" ]
2
2016-03-20T21:24:08.000Z
2022-02-08T15:06:33.000Z
supports/helloworld/hello32.asm
yaps8/these
feaa17a72710e8958cbc23b4c006a4b206445076
[ "MIT" ]
null
null
null
supports/helloworld/hello32.asm
yaps8/these
feaa17a72710e8958cbc23b4c006a4b206445076
[ "MIT" ]
null
null
null
section .data msg db "Hello, world", 0xa ;our dear string len equ $ - msg ;length of our dear string section .text global _start _start: ; write mov eax,4 ;system call number (sys_write) mov ebx,1 ;first argument: file handle (stdout) mov ecx, msg ;second argument: pointer to message to write mov edx, len int 0x80 ;call kernel ;exit mov ebx,0 ;first syscall argument: exit code mov eax,1 ;system call number (sys_exit) int 0x80 ;call kernel
21.375
66
0.649123
944767042f5fcfa37ed974dcd0edc8935e3ddd33
361
asm
Assembly
programs/oeis/330/A330571.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/330/A330571.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/330/A330571.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A330571: Square of number of unordered factorizations of n as n = i*j. ; 1,1,1,4,1,4,1,4,4,4,1,9,1,4,4,9,1,9,1,9,4,4,1,16,4,4,4,9,1,16,1,9,4,4,4,25,1,4,4,16,1,16,1,9,9,4,1,25,4,9,4,9,1,16,4,16,4,4,1,36,1,4,9,16,4,16,1,9,4,16,1,36,1,4,9,9,4,16,1,25,9,4,1,36,4,4,4,16,1,36,4,9,4,4,4,36 seq $0,38548 ; Number of divisors of n that are at most sqrt(n). pow $0,2
60.166667
212
0.609418
913f22abac8a0f63c2bfcbb14911000603638ead
1,142
asm
Assembly
programs/oeis/190/A190330.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/190/A190330.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/190/A190330.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A190330: a(n) = n + [n*r/s] + [n*t/s]; r=1, s=sqrt(2), t=1/s. ; 1,4,6,8,10,13,14,17,19,22,23,26,28,30,32,35,37,39,41,44,45,48,50,52,54,57,59,61,63,66,67,70,72,75,76,79,81,83,85,88,89,92,94,97,98,101,103,105,107,110,112,114,116,119,120,123,125,128,129,132,134,136,138,141,142,145,147,150,151,154,156,158,160,163,165,167,169,172,173,176,178,180,182,185,187,189,191,194,195,198,200,203,204,207,209,211,213,216,218,220,222,225,226,229,231,233,235,238,240,242,244,247,248,251,253,256,257,260,262,264,266,269,270,273,275,278,279,282,284,286,288,291,293,295,297,300,301,304,306,308,310,313,315,317,319,322,323,326,328,331,332,335,337,339,341,344,346,348,350,353,354,357,359,361,363,366,368,370,372,375,376,379,381,384,385,388,390,392,394,397,398,401,403,406,407,410,412,414,416,419,421,423,425,428,429,432,434,437,438,441,443,445,447,450,451,454,456,459,460,463,465,467,469,472,474,476,478,481,482,485,487,489,491,494,496,498,500,503,504,507,509,512,513,516,518,520,522,525,526,529,531,534,535,538,540,542,544,547,549,551 mov $2,$0 cal $0,188299 ; Positions of 1 in A188297; complement of A188298. mov $1,$0 sub $1,2 div $1,2 add $1,1 add $1,$2
103.818182
952
0.707531
ce131a6f2fe1872eb5ec44ab76fdab7c0181d5a6
6,574
asm
Assembly
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xa0.log_21829_386.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xa0.log_21829_386.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xa0.log_21829_386.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r15 push %r8 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_A_ht+0x401b, %r11 add %r8, %r8 movw $0x6162, (%r11) and %rax, %rax lea addresses_WT_ht+0x181db, %rbp nop inc %rax mov $0x6162636465666768, %r13 movq %r13, %xmm4 vmovups %ymm4, (%rbp) nop nop nop nop nop add $61629, %rbp lea addresses_normal_ht+0x54db, %r8 add %r15, %r15 movups (%r8), %xmm1 vpextrq $1, %xmm1, %rbp nop nop nop cmp $18343, %r13 lea addresses_WT_ht+0x124d3, %rax nop nop inc %r8 movw $0x6162, (%rax) nop sub $18828, %r13 lea addresses_A_ht+0xbe2f, %rsi lea addresses_UC_ht+0xd8db, %rdi nop nop nop nop nop xor %rbp, %rbp mov $32, %rcx rep movsl nop nop nop nop and %r15, %r15 pop %rsi pop %rdi pop %rcx pop %rbp pop %rax pop %r8 pop %r15 pop %r13 pop %r11 ret .global s_faulty_load s_faulty_load: push %r10 push %r11 push %r13 push %r14 push %rbp push %rbx push %rdx // Store lea addresses_UC+0x1c19b, %r11 nop nop nop nop nop cmp $18615, %rbx mov $0x5152535455565758, %r13 movq %r13, (%r11) nop nop xor $38075, %r13 // Load lea addresses_WC+0x1881b, %rbp nop nop nop nop sub %rdx, %rdx mov (%rbp), %r10w nop nop cmp %r14, %r14 // Store lea addresses_WC+0x126db, %r10 add %r14, %r14 mov $0x5152535455565758, %rdx movq %rdx, (%r10) and $49249, %rbp // Store lea addresses_normal+0x17cdb, %rbx nop nop dec %r14 movw $0x5152, (%rbx) nop nop nop nop and %rbp, %rbp // Load lea addresses_WC+0x1f0db, %rbx nop add $9460, %rdx mov (%rbx), %r10w nop nop xor %rdx, %rdx // Store lea addresses_US+0x14bdb, %r10 nop and $33866, %rbx movw $0x5152, (%r10) nop nop nop cmp %r13, %r13 // Faulty Load lea addresses_US+0x4db, %r13 add $43088, %rbx mov (%r13), %rbp lea oracles, %rdx and $0xff, %rbp shlq $12, %rbp mov (%rdx,%rbp,1), %rbp pop %rdx pop %rbx pop %rbp pop %r14 pop %r13 pop %r11 pop %r10 ret /* <gen_faulty_load> [REF] {'src': {'NT': False, 'same': False, 'congruent': 0, 'type': 'addresses_US', 'AVXalign': False, 'size': 4}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 6, 'type': 'addresses_UC', 'AVXalign': True, 'size': 8}} {'src': {'NT': True, 'same': False, 'congruent': 6, 'type': 'addresses_WC', 'AVXalign': False, 'size': 2}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 3, 'type': 'addresses_WC', 'AVXalign': False, 'size': 8}} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 11, 'type': 'addresses_normal', 'AVXalign': False, 'size': 2}} {'src': {'NT': False, 'same': False, 'congruent': 9, 'type': 'addresses_WC', 'AVXalign': True, 'size': 2}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 8, 'type': 'addresses_US', 'AVXalign': True, 'size': 2}} [Faulty Load] {'src': {'NT': False, 'same': True, 'congruent': 0, 'type': 'addresses_US', 'AVXalign': False, 'size': 8}, 'OP': 'LOAD'} <gen_prepare_buffer> {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 6, 'type': 'addresses_A_ht', 'AVXalign': False, 'size': 2}} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 7, 'type': 'addresses_WT_ht', 'AVXalign': False, 'size': 32}} {'src': {'NT': False, 'same': False, 'congruent': 10, 'type': 'addresses_normal_ht', 'AVXalign': False, 'size': 16}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 2, 'type': 'addresses_WT_ht', 'AVXalign': False, 'size': 2}} {'src': {'same': False, 'congruent': 2, 'type': 'addresses_A_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 10, 'type': 'addresses_UC_ht'}} {'00': 21829} 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 */
36.320442
2,999
0.652571
19170b0974beedfd395559bab236573241674e66
1,766
asm
Assembly
libsrc/graphics/osca/clga2.asm
andydansby/z88dk-mk2
51c15f1387293809c496f5eaf7b196f8a0e9b66b
[ "ClArtistic" ]
1
2020-09-15T08:35:49.000Z
2020-09-15T08:35:49.000Z
libsrc/graphics/osca/clga2.asm
andydansby/z88dk-MK2
51c15f1387293809c496f5eaf7b196f8a0e9b66b
[ "ClArtistic" ]
null
null
null
libsrc/graphics/osca/clga2.asm
andydansby/z88dk-MK2
51c15f1387293809c496f5eaf7b196f8a0e9b66b
[ "ClArtistic" ]
null
null
null
; ; Z88 Graphics Functions - Small C+ stubs ; ; Written around the Interlogic Standard Library ; ; Stubs Written by D Morris - 30/9/98 ; ; ; $Id: clga2.asm,v 1.1 2011/09/02 12:43:57 stefano Exp $ ; ;Usage: clga(struct *pixels) INCLUDE "graphics/grafix.inc" XLIB clga LIB w_pixeladdress LIB swapgfxbk XREF swapgfxbk1 .clga ld ix,0 add ix,sp ld h,(ix+9); x ld a,1 ; 512... range checking needs to be fixed to 320 cp h ret c ld e,(ix+6); y ld a,maxy cp e ret c call swapgfxbk ld a,(ix+2); height ld c,(ix+4); width ld b,(ix+5); width ld d,0; ld l,(ix+8); x ld ixl,a ; ix forgotten ld d,0 push bc call w_pixeladdress ld b,a ld a,1 jr z,next .loop rlca djnz loop .next cpl ld l,a pop bc .outer_loop push bc ; 1 push de ; 2 ld a,l ld h,l cp 127 jr z,fill1 .inner_loop0 ld a,(de) and h ld (de),a dec bc rrc h jr nc,fill ld a,b or c jr nz,inner_loop0 .fill call INC_X jr c,wypad .fill1 push bc srl b ; >> 3 rr c srl c srl c ld a,c or c ld b,c jr z,last .inner_loop1 xor a ld (de),a call INC_X jr c,wypad djnz inner_loop1 .last pop bc ; 3 ld a,c and 7 jr z,wypad ld b,a .inner_loop2 ld a,(de) and h ld (de),a rrc h jr nc,wypad djnz inner_loop2 .wypad pop de ; 2 pop bc ; 1 dec ixl ret z call incy ret c jr outer_loop ; (hl) mask ; de - screen address .INC_X bit 5,d jr nz,first set 5,d or a ret .first res 5,d inc e ld a,e and $1f ret nz scf ret .incy inc d ld a,d and $07 ret nz ld a,d sub $08 ld d,a ld a,e add a,$20 ld e,a ret nc ld a,d add a,$08 ld d,a and 95 cp $58 ccf ret
11.320513
57
0.566251
f1a32d01a921a11a21c81686f8c9be2e27b4d03d
58,745
asm
Assembly
boot/boot.asm
NudelErde/Kernel
875a0635b5bbd910680970a9446cb86b96b62323
[ "MIT" ]
null
null
null
boot/boot.asm
NudelErde/Kernel
875a0635b5bbd910680970a9446cb86b96b62323
[ "MIT" ]
null
null
null
boot/boot.asm
NudelErde/Kernel
875a0635b5bbd910680970a9446cb86b96b62323
[ "MIT" ]
1
2021-04-28T10:13:53.000Z
2021-04-28T10:13:53.000Z
../boot/boot.elf: file format elf64-x86-64 Disassembly of section .text: 0000000060000000 <exit(unsigned long)>: 60000000: 55 push %rbp 60000001: 48 89 e5 mov %rsp,%rbp 60000004: 48 83 ec 10 sub $0x10,%rsp 60000008: 48 89 7d f8 mov %rdi,-0x8(%rbp) 6000000c: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000010: b9 00 00 00 00 mov $0x0,%ecx 60000015: 48 89 c2 mov %rax,%rdx 60000018: be 01 00 00 00 mov $0x1,%esi 6000001d: bf 01 00 00 00 mov $0x1,%edi 60000022: e8 98 0c 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 60000027: 90 nop 60000028: c9 leaveq 60000029: c3 retq 000000006000002a <getpid()>: 6000002a: 55 push %rbp 6000002b: 48 89 e5 mov %rsp,%rbp 6000002e: 48 83 ec 10 sub $0x10,%rsp 60000032: 48 8d 45 f8 lea -0x8(%rbp),%rax 60000036: b9 00 00 00 00 mov $0x0,%ecx 6000003b: 48 89 c2 mov %rax,%rdx 6000003e: be 02 00 00 00 mov $0x2,%esi 60000043: bf 01 00 00 00 mov $0x1,%edi 60000048: e8 72 0c 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 6000004d: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000051: c9 leaveq 60000052: c3 retq 0000000060000053 <createProcess(unsigned long, char const*, char const*, bool)>: 60000053: 55 push %rbp 60000054: 48 89 e5 mov %rsp,%rbp 60000057: 48 83 ec 50 sub $0x50,%rsp 6000005b: 48 89 7d c8 mov %rdi,-0x38(%rbp) 6000005f: 48 89 75 c0 mov %rsi,-0x40(%rbp) 60000063: 48 89 55 b8 mov %rdx,-0x48(%rbp) 60000067: 89 c8 mov %ecx,%eax 60000069: 88 45 b4 mov %al,-0x4c(%rbp) 6000006c: 48 8b 45 c8 mov -0x38(%rbp),%rax 60000070: 48 89 45 d8 mov %rax,-0x28(%rbp) 60000074: 48 8b 45 c0 mov -0x40(%rbp),%rax 60000078: 48 89 45 e0 mov %rax,-0x20(%rbp) 6000007c: 48 8b 45 b8 mov -0x48(%rbp),%rax 60000080: 48 89 45 e8 mov %rax,-0x18(%rbp) 60000084: 0f b6 45 b4 movzbl -0x4c(%rbp),%eax 60000088: 88 45 f8 mov %al,-0x8(%rbp) 6000008b: 48 8d 45 d8 lea -0x28(%rbp),%rax 6000008f: b9 00 00 00 00 mov $0x0,%ecx 60000094: 48 89 c2 mov %rax,%rdx 60000097: be 03 00 00 00 mov $0x3,%esi 6000009c: bf 01 00 00 00 mov $0x1,%edi 600000a1: e8 19 0c 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 600000a6: 48 8b 45 f0 mov -0x10(%rbp),%rax 600000aa: c9 leaveq 600000ab: c3 retq 00000000600000ac <sleep(unsigned long)>: 600000ac: 55 push %rbp 600000ad: 48 89 e5 mov %rsp,%rbp 600000b0: 48 83 ec 10 sub $0x10,%rsp 600000b4: 48 89 7d f8 mov %rdi,-0x8(%rbp) 600000b8: 48 8b 45 f8 mov -0x8(%rbp),%rax 600000bc: b9 00 00 00 00 mov $0x0,%ecx 600000c1: 48 89 c2 mov %rax,%rdx 600000c4: be 04 00 00 00 mov $0x4,%esi 600000c9: bf 01 00 00 00 mov $0x1,%edi 600000ce: e8 ec 0b 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 600000d3: 90 nop 600000d4: c9 leaveq 600000d5: c3 retq 00000000600000d6 <malloc(unsigned long)>: 600000d6: 55 push %rbp 600000d7: 48 89 e5 mov %rsp,%rbp 600000da: 48 83 ec 20 sub $0x20,%rsp 600000de: 48 89 7d e8 mov %rdi,-0x18(%rbp) 600000e2: 48 8d 55 f8 lea -0x8(%rbp),%rdx 600000e6: 48 8b 45 e8 mov -0x18(%rbp),%rax 600000ea: 48 89 d1 mov %rdx,%rcx 600000ed: 48 89 c2 mov %rax,%rdx 600000f0: be 05 00 00 00 mov $0x5,%esi 600000f5: bf 01 00 00 00 mov $0x1,%edi 600000fa: e8 c0 0b 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 600000ff: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000103: c9 leaveq 60000104: c3 retq 0000000060000105 <free(void*)>: 60000105: 55 push %rbp 60000106: 48 89 e5 mov %rsp,%rbp 60000109: 48 83 ec 10 sub $0x10,%rsp 6000010d: 48 89 7d f8 mov %rdi,-0x8(%rbp) 60000111: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000115: b9 00 00 00 00 mov $0x0,%ecx 6000011a: 48 89 c2 mov %rax,%rdx 6000011d: be 06 00 00 00 mov $0x6,%esi 60000122: bf 01 00 00 00 mov $0x1,%edi 60000127: e8 93 0b 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 6000012c: 90 nop 6000012d: c9 leaveq 6000012e: c3 retq 000000006000012f <createSharedPage()>: 6000012f: 55 push %rbp 60000130: 48 89 e5 mov %rsp,%rbp 60000133: 48 83 ec 10 sub $0x10,%rsp 60000137: 48 8d 45 f8 lea -0x8(%rbp),%rax 6000013b: b9 00 00 00 00 mov $0x0,%ecx 60000140: 48 89 c2 mov %rax,%rdx 60000143: be 07 00 00 00 mov $0x7,%esi 60000148: bf 01 00 00 00 mov $0x1,%edi 6000014d: e8 6d 0b 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 60000152: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000156: c9 leaveq 60000157: c3 retq 0000000060000158 <inviteProcessToSharedPage(unsigned long, unsigned long)>: 60000158: 55 push %rbp 60000159: 48 89 e5 mov %rsp,%rbp 6000015c: 48 83 ec 10 sub $0x10,%rsp 60000160: 48 89 7d f8 mov %rdi,-0x8(%rbp) 60000164: 48 89 75 f0 mov %rsi,-0x10(%rbp) 60000168: 48 8b 55 f0 mov -0x10(%rbp),%rdx 6000016c: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000170: 48 89 d1 mov %rdx,%rcx 60000173: 48 89 c2 mov %rax,%rdx 60000176: be 08 00 00 00 mov $0x8,%esi 6000017b: bf 01 00 00 00 mov $0x1,%edi 60000180: e8 3a 0b 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 60000185: 90 nop 60000186: c9 leaveq 60000187: c3 retq 0000000060000188 <getPointerToSharedPage(unsigned long)>: 60000188: 55 push %rbp 60000189: 48 89 e5 mov %rsp,%rbp 6000018c: 48 83 ec 20 sub $0x20,%rsp 60000190: 48 89 7d e8 mov %rdi,-0x18(%rbp) 60000194: 48 8d 55 f8 lea -0x8(%rbp),%rdx 60000198: 48 8b 45 e8 mov -0x18(%rbp),%rax 6000019c: 48 89 d1 mov %rdx,%rcx 6000019f: 48 89 c2 mov %rax,%rdx 600001a2: be 09 00 00 00 mov $0x9,%esi 600001a7: bf 01 00 00 00 mov $0x1,%edi 600001ac: e8 0e 0b 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 600001b1: 48 8b 45 f8 mov -0x8(%rbp),%rax 600001b5: c9 leaveq 600001b6: c3 retq 00000000600001b7 <freeSharedMemoryPage(unsigned long)>: 600001b7: 55 push %rbp 600001b8: 48 89 e5 mov %rsp,%rbp 600001bb: 48 83 ec 10 sub $0x10,%rsp 600001bf: 48 89 7d f8 mov %rdi,-0x8(%rbp) 600001c3: 48 8b 45 f8 mov -0x8(%rbp),%rax 600001c7: b9 00 00 00 00 mov $0x0,%ecx 600001cc: 48 89 c2 mov %rax,%rdx 600001cf: be 0a 00 00 00 mov $0xa,%esi 600001d4: bf 01 00 00 00 mov $0x1,%edi 600001d9: e8 e1 0a 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 600001de: 90 nop 600001df: c9 leaveq 600001e0: c3 retq 00000000600001e1 <waitForProcess(unsigned long)>: 600001e1: 55 push %rbp 600001e2: 48 89 e5 mov %rsp,%rbp 600001e5: 48 83 ec 20 sub $0x20,%rsp 600001e9: 48 89 7d e8 mov %rdi,-0x18(%rbp) 600001ed: 48 8d 55 f8 lea -0x8(%rbp),%rdx 600001f1: 48 8b 45 e8 mov -0x18(%rbp),%rax 600001f5: 48 89 d1 mov %rdx,%rcx 600001f8: 48 89 c2 mov %rax,%rdx 600001fb: be 0b 00 00 00 mov $0xb,%esi 60000200: bf 01 00 00 00 mov $0x1,%edi 60000205: e8 b5 0a 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 6000020a: 48 8b 45 f8 mov -0x8(%rbp),%rax 6000020e: c9 leaveq 6000020f: c3 retq 0000000060000210 <getArguments()>: 60000210: 55 push %rbp 60000211: 48 89 e5 mov %rsp,%rbp 60000214: 48 83 ec 10 sub $0x10,%rsp 60000218: 48 8d 45 f8 lea -0x8(%rbp),%rax 6000021c: b9 00 00 00 00 mov $0x0,%ecx 60000221: 48 89 c2 mov %rax,%rdx 60000224: be 0c 00 00 00 mov $0xc,%esi 60000229: bf 01 00 00 00 mov $0x1,%edi 6000022e: e8 8c 0a 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 60000233: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000237: c9 leaveq 60000238: c3 retq 0000000060000239 <getParentPid()>: 60000239: 55 push %rbp 6000023a: 48 89 e5 mov %rsp,%rbp 6000023d: 48 83 ec 10 sub $0x10,%rsp 60000241: 48 8d 45 f8 lea -0x8(%rbp),%rax 60000245: b9 00 00 00 00 mov $0x0,%ecx 6000024a: 48 89 c2 mov %rax,%rdx 6000024d: be 0d 00 00 00 mov $0xd,%esi 60000252: bf 01 00 00 00 mov $0x1,%edi 60000257: e8 63 0a 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 6000025c: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000260: c9 leaveq 60000261: c3 retq 0000000060000262 <getInterProcessMethodInfo(unsigned long, unsigned char)>: 60000262: 55 push %rbp 60000263: 48 89 e5 mov %rsp,%rbp 60000266: 48 83 ec 30 sub $0x30,%rsp 6000026a: 48 89 7d d8 mov %rdi,-0x28(%rbp) 6000026e: 89 f0 mov %esi,%eax 60000270: 88 45 d4 mov %al,-0x2c(%rbp) 60000273: 48 8b 45 d8 mov -0x28(%rbp),%rax 60000277: 48 89 45 f0 mov %rax,-0x10(%rbp) 6000027b: 0f b6 45 d4 movzbl -0x2c(%rbp),%eax 6000027f: 88 45 f8 mov %al,-0x8(%rbp) 60000282: 48 8d 45 f0 lea -0x10(%rbp),%rax 60000286: b9 00 00 00 00 mov $0x0,%ecx 6000028b: 48 89 c2 mov %rax,%rdx 6000028e: be 10 00 00 00 mov $0x10,%esi 60000293: bf 01 00 00 00 mov $0x1,%edi 60000298: e8 22 0a 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 6000029d: 0f b6 45 f9 movzbl -0x7(%rbp),%eax 600002a1: 88 45 ee mov %al,-0x12(%rbp) 600002a4: 0f b6 45 fa movzbl -0x6(%rbp),%eax 600002a8: 88 45 ef mov %al,-0x11(%rbp) 600002ab: 0f b7 45 ee movzwl -0x12(%rbp),%eax 600002af: c9 leaveq 600002b0: c3 retq 00000000600002b1 <callInterProcessMethod(unsigned long, unsigned char, unsigned long*)>: 600002b1: 55 push %rbp 600002b2: 48 89 e5 mov %rsp,%rbp 600002b5: 48 83 ec 40 sub $0x40,%rsp 600002b9: 48 89 7d d8 mov %rdi,-0x28(%rbp) 600002bd: 89 f0 mov %esi,%eax 600002bf: 48 89 55 c8 mov %rdx,-0x38(%rbp) 600002c3: 88 45 d4 mov %al,-0x2c(%rbp) 600002c6: 48 8b 45 d8 mov -0x28(%rbp),%rax 600002ca: 48 89 45 e0 mov %rax,-0x20(%rbp) 600002ce: 0f b6 45 d4 movzbl -0x2c(%rbp),%eax 600002d2: 88 45 f0 mov %al,-0x10(%rbp) 600002d5: 48 8b 45 c8 mov -0x38(%rbp),%rax 600002d9: 48 89 45 e8 mov %rax,-0x18(%rbp) 600002dd: 48 8d 45 e0 lea -0x20(%rbp),%rax 600002e1: b9 00 00 00 00 mov $0x0,%ecx 600002e6: 48 89 c2 mov %rax,%rdx 600002e9: be 11 00 00 00 mov $0x11,%esi 600002ee: bf 01 00 00 00 mov $0x1,%edi 600002f3: e8 c7 09 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 600002f8: 48 8b 45 f8 mov -0x8(%rbp),%rax 600002fc: c9 leaveq 600002fd: c3 retq 00000000600002fe <registerInterProcessMethod(unsigned char, unsigned char, unsigned long, bool)>: 600002fe: 55 push %rbp 600002ff: 48 89 e5 mov %rsp,%rbp 60000302: 48 83 ec 40 sub $0x40,%rsp 60000306: 89 f8 mov %edi,%eax 60000308: 48 89 55 d0 mov %rdx,-0x30(%rbp) 6000030c: 89 ca mov %ecx,%edx 6000030e: 88 45 dc mov %al,-0x24(%rbp) 60000311: 89 f0 mov %esi,%eax 60000313: 88 45 d8 mov %al,-0x28(%rbp) 60000316: 89 d0 mov %edx,%eax 60000318: 88 45 cc mov %al,-0x34(%rbp) 6000031b: 0f b6 45 dc movzbl -0x24(%rbp),%eax 6000031f: 88 45 e8 mov %al,-0x18(%rbp) 60000322: 0f b6 45 d8 movzbl -0x28(%rbp),%eax 60000326: 88 45 e9 mov %al,-0x17(%rbp) 60000329: 48 8b 45 d0 mov -0x30(%rbp),%rax 6000032d: 48 89 45 f0 mov %rax,-0x10(%rbp) 60000331: 0f b6 45 cc movzbl -0x34(%rbp),%eax 60000335: 88 45 f8 mov %al,-0x8(%rbp) 60000338: 48 8d 45 e8 lea -0x18(%rbp),%rax 6000033c: b9 00 00 00 00 mov $0x0,%ecx 60000341: 48 89 c2 mov %rax,%rdx 60000344: be 12 00 00 00 mov $0x12,%esi 60000349: bf 01 00 00 00 mov $0x1,%edi 6000034e: e8 6c 09 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 60000353: 90 nop 60000354: c9 leaveq 60000355: c3 retq 0000000060000356 <removeInterProcessMethod(unsigned char)>: 60000356: 55 push %rbp 60000357: 48 89 e5 mov %rsp,%rbp 6000035a: 48 83 ec 10 sub $0x10,%rsp 6000035e: 89 f8 mov %edi,%eax 60000360: 88 45 fc mov %al,-0x4(%rbp) 60000363: 0f b6 45 fc movzbl -0x4(%rbp),%eax 60000367: b9 00 00 00 00 mov $0x0,%ecx 6000036c: 48 89 c2 mov %rax,%rdx 6000036f: be 13 00 00 00 mov $0x13,%esi 60000374: bf 01 00 00 00 mov $0x1,%edi 60000379: e8 41 09 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 6000037e: 90 nop 6000037f: c9 leaveq 60000380: c3 retq 0000000060000381 <getDeviceCount()>: 60000381: 55 push %rbp 60000382: 48 89 e5 mov %rsp,%rbp 60000385: 48 83 ec 10 sub $0x10,%rsp 60000389: 48 8d 45 f8 lea -0x8(%rbp),%rax 6000038d: b9 00 00 00 00 mov $0x0,%ecx 60000392: 48 89 c2 mov %rax,%rdx 60000395: be 01 00 00 00 mov $0x1,%esi 6000039a: bf 02 00 00 00 mov $0x2,%edi 6000039f: e8 1b 09 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 600003a4: 48 8b 45 f8 mov -0x8(%rbp),%rax 600003a8: c9 leaveq 600003a9: c3 retq 00000000600003aa <getSystemDevice()>: 600003aa: 55 push %rbp 600003ab: 48 89 e5 mov %rsp,%rbp 600003ae: 48 83 ec 10 sub $0x10,%rsp 600003b2: 48 8d 45 f8 lea -0x8(%rbp),%rax 600003b6: b9 00 00 00 00 mov $0x0,%ecx 600003bb: 48 89 c2 mov %rax,%rdx 600003be: be 02 00 00 00 mov $0x2,%esi 600003c3: bf 02 00 00 00 mov $0x2,%edi 600003c8: e8 f2 08 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 600003cd: 48 8b 45 f8 mov -0x8(%rbp),%rax 600003d1: c9 leaveq 600003d2: c3 retq 00000000600003d3 <write(unsigned char)>: 600003d3: 55 push %rbp 600003d4: 48 89 e5 mov %rsp,%rbp 600003d7: 48 83 ec 10 sub $0x10,%rsp 600003db: 89 f8 mov %edi,%eax 600003dd: 88 45 fc mov %al,-0x4(%rbp) 600003e0: 0f b6 45 fc movzbl -0x4(%rbp),%eax 600003e4: b9 00 00 00 00 mov $0x0,%ecx 600003e9: 48 89 c2 mov %rax,%rdx 600003ec: be 01 00 00 00 mov $0x1,%esi 600003f1: bf 03 00 00 00 mov $0x3,%edi 600003f6: e8 c4 08 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 600003fb: 90 nop 600003fc: c9 leaveq 600003fd: c3 retq 00000000600003fe <read()>: 600003fe: 55 push %rbp 600003ff: 48 89 e5 mov %rsp,%rbp 60000402: 48 83 ec 10 sub $0x10,%rsp 60000406: 48 8d 45 ff lea -0x1(%rbp),%rax 6000040a: b9 00 00 00 00 mov $0x0,%ecx 6000040f: 48 89 c2 mov %rax,%rdx 60000412: be 02 00 00 00 mov $0x2,%esi 60000417: bf 03 00 00 00 mov $0x3,%edi 6000041c: e8 9e 08 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 60000421: 0f b6 45 ff movzbl -0x1(%rbp),%eax 60000425: c9 leaveq 60000426: c3 retq 0000000060000427 <getINodeOfPath(unsigned long, char const*)>: 60000427: 55 push %rbp 60000428: 48 89 e5 mov %rsp,%rbp 6000042b: 48 83 ec 20 sub $0x20,%rsp 6000042f: 48 89 7d e8 mov %rdi,-0x18(%rbp) 60000433: 48 89 75 e0 mov %rsi,-0x20(%rbp) 60000437: 48 8b 45 e0 mov -0x20(%rbp),%rax 6000043b: 48 89 45 f0 mov %rax,-0x10(%rbp) 6000043f: 48 8d 55 f0 lea -0x10(%rbp),%rdx 60000443: 48 8b 45 e8 mov -0x18(%rbp),%rax 60000447: 48 89 d1 mov %rdx,%rcx 6000044a: 48 89 c2 mov %rax,%rdx 6000044d: be 01 00 00 00 mov $0x1,%esi 60000452: bf 04 00 00 00 mov $0x4,%edi 60000457: e8 63 08 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 6000045c: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000460: c9 leaveq 60000461: c3 retq 0000000060000462 <getSectorOfINode(unsigned long, unsigned long, unsigned long, unsigned char*)>: 60000462: 55 push %rbp 60000463: 48 89 e5 mov %rsp,%rbp 60000466: 48 83 ec 40 sub $0x40,%rsp 6000046a: 48 89 7d d8 mov %rdi,-0x28(%rbp) 6000046e: 48 89 75 d0 mov %rsi,-0x30(%rbp) 60000472: 48 89 55 c8 mov %rdx,-0x38(%rbp) 60000476: 48 89 4d c0 mov %rcx,-0x40(%rbp) 6000047a: 48 8b 45 d0 mov -0x30(%rbp),%rax 6000047e: 48 89 45 e0 mov %rax,-0x20(%rbp) 60000482: 48 8b 45 c8 mov -0x38(%rbp),%rax 60000486: 48 89 45 e8 mov %rax,-0x18(%rbp) 6000048a: 48 8b 45 c0 mov -0x40(%rbp),%rax 6000048e: 48 89 45 f0 mov %rax,-0x10(%rbp) 60000492: 48 8d 55 e0 lea -0x20(%rbp),%rdx 60000496: 48 8b 45 d8 mov -0x28(%rbp),%rax 6000049a: 48 89 d1 mov %rdx,%rcx 6000049d: 48 89 c2 mov %rax,%rdx 600004a0: be 02 00 00 00 mov $0x2,%esi 600004a5: bf 04 00 00 00 mov $0x4,%edi 600004aa: e8 10 08 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 600004af: 0f b6 45 f8 movzbl -0x8(%rbp),%eax 600004b3: c9 leaveq 600004b4: c3 retq 00000000600004b5 <getFlagsOfINode(unsigned long, unsigned long)>: 600004b5: 55 push %rbp 600004b6: 48 89 e5 mov %rsp,%rbp 600004b9: 48 83 ec 20 sub $0x20,%rsp 600004bd: 48 89 7d e8 mov %rdi,-0x18(%rbp) 600004c1: 48 89 75 e0 mov %rsi,-0x20(%rbp) 600004c5: 48 8b 45 e0 mov -0x20(%rbp),%rax 600004c9: 48 89 45 f0 mov %rax,-0x10(%rbp) 600004cd: 48 8d 55 f0 lea -0x10(%rbp),%rdx 600004d1: 48 8b 45 e8 mov -0x18(%rbp),%rax 600004d5: 48 89 d1 mov %rdx,%rcx 600004d8: 48 89 c2 mov %rax,%rdx 600004db: be 03 00 00 00 mov $0x3,%esi 600004e0: bf 04 00 00 00 mov $0x4,%edi 600004e5: e8 d5 07 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 600004ea: 48 8b 45 f8 mov -0x8(%rbp),%rax 600004ee: c9 leaveq 600004ef: c3 retq 00000000600004f0 <getDirectoryEntriesOfINode(unsigned long, unsigned long, unsigned long, DirectoryEntry*)>: 600004f0: 55 push %rbp 600004f1: 48 89 e5 mov %rsp,%rbp 600004f4: 48 83 ec 40 sub $0x40,%rsp 600004f8: 48 89 7d d8 mov %rdi,-0x28(%rbp) 600004fc: 48 89 75 d0 mov %rsi,-0x30(%rbp) 60000500: 48 89 55 c8 mov %rdx,-0x38(%rbp) 60000504: 48 89 4d c0 mov %rcx,-0x40(%rbp) 60000508: 48 8b 45 d0 mov -0x30(%rbp),%rax 6000050c: 48 89 45 e0 mov %rax,-0x20(%rbp) 60000510: 48 8b 45 c8 mov -0x38(%rbp),%rax 60000514: 48 89 45 e8 mov %rax,-0x18(%rbp) 60000518: 48 8b 45 c0 mov -0x40(%rbp),%rax 6000051c: 48 89 45 f0 mov %rax,-0x10(%rbp) 60000520: 48 8d 55 e0 lea -0x20(%rbp),%rdx 60000524: 48 8b 45 d8 mov -0x28(%rbp),%rax 60000528: 48 89 d1 mov %rdx,%rcx 6000052b: 48 89 c2 mov %rax,%rdx 6000052e: be 04 00 00 00 mov $0x4,%esi 60000533: bf 04 00 00 00 mov $0x4,%edi 60000538: e8 82 07 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 6000053d: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000541: c9 leaveq 60000542: c3 retq 0000000060000543 <getFileSize(unsigned long, unsigned long)>: 60000543: 55 push %rbp 60000544: 48 89 e5 mov %rsp,%rbp 60000547: 48 83 ec 20 sub $0x20,%rsp 6000054b: 48 89 7d e8 mov %rdi,-0x18(%rbp) 6000054f: 48 89 75 e0 mov %rsi,-0x20(%rbp) 60000553: 48 8b 45 e0 mov -0x20(%rbp),%rax 60000557: 48 89 45 f0 mov %rax,-0x10(%rbp) 6000055b: 48 c7 45 f8 00 00 00 movq $0x0,-0x8(%rbp) 60000562: 00 60000563: 48 8d 55 f0 lea -0x10(%rbp),%rdx 60000567: 48 8b 45 e8 mov -0x18(%rbp),%rax 6000056b: 48 89 d1 mov %rdx,%rcx 6000056e: 48 89 c2 mov %rax,%rdx 60000571: be 05 00 00 00 mov $0x5,%esi 60000576: bf 04 00 00 00 mov $0x4,%edi 6000057b: e8 3f 07 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 60000580: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000584: c9 leaveq 60000585: c3 retq 0000000060000586 <getPciDeviceCount()>: 60000586: 55 push %rbp 60000587: 48 89 e5 mov %rsp,%rbp 6000058a: 48 83 ec 10 sub $0x10,%rsp 6000058e: 48 c7 45 f8 00 00 00 movq $0x0,-0x8(%rbp) 60000595: 00 60000596: 48 8d 45 f8 lea -0x8(%rbp),%rax 6000059a: 48 89 c1 mov %rax,%rcx 6000059d: ba 00 00 00 00 mov $0x0,%edx 600005a2: be 02 00 00 00 mov $0x2,%esi 600005a7: bf 05 00 00 00 mov $0x5,%edi 600005ac: e8 0e 07 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 600005b1: 48 8b 45 f8 mov -0x8(%rbp),%rax 600005b5: c9 leaveq 600005b6: c3 retq 00000000600005b7 <getPciDeviceList(unsigned long*, unsigned long)>: 600005b7: 55 push %rbp 600005b8: 48 89 e5 mov %rsp,%rbp 600005bb: 48 83 ec 10 sub $0x10,%rsp 600005bf: 48 89 7d f8 mov %rdi,-0x8(%rbp) 600005c3: 48 89 75 f0 mov %rsi,-0x10(%rbp) 600005c7: 48 8b 55 f8 mov -0x8(%rbp),%rdx 600005cb: 48 8b 45 f0 mov -0x10(%rbp),%rax 600005cf: 48 89 d1 mov %rdx,%rcx 600005d2: 48 89 c2 mov %rax,%rdx 600005d5: be 02 00 00 00 mov $0x2,%esi 600005da: bf 05 00 00 00 mov $0x5,%edi 600005df: e8 db 06 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 600005e4: 90 nop 600005e5: c9 leaveq 600005e6: c3 retq 00000000600005e7 <getPciDeviceHeader(unsigned long, unsigned char*)>: 600005e7: 55 push %rbp 600005e8: 48 89 e5 mov %rsp,%rbp 600005eb: 48 83 ec 10 sub $0x10,%rsp 600005ef: 48 89 7d f8 mov %rdi,-0x8(%rbp) 600005f3: 48 89 75 f0 mov %rsi,-0x10(%rbp) 600005f7: 48 8b 55 f0 mov -0x10(%rbp),%rdx 600005fb: 48 8b 45 f8 mov -0x8(%rbp),%rax 600005ff: 48 89 d1 mov %rdx,%rcx 60000602: 48 89 c2 mov %rax,%rdx 60000605: be 03 00 00 00 mov $0x3,%esi 6000060a: bf 05 00 00 00 mov $0x5,%edi 6000060f: e8 ab 06 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 60000614: 90 nop 60000615: c9 leaveq 60000616: c3 retq 0000000060000617 <allocateMemoryPage(unsigned long)>: 60000617: 55 push %rbp 60000618: 48 89 e5 mov %rsp,%rbp 6000061b: 48 83 ec 10 sub $0x10,%rsp 6000061f: 48 89 7d f8 mov %rdi,-0x8(%rbp) 60000623: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000627: b9 00 00 00 00 mov $0x0,%ecx 6000062c: 48 89 c2 mov %rax,%rdx 6000062f: be 04 00 00 00 mov $0x4,%esi 60000634: bf 05 00 00 00 mov $0x5,%edi 60000639: e8 81 06 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 6000063e: 90 nop 6000063f: c9 leaveq 60000640: c3 retq 0000000060000641 <freeMemoryPage(unsigned long)>: 60000641: 55 push %rbp 60000642: 48 89 e5 mov %rsp,%rbp 60000645: 48 83 ec 10 sub $0x10,%rsp 60000649: 48 89 7d f8 mov %rdi,-0x8(%rbp) 6000064d: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000651: b9 00 00 00 00 mov $0x0,%ecx 60000656: 48 89 c2 mov %rax,%rdx 60000659: be 05 00 00 00 mov $0x5,%esi 6000065e: bf 05 00 00 00 mov $0x5,%edi 60000663: e8 57 06 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 60000668: 90 nop 60000669: c9 leaveq 6000066a: c3 retq 000000006000066b <virtualToPhysicalAddress(unsigned long)>: 6000066b: 55 push %rbp 6000066c: 48 89 e5 mov %rsp,%rbp 6000066f: 48 83 ec 20 sub $0x20,%rsp 60000673: 48 89 7d e8 mov %rdi,-0x18(%rbp) 60000677: 48 c7 45 f8 00 00 00 movq $0x0,-0x8(%rbp) 6000067e: 00 6000067f: 48 8d 55 f8 lea -0x8(%rbp),%rdx 60000683: 48 8b 45 e8 mov -0x18(%rbp),%rax 60000687: 48 89 d1 mov %rdx,%rcx 6000068a: 48 89 c2 mov %rax,%rdx 6000068d: be 06 00 00 00 mov $0x6,%esi 60000692: bf 05 00 00 00 mov $0x5,%edi 60000697: e8 23 06 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 6000069c: 48 8b 45 f8 mov -0x8(%rbp),%rax 600006a0: c9 leaveq 600006a1: c3 retq 00000000600006a2 <mapVirtualToPhysicalAddress(unsigned long, unsigned long)>: 600006a2: 55 push %rbp 600006a3: 48 89 e5 mov %rsp,%rbp 600006a6: 48 83 ec 10 sub $0x10,%rsp 600006aa: 48 89 7d f8 mov %rdi,-0x8(%rbp) 600006ae: 48 89 75 f0 mov %rsi,-0x10(%rbp) 600006b2: 48 8b 55 f0 mov -0x10(%rbp),%rdx 600006b6: 48 8b 45 f8 mov -0x8(%rbp),%rax 600006ba: 48 89 d1 mov %rdx,%rcx 600006bd: 48 89 c2 mov %rax,%rdx 600006c0: be 07 00 00 00 mov $0x7,%esi 600006c5: bf 05 00 00 00 mov $0x5,%edi 600006ca: e8 f0 05 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 600006cf: 90 nop 600006d0: c9 leaveq 600006d1: c3 retq 00000000600006d2 <getDriverStatus(unsigned long)>: 600006d2: 55 push %rbp 600006d3: 48 89 e5 mov %rsp,%rbp 600006d6: 48 83 ec 20 sub $0x20,%rsp 600006da: 48 89 7d e8 mov %rdi,-0x18(%rbp) 600006de: 48 c7 45 f8 00 00 00 movq $0x0,-0x8(%rbp) 600006e5: 00 600006e6: 48 8d 55 f8 lea -0x8(%rbp),%rdx 600006ea: 48 8b 45 e8 mov -0x18(%rbp),%rax 600006ee: 48 89 d1 mov %rdx,%rcx 600006f1: 48 89 c2 mov %rax,%rdx 600006f4: be 10 00 00 00 mov $0x10,%esi 600006f9: bf 05 00 00 00 mov $0x5,%edi 600006fe: e8 bc 05 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 60000703: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000707: c9 leaveq 60000708: c3 retq 0000000060000709 <driverCall(unsigned long, unsigned char, void*)>: 60000709: 55 push %rbp 6000070a: 48 89 e5 mov %rsp,%rbp 6000070d: 48 83 ec 20 sub $0x20,%rsp 60000711: 48 89 7d f8 mov %rdi,-0x8(%rbp) 60000715: 89 f0 mov %esi,%eax 60000717: 48 89 55 e8 mov %rdx,-0x18(%rbp) 6000071b: 88 45 f4 mov %al,-0xc(%rbp) 6000071e: 80 7d f4 00 cmpb $0x0,-0xc(%rbp) 60000722: 74 26 je 6000074a <driverCall(unsigned long, unsigned char, void*)+0x41> 60000724: 80 7d f4 0f cmpb $0xf,-0xc(%rbp) 60000728: 77 20 ja 6000074a <driverCall(unsigned long, unsigned char, void*)+0x41> 6000072a: 48 8b 4d e8 mov -0x18(%rbp),%rcx 6000072e: 0f b6 45 f4 movzbl -0xc(%rbp),%eax 60000732: 83 c0 10 add $0x10,%eax 60000735: 48 98 cltq 60000737: 48 8b 55 f8 mov -0x8(%rbp),%rdx 6000073b: 48 89 c6 mov %rax,%rsi 6000073e: bf 05 00 00 00 mov $0x5,%edi 60000743: e8 77 05 00 00 callq 60000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)> 60000748: eb 01 jmp 6000074b <driverCall(unsigned long, unsigned char, void*)+0x42> 6000074a: 90 nop 6000074b: c9 leaveq 6000074c: c3 retq 000000006000074d <countArgc(char const*)>: 6000074d: 55 push %rbp 6000074e: 48 89 e5 mov %rsp,%rbp 60000751: 48 83 ec 18 sub $0x18,%rsp 60000755: 48 89 7d e8 mov %rdi,-0x18(%rbp) 60000759: c7 45 fc 00 00 00 00 movl $0x0,-0x4(%rbp) 60000760: 48 83 7d e8 00 cmpq $0x0,-0x18(%rbp) 60000765: 74 0b je 60000772 <countArgc(char const*)+0x25> 60000767: 48 8b 45 e8 mov -0x18(%rbp),%rax 6000076b: 0f b6 00 movzbl (%rax),%eax 6000076e: 84 c0 test %al,%al 60000770: 75 09 jne 6000077b <countArgc(char const*)+0x2e> 60000772: c7 45 fc 00 00 00 00 movl $0x0,-0x4(%rbp) 60000779: eb 31 jmp 600007ac <countArgc(char const*)+0x5f> 6000077b: 48 8b 45 e8 mov -0x18(%rbp),%rax 6000077f: 0f b6 00 movzbl (%rax),%eax 60000782: 84 c0 test %al,%al 60000784: 75 04 jne 6000078a <countArgc(char const*)+0x3d> 60000786: 83 45 fc 01 addl $0x1,-0x4(%rbp) 6000078a: 48 8b 45 e8 mov -0x18(%rbp),%rax 6000078e: 0f b6 00 movzbl (%rax),%eax 60000791: 84 c0 test %al,%al 60000793: 75 0f jne 600007a4 <countArgc(char const*)+0x57> 60000795: 48 8b 45 e8 mov -0x18(%rbp),%rax 60000799: 48 83 c0 01 add $0x1,%rax 6000079d: 0f b6 00 movzbl (%rax),%eax 600007a0: 84 c0 test %al,%al 600007a2: 74 07 je 600007ab <countArgc(char const*)+0x5e> 600007a4: 48 83 45 e8 01 addq $0x1,-0x18(%rbp) 600007a9: eb d0 jmp 6000077b <countArgc(char const*)+0x2e> 600007ab: 90 nop 600007ac: 8b 45 fc mov -0x4(%rbp),%eax 600007af: c9 leaveq 600007b0: c3 retq 00000000600007b1 <buildArgv(int, char const*)>: 600007b1: 55 push %rbp 600007b2: 48 89 e5 mov %rsp,%rbp 600007b5: 48 83 ec 20 sub $0x20,%rsp 600007b9: 89 7d ec mov %edi,-0x14(%rbp) 600007bc: 48 89 75 e0 mov %rsi,-0x20(%rbp) 600007c0: 8b 45 ec mov -0x14(%rbp),%eax 600007c3: 83 c0 01 add $0x1,%eax 600007c6: 48 98 cltq 600007c8: 48 c1 e0 03 shl $0x3,%rax 600007cc: 48 89 c7 mov %rax,%rdi 600007cf: e8 02 f9 ff ff callq 600000d6 <malloc(unsigned long)> 600007d4: 48 89 45 f0 mov %rax,-0x10(%rbp) 600007d8: 8b 45 ec mov -0x14(%rbp),%eax 600007db: 48 98 cltq 600007dd: 48 8d 14 c5 00 00 00 lea 0x0(,%rax,8),%rdx 600007e4: 00 600007e5: 48 8b 45 f0 mov -0x10(%rbp),%rax 600007e9: 48 01 d0 add %rdx,%rax 600007ec: 48 c7 00 00 00 00 00 movq $0x0,(%rax) 600007f3: 83 7d ec 00 cmpl $0x0,-0x14(%rbp) 600007f7: 7e 4b jle 60000844 <buildArgv(int, char const*)+0x93> 600007f9: 48 c7 45 f8 00 00 00 movq $0x0,-0x8(%rbp) 60000800: 00 60000801: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000805: 48 8d 14 c5 00 00 00 lea 0x0(,%rax,8),%rdx 6000080c: 00 6000080d: 48 8b 45 f0 mov -0x10(%rbp),%rax 60000811: 48 01 c2 add %rax,%rdx 60000814: 48 8b 45 e0 mov -0x20(%rbp),%rax 60000818: 48 89 02 mov %rax,(%rdx) 6000081b: 48 83 45 f8 01 addq $0x1,-0x8(%rbp) 60000820: 48 8b 45 e0 mov -0x20(%rbp),%rax 60000824: 0f b6 00 movzbl (%rax),%eax 60000827: 84 c0 test %al,%al 60000829: 74 07 je 60000832 <buildArgv(int, char const*)+0x81> 6000082b: 48 83 45 e0 01 addq $0x1,-0x20(%rbp) 60000830: eb ee jmp 60000820 <buildArgv(int, char const*)+0x6f> 60000832: 48 83 45 e0 01 addq $0x1,-0x20(%rbp) 60000837: 48 8b 45 e0 mov -0x20(%rbp),%rax 6000083b: 0f b6 00 movzbl (%rax),%eax 6000083e: 84 c0 test %al,%al 60000840: 74 02 je 60000844 <buildArgv(int, char const*)+0x93> 60000842: eb bd jmp 60000801 <buildArgv(int, char const*)+0x50> 60000844: 48 8b 45 f0 mov -0x10(%rbp),%rax 60000848: c9 leaveq 60000849: c3 retq 000000006000084a <__start1>: 6000084a: 55 push %rbp 6000084b: 48 89 e5 mov %rsp,%rbp 6000084e: 48 83 ec 20 sub $0x20,%rsp 60000852: e8 d3 f7 ff ff callq 6000002a <getpid()> 60000857: 48 89 05 a2 07 00 00 mov %rax,0x7a2(%rip) # 60001000 <myPid> 6000085e: e8 ad f9 ff ff callq 60000210 <getArguments()> 60000863: 48 89 45 f8 mov %rax,-0x8(%rbp) 60000867: 48 8b 45 f8 mov -0x8(%rbp),%rax 6000086b: 48 89 c7 mov %rax,%rdi 6000086e: e8 da fe ff ff callq 6000074d <countArgc(char const*)> 60000873: 89 45 f4 mov %eax,-0xc(%rbp) 60000876: 48 8b 55 f8 mov -0x8(%rbp),%rdx 6000087a: 8b 45 f4 mov -0xc(%rbp),%eax 6000087d: 48 89 d6 mov %rdx,%rsi 60000880: 89 c7 mov %eax,%edi 60000882: e8 2a ff ff ff callq 600007b1 <buildArgv(int, char const*)> 60000887: 48 89 45 e8 mov %rax,-0x18(%rbp) 6000088b: 48 8b 55 e8 mov -0x18(%rbp),%rdx 6000088f: 8b 45 f4 mov -0xc(%rbp),%eax 60000892: 48 89 d6 mov %rdx,%rsi 60000895: 89 c7 mov %eax,%edi 60000897: e8 5e 02 00 00 callq 60000afa <main> 6000089c: 89 45 e4 mov %eax,-0x1c(%rbp) 6000089f: 8b 45 e4 mov -0x1c(%rbp),%eax 600008a2: 48 98 cltq 600008a4: 48 89 c7 mov %rax,%rdi 600008a7: e8 54 f7 ff ff callq 60000000 <exit(unsigned long)> 600008ac: 90 nop 600008ad: c9 leaveq 600008ae: c3 retq 00000000600008af <__start>: 600008af: 48 89 e5 mov %rsp,%rbp 600008b2: e8 93 ff ff ff callq 6000084a <__start1> 600008b7: cc int3 00000000600008b8 <getCPL()>: 600008b8: 55 push %rbp 600008b9: 48 89 e5 mov %rsp,%rbp 600008bc: 48 83 ec 10 sub $0x10,%rsp 600008c0: 8c c8 mov %cs,%eax 600008c2: 89 45 fc mov %eax,-0x4(%rbp) 600008c5: 8b 45 fc mov -0x4(%rbp),%eax 600008c8: 83 e0 03 and $0x3,%eax 600008cb: c9 leaveq 600008cc: c3 retq 00000000600008cd <printBase(unsigned long, unsigned long, int)>: 600008cd: 55 push %rbp 600008ce: 48 89 e5 mov %rsp,%rbp 600008d1: 48 83 c4 80 add $0xffffffffffffff80,%rsp 600008d5: 48 89 7d 98 mov %rdi,-0x68(%rbp) 600008d9: 48 89 75 90 mov %rsi,-0x70(%rbp) 600008dd: 89 55 8c mov %edx,-0x74(%rbp) 600008e0: 48 c7 45 e8 00 20 00 movq $0x60002000,-0x18(%rbp) 600008e7: 60 600008e8: 48 8d 55 a8 lea -0x58(%rbp),%rdx 600008ec: b8 00 00 00 00 mov $0x0,%eax 600008f1: b9 08 00 00 00 mov $0x8,%ecx 600008f6: 48 89 d7 mov %rdx,%rdi 600008f9: f3 48 ab rep stos %rax,%es:(%rdi) 600008fc: c7 45 fc 01 00 00 00 movl $0x1,-0x4(%rbp) 60000903: 48 83 7d 98 00 cmpq $0x0,-0x68(%rbp) 60000908: 74 37 je 60000941 <printBase(unsigned long, unsigned long, int)+0x74> 6000090a: 48 8b 45 98 mov -0x68(%rbp),%rax 6000090e: ba 00 00 00 00 mov $0x0,%edx 60000913: 48 f7 75 90 divq -0x70(%rbp) 60000917: 48 8b 45 e8 mov -0x18(%rbp),%rax 6000091b: 48 01 d0 add %rdx,%rax 6000091e: 0f b6 10 movzbl (%rax),%edx 60000921: 8b 45 fc mov -0x4(%rbp),%eax 60000924: 48 98 cltq 60000926: 88 54 05 a8 mov %dl,-0x58(%rbp,%rax,1) 6000092a: 48 8b 45 98 mov -0x68(%rbp),%rax 6000092e: ba 00 00 00 00 mov $0x0,%edx 60000933: 48 f7 75 90 divq -0x70(%rbp) 60000937: 48 89 45 98 mov %rax,-0x68(%rbp) 6000093b: 83 45 fc 01 addl $0x1,-0x4(%rbp) 6000093f: eb c2 jmp 60000903 <printBase(unsigned long, unsigned long, int)+0x36> 60000941: c7 45 f8 00 00 00 00 movl $0x0,-0x8(%rbp) 60000948: 8b 45 8c mov -0x74(%rbp),%eax 6000094b: 2b 45 fc sub -0x4(%rbp),%eax 6000094e: 39 45 f8 cmp %eax,-0x8(%rbp) 60000951: 7f 10 jg 60000963 <printBase(unsigned long, unsigned long, int)+0x96> 60000953: bf 30 00 00 00 mov $0x30,%edi 60000958: e8 76 fa ff ff callq 600003d3 <write(unsigned char)> 6000095d: 83 45 f8 01 addl $0x1,-0x8(%rbp) 60000961: eb e5 jmp 60000948 <printBase(unsigned long, unsigned long, int)+0x7b> 60000963: c6 45 e7 00 movb $0x0,-0x19(%rbp) 60000967: 8b 45 fc mov -0x4(%rbp),%eax 6000096a: 48 98 cltq 6000096c: 48 8d 50 ff lea -0x1(%rax),%rdx 60000970: 48 8d 45 a8 lea -0x58(%rbp),%rax 60000974: 48 01 d0 add %rdx,%rax 60000977: 48 89 45 f0 mov %rax,-0x10(%rbp) 6000097b: 48 8b 45 f0 mov -0x10(%rbp),%rax 6000097f: 0f b6 00 movzbl (%rax),%eax 60000982: 84 c0 test %al,%al 60000984: 74 18 je 6000099e <printBase(unsigned long, unsigned long, int)+0xd1> 60000986: 48 8b 45 f0 mov -0x10(%rbp),%rax 6000098a: 0f b6 00 movzbl (%rax),%eax 6000098d: 0f b6 c0 movzbl %al,%eax 60000990: 89 c7 mov %eax,%edi 60000992: e8 3c fa ff ff callq 600003d3 <write(unsigned char)> 60000997: 48 83 6d f0 01 subq $0x1,-0x10(%rbp) 6000099c: eb dd jmp 6000097b <printBase(unsigned long, unsigned long, int)+0xae> 6000099e: 90 nop 6000099f: c9 leaveq 600009a0: c3 retq 00000000600009a1 <printKernelOut(char const*)>: 600009a1: 55 push %rbp 600009a2: 48 89 e5 mov %rsp,%rbp 600009a5: 48 83 ec 10 sub $0x10,%rsp 600009a9: 48 89 7d f8 mov %rdi,-0x8(%rbp) 600009ad: 48 8b 45 f8 mov -0x8(%rbp),%rax 600009b1: 0f b6 00 movzbl (%rax),%eax 600009b4: 84 c0 test %al,%al 600009b6: 74 18 je 600009d0 <printKernelOut(char const*)+0x2f> 600009b8: 48 8b 45 f8 mov -0x8(%rbp),%rax 600009bc: 0f b6 00 movzbl (%rax),%eax 600009bf: 0f b6 c0 movzbl %al,%eax 600009c2: 89 c7 mov %eax,%edi 600009c4: e8 0a fa ff ff callq 600003d3 <write(unsigned char)> 600009c9: 48 83 45 f8 01 addq $0x1,-0x8(%rbp) 600009ce: eb dd jmp 600009ad <printKernelOut(char const*)+0xc> 600009d0: 90 nop 600009d1: c9 leaveq 600009d2: c3 retq 00000000600009d3 <onWrite(char)>: 600009d3: 55 push %rbp 600009d4: 48 89 e5 mov %rsp,%rbp 600009d7: 48 83 ec 08 sub $0x8,%rsp 600009db: 89 f8 mov %edi,%eax 600009dd: 88 45 fc mov %al,-0x4(%rbp) 600009e0: 90 nop 600009e1: c9 leaveq 600009e2: c3 retq 00000000600009e3 <startByDirEntry(DirectoryEntry*, char const*)>: 600009e3: 55 push %rbp 600009e4: 48 89 e5 mov %rsp,%rbp 600009e7: 48 81 ec 30 02 00 00 sub $0x230,%rsp 600009ee: 48 89 bd d8 fd ff ff mov %rdi,-0x228(%rbp) 600009f5: 48 89 b5 d0 fd ff ff mov %rsi,-0x230(%rbp) 600009fc: 48 8b 85 d8 fd ff ff mov -0x228(%rbp),%rax 60000a03: 48 8b 40 10 mov 0x10(%rax),%rax 60000a07: 0f b6 00 movzbl (%rax),%eax 60000a0a: 3c 2e cmp $0x2e,%al 60000a0c: 0f 84 e5 00 00 00 je 60000af7 <startByDirEntry(DirectoryEntry*, char const*)+0x114> 60000a12: 48 c7 45 f8 00 00 00 movq $0x0,-0x8(%rbp) 60000a19: 00 60000a1a: 48 8b 85 d0 fd ff ff mov -0x230(%rbp),%rax 60000a21: 48 89 45 f0 mov %rax,-0x10(%rbp) 60000a25: 48 8b 45 f0 mov -0x10(%rbp),%rax 60000a29: 0f b6 00 movzbl (%rax),%eax 60000a2c: 84 c0 test %al,%al 60000a2e: 74 21 je 60000a51 <startByDirEntry(DirectoryEntry*, char const*)+0x6e> 60000a30: 48 8b 45 f0 mov -0x10(%rbp),%rax 60000a34: 0f b6 10 movzbl (%rax),%edx 60000a37: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000a3b: 48 8d 48 01 lea 0x1(%rax),%rcx 60000a3f: 48 89 4d f8 mov %rcx,-0x8(%rbp) 60000a43: 88 94 05 e8 fd ff ff mov %dl,-0x218(%rbp,%rax,1) 60000a4a: 48 83 45 f0 01 addq $0x1,-0x10(%rbp) 60000a4f: eb d4 jmp 60000a25 <startByDirEntry(DirectoryEntry*, char const*)+0x42> 60000a51: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000a55: 48 8d 50 01 lea 0x1(%rax),%rdx 60000a59: 48 89 55 f8 mov %rdx,-0x8(%rbp) 60000a5d: c6 84 05 e8 fd ff ff movb $0x2f,-0x218(%rbp,%rax,1) 60000a64: 2f 60000a65: 48 8b 85 d8 fd ff ff mov -0x228(%rbp),%rax 60000a6c: 48 8b 40 10 mov 0x10(%rax),%rax 60000a70: 48 89 45 e8 mov %rax,-0x18(%rbp) 60000a74: 48 8b 45 e8 mov -0x18(%rbp),%rax 60000a78: 0f b6 00 movzbl (%rax),%eax 60000a7b: 84 c0 test %al,%al 60000a7d: 74 21 je 60000aa0 <startByDirEntry(DirectoryEntry*, char const*)+0xbd> 60000a7f: 48 8b 45 e8 mov -0x18(%rbp),%rax 60000a83: 0f b6 10 movzbl (%rax),%edx 60000a86: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000a8a: 48 8d 48 01 lea 0x1(%rax),%rcx 60000a8e: 48 89 4d f8 mov %rcx,-0x8(%rbp) 60000a92: 88 94 05 e8 fd ff ff mov %dl,-0x218(%rbp,%rax,1) 60000a99: 48 83 45 e8 01 addq $0x1,-0x18(%rbp) 60000a9e: eb d4 jmp 60000a74 <startByDirEntry(DirectoryEntry*, char const*)+0x91> 60000aa0: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000aa4: 48 8d 50 01 lea 0x1(%rax),%rdx 60000aa8: 48 89 55 f8 mov %rdx,-0x8(%rbp) 60000aac: c6 84 05 e8 fd ff ff movb $0x0,-0x218(%rbp,%rax,1) 60000ab3: 00 60000ab4: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000ab8: 48 8d 50 01 lea 0x1(%rax),%rdx 60000abc: 48 89 55 f8 mov %rdx,-0x8(%rbp) 60000ac0: c6 84 05 e8 fd ff ff movb $0x0,-0x218(%rbp,%rax,1) 60000ac7: 00 60000ac8: bf 11 20 00 60 mov $0x60002011,%edi 60000acd: e8 cf fe ff ff callq 600009a1 <printKernelOut(char const*)> 60000ad2: bf 2b 20 00 60 mov $0x6000202b,%edi 60000ad7: e8 c5 fe ff ff callq 600009a1 <printKernelOut(char const*)> 60000adc: 48 8d 85 e8 fd ff ff lea -0x218(%rbp),%rax 60000ae3: 48 89 c7 mov %rax,%rdi 60000ae6: e8 b6 fe ff ff callq 600009a1 <printKernelOut(char const*)> 60000aeb: bf 43 20 00 60 mov $0x60002043,%edi 60000af0: e8 ac fe ff ff callq 600009a1 <printKernelOut(char const*)> 60000af5: eb 01 jmp 60000af8 <startByDirEntry(DirectoryEntry*, char const*)+0x115> 60000af7: 90 nop 60000af8: c9 leaveq 60000af9: c3 retq 0000000060000afa <main>: 60000afa: 55 push %rbp 60000afb: 48 89 e5 mov %rsp,%rbp 60000afe: 48 81 ec 00 01 00 00 sub $0x100,%rsp 60000b05: e8 a0 f8 ff ff callq 600003aa <getSystemDevice()> 60000b0a: 48 89 05 f7 04 00 00 mov %rax,0x4f7(%rip) # 60001008 <systemDevice> 60000b11: bf 46 20 00 60 mov $0x60002046,%edi 60000b16: e8 86 fe ff ff callq 600009a1 <printKernelOut(char const*)> 60000b1b: e8 98 fd ff ff callq 600008b8 <getCPL()> 60000b20: 0f b6 c0 movzbl %al,%eax 60000b23: ba 01 00 00 00 mov $0x1,%edx 60000b28: be 0a 00 00 00 mov $0xa,%esi 60000b2d: 48 89 c7 mov %rax,%rdi 60000b30: e8 98 fd ff ff callq 600008cd <printBase(unsigned long, unsigned long, int)> 60000b35: bf 54 20 00 60 mov $0x60002054,%edi 60000b3a: e8 62 fe ff ff callq 600009a1 <printKernelOut(char const*)> 60000b3f: 48 8b 05 c2 04 00 00 mov 0x4c2(%rip),%rax # 60001008 <systemDevice> 60000b46: b9 00 00 00 00 mov $0x0,%ecx 60000b4b: ba 56 20 00 60 mov $0x60002056,%edx 60000b50: be 66 20 00 60 mov $0x60002066,%esi 60000b55: 48 89 c7 mov %rax,%rdi 60000b58: e8 f6 f4 ff ff callq 60000053 <createProcess(unsigned long, char const*, char const*, bool)> 60000b5d: 48 89 45 e8 mov %rax,-0x18(%rbp) 60000b61: 48 8b 05 a0 04 00 00 mov 0x4a0(%rip),%rax # 60001008 <systemDevice> 60000b68: be 75 20 00 60 mov $0x60002075,%esi 60000b6d: 48 89 c7 mov %rax,%rdi 60000b70: e8 b2 f8 ff ff callq 60000427 <getINodeOfPath(unsigned long, char const*)> 60000b75: 48 89 45 e0 mov %rax,-0x20(%rbp) 60000b79: 48 c7 45 d8 08 00 00 movq $0x8,-0x28(%rbp) 60000b80: 00 60000b81: 48 8b 05 80 04 00 00 mov 0x480(%rip),%rax # 60001008 <systemDevice> 60000b88: 48 8d 95 08 ff ff ff lea -0xf8(%rbp),%rdx 60000b8f: 48 8b 75 e0 mov -0x20(%rbp),%rsi 60000b93: 48 89 d1 mov %rdx,%rcx 60000b96: ba 08 00 00 00 mov $0x8,%edx 60000b9b: 48 89 c7 mov %rax,%rdi 60000b9e: e8 4d f9 ff ff callq 600004f0 <getDirectoryEntriesOfINode(unsigned long, unsigned long, unsigned long, DirectoryEntry*)> 60000ba3: 48 89 85 00 ff ff ff mov %rax,-0x100(%rbp) 60000baa: 48 8b 85 00 ff ff ff mov -0x100(%rbp),%rax 60000bb1: 48 83 f8 07 cmp $0x7,%rax 60000bb5: 77 0c ja 60000bc3 <main+0xc9> 60000bb7: 48 8d 85 00 ff ff ff lea -0x100(%rbp),%rax 60000bbe: 48 8b 00 mov (%rax),%rax 60000bc1: eb 05 jmp 60000bc8 <main+0xce> 60000bc3: b8 08 00 00 00 mov $0x8,%eax 60000bc8: 48 89 45 d0 mov %rax,-0x30(%rbp) 60000bcc: 48 c7 45 f8 00 00 00 movq $0x0,-0x8(%rbp) 60000bd3: 00 60000bd4: 48 8b 45 f8 mov -0x8(%rbp),%rax 60000bd8: 48 3b 45 d0 cmp -0x30(%rbp),%rax 60000bdc: 73 2f jae 60000c0d <main+0x113> 60000bde: 48 8d 8d 08 ff ff ff lea -0xf8(%rbp),%rcx 60000be5: 48 8b 55 f8 mov -0x8(%rbp),%rdx 60000be9: 48 89 d0 mov %rdx,%rax 60000bec: 48 01 c0 add %rax,%rax 60000bef: 48 01 d0 add %rdx,%rax 60000bf2: 48 c1 e0 03 shl $0x3,%rax 60000bf6: 48 01 c8 add %rcx,%rax 60000bf9: be 75 20 00 60 mov $0x60002075,%esi 60000bfe: 48 89 c7 mov %rax,%rdi 60000c01: e8 dd fd ff ff callq 600009e3 <startByDirEntry(DirectoryEntry*, char const*)> 60000c06: 48 83 45 f8 01 addq $0x1,-0x8(%rbp) 60000c0b: eb c7 jmp 60000bd4 <main+0xda> 60000c0d: 48 8b 85 00 ff ff ff mov -0x100(%rbp),%rax 60000c14: 48 83 f8 08 cmp $0x8,%rax 60000c18: 0f 86 95 00 00 00 jbe 60000cb3 <main+0x1b9> 60000c1e: 48 8b 95 00 ff ff ff mov -0x100(%rbp),%rdx 60000c25: 48 89 d0 mov %rdx,%rax 60000c28: 48 01 c0 add %rax,%rax 60000c2b: 48 01 d0 add %rdx,%rax 60000c2e: 48 c1 e0 03 shl $0x3,%rax 60000c32: 48 89 c7 mov %rax,%rdi 60000c35: e8 9c f4 ff ff callq 600000d6 <malloc(unsigned long)> 60000c3a: 48 89 45 c8 mov %rax,-0x38(%rbp) 60000c3e: 48 8b 95 00 ff ff ff mov -0x100(%rbp),%rdx 60000c45: 48 8b 05 bc 03 00 00 mov 0x3bc(%rip),%rax # 60001008 <systemDevice> 60000c4c: 48 8b 4d c8 mov -0x38(%rbp),%rcx 60000c50: 48 8b 75 e0 mov -0x20(%rbp),%rsi 60000c54: 48 89 c7 mov %rax,%rdi 60000c57: e8 94 f8 ff ff callq 600004f0 <getDirectoryEntriesOfINode(unsigned long, unsigned long, unsigned long, DirectoryEntry*)> 60000c5c: 48 89 85 00 ff ff ff mov %rax,-0x100(%rbp) 60000c63: 48 c7 45 f0 08 00 00 movq $0x8,-0x10(%rbp) 60000c6a: 00 60000c6b: 48 8b 85 00 ff ff ff mov -0x100(%rbp),%rax 60000c72: 48 39 45 f0 cmp %rax,-0x10(%rbp) 60000c76: 73 2f jae 60000ca7 <main+0x1ad> 60000c78: 48 8b 55 f0 mov -0x10(%rbp),%rdx 60000c7c: 48 89 d0 mov %rdx,%rax 60000c7f: 48 01 c0 add %rax,%rax 60000c82: 48 01 d0 add %rdx,%rax 60000c85: 48 c1 e0 03 shl $0x3,%rax 60000c89: 48 89 c2 mov %rax,%rdx 60000c8c: 48 8b 45 c8 mov -0x38(%rbp),%rax 60000c90: 48 01 d0 add %rdx,%rax 60000c93: be 75 20 00 60 mov $0x60002075,%esi 60000c98: 48 89 c7 mov %rax,%rdi 60000c9b: e8 43 fd ff ff callq 600009e3 <startByDirEntry(DirectoryEntry*, char const*)> 60000ca0: 48 83 45 f0 01 addq $0x1,-0x10(%rbp) 60000ca5: eb c4 jmp 60000c6b <main+0x171> 60000ca7: 48 8b 45 c8 mov -0x38(%rbp),%rax 60000cab: 48 89 c7 mov %rax,%rdi 60000cae: e8 52 f4 ff ff callq 60000105 <free(void*)> 60000cb3: bf 10 27 00 00 mov $0x2710,%edi 60000cb8: e8 ef f3 ff ff callq 600000ac <sleep(unsigned long)> 60000cbd: eb f4 jmp 60000cb3 <main+0x1b9> Disassembly of section .text._Z7syscallmmmm: 0000000060000cbf <syscall(unsigned long, unsigned long, unsigned long, unsigned long)>: 60000cbf: 55 push %rbp 60000cc0: 48 89 e5 mov %rsp,%rbp 60000cc3: 53 push %rbx 60000cc4: 48 83 ec 20 sub $0x20,%rsp 60000cc8: 48 89 7d f0 mov %rdi,-0x10(%rbp) 60000ccc: 48 89 75 e8 mov %rsi,-0x18(%rbp) 60000cd0: 48 89 55 e0 mov %rdx,-0x20(%rbp) 60000cd4: 48 89 4d d8 mov %rcx,-0x28(%rbp) 60000cd8: 48 8b 45 f0 mov -0x10(%rbp),%rax 60000cdc: 48 8b 5d e8 mov -0x18(%rbp),%rbx 60000ce0: 48 8b 4d e0 mov -0x20(%rbp),%rcx 60000ce4: 48 8b 55 d8 mov -0x28(%rbp),%rdx 60000ce8: cd 80 int $0x80 60000cea: 90 nop 60000ceb: 48 83 c4 20 add $0x20,%rsp 60000cef: 5b pop %rbx 60000cf0: 5d pop %rbp 60000cf1: c3 retq
55.577105
142
0.509082
1f737fb7bce571d279a662e418132283e43ce6de
600
asm
Assembly
programs/oeis/222/A222308.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/222/A222308.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/222/A222308.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A222308: Let P be a one-move "rider" with move set M={(1,2)}; a(n) is the number of non-attacking positions of two indistinguishable pieces P on an n X n board. ; 0,6,34,114,285,602,1127,1940,3126,4790,7040,10006,13819,18634,24605,31912,40732,51270,63726,78330,95305,114906,137379,163004,192050,224822,261612,302750,348551,399370,455545,517456,585464,659974,741370,830082,926517,1031130,1144351,1266660,1398510,1540406,1692824 add $0,1 mov $1,$0 pow $0,3 mul $0,$1 add $0,28 seq $1,212578 ; Number of (w,x,y,z) with all terms in {1,...,n} and |w-x| = 2*|x-y| - |y-z|. sub $0,$1 sub $0,28 div $0,2
46.153846
265
0.713333
095968a651ff3cc57288ccff9b79693e98e3619f
7,014
asm
Assembly
examples/nes/cpu6502.asm
NullMember/customasm
6e34d6432583a41278e6b3596f1817ae82149531
[ "Apache-2.0" ]
414
2016-10-14T22:39:20.000Z
2022-03-30T07:52:44.000Z
examples/nes/cpu6502.asm
NullMember/customasm
6e34d6432583a41278e6b3596f1817ae82149531
[ "Apache-2.0" ]
100
2018-03-22T16:12:24.000Z
2022-03-26T09:19:23.000Z
examples/nes/cpu6502.asm
NullMember/customasm
6e34d6432583a41278e6b3596f1817ae82149531
[ "Apache-2.0" ]
47
2017-06-29T15:12:13.000Z
2022-03-10T04:50:51.000Z
#subruledef cpu6502_reladdr { {addr: u16} => { reladdr = addr - $ - 2 assert(reladdr <= 0x7f) assert(reladdr >= !0x7f) reladdr`8 } } #ruledef cpu6502 { adc #{imm: i8 } => 0x69 @ imm adc <{zaddr: u8 } => 0x65 @ zaddr adc <{zaddr: u8 }, x => 0x75 @ zaddr adc {zaddr: u8 } => 0x65 @ zaddr adc {zaddr: u8 }, x => 0x75 @ zaddr adc {addr: u16} => 0x6d @ le(addr) adc {addr: u16}, x => 0x7d @ le(addr) adc {addr: u16}, y => 0x79 @ le(addr) adc ({zaddr: u8 }, x) => 0x61 @ zaddr adc ({zaddr: u8 }), y => 0x71 @ zaddr and #{imm: i8 } => 0x29 @ imm and <{zaddr: u8 } => 0x25 @ zaddr and <{zaddr: u8 }, x => 0x35 @ zaddr and {zaddr: u8 } => 0x25 @ zaddr and {zaddr: u8 }, x => 0x35 @ zaddr and {addr: u16} => 0x2d @ le(addr) and {addr: u16}, x => 0x3d @ le(addr) and {addr: u16}, y => 0x39 @ le(addr) and ({zaddr: u8 }, x) => 0x21 @ zaddr and ({zaddr: u8 }), y => 0x31 @ zaddr asl a => 0x0a asl <{zaddr: u8 } => 0x07 @ zaddr asl <{zaddr: u8 }, x => 0x16 @ zaddr asl {zaddr: u8 } => 0x07 @ zaddr asl {zaddr: u8 }, x => 0x16 @ zaddr asl {addr: u16} => 0x0e @ le(addr) asl {addr: u16}, x => 0x1e @ le(addr) bcc {addr: cpu6502_reladdr} => 0x90 @ addr bcs {addr: cpu6502_reladdr} => 0x80 @ addr beq {addr: cpu6502_reladdr} => 0xf0 @ addr bit <{zaddr: u8 } => 0x24 @ zaddr bit {addr: u16} => 0x2C @ le(addr) bmi {addr: cpu6502_reladdr} => 0x30 @ addr bne {addr: cpu6502_reladdr} => 0xd0 @ addr bpl {addr: cpu6502_reladdr} => 0x10 @ addr brk => 0x00 bvc {addr: cpu6502_reladdr} => 0x50 @ addr bvs {addr: cpu6502_reladdr} => 0x70 @ addr clc => 0x18 cld => 0xd8 cli => 0x58 clv => 0xb8 cmp #{imm: i8 } => 0xc9 @ imm cmp <{zaddr: u8 } => 0xc5 @ zaddr cmp <{zaddr: u8 }, x => 0xd5 @ zaddr cmp {zaddr: u8 } => 0xc5 @ zaddr cmp {zaddr: u8 }, x => 0xd5 @ zaddr cmp {addr: u16} => 0xcd @ le(addr) cmp {addr: u16}, x => 0xdd @ le(addr) cmp {addr: u16}, y => 0xd9 @ le(addr) cmp ({zaddr: u8 }, x) => 0xc1 @ zaddr cmp ({zaddr: u8 }), y => 0xd1 @ zaddr cpx #{imm: i8 } => 0xe0 @ imm cpx <{zaddr: u8 } => 0xe4 @ zaddr cpx {zaddr: u8 } => 0xe4 @ zaddr cpx {addr: u16} => 0xec @ le(addr) cpy #{imm: i8 } => 0xc0 @ imm cpy <{zaddr: u8 } => 0xc4 @ zaddr cpy {zaddr: u8 } => 0xc4 @ zaddr cpy {addr: u16} => 0xcc @ le(addr) dec <{zaddr: u8 } => 0xc6 @ zaddr dec <{zaddr: u8 }, x => 0xd6 @ zaddr dec {zaddr: u8 } => 0xc6 @ zaddr dec {zaddr: u8 }, x => 0xd6 @ zaddr dec {addr: u16} => 0xce @ le(addr) dec {addr: u16}, x => 0xde @ le(addr) dex => 0xca dey => 0x88 eor #{imm: i8 } => 0x49 @ imm eor <{zaddr: u8 } => 0x45 @ zaddr eor <{zaddr: u8 }, x => 0x55 @ zaddr eor {zaddr: u8 } => 0x45 @ zaddr eor {zaddr: u8 }, x => 0x55 @ zaddr eor {addr: u16} => 0x4d @ le(addr) eor {addr: u16}, x => 0x5d @ le(addr) eor {addr: u16}, y => 0x59 @ le(addr) eor ({zaddr: u8 }, x) => 0x41 @ zaddr eor ({zaddr: u8 }), y => 0x51 @ zaddr inc <{zaddr: u8 } => 0xe6 @ zaddr inc <{zaddr: u8 }, x => 0xf6 @ zaddr inc {zaddr: u8 } => 0xe6 @ zaddr inc {zaddr: u8 }, x => 0xf6 @ zaddr inc {addr: u16} => 0xee @ le(addr) inc {addr: u16}, x => 0xfe @ le(addr) inx => 0xe8 iny => 0xc8 jmp {addr: u16} => 0x4c @ le(addr) jmp ({addr: u16}) => 0x6c @ le(addr) jsr {addr: u16} => 0x20 @ le(addr) lda #{imm: i8 } => 0xa9 @ imm lda <{zaddr: u8 } => 0xa5 @ zaddr lda <{zaddr: u8 }, x => 0xb5 @ zaddr lda {zaddr: u8 } => 0xa5 @ zaddr lda {zaddr: u8 }, x => 0xb5 @ zaddr lda {addr: u16} => 0xad @ le(addr) lda {addr: u16}, x => 0xbd @ le(addr) lda {addr: u16}, y => 0xb9 @ le(addr) lda ({zaddr: u8 }, x) => 0xa1 @ zaddr lda ({zaddr: u8 }), y => 0xb1 @ zaddr ldx #{imm: i8 } => 0xa2 @ imm ldx <{zaddr: u8 } => 0xa6 @ zaddr ldx <{zaddr: u8 }, y => 0xb6 @ zaddr ldx {zaddr: u8 } => 0xa6 @ zaddr ldx {zaddr: u8 }, y => 0xb6 @ zaddr ldx {addr: u16} => 0xae @ le(addr) ldx {addr: u16}, y => 0xbe @ le(addr) ldy #{imm: i8 } => 0xa0 @ imm ldy <{zaddr: u8 } => 0xa4 @ zaddr ldy <{zaddr: u8 }, x => 0xb4 @ zaddr ldy {zaddr: u8 } => 0xa4 @ zaddr ldy {zaddr: u8 }, x => 0xb4 @ zaddr ldy {addr: u16} => 0xac @ le(addr) ldy {addr: u16}, x => 0xbc @ le(addr) lsr a => 0x4a lsr <{zaddr: u8 } => 0x46 @ zaddr lsr <{zaddr: u8 }, x => 0x56 @ zaddr lsr {zaddr: u8 } => 0x46 @ zaddr lsr {zaddr: u8 }, x => 0x56 @ zaddr lsr {addr: u16} => 0x4e @ le(addr) lsr {addr: u16}, x => 0x5e @ le(addr) nop => 0xea ora #{imm: i8 } => 0x09 @ imm ora <{zaddr: u8 } => 0x05 @ zaddr ora <{zaddr: u8 }, x => 0x15 @ zaddr ora {zaddr: u8 } => 0x05 @ zaddr ora {zaddr: u8 }, x => 0x15 @ zaddr ora {addr: u16} => 0x0d @ le(addr) ora {addr: u16}, x => 0x1d @ le(addr) ora {addr: u16}, y => 0x19 @ le(addr) ora ({zaddr: u8 }, x) => 0x01 @ zaddr ora ({zaddr: u8 }), y => 0x11 @ zaddr pha => 0x48 php => 0x08 pla => 0x68 plp => 0x28 rol a => 0x2a rol <{zaddr: u8 } => 0x26 @ zaddr rol <{zaddr: u8 }, x => 0x36 @ zaddr rol {zaddr: u8 } => 0x26 @ zaddr rol {zaddr: u8 }, x => 0x36 @ zaddr rol {addr: u16} => 0x2e @ le(addr) rol {addr: u16}, x => 0x3e @ le(addr) ror a => 0x6a ror <{zaddr: u8 } => 0x66 @ zaddr ror <{zaddr: u8 }, x => 0x76 @ zaddr ror {zaddr: u8 } => 0x66 @ zaddr ror {zaddr: u8 }, x => 0x76 @ zaddr ror {addr: u16} => 0x6e @ le(addr) ror {addr: u16}, x => 0x7e @ le(addr) rti => 0x40 rts => 0x60 sbc #{imm: i8 } => 0xe9 @ imm sbc <{zaddr: u8 } => 0xe5 @ zaddr sbc <{zaddr: u8 }, x => 0xf5 @ zaddr sbc {zaddr: u8 } => 0xe5 @ zaddr sbc {zaddr: u8 }, x => 0xf5 @ zaddr sbc {addr: u16} => 0xed @ le(addr) sbc {addr: u16}, x => 0xfd @ le(addr) sbc {addr: u16}, y => 0xf9 @ le(addr) sbc ({zaddr: u8 }, x) => 0xe1 @ zaddr sbc ({zaddr: u8 }), y => 0xf1 @ zaddr sec => 0x38 sed => 0xf8 sei => 0x78 sta <{zaddr: u8 } => 0x85 @ zaddr sta <{zaddr: u8 }, x => 0x95 @ zaddr sta {zaddr: u8 } => 0x85 @ zaddr sta {zaddr: u8 }, x => 0x95 @ zaddr sta {addr: u16} => 0x8d @ le(addr) sta {addr: u16}, x => 0x9d @ le(addr) sta {addr: u16}, y => 0x99 @ le(addr) sta ({zaddr: u8 }, x) => 0x81 @ zaddr sta ({zaddr: u8 }), y => 0x91 @ zaddr stx <{zaddr: u8 } => 0x86 @ zaddr stx <{zaddr: u8 }, y => 0x96 @ zaddr stx {zaddr: u8 } => 0x86 @ zaddr stx {zaddr: u8 }, y => 0x96 @ zaddr stx {addr: u16} => 0x8e @ le(addr) sty <{zaddr: u8 } => 0x84 @ zaddr sty <{zaddr: u8 }, x => 0x94 @ zaddr sty {zaddr: u8 } => 0x84 @ zaddr sty {zaddr: u8 }, x => 0x94 @ zaddr sty {addr: u16} => 0x8c @ le(addr) tax => 0xaa tay => 0xa8 tsx => 0xba txa => 0x8a txs => 0x9a tya => 0x98 }
29.470588
43
0.501141
1e52d5212b9cfe4caef0ec88dbdc85194b6f849a
387
asm
Assembly
programs/oeis/106/A106541.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/106/A106541.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/106/A106541.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A106541: a(n) = a(n-1)-2*a(n-2)-3*a(n-3)-...-(n-1)*a(1), beginning with 2. ; 2,2,-2,-12,-22,-10,56,174,222,-92,-1038,-2210,-1624,4102,16006,24260,954,-86426,-215528,-212546,267150,1433124,2538530,984270,-6873592,-20465066,-25058698,13402052,124569514,256580886,173699192,-512667826,-1893337666 seq $0,106540 ; a(n)= a(n-1)-2*a(n-2)-3*a(n-3)-...-(n-1)*a(1), beginning with 1. mul $0,2
64.5
218
0.651163
4d5000e17b50568f20ee5b5a6e22f8820671b6b3
485
asm
Assembly
codegen-tests/native-bitfield/vs2013u5/05-mod-eq.asm
Deaod/bitfields
e84c18f18621637174edaffbefec486a45fbd9cf
[ "MIT" ]
null
null
null
codegen-tests/native-bitfield/vs2013u5/05-mod-eq.asm
Deaod/bitfields
e84c18f18621637174edaffbefec486a45fbd9cf
[ "MIT" ]
null
null
null
codegen-tests/native-bitfield/vs2013u5/05-mod-eq.asm
Deaod/bitfields
e84c18f18621637174edaffbefec486a45fbd9cf
[ "MIT" ]
null
null
null
push ebp mov ebp,esp push ecx call dword ptr ds:[133D1BCh] mov ecx,eax xor edx,edx mov eax,dword ptr [dev] shr eax,0Ch and eax,3Fh div eax,ecx mov eax,dword ptr [dev] and edx,3Fh and eax,0FFFC0FFFh shl edx,0Ch or edx,eax mov dword ptr [dev],edx mov esp,ebp pop ebp ret
25.526316
39
0.414433
8ebe824b104180ea9b185b9c816aaa1bd4486c9d
382
asm
Assembly
oeis/277/A277453.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/277/A277453.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/277/A277453.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A277453: a(n) = Sum_{k=0..n} binomial(n,k) * 2^k * n^k * k!. ; 1,3,41,1531,111393,13262051,2336744233,570621092091,184341785557121,76092709735150723,39064090158380196201,24408768326642565035963,18237590837527919131499041,16056004231253610384348995811,16448689708899063469247204152553 mul $0,2 mov $1,$0 lpb $0 sub $0,2 add $2,1 add $3,$1 mul $2,$3 lpe mov $0,$2 add $0,1
27.285714
222
0.743455
fe64b9026ed61a9a43e4a5cf51a6277bfdf34742
45,585
asm
Assembly
Firmware/XP-485/xp-485.asm
anthonykempka/Integrity-Instruments-Products
320104dbed48b0143681de80490ad204040a5131
[ "BSD-3-Clause" ]
null
null
null
Firmware/XP-485/xp-485.asm
anthonykempka/Integrity-Instruments-Products
320104dbed48b0143681de80490ad204040a5131
[ "BSD-3-Clause" ]
null
null
null
Firmware/XP-485/xp-485.asm
anthonykempka/Integrity-Instruments-Products
320104dbed48b0143681de80490ad204040a5131
[ "BSD-3-Clause" ]
1
2022-03-04T13:47:46.000Z
2022-03-04T13:47:46.000Z
;---------------------------------------------------------------------------- ; ; Integrity Instruments ; --------------------- ; PO Box 451 2642 20th Ave SW ; Pine River, MN 56474 ; Tel: 800-450-2001 ; Web: www.rs-485.com ; ; Description ; ----------- ; XP Converter Code ; ; Version: 1.01 ; --------------- ; ; Revision History ; ------------------------------------------------------- ; A. Kempka Original 01/19/2002 v1.0 ; A. Kempka 12/16/2002 v1.01 ; Added "Run Mode" message when transitioning from Program Mode ; to Run Mode when powering up Silent. ; A. Kempka RTM 12/16/2002 ; ; ; ;---------------------------------------------------------------------------- ; Specify processor type and output format. ; ; BUGBUG: Use 16C63A in the final release ; list p=16c63A, f=inhx8m ;---------------------------------------------------------------------------- ; Include the Processor specific defines. ; #INCLUDE "P16C63A.INC" ; ; MPU configuration options ; __CONFIG _CP_ALL & _WDT_ON & _HS_OSC & _PWRTE_ON & _BODEN_ON ;---------------------------------------------------------------------------- ; General equates. ;---------------------------------------------------------------------------- VERSION_MAJOR EQU '1' VERSION_MINOR1 EQU '0' VERSION_MINOR2 EQU '1' TRUE EQU 0x01 FALSE EQU 0x00 ; ; Baud Rate divisors ; Clock = 7.3728 Mhz with prescale of 64 ; ;SPBRG_600 EQU 0xBF ;SPBRG_1200 EQU 0x5F ;SPBRG_2400 EQU 0x2F ;SPBRG_4800 EQU 0x17 ;SPBRG_9600 EQU 0x0B ;SPBRG_19200 EQU 0x05 ;SPBRG_38400 EQU 0x02 ;SPBRG_57600 EQU 0x01 ;SPBRG_115200 EQU 0x00 ; ; Clock = 14.7456 Mhz with prescale of 64 ; SPBRG_1200 EQU 0xBF SPBRG_2400 EQU 0x5F SPBRG_4800 EQU 0x2F SPBRG_9600 EQU 0x17 SPBRG_19200 EQU 0x0B SPBRG_38400 EQU 0x05 SPBRG_57600 EQU 0x02 SPBRG_115200 EQU 0x01 SPBRG_230400 EQU 0x00 ; ; Timer reload count values ; Note: Assumes a clock of 14.7456 Mhz, prescale 1:16 ; ; TMR2 = 1 millisecond ; ; TMR2_PERIOD EQU 0x73 7.3728 Mhz TMR2_PERIOD EQU 0xE6 ;---------------------------------------------------------------------------- ; Port defines ;---------------------------------------------------------------------------- ; PORT A BITS ENABLE_HOLD EQU 0x00 EEPROM_CS EQU 0x01 LED EQU 0x04 ; PORT B BITS RS232_TXD EQU 0x00 ADDR_TXD EQU 0x01 ADDR_RXD EQU 0x02 ; PORTA (OUT: 0-7) PORTA_DIR EQU 0x00 ; PORTB (IN: 0,2,4 | OUT: 1, 3-7) PORTB_DIR EQU 0x15 ; PORTC (IN: 4,7,6 | OUT: 0-3, 5) PORTC_DIR EQU 0xD0 ;-------------------------------------------------------------------------- ; Variables ; Set Ram Bank 0 and 1 (Variable memory definitions) ;-------------------------------------------------------------------------- RamBank0 EQU 0x20 W_TEMP EQU RamBank0+0x00 STATUS_TEMP EQU RamBank0+0x01 MODULE_ADDRESS EQU RamBank0+0x02 TMR1H_SAVE EQU RamBank0+0x03 TMR1L_SAVE EQU RamBank0+0x04 TMR1H_MIN EQU RamBank0+0x05 TMR1L_MIN EQU RamBank0+0x06 ONE_MS_TICK EQU RamBank0+0x07 QUARTER_SEC_TICK EQU RamBank0+0x08 STRING_INDEX EQU RamBank0+0x09 CUR_SPBRG EQU RamBank0+0x0A HEX_TEMP EQU RamBank0+0x0C CUR_MODE EQU RamBank0+0x0D OUR_FLAGS EQU RamBank0+0x0E CUR_BAUD EQU RamBank0+0x0F NEW_BAUD EQU RamBank0+0x10 SCRATCH EQU RamBank0+0x11 TIMEOUTH EQU RamBank0+0x12 TIMEOUTL EQU RamBank0+0x13 EEPROM_ADDRESS EQU RamBank0+0x16 CURRENT_PTR EQU RamBank0+0x1E RCV_BUFFER_PTR EQU RamBank0+0x1F RCV_BUFFER EQU RamBank0+0x20 RCV_LAST_CHAR EQU RamBank0+0x30 ; ; Bit defines for OUR_FLAGS ; TMR1_ROLLOVER EQU 0 INT_EVENT EQU 1 ;-------------------------------------------------------------------------- ; Program Code ;-------------------------------------------------------------------------- ;---------------------------------------------------------------------------- ; Setup RESET and interrupt vectors. ;---------------------------------------------------------------------------- org 0 ; Code start address = 0 clrf PCLATH goto Start org 4 ; Irq address = 4 goto Main_Isr ;---------------------------------------------------------------------------- ;---------------------------------------------------------------------------- ; Begin code. ;---------------------------------------------------------------------------- ; org 0x20 ;---------------------------------------------------------------------------- ; Initialization and Start-Up code. ;---------------------------------------------------------------------------- Start bcf STATUS, RP0 ; **** select BANK 0 clrf PORTA ; clear PORT A clrf PORTB ; clear PORT B clrf PORTC ; clear PORT C bsf STATUS, RP0 ; **** select BANK 1 movlw PORTA_DIR movwf TRISA ; set direction PORT A movlw PORTB_DIR movwf TRISB ; set direction PORT B movlw PORTC_DIR movwf TRISC ; set direction PORT C movlw TMR2_PERIOD ; set TIMER2 period movwf PR2 bcf STATUS, RP0 ; **** select BANK 0 clrf PORTA ; clear PORT A clrf PORTB ; clear PORT B clrf PORTC ; clear PORT C clrf CUR_SPBRG ; clear registers clrf RCV_LAST_CHAR clrf TMR1_ROLLOVER clrf ONE_MS_TICK clrf QUARTER_SEC_TICK clrf OUR_FLAGS clrf CUR_BAUD clrf NEW_BAUD bsf PORTA, EEPROM_CS ; Idle - not enabled bsf PORTA, ENABLE_HOLD ; Idle - ON bsf PORTB, ADDR_TXD ; Idle - ON movlw SPBRG_9600 ; Starting baud rate - for programming mode movwf CUR_SPBRG ; Save SPBRG clrf TMR1H ; clear TMR1 counters clrf TMR1L movlw 0x01 ; Timer1 prescale 1:1, enable Timer1 movwf T1CON movwf TMR2 ; Load Timer2 counter movlw 0x06 ; Timer 2 prescale 1:16, enable Timer 2 movwf T2CON movfw CUR_SPBRG ; Load Baud Rate Generator bsf STATUS, RP0 ; **** select BANK 1 movwf SPBRG ; Load Baud Rate Generator bsf PIE1, TMR1IE ; Enable Timer1 Interrupt bsf PIE1, TMR2IE ; Enable Timer2 Interrupt bsf PIE1, RCIE ; Enable USART rcv Interrupt movlw 0x20 ; TXEN=1, SYNC=0, BRGH=0 movwf TXSTA movlw 0xBF ; Interrupt - falling edge on INT pin movwf OPTION_REG bcf STATUS, RP0 ; **** select BANK 0 movlw 0x90 ; UART: SPEN=1, CREN=1 movwf RCSTA ; RS-485/232 setup movlw 0x30 ; SPI Master mode, CKP=1, Fosc/4 movwf SSPCON movlw RCV_BUFFER ; Set the RCV buffer pointer movwf RCV_BUFFER_PTR movfw RCREG ; Clear UART interrupts before enabling bcf PIR1, TMR1IF ; clear Timer 1 Irq bcf PIR1, TMR2IF ; clear Timer 2 Irq ;movlw 0xD0 ; Enable interrupts movlw 0xC0 movwf INTCON movlw 0x04 ; Is this a silent power up? call Read_EEPROM xorlw 0x00 btfss STATUS, Z goto Wait_For_Key clrf STRING_INDEX Printf_Startup ; Display the startup string movfw STRING_INDEX call Startup_String xorlw 0x00 btfsc STATUS, Z goto Printf_Startup_end call Transmit_Char incf STRING_INDEX goto Printf_Startup Printf_Startup_end ; ; Wait a few seconds for the user to hit a key and go into programming mode ; Wait_For_Key clrwdt ; Kick the dog while waiting for a key movfw RCV_LAST_CHAR xorlw ' ' ; Look for the Space key btfss STATUS, Z goto Wait_For_Key1 clrf RCV_LAST_CHAR ; Go into programming mode call Programming_Mode goto Printf_Run_Start Wait_For_Key1 movfw QUARTER_SEC_TICK ; Check if a few seconds has elapsed sublw 0x0C ; 12 quarter seconds = 3 seconds btfsc STATUS, C goto Wait_For_Key Lets_Run movlw 0x04 ; Is this a silent power up? call Read_EEPROM xorlw 0x00 btfss STATUS, Z goto Main_Loop_Start Printf_Run_Start clrf STRING_INDEX Printf_Run movfw STRING_INDEX call Run_String xorlw 0x00 btfsc STATUS, Z goto Printf_Run_end call Transmit_Char incf STRING_INDEX goto Printf_Run Printf_Run_end ;---------------------------------------------------------------------------- ; Main processing loop. ; Main_Loop_Start bsf STATUS, RP0 ; **** select BANK 1 bcf PIE1, TMR2IE ; Disable Timer2 Interrupt bcf STATUS, RP0 ; **** select BANK 0 movlw 0x00 ; Read the mode out of EEPROM call Read_EEPROM movwf CUR_MODE movlw 0x01 ; Read the baud rate code call Read_EEPROM movwf CUR_BAUD ; Save off current BAUD code movwf NEW_BAUD call Baud_To_SPBRG ; Convert to the baud rate generator value movwf CUR_SPBRG movfw CUR_SPBRG ; Load Baud Rate Generator bsf STATUS, RP0 ; **** select BANK 1 movwf SPBRG ; Load Baud Rate Generator bcf STATUS, RP0 ; **** select BANK 0 movfw CUR_MODE xorlw 0x00 btfsc STATUS, Z ; goto Main_Loop_Mode_0 -- NOTE!!! Not used in v1.01 goto Main_Loop_Mode_1 movfw CUR_MODE xorlw 0x01 btfsc STATUS, Z goto Main_Loop_Mode_1 movfw CUR_MODE xorlw 0x02 btfsc STATUS, Z goto Main_Loop_Mode_2 ; Default is Mode 1 goto Main_Loop_Mode_1 ;---------------------------------------------------------------------------- ; Mode 0 - Automatic Baud Rate match ; ; INT trigger sets RS-485 enable hold ; UART interrupt clears RS-485 enable hold (primary) ; TIMER1 interrupt Rollover clears RS-485 enable hold (fail safe) 35.5 ms ; ; Auto Mode: ; Main loop Main_Loop_Mode_0 bsf STATUS, RP0 ; **** select BANK 1 bsf PIE1, TMR2IE ; Enable Timer2 Interrupt bcf STATUS, RP0 ; **** select BANK 0 Main_Loop_Mode_0H clrwdt ; Kick the dog btfsc PORTB, RS232_TXD ; Wait for H-L transition of TXD goto Main_Loop_Mode_0H bcf INTCON, GIE bcf PORTA, ENABLE_HOLD ; Hold the RS-485 enable clrf TMR1L ; clear TMR1 counters clrf TMR1H bcf OUR_FLAGS, TMR1_ROLLOVER Main_Loop_Mode_0L clrwdt ; Kick the dog btfss PORTB, RS232_TXD ; Wait for L-H transition of TXD goto Main_Loop_Mode_0L movfw TMR1H ; TXD is now HIGH movwf TMR1H_SAVE ; Save TIMER1 count movfw TMR1L movwf TMR1L_SAVE clrf ONE_MS_TICK ; Clear tick count to stop 256 ms rollover bsf INTCON, GIE ; ; Check if new minimum count ; btfsc OUR_FLAGS, TMR1_ROLLOVER ; Ignore counts when rollover goto Main_Loop_Mode_0WAIT movfw TMR1H_SAVE ; MSB subwf TMR1H_MIN, W btfss STATUS, C goto Main_Loop_Mode_0WAIT movfw TMR1L_SAVE ; LSB subwf TMR1L_MIN, W btfss STATUS, C goto Main_Loop_Mode_0WAIT movfw TMR1H_SAVE ; **** New minimum values movwf TMR1H_MIN movfw TMR1L_SAVE movwf TMR1L_MIN call Get_Baud_From_Count ; Save off new baud code movwf NEW_BAUD ; ; Check if new BAUD and SPBRG (set in TIMER2 ISR) ; Save in EEPROM Main_Loop_Mode_0WAIT clrwdt ; Kick the dog btfss PORTB, RS232_TXD ; goto Main_Loop_Mode_0WAIT goto Main_Loop_Mode_0H ;---------------------------------------------------------------------------- ; Mode 1 - Automatic Bit Time Calculated ; ; INT trigger sets RS-485 enable hold ; Main loop clears RS-485 enable hold (primary) ; TIMER1 interrupt Rollover clears RS-485 enable hold (fail safe) 35.5 ms ; Note: UART interrupt disabled since it will continuously trigger with errors ; ; Auto Mode: ; Main loop Main_Loop_Mode_1 bsf STATUS, RP0 ; **** select BANK 1 bcf PIE1, RCIE ; Disable USART rcv Interrupt bcf PIE1, TMR2IE ; Disable Timer2 Interrupt bcf PIE1, TMR1IE ; Disable Timer1 Interrupt bcf STATUS, RP0 ; **** select BANK 0 Main_Loop_Mode_1START ; Wait for the start bit clrwdt ; Kick the dog btfsc PORTB, RS232_TXD ; Wait for H-L transition of TXD goto Main_Loop_Mode_1START bcf PORTA, ENABLE_HOLD ; Hold the RS-485 enable clrf TMR1L ; clear TMR1 counters clrf TMR1H movlw 0xFF ; Reset TMR1 minimum time movwf TMR1H_MIN movwf TMR1L_MIN Main_Loop_Mode_1L clrwdt ; Kick the dog btfss PORTB, RS232_TXD ; Wait for L-H transition of TXD goto Main_Loop_Mode_1L call Check_New_TMR1_Min Main_Loop_Mode_1H btfsc PORTB, RS232_TXD ; Check for H-L transition of TXD goto Main_Loop_Mode_1H_A ; Still H call Check_New_TMR1_Min goto Main_Loop_Mode_1L Main_Loop_Mode_1H_A clrwdt ; Kick the dog movfw TIMEOUTH ; Check for TIMEOUT - looking at MSB subwf TMR1H, W btfss STATUS, C goto Main_Loop_Mode_1H movfw TIMEOUTL ; Check for TIMEOUT - looking at LSB subwf TMR1L, W btfss STATUS, C goto Main_Loop_Mode_1H Main_Loop_Mode_1TIMEOUT bsf PORTA, ENABLE_HOLD ; Release the RS-485 enable goto Main_Loop_Mode_1START ;---------------------------------------------------------------------------- ; Checks new minimum times ; Check_New_TMR1_Min movfw TMR1L ; TXD is now HIGH movwf TMR1L_SAVE ; Save TIMER1 counts clrf TMR1L ; clear TMR1 counters movfw TMR1H movwf TMR1H_SAVE clrf TMR1H ; clear TMR1 counters movfw TMR1H_MIN ; MSB subwf TMR1H_SAVE, W btfss STATUS, C goto Check_New_TMR1_Min_New ; Saved < Min btfss STATUS, Z goto Check_New_TMR1_Min_x ; Saved > Min ; Saved = Min movfw TMR1L_MIN ; LSB subwf TMR1L_SAVE, W btfsc STATUS, C goto Check_New_TMR1_Min_x ; Saved > Min Check_New_TMR1_Min_New movfw TMR1H_SAVE ; **** New minimum values movwf TMR1H_MIN movwf TIMEOUTH movfw TMR1L_SAVE movwf TMR1L_MIN movwf TIMEOUTL bcf STATUS, C ; Clear the carry before rotate rlf TIMEOUTL, F rlf TIMEOUTH, F bcf STATUS, C ; Clear the carry before rotate rlf TIMEOUTL, F rlf TIMEOUTH, F bcf STATUS, C ; Clear the carry before rotate rlf TIMEOUTL, F rlf TIMEOUTH, F Check_New_TMR1_Min_x return ;---------------------------------------------------------------------------- ; Mode 2 - Manual Baud Rate ; ; INT trigger sets RS-485 enable hold ; UART interrupt clears RS-485 enable hold (primary) ; TIMER1 interrupt Rollover clears RS-485 enable hold (fail safe) 35.5 ms ; Note: TIMER2 interrupt disabled since we're not auto detecting Main_Loop_Mode_2 bsf STATUS, RP0 ; **** select BANK 1 bcf PIE1, TMR2IE ; Disable Timer2 Interrupt bcf STATUS, RP0 ; **** select BANK 0 Main_Loop_Mode_2H clrwdt ; Kick the dog btfsc PORTB, RS232_TXD ; Wait for H-L transition of TXD goto Main_Loop_Mode_2H bcf PORTA, ENABLE_HOLD ; Hold the RS-485 enable clrf TMR1L ; clear TMR1 counters clrf TMR1H bcf OUR_FLAGS, TMR1_ROLLOVER Main_Loop_Mode_2L clrwdt ; Kick the dog btfss PORTB, RS232_TXD ; Wait for L-H transition of TXD goto Main_Loop_Mode_2L goto Main_Loop_Mode_2H Get_Baud_From_Count movf TMR1H_SAVE, 0 ; Check if MSB == 0 btfss STATUS, Z goto Get_Baud_MSB movfw TMR1L_SAVE sublw 0x18 ; Check 115200 btfsc STATUS, C retlw 8 movfw TMR1L_SAVE sublw 0x24 ; Check 57600 btfsc STATUS, C retlw 7 movfw TMR1L_SAVE sublw 0x48 ; Check 38400 btfsc STATUS, C retlw 6 movfw TMR1L_SAVE sublw 0x90 ; Check 19200 btfsc STATUS, C retlw 5 Get_Baud_MSB ; movfw TMR1H_SAVE ; Check 9600 MSB retlw 4 ;---------------------------------------------------------------------------- ; Transmits a single character out the USART ; W = Character to xmit ; Transmit_Char clrwdt ; Kick the dog movwf TXREG bsf STATUS, RP0 ; select BANK 1 Transmit_Pending btfss TXSTA, TRMT goto Transmit_Pending bcf STATUS, RP0 ; select BANK 0 return ;---------------------------------------------------------------------------- ; Sends/Receives a byte via the SPI interface ; ; Data to transmit in W ; Received data returned in W ; Spi_Send movwf SSPBUF ; transmit/receive byte bsf STATUS, RP0 ; select BANK 1 Spi_Pending btfss SSPSTAT, BF ; waiting for byte to send goto Spi_Pending bcf STATUS, RP0 ; select BANK 0 movfw SSPBUF ; read to empty - return in W return ;---------------------------------------------------------------------------- ; Reads the EEPROM ; ; Address to read in W ; Value returned in W ; Read_EEPROM movwf SCRATCH ; Save off address movlw 0x30 ; SPI Master mode, CKP=1, Fosc/4 movwf SSPCON bcf PORTA, EEPROM_CS ; Select the EEPROM movlw 0x03 ; READ command, A8=0 call Spi_Send movfw SCRATCH ; Send ADDRESS byte call Spi_Send movlw 0xFF ; Send DUMMY just to receive call Spi_Send bsf PORTA, EEPROM_CS ; De-Select the EEPROM return ;---------------------------------------------------------------------------- ; Writes the EEPROM ; ; Address in EEPROM_ADDRESS ; Value in W ; Write_EEPROM movwf SCRATCH ; Save off DATA value movlw 0x30 ; SPI Master mode, CKP=1, Fosc/4 movwf SSPCON bcf PORTA, EEPROM_CS ; Select the EEPROM movlw 0x06 ; WRITE ENABLE command call Spi_Send bsf PORTA, EEPROM_CS ; De-Select the EEPROM to set WRITE ENABLE nop bcf PORTA, EEPROM_CS ; Select the EEPROM movlw 0x02 ; WRITE command, A8=0 call Spi_Send movfw EEPROM_ADDRESS ; ADDRESS byte call Spi_Send movfw SCRATCH ; DATA byte call Spi_Send bsf PORTA, EEPROM_CS ; De-Select the EEPROM nop Write_EEPROM_Done bcf PORTA, EEPROM_CS ; Select the EEPROM movlw 0x05 ; READ STATUS REGISTER call Spi_Send movlw 0xFF ; Send DUMMY just to receive call Spi_Send movwf SCRATCH btfsc SCRATCH, 0 goto Write_EEPROM_Done bsf PORTA, EEPROM_CS ; De-Select the EEPROM return ;---------------------------------------------------------------------------- ; Unit programming mode ; Programming_Mode clrf STRING_INDEX Printf_Programming movfw STRING_INDEX call Programming_String xorlw 0x00 btfsc STATUS, Z goto Printf_Programming_end call Transmit_Char incf STRING_INDEX goto Printf_Programming Printf_Programming_end movlw RCV_BUFFER ; Set the RCV buffer pointer to start of buffer movwf RCV_BUFFER_PTR Programming_Main clrwdt ; Kick the dog while we're waiting for a character movfw RCV_LAST_CHAR xorlw 0x0D ; Is this a CR? btfss STATUS, Z goto Programming_Main clrf RCV_LAST_CHAR ; delete the CR movfw RCV_BUFFER_PTR ; Save off Current Buffer ptr (before it moves) movwf CURRENT_PTR Programming_Check_? movlw '?' ; Display Current Settinga xorwf RCV_BUFFER, W btfss STATUS, Z goto Programming_Check_W movlw RCV_BUFFER+0x02 ; Check for correct command/packet length xorwf CURRENT_PTR, W btfss STATUS, Z goto Programming_Error_Response ; Command/Packet OK clrf STRING_INDEX Printf_Startup2 ; Print the startup string (Firmware Version) movfw STRING_INDEX call Startup_String xorlw 0x00 btfsc STATUS, Z goto Printf_Startup2_end call Transmit_Char incf STRING_INDEX goto Printf_Startup2 Printf_Startup2_end movlw 'S' ; Serial Number call Transmit_Char movlw '/' call Transmit_Char movlw 'N' call Transmit_Char movlw ' ' call Transmit_Char movlw 0x10 ; Get S/N byte 1 EEPROM location 0x10 call Read_EEPROM call Print_Hex_Byte movlw 0x11 ; Get S/N byte 2 EEPROM location 0x11 call Read_EEPROM call Print_Hex_Byte movlw 0x12 ; Get S/N byte 3 EEPROM location 0x12 call Read_EEPROM call Print_Hex_Byte movlw 0x13 ; Get S/N byte 4 EEPROM location 0x13 call Read_EEPROM call Print_Hex_Byte movlw 0x0D ; CR call Transmit_Char movlw 'M' ; Current mode call Transmit_Char movlw 'o' call Transmit_Char movlw 'd' call Transmit_Char movlw 'e' call Transmit_Char movlw ' ' call Transmit_Char movlw 0x00 ; Get MODE setting EEPROM location 0x00 call Read_EEPROM call Print_Hex_Byte movlw 0x0D ; CR call Transmit_Char clrf STRING_INDEX Printf_Default_Baud ; Print the Default Baud Rate movfw STRING_INDEX call Default_Baud_String xorlw 0x00 btfsc STATUS, Z goto Printf_Default_Baud_end call Transmit_Char incf STRING_INDEX goto Printf_Default_Baud Printf_Default_Baud_end movlw 0x01 ; Get Default Baud Rate EEPROM location 0x01 call Read_EEPROM call Print_Hex_Byte movlw 0x0D ; CR call Transmit_Char clrf STRING_INDEX Printf_Silent ; Print the Silent Power up mode movfw STRING_INDEX call Silent_String xorlw 0x00 btfsc STATUS, Z goto Printf_Silent_end call Transmit_Char incf STRING_INDEX goto Printf_Silent Printf_Silent_end movlw 0x04 ; Get Silent Mode flag EEPROM location 0x04 call Read_EEPROM call Print_Hex_Byte movlw 0x0D ; CR call Transmit_Char goto Programming_Finish_Command Programming_Check_W movlw 'W' ; WRITE EEPROM command xorwf RCV_BUFFER, W btfss STATUS, Z goto Programming_Check_M movlw RCV_BUFFER+0x06 ; Check for correct command/packet length xorwf CURRENT_PTR, W btfss STATUS, Z goto Programming_Error_Response ; Command/Packet OK movfw RCV_BUFFER+1 ; Get the EEPROM ADDRESS - MSB call Hex_To_Nibble movwf SCRATCH bcf STATUS, C ; Clear the carry before rotate rlf SCRATCH, F ; Rotate to High order nibble rlf SCRATCH, F rlf SCRATCH, F rlf SCRATCH, F movfw RCV_BUFFER+2 ; Get the EEPROM ADDRESS - LSB call Hex_To_Nibble iorwf SCRATCH, W movwf EEPROM_ADDRESS movfw RCV_BUFFER+3 ; Get the EEPROM VALUE - MSB call Hex_To_Nibble movwf SCRATCH bcf STATUS, C ; Clear the carry before rotate rlf SCRATCH, F ; Rotate to High order nibble rlf SCRATCH, F rlf SCRATCH, F rlf SCRATCH, F movfw RCV_BUFFER+4 ; Get the EEPROM VALUE - LSB call Hex_To_Nibble iorwf SCRATCH, W call Write_EEPROM ; Write value to EEPROM movlw 'W' ; EEPROM Write delayed enough already call Transmit_Char movlw 0x0D ; CR call Transmit_Char goto Programming_Finish_Command Programming_Check_M movlw 'M' ; MODE change command xorwf RCV_BUFFER, W btfss STATUS, Z goto Programming_Check_B movlw RCV_BUFFER+0x03 ; Check for correct command/packet length xorwf CURRENT_PTR, W btfss STATUS, Z goto Programming_Error_Response ; Command/Packet OK movfw RCV_BUFFER+1 ; Get the MODE value call Hex_To_Nibble movwf SCRATCH movlw 0x00 ; Mode EEPROM address 0x00 movwf EEPROM_ADDRESS movfw SCRATCH call Write_EEPROM movlw 'M' call Transmit_Char movlw 0x0D call Transmit_Char goto Programming_Finish_Command Programming_Check_B movlw 'B' ; BAUD change command xorwf RCV_BUFFER, W btfss STATUS, Z goto Programming_Check_S movlw RCV_BUFFER+0x03 ; Check for correct command/packet length xorwf CURRENT_PTR, W btfss STATUS, Z goto Programming_Error_Response ; Command/Packet OK movfw RCV_BUFFER+1 ; Get the MODE value call Hex_To_Nibble movwf SCRATCH movlw 0x01 ; BAUD EEPROM address 0x01 movwf EEPROM_ADDRESS movfw SCRATCH call Write_EEPROM movlw 'B' call Transmit_Char movlw 0x0D call Transmit_Char goto Programming_Finish_Command Programming_Check_S movlw 'S' ; SILENT POWER UP change command xorwf RCV_BUFFER, W btfss STATUS, Z goto Programming_Check_R movlw RCV_BUFFER+0x03 ; Check for correct command/packet length xorwf CURRENT_PTR, W btfss STATUS, Z goto Programming_Error_Response ; Command/Packet OK movfw RCV_BUFFER+1 ; Get the MODE value call Hex_To_Nibble movwf SCRATCH movlw 0x04 ; SILENT POWER UP FLAG EEPROM address 0x04 movwf EEPROM_ADDRESS movfw SCRATCH call Write_EEPROM movlw 'S' call Transmit_Char movlw 0x0D call Transmit_Char goto Programming_Finish_Command Programming_Check_R movlw 'R' ; READ EEPROM command xorwf RCV_BUFFER, W btfss STATUS, Z goto Programming_Check_Q movlw RCV_BUFFER+0x04 ; Check for correct command/packet length xorwf CURRENT_PTR, W btfss STATUS, Z goto Programming_Error_Response ; Command/Packet OK movfw RCV_BUFFER+1 ; Get the EEPROM ADDRESS - MSB call Hex_To_Nibble movwf SCRATCH bcf STATUS, C ; Clear the carry before rotate rlf SCRATCH, F ; Rotate to High order nibble rlf SCRATCH, F rlf SCRATCH, F rlf SCRATCH, F movfw RCV_BUFFER+2 ; Get the EEPROM ADDRESS - LSB call Hex_To_Nibble iorwf SCRATCH, W call Read_EEPROM movwf SCRATCH ; Save the data movlw 'R' call Transmit_Char movfw SCRATCH ; Get the saved Data andlw 0xF0 ; Send out the MSB movwf EEPROM_ADDRESS bcf STATUS, C ; Clear the carry before rotate rrf EEPROM_ADDRESS, F rrf EEPROM_ADDRESS, F rrf EEPROM_ADDRESS, F rrf EEPROM_ADDRESS, W call Nibble_To_Hex call Transmit_Char movfw SCRATCH ; Get the saved Data andlw 0x0F ; Send out the LSB call Nibble_To_Hex call Transmit_Char movlw 0x0D call Transmit_Char goto Programming_Finish_Command Programming_Check_Q movlw 'Q' ; QUIT xorwf RCV_BUFFER, W btfsc STATUS, Z goto Programming_End Programming_Error_Response movlw 'E' call Transmit_Char movlw 'r' call Transmit_Char movlw 'r' call Transmit_Char movlw '!' call Transmit_Char movlw 0x0D call Transmit_Char Programming_Finish_Command movlw RCV_BUFFER ; Set the RCV buffer pointer to start of buffer movwf RCV_BUFFER_PTR goto Programming_Main Programming_End movlw RCV_BUFFER ; Set the RCV buffer pointer to start of buffer movwf RCV_BUFFER_PTR movfw RCREG ; Read receive register to clear errors and any data return ;---------------------------------------------------------------------------- ; Prints the hexidecimal byte in W ; Print_Hex_Byte movwf SCRATCH ; Save the data andlw 0xF0 ; Send out the MSB movwf HEX_TEMP bcf STATUS, C ; Clear the carry before rotate rrf HEX_TEMP, F rrf HEX_TEMP, F rrf HEX_TEMP, F rrf HEX_TEMP, W call Nibble_To_Hex call Transmit_Char movfw SCRATCH ; Get the saved Data andlw 0x0F ; Send out the LSB call Nibble_To_Hex call Transmit_Char return ;---------------------------------------------------------------------------- ; Converts a ASCII Hexadecimal value in W to a binary nibble ; returned in W. Returns 0 if ASCII outside of Hexdecimal range. ; Hex_To_Nibble movwf HEX_TEMP xorlw '0' btfsc STATUS, Z retlw 0x00 movfw HEX_TEMP xorlw '1' btfsc STATUS, Z retlw 0x01 movfw HEX_TEMP xorlw '2' btfsc STATUS, Z retlw 0x02 movfw HEX_TEMP xorlw '3' btfsc STATUS, Z retlw 0x03 movfw HEX_TEMP xorlw '4' btfsc STATUS, Z retlw 0x04 movfw HEX_TEMP xorlw '5' btfsc STATUS, Z retlw 0x05 movfw HEX_TEMP xorlw '6' btfsc STATUS, Z retlw 0x06 movfw HEX_TEMP xorlw '6' btfsc STATUS, Z retlw 0x06 movfw HEX_TEMP xorlw '7' btfsc STATUS, Z retlw 0x07 movfw HEX_TEMP xorlw '8' btfsc STATUS, Z retlw 0x08 movfw HEX_TEMP xorlw '9' btfsc STATUS, Z retlw 0x09 movfw HEX_TEMP xorlw 'A' btfsc STATUS, Z retlw 0x0A movfw HEX_TEMP xorlw 'a' btfsc STATUS, Z retlw 0x0A movfw HEX_TEMP xorlw 'B' btfsc STATUS, Z retlw 0x0B movfw HEX_TEMP xorlw 'b' btfsc STATUS, Z retlw 0x0B movfw HEX_TEMP xorlw 'C' btfsc STATUS, Z retlw 0x0C movfw HEX_TEMP xorlw 'c' btfsc STATUS, Z retlw 0x0C movfw HEX_TEMP xorlw 'D' btfsc STATUS, Z retlw 0x0D movfw HEX_TEMP xorlw 'd' btfsc STATUS, Z retlw 0x0D movfw HEX_TEMP xorlw 'E' btfsc STATUS, Z retlw 0x0E movfw HEX_TEMP xorlw 'e' btfsc STATUS, Z retlw 0x0E movfw HEX_TEMP xorlw 'F' btfsc STATUS, Z retlw 0x0F movfw HEX_TEMP xorlw 'f' btfsc STATUS, Z retlw 0x0F retlw 0 ;---------------------------------------------------------------------------- ; ; Interrupt Service Routines Follow. ; ;---------------------------------------------------------------------------- ;---------------------------------------------------------------------------- ; Timer1_Isr ; ; Bump the running time variables ;---------------------------------------------------------------------------- ; Timer1_Isr bsf PORTA, ENABLE_HOLD ; Release the RS-485 enable bsf OUR_FLAGS, TMR1_ROLLOVER bcf PIR1, TMR1IF ; clear the Timer 1 Irq return ;---------------------------------------------------------------------------- ; Timer2_Isr ; ; Bump the running time variables ;---------------------------------------------------------------------------- ; Timer2_Isr incf ONE_MS_TICK ; Increments every 1 ms btfss STATUS, Z goto Timer2_Isr_End incf QUARTER_SEC_TICK ; Increments every 256 ms ; ; movlw 0xFF movwf TMR1H_MIN movwf TMR1L_MIN ; ; Check if new Baud code to save in EEPROM and SPBRG ; movfw CUR_BAUD xorwf NEW_BAUD, W btfsc STATUS, Z goto Timer2_Isr_End movfw NEW_BAUD ; Save new baud code movwf CUR_BAUD call Baud_To_SPBRG ; Make it into a new SPBRG movwf CUR_SPBRG movwf SPBRG Timer2_Isr_End bcf PIR1, TMR2IF ; clear the Timer 2 Irq return PortB_Isr movfw PORTB ; Read to clear interrupt bcf INTCON, RBIF ; clear the INT flag return ;---------------------------------------------------------------------------- ; External Interrupt (INT) ; ; Holds the RS-485 enable ;---------------------------------------------------------------------------- ; Int_Isr bcf PORTA, ENABLE_HOLD ; Hold the RS-485 enable bsf OUR_FLAGS, INT_EVENT clrf TMR1H ; clear TMR1 counters clrf TMR1L bcf OUR_FLAGS, TMR1_ROLLOVER bcf INTCON, INTF ; clear the INT flag return ;---------------------------------------------------------------------------- ; Rcv_Isr ; ; Asynchronous data reception ISR ; Releases RS-485 enable hold any data receive as well as all errors ;---------------------------------------------------------------------------- ; Rcv_Isr bsf PORTA, ENABLE_HOLD ; Release the RS-485 enable btfsc RCSTA, FERR goto Rcv_Isr_Frame_Error btfsc RCSTA, OERR goto Rcv_Isr_Over_Error goto Rcv_Isr_Read Rcv_Isr_Over_Error bcf RCSTA, CREN ; Clear CREN to reset receive logic nop bsf RCSTA, CREN Rcv_Isr_Frame_Error ; incf RCV_ERROR_CNT movfw RCREG ; read data byte into W and DUMP clrf RCV_LAST_CHAR return Rcv_Isr_Read movfw RCREG ; read data byte into W movwf RCV_LAST_CHAR movfw RCV_BUFFER_PTR ; Get RCV buffer pointer movwf FSR movfw RCV_LAST_CHAR movwf INDF ; Save off in RCV buffer movfw RCV_BUFFER_PTR ; Get RCV buffer pointer incf RCV_BUFFER_PTR, W ; Bump RCV buffer pointer for next read andlw 0x4F ; Prevent Buffer overrun movwf RCV_BUFFER_PTR return ;---------------------------------------------------------------------------- ; Main_Isr ; ; Main Interrupt Service routine. Interrupt sources are checked and routed ; to the proper specific ISR. W and STATUS are saved and restored. ;---------------------------------------------------------------------------- ; Main_Isr movwf W_TEMP ; save W in either BANK 0 or BANK 1 movfw STATUS ; save STATUS into W bcf STATUS, RP0 ; select BANK 0 movwf STATUS_TEMP ; save STATUS in temp btfsc PIR1, TMR1IF ; Is TMR1IF Set? call Timer1_Isr btfsc PIR1, TMR2IF ; Is TMR2IF Set? call Timer2_Isr btfsc PIR1, RCIF ; is bit 5 (RCIF) Set? call Rcv_Isr btfsc INTCON, RBIF call PortB_Isr movfw STATUS_TEMP ; move old STATUS into W movwf STATUS ; restore status swapf W_TEMP, F ; swap it so it will be right in the next instruction. swapf W_TEMP, W ; move old W into W retfie ; ;---------------------------------------------------------------------------- ; ORG 0x400 ;---------------------------------------------------------------------------- ; Converts a binary nibble in W to an ASCII Hexadecimal value ; returned in W ; Nibble_To_Hex bcf PCLATH, 0 ; Adjust PCLATH so we're in the same page when bcf PCLATH, 1 ; the add to PCL is done bsf PCLATH, 2 andlw 0x0F addwf PCL, F retlw '0' retlw '1' retlw '2' retlw '3' retlw '4' retlw '5' retlw '6' retlw '7' retlw '8' retlw '9' retlw 'A' retlw 'B' retlw 'C' retlw 'D' retlw 'E' retlw 'F' ;---------------------------------------------------------------------------- ; Converts a Baud rate code in W to baud rate generator value ; Note: Assumes clock rate 7.3728 Mhz ; Baud_To_SPBRG bcf PCLATH, 0 ; Adjust PCLATH so we're in the same page when bcf PCLATH, 1 ; the add to PCL is done bsf PCLATH, 2 andlw 0x0F addwf PCL, F retlw SPBRG_1200 ; 0 = 1200 retlw SPBRG_1200 ; 1 = 1200 retlw SPBRG_2400 ; 2 = 2400 retlw SPBRG_4800 ; 3 = 4800 retlw SPBRG_9600 ; 4 = 9600 retlw SPBRG_19200 ; 5 = 19200 retlw SPBRG_38400 ; 6 = 38400 retlw SPBRG_57600 ; 7 = 57600 retlw SPBRG_115200 ; 8 = 115200 retlw SPBRG_230400 ; 9 = 230400 retlw SPBRG_115200 ; A = Reserved retlw SPBRG_115200 ; B = Reserved retlw SPBRG_115200 ; C = Reserved retlw SPBRG_115200 ; D = Reserved retlw SPBRG_115200 ; E = Reserved retlw SPBRG_115200 ; F = Reserved ;---------------------------------------------------------------------------- ;---------------------------------------------------------------------------- ; ; Strings to print follow ; Index is assumed to be in W Startup_String bcf PCLATH, 0 ; Adjust PCLATH so we're in the same page when bcf PCLATH, 1 ; the add to PCL is done bsf PCLATH, 2 addwf PCL, F RETLW 0D RETLW 'I' RETLW 'n' RETLW 't' RETLW 'e' RETLW 'g' RETLW 'r' RETLW 'i' RETLW 't' RETLW 'y' RETLW ' ' RETLW 'I' RETLW 'n' RETLW 's' RETLW 't' RETLW 'r' RETLW 'u' RETLW 'm' RETLW 'e' RETLW 'n' RETLW 't' RETLW 's' RETLW ' ' RETLW 'X' RETLW 'P' RETLW ' ' RETLW 'C' RETLW 'o' RETLW 'n' RETLW 'v' RETLW 'e' RETLW 'r' RETLW 't' RETLW 'e' RETLW 'r' RETLW ' ' RETLW 'v' RETLW VERSION_MAJOR RETLW '.' RETLW VERSION_MINOR1 RETLW VERSION_MINOR2 RETLW 0D RETLW 00 ; Index is assumed to be in W Programming_String bcf PCLATH, 0 ; Adjust PCLATH so we're in the same page when bcf PCLATH, 1 ; the add to PCL is done bsf PCLATH, 2 addwf PCL, F RETLW 'P' RETLW 'r' RETLW 'o' RETLW 'g' RETLW 'r' RETLW 'a' RETLW 'm' RETLW 'm' RETLW 'i' RETLW 'n' RETLW 'g' RETLW ' ' RETLW 'm' RETLW 'o' RETLW 'd' RETLW 'e' RETLW 0D RETLW 00 ; Index is assumed to be in W Run_String bcf PCLATH, 0 ; Adjust PCLATH so we're in the same page when bcf PCLATH, 1 ; the add to PCL is done bsf PCLATH, 2 addwf PCL, F RETLW 'R' RETLW 'u' RETLW 'n' RETLW ' ' RETLW 'm' RETLW 'o' RETLW 'd' RETLW 'e' RETLW 0D RETLW 00 ; Index is assumed to be in W Silent_String bcf PCLATH, 0 ; Adjust PCLATH so we're in the same page when bcf PCLATH, 1 ; the add to PCL is done bsf PCLATH, 2 addwf PCL, F RETLW 'S' RETLW 'i' RETLW 'l' RETLW 'e' RETLW 'n' RETLW 't' RETLW ' ' RETLW 'P' RETLW 'o' RETLW 'w' RETLW 'e' RETLW 'r' RETLW ' ' RETLW 'U' RETLW 'p' RETLW ' ' RETLW 00 ; Index is assumed to be in W Default_Baud_String bcf PCLATH, 0 ; Adjust PCLATH so we're in the same page when bcf PCLATH, 1 ; the add to PCL is done bsf PCLATH, 2 addwf PCL, F RETLW 'D' RETLW 'e' RETLW 'f' RETLW 'a' RETLW 'u' RETLW 'l' RETLW 't' RETLW ' ' RETLW 'B' RETLW 'a' RETLW 'u' RETLW 'd' RETLW ' ' RETLW 00 ; ; End of Code ; end
30.926052
86
0.482396
d7b14a0cc83e4fe54af588311e9a977ff546bfbd
89,279
asm
Assembly
asg/asm/rdkafka_event.asm
asgkafka/librdkafka
d0a14ca313ed1efafb3924ff33fb6c4d474efe3c
[ "BSD-2-Clause-NetBSD", "Zlib", "BSD-2-Clause", "MIT", "BSD-3-Clause" ]
null
null
null
asg/asm/rdkafka_event.asm
asgkafka/librdkafka
d0a14ca313ed1efafb3924ff33fb6c4d474efe3c
[ "BSD-2-Clause-NetBSD", "Zlib", "BSD-2-Clause", "MIT", "BSD-3-Clause" ]
null
null
null
asg/asm/rdkafka_event.asm
asgkafka/librdkafka
d0a14ca313ed1efafb3924ff33fb6c4d474efe3c
[ "BSD-2-Clause-NetBSD", "Zlib", "BSD-2-Clause", "MIT", "BSD-3-Clause" ]
1
2021-05-05T11:49:00.000Z
2021-05-05T11:49:00.000Z
*PROCESS DUPALIAS * * Compiled by DCC Version 2.25.07 Mar 6 2021 08:51:07 * on Fri Apr 30 15:35:32 2021 * WXTRN @@ZARCH# * * * * Code Section * @CODE ALIAS X'7CD9C4D2C1C6D2C16DC5E5C5D5E3' @CODE CSECT @CODE AMODE ANY @CODE RMODE ANY @DATA ALIAS X'7C998492818692816D85A58595A3' rd_kafka_op_destroy ALIAS X'99846D92818692816D96976D8485A2A39996A8' EXTRN rd_kafka_op_destroy rd_kafka_err2str ALIAS X'99846D92818692816D859999F2A2A399' EXTRN rd_kafka_err2str rd_kafka_op_offset_store ALIAS X'99846D92818692816D96976D968686A285A36D* A2A3969985' EXTRN rd_kafka_op_offset_store rd_kafka_message_get ALIAS X'99846D92818692816D9485A2A28187856D8785A3' EXTRN rd_kafka_message_get rd_kafka_message_get_from_rkm ALIAS X'99846D92818692816D9485A2A28187856* D8785A36D869996946D999294' EXTRN rd_kafka_message_get_from_rkm rd_kafka_topic_partition_new_from_rktp ALIAS X'99846D92818692816DA39697* 89836D978199A389A38996956D9585A66D869996946D9992A397' EXTRN rd_kafka_topic_partition_new_from_rktp rd_kafka_crash ALIAS X'99846D92818692816D839981A288' EXTRN rd_kafka_crash rd_flags2str ALIAS X'99846D86938187A2F2A2A399' EXTRN rd_flags2str * * * * ....... start of rd_kafka_msgq_deq @LNAME1347 DS 0H DC X'00000011' DC C'rd_kafka_msgq_deq' DC X'00' rd_kafka_msgq_deq DCCPRLG CINDEX=1347,BASER=12,FRAME=208,ENTRY=NO,ARCH=* ZARCH,LNAMEADDR=@LNAME1347 * ******* End of Prologue * * * *** if (((do_count))) { LMG 2,3,0(1) ; rkmq LT 15,20(0,1) ; do_count BZ @L221 * *** do { if (((!(rkmq->rkmq_msg_cnt > 0)))) rd_kafka_crash("\ * C:\\asgkafka\\librdkafka\\src\\rdkafka_msg.h",327, __FUNCTION__, (((\ * void *)0)), "assert: " "rkmq->rkmq_msg_cnt > 0"); } while (0); @L213 DS 0H CHSI 16(2),0 BH @L216 LG 15,@lit_1347_0 STG 15,168(0,13) MVGHI 176(13),327 LG 1,@lit_1347_1 LA 1,96(0,1) STG 1,184(0,13) XC 192(8,13),192(13) LA 15,42(0,15) STG 15,200(0,13) LA 1,168(0,13) LG 15,@lit_1347_2 ; rd_kafka_crash @@gen_label2 DS 0H BALR 14,15 @@gen_label3 DS 0H @L216 DS 0H * *** do { if (((!(rkmq->rkmq_msg_bytes >= (int64_t)\ * (rkm->rkm_rkmessage.len+rkm->rkm_rkmessage.key_len))))) rd_kafka_cra\ * sh("C:\\asgkafka\\librdkafka\\src\\rdkafka_msg.h",328, __FUNCTION__,\ * (((void *)0)), "assert: " "rkmq->rkmq_msg_bytes >= (int64_t)(rkm->r\ * km_len+rkm->rkm_key_len)"); } while (0); @L217 DS 0H LG 15,24(0,2) ; offset of rkmq_msg_bytes in rd_kafka_msgq_* s LG 1,32(0,3) ; offset of len in rd_kafka_message_s ALG 1,48(0,3) CGR 15,1 BNL @L220 LG 15,@lit_1347_0 STG 15,168(0,13) MVGHI 176(13),328 LG 1,@lit_1347_1 LA 1,96(0,1) STG 1,184(0,13) XC 192(8,13),192(13) LA 15,74(0,15) STG 15,200(0,13) LA 1,168(0,13) LG 15,@lit_1347_2 ; rd_kafka_crash @@gen_label5 DS 0H BALR 14,15 @@gen_label6 DS 0H @L220 DS 0H * *** * *** rkmq->rkmq_msg_cnt--; L 15,16(0,2) AHI 15,-1 ST 15,16(0,2) * *** rkmq->rkmq_msg_bytes -= rkm->rkm_rkmessage.len\ * +rkm->rkm_rkmessage.key_len; LG 15,24(0,2) LG 1,32(0,3) ; offset of len in rd_kafka_message_s ALG 1,48(0,3) SLGR 15,1 STG 15,24(0,2) * *** } @L212 DS 0H * *** * *** do { if (((rkm)->rkm_link .tqe_next) != (((void *)0))) (r\ * km)->rkm_link .tqe_next->rkm_link .tqe_prev = (rkm)->rkm_link .tqe_p\ * rev; else (&rkmq->rkmq_msgs)->tqh_last = (rkm)->rkm_link .tqe_prev; \ * *(rkm)->rkm_link .tqe_prev = (rkm)->rkm_link .tqe_next; ; } while ( \ * 0); @L221 DS 0H LTG 15,72(0,3) ; offset of rkm_link in rd_kafka_msg_s BE @L224 LG 15,72(0,3) ; offset of rkm_link in rd_kafka_msg_s LG 1,80(0,3) ; offset of tqe_prev in 0000040 STG 1,80(0,15) ; offset of tqe_prev in 0000040 B @L225 DS 0D @FRAMESIZE_1347 DC F'208' @lit_1347_2 DC AD(rd_kafka_crash) @lit_1347_1 DC AD(@DATA) @lit_1347_0 DC AD(@strings@) @L224 DS 0H LG 15,80(0,3) ; offset of tqe_prev in 0000040 STG 15,8(0,2) ; offset of tqh_last in rd_kafka_msgs_head_s @L225 DS 0H LG 15,80(0,3) ; offset of tqe_prev in 0000040 LG 1,72(0,3) ; offset of rkm_link in rd_kafka_msg_s STG 1,0(0,15) * *** * *** return rkm; LGR 15,3 * *** } * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_msgq_deq" * (FUNCTION #1347) * @AUTO#rd_kafka_msgq_deq DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_msgq_enq @LNAME1357 DS 0H DC X'00000011' DC C'rd_kafka_msgq_enq' DC X'00' rd_kafka_msgq_enq DCCPRLG CINDEX=1357,BASER=0,FRAME=168,SAVEAREA=NO,ENT* RY=NO,ARCH=ZARCH,LNAMEADDR=@LNAME1357 * ******* End of Prologue * * * *** do { (rkm)->rkm_link .tqe_next = (((void *)0)); (rkm)\ * ->rkm_link .tqe_prev = (&rkmq->rkmq_msgs)->tqh_last; *(&rkmq->rkmq_m\ * sgs)->tqh_last = (rkm); (&rkmq->rkmq_msgs)->tqh_last = &(rkm)->rkm_l\ * ink .tqe_next; } while ( 0); LG 15,0(0,1) ; rkmq LG 1,8(0,1) ; rkm @L244 DS 0H LGHI 2,0 ; 0 STG 2,72(0,1) ; offset of rkm_link in rd_kafka_msg_s LG 2,8(0,15) ; offset of tqh_last in rd_kafka_msgs_head_s STG 2,80(0,1) ; offset of tqe_prev in 0000040 LG 2,8(0,15) ; offset of tqh_last in rd_kafka_msgs_head_s STG 1,0(0,2) LA 2,72(0,1) STG 2,8(0,15) ; offset of tqh_last in rd_kafka_msgs_head_s * *** rkmq->rkmq_msg_bytes += rkm->rkm_rkmessage.len+rkm->rk\ * m_rkmessage.key_len; LG 2,24(0,15) LG 3,32(0,1) ; offset of len in rd_kafka_message_s ALG 3,48(0,1) ALGR 2,3 STG 2,24(0,15) * *** return (int)++rkmq->rkmq_msg_cnt; L 1,16(0,15) AHI 1,1 ST 1,16(0,15) LGFR 15,1 * *** } * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue * * DSECT for automatic variables in "rd_kafka_msgq_enq" * (FUNCTION #1357) * @AUTO#rd_kafka_msgq_enq DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_type rd_kafka_event_type ALIAS X'99846D92818692816D85A58595A36DA3A89785' @LNAME644 DS 0H DC X'00000013' DC C'rd_kafka_event_type' DC X'00' rd_kafka_event_type DCCPRLG CINDEX=644,BASER=12,FRAME=168,SAVEAREA=NO,E* NTRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME644 * ******* End of Prologue * * * *** return rkev ? rkev->rko_evtype : 0x0; LG 15,0(0,1) ; rkev LTGR 1,15 BZ @L656 L 15,20(0,15) ; offset of rko_evtype in rd_kafka_op_s B @L657 @L656 DS 0H LHI 15,0 ; 0 @L657 DS 0H LGFR 15,15 * *** } * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_type" * (FUNCTION #644) * @AUTO#rd_kafka_event_type DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_name rd_kafka_event_name ALIAS X'99846D92818692816D85A58595A36D95819485' @LNAME645 DS 0H DC X'00000013' DC C'rd_kafka_event_name' DC X'00' rd_kafka_event_name DCCPRLG CINDEX=645,BASER=12,FRAME=168,SAVEAREA=NO,E* NTRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME645 * ******* End of Prologue * * * *** switch (rkev ? rkev->rko_evtype : 0x0) B @L658 DS 0D @lit_645_9 DC AD(@strings@) * *** { * *** case 0x0: @L662 DS 0H * *** return "(NONE)"; LG 15,@lit_645_9 LA 15,148(0,15) B @ret_lab_645 * *** case 0x1: @L663 DS 0H * *** return "DeliveryReport"; LG 15,@lit_645_9 LA 15,156(0,15) B @ret_lab_645 * *** case 0x2: @L664 DS 0H * *** return "Fetch"; LG 15,@lit_645_9 LA 15,172(0,15) B @ret_lab_645 * *** case 0x4: @L665 DS 0H * *** return "Log"; LG 15,@lit_645_9 LA 15,178(0,15) B @ret_lab_645 * *** case 0x8: @L666 DS 0H * *** return "Error"; LG 15,@lit_645_9 LA 15,182(0,15) B @ret_lab_645 * *** case 0x10: @L667 DS 0H * *** return "Rebalance"; LG 15,@lit_645_9 LA 15,188(0,15) B @ret_lab_645 * *** case 0x20: @L668 DS 0H * *** return "OffsetCommit"; LG 15,@lit_645_9 LA 15,198(0,15) B @ret_lab_645 * *** case 0x40: @L669 DS 0H * *** return "Stats"; LG 15,@lit_645_9 LA 15,212(0,15) B @ret_lab_645 * *** case 100: @L670 DS 0H * *** return "CreateTopicsResult"; LG 15,@lit_645_9 LA 15,218(0,15) B @ret_lab_645 * *** case 101: @L671 DS 0H * *** return "DeleteTopicsResult"; LG 15,@lit_645_9 LA 15,238(0,15) B @ret_lab_645 * *** case 102: @L672 DS 0H * *** return "CreatePartitionsResult"; LG 15,@lit_645_9 LA 15,258(0,15) B @ret_lab_645 * *** case 103: @L673 DS 0H * *** return "AlterConfigsResult"; LG 15,@lit_645_9 LA 15,282(0,15) B @ret_lab_645 * *** case 104: @L674 DS 0H * *** return "DescribeConfigsResult"; LG 15,@lit_645_9 LA 15,302(0,15) B @ret_lab_645 * *** case 105: @L675 DS 0H * *** return "DeleteRecordsResult"; LG 15,@lit_645_9 LA 15,324(0,15) B @ret_lab_645 * *** case 106: @L676 DS 0H * *** return "DeleteGroupsResult"; LG 15,@lit_645_9 LA 15,344(0,15) B @ret_lab_645 * *** case 107: @L677 DS 0H * *** return "DeleteConsumerGroupOffsetsResult"; LG 15,@lit_645_9 LA 15,364(0,15) B @ret_lab_645 * *** case 0x100: @L678 DS 0H * *** return "SaslOAuthBearerTokenRefresh"; LG 15,@lit_645_9 LA 15,398(0,15) B @ret_lab_645 * *** default: * *** return "?unknown?"; @L679 DS 0H LG 15,@lit_645_9 LA 15,426(0,15) B @ret_lab_645 * *** } @L658 DS 0H LG 15,0(0,1) ; rkev LTGR 1,15 BZ @L659 L 15,20(0,15) ; offset of rko_evtype in rd_kafka_op_s B @L660 @L659 DS 0H LHI 15,0 ; 0 @L660 DS 0H CHI 15,16 BNL @@gen_label10 CHI 15,8 BNL @@gen_label11 CLFI 15,X'00000004' BH @L679 LGFR 15,15 LA 1,@@gen_label12 SLLG 15,15,3(0) LG 15,0(1,15) B 0(15,12) @@gen_label12 DS 0D DC AD(@L662-@REGION_645_1) DC AD(@L663-@REGION_645_1) DC AD(@L664-@REGION_645_1) DC AD(@L679-@REGION_645_1) DC AD(@L665-@REGION_645_1) @@gen_label11 DS 0H CHI 15,8 BE @L666 B @L679 @@gen_label10 DS 0H CHI 15,32 BNL @@gen_label13 CHI 15,16 BE @L667 B @L679 @@gen_label13 DS 0H CHI 15,64 BNL @@gen_label14 CHI 15,32 BE @L668 B @L679 @@gen_label14 DS 0H CHI 15,100 BNL @@gen_label15 CHI 15,64 BE @L669 B @L679 @@gen_label15 DS 0H CHI 15,256 BNL @@gen_label16 AHI 15,-100 CLFI 15,X'00000007' BH @L679 LGFR 15,15 LA 1,@@gen_label17 SLLG 15,15,3(0) LG 15,0(1,15) B 0(15,12) @@gen_label17 DS 0D DC AD(@L670-@REGION_645_1) DC AD(@L671-@REGION_645_1) DC AD(@L672-@REGION_645_1) DC AD(@L673-@REGION_645_1) DC AD(@L674-@REGION_645_1) DC AD(@L675-@REGION_645_1) DC AD(@L676-@REGION_645_1) DC AD(@L677-@REGION_645_1) @@gen_label16 DS 0H CHI 15,256 BE @L678 B @L679 * *** } @ret_lab_645 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_name" * (FUNCTION #645) * @AUTO#rd_kafka_event_name DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_destroy rd_kafka_event_destroy ALIAS X'99846D92818692816D85A58595A36D8485A2A399* 96A8' @LNAME646 DS 0H DC X'00000016' DC C'rd_kafka_event_destroy' DC X'00' rd_kafka_event_destroy DCCPRLG CINDEX=646,BASER=12,FRAME=176,ENTRY=YES,* ARCH=ZARCH,LNAMEADDR=@LNAME646 * ******* End of Prologue * * * *** if (((!rkev))) LG 15,0(0,1) ; rkev LTGR 1,15 BZ @ret_lab_646 * *** return; @L680 DS 0H * *** rd_kafka_op_destroy(rkev); STG 15,168(0,13) LA 1,168(0,13) LG 15,@lit_646_30 ; rd_kafka_op_destroy @@gen_label19 DS 0H BALR 14,15 @@gen_label20 DS 0H * *** } @ret_lab_646 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DS 0D @FRAMESIZE_646 DC F'176' @lit_646_30 DC AD(rd_kafka_op_destroy) DROP 12 * * DSECT for automatic variables in "rd_kafka_event_destroy" * (FUNCTION #646) * @AUTO#rd_kafka_event_destroy DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_message_next rd_kafka_event_message_next ALIAS X'99846D92818692816D85A58595A36D9485A* 2A28187856D9585A7A3' @LNAME647 DS 0H DC X'0000001B' DC C'rd_kafka_event_message_next' DC X'00' rd_kafka_event_message_next DCCPRLG CINDEX=647,BASER=12,FRAME=200,ENTRY* =YES,ARCH=ZARCH,LNAMEADDR=@LNAME647 * ******* End of Prologue * * * *** rd_kafka_op_t *rko = rkev; LG 2,0(0,1) ; rkev * *** rd_kafka_msg_t *rkm; * *** rd_kafka_msgq_t *rkmq, *rkmq2; * *** rd_kafka_message_t *rkmessage; * *** * *** switch (rkev->rko_type) B @L681 DS 0D @FRAMESIZE_647 DC F'200' @lit_647_33 DC AD(rd_kafka_message_get) @lit_647_35 DC AD(rd_kafka_op_offset_store) @lit_647_38 DC AD(rd_kafka_msgq_deq) @lit_647_39 DC AD(rd_kafka_msgq_enq) @lit_647_40 DC AD(rd_kafka_message_get_from_rkm) * *** { * *** case RD_KAFKA_OP_DR: @L683 DS 0H * *** rkmq = &rko->rko_u.dr.msgq; LA 15,120(0,2) * *** rkmq2 = &rko->rko_u.dr.msgq2; LA 4,152(0,2) * *** break; B @L682 * *** * *** case RD_KAFKA_OP_FETCH: @L684 DS 0H * *** * *** if (rko->rko_u.fetch.evidx++ > 0) L 15,288(0,2) LR 1,15 AHI 1,1 ST 1,288(0,2) LTR 15,15 BNH @L685 * *** return ((void *)0); LGHI 15,0 ; 0 B @ret_lab_647 @L685 DS 0H * *** * *** rkmessage = rd_kafka_message_get(rko); STG 2,176(0,13) LA 1,176(0,13) LG 15,@lit_647_33 ; rd_kafka_message_get @@gen_label22 DS 0H BALR 14,15 @@gen_label23 DS 0H LGR 3,15 * *** if (((!rkmessage))) LTGR 15,3 BNZ @L686 * *** return ((void *)0); LGHI 15,0 ; 0 B @ret_lab_647 @L686 DS 0H * *** * *** * *** rd_kafka_op_offset_store(((void *)0), rko); XC 176(8,13),176(13) STG 2,184(0,13) LA 1,176(0,13) LG 15,@lit_647_35 ; rd_kafka_op_offset_store @@gen_label25 DS 0H BALR 14,15 @@gen_label26 DS 0H * *** * *** return rkmessage; LGR 15,3 B @ret_lab_647 * *** * *** * *** default: * *** return ((void *)0); @L687 DS 0H LGHI 15,0 ; 0 B @ret_lab_647 * *** } @L681 DS 0H L 15,16(0,2) ; offset of rko_type in rd_kafka_op_s CHI 15,1 BL @L687 CHI 15,1 BE @L684 CHI 15,4 BE @L683 B @L687 @L682 DS 0H * *** * *** if (((!(rkm = ((&rkmq->rkmq_msgs)->tqh_first))))) LG 3,0(0,15) ; rkmq LTGR 1,3 BNZ @L688 * *** return ((void *)0); LGHI 15,0 ; 0 B @ret_lab_647 @L688 DS 0H * *** * *** rd_kafka_msgq_deq(rkmq, rkm, 1); STG 15,176(0,13) STG 3,184(0,13) MVGHI 192(13),1 LA 1,176(0,13) LG 15,@lit_647_38 ; rd_kafka_msgq_deq @@gen_label28 DS 0H BALR 14,15 @@gen_label29 DS 0H * *** * *** * *** rd_kafka_msgq_enq(rkmq2, rkm); STG 4,176(0,13) STG 3,184(0,13) LA 1,176(0,13) LG 15,@lit_647_39 ; rd_kafka_msgq_enq @@gen_label30 DS 0H BALR 14,15 @@gen_label31 DS 0H * *** * *** return rd_kafka_message_get_from_rkm(rko, rkm); STMG 2,3,176(13) LA 1,176(0,13) LG 15,@lit_647_40 ; rd_kafka_message_get_from_rkm @@gen_label32 DS 0H BALR 14,15 @@gen_label33 DS 0H * *** } @ret_lab_647 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_message_next" * (FUNCTION #647) * @AUTO#rd_kafka_event_message_next DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_message_array rd_kafka_event_message_array ALIAS X'99846D92818692816D85A58595A36D9485* A2A28187856D81999981A8' @LNAME648 DS 0H DC X'0000001C' DC C'rd_kafka_event_message_array' DC X'00' rd_kafka_event_message_array DCCPRLG CINDEX=648,BASER=12,FRAME=184,ENTR* Y=YES,ARCH=ZARCH,LNAMEADDR=@LNAME648 LGR 3,1 ; ptr to parm area * ******* End of Prologue * * * *** size_t cnt = 0; LGHI 2,0 ; 0 * *** const rd_kafka_message_t *rkmessage; * *** * *** while (cnt < size && (rkmessage = rd_kafka_event_message_ne\ * xt(rkev))) B @L692 DS 0D @FRAMESIZE_648 DC F'184' @lit_648_43 DC AD(rd_kafka_event_message_next) @L691 DS 0H * *** rkmessages[cnt++] = rkmessage; LG 1,8(0,3) ; rkmessages LGR 4,2 AGHI 2,1 SLLG 4,4,3(0) ; *0x8 STG 15,0(4,1) @L692 DS 0H CLG 2,16(0,3) BNL @L693 LG 15,0(0,3) ; rkev STG 15,176(0,13) LA 1,176(0,13) LG 15,@lit_648_43 ; rd_kafka_event_message_next @@gen_label35 DS 0H BALR 14,15 @@gen_label36 DS 0H LTGR 1,15 BNZ @L691 @L693 DS 0H * *** * *** return cnt; LGR 15,2 * *** } * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_message_array" * (FUNCTION #648) * @AUTO#rd_kafka_event_message_array DSECT DS XL168 rd_kafka_event_message_array#cnt#0 DS 8XL1 ; cnt * @CODE CSECT * * * * ....... start of rd_kafka_event_message_count rd_kafka_event_message_count ALIAS X'99846D92818692816D85A58595A36D9485* A2A28187856D8396A495A3' @LNAME649 DS 0H DC X'0000001C' DC C'rd_kafka_event_message_count' DC X'00' rd_kafka_event_message_count DCCPRLG CINDEX=649,BASER=12,FRAME=168,SAVE* AREA=NO,ENTRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME649 * ******* End of Prologue * * * *** switch (rkev->rko_evtype) B @L694 * *** { * *** case 0x1: @L696 DS 0H * *** return (size_t)rkev->rko_u.dr.msgq.rkmq_msg_cn\ * t; LG 15,0(0,1) ; rkev LGF 15,136(0,15) B @ret_lab_649 * *** case 0x2: @L697 DS 0H * *** return 1; LGHI 15,1 ; 1 B @ret_lab_649 * *** default: * *** return 0; @L698 DS 0H LGHI 15,0 ; 0 B @ret_lab_649 * *** } @L694 DS 0H LG 15,0(0,1) ; rkev L 15,20(0,15) ; offset of rko_evtype in rd_kafka_op_s CHI 15,1 BL @L698 CHI 15,1 BE @L696 CHI 15,2 BE @L697 B @L698 * *** } @ret_lab_649 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_message_count" * (FUNCTION #649) * @AUTO#rd_kafka_event_message_count DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_config_string rd_kafka_event_config_string ALIAS X'99846D92818692816D85A58595A36D8396* 958689876DA2A399899587' @LNAME650 DS 0H DC X'0000001C' DC C'rd_kafka_event_config_string' DC X'00' rd_kafka_event_config_string DCCPRLG CINDEX=650,BASER=12,FRAME=168,SAVE* AREA=NO,ENTRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME650 * ******* End of Prologue * * * *** switch (rkev->rko_evtype) B @L699 * *** { * *** * *** * *** * *** * *** default: * *** return ((void *)0); @L701 DS 0H LGHI 15,0 ; 0 B @ret_lab_650 * *** } @L699 DS 0H B @L701 * *** } @ret_lab_650 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_config_string" * (FUNCTION #650) * @AUTO#rd_kafka_event_config_string DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_error rd_kafka_event_error ALIAS X'99846D92818692816D85A58595A36D8599999699' @LNAME651 DS 0H DC X'00000014' DC C'rd_kafka_event_error' DC X'00' rd_kafka_event_error DCCPRLG CINDEX=651,BASER=0,FRAME=168,SAVEAREA=NO,E* NTRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME651 * ******* End of Prologue * * * *** return rkev->rko_err; LG 15,0(0,1) ; rkev LGF 15,32(0,15) * *** } * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue * * DSECT for automatic variables in "rd_kafka_event_error" * (FUNCTION #651) * @AUTO#rd_kafka_event_error DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_error_string rd_kafka_event_error_string ALIAS X'99846D92818692816D85A58595A36D85999* 996996DA2A399899587' @LNAME652 DS 0H DC X'0000001B' DC C'rd_kafka_event_error_string' DC X'00' rd_kafka_event_error_string DCCPRLG CINDEX=652,BASER=12,FRAME=176,ENTRY* =YES,ARCH=ZARCH,LNAMEADDR=@LNAME652 * ******* End of Prologue * * * *** switch (rkev->rko_type) LG 15,0(0,1) ; rkev B @L702 DS 0D @FRAMESIZE_652 DC F'176' @lit_652_48 DC FD'3' 0x0000000000000003 @lit_652_49 DC FD'549755813888' 0x0000008000000000 @lit_652_50 DC AD(rd_kafka_err2str) * *** { * *** case RD_KAFKA_OP_ERR: * *** case RD_KAFKA_OP_CONSUMER_ERR: @L705 DS 0H * *** if (rkev->rko_u.err.errstr) LTG 1,120(0,15) ; offset of errstr in 0000065 BZ @L703 * *** return rkev->rko_u.err.errstr; LG 15,120(0,15) ; offset of errstr in 0000065 B @ret_lab_652 * *** break; * *** case RD_KAFKA_OP_ADMIN_RESULT: @L707 DS 0H * *** if (rkev->rko_u.admin_result.errstr) LTG 1,120(0,15) ; offset of errstr in 0000079 BZ @L703 * *** return rkev->rko_u.admin_result.errstr\ * ; LG 15,120(0,15) ; offset of errstr in 0000079 B @ret_lab_652 * *** break; * *** default: * *** break; * *** } @L702 DS 0H L 1,16(0,15) ; offset of rko_type in rd_kafka_op_s AHI 1,-2 CLFI 1,X'00000027' BH @L703 LGFR 1,1 LGHI 2,1 SLLG 2,2,0(1) LGR 1,2 NG 1,@lit_652_48 BNZ @L705 NG 2,@lit_652_49 BNZ @L707 @L703 DS 0H * *** * *** return rd_kafka_err2str(rkev->rko_err); LGF 15,32(0,15) STG 15,168(0,13) LA 1,168(0,13) LG 15,@lit_652_50 ; rd_kafka_err2str @@gen_label40 DS 0H BALR 14,15 @@gen_label41 DS 0H * *** } @ret_lab_652 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_error_string" * (FUNCTION #652) * @AUTO#rd_kafka_event_error_string DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_error_is_fatal rd_kafka_event_error_is_fatal ALIAS X'99846D92818692816D85A58595A36D859* 99996996D89A26D8681A38193' @LNAME653 DS 0H DC X'0000001D' DC C'rd_kafka_event_error_is_fatal' DC X'00' rd_kafka_event_error_is_fatal DCCPRLG CINDEX=653,BASER=0,FRAME=168,SAVE* AREA=NO,ENTRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME653 * ******* End of Prologue * * * *** return rkev->rko_u.err.fatal; LG 15,0(0,1) ; rkev LGF 15,304(0,15) * *** } * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue * * DSECT for automatic variables in "rd_kafka_event_error_is_fatal" * (FUNCTION #653) * @AUTO#rd_kafka_event_error_is_fatal DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_opaque rd_kafka_event_opaque ALIAS X'99846D92818692816D85A58595A36D96978198A48* 5' @LNAME654 DS 0H DC X'00000015' DC C'rd_kafka_event_opaque' DC X'00' rd_kafka_event_opaque DCCPRLG CINDEX=654,BASER=12,FRAME=168,SAVEAREA=NO* ,ENTRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME654 * ******* End of Prologue * * * *** switch (rkev->rko_type & ~((int)(1 << 29) | (int)(1 << 30))\ * ) LG 15,0(0,1) ; rkev B @L710 * *** { * *** case RD_KAFKA_OP_OFFSET_COMMIT: @L712 DS 0H * *** return rkev->rko_u.offset_commit.opaque; LG 15,128(0,15) ; offset of opaque in 0000059 B @ret_lab_654 * *** case RD_KAFKA_OP_ADMIN_RESULT: @L713 DS 0H * *** return rkev->rko_u.admin_result.opaque; LG 15,168(0,15) ; offset of opaque in 0000079 B @ret_lab_654 * *** default: * *** return ((void *)0); @L714 DS 0H LGHI 15,0 ; 0 B @ret_lab_654 * *** } @L710 DS 0H L 1,16(0,15) ; offset of rko_type in rd_kafka_op_s NILH 1,40959 CHI 1,6 BL @L714 CHI 1,6 BE @L712 CHI 1,41 BE @L713 B @L714 * *** } @ret_lab_654 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_opaque" * (FUNCTION #654) * @AUTO#rd_kafka_event_opaque DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_log rd_kafka_event_log ALIAS X'99846D92818692816D85A58595A36D939687' @LNAME655 DS 0H DC X'00000012' DC C'rd_kafka_event_log' DC X'00' rd_kafka_event_log DCCPRLG CINDEX=655,BASER=12,FRAME=168,SAVEAREA=NO,EN* TRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME655 * ******* End of Prologue * * * *** if (((rkev->rko_evtype != 0x4))) LG 15,0(0,1) ; rkev CHSI 20(15),4 BE @L715 * *** return -1; LGHI 15,-1 ; -1 B @ret_lab_655 @L715 DS 0H * *** * *** if (((fac != ((void *)0)))) LG 2,8(0,1) ; fac LTGR 3,2 BE @L716 * *** *fac = rkev->rko_u.log.fac; LA 3,112(0,15) STG 3,0(0,2) ; fac @L716 DS 0H * *** if (((str != ((void *)0)))) LG 2,16(0,1) ; str LTGR 3,2 BE @L717 * *** *str = rkev->rko_u.log.str; LG 3,184(0,15) ; offset of str in 0000075 STG 3,0(0,2) ; str @L717 DS 0H * *** if (((level != ((void *)0)))) LG 1,24(0,1) ; level LTGR 2,1 BE @L718 * *** *level = rkev->rko_u.log.level; L 15,176(0,15) ; offset of level in 0000075 ST 15,0(0,1) ; level @L718 DS 0H * *** * *** return 0; LGHI 15,0 ; 0 * *** } @ret_lab_655 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_log" * (FUNCTION #655) * @AUTO#rd_kafka_event_log DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_debug_contexts rd_kafka_event_debug_contexts ALIAS X'99846D92818692816D85A58595A36D848* 582A4876D839695A385A7A3A2' @LNAME656 DS 0H DC X'0000001D' DC C'rd_kafka_event_debug_contexts' DC X'00' rd_kafka_event_debug_contexts DCCPRLG CINDEX=656,BASER=12,FRAME=200,ENT* RY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME656 DCCPRV REG=15 ; Get PRV from DVT * ******* End of Prologue * * * *** static const char *names[] = { * *** "generic", * *** "broker", * *** "topic", * *** "metadata", * *** "feature", * *** "queue", * *** "msg", * *** "protocol", * *** "cgrp", * *** "security", * *** "fetch", * *** "interceptor", * *** "plugin", * *** "consumer", * *** "admin", * *** "eos", * *** "mock", * *** ((void *)0) * *** if (((rkev->rko_evtype != 0x4))) LG 2,0(0,1) ; rkev CHSI 20(2),4 BE @L719 * *** return -1; LGHI 15,-1 ; -1 B @ret_lab_656 DS 0D @FRAMESIZE_656 DC F'200' @lit_656_57 DC AD(rd_flags2str) @lit_656_56 DC Q(@@STATIC) @L719 DS 0H * *** rd_flags2str(dst, dstsize, names, rkev->rko_u.log.ctx)\ * ; LG 3,8(0,1) ; dst STG 3,168(0,13) LG 1,16(0,1) ; dstsize STG 1,176(0,13) LGF 1,@lit_656_56 LA 15,0(1,15) LA 15,1752(0,15) STG 15,184(0,13) LGF 15,192(0,2) STG 15,192(0,13) LA 1,168(0,13) LG 15,@lit_656_57 ; rd_flags2str @@gen_label47 DS 0H BALR 14,15 @@gen_label48 DS 0H * *** return 0; LGHI 15,0 ; 0 * *** } @ret_lab_656 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_debug_contexts" * (FUNCTION #656) * @AUTO#rd_kafka_event_debug_contexts DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_stats rd_kafka_event_stats ALIAS X'99846D92818692816D85A58595A36DA2A381A3A2' @LNAME657 DS 0H DC X'00000014' DC C'rd_kafka_event_stats' DC X'00' rd_kafka_event_stats DCCPRLG CINDEX=657,BASER=0,FRAME=168,SAVEAREA=NO,E* NTRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME657 * ******* End of Prologue * * * *** return rkev->rko_u.stats.json; LG 15,0(0,1) ; rkev LG 15,112(0,15) ; offset of rko_u in rd_kafka_op_s * *** } * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue * * DSECT for automatic variables in "rd_kafka_event_stats" * (FUNCTION #657) * @AUTO#rd_kafka_event_stats DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_topic_partition_list rd_kafka_event_topic_partition_list ALIAS X'99846D92818692816D85A58595A* 36DA3969789836D978199A389A38996956D9389A2A3' @LNAME658 DS 0H DC X'00000023' DC C'rd_kafka_event_topic_partition_l' DC C'ist' DC X'00' rd_kafka_event_topic_partition_list DCCPRLG CINDEX=658,BASER=12,FRAME=1* 68,SAVEAREA=NO,ENTRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME658 * ******* End of Prologue * * * *** switch (rkev->rko_evtype) LG 15,0(0,1) ; rkev B @L720 * *** { * *** case 0x10: @L722 DS 0H * *** return rkev->rko_u.rebalance.partitions; LG 15,112(0,15) ; offset of rko_u in rd_kafka_op_s B @ret_lab_658 * *** case 0x20: @L723 DS 0H * *** return rkev->rko_u.offset_commit.partitions; LG 15,112(0,15) ; offset of rko_u in rd_kafka_op_s B @ret_lab_658 * *** default: * *** return ((void *)0); @L724 DS 0H LGHI 15,0 ; 0 B @ret_lab_658 * *** } @L720 DS 0H L 1,20(0,15) ; offset of rko_evtype in rd_kafka_op_s CHI 1,16 BL @L724 CHI 1,16 BE @L722 CHI 1,32 BE @L723 B @L724 * *** } @ret_lab_658 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_topic_partition_l * ist" * (FUNCTION #658) * @AUTO#rd_kafka_event_topic_partition_list DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_topic_partition rd_kafka_event_topic_partition ALIAS X'99846D92818692816D85A58595A36DA3* 969789836D978199A389A3899695' @LNAME659 DS 0H DC X'0000001E' DC C'rd_kafka_event_topic_partition' DC X'00' rd_kafka_event_topic_partition DCCPRLG CINDEX=659,BASER=12,FRAME=184,EN* TRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME659 * ******* End of Prologue * * LG 2,0(0,1) ; rkev * *** rd_kafka_topic_partition_t *rktpar; * *** * *** if (((!rkev->rko_rktp))) LTG 15,56(0,2) ; offset of rko_rktp in rd_kafka_op_s BNZ @L725 * *** return ((void *)0); LGHI 15,0 ; 0 B @ret_lab_659 DS 0D @FRAMESIZE_659 DC F'184' @lit_659_62 DC AD(rd_kafka_topic_partition_new_from_rktp) @L725 DS 0H * *** * *** rktpar = rd_kafka_topic_partition_new_from_rktp(rkev->rko_r\ * ktp); LG 15,56(0,2) STG 15,176(0,13) LA 1,176(0,13) LG 15,@lit_659_62 ; rd_kafka_topic_partition_new_from_rktp @@gen_label50 DS 0H BALR 14,15 @@gen_label51 DS 0H * *** * *** switch (rkev->rko_type) B @L726 * *** { * *** case RD_KAFKA_OP_ERR: * *** case RD_KAFKA_OP_CONSUMER_ERR: @L729 DS 0H * *** rktpar->offset = rkev->rko_u.err.offset; LG 1,112(0,2) ; offset of rko_u in rd_kafka_op_s STG 1,16(0,15) ; offset of offset in rd_kafka_topic_partiti* on_s * *** break; B @L727 * *** default: * *** break; * *** } @L726 DS 0H L 1,16(0,2) ; offset of rko_type in rd_kafka_op_s AHI 1,-2 CLFI 1,X'00000001' BNH @L729 @L727 DS 0H * *** * *** rktpar->err = rkev->rko_err; L 1,32(0,2) ; offset of rko_err in rd_kafka_op_s ST 1,48(0,15) ; offset of err in rd_kafka_topic_partition_* s * *** * *** return rktpar; * *** * *** } @ret_lab_659 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_topic_partition" * (FUNCTION #659) * @AUTO#rd_kafka_event_topic_partition DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_CreateTopics_result rd_kafka_event_$Create$Topics_result ALIAS X'99846D92818692816D85A58595* A36DC3998581A385E396978983A26D9985A2A493A3' @LNAME660 DS 0H DC X'00000022' DC C'rd_kafka_event_CreateTopics_resu' DC C'lt' DC X'00' rd_kafka_event_$Create$Topics_result DCCPRLG CINDEX=660,BASER=12,FRAME=* 168,SAVEAREA=NO,ENTRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME660 * ******* End of Prologue * * * *** if (!rkev || rkev->rko_evtype != 100) LG 15,0(0,1) ; rkev LTGR 1,15 BZ @L732 CHSI 20(15),100 BE @L731 @L732 DS 0H * *** return ((void *)0); LGHI 15,0 ; 0 B @ret_lab_660 * *** else @L731 DS 0H * *** return (const rd_kafka_CreateTopics_result_t *\ * )rkev; * *** } @ret_lab_660 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_CreateTopics_resu * lt" * (FUNCTION #660) * @AUTO#rd_kafka_event_$Create$Topics_result DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_DeleteTopics_result rd_kafka_event_$Delete$Topics_result ALIAS X'99846D92818692816D85A58595* A36DC4859385A385E396978983A26D9985A2A493A3' @LNAME661 DS 0H DC X'00000022' DC C'rd_kafka_event_DeleteTopics_resu' DC C'lt' DC X'00' rd_kafka_event_$Delete$Topics_result DCCPRLG CINDEX=661,BASER=12,FRAME=* 168,SAVEAREA=NO,ENTRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME661 * ******* End of Prologue * * * *** if (!rkev || rkev->rko_evtype != 101) LG 15,0(0,1) ; rkev LTGR 1,15 BZ @L735 CHSI 20(15),101 BE @L734 @L735 DS 0H * *** return ((void *)0); LGHI 15,0 ; 0 B @ret_lab_661 * *** else @L734 DS 0H * *** return (const rd_kafka_DeleteTopics_result_t *\ * )rkev; * *** } @ret_lab_661 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_DeleteTopics_resu * lt" * (FUNCTION #661) * @AUTO#rd_kafka_event_$Delete$Topics_result DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_CreatePartitions_result rd_kafka_event_$Create$Partitions_result ALIAS X'99846D92818692816D85A5* 8595A36DC3998581A385D78199A389A3899695A26D9985A2A493A3' @LNAME662 DS 0H DC X'00000026' DC C'rd_kafka_event_CreatePartitions_' DC C'result' DC X'00' rd_kafka_event_$Create$Partitions_result DCCPRLG CINDEX=662,BASER=12,FR* AME=168,SAVEAREA=NO,ENTRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAM* E662 * ******* End of Prologue * * * *** if (!rkev || rkev->rko_evtype != 102) LG 15,0(0,1) ; rkev LTGR 1,15 BZ @L738 CHSI 20(15),102 BE @L737 @L738 DS 0H * *** return ((void *)0); LGHI 15,0 ; 0 B @ret_lab_662 * *** else @L737 DS 0H * *** return (const rd_kafka_CreatePartitions_result\ * _t *)rkev; * *** } @ret_lab_662 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_CreatePartitions_ * result" * (FUNCTION #662) * @AUTO#rd_kafka_event_$Create$Partitions_result DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_AlterConfigs_result rd_kafka_event_$Alter$Configs_result ALIAS X'99846D92818692816D85A58595* A36DC193A38599C39695868987A26D9985A2A493A3' @LNAME663 DS 0H DC X'00000022' DC C'rd_kafka_event_AlterConfigs_resu' DC C'lt' DC X'00' rd_kafka_event_$Alter$Configs_result DCCPRLG CINDEX=663,BASER=12,FRAME=* 168,SAVEAREA=NO,ENTRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME663 * ******* End of Prologue * * * *** if (!rkev || rkev->rko_evtype != 103) LG 15,0(0,1) ; rkev LTGR 1,15 BZ @L741 CHSI 20(15),103 BE @L740 @L741 DS 0H * *** return ((void *)0); LGHI 15,0 ; 0 B @ret_lab_663 * *** else @L740 DS 0H * *** return (const rd_kafka_AlterConfigs_result_t *\ * )rkev; * *** } @ret_lab_663 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_AlterConfigs_resu * lt" * (FUNCTION #663) * @AUTO#rd_kafka_event_$Alter$Configs_result DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_DescribeConfigs_result rd_kafka_event_$Describe$Configs_result ALIAS X'99846D92818692816D85A58* 595A36DC485A28399898285C39695868987A26D9985A2A493A3' @LNAME664 DS 0H DC X'00000025' DC C'rd_kafka_event_DescribeConfigs_r' DC C'esult' DC X'00' rd_kafka_event_$Describe$Configs_result DCCPRLG CINDEX=664,BASER=12,FRA* ME=168,SAVEAREA=NO,ENTRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME* 664 * ******* End of Prologue * * * *** if (!rkev || rkev->rko_evtype != 104) LG 15,0(0,1) ; rkev LTGR 1,15 BZ @L744 CHSI 20(15),104 BE @L743 @L744 DS 0H * *** return ((void *)0); LGHI 15,0 ; 0 B @ret_lab_664 * *** else @L743 DS 0H * *** return (const rd_kafka_DescribeConfigs_result_\ * t *)rkev; * *** } @ret_lab_664 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_DescribeConfigs_r * esult" * (FUNCTION #664) * @AUTO#rd_kafka_event_$Describe$Configs_result DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_DeleteRecords_result rd_kafka_event_$Delete$Records_result ALIAS X'99846D92818692816D85A5859* 5A36DC4859385A385D98583969984A26D9985A2A493A3' @LNAME665 DS 0H DC X'00000023' DC C'rd_kafka_event_DeleteRecords_res' DC C'ult' DC X'00' rd_kafka_event_$Delete$Records_result DCCPRLG CINDEX=665,BASER=12,FRAME* =168,SAVEAREA=NO,ENTRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME66* 5 * ******* End of Prologue * * * *** if (!rkev || rkev->rko_evtype != 105) LG 15,0(0,1) ; rkev LTGR 1,15 BZ @L747 CHSI 20(15),105 BE @L746 @L747 DS 0H * *** return ((void *)0); LGHI 15,0 ; 0 B @ret_lab_665 * *** else @L746 DS 0H * *** return (const rd_kafka_DeleteRecords_result_t \ * *)rkev; * *** } @ret_lab_665 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_DeleteRecords_res * ult" * (FUNCTION #665) * @AUTO#rd_kafka_event_$Delete$Records_result DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_DeleteGroups_result rd_kafka_event_$Delete$Groups_result ALIAS X'99846D92818692816D85A58595* A36DC4859385A385C79996A497A26D9985A2A493A3' @LNAME666 DS 0H DC X'00000022' DC C'rd_kafka_event_DeleteGroups_resu' DC C'lt' DC X'00' rd_kafka_event_$Delete$Groups_result DCCPRLG CINDEX=666,BASER=12,FRAME=* 168,SAVEAREA=NO,ENTRY=YES,ARCH=ZARCH,LNAMEADDR=@LNAME666 * ******* End of Prologue * * * *** if (!rkev || rkev->rko_evtype != 106) LG 15,0(0,1) ; rkev LTGR 1,15 BZ @L750 CHSI 20(15),106 BE @L749 @L750 DS 0H * *** return ((void *)0); LGHI 15,0 ; 0 B @ret_lab_666 * *** else @L749 DS 0H * *** return (const rd_kafka_DeleteGroups_result_t *\ * )rkev; * *** } @ret_lab_666 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_DeleteGroups_resu * lt" * (FUNCTION #666) * @AUTO#rd_kafka_event_$Delete$Groups_result DSECT DS XL168 * @CODE CSECT * * * * ....... start of rd_kafka_event_DeleteConsumerGroupOffsets_result rd_kafka_event_$Delete$Consumer$Group$Offsets_result ALIAS X'99846D9281* 8692816D85A58595A36DC4859385A385C39695A2A4948599C79996A4* 97D68686A285A3A26D9985A2A493A3' @LNAME667 DS 0H DC X'00000030' DC C'rd_kafka_event_DeleteConsumerGro' DC C'upOffsets_result' DC X'00' rd_kafka_event_$Delete$Consumer$Group$Offsets_result DCCPRLG CINDEX=667* ,BASER=12,FRAME=168,SAVEAREA=NO,ENTRY=YES,ARCH=ZARCH,LNA* MEADDR=@LNAME667 * ******* End of Prologue * * * *** if (!rkev || LG 15,0(0,1) ; rkev LTGR 1,15 BZ @L753 * *** rkev->rko_evtype != * *** 107) CHSI 20(15),107 BE @L752 @L753 DS 0H * *** return ((void *)0); LGHI 15,0 ; 0 B @ret_lab_667 * *** else @L752 DS 0H * *** return (const rd_kafka_DeleteConsumerGroupOffs\ * ets_result_t *) * *** rkev; * *** } @ret_lab_667 DS 0H * * **** Start of Epilogue DCCEPIL * * **** End of Epilogue DROP 12 * * DSECT for automatic variables in "rd_kafka_event_DeleteConsumerGro * upOffsets_result" * (FUNCTION #667) * @AUTO#rd_kafka_event_$Delete$Consumer$Group$Offsets_result DSECT DS XL168 * @CODE CSECT @@STATIC ALIAS X'7C998492818692816D85A58595A350' @@STATIC DXD 237D * * Non-Re-Entrant Data Section * @DATA CSECT @DATA RMODE ANY @DATA AMODE ANY @@T48F DC X'99846D838193939683' rd.calloc DC 1X'00' @@T493 DC X'99846D948193939683' rd.malloc DC 1X'00' @@T498 DC X'99846D99858193939683' rd.realloc DC 2X'00' @@T49E DC X'99846DA2A39984A497' rd.strdup DC 1X'00' @@T4A3 DC X'99846DA2A3999584A497' rd.strndup DC 2X'00' @@T4AB DC X'99846D9985868395A36DA2A482F0' rd.refcnt.sub0 DC 4X'00' @@T65A DC 4X'00' DC X'0000001A000000000000002200000000' ................ DC X'00000024' .... @@T67D DC X'99846D92818692816D94A287986D8485' rd.kafka.msgq.de DC X'98' q DC 1X'00' @@T704 DC X'99846D92818692816D986D8485A2A399' rd.kafka.q.destr DC X'96A8F0' oy0 DC 1X'00' @@T785 DC X'99846D92818692816D8595986D969583' rd.kafka.enq.onc DC X'856D8485A2A39996A8F0' e.destroy0 DC 2X'00' @@T78D DC X'99846D92818692816D8595986D969583' rd.kafka.enq.onc DC X'856D8485936DA296A4998385' e.del.source DC 2X'00' @@T794 DC X'99846D92818692816D8595986D969583' rd.kafka.enq.onc DC X'856D8485936DA296A49983856D9985A3' e.del.source.ret DC X'A49995' urn DC 1X'00' @@T79C DC X'99846D92818692816D8595986D969583' rd.kafka.enq.onc DC X'856DA3998987878599' e.trigger DC 1X'00' @@T7A0 DC X'99846D92818692816D8595986D969583' rd.kafka.enq.onc DC X'856D8485A2A39996A8' e.destroy DC 1X'00' @@T7A5 DC X'99846D92818692816D8595986D969583' rd.kafka.enq.onc DC X'856D8489A281829385' e.disable DC 1X'00' @@T7C5 DC X'99846DA394978182A4866D8193939683' rd.tmpabuf.alloc DC X'F0' 0 DC 1X'00' @@T7F9 DC X'99846D92818692816D82A4866DA49784' rd.kafka.buf.upd DC X'81A385' ate DC 1X'00' @@T81A DC X'99846D92818692816D82A4866D868995' rd.kafka.buf.fin DC X'819389A9856D81999981A88395A3' alize.arraycnt DC 2X'00' @@T857 DC X'99846D92818692816D82A4866D839983' rd.kafka.buf.crc DC X'6D899589A3' .init DC 1X'00' @@TA27 DC X'99846D92818692816D83A499996D94A2' rd.kafka.curr.ms DC X'87A26DA2A482' gs.sub DC 4X'00' @@TA54 DC 4X'00' DC X'00000002000000080000000800000001' ................ DC X'0000004000000020' ........ DC 44X'00' DC X'00000010' .... DC 44X'00' DC X'00000004' .... DC 52X'00' DC X'00000100' .... DC 24X'00' @strings@ DS 0H DC X'C37AE081A2879281869281E093898299' C..asgkafka.libr DC X'849281869281E0A29983E09984928186' dkafka.src.rdkaf DC X'92816D94A2874B88000081A2A28599A3' ka.msg.h..assert DC X'7A4099929498606E999294986D94A287' ..rkmq..rkmq.msg DC X'6D8395A3406E40F0000081A2A28599A3' .cnt...0..assert DC X'7A4099929498606E999294986D94A287' ..rkmq..rkmq.msg DC X'6D82A8A385A2406E7E404D8995A3F6F4' .bytes.....int64 DC X'6DA35D4D999294606E9992946D938595' .t..rkm..rkm.len DC X'4E999294606E9992946D9285A86D9385' .rkm..rkm.key.le DC X'955D00004DD5D6D5C55D0000C4859389' n....NONE...Deli DC X'A58599A8D985979699A30000C685A383' veryReport..Fetc DC X'8800D3968700C59999969900D9858281' h.Log.Error.Reba DC X'938195838500D68686A285A3C3969494' lance.OffsetComm DC X'89A30000E2A381A3A200C3998581A385' it..Stats.Create DC X'E396978983A2D985A2A493A30000C485' TopicsResult..De DC X'9385A385E396978983A2D985A2A493A3' leteTopicsResult DC X'0000C3998581A385D78199A389A38996' ..CreatePartitio DC X'95A2D985A2A493A30000C193A38599C3' nsResult..AlterC DC X'9695868987A2D985A2A493A30000C485' onfigsResult..De DC X'A28399898285C39695868987A2D985A2' scribeConfigsRes DC X'A493A300C4859385A385D98583969984' ult.DeleteRecord DC X'A2D985A2A493A300C4859385A385C799' sResult.DeleteGr DC X'96A497A2D985A2A493A30000C4859385' oupsResult..Dele DC X'A385C39695A2A4948599C79996A497D6' teConsumerGroupO DC X'8686A285A3A2D985A2A493A30000E281' ffsetsResult..Sa DC X'A293D6C1A4A388C28581998599E39692' slOAuthBearerTok DC X'8595D985869985A288006FA495929596' enRefresh..unkno DC X'A6956F00D7999684A4838500D68686A2' wn..Produce.Offs DC X'85A30000D485A3818481A3810000D385' et..Metadata..Le DC X'81848599C19584C9A2990000E2A39697' aderAndIsr..Stop DC X'D985979389838100E4978481A385D485' Replica.UpdateMe DC X'A3818481A3810000C39695A399969393' tadata..Controll DC X'8584E288A4A38496A6950000D68686A2' edShutdown..Offs DC X'85A3C685A3838800C6899584C3969699' etFetch.FindCoor DC X'84899581A3969900D1968995C79996A4' dinator.JoinGrou DC X'9700C8858199A3828581A300D38581A5' p.Heartbeat.Leav DC X'85C79996A4970000E2A89583C79996A4' eGroup..SyncGrou DC X'9700C485A28399898285C79996A497A2' p.DescribeGroups DC X'0000D389A2A3C79996A497A20000E281' ..ListGroups..Sa DC X'A293C8819584A28881928500C19789E5' slHandshake.ApiV DC X'8599A28996950000C3998581A385E396' ersion..CreateTo DC X'978983A20000C4859385A385E3969789' pics..DeleteTopi DC X'83A20000C4859385A385D98583969984' cs..DeleteRecord DC X'A200C99589A3D7999684A4838599C984' s.InitProducerId DC X'0000D68686A285A3C69699D385818485' ..OffsetForLeade DC X'99C5979683880000C18484D78199A389' rEpoch..AddParti DC X'A3899695A2E396E3A7950000C18484D6' tionsToTxn..AddO DC X'8686A285A3A2E396E3A79500C59584E3' ffsetsToTxn.EndT DC X'A7950000E69989A385E3A795D4819992' xn..WriteTxnMark DC X'8599A200E3A795D68686A285A3C39694' ers.TxnOffsetCom DC X'9489A300C485A28399898285C18393A2' mit.DescribeAcls DC X'0000C3998581A385C18393A20000C485' ..CreateAcls..De DC X'9385A385C18393A20000C485A2839989' leteAcls..Descri DC X'8285C39695868987A200C193A38599C3' beConfigs.AlterC DC X'9695868987A20000C193A38599D98597' onfigs..AlterRep DC X'93898381D39687C48999A200C485A283' licaLogDirs.Desc DC X'99898285D39687C48999A200E281A293' ribeLogDirs.Sasl DC X'C1A4A3888595A3898381A3850000C399' Authenticate..Cr DC X'8581A385D78199A389A3899695A20000' eatePartitions.. DC X'C3998581A385C48593858781A3899695' CreateDelegation DC X'E39692859500D9859585A6C485938587' Token.RenewDeleg DC X'81A3899695E3969285950000C5A79789' ationToken..Expi DC X'9985C48593858781A3899695E3969285' reDelegationToke DC X'9500C485A28399898285C48593858781' n.DescribeDelega DC X'A3899695E39692859500C4859385A385' tionToken.Delete DC X'C79996A497A20000C5938583A3D38581' Groups..ElectLea DC X'848599A2D98598A485A2A300C9958399' dersRequest.Incr DC X'85948595A38193C193A38599C3969586' ementalAlterConf DC X'8987A2D98598A485A2A30000C193A385' igsRequest..Alte DC X'99D78199A389A3899695D98581A2A289' rPartitionReassi DC X'8795948595A3A2D98598A485A2A30000' gnmentsRequest.. DC X'D389A2A3D78199A389A3899695D98581' ListPartitionRea DC X'A2A2898795948595A3A2D98598A485A2' ssignmentsReques DC X'A300D68686A285A3C4859385A385D985' t.OffsetDeleteRe DC X'98A485A2A300C485A28399898285C393' quest.DescribeCl DC X'898595A3D8A496A381A2D98598A485A2' ientQuotasReques DC X'A300C193A38599C393898595A3D8A496' t.AlterClientQuo DC X'A381A2D98598A485A2A30000C485A283' tasRequest..Desc DC X'99898285E4A28599E283998194C39985' ribeUserScramCre DC X'848595A3898193A2D98598A485A2A300' dentialsRequest. DC X'C193A38599E4A28599E283998194C399' AlterUserScramCr DC X'85848595A3898193A2D98598A485A2A3' edentialsRequest DC X'0000E596A385D98598A485A2A300C285' ..VoteRequest.Be DC X'878995D8A49699A494C597968388D985' ginQuorumEpochRe DC X'98A485A2A300C59584D8A49699A494C5' quest.EndQuorumE DC X'97968388D98598A485A2A300C485A283' pochRequest.Desc DC X'99898285D8A49699A494D98598A485A2' ribeQuorumReques DC X'A300C193A38599C9A299D98598A485A2' t.AlterIsrReques DC X'A300E4978481A385C68581A3A49985A2' t.UpdateFeatures DC X'D98598A485A2A300C595A58593969785' Request.Envelope DC X'D98598A485A2A30095969585000087A9' Request.none..gz DC X'89970000A295819797A8000093A9F400' ip..snappy..lz4. DC X'A9A2A3840000899588859989A3008396' zstd..inherit.co DC X'95868987A49985840000938581999585' nfigured..learne DC X'84008995A38599958193000093968789' d.internal..logi DC X'83819300C99589A30000E38599948995' cal.Init..Termin DC X'81A38500C681A38193C5999996990000' ate.FatalError.. DC X'D98598A485A2A3D7C9C40000E68189A3' RequestPID..Wait DC X'E3998195A2979699A300E68189A3D7C9' Transport.WaitPI DC X'C400C1A2A289879585840000C4998189' D.Assigned..Drai DC X'95D985A285A30000C499818995C2A494' nReset..DrainBum DC X'9700D9858184A8D596A3C18392858400' p.ReadyNotAcked. DC X'D9858184A800C995E3998195A28183A3' Ready.InTransact DC X'89969500C285878995C396949489A300' ion.BeginCommit. DC X'C396949489A3A3899587E3998195A281' CommittingTransa DC X'83A389969500C396949489A3D596A3C1' ction.CommitNotA DC X'839285840000C1829699A3899587E399' cked..AbortingTr DC X'8195A28183A389969500C1829699A385' ansaction.Aborte DC X'84D596A3C18392858400C1829699A381' dNotAcked.Aborta DC X'829385C5999996990000878595859989' bleError..generi DC X'83008299969285990000A39697898300' c.broker..topic. DC X'9485A3818481A3810000868581A3A499' metadata..featur DC X'850098A485A4850094A28700979996A3' e.queue.msg.prot DC X'968396930000838799970000A28583A4' ocol..cgrp..secu DC X'9989A3A800008685A38388008995A385' rity..fetch.inte DC X'99838597A39699009793A48789950000' rceptor.plugin.. DC X'839695A2A49485990000818494899500' consumer..admin. DC X'8596A200949683920000' eos.mock.. * * * Re-entrant Data Initialization Section * @@INIT@ ALIAS C'rdkafka_event:' @@INIT@ CSECT @@INIT@ AMODE ANY @@INIT@ RMODE ANY DC XL1'5' DC AL3(0) DC AL4(288) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000001' DC X'00000000' DC X'000000FF' DC X'0102039C09867F978D8E0B0C0D0E0F10' .....f.p........ DC X'1112139D8508871819928F1C1D1E1F80' ....e.g..k...... DC X'818283840A171B88898A8B8C05060790' abcd...hi....... DC X'9116939495960498999A9B14159E1A20' j.lmno.qr....... DC X'A0E2E4E0E1E3E5E7F1A22E3C282B7C26' .SU..TVX1s...... DC X'E9EAEBE8EDEEEFECDF21242A293B5E2D' Z..Y............ DC X'2FC2C4C0C1C3C5C7D1A62C255F3E3FF8' .BD.ACEGJw.....8 DC X'C9CACBC8CDCECFCC603A2340273D22D8' I..H...........Q DC X'616263646566676869ABBBF0FDFEB1B0' ...........0.... DC X'6A6B6C6D6E6F707172AABAE6B8C6A4B5' ...........W.Fu. DC X'7E737475767778797AA1BFD05BDEAEAC' ................ DC X'A3A5B7A9A7B6BCBDBEDDA8AF5DB4D77B' tv.zx.....y...P. DC X'414243444546474849ADF4F6F2F3F57D' ..........46235. DC X'4A4B4C4D4E4F505152B9FBFCF9FAFF5C' ............9... DC X'F7535455565758595AB2D4D6D2D3D530' 7.........MOKLN. DC X'313233343536373839B3DBDCD9DA9F40' ............R... * DC XL1'5' DC AL3(0) DC AL4(480) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000101' DC X'00000000' DC X'000000A0' DC X'010203372D2E2F1605150B0C0D0E0F10' ................ DC X'1112133C3D322618193F271C1D1E1F40' ................ DC X'5A7F7B5B6C507D4D5D5C4E6B604B61F0' ...............0 DC X'F1F2F3F4F5F6F7F8F97A5E4C7E6E6F7C' 123456789....... DC X'C1C2C3C4C5C6C7C8C9D1D2D3D4D5D6D7' ABCDEFGHIJKLMNOP DC X'D8D9E2E3E4E5E6E7E8E9ADE0BD5F6D79' QRSTUVWXYZ...... DC X'81828384858687888991929394959697' abcdefghijklmnop DC X'9899A2A3A4A5A6A7A8A9C04FD0A10720' qrstuvwxyz...... DC X'2122232425061728292A2B2C090A1B30' ................ DC X'311A333435360838393A3B04143EFF80' ................ * DC XL1'5' DC AL3(0) DC AL4(520) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000001C0' DC X'00000000' DC X'00000001' DC X'8A40404040404040' ........ * DC XL1'5' DC AL3(0) DC AL4(560) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000001E0' DC X'00000000' DC X'00000001' DC X'8B40404040404040' ........ * DC XL1'D' DC AL3(0) DC AL4(600) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000220' DC ADL8(@DATA) DC X'00000000' DC X'00000428' * DC XL1'D' DC AL3(0) DC AL4(640) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000228' DC ADL8(@DATA) DC X'00000000' DC X'00000320' * DC XL1'D' DC AL3(0) DC AL4(680) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000230' DC ADL8(@DATA) DC X'00000000' DC X'00000430' * DC XL1'D' DC AL3(0) DC AL4(720) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000238' DC ADL8(@DATA) DC X'00000000' DC X'00000438' * DC XL1'D' DC AL3(0) DC AL4(760) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000240' DC ADL8(@DATA) DC X'00000000' DC X'00000442' * DC XL1'D' DC AL3(0) DC AL4(800) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000248' DC ADL8(@DATA) DC X'00000000' DC X'00000450' * DC XL1'D' DC AL3(0) DC AL4(840) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000250' DC ADL8(@DATA) DC X'00000000' DC X'0000045C' * DC XL1'D' DC AL3(0) DC AL4(880) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000258' DC ADL8(@DATA) DC X'00000000' DC X'0000046C' * DC XL1'D' DC AL3(0) DC AL4(920) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000260' DC ADL8(@DATA) DC X'00000000' DC X'0000033A' * DC XL1'D' DC AL3(0) DC AL4(960) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000268' DC ADL8(@DATA) DC X'00000000' DC X'00000480' * DC XL1'D' DC AL3(0) DC AL4(1000) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000270' DC ADL8(@DATA) DC X'00000000' DC X'0000048C' * DC XL1'D' DC AL3(0) DC AL4(1040) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000278' DC ADL8(@DATA) DC X'00000000' DC X'0000049C' * DC XL1'D' DC AL3(0) DC AL4(1080) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000280' DC ADL8(@DATA) DC X'00000000' DC X'000004A6' * DC XL1'D' DC AL3(0) DC AL4(1120) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000288' DC ADL8(@DATA) DC X'00000000' DC X'000004B0' * DC XL1'D' DC AL3(0) DC AL4(1160) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000290' DC ADL8(@DATA) DC X'00000000' DC X'000004BC' * DC XL1'D' DC AL3(0) DC AL4(1200) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000298' DC ADL8(@DATA) DC X'00000000' DC X'000004C6' * DC XL1'D' DC AL3(0) DC AL4(1240) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000002A0' DC ADL8(@DATA) DC X'00000000' DC X'000004D6' * DC XL1'D' DC AL3(0) DC AL4(1280) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000002A8' DC ADL8(@DATA) DC X'00000000' DC X'000004E2' * DC XL1'D' DC AL3(0) DC AL4(1320) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000002B0' DC ADL8(@DATA) DC X'00000000' DC X'000004F0' * DC XL1'D' DC AL3(0) DC AL4(1360) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000002B8' DC ADL8(@DATA) DC X'00000000' DC X'000004FC' * DC XL1'D' DC AL3(0) DC AL4(1400) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000002C0' DC ADL8(@DATA) DC X'00000000' DC X'0000050A' * DC XL1'D' DC AL3(0) DC AL4(1440) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000002C8' DC ADL8(@DATA) DC X'00000000' DC X'00000518' * DC XL1'D' DC AL3(0) DC AL4(1480) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000002D0' DC ADL8(@DATA) DC X'00000000' DC X'00000526' * DC XL1'D' DC AL3(0) DC AL4(1520) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000002D8' DC ADL8(@DATA) DC X'00000000' DC X'00000536' * DC XL1'D' DC AL3(0) DC AL4(1560) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000002E0' DC ADL8(@DATA) DC X'00000000' DC X'0000054C' * DC XL1'D' DC AL3(0) DC AL4(1600) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000002E8' DC ADL8(@DATA) DC X'00000000' DC X'00000560' * DC XL1'D' DC AL3(0) DC AL4(1640) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000002F0' DC ADL8(@DATA) DC X'00000000' DC X'00000570' * DC XL1'D' DC AL3(0) DC AL4(1680) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000002F8' DC ADL8(@DATA) DC X'00000000' DC X'00000578' * DC XL1'D' DC AL3(0) DC AL4(1720) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000300' DC ADL8(@DATA) DC X'00000000' DC X'00000588' * DC XL1'D' DC AL3(0) DC AL4(1760) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000308' DC ADL8(@DATA) DC X'00000000' DC X'00000598' * DC XL1'D' DC AL3(0) DC AL4(1800) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000310' DC ADL8(@DATA) DC X'00000000' DC X'000005A6' * DC XL1'D' DC AL3(0) DC AL4(1840) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000318' DC ADL8(@DATA) DC X'00000000' DC X'000005B2' * DC XL1'D' DC AL3(0) DC AL4(1880) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000320' DC ADL8(@DATA) DC X'00000000' DC X'000005BE' * DC XL1'D' DC AL3(0) DC AL4(1920) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000328' DC ADL8(@DATA) DC X'00000000' DC X'000005CE' * DC XL1'D' DC AL3(0) DC AL4(1960) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000330' DC ADL8(@DATA) DC X'00000000' DC X'000005DC' * DC XL1'D' DC AL3(0) DC AL4(2000) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000338' DC ADL8(@DATA) DC X'00000000' DC X'000005F0' * DC XL1'D' DC AL3(0) DC AL4(2040) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000340' DC ADL8(@DATA) DC X'00000000' DC X'00000600' * DC XL1'D' DC AL3(0) DC AL4(2080) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000348' DC ADL8(@DATA) DC X'00000000' DC X'00000612' * DC XL1'D' DC AL3(0) DC AL4(2120) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000350' DC ADL8(@DATA) DC X'00000000' DC X'00000624' * DC XL1'D' DC AL3(0) DC AL4(2160) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000358' DC ADL8(@DATA) DC X'00000000' DC X'0000063A' * DC XL1'D' DC AL3(0) DC AL4(2200) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000360' DC ADL8(@DATA) DC X'00000000' DC X'00000650' * DC XL1'D' DC AL3(0) DC AL4(2240) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000368' DC ADL8(@DATA) DC X'00000000' DC X'00000666' * DC XL1'D' DC AL3(0) DC AL4(2280) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000370' DC ADL8(@DATA) DC X'00000000' DC X'0000067E' * DC XL1'D' DC AL3(0) DC AL4(2320) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000378' DC ADL8(@DATA) DC X'00000000' DC X'0000068C' * DC XL1'D' DC AL3(0) DC AL4(2360) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000380' DC ADL8(@DATA) DC X'00000000' DC X'000006A0' * DC XL1'D' DC AL3(0) DC AL4(2400) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000388' DC ADL8(@DATA) DC X'00000000' DC X'000006C0' * DC XL1'D' DC AL3(0) DC AL4(2440) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000390' DC ADL8(@DATA) DC X'00000000' DC X'000006E4' * DC XL1'D' DC AL3(0) DC AL4(2480) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000398' DC ADL8(@DATA) DC X'00000000' DC X'00000706' * DC XL1'D' DC AL3(0) DC AL4(2520) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000003A0' DC ADL8(@DATA) DC X'00000000' DC X'0000071A' * DC XL1'D' DC AL3(0) DC AL4(2560) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000003A8' DC ADL8(@DATA) DC X'00000000' DC X'00000736' * DC XL1'D' DC AL3(0) DC AL4(2600) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000003B0' DC ADL8(@DATA) DC X'00000000' DC X'00000750' * DC XL1'D' DC AL3(0) DC AL4(2640) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000003B8' DC ADL8(@DATA) DC X'00000000' DC X'00000774' * DC XL1'D' DC AL3(0) DC AL4(2680) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000003C0' DC ADL8(@DATA) DC X'00000000' DC X'00000796' * DC XL1'D' DC AL3(0) DC AL4(2720) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000003C8' DC ADL8(@DATA) DC X'00000000' DC X'000007A2' * DC XL1'D' DC AL3(0) DC AL4(2760) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000003D0' DC ADL8(@DATA) DC X'00000000' DC X'000007BA' * DC XL1'D' DC AL3(0) DC AL4(2800) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000003D8' DC ADL8(@DATA) DC X'00000000' DC X'000007D0' * DC XL1'D' DC AL3(0) DC AL4(2840) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000003E0' DC ADL8(@DATA) DC X'00000000' DC X'000007E6' * DC XL1'D' DC AL3(0) DC AL4(2880) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000003E8' DC ADL8(@DATA) DC X'00000000' DC X'000007F6' * DC XL1'D' DC AL3(0) DC AL4(2920) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000003F0' DC ADL8(@DATA) DC X'00000000' DC X'0000080C' * DC XL1'D' DC AL3(0) DC AL4(2960) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000004C0' DC ADL8(@DATA) DC X'00000000' DC X'0000081C' * DC XL1'D' DC AL3(0) DC AL4(3000) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000004C8' DC ADL8(@DATA) DC X'00000000' DC X'00000822' * DC XL1'D' DC AL3(0) DC AL4(3040) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000004D0' DC ADL8(@DATA) DC X'00000000' DC X'00000828' * DC XL1'D' DC AL3(0) DC AL4(3080) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000004D8' DC ADL8(@DATA) DC X'00000000' DC X'00000830' * DC XL1'D' DC AL3(0) DC AL4(3120) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000004E0' DC ADL8(@DATA) DC X'00000000' DC X'00000834' * DC XL1'D' DC AL3(0) DC AL4(3160) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000004E8' DC ADL8(@DATA) DC X'00000000' DC X'0000083A' * DC XL1'D' DC AL3(0) DC AL4(3200) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000510' DC ADL8(@DATA) DC X'00000000' DC X'00000842' * DC XL1'D' DC AL3(0) DC AL4(3240) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000518' DC ADL8(@DATA) DC X'00000000' DC X'0000084E' * DC XL1'D' DC AL3(0) DC AL4(3280) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000520' DC ADL8(@DATA) DC X'00000000' DC X'00000856' * DC XL1'D' DC AL3(0) DC AL4(3320) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000528' DC ADL8(@DATA) DC X'00000000' DC X'00000860' * DC XL1'D' DC AL3(0) DC AL4(3360) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000630' DC ADL8(@DATA) DC X'00000000' DC X'00000868' * DC XL1'D' DC AL3(0) DC AL4(3400) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000638' DC ADL8(@DATA) DC X'00000000' DC X'0000086E' * DC XL1'D' DC AL3(0) DC AL4(3440) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000640' DC ADL8(@DATA) DC X'00000000' DC X'00000878' * DC XL1'D' DC AL3(0) DC AL4(3480) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000648' DC ADL8(@DATA) DC X'00000000' DC X'00000884' * DC XL1'D' DC AL3(0) DC AL4(3520) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000650' DC ADL8(@DATA) DC X'00000000' DC X'00000890' * DC XL1'D' DC AL3(0) DC AL4(3560) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000658' DC ADL8(@DATA) DC X'00000000' DC X'0000089E' * DC XL1'D' DC AL3(0) DC AL4(3600) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000660' DC ADL8(@DATA) DC X'00000000' DC X'000008A6' * DC XL1'D' DC AL3(0) DC AL4(3640) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000668' DC ADL8(@DATA) DC X'00000000' DC X'000008B0' * DC XL1'D' DC AL3(0) DC AL4(3680) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000670' DC ADL8(@DATA) DC X'00000000' DC X'000008BC' * DC XL1'D' DC AL3(0) DC AL4(3720) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000678' DC ADL8(@DATA) DC X'00000000' DC X'00000868' * DC XL1'D' DC AL3(0) DC AL4(3760) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000680' DC ADL8(@DATA) DC X'00000000' DC X'0000089E' * DC XL1'D' DC AL3(0) DC AL4(3800) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000688' DC ADL8(@DATA) DC X'00000000' DC X'000008C6' * DC XL1'D' DC AL3(0) DC AL4(3840) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000690' DC ADL8(@DATA) DC X'00000000' DC X'000008D4' * DC XL1'D' DC AL3(0) DC AL4(3880) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000698' DC ADL8(@DATA) DC X'00000000' DC X'000008DA' * DC XL1'D' DC AL3(0) DC AL4(3920) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000006A0' DC ADL8(@DATA) DC X'00000000' DC X'000008E8' * DC XL1'D' DC AL3(0) DC AL4(3960) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000006A8' DC ADL8(@DATA) DC X'00000000' DC X'000008F4' * DC XL1'D' DC AL3(0) DC AL4(4000) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000006B0' DC ADL8(@DATA) DC X'00000000' DC X'0000090A' * DC XL1'D' DC AL3(0) DC AL4(4040) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000006B8' DC ADL8(@DATA) DC X'00000000' DC X'0000091A' * DC XL1'D' DC AL3(0) DC AL4(4080) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000006C0' DC ADL8(@DATA) DC X'00000000' DC X'0000092E' * DC XL1'D' DC AL3(0) DC AL4(4120) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000006C8' DC ADL8(@DATA) DC X'00000000' DC X'0000093E' * DC XL1'D' DC AL3(0) DC AL4(4160) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000006D0' DC ADL8(@DATA) DC X'00000000' DC X'00000878' * DC XL1'D' DC AL3(0) DC AL4(4200) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000006D8' DC ADL8(@DATA) DC X'00000000' DC X'0000094E' * DC XL1'D' DC AL3(0) DC AL4(4240) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000006E0' DC ADL8(@DATA) DC X'00000000' DC X'00000956' * DC XL1'D' DC AL3(0) DC AL4(4280) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000006E8' DC ADL8(@DATA) DC X'00000000' DC X'0000095E' * DC XL1'D' DC AL3(0) DC AL4(4320) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000006F0' DC ADL8(@DATA) DC X'00000000' DC X'00000964' * DC XL1'D' DC AL3(0) DC AL4(4360) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'000006F8' DC ADL8(@DATA) DC X'00000000' DC X'0000096E' * DC XL1'D' DC AL3(0) DC AL4(4400) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000700' DC ADL8(@DATA) DC X'00000000' DC X'00000976' * DC XL1'D' DC AL3(0) DC AL4(4440) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000708' DC ADL8(@DATA) DC X'00000000' DC X'0000097C' * DC XL1'D' DC AL3(0) DC AL4(4480) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000710' DC ADL8(@DATA) DC X'00000000' DC X'00000980' * DC XL1'D' DC AL3(0) DC AL4(4520) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000718' DC ADL8(@DATA) DC X'00000000' DC X'0000098A' * DC XL1'D' DC AL3(0) DC AL4(4560) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000720' DC ADL8(@DATA) DC X'00000000' DC X'00000990' * DC XL1'D' DC AL3(0) DC AL4(4600) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000728' DC ADL8(@DATA) DC X'00000000' DC X'0000099A' * DC XL1'D' DC AL3(0) DC AL4(4640) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000730' DC ADL8(@DATA) DC X'00000000' DC X'000009A0' * DC XL1'D' DC AL3(0) DC AL4(4680) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000738' DC ADL8(@DATA) DC X'00000000' DC X'000009AC' * DC XL1'D' DC AL3(0) DC AL4(4720) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000740' DC ADL8(@DATA) DC X'00000000' DC X'000009B4' * DC XL1'D' DC AL3(0) DC AL4(4760) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000748' DC ADL8(@DATA) DC X'00000000' DC X'000009BE' * DC XL1'D' DC AL3(0) DC AL4(4800) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000750' DC ADL8(@DATA) DC X'00000000' DC X'000009C4' * DC XL1'D' DC AL3(0) DC AL4(0) DC 4X'00' DC Q(@@STATIC) DC X'00000000' DC X'00000758' DC ADL8(@DATA) DC X'00000000' DC X'000009C8' * END
28.514532
72
0.487438
03e0ba62de77441ffcbe375d3288ca3943393685
106
asm
Assembly
libsrc/_DEVELOPMENT/math/float/math32/lm32/c/sdcc/exp10_fastcall.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/math/float/math32/lm32/c/sdcc/exp10_fastcall.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/math/float/math32/lm32/c/sdcc/exp10_fastcall.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
SECTION code_fp_math32 PUBLIC _exp10_fastcall EXTERN _m32_exp10f defc _exp10_fastcall = _m32_exp10f
15.142857
35
0.839623
69ee9d5f7cd5256fa5f02d8637f068e27b524fbe
32
asm
Assembly
tests/fn_le/15.asm
NullMember/customasm
6e34d6432583a41278e6b3596f1817ae82149531
[ "Apache-2.0" ]
414
2016-10-14T22:39:20.000Z
2022-03-30T07:52:44.000Z
tests/fn_le/15.asm
NullMember/customasm
6e34d6432583a41278e6b3596f1817ae82149531
[ "Apache-2.0" ]
100
2018-03-22T16:12:24.000Z
2022-03-26T09:19:23.000Z
tests/fn_le/15.asm
NullMember/customasm
6e34d6432583a41278e6b3596f1817ae82149531
[ "Apache-2.0" ]
47
2017-06-29T15:12:13.000Z
2022-03-10T04:50:51.000Z
#d le(0x12345678) ; = 0x78563412
32
32
0.71875
e62830c0564a32f9caf4b474ee16760fe149f3f8
184
asm
Assembly
data/pokemon/dex_entries/gulpin.asm
AtmaBuster/pokeplat-gen2
fa83b2e75575949b8f72cb2c48f7a1042e97f70f
[ "blessing" ]
6
2021-06-19T06:41:19.000Z
2022-02-15T17:12:33.000Z
data/pokemon/dex_entries/gulpin.asm
AtmaBuster/pokeplat-gen2-old
01e42c55db5408d72d89133dc84a46c699d849ad
[ "blessing" ]
null
null
null
data/pokemon/dex_entries/gulpin.asm
AtmaBuster/pokeplat-gen2-old
01e42c55db5408d72d89133dc84a46c699d849ad
[ "blessing" ]
3
2021-01-15T18:45:40.000Z
2021-10-16T03:35:27.000Z
db "STOMACH@" ; species name db "It has a small" next "heart and brain." next "Its stomach makes" page "most of its body," next "with enzymes to" next "dissolve anything.@"
18.4
29
0.668478
1a783cf59d410452d0d71e20838ef7c4bab535ab
752
asm
Assembly
oeis/346/A346683.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/346/A346683.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/346/A346683.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A346683: a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(7*k,k) / (6*k + 1). ; Submitted by Jon Maiga ; 1,0,7,63,756,9716,132062,1865626,27124049,403197584,6100155272,93626517858,1454221328232,22815183746508,361030984965596,5755543515895284,92350704790963431,1490287557170676816,24171116970619575559,393808998160695560841,6442255541764422795759,105775126468573228387377,1742512182126901132692333,28793037003684480658696067,477097692674169480522239863,7925700148155494093244078719,131975137267242358217029388173,2202389557945647598506742931481,36827763626046338240300660520559 mov $3,$0 mov $5,$0 add $5,1 lpb $5 mov $0,$3 sub $5,1 sub $0,$5 mov $2,6 mul $2,$0 add $0,$2 bin $0,$2 add $2,1 div $0,$2 mul $4,-1 add $4,$0 lpe mov $0,$4
34.181818
473
0.767287
0cc0f1cb88789ac2928a3857103fba1ef5af0091
601
asm
Assembly
programs/oeis/268/A268527.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/268/A268527.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/268/A268527.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A268527: a(n) = r*a(ceiling(n/2))+s*a(floor(n/2)) with a(1)=1 and (r,s)=(4,1). ; 1,5,21,25,89,105,121,125,381,445,509,525,589,605,621,625,1649,1905,2161,2225,2481,2545,2609,2625,2881,2945,3009,3025,3089,3105,3121,3125,7221,8245,9269,9525,10549,10805,11061,11125,12149,12405,12661,12725,12981,13045,13109,13125,14149,14405 mov $7,$0 add $7,1 lpb $7,1 clr $0,5 sub $7,1 sub $0,$7 mul $0,2 cal $0,309074 ; a(0) = 1; a(2*n) = 4*a(n), a(2*n+1) = a(n). add $0,1 add $3,2 mul $3,10 add $2,$3 add $0,$2 mov $1,$0 sub $1,22 div $1,3 mul $1,3 add $1,1 add $6,$1 lpe mov $1,$6
24.04
242
0.597338
3005fcff7d0a91a3a5f94267247ff9699bb51cba
173
asm
Assembly
programs/oeis/241/A241814.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/241/A241814.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/241/A241814.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A241814: Number of distance-regular simple connected graphs on n nodes. ; 1,1,1,2,2,4,2,5,4,7 lpb $0 add $0,$1 dif $0,2 div $0,2 add $1,$0 lpe add $1,1 mov $0,$1
14.416667
73
0.612717
57141fc1a751586a76eca34e4d8c7922eba8f9c0
297
asm
Assembly
programs/oeis/070/A070462.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/070/A070462.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/070/A070462.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A070462: a(n) = n^2 mod 40. ; 0,1,4,9,16,25,36,9,24,1,20,1,24,9,36,25,16,9,4,1,0,1,4,9,16,25,36,9,24,1,20,1,24,9,36,25,16,9,4,1,0,1,4,9,16,25,36,9,24,1,20,1,24,9,36,25,16,9,4,1,0,1,4,9,16,25,36,9,24,1,20,1,24,9,36,25,16,9,4,1,0,1,4,9,16,25,36,9,24,1,20,1,24,9,36,25,16,9,4,1 pow $0,2 mod $0,40
49.5
246
0.579125
18664b3a916c73eb1feca061dfa4c342511fed56
3,610
asm
Assembly
programs/oeis/056/A056117.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/056/A056117.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/056/A056117.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A056117: Expansion of (1+8*x)/(1-x)^9. ; 1,17,117,525,1815,5247,13299,30459,64350,127270,238238,425646,730626,1211250,1947690,3048474,4657983,6965343,10214875,14718275,20868705,29156985,40190085,54712125,73628100,98030556,129229452,168785452,218546900,280690740,357767652,452751684,569094669,710785725,882416145,1089249993,1337300731,1633414211,1985358375,2401920015,2893008954,3469770018,4144703178,4931792250,5846642550,6906627910,8131047470,9541292670,11161024875,13016364075,15136089111,17551849887,20298392037,23413794525,26939720665,30921683057,35409322944,40456704504,46122624600,52470938520,59570902248,67497531816,76331980296,86161933000,97082021465,109194256809,122608483053,137442851013,153824313375,171889141575,191783465115,213663833955,237697804630,264064550750,292955498550,324574988166,359140961322,396885676122,438056449650,482916429090,531745392087,584840577079,642517544339,705111068475,772976063145,846488538753,926046593901,1012071441381,1105008469500,1205328339540,1313528120164,1430132459588,1555694796348,1690798609500,1836058709100,1992122567820,2159671694565,2339423050965,2532130511625,2738586369025,2959622883971,3196113882507,3448976400207,3719172374775,4007710387890,4315647457242,4644090879714,4994200126674,5367188792350,5764326596270,6186941440758,6636421524486,7114217513091,7621844767875,8160885633615,8732991786519,9339886643373,9983367832933,10665309730625,11387666057625,12152472545400,12961849666800,13818005434800,14723238270000,15679939938000,16690598557776,17757801682192,18884239451792,20072707823025,21326111872065,22647469175397,24039913268349,25506697182759,27051197064975,28676915875395,30387487170763,32186678970446,34078397707926,36066692268750,38155758116190,40349941505874,42653743790658,45071825817018,47609012414250,50270296977775,53060846147855,55986004585035,59051299843635,62262447344625,65625355449225,69146130634581,72831082772877,76686730515252,80719806781900,84937264359740,89346281609052,93954268280484,98768871443844,103797981530100,109049738488020,114532538056893,120255038156781,126226165397761,132455121709625,138951391093515,145724746496979,152785256813943,160143294011103,167809540382250,175794995932050,184110985890810,192769168361770,201781542102470,211160454441750,220918609333950,231069075551886,241625295020187,252601091290587,264010678160775,275868668438415,288190082851957,300990359109869,314285361109929,328091388300225,342425185193520,357303951036648,372745349636616,388767519345096,405389083203000,422629159246840,440507370978584,459043858000728,478259286818313,498174861809625,518812336367325,540194024211765,562342810878255,585282165380055,609036152048875,633629442554675,659087328106566,685435731836622,712701221368422,740911021572150,770093027508090,800275817560362,831488666762754,863761560318514,897125207315975,931611054641895,967251301094403,1004078911697451,1042127632218681,1081432003892625,1122027378351165,1163949932763189,1207236685185388,1251925510126148,1298055154324500,1345665252746100,1394796344798220,1445489890765740,1497788288470140,1551734890153500,1607374019589525,1664750989423621,1723912118744057,1784904750886257,1847777271472275,1912579126687515,1979360841796767,2048174039901639,2119071460941474,2192106980939850,2267335631498770,2344813619542658,2424598347314286,2506748432624766,2591323729359750,2678385348243990,2767995677866419,2860218405967923,2955118540993983,3052762433914375,3153217800312125,3256553742743925,3362840773374225,3472150836885225,3584557333665000,3700135143276000 lpb $0 mov $2,$0 cal $2,52206 ; Partial sums of A050405. sub $0,1 mul $2,4 add $1,$2 lpe div $1,4 add $1,1
277.692308
3,450
0.91108
87d1e0c386cc411636c4fbe49b5f7a3d416acee8
6,652
asm
Assembly
gfx/tilesets.asm
AtmaBuster/pokecrystal16-493-plus
0c8cd4d187c246fe1debc07f89e278fd702595d7
[ "blessing" ]
1
2021-01-19T04:15:45.000Z
2021-01-19T04:15:45.000Z
gfx/tilesets.asm
AtmaBuster/pokecrystal16-493-plus
0c8cd4d187c246fe1debc07f89e278fd702595d7
[ "blessing" ]
null
null
null
gfx/tilesets.asm
AtmaBuster/pokecrystal16-493-plus
0c8cd4d187c246fe1debc07f89e278fd702595d7
[ "blessing" ]
1
2021-01-16T00:12:08.000Z
2021-01-16T00:12:08.000Z
tilecoll: MACRO ; used in data/tilesets/*_collision.asm db COLL_\1, COLL_\2, COLL_\3, COLL_\4 ENDM SECTION "Tileset Data 1", ROMX ;--------------------------------------- Tileset0GFX: INCBIN "gfx/tilesets/sinnoh_1.2bpp.lz" Tileset0Meta: INCBIN "data/tilesets/sinnoh_1_metatiles.bin" Tileset0Coll: INCLUDE "data/tilesets/sinnoh_1_collision.asm" ;--------------------------------------- TilesetSinnoh1GFX: INCBIN "gfx/tilesets/sinnoh_1.2bpp.lz" TilesetSinnoh1Meta: INCBIN "data/tilesets/sinnoh_1_metatiles.bin" TilesetSinnoh1Coll: INCLUDE "data/tilesets/sinnoh_1_collision.asm" ;--------------------------------------- TilesetSinnoh2GFX: INCBIN "gfx/tilesets/sinnoh_2.2bpp.lz" TilesetSinnoh2Meta: INCBIN "data/tilesets/sinnoh_2_metatiles.bin" TilesetSinnoh2Coll: INCLUDE "data/tilesets/sinnoh_2_collision.asm" ;--------------------------------------- TilesetPlayersRoomGFX: INCBIN "gfx/tilesets/players_room.2bpp.lz" TilesetPlayersRoomMeta: INCBIN "data/tilesets/players_room_metatiles.bin" TilesetPlayersRoomColl: INCLUDE "data/tilesets/players_room_collision.asm" ;--------------------------------------- SECTION "Tileset Data 2", ROMX ;--------------------------------------- TilesetPlayersHouseGFX: INCBIN "gfx/tilesets/players_house.2bpp.lz" TilesetPlayersHouseMeta: INCBIN "data/tilesets/players_house_metatiles.bin" TilesetPlayersHouseColl: INCLUDE "data/tilesets/players_house_collision.asm" ;--------------------------------------- TilesetHouseGFX: INCBIN "gfx/tilesets/house.2bpp.lz" TilesetHouseMeta: INCBIN "data/tilesets/house_metatiles.bin" TilesetHouseColl: INCLUDE "data/tilesets/house_collision.asm" ;--------------------------------------- TilesetModernInteriorGFX: INCBIN "gfx/tilesets/modern_interior.2bpp.lz" TilesetModernInteriorMeta: INCBIN "data/tilesets/modern_interior_metatiles.bin" TilesetModernInteriorColl: INCLUDE "data/tilesets/modern_interior_collision.asm" ;--------------------------------------- TilesetLakeGFX: INCBIN "gfx/tilesets/lake.2bpp.lz" TilesetLakeMeta: INCBIN "data/tilesets/lake_metatiles.bin" TilesetLakeColl: INCLUDE "data/tilesets/lake_collision.asm" ;--------------------------------------- TilesetLabGFX: INCBIN "gfx/tilesets/lab.2bpp.lz" TilesetLabMeta: INCBIN "data/tilesets/lab_metatiles.bin" TilesetLabColl: INCLUDE "data/tilesets/lab_collision.asm" ;--------------------------------------- TilesetPokecenterGFX: INCBIN "gfx/tilesets/pokecenter.2bpp.lz" TilesetPokecenterMeta: INCBIN "data/tilesets/pokecenter_metatiles.bin" TilesetPokecenterColl: INCLUDE "data/tilesets/pokecenter_collision.asm" ;--------------------------------------- SECTION "Tileset Data 3", ROMX ;--------------------------------------- TilesetMartGFX: INCBIN "gfx/tilesets/mart.2bpp.lz" TilesetMartMeta: INCBIN "data/tilesets/mart_metatiles.bin" TilesetMartColl: INCLUDE "data/tilesets/mart_collision.asm" ;--------------------------------------- TilesetPokeComCenterGFX: INCBIN "gfx/tilesets/pokecom_center.2bpp.lz" TilesetPokeComCenterMeta: INCBIN "data/tilesets/pokecom_center_metatiles.bin" TilesetPokeComCenterColl: INCLUDE "data/tilesets/pokecom_center_collision.asm" ;--------------------------------------- TilesetMansionGFX: INCBIN "gfx/tilesets/mansion.2bpp.lz" TilesetMansionMeta: INCBIN "data/tilesets/mansion_metatiles.bin" TilesetMansionColl: INCLUDE "data/tilesets/mansion_collision.asm" ;--------------------------------------- TilesetCaveGFX: INCBIN "gfx/tilesets/cave.2bpp.lz" TilesetCaveMeta: INCBIN "data/tilesets/cave_metatiles.bin" TilesetCaveColl: INCLUDE "data/tilesets/cave_collision.asm" ;--------------------------------------- TilesetGateGFX: INCBIN "gfx/tilesets/gate.2bpp.lz" TilesetGateMeta: INCBIN "data/tilesets/gate_metatiles.bin" TilesetGateColl: INCLUDE "data/tilesets/gate_collision.asm" ;--------------------------------------- SECTION "Tileset Data 4", ROMX ;--------------------------------------- TilesetFacilityGFX: INCBIN "gfx/tilesets/facility.2bpp.lz" TilesetFacilityMeta: INCBIN "data/tilesets/facility_metatiles.bin" TilesetFacilityColl: INCLUDE "data/tilesets/facility_collision.asm" ;--------------------------------------- TilesetBikeShopGFX: INCBIN "gfx/tilesets/bike_shop.2bpp.lz" TilesetBikeShopMeta: INCBIN "data/tilesets/bike_shop_metatiles.bin" TilesetBikeShopColl: INCLUDE "data/tilesets/bike_shop_collision.asm" ;--------------------------------------- TilesetParkGFX: INCBIN "gfx/tilesets/park.2bpp.lz" TilesetParkMeta: INCBIN "data/tilesets/park_metatiles.bin" TilesetParkColl: INCLUDE "data/tilesets/park_collision.asm" ;--------------------------------------- TilesetRadioTowerGFX: INCBIN "gfx/tilesets/radio_tower.2bpp.lz" TilesetRadioTowerMeta: INCBIN "data/tilesets/radio_tower_metatiles.bin" TilesetRadioTowerColl: INCLUDE "data/tilesets/radio_tower_collision.asm" ;--------------------------------------- TilesetSolaceonRuinsGFX: INCBIN "gfx/tilesets/solaceon_ruins.2bpp.lz" TilesetSolaceonRuinsMeta: INCBIN "data/tilesets/solaceon_ruins_metatiles.bin" TilesetSolaceonRuinsColl: INCLUDE "data/tilesets/solaceon_ruins_collision.asm" ;--------------------------------------- SECTION "Tileset Data 5", ROMX ;--------------------------------------- TilesetTraditionalHouseGFX: INCBIN "gfx/tilesets/traditional_house.2bpp.lz" TilesetTraditionalHouseMeta: INCBIN "data/tilesets/traditional_house_metatiles.bin" TilesetTraditionalHouseColl: INCLUDE "data/tilesets/traditional_house_collision.asm" ;--------------------------------------- TilesetGameCornerGFX: INCBIN "gfx/tilesets/game_corner.2bpp.lz" TilesetGameCornerMeta: INCBIN "data/tilesets/game_corner_metatiles.bin" TilesetGameCornerColl: INCLUDE "data/tilesets/game_corner_collision.asm" ;--------------------------------------- TilesetSnowpointTempleGFX: INCBIN "gfx/tilesets/snowpoint_temple.2bpp.lz" TilesetSnowpointTempleMeta: INCBIN "data/tilesets/snowpoint_temple_metatiles.bin" TilesetSnowpointTempleColl: INCLUDE "data/tilesets/snowpoint_temple_collision.asm" ;--------------------------------------- TilesetMtCoronetGFX: INCBIN "gfx/tilesets/mt_coronet.2bpp.lz" TilesetMtCoronetMeta: INCBIN "data/tilesets/mt_coronet_metatiles.bin" TilesetMtCoronetColl: INCLUDE "data/tilesets/mt_coronet_collision.asm" ;--------------------------------------- TilesetForestGFX: INCBIN "gfx/tilesets/forest.2bpp.lz" TilesetForestMeta: INCBIN "data/tilesets/forest_metatiles.bin" TilesetForestColl: INCLUDE "data/tilesets/forest_collision.asm" ;--------------------------------------- ;SECTION "Tileset Data 5", ROMX ;SECTION "Tileset Data 6", ROMX ;SECTION "Tileset Data 7", ROMX ;SECTION "Tileset Data 8", ROMX ;SECTION "Tileset Data 9", ROMX
25.389313
55
0.683103
c2b3704d41483917199ae41f8fe8eb0e141d0260
995
asm
Assembly
programs/oeis/212/A212568.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/212/A212568.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/212/A212568.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A212568: Number of (w,x,y,z) with all terms in {1,...,n} and w<|x-y|+|y-z|. ; 0,0,2,24,98,272,608,1184,2092,3440,5350,7960,11422,15904,21588,28672,37368,47904,60522,75480,93050,113520,137192,164384,195428,230672,270478,315224,365302,421120,483100,551680,627312,710464,801618 mov $18,$0 mov $20,$0 lpb $20 clr $0,18 mov $0,$18 sub $20,1 sub $0,$20 mov $15,$0 mov $17,$0 lpb $17 clr $0,15 mov $0,$15 sub $17,1 sub $0,$17 mov $12,$0 mov $14,$0 lpb $14 clr $0,12 mov $0,$12 sub $14,1 sub $0,$14 mov $9,$0 mov $11,$0 lpb $11 mov $0,$9 sub $11,1 sub $0,$11 mov $2,$0 sub $2,1 mov $6,$0 pow $6,2 add $6,1 add $2,$6 mov $4,$6 gcd $4,2 add $4,8 mod $4,$2 sub $4,1 trn $4,1 mul $4,2 add $10,$4 lpe add $13,$10 lpe add $16,$13 lpe add $19,$16 lpe mov $1,$19
18.773585
198
0.473367
5640cc1caf01daede2c21c8d3488cd8750ebeef3
284
asm
Assembly
programs/oeis/242/A242426.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/242/A242426.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/242/A242426.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A242426: floor(n! / n^3). ; 1,0,0,0,0,3,14,78,497,3628,29990,277200,2834328,31770514,387459072,5108103000,72397196844,1097800704000,17735107218083,304112751022080,5516784599040000 mov $1,$0 add $0,1 cal $1,142 div $1,$0 div $1,$0 mov $0,6 lpb $0 mov $0,3 mul $1,3 lpe div $1,3
18.933333
153
0.704225
e1b27e0fcb21dbd3b77fe7d0c0b92bdf51734d3b
8,478
asm
Assembly
Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0x84_notsx.log_21829_1693.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0x84_notsx.log_21829_1693.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0x84_notsx.log_21829_1693.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %rax push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0x1450d, %r13 nop nop nop nop nop dec %rdx mov (%r13), %rax nop nop nop cmp $46044, %rdx lea addresses_WT_ht+0x1e6ad, %r11 nop nop sub %rbx, %rbx mov $0x6162636465666768, %rdi movq %rdi, %xmm5 vmovups %ymm5, (%r11) nop sub %r11, %r11 lea addresses_UC_ht+0x3d75, %rsi lea addresses_UC_ht+0x11133, %rdi and %rdx, %rdx mov $6, %rcx rep movsb nop nop sub $54248, %rdx lea addresses_UC_ht+0xa50d, %rsi lea addresses_WC_ht+0x1ab0d, %rdi nop nop nop sub $10572, %rbx mov $43, %rcx rep movsq nop nop nop xor $57008, %rsi lea addresses_WT_ht+0x1990d, %rsi clflush (%rsi) nop nop nop nop nop xor %rdi, %rdi movl $0x61626364, (%rsi) xor %rsi, %rsi lea addresses_normal_ht+0x58d, %rsi nop nop nop nop and $32097, %rdi movl $0x61626364, (%rsi) nop nop nop nop and %r11, %r11 lea addresses_WC_ht+0x19b2d, %rcx nop nop nop and %rbx, %rbx mov $0x6162636465666768, %r13 movq %r13, %xmm0 vmovups %ymm0, (%rcx) nop nop nop and %r11, %r11 lea addresses_A_ht+0xde8d, %rsi lea addresses_UC_ht+0x1982b, %rdi clflush (%rdi) and %rdx, %rdx mov $73, %rcx rep movsq nop nop nop nop inc %rsi lea addresses_UC_ht+0x1d70d, %rsi lea addresses_UC_ht+0xaed6, %rdi nop nop nop and $63353, %rdx mov $36, %rcx rep movsb nop nop nop and $12307, %rbx lea addresses_D_ht+0xe765, %rax nop nop nop and $35945, %rdx mov (%rax), %r11 sub $39724, %rsi lea addresses_normal_ht+0x910d, %r11 nop nop nop nop nop lfence and $0xffffffffffffffc0, %r11 vmovaps (%r11), %ymm0 vextracti128 $1, %ymm0, %xmm0 vpextrq $0, %xmm0, %r13 nop nop cmp %rdx, %rdx lea addresses_normal_ht+0x1a9ed, %r13 nop nop nop nop add $47854, %rdi mov $0x6162636465666768, %rdx movq %rdx, %xmm6 vmovups %ymm6, (%r13) nop nop nop nop cmp $20323, %rcx lea addresses_WT_ht+0x14dd1, %rsi lea addresses_WC_ht+0x3b4d, %rdi nop nop nop nop nop cmp %r11, %r11 mov $2, %rcx rep movsl cmp %r13, %r13 lea addresses_WC_ht+0x113d, %rax add $60269, %rbx mov (%rax), %si nop add %r11, %r11 lea addresses_WT_ht+0x18c4d, %r11 nop nop nop nop add $6979, %rbx movb (%r11), %cl nop nop nop nop add $35680, %rbx pop %rsi pop %rdx pop %rdi pop %rcx pop %rbx pop %rax pop %r13 pop %r11 ret .global s_faulty_load s_faulty_load: push %r11 push %r12 push %r15 push %rbp push %rbx push %rdx push %rsi // Load lea addresses_PSE+0x1a10d, %rdx nop nop inc %rbp movb (%rdx), %r15b add $10444, %r11 // Store lea addresses_PSE+0x16924, %r12 nop nop nop nop nop sub $33006, %rsi mov $0x5152535455565758, %rbx movq %rbx, %xmm5 vmovups %ymm5, (%r12) nop nop and %r11, %r11 // Faulty Load lea addresses_PSE+0x1a10d, %rdx nop nop and $40110, %r15 vmovaps (%rdx), %ymm5 vextracti128 $0, %ymm5, %xmm5 vpextrq $0, %xmm5, %rsi lea oracles, %rbx and $0xff, %rsi shlq $12, %rsi mov (%rbx,%rsi,1), %rsi pop %rsi pop %rdx pop %rbx pop %rbp pop %r15 pop %r12 pop %r11 ret /* <gen_faulty_load> [REF] {'src': {'type': 'addresses_PSE', 'same': False, 'size': 4, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_PSE', 'same': True, 'size': 1, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'dst': {'type': 'addresses_PSE', 'same': False, 'size': 32, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} [Faulty Load] {'src': {'type': 'addresses_PSE', 'same': True, 'size': 32, 'congruent': 0, 'NT': False, 'AVXalign': True}, 'OP': 'LOAD'} <gen_prepare_buffer> {'src': {'type': 'addresses_WT_ht', 'same': False, 'size': 8, 'congruent': 9, 'NT': True, 'AVXalign': False}, 'OP': 'LOAD'} {'dst': {'type': 'addresses_WT_ht', 'same': False, 'size': 32, 'congruent': 5, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'src': {'type': 'addresses_UC_ht', 'congruent': 2, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 1, 'same': False}, 'OP': 'REPM'} {'src': {'type': 'addresses_UC_ht', 'congruent': 6, 'same': False}, 'dst': {'type': 'addresses_WC_ht', 'congruent': 8, 'same': False}, 'OP': 'REPM'} {'dst': {'type': 'addresses_WT_ht', 'same': False, 'size': 4, 'congruent': 10, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'dst': {'type': 'addresses_normal_ht', 'same': False, 'size': 4, 'congruent': 5, 'NT': False, 'AVXalign': True}, 'OP': 'STOR'} {'dst': {'type': 'addresses_WC_ht', 'same': True, 'size': 32, 'congruent': 5, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'src': {'type': 'addresses_A_ht', 'congruent': 7, 'same': True}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 0, 'same': False}, 'OP': 'REPM'} {'src': {'type': 'addresses_UC_ht', 'congruent': 8, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 0, 'same': False}, 'OP': 'REPM'} {'src': {'type': 'addresses_D_ht', 'same': False, 'size': 8, 'congruent': 1, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_normal_ht', 'same': False, 'size': 32, 'congruent': 9, 'NT': False, 'AVXalign': True}, 'OP': 'LOAD'} {'dst': {'type': 'addresses_normal_ht', 'same': False, 'size': 32, 'congruent': 5, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'src': {'type': 'addresses_WT_ht', 'congruent': 0, 'same': False}, 'dst': {'type': 'addresses_WC_ht', 'congruent': 5, 'same': False}, 'OP': 'REPM'} {'src': {'type': 'addresses_WC_ht', 'same': False, 'size': 2, 'congruent': 4, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_WT_ht', 'same': False, 'size': 1, 'congruent': 6, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'00': 21829} 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 */
32.235741
2,999
0.658646
1d07d69adabf0d3ea3bce63859959a189694f8d2
2,505
asm
Assembly
Driver/Printer/PrintCom/Color/Correct/correctGamma26.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
504
2018-11-18T03:35:53.000Z
2022-03-29T01:02:51.000Z
Driver/Printer/PrintCom/Color/Correct/correctGamma26.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
96
2018-11-19T21:06:50.000Z
2022-03-06T10:26:48.000Z
Driver/Printer/PrintCom/Color/Correct/correctGamma26.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
73
2018-11-19T20:46:53.000Z
2022-03-29T00:59:26.000Z
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1993 -- All Rights Reserved PROJECT: PC GEOS MODULE: DotMatrix printers FILE: correctGamma26.asm AUTHOR: Jim DeFrisco REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 6/21/93 Initial revision DESCRIPTION: Gamma correction table for printing $Id: correctGamma26.asm,v 1.1 97/04/18 11:51:36 newdeal Exp $ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ ; A Gamma-correction table for GAMMA = 2.60 gamma26 segment resource byte 0x00, 0x1e, 0x28, 0x2e, 0x34, 0x38, 0x3c, 0x40 byte 0x43, 0x46, 0x49, 0x4c, 0x4f, 0x51, 0x54, 0x56 byte 0x58, 0x5a, 0x5c, 0x5e, 0x60, 0x62, 0x63, 0x65 byte 0x67, 0x68, 0x6a, 0x6c, 0x6d, 0x6f, 0x70, 0x71 byte 0x73, 0x74, 0x75, 0x77, 0x78, 0x79, 0x7b, 0x7c byte 0x7d, 0x7e, 0x7f, 0x81, 0x82, 0x83, 0x84, 0x85 byte 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d byte 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95 byte 0x96, 0x97, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9c byte 0x9d, 0x9e, 0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa2 byte 0xa3, 0xa4, 0xa5, 0xa6, 0xa6, 0xa7, 0xa8, 0xa9 byte 0xa9, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xae byte 0xaf, 0xb0, 0xb1, 0xb1, 0xb2, 0xb3, 0xb3, 0xb4 byte 0xb5, 0xb5, 0xb6, 0xb7, 0xb7, 0xb8, 0xb9, 0xb9 byte 0xba, 0xba, 0xbb, 0xbc, 0xbc, 0xbd, 0xbe, 0xbe byte 0xbf, 0xbf, 0xc0, 0xc1, 0xc1, 0xc2, 0xc2, 0xc3 byte 0xc4, 0xc4, 0xc5, 0xc5, 0xc6, 0xc7, 0xc7, 0xc8 byte 0xc8, 0xc9, 0xc9, 0xca, 0xca, 0xcb, 0xcc, 0xcc byte 0xcd, 0xcd, 0xce, 0xce, 0xcf, 0xcf, 0xd0, 0xd0 byte 0xd1, 0xd2, 0xd2, 0xd3, 0xd3, 0xd4, 0xd4, 0xd5 byte 0xd5, 0xd6, 0xd6, 0xd7, 0xd7, 0xd8, 0xd8, 0xd9 byte 0xd9, 0xda, 0xda, 0xdb, 0xdb, 0xdc, 0xdc, 0xdd byte 0xdd, 0xde, 0xde, 0xdf, 0xdf, 0xe0, 0xe0, 0xe0 byte 0xe1, 0xe1, 0xe2, 0xe2, 0xe3, 0xe3, 0xe4, 0xe4 byte 0xe5, 0xe5, 0xe6, 0xe6, 0xe6, 0xe7, 0xe7, 0xe8 byte 0xe8, 0xe9, 0xe9, 0xea, 0xea, 0xea, 0xeb, 0xeb byte 0xec, 0xec, 0xed, 0xed, 0xee, 0xee, 0xee, 0xef byte 0xef, 0xf0, 0xf0, 0xf1, 0xf1, 0xf1, 0xf2, 0xf2 byte 0xf3, 0xf3, 0xf3, 0xf4, 0xf4, 0xf5, 0xf5, 0xf5 byte 0xf6, 0xf6, 0xf7, 0xf7, 0xf8, 0xf8, 0xf8, 0xf9 byte 0xf9, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc byte 0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xff, 0xff gamma26 ends
41.75
79
0.590818
de782cac801f9a4def8b4d1e59d4b57aed1a212b
571
asm
Assembly
programs/oeis/001/A001792.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/001/A001792.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/001/A001792.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A001792: a(n) = (n+2)*2^(n-1). ; 1,3,8,20,48,112,256,576,1280,2816,6144,13312,28672,61440,131072,278528,589824,1245184,2621440,5505024,11534336,24117248,50331648,104857600,218103808,452984832,939524096,1946157056,4026531840,8321499136,17179869184,35433480192,73014444032,150323855360,309237645312,635655159808,1305670057984,2680059592704,5497558138880,11269994184704,23089744183296,47278999994368,96757023244288,197912092999680,404620279021568,826832744087552,1688849860263936,3448068464705536,7036874417766400 add $0,2 mov $2,2 pow $2,$0 mul $0,$2 mov $1,$0 div $1,8
57.1
479
0.828371
726d1917f8863b1a118eb16aee432cd58e436836
331
asm
Assembly
src/intel/tools/tests/gen9/halt.asm
SoftReaper/Mesa-Renoir-deb
8d1de1f66058d62b41fe55d36522efea2bdf996d
[ "MIT" ]
null
null
null
src/intel/tools/tests/gen9/halt.asm
SoftReaper/Mesa-Renoir-deb
8d1de1f66058d62b41fe55d36522efea2bdf996d
[ "MIT" ]
null
null
null
src/intel/tools/tests/gen9/halt.asm
SoftReaper/Mesa-Renoir-deb
8d1de1f66058d62b41fe55d36522efea2bdf996d
[ "MIT" ]
null
null
null
(-f0.1.any4h) halt(8) JIP: LABEL0 UIP: LABEL0 { align1 1Q }; halt(8) JIP: LABEL1 UIP: LABEL1 { align1 1Q }; LABEL1: (-f0.1.any4h) halt(16) JIP: LABEL0 UIP: LABEL0 { align1 1H }; halt(16) JIP: LABEL0 UIP: LABEL0 { align1 1H }; LABEL0:
55.166667
78
0.465257
c541272df7cf588dc9ee034f5e7cbd79295757fa
2,275
asm
Assembly
util/cv/strdf.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
util/cv/strdf.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
util/cv/strdf.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
* Compare strings for equality v0.00  May 1988 J.R.Oakley QJUMP * section cv * include 'dev8_keys_err' * xref cv_lctab * xdef cv_strdf *+++ * Compare two strings for equality: no indication of lexical ordering * is given in the case of inequality. The comparison converts each * character to lower case before comparing. * * Registers: * Entry Exit * D0 lsw/msw pos of diff, 0 if all = * A0 string 0 base preserved * A1 string 1 base preserved *--- cv_strdf steqreg reg d1-d4/a0/a1/a2 movem.l steqreg,-(sp) move.w (a0)+,d0 ; length 0 move.w (a1)+,d1 ; length 1 move.l #$ffff,d4 ; zero the MSW if equal cmp.w d0,d1 ; choose the shorter bgt.s uce_ltab ; we have it bne.s uce_set1 ; it's string 1 moveq #0,d4 ; the same, keep neither half if equal bra.s uce_ltab uce_set1 move.w d1,d0 ; it's string 1 swap d4 ; zero LSW if equal uce_ltab move.w d0,d3 ; keep initial length lea cv_lctab(pc),a2 ; point to lowercase table moveq #0,d1 ; make index word OK bra.s uce_cmpe uce_cmpl move.b (a0)+,d1 move.b 0(a2,d1.w),d2 ; get lowercased char from string 0 move.b (a1)+,d1 cmp.b 0(a2,d1.w),d2 ; is it same as lowercased string 1? uce_cmpe dbne d0,uce_cmpl ; go until NE or done sub.w d0,d3 ; first failure was here move.w d3,d2 swap d2 move.w d3,d2 ; same in both tst.w d0 ; was there a failure at all? bpl.s uce_exit ; yes and.l d4,d2 ; no, zero the relevant difference uce_exit move.l d2,d0 ; result where we want it movem.l (sp)+,steqreg rts * end
37.916667
79
0.457143
0ed37e817270ececd3798ba559ddc62cbea67b65
199,482
asm
Assembly
C++ Development Root/MSVC++v16 (2019) Solution Space/ConsoleApplication/x64/Debug/SourceCode/Domain/Client/ClientHandler.asm
Dpham181/CPSC-462-GROUP-2
36f55ec4980e2e98d58f1f0a63ecc5070d7faa47
[ "MIT" ]
1
2021-05-19T06:35:15.000Z
2021-05-19T06:35:15.000Z
C++ Development Root/MSVC++v16 (2019) Solution Space/ConsoleApplication/x64/Debug/SourceCode/Domain/Client/ClientHandler.asm
Dpham181/CPSC-462-GROUP-2
36f55ec4980e2e98d58f1f0a63ecc5070d7faa47
[ "MIT" ]
null
null
null
C++ Development Root/MSVC++v16 (2019) Solution Space/ConsoleApplication/x64/Debug/SourceCode/Domain/Client/ClientHandler.asm
Dpham181/CPSC-462-GROUP-2
36f55ec4980e2e98d58f1f0a63ecc5070d7faa47
[ "MIT" ]
null
null
null
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.28.29334.0 include listing.inc INCLUDELIB MSVCRTD INCLUDELIB OLDNAMES msvcjmc SEGMENT __2B31710D_vcruntime_new@h DB 01H __09340588_corecrt_math@h DB 01H __24E9E95F_stdlib@h DB 01H __ACEB72CA_cstdlib DB 01H __F66CEB67_corecrt_stdio_config@h DB 01H __101834BA_corecrt_wstdio@h DB 01H __AD6A91B7_stdio@h DB 01H __367CC694_corecrt_memcpy_s@h DB 01H __5467428D_corecrt_wconio@h DB 01H __4442441F_corecrt_wio@h DB 01H __DC9673E3_corecrt_wstring@h DB 01H __45F4AF76_corecrt_wtime@h DB 01H __186FF47F_stat@h DB 01H __534C724A_wchar@h DB 01H __0920A867_cstddef DB 01H __D63D5DDA_limits DB 01H __2D26A21E_type_traits DB 01H __B0C4CEA9_malloc@h DB 01H __49CBC5C5_vcruntime_exception@h DB 01H __8B12B611_exception DB 01H __35D7DDB3_corecrt_memory@h DB 01H __A29A7DFB_string@h DB 01H __F4CD6065_xutility DB 01H __F1739482_xmemory DB 01H __61DEF4C5_algorithm DB 01H __B68D2755_vcruntime_typeinfo@h DB 01H __8412937C_typeinfo DB 01H __6A935154_memory DB 01H __A298E223_tuple DB 01H __B8402D15_xpolymorphic_allocator@h DB 01H __85A0121E_xstring DB 01H __025C8C4C_stdexcept DB 01H __7242C389_ctype@h DB 01H __1E40D7C8_string DB 01H __563C2410_any DB 01H __0D920760_xtree DB 01H __04BBFB62_cmath DB 01H __127BCABE_xcall_once@h DB 01H __8AA3BE86_time@h DB 01H __0E11DA62_xthreads@h DB 01H __BD080118_atomic DB 01H __AD26D89E_system_error DB 01H __46D6065B_xfacet DB 01H __9B9B70B4_xlocinfo DB 01H __5A9E662F_xlocale DB 01H __A27E07A7_xiosbase DB 01H __C4190038_xlocnum DB 01H __A1E1ADF7_ios DB 01H __43313DD1_LoggerHandler@hpp DB 01H __E485D457_Client@hpp DB 01H __753A1F67_ClientHandler@cpp DB 01H __9B902D3A_vector DB 01H __2A5E89D1_istream DB 01H __498EBCEB_ostream DB 01H __00FC34F0_streambuf DB 01H __1AD4885C_iosfwd DB 01H __E561D725_iterator DB 01H __9BE6F741_utility DB 01H __6CF96053_xstddef DB 01H __811E3AC7_xatomic@h DB 01H msvcjmc ENDS PUBLIC ?__empty_global_delete@@YAXPEAX@Z ; __empty_global_delete PUBLIC ?__empty_global_delete@@YAXPEAX_K@Z ; __empty_global_delete PUBLIC ?__empty_global_delete@@YAXPEAXW4align_val_t@std@@@Z ; __empty_global_delete PUBLIC ?__empty_global_delete@@YAXPEAX_KW4align_val_t@std@@@Z ; __empty_global_delete PUBLIC ?_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z ; std::_Adjust_manually_vector_aligned PUBLIC ?_Orphan_all@_Container_base12@std@@QEAAXXZ ; std::_Container_base12::_Orphan_all PUBLIC ?deallocate@?$allocator@D@std@@QEAAXQEAD_K@Z ; std::allocator<char>::deallocate PUBLIC ?assign@?$_Narrow_char_traits@DH@std@@SAXAEADAEBD@Z ; std::_Narrow_char_traits<char,int>::assign PUBLIC ?_Large_string_engaged@?$_String_val@U?$_Simple_types@D@std@@@std@@QEBA_NXZ ; std::_String_val<std::_Simple_types<char> >::_Large_string_engaged PUBLIC ??1_Bxty@?$_String_val@U?$_Simple_types@D@std@@@std@@QEAA@XZ ; std::_String_val<std::_Simple_types<char> >::_Bxty::~_Bxty PUBLIC ??1?$_String_val@U?$_Simple_types@D@std@@@std@@QEAA@XZ ; std::_String_val<std::_Simple_types<char> >::~_String_val<std::_Simple_types<char> > PUBLIC ??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::~basic_string<char,std::char_traits<char>,std::allocator<char> > PUBLIC ?_Tidy_deallocate@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAXXZ ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Tidy_deallocate PUBLIC ?_Getal@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAAEAV?$allocator@D@2@XZ ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Getal PUBLIC ?_Get_first@?$_Compressed_pair@V?$allocator@D@std@@V?$_String_val@U?$_Simple_types@D@std@@@2@$00@std@@QEAAAEAV?$allocator@D@2@XZ ; std::_Compressed_pair<std::allocator<char>,std::_String_val<std::_Simple_types<char> >,1>::_Get_first PUBLIC ??1?$_Compressed_pair@V?$allocator@D@std@@V?$_String_val@U?$_Simple_types@D@std@@@2@$00@std@@QEAA@XZ ; std::_Compressed_pair<std::allocator<char>,std::_String_val<std::_Simple_types<char> >,1>::~_Compressed_pair<std::allocator<char>,std::_String_val<std::_Simple_types<char> >,1> PUBLIC ??_G?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAPEAXI@Z ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::`scalar deleting destructor' PUBLIC ?deallocate@?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@QEAAXQEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@_K@Z ; std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >::deallocate PUBLIC ??1?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@QEAA@XZ ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::~vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > PUBLIC ?_Destroy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@0@Z ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::_Destroy PUBLIC ?_Tidy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXXZ ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::_Tidy PUBLIC ?_Getal@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::_Getal PUBLIC ?_Get_first@?$_Compressed_pair@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@V?$_Vector_val@U?$_Simple_types@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@2@$00@std@@QEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ ; std::_Compressed_pair<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >,std::_Vector_val<std::_Simple_types<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >,1>::_Get_first PUBLIC ??1UserCredentials@Persistence@TechnicalServices@@QEAA@XZ ; TechnicalServices::Persistence::UserCredentials::~UserCredentials PUBLIC ?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z ; Domain::Client::ClientHandler::UseClientManagement PUBLIC ??1ClientHandler@Client@Domain@@UEAA@XZ ; Domain::Client::ClientHandler::~ClientHandler PUBLIC ??$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z ; std::make_unique<Domain::Client::ClientManagement,TechnicalServices::Persistence::UserCredentials const &,0> PUBLIC ??R?$default_delete@UClientManagement@Client@Domain@@@std@@QEBAXPEAUClientManagement@Client@Domain@@@Z ; std::default_delete<Domain::Client::ClientManagement>::operator() PUBLIC ??1?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAA@XZ ; std::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> >::~unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> > PUBLIC ?get_deleter@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAAAEAU?$default_delete@UClientManagement@Client@Domain@@@2@XZ ; std::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> >::get_deleter PUBLIC ?release@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAAPEAUClientManagement@Client@Domain@@XZ ; std::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> >::release PUBLIC ?_Get_first@?$_Compressed_pair@U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@$00@std@@QEAAAEAU?$default_delete@UClientManagement@Client@Domain@@@2@XZ ; std::_Compressed_pair<std::default_delete<Domain::Client::ClientManagement>,Domain::Client::ClientManagement *,1>::_Get_first PUBLIC ??$?0UClientManagement@Client@Domain@@$0A@@?$default_delete@VClientHandler@Client@Domain@@@std@@QEAA@AEBU?$default_delete@UClientManagement@Client@Domain@@@1@@Z ; std::default_delete<Domain::Client::ClientHandler>::default_delete<Domain::Client::ClientHandler><Domain::Client::ClientManagement,0> PUBLIC ??$?0UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@$0A@@?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@QEAA@$$QEAV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@1@@Z ; std::unique_ptr<Domain::Client::ClientHandler,std::default_delete<Domain::Client::ClientHandler> >::unique_ptr<Domain::Client::ClientHandler,std::default_delete<Domain::Client::ClientHandler> ><Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement>,0> PUBLIC ??$?0U?$default_delete@VClientHandler@Client@Domain@@@std@@$0A@@?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@QEAA@$$T@Z ; std::unique_ptr<Domain::Client::ClientHandler,std::default_delete<Domain::Client::ClientHandler> >::unique_ptr<Domain::Client::ClientHandler,std::default_delete<Domain::Client::ClientHandler> ><std::default_delete<Domain::Client::ClientHandler>,0> PUBLIC ??$_Delete_plain_internal@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z ; std::_Delete_plain_internal<std::allocator<std::_Container_proxy> > PUBLIC ??$exchange@PEAU_Container_proxy@std@@$$T@std@@YAPEAU_Container_proxy@0@AEAPEAU10@$$QEA$$T@Z ; std::exchange<std::_Container_proxy *,std::nullptr_t> PUBLIC ??$?0V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$allocator@U_Container_proxy@std@@@std@@QEAA@AEBV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z ; std::allocator<std::_Container_proxy>::allocator<std::_Container_proxy><std::basic_string<char,std::char_traits<char>,std::allocator<char> > > PUBLIC ??$?0D@?$allocator@U_Container_proxy@std@@@std@@QEAA@AEBV?$allocator@D@1@@Z ; std::allocator<std::_Container_proxy>::allocator<std::_Container_proxy><char> PUBLIC ??$_Destroy_in_place@PEAD@std@@YAXAEAPEAD@Z ; std::_Destroy_in_place<char *> PUBLIC ??$_Deallocate@$0BA@$0A@@std@@YAXPEAX_K@Z ; std::_Deallocate<16,0> PUBLIC ??$_Destroy_range@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@YAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@QEAV10@AEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z ; std::_Destroy_range<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > PUBLIC ??$forward@AEBUUserCredentials@Persistence@TechnicalServices@@@std@@YAAEBUUserCredentials@Persistence@TechnicalServices@@AEBU123@@Z ; std::forward<TechnicalServices::Persistence::UserCredentials const &> PUBLIC ??$?0U?$default_delete@UClientManagement@Client@Domain@@@std@@$0A@@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAA@PEAUClientManagement@Client@Domain@@@Z ; std::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> >::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> ><std::default_delete<Domain::Client::ClientManagement>,0> PUBLIC ??$forward@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@YA$$QEAU?$default_delete@UClientManagement@Client@Domain@@@0@AEAU10@@Z ; std::forward<std::default_delete<Domain::Client::ClientManagement> > PUBLIC ??$?0U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@@?$_Compressed_pair@U?$default_delete@VClientHandler@Client@Domain@@@std@@PEAVClientHandler@Client@Domain@@$00@std@@QEAA@U_One_then_variadic_args_t@1@$$QEAU?$default_delete@UClientManagement@Client@Domain@@@1@$$QEAPEAUClientManagement@Client@Domain@@@Z ; std::_Compressed_pair<std::default_delete<Domain::Client::ClientHandler>,Domain::Client::ClientHandler *,1>::_Compressed_pair<std::default_delete<Domain::Client::ClientHandler>,Domain::Client::ClientHandler *,1><std::default_delete<Domain::Client::ClientManagement>,Domain::Client::ClientManagement *> PUBLIC ??$?0$$V@?$_Compressed_pair@U?$default_delete@VClientHandler@Client@Domain@@@std@@PEAVClientHandler@Client@Domain@@$00@std@@QEAA@U_Zero_then_variadic_args_t@1@@Z ; std::_Compressed_pair<std::default_delete<Domain::Client::ClientHandler>,Domain::Client::ClientHandler *,1>::_Compressed_pair<std::default_delete<Domain::Client::ClientHandler>,Domain::Client::ClientHandler *,1><> PUBLIC ??$_Deallocate_plain@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z ; std::_Deallocate_plain<std::allocator<std::_Container_proxy> > PUBLIC ??$_Unfancy@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@YAPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PEAV10@@Z ; std::_Unfancy<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > PUBLIC ??$destroy@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$_Default_allocator_traits@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@SAXAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@QEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z ; std::_Default_allocator_traits<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::destroy<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > PUBLIC ??$exchange@PEAUClientManagement@Client@Domain@@PEAU123@@std@@YAPEAUClientManagement@Client@Domain@@AEAPEAU123@$$QEAPEAU123@@Z ; std::exchange<Domain::Client::ClientManagement *,Domain::Client::ClientManagement *> PUBLIC ??$?0AEAPEAUClientManagement@Client@Domain@@@?$_Compressed_pair@U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@$00@std@@QEAA@U_Zero_then_variadic_args_t@1@AEAPEAUClientManagement@Client@Domain@@@Z ; std::_Compressed_pair<std::default_delete<Domain::Client::ClientManagement>,Domain::Client::ClientManagement *,1>::_Compressed_pair<std::default_delete<Domain::Client::ClientManagement>,Domain::Client::ClientManagement *,1><Domain::Client::ClientManagement * &> PUBLIC ??$forward@PEAUClientManagement@Client@Domain@@@std@@YA$$QEAPEAUClientManagement@Client@Domain@@AEAPEAU123@@Z ; std::forward<Domain::Client::ClientManagement *> PUBLIC ?deallocate@?$_Default_allocator_traits@V?$allocator@U_Container_proxy@std@@@std@@@std@@SAXAEAV?$allocator@U_Container_proxy@std@@@2@QEAU_Container_proxy@2@_K@Z ; std::_Default_allocator_traits<std::allocator<std::_Container_proxy> >::deallocate PUBLIC ??$forward@AEAPEAUClientManagement@Client@Domain@@@std@@YAAEAPEAUClientManagement@Client@Domain@@AEAPEAU123@@Z ; std::forward<Domain::Client::ClientManagement * &> PUBLIC __JustMyCode_Default PUBLIC ?__LINE__Var@?0??_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z@4JA ; `std::_Adjust_manually_vector_aligned'::`1'::__LINE__Var PUBLIC ??_C@_0BB@FCMFBGOM@invalid?5argument@ ; `string' PUBLIC ??_C@_02DKCKIIND@?$CFs@ ; `string' PUBLIC ??_C@_0GI@CLKHGMEI@C?3?2Program?5Files?5?$CIx86?$CJ?2Microsof@ ; `string' PUBLIC ??_C@_1NA@PDNNFCLD@?$AAC?$AA?3?$AA?2?$AAP?$AAr?$AAo?$AAg?$AAr?$AAa?$AAm?$AA?5?$AAF?$AAi?$AAl?$AAe@ ; `string' PUBLIC ??_C@_1EK@NIFDJFDG@?$AAs?$AAt?$AAd?$AA?3?$AA?3?$AA_?$AAA?$AAd?$AAj?$AAu?$AAs?$AAt?$AA_?$AAm?$AAa@ ; `string' PUBLIC ??_C@_1CG@JNLFBNGN@?$AA?$CC?$AAi?$AAn?$AAv?$AAa?$AAl?$AAi?$AAd?$AA?5?$AAa?$AAr?$AAg?$AAu?$AAm?$AAe@ ; `string' PUBLIC ??_7ClientHandler@Client@Domain@@6B@ ; Domain::Client::ClientHandler::`vftable' PUBLIC ??_R0?AUNoSuchUser@PersistenceHandler@Persistence@TechnicalServices@@@8 ; TechnicalServices::Persistence::PersistenceHandler::NoSuchUser `RTTI Type Descriptor' PUBLIC ??_R4ClientHandler@Client@Domain@@6B@ ; Domain::Client::ClientHandler::`RTTI Complete Object Locator' PUBLIC ??_R0?AVClientHandler@Client@Domain@@@8 ; Domain::Client::ClientHandler `RTTI Type Descriptor' PUBLIC ??_R3ClientHandler@Client@Domain@@8 ; Domain::Client::ClientHandler::`RTTI Class Hierarchy Descriptor' PUBLIC ??_R2ClientHandler@Client@Domain@@8 ; Domain::Client::ClientHandler::`RTTI Base Class Array' PUBLIC ??_R1A@?0A@EA@ClientHandler@Client@Domain@@8 ; Domain::Client::ClientHandler::`RTTI Base Class Descriptor at (0,-1,0,64)' EXTRN _purecall:PROC EXTRN ??2@YAPEAX_K@Z:PROC ; operator new EXTRN ??3@YAXPEAX_K@Z:PROC ; operator delete EXTRN __imp__invalid_parameter:PROC EXTRN __imp__CrtDbgReport:PROC EXTRN __imp_??0_Lockit@std@@QEAA@H@Z:PROC EXTRN __imp_??1_Lockit@std@@QEAA@XZ:PROC EXTRN ?instance@PersistenceHandler@Persistence@TechnicalServices@@SAAEAV123@XZ:PROC ; TechnicalServices::Persistence::PersistenceHandler::instance EXTRN ??0ClientManagement@Client@Domain@@QEAA@AEBUUserCredentials@Persistence@TechnicalServices@@@Z:PROC ; Domain::Client::ClientManagement::ClientManagement EXTRN _RTC_CheckStackVars:PROC EXTRN _RTC_InitBase:PROC EXTRN _RTC_Shutdown:PROC EXTRN __CheckForDebuggerJustMyCode:PROC EXTRN __CxxFrameHandler4:PROC EXTRN __GSHandlerCheck:PROC EXTRN __GSHandlerCheck_EH4:PROC EXTRN __security_check_cookie:PROC EXTRN ??_7type_info@@6B@:BYTE ; type_info::`vftable' EXTRN __security_cookie:QWORD ; COMDAT pdata pdata SEGMENT $pdata$?__empty_global_delete@@YAXPEAX@Z DD imagerel $LN3 DD imagerel $LN3+64 DD imagerel $unwind$?__empty_global_delete@@YAXPEAX@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?__empty_global_delete@@YAXPEAX_K@Z DD imagerel $LN3 DD imagerel $LN3+69 DD imagerel $unwind$?__empty_global_delete@@YAXPEAX_K@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?__empty_global_delete@@YAXPEAXW4align_val_t@std@@@Z DD imagerel $LN3 DD imagerel $LN3+69 DD imagerel $unwind$?__empty_global_delete@@YAXPEAXW4align_val_t@std@@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?__empty_global_delete@@YAXPEAX_KW4align_val_t@std@@@Z DD imagerel $LN3 DD imagerel $LN3+74 DD imagerel $unwind$?__empty_global_delete@@YAXPEAX_KW4align_val_t@std@@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z DD imagerel $LN21 DD imagerel $LN21+476 DD imagerel $unwind$?_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?_Orphan_all@_Container_base12@std@@QEAAXXZ DD imagerel $LN7 DD imagerel $LN7+232 DD imagerel $unwind$?_Orphan_all@_Container_base12@std@@QEAAXXZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?deallocate@?$allocator@D@std@@QEAAXQEAD_K@Z DD imagerel $LN3 DD imagerel $LN3+93 DD imagerel $unwind$?deallocate@?$allocator@D@std@@QEAAXQEAD_K@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?assign@?$_Narrow_char_traits@DH@std@@SAXAEADAEBD@Z DD imagerel $LN3 DD imagerel $LN3+88 DD imagerel $unwind$?assign@?$_Narrow_char_traits@DH@std@@SAXAEADAEBD@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?_Large_string_engaged@?$_String_val@U?$_Simple_types@D@std@@@std@@QEBA_NXZ DD imagerel $LN5 DD imagerel $LN5+107 DD imagerel $unwind$?_Large_string_engaged@?$_String_val@U?$_Simple_types@D@std@@@std@@QEBA_NXZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??1_Bxty@?$_String_val@U?$_Simple_types@D@std@@@std@@QEAA@XZ DD imagerel $LN3 DD imagerel $LN3+64 DD imagerel $unwind$??1_Bxty@?$_String_val@U?$_Simple_types@D@std@@@std@@QEAA@XZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??1?$_String_val@U?$_Simple_types@D@std@@@std@@QEAA@XZ DD imagerel $LN3 DD imagerel $LN3+71 DD imagerel $unwind$??1?$_String_val@U?$_Simple_types@D@std@@@std@@QEAA@XZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ DD imagerel $LN3 DD imagerel $LN3+212 DD imagerel $unwind$??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?_Tidy_deallocate@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAXXZ DD imagerel $LN4 DD imagerel $LN4+255 DD imagerel $unwind$?_Tidy_deallocate@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAXXZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?_Getal@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAAEAV?$allocator@D@2@XZ DD imagerel $LN3 DD imagerel $LN3+79 DD imagerel $unwind$?_Getal@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAAEAV?$allocator@D@2@XZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?_Get_first@?$_Compressed_pair@V?$allocator@D@std@@V?$_String_val@U?$_Simple_types@D@std@@@2@$00@std@@QEAAAEAV?$allocator@D@2@XZ DD imagerel $LN3 DD imagerel $LN3+71 DD imagerel $unwind$?_Get_first@?$_Compressed_pair@V?$allocator@D@std@@V?$_String_val@U?$_Simple_types@D@std@@@2@$00@std@@QEAAAEAV?$allocator@D@2@XZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??1?$_Compressed_pair@V?$allocator@D@std@@V?$_String_val@U?$_Simple_types@D@std@@@2@$00@std@@QEAA@XZ DD imagerel $LN3 DD imagerel $LN3+67 DD imagerel $unwind$??1?$_Compressed_pair@V?$allocator@D@std@@V?$_String_val@U?$_Simple_types@D@std@@@2@$00@std@@QEAA@XZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??_G?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAPEAXI@Z DD imagerel $LN4 DD imagerel $LN4+105 DD imagerel $unwind$??_G?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAPEAXI@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?deallocate@?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@QEAAXQEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@_K@Z DD imagerel $LN3 DD imagerel $LN3+97 DD imagerel $unwind$?deallocate@?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@QEAAXQEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@_K@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??1?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@QEAA@XZ DD imagerel $LN3 DD imagerel $LN3+201 DD imagerel $unwind$??1?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@QEAA@XZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?_Destroy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@0@Z DD imagerel $LN3 DD imagerel $LN3+108 DD imagerel $unwind$?_Destroy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@0@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?_Tidy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXXZ DD imagerel $LN4 DD imagerel $LN4+286 DD imagerel $unwind$?_Tidy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXXZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?_Getal@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ DD imagerel $LN3 DD imagerel $LN3+79 DD imagerel $unwind$?_Getal@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?_Get_first@?$_Compressed_pair@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@V?$_Vector_val@U?$_Simple_types@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@2@$00@std@@QEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ DD imagerel $LN3 DD imagerel $LN3+71 DD imagerel $unwind$?_Get_first@?$_Compressed_pair@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@V?$_Vector_val@U?$_Simple_types@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@2@$00@std@@QEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??1UserCredentials@Persistence@TechnicalServices@@QEAA@XZ DD imagerel $LN3 DD imagerel $LN3+109 DD imagerel $unwind$??1UserCredentials@Persistence@TechnicalServices@@QEAA@XZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z DD imagerel $LN14 DD imagerel $LN14+360 DD imagerel $unwind$?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA DD imagerel ?dtor$0@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA DD imagerel ?dtor$0@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA+36 DD imagerel $unwind$?dtor$0@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?catch$3@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA DD imagerel ?catch$3@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA DD imagerel ?catch$3@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA+35 DD imagerel $unwind$?catch$3@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??1ClientHandler@Client@Domain@@UEAA@XZ DD imagerel $LN3 DD imagerel $LN3+81 DD imagerel $unwind$??1ClientHandler@Client@Domain@@UEAA@XZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z DD imagerel $LN8 DD imagerel $LN8+219 DD imagerel $unwind$??$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0???$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA DD imagerel ?dtor$0@?0???$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA DD imagerel ?dtor$0@?0???$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA+44 DD imagerel $unwind$?dtor$0@?0???$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??R?$default_delete@UClientManagement@Client@Domain@@@std@@QEBAXPEAUClientManagement@Client@Domain@@@Z DD imagerel $LN5 DD imagerel $LN5+152 DD imagerel $unwind$??R?$default_delete@UClientManagement@Client@Domain@@@std@@QEBAXPEAUClientManagement@Client@Domain@@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??1?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAA@XZ DD imagerel $LN4 DD imagerel $LN4+135 DD imagerel $unwind$??1?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAA@XZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?get_deleter@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAAAEAU?$default_delete@UClientManagement@Client@Domain@@@2@XZ DD imagerel $LN3 DD imagerel $LN3+79 DD imagerel $unwind$?get_deleter@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAAAEAU?$default_delete@UClientManagement@Client@Domain@@@2@XZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?release@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAAPEAUClientManagement@Client@Domain@@XZ DD imagerel $LN3 DD imagerel $LN3+97 DD imagerel $unwind$?release@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAAPEAUClientManagement@Client@Domain@@XZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?_Get_first@?$_Compressed_pair@U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@$00@std@@QEAAAEAU?$default_delete@UClientManagement@Client@Domain@@@2@XZ DD imagerel $LN3 DD imagerel $LN3+71 DD imagerel $unwind$?_Get_first@?$_Compressed_pair@U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@$00@std@@QEAAAEAU?$default_delete@UClientManagement@Client@Domain@@@2@XZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0UClientManagement@Client@Domain@@$0A@@?$default_delete@VClientHandler@Client@Domain@@@std@@QEAA@AEBU?$default_delete@UClientManagement@Client@Domain@@@1@@Z DD imagerel $LN3 DD imagerel $LN3+76 DD imagerel $unwind$??$?0UClientManagement@Client@Domain@@$0A@@?$default_delete@VClientHandler@Client@Domain@@@std@@QEAA@AEBU?$default_delete@UClientManagement@Client@Domain@@@1@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@$0A@@?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@QEAA@$$QEAV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@1@@Z DD imagerel $LN3 DD imagerel $LN3+182 DD imagerel $unwind$??$?0UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@$0A@@?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@QEAA@$$QEAV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@1@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0U?$default_delete@VClientHandler@Client@Domain@@@std@@$0A@@?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@QEAA@$$T@Z DD imagerel $LN3 DD imagerel $LN3+109 DD imagerel $unwind$??$?0U?$default_delete@VClientHandler@Client@Domain@@@std@@$0A@@?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@QEAA@$$T@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Delete_plain_internal@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z DD imagerel $LN3 DD imagerel $LN3+88 DD imagerel $unwind$??$_Delete_plain_internal@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$exchange@PEAU_Container_proxy@std@@$$T@std@@YAPEAU_Container_proxy@0@AEAPEAU10@$$QEA$$T@Z DD imagerel $LN3 DD imagerel $LN3+107 DD imagerel $unwind$??$exchange@PEAU_Container_proxy@std@@$$T@std@@YAPEAU_Container_proxy@0@AEAPEAU10@$$QEA$$T@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$allocator@U_Container_proxy@std@@@std@@QEAA@AEBV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z DD imagerel $LN3 DD imagerel $LN3+76 DD imagerel $unwind$??$?0V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$allocator@U_Container_proxy@std@@@std@@QEAA@AEBV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0D@?$allocator@U_Container_proxy@std@@@std@@QEAA@AEBV?$allocator@D@1@@Z DD imagerel $LN3 DD imagerel $LN3+76 DD imagerel $unwind$??$?0D@?$allocator@U_Container_proxy@std@@@std@@QEAA@AEBV?$allocator@D@1@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Destroy_in_place@PEAD@std@@YAXAEAPEAD@Z DD imagerel $LN3 DD imagerel $LN3+64 DD imagerel $unwind$??$_Destroy_in_place@PEAD@std@@YAXAEAPEAD@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Deallocate@$0BA@$0A@@std@@YAXPEAX_K@Z DD imagerel $LN4 DD imagerel $LN4+121 DD imagerel $unwind$??$_Deallocate@$0BA@$0A@@std@@YAXPEAX_K@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Destroy_range@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@YAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@QEAV10@AEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z DD imagerel $LN6 DD imagerel $LN6+139 DD imagerel $unwind$??$_Destroy_range@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@YAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@QEAV10@AEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$forward@AEBUUserCredentials@Persistence@TechnicalServices@@@std@@YAAEBUUserCredentials@Persistence@TechnicalServices@@AEBU123@@Z DD imagerel $LN3 DD imagerel $LN3+71 DD imagerel $unwind$??$forward@AEBUUserCredentials@Persistence@TechnicalServices@@@std@@YAAEBUUserCredentials@Persistence@TechnicalServices@@AEBU123@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0U?$default_delete@UClientManagement@Client@Domain@@@std@@$0A@@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAA@PEAUClientManagement@Client@Domain@@@Z DD imagerel $LN3 DD imagerel $LN3+116 DD imagerel $unwind$??$?0U?$default_delete@UClientManagement@Client@Domain@@@std@@$0A@@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAA@PEAUClientManagement@Client@Domain@@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$forward@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@YA$$QEAU?$default_delete@UClientManagement@Client@Domain@@@0@AEAU10@@Z DD imagerel $LN3 DD imagerel $LN3+71 DD imagerel $unwind$??$forward@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@YA$$QEAU?$default_delete@UClientManagement@Client@Domain@@@0@AEAU10@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@@?$_Compressed_pair@U?$default_delete@VClientHandler@Client@Domain@@@std@@PEAVClientHandler@Client@Domain@@$00@std@@QEAA@U_One_then_variadic_args_t@1@$$QEAU?$default_delete@UClientManagement@Client@Domain@@@1@$$QEAPEAUClientManagement@Client@Domain@@@Z DD imagerel $LN3 DD imagerel $LN3+137 DD imagerel $unwind$??$?0U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@@?$_Compressed_pair@U?$default_delete@VClientHandler@Client@Domain@@@std@@PEAVClientHandler@Client@Domain@@$00@std@@QEAA@U_One_then_variadic_args_t@1@$$QEAU?$default_delete@UClientManagement@Client@Domain@@@1@$$QEAPEAUClientManagement@Client@Domain@@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0$$V@?$_Compressed_pair@U?$default_delete@VClientHandler@Client@Domain@@@std@@PEAVClientHandler@Client@Domain@@$00@std@@QEAA@U_Zero_then_variadic_args_t@1@@Z DD imagerel $LN3 DD imagerel $LN3+89 DD imagerel $unwind$??$?0$$V@?$_Compressed_pair@U?$default_delete@VClientHandler@Client@Domain@@@std@@PEAVClientHandler@Client@Domain@@$00@std@@QEAA@U_Zero_then_variadic_args_t@1@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Deallocate_plain@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z DD imagerel $LN3 DD imagerel $LN3+95 DD imagerel $unwind$??$_Deallocate_plain@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Unfancy@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@YAPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PEAV10@@Z DD imagerel $LN3 DD imagerel $LN3+71 DD imagerel $unwind$??$_Unfancy@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@YAPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PEAV10@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$destroy@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$_Default_allocator_traits@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@SAXAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@QEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z DD imagerel $LN3 DD imagerel $LN3+83 DD imagerel $unwind$??$destroy@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$_Default_allocator_traits@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@SAXAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@QEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$exchange@PEAUClientManagement@Client@Domain@@PEAU123@@std@@YAPEAUClientManagement@Client@Domain@@AEAPEAU123@$$QEAPEAU123@@Z DD imagerel $LN3 DD imagerel $LN3+107 DD imagerel $unwind$??$exchange@PEAUClientManagement@Client@Domain@@PEAU123@@std@@YAPEAUClientManagement@Client@Domain@@AEAPEAU123@$$QEAPEAU123@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0AEAPEAUClientManagement@Client@Domain@@@?$_Compressed_pair@U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@$00@std@@QEAA@U_Zero_then_variadic_args_t@1@AEAPEAUClientManagement@Client@Domain@@@Z DD imagerel $LN3 DD imagerel $LN3+105 DD imagerel $unwind$??$?0AEAPEAUClientManagement@Client@Domain@@@?$_Compressed_pair@U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@$00@std@@QEAA@U_Zero_then_variadic_args_t@1@AEAPEAUClientManagement@Client@Domain@@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$forward@PEAUClientManagement@Client@Domain@@@std@@YA$$QEAPEAUClientManagement@Client@Domain@@AEAPEAU123@@Z DD imagerel $LN3 DD imagerel $LN3+71 DD imagerel $unwind$??$forward@PEAUClientManagement@Client@Domain@@@std@@YA$$QEAPEAUClientManagement@Client@Domain@@AEAPEAU123@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?deallocate@?$_Default_allocator_traits@V?$allocator@U_Container_proxy@std@@@std@@@std@@SAXAEAV?$allocator@U_Container_proxy@std@@@2@QEAU_Container_proxy@2@_K@Z DD imagerel $LN3 DD imagerel $LN3+97 DD imagerel $unwind$?deallocate@?$_Default_allocator_traits@V?$allocator@U_Container_proxy@std@@@std@@@std@@SAXAEAV?$allocator@U_Container_proxy@std@@@2@QEAU_Container_proxy@2@_K@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$forward@AEAPEAUClientManagement@Client@Domain@@@std@@YAAEAPEAUClientManagement@Client@Domain@@AEAPEAU123@@Z DD imagerel $LN3 DD imagerel $LN3+71 DD imagerel $unwind$??$forward@AEAPEAUClientManagement@Client@Domain@@@std@@YAAEAPEAUClientManagement@Client@Domain@@AEAPEAU123@@Z pdata ENDS ; COMDAT rtc$TMZ rtc$TMZ SEGMENT _RTC_Shutdown.rtc$TMZ DQ FLAT:_RTC_Shutdown rtc$TMZ ENDS ; COMDAT rtc$IMZ rtc$IMZ SEGMENT _RTC_InitBase.rtc$IMZ DQ FLAT:_RTC_InitBase rtc$IMZ ENDS ; COMDAT ??_R1A@?0A@EA@ClientHandler@Client@Domain@@8 rdata$r SEGMENT ??_R1A@?0A@EA@ClientHandler@Client@Domain@@8 DD imagerel ??_R0?AVClientHandler@Client@Domain@@@8 ; Domain::Client::ClientHandler::`RTTI Base Class Descriptor at (0,-1,0,64)' DD 00H DD 00H DD 0ffffffffH DD 00H DD 040H DD imagerel ??_R3ClientHandler@Client@Domain@@8 rdata$r ENDS ; COMDAT ??_R2ClientHandler@Client@Domain@@8 rdata$r SEGMENT ??_R2ClientHandler@Client@Domain@@8 DD imagerel ??_R1A@?0A@EA@ClientHandler@Client@Domain@@8 ; Domain::Client::ClientHandler::`RTTI Base Class Array' ORG $+3 rdata$r ENDS ; COMDAT ??_R3ClientHandler@Client@Domain@@8 rdata$r SEGMENT ??_R3ClientHandler@Client@Domain@@8 DD 00H ; Domain::Client::ClientHandler::`RTTI Class Hierarchy Descriptor' DD 00H DD 01H DD imagerel ??_R2ClientHandler@Client@Domain@@8 rdata$r ENDS ; COMDAT ??_R0?AVClientHandler@Client@Domain@@@8 data$rs SEGMENT ??_R0?AVClientHandler@Client@Domain@@@8 DQ FLAT:??_7type_info@@6B@ ; Domain::Client::ClientHandler `RTTI Type Descriptor' DQ 0000000000000000H DB '.?AVClientHandler@Client@Domain@@', 00H data$rs ENDS ; COMDAT ??_R4ClientHandler@Client@Domain@@6B@ rdata$r SEGMENT ??_R4ClientHandler@Client@Domain@@6B@ DD 01H ; Domain::Client::ClientHandler::`RTTI Complete Object Locator' DD 00H DD 00H DD imagerel ??_R0?AVClientHandler@Client@Domain@@@8 DD imagerel ??_R3ClientHandler@Client@Domain@@8 DD imagerel ??_R4ClientHandler@Client@Domain@@6B@ rdata$r ENDS ; COMDAT ??_R0?AUNoSuchUser@PersistenceHandler@Persistence@TechnicalServices@@@8 data$r SEGMENT ??_R0?AUNoSuchUser@PersistenceHandler@Persistence@TechnicalServices@@@8 DQ FLAT:??_7type_info@@6B@ ; TechnicalServices::Persistence::PersistenceHandler::NoSuchUser `RTTI Type Descriptor' DQ 0000000000000000H DB '.?AUNoSuchUser@PersistenceHandler@Persistence@TechnicalS' DB 'ervices@@', 00H data$r ENDS ; COMDAT ??_7ClientHandler@Client@Domain@@6B@ CONST SEGMENT ??_7ClientHandler@Client@Domain@@6B@ DQ FLAT:??_R4ClientHandler@Client@Domain@@6B@ ; Domain::Client::ClientHandler::`vftable' DQ FLAT:_purecall DQ FLAT:_purecall DQ FLAT:_purecall DQ FLAT:_purecall DQ FLAT:_purecall DQ FLAT:_purecall DQ FLAT:_purecall DQ FLAT:_purecall DQ FLAT:_purecall CONST ENDS ; COMDAT ??_C@_1CG@JNLFBNGN@?$AA?$CC?$AAi?$AAn?$AAv?$AAa?$AAl?$AAi?$AAd?$AA?5?$AAa?$AAr?$AAg?$AAu?$AAm?$AAe@ CONST SEGMENT ??_C@_1CG@JNLFBNGN@?$AA?$CC?$AAi?$AAn?$AAv?$AAa?$AAl?$AAi?$AAd?$AA?5?$AAa?$AAr?$AAg?$AAu?$AAm?$AAe@ DB '"' DB 00H, 'i', 00H, 'n', 00H, 'v', 00H, 'a', 00H, 'l', 00H, 'i', 00H DB 'd', 00H, ' ', 00H, 'a', 00H, 'r', 00H, 'g', 00H, 'u', 00H, 'm' DB 00H, 'e', 00H, 'n', 00H, 't', 00H, '"', 00H, 00H, 00H ; `string' CONST ENDS ; COMDAT ??_C@_1EK@NIFDJFDG@?$AAs?$AAt?$AAd?$AA?3?$AA?3?$AA_?$AAA?$AAd?$AAj?$AAu?$AAs?$AAt?$AA_?$AAm?$AAa@ CONST SEGMENT ??_C@_1EK@NIFDJFDG@?$AAs?$AAt?$AAd?$AA?3?$AA?3?$AA_?$AAA?$AAd?$AAj?$AAu?$AAs?$AAt?$AA_?$AAm?$AAa@ DB 's' DB 00H, 't', 00H, 'd', 00H, ':', 00H, ':', 00H, '_', 00H, 'A', 00H DB 'd', 00H, 'j', 00H, 'u', 00H, 's', 00H, 't', 00H, '_', 00H, 'm' DB 00H, 'a', 00H, 'n', 00H, 'u', 00H, 'a', 00H, 'l', 00H, 'l', 00H DB 'y', 00H, '_', 00H, 'v', 00H, 'e', 00H, 'c', 00H, 't', 00H, 'o' DB 00H, 'r', 00H, '_', 00H, 'a', 00H, 'l', 00H, 'i', 00H, 'g', 00H DB 'n', 00H, 'e', 00H, 'd', 00H, 00H, 00H ; `string' CONST ENDS ; COMDAT ??_C@_1NA@PDNNFCLD@?$AAC?$AA?3?$AA?2?$AAP?$AAr?$AAo?$AAg?$AAr?$AAa?$AAm?$AA?5?$AAF?$AAi?$AAl?$AAe@ CONST SEGMENT ??_C@_1NA@PDNNFCLD@?$AAC?$AA?3?$AA?2?$AAP?$AAr?$AAo?$AAg?$AAr?$AAa?$AAm?$AA?5?$AAF?$AAi?$AAl?$AAe@ DB 'C' DB 00H, ':', 00H, '\', 00H, 'P', 00H, 'r', 00H, 'o', 00H, 'g', 00H DB 'r', 00H, 'a', 00H, 'm', 00H, ' ', 00H, 'F', 00H, 'i', 00H, 'l' DB 00H, 'e', 00H, 's', 00H, ' ', 00H, '(', 00H, 'x', 00H, '8', 00H DB '6', 00H, ')', 00H, '\', 00H, 'M', 00H, 'i', 00H, 'c', 00H, 'r' DB 00H, 'o', 00H, 's', 00H, 'o', 00H, 'f', 00H, 't', 00H, ' ', 00H DB 'V', 00H, 'i', 00H, 's', 00H, 'u', 00H, 'a', 00H, 'l', 00H, ' ' DB 00H, 'S', 00H, 't', 00H, 'u', 00H, 'd', 00H, 'i', 00H, 'o', 00H DB '\', 00H, '2', 00H, '0', 00H, '1', 00H, '9', 00H, '\', 00H, 'C' DB 00H, 'o', 00H, 'm', 00H, 'm', 00H, 'u', 00H, 'n', 00H, 'i', 00H DB 't', 00H, 'y', 00H, '\', 00H, 'V', 00H, 'C', 00H, '\', 00H, 'T' DB 00H, 'o', 00H, 'o', 00H, 'l', 00H, 's', 00H, '\', 00H, 'M', 00H DB 'S', 00H, 'V', 00H, 'C', 00H, '\', 00H, '1', 00H, '4', 00H, '.' DB 00H, '2', 00H, '8', 00H, '.', 00H, '2', 00H, '9', 00H, '3', 00H DB '3', 00H, '3', 00H, '\', 00H, 'i', 00H, 'n', 00H, 'c', 00H, 'l' DB 00H, 'u', 00H, 'd', 00H, 'e', 00H, '\', 00H, 'x', 00H, 'm', 00H DB 'e', 00H, 'm', 00H, 'o', 00H, 'r', 00H, 'y', 00H, 00H, 00H ; `string' CONST ENDS ; COMDAT ??_C@_0GI@CLKHGMEI@C?3?2Program?5Files?5?$CIx86?$CJ?2Microsof@ CONST SEGMENT ??_C@_0GI@CLKHGMEI@C?3?2Program?5Files?5?$CIx86?$CJ?2Microsof@ DB 'C:\Pro' DB 'gram Files (x86)\Microsoft Visual Studio\2019\Community\VC\To' DB 'ols\MSVC\14.28.29333\include\xmemory', 00H ; `string' CONST ENDS ; COMDAT ??_C@_02DKCKIIND@?$CFs@ CONST SEGMENT ??_C@_02DKCKIIND@?$CFs@ DB '%s', 00H ; `string' CONST ENDS ; COMDAT ??_C@_0BB@FCMFBGOM@invalid?5argument@ CONST SEGMENT ??_C@_0BB@FCMFBGOM@invalid?5argument@ DB 'invalid argument', 00H ; `string' CONST ENDS ; COMDAT ?__LINE__Var@?0??_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z@4JA _DATA SEGMENT ?__LINE__Var@?0??_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z@4JA DD 084H ; `std::_Adjust_manually_vector_aligned'::`1'::__LINE__Var _DATA ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$forward@AEAPEAUClientManagement@Client@Domain@@@std@@YAAEAPEAUClientManagement@Client@Domain@@AEAPEAU123@@Z DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?deallocate@?$_Default_allocator_traits@V?$allocator@U_Container_proxy@std@@@std@@@std@@SAXAEAV?$allocator@U_Container_proxy@std@@@2@QEAU_Container_proxy@2@_K@Z DD 025053401H DD 0118231dH DD 07011001dH DD 05010H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$forward@PEAUClientManagement@Client@Domain@@@std@@YA$$QEAPEAUClientManagement@Client@Domain@@AEAPEAU123@@Z DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0AEAPEAUClientManagement@Client@Domain@@@?$_Compressed_pair@U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@$00@std@@QEAA@U_Zero_then_variadic_args_t@1@AEAPEAUClientManagement@Client@Domain@@@Z DD 025053301H DD 0117231cH DD 07010001dH DD 0500fH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$exchange@PEAUClientManagement@Client@Domain@@PEAU123@@std@@YAPEAUClientManagement@Client@Domain@@AEAPEAU123@$$QEAPEAU123@@Z DD 025052f01H DD 01132318H DD 0700c0021H DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$destroy@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$_Default_allocator_traits@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@SAXAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@QEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z DD 025052f01H DD 01132318H DD 0700c001dH DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Unfancy@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@YAPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PEAV10@@Z DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$_Deallocate_plain@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z DB 02H DB 00H DB 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $cppxdata$??$_Deallocate_plain@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z DB 060H DD imagerel $ip2state$??$_Deallocate_plain@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Deallocate_plain@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z DD 025052f19H DD 01132318H DD 0700c001dH DD 0500bH DD imagerel __CxxFrameHandler4 DD imagerel $cppxdata$??$_Deallocate_plain@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0$$V@?$_Compressed_pair@U?$default_delete@VClientHandler@Client@Domain@@@std@@PEAVClientHandler@Client@Domain@@$00@std@@QEAA@U_Zero_then_variadic_args_t@1@@Z DD 025052e01H DD 01122317H DD 0700b001dH DD 0500aH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@@?$_Compressed_pair@U?$default_delete@VClientHandler@Client@Domain@@@std@@PEAVClientHandler@Client@Domain@@$00@std@@QEAA@U_One_then_variadic_args_t@1@$$QEAU?$default_delete@UClientManagement@Client@Domain@@@1@$$QEAPEAUClientManagement@Client@Domain@@@Z DD 025053801H DD 011c2321H DD 07015001dH DD 05014H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$forward@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@YA$$QEAU?$default_delete@UClientManagement@Client@Domain@@@0@AEAU10@@Z DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0U?$default_delete@UClientManagement@Client@Domain@@@std@@$0A@@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAA@PEAUClientManagement@Client@Domain@@@Z DD 025052f01H DD 01132318H DD 0700c0021H DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$forward@AEBUUserCredentials@Persistence@TechnicalServices@@@std@@YAAEBUUserCredentials@Persistence@TechnicalServices@@AEBU123@@Z DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$_Destroy_range@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@YAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@QEAV10@AEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z DB 02H DB 00H DB 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $cppxdata$??$_Destroy_range@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@YAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@QEAV10@AEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z DB 060H DD imagerel $ip2state$??$_Destroy_range@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@YAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@QEAV10@AEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Destroy_range@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@YAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@QEAV10@AEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z DD 025053419H DD 0118231dH DD 07011001dH DD 05010H DD imagerel __CxxFrameHandler4 DD imagerel $cppxdata$??$_Destroy_range@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@YAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@QEAV10@AEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$_Deallocate@$0BA@$0A@@std@@YAXPEAX_K@Z DB 02H DB 00H DB 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $cppxdata$??$_Deallocate@$0BA@$0A@@std@@YAXPEAX_K@Z DB 060H DD imagerel $ip2state$??$_Deallocate@$0BA@$0A@@std@@YAXPEAX_K@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Deallocate@$0BA@$0A@@std@@YAXPEAX_K@Z DD 025052f19H DD 01132318H DD 0700c001dH DD 0500bH DD imagerel __CxxFrameHandler4 DD imagerel $cppxdata$??$_Deallocate@$0BA@$0A@@std@@YAXPEAX_K@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Destroy_in_place@PEAD@std@@YAXAEAPEAD@Z DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0D@?$allocator@U_Container_proxy@std@@@std@@QEAA@AEBV?$allocator@D@1@@Z DD 025052f01H DD 01132318H DD 0700c001dH DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$allocator@U_Container_proxy@std@@@std@@QEAA@AEBV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z DD 025052f01H DD 01132318H DD 0700c001dH DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$exchange@PEAU_Container_proxy@std@@$$T@std@@YAPEAU_Container_proxy@0@AEAPEAU10@$$QEA$$T@Z DD 025052f01H DD 01132318H DD 0700c0021H DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Delete_plain_internal@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z DD 025052f01H DD 01132318H DD 0700c001dH DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0U?$default_delete@VClientHandler@Client@Domain@@@std@@$0A@@?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@QEAA@$$T@Z DD 025052f01H DD 01132318H DD 0700c0021H DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@$0A@@?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@QEAA@$$QEAV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@1@@Z DD 025052f01H DD 01132318H DD 0700c002bH DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0UClientManagement@Client@Domain@@$0A@@?$default_delete@VClientHandler@Client@Domain@@@std@@QEAA@AEBU?$default_delete@UClientManagement@Client@Domain@@@1@@Z DD 025052f01H DD 01132318H DD 0700c001dH DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?_Get_first@?$_Compressed_pair@U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@$00@std@@QEAAAEAU?$default_delete@UClientManagement@Client@Domain@@@2@XZ DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?release@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAAPEAUClientManagement@Client@Domain@@XZ DD 025052a01H DD 010e2313H DD 070070021H DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?get_deleter@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAAAEAU?$default_delete@UClientManagement@Client@Domain@@@2@XZ DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??1?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAA@XZ DD 025052a01H DD 010e2313H DD 07007001fH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??R?$default_delete@UClientManagement@Client@Domain@@@std@@QEBAXPEAUClientManagement@Client@Domain@@@Z DD 025052f01H DD 01132318H DD 0700c0023H DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0???$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA DD 031001H DD 0700c4210H DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z DB 06H DB 00H DB 00H DB 0acH DB 02H DB 0a4H DB 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z DB 02H DB 0eH DD imagerel ?dtor$0@?0???$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA xdata ENDS ; COMDAT xdata xdata SEGMENT $cppxdata$??$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z DB 028H DD imagerel $stateUnwindMap$??$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z DD imagerel $ip2state$??$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z DD 025052f11H DD 01132318H DD 0700c002bH DD 0500bH DD imagerel __CxxFrameHandler4 DD imagerel $cppxdata$??$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??1ClientHandler@Client@Domain@@UEAA@XZ DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?catch$3@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA DD 031001H DD 0700c4210H DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA DD 031001H DD 0700c4210H DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z DB 0cH DB 00H DB 00H DB 0aeH DB 02H DB 098H DB 04H DB 0a4H DB 02H DB '$' DB 04H DB ':' DB 02H xdata ENDS ; COMDAT xdata xdata SEGMENT $handlerMap$?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z DB 02H DB 03H DB 012H DD imagerel ??_R0?AUNoSuchUser@PersistenceHandler@Persistence@TechnicalServices@@@8 DD imagerel ?catch$3@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA xdata ENDS ; COMDAT xdata xdata SEGMENT $tryMap$?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z DB 02H DB 00H DB 02H DB 04H DD imagerel $handlerMap$?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z DB 06H DB 08H DB 0eH DD imagerel ?dtor$0@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA DB 038H xdata ENDS ; COMDAT xdata xdata SEGMENT $cppxdata$?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z DB 038H DD imagerel $stateUnwindMap$?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z DD imagerel $tryMap$?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z DD imagerel $ip2state$?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z DD 025054019H DD 01132318H DD 0700c003fH DD 0500bH DD imagerel __GSHandlerCheck_EH4 DD imagerel $cppxdata$?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z DD 01ebH xdata ENDS ; COMDAT CONST CONST SEGMENT ?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z$rtcName$0 DB 063H ; Domain::Client::ClientHandler::UseClientManagement DB 072H DB 065H DB 064H DB 065H DB 06eH DB 074H DB 069H DB 061H DB 06cH DB 073H DB 046H DB 072H DB 06fH DB 06dH DB 044H DB 042H DB 00H ORG $+14 ?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z$rtcVarDesc DD 050H ; Domain::Client::ClientHandler::UseClientManagement DD 080H DQ FLAT:?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z$rtcName$0 ORG $+48 ?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z$rtcFrameData DD 01H ; Domain::Client::ClientHandler::UseClientManagement DD 00H DQ FLAT:?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z$rtcVarDesc CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??1UserCredentials@Persistence@TechnicalServices@@QEAA@XZ DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?_Get_first@?$_Compressed_pair@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@V?$_Vector_val@U?$_Simple_types@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@2@$00@std@@QEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?_Getal@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?_Tidy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXXZ DB 02H DB 00H DB 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $cppxdata$?_Tidy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXXZ DB 060H DD imagerel $ip2state$?_Tidy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXXZ xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?_Tidy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXXZ DD 025052a19H DD 010e2313H DD 07007002fH DD 05006H DD imagerel __CxxFrameHandler4 DD imagerel $cppxdata$?_Tidy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXXZ xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?_Destroy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@0@Z DD 025053401H DD 0118231dH DD 07011001dH DD 05010H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??1?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@QEAA@XZ DD 025053b19H DD 010e2313H DD 070070029H DD 05006H DD imagerel __GSHandlerCheck DD 0138H xdata ENDS ; COMDAT CONST CONST SEGMENT ??1?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@QEAA@XZ$rtcName$0 DB 024H ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::~vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > DB 053H DB 034H DB 00H ORG $+12 ??1?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@QEAA@XZ$rtcVarDesc DD 044H ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::~vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > DD 01H DQ FLAT:??1?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@QEAA@XZ$rtcName$0 ORG $+48 ??1?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@QEAA@XZ$rtcFrameData DD 01H ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::~vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > DD 00H DQ FLAT:??1?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@QEAA@XZ$rtcVarDesc CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?deallocate@?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@QEAAXQEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@_K@Z DD 025053401H DD 0118231dH DD 07011001dH DD 05010H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??_G?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAPEAXI@Z DD 025052e01H DD 01122317H DD 0700b001dH DD 0500aH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??1?$_Compressed_pair@V?$allocator@D@std@@V?$_String_val@U?$_Simple_types@D@std@@@2@$00@std@@QEAA@XZ DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?_Get_first@?$_Compressed_pair@V?$allocator@D@std@@V?$_String_val@U?$_Simple_types@D@std@@@2@$00@std@@QEAAAEAV?$allocator@D@2@XZ DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?_Getal@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAAEAV?$allocator@D@2@XZ DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?_Tidy_deallocate@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAXXZ DB 02H DB 00H DB 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $cppxdata$?_Tidy_deallocate@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAXXZ DB 060H DD imagerel $ip2state$?_Tidy_deallocate@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAXXZ xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?_Tidy_deallocate@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAXXZ DD 025052a19H DD 010e2313H DD 070070029H DD 05006H DD imagerel __CxxFrameHandler4 DD imagerel $cppxdata$?_Tidy_deallocate@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAXXZ xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ DD 025053b19H DD 010e2313H DD 070070029H DD 05006H DD imagerel __GSHandlerCheck DD 0138H xdata ENDS ; COMDAT CONST CONST SEGMENT ??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ$rtcName$0 DB 024H ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::~basic_string<char,std::char_traits<char>,std::allocator<char> > DB 053H DB 031H DB 032H DB 00H ORG $+11 ??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ$rtcVarDesc DD 044H ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::~basic_string<char,std::char_traits<char>,std::allocator<char> > DD 01H DQ FLAT:??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ$rtcName$0 ORG $+48 ??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ$rtcFrameData DD 01H ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::~basic_string<char,std::char_traits<char>,std::allocator<char> > DD 00H DQ FLAT:??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ$rtcVarDesc CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??1?$_String_val@U?$_Simple_types@D@std@@@std@@QEAA@XZ DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??1_Bxty@?$_String_val@U?$_Simple_types@D@std@@@std@@QEAA@XZ DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?_Large_string_engaged@?$_String_val@U?$_Simple_types@D@std@@@std@@QEBA_NXZ DD 025052a01H DD 010e2313H DD 07007001fH DD 05006H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?assign@?$_Narrow_char_traits@DH@std@@SAXAEADAEBD@Z DD 025052f01H DD 01132318H DD 0700c001dH DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?deallocate@?$allocator@D@std@@QEAAXQEAD_K@Z DD 025053401H DD 0118231dH DD 07011001dH DD 05010H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?_Orphan_all@_Container_base12@std@@QEAAXXZ DD 025053b19H DD 010e2313H DD 070070025H DD 05006H DD imagerel __GSHandlerCheck DD 0118H xdata ENDS ; COMDAT CONST CONST SEGMENT ?_Orphan_all@_Container_base12@std@@QEAAXXZ$rtcName$0 DB 05fH ; std::_Container_base12::_Orphan_all DB 04cH DB 06fH DB 063H DB 06bH DB 00H ORG $+10 ?_Orphan_all@_Container_base12@std@@QEAAXXZ$rtcVarDesc DD 024H ; std::_Container_base12::_Orphan_all DD 04H DQ FLAT:?_Orphan_all@_Container_base12@std@@QEAAXXZ$rtcName$0 ORG $+48 ?_Orphan_all@_Container_base12@std@@QEAAXXZ$rtcFrameData DD 01H ; std::_Container_base12::_Orphan_all DD 00H DQ FLAT:?_Orphan_all@_Container_base12@std@@QEAAXXZ$rtcVarDesc CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z DD 035052f01H DD 01133318H DD 0700c002fH DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?__empty_global_delete@@YAXPEAX_KW4align_val_t@std@@@Z DD 025053401H DD 0118231dH DD 07011001dH DD 05010H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?__empty_global_delete@@YAXPEAXW4align_val_t@std@@@Z DD 025052f01H DD 01132318H DD 0700c001dH DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?__empty_global_delete@@YAXPEAX_K@Z DD 025052f01H DD 01132318H DD 0700c001dH DD 0500bH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?__empty_global_delete@@YAXPEAX@Z DD 025052a01H DD 010e2313H DD 07007001dH DD 05006H xdata ENDS ; Function compile flags: /Odt ; COMDAT __JustMyCode_Default _TEXT SEGMENT __JustMyCode_Default PROC ; COMDAT ret 0 __JustMyCode_Default ENDP _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\type_traits ; COMDAT ??$forward@AEAPEAUClientManagement@Client@Domain@@@std@@YAAEAPEAUClientManagement@Client@Domain@@AEAPEAU123@@Z _TEXT SEGMENT _Arg$ = 224 ??$forward@AEAPEAUClientManagement@Client@Domain@@@std@@YAAEAPEAUClientManagement@Client@Domain@@AEAPEAU123@@Z PROC ; std::forward<Domain::Client::ClientManagement * &>, COMDAT ; 1442 : remove_reference_t<_Ty>& _Arg) noexcept { // forward an lvalue as either an lvalue or an rvalue $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__2D26A21E_type_traits call __CheckForDebuggerJustMyCode ; 1443 : return static_cast<_Ty&&>(_Arg); mov rax, QWORD PTR _Arg$[rbp] ; 1444 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??$forward@AEAPEAUClientManagement@Client@Domain@@@std@@YAAEAPEAUClientManagement@Client@Domain@@AEAPEAU123@@Z ENDP ; std::forward<Domain::Client::ClientManagement * &> _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ?deallocate@?$_Default_allocator_traits@V?$allocator@U_Container_proxy@std@@@std@@@std@@SAXAEAV?$allocator@U_Container_proxy@std@@@2@QEAU_Container_proxy@2@_K@Z _TEXT SEGMENT __formal$ = 224 _Ptr$ = 232 _Count$ = 240 ?deallocate@?$_Default_allocator_traits@V?$allocator@U_Container_proxy@std@@@std@@@std@@SAXAEAV?$allocator@U_Container_proxy@std@@@2@QEAU_Container_proxy@2@_K@Z PROC ; std::_Default_allocator_traits<std::allocator<std::_Container_proxy> >::deallocate, COMDAT ; 694 : static void deallocate(_Alloc&, const pointer _Ptr, const size_type _Count) { $LN3: mov QWORD PTR [rsp+24], r8 mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode ; 695 : // no overflow check on the following multiply; we assume _Allocate did that check ; 696 : _Deallocate<_New_alignof<value_type>>(_Ptr, sizeof(value_type) * _Count); imul rax, QWORD PTR _Count$[rbp], 16 mov rdx, rax mov rcx, QWORD PTR _Ptr$[rbp] call ??$_Deallocate@$0BA@$0A@@std@@YAXPEAX_K@Z ; std::_Deallocate<16,0> ; 697 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ?deallocate@?$_Default_allocator_traits@V?$allocator@U_Container_proxy@std@@@std@@@std@@SAXAEAV?$allocator@U_Container_proxy@std@@@2@QEAU_Container_proxy@2@_K@Z ENDP ; std::_Default_allocator_traits<std::allocator<std::_Container_proxy> >::deallocate _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\type_traits ; COMDAT ??$forward@PEAUClientManagement@Client@Domain@@@std@@YA$$QEAPEAUClientManagement@Client@Domain@@AEAPEAU123@@Z _TEXT SEGMENT _Arg$ = 224 ??$forward@PEAUClientManagement@Client@Domain@@@std@@YA$$QEAPEAUClientManagement@Client@Domain@@AEAPEAU123@@Z PROC ; std::forward<Domain::Client::ClientManagement *>, COMDAT ; 1442 : remove_reference_t<_Ty>& _Arg) noexcept { // forward an lvalue as either an lvalue or an rvalue $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__2D26A21E_type_traits call __CheckForDebuggerJustMyCode ; 1443 : return static_cast<_Ty&&>(_Arg); mov rax, QWORD PTR _Arg$[rbp] ; 1444 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??$forward@PEAUClientManagement@Client@Domain@@@std@@YA$$QEAPEAUClientManagement@Client@Domain@@AEAPEAU123@@Z ENDP ; std::forward<Domain::Client::ClientManagement *> _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ??$?0AEAPEAUClientManagement@Client@Domain@@@?$_Compressed_pair@U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@$00@std@@QEAA@U_Zero_then_variadic_args_t@1@AEAPEAUClientManagement@Client@Domain@@@Z _TEXT SEGMENT this$ = 224 __formal$ = 232 <_Val2_0>$ = 240 ??$?0AEAPEAUClientManagement@Client@Domain@@@?$_Compressed_pair@U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@$00@std@@QEAA@U_Zero_then_variadic_args_t@1@AEAPEAUClientManagement@Client@Domain@@@Z PROC ; std::_Compressed_pair<std::default_delete<Domain::Client::ClientManagement>,Domain::Client::ClientManagement *,1>::_Compressed_pair<std::default_delete<Domain::Client::ClientManagement>,Domain::Client::ClientManagement *,1><Domain::Client::ClientManagement * &>, COMDAT ; 1339 : : _Ty1(), _Myval2(_STD forward<_Other2>(_Val2)...) {} $LN3: mov QWORD PTR [rsp+24], r8 mov BYTE PTR [rsp+16], dl mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode mov rcx, QWORD PTR <_Val2_0>$[rbp] call ??$forward@AEAPEAUClientManagement@Client@Domain@@@std@@YAAEAPEAUClientManagement@Client@Domain@@AEAPEAU123@@Z ; std::forward<Domain::Client::ClientManagement * &> mov rcx, QWORD PTR this$[rbp] mov rax, QWORD PTR [rax] mov QWORD PTR [rcx], rax mov rax, QWORD PTR this$[rbp] lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??$?0AEAPEAUClientManagement@Client@Domain@@@?$_Compressed_pair@U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@$00@std@@QEAA@U_Zero_then_variadic_args_t@1@AEAPEAUClientManagement@Client@Domain@@@Z ENDP ; std::_Compressed_pair<std::default_delete<Domain::Client::ClientManagement>,Domain::Client::ClientManagement *,1>::_Compressed_pair<std::default_delete<Domain::Client::ClientManagement>,Domain::Client::ClientManagement *,1><Domain::Client::ClientManagement * &> _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\utility ; COMDAT ??$exchange@PEAUClientManagement@Client@Domain@@PEAU123@@std@@YAPEAUClientManagement@Client@Domain@@AEAPEAU123@$$QEAPEAU123@@Z _TEXT SEGMENT _Old_val$ = 8 _Val$ = 256 _New_val$ = 264 ??$exchange@PEAUClientManagement@Client@Domain@@PEAU123@@std@@YAPEAUClientManagement@Client@Domain@@AEAPEAU123@$$QEAPEAU123@@Z PROC ; std::exchange<Domain::Client::ClientManagement *,Domain::Client::ClientManagement *>, COMDAT ; 596 : conjunction_v<is_nothrow_move_constructible<_Ty>, is_nothrow_assignable<_Ty&, _Other>>) /* strengthened */ { $LN3: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 264 ; 00000108H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 66 ; 00000042H mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+296] lea rcx, OFFSET FLAT:__9BE6F741_utility call __CheckForDebuggerJustMyCode ; 597 : // assign _New_val to _Val, return previous _Val ; 598 : _Ty _Old_val = static_cast<_Ty&&>(_Val); mov rax, QWORD PTR _Val$[rbp] mov rax, QWORD PTR [rax] mov QWORD PTR _Old_val$[rbp], rax ; 599 : _Val = static_cast<_Other&&>(_New_val); mov rax, QWORD PTR _Val$[rbp] mov rcx, QWORD PTR _New_val$[rbp] mov rcx, QWORD PTR [rcx] mov QWORD PTR [rax], rcx ; 600 : return _Old_val; mov rax, QWORD PTR _Old_val$[rbp] ; 601 : } lea rsp, QWORD PTR [rbp+232] pop rdi pop rbp ret 0 ??$exchange@PEAUClientManagement@Client@Domain@@PEAU123@@std@@YAPEAUClientManagement@Client@Domain@@AEAPEAU123@$$QEAPEAU123@@Z ENDP ; std::exchange<Domain::Client::ClientManagement *,Domain::Client::ClientManagement *> _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ??$destroy@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$_Default_allocator_traits@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@SAXAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@QEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z _TEXT SEGMENT __formal$ = 224 _Ptr$ = 232 ??$destroy@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$_Default_allocator_traits@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@SAXAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@QEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z PROC ; std::_Default_allocator_traits<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::destroy<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >, COMDAT ; 705 : static void destroy(_Alloc&, _Uty* const _Ptr) { $LN3: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode ; 706 : _Ptr->~_Uty(); xor edx, edx mov rcx, QWORD PTR _Ptr$[rbp] call ??_G?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAPEAXI@Z ; 707 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??$destroy@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$_Default_allocator_traits@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@SAXAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@QEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z ENDP ; std::_Default_allocator_traits<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::destroy<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xstddef ; COMDAT ??$_Unfancy@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@YAPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PEAV10@@Z _TEXT SEGMENT _Ptr$ = 224 ??$_Unfancy@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@YAPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PEAV10@@Z PROC ; std::_Unfancy<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >, COMDAT ; 288 : _NODISCARD constexpr _Ty* _Unfancy(_Ty* _Ptr) noexcept { // do nothing for plain pointers $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__6CF96053_xstddef call __CheckForDebuggerJustMyCode ; 289 : return _Ptr; mov rax, QWORD PTR _Ptr$[rbp] ; 290 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??$_Unfancy@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@YAPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PEAV10@@Z ENDP ; std::_Unfancy<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ??$_Deallocate_plain@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z _TEXT SEGMENT _Al$ = 224 _Ptr$ = 232 ??$_Deallocate_plain@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z PROC ; std::_Deallocate_plain<std::allocator<std::_Container_proxy> >, COMDAT ; 1003 : void _Deallocate_plain(_Alloc& _Al, typename _Alloc::value_type* const _Ptr) noexcept { $LN3: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode ; 1004 : // deallocate a plain pointer using an allocator ; 1005 : using _Alloc_traits = allocator_traits<_Alloc>; ; 1006 : if constexpr (is_same_v<_Alloc_ptr_t<_Alloc>, typename _Alloc::value_type*>) { ; 1007 : _Alloc_traits::deallocate(_Al, _Ptr, 1); mov r8d, 1 mov rdx, QWORD PTR _Ptr$[rbp] mov rcx, QWORD PTR _Al$[rbp] call ?deallocate@?$_Default_allocator_traits@V?$allocator@U_Container_proxy@std@@@std@@@std@@SAXAEAV?$allocator@U_Container_proxy@std@@@2@QEAU_Container_proxy@2@_K@Z ; std::_Default_allocator_traits<std::allocator<std::_Container_proxy> >::deallocate npad 1 ; 1008 : } else { ; 1009 : using _Ptr_traits = pointer_traits<_Alloc_ptr_t<_Alloc>>; ; 1010 : _Alloc_traits::deallocate(_Al, _Ptr_traits::pointer_to(*_Ptr), 1); ; 1011 : } ; 1012 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??$_Deallocate_plain@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z ENDP ; std::_Deallocate_plain<std::allocator<std::_Container_proxy> > _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ??$?0$$V@?$_Compressed_pair@U?$default_delete@VClientHandler@Client@Domain@@@std@@PEAVClientHandler@Client@Domain@@$00@std@@QEAA@U_Zero_then_variadic_args_t@1@@Z _TEXT SEGMENT this$ = 224 __formal$ = 232 ??$?0$$V@?$_Compressed_pair@U?$default_delete@VClientHandler@Client@Domain@@@std@@PEAVClientHandler@Client@Domain@@$00@std@@QEAA@U_Zero_then_variadic_args_t@1@@Z PROC ; std::_Compressed_pair<std::default_delete<Domain::Client::ClientHandler>,Domain::Client::ClientHandler *,1>::_Compressed_pair<std::default_delete<Domain::Client::ClientHandler>,Domain::Client::ClientHandler *,1><>, COMDAT ; 1339 : : _Ty1(), _Myval2(_STD forward<_Other2>(_Val2)...) {} $LN3: mov BYTE PTR [rsp+16], dl mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode mov rax, QWORD PTR this$[rbp] mov QWORD PTR [rax], 0 mov rax, QWORD PTR this$[rbp] lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??$?0$$V@?$_Compressed_pair@U?$default_delete@VClientHandler@Client@Domain@@@std@@PEAVClientHandler@Client@Domain@@$00@std@@QEAA@U_Zero_then_variadic_args_t@1@@Z ENDP ; std::_Compressed_pair<std::default_delete<Domain::Client::ClientHandler>,Domain::Client::ClientHandler *,1>::_Compressed_pair<std::default_delete<Domain::Client::ClientHandler>,Domain::Client::ClientHandler *,1><> _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ??$?0U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@@?$_Compressed_pair@U?$default_delete@VClientHandler@Client@Domain@@@std@@PEAVClientHandler@Client@Domain@@$00@std@@QEAA@U_One_then_variadic_args_t@1@$$QEAU?$default_delete@UClientManagement@Client@Domain@@@1@$$QEAPEAUClientManagement@Client@Domain@@@Z _TEXT SEGMENT this$ = 224 __formal$ = 232 _Val1$ = 240 <_Val2_0>$ = 248 ??$?0U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@@?$_Compressed_pair@U?$default_delete@VClientHandler@Client@Domain@@@std@@PEAVClientHandler@Client@Domain@@$00@std@@QEAA@U_One_then_variadic_args_t@1@$$QEAU?$default_delete@UClientManagement@Client@Domain@@@1@$$QEAPEAUClientManagement@Client@Domain@@@Z PROC ; std::_Compressed_pair<std::default_delete<Domain::Client::ClientHandler>,Domain::Client::ClientHandler *,1>::_Compressed_pair<std::default_delete<Domain::Client::ClientHandler>,Domain::Client::ClientHandler *,1><std::default_delete<Domain::Client::ClientManagement>,Domain::Client::ClientManagement *>, COMDAT ; 1344 : : _Ty1(_STD forward<_Other1>(_Val1)), _Myval2(_STD forward<_Other2>(_Val2)...) {} $LN3: mov QWORD PTR [rsp+32], r9 mov QWORD PTR [rsp+24], r8 mov BYTE PTR [rsp+16], dl mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode mov rcx, QWORD PTR _Val1$[rbp] call ??$forward@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@YA$$QEAU?$default_delete@UClientManagement@Client@Domain@@@0@AEAU10@@Z ; std::forward<std::default_delete<Domain::Client::ClientManagement> > mov rdx, rax mov rcx, QWORD PTR this$[rbp] call ??$?0UClientManagement@Client@Domain@@$0A@@?$default_delete@VClientHandler@Client@Domain@@@std@@QEAA@AEBU?$default_delete@UClientManagement@Client@Domain@@@1@@Z ; std::default_delete<Domain::Client::ClientHandler>::default_delete<Domain::Client::ClientHandler><Domain::Client::ClientManagement,0> mov rcx, QWORD PTR <_Val2_0>$[rbp] call ??$forward@PEAUClientManagement@Client@Domain@@@std@@YA$$QEAPEAUClientManagement@Client@Domain@@AEAPEAU123@@Z ; std::forward<Domain::Client::ClientManagement *> mov rcx, QWORD PTR this$[rbp] mov rax, QWORD PTR [rax] mov QWORD PTR [rcx], rax mov rax, QWORD PTR this$[rbp] lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??$?0U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@@?$_Compressed_pair@U?$default_delete@VClientHandler@Client@Domain@@@std@@PEAVClientHandler@Client@Domain@@$00@std@@QEAA@U_One_then_variadic_args_t@1@$$QEAU?$default_delete@UClientManagement@Client@Domain@@@1@$$QEAPEAUClientManagement@Client@Domain@@@Z ENDP ; std::_Compressed_pair<std::default_delete<Domain::Client::ClientHandler>,Domain::Client::ClientHandler *,1>::_Compressed_pair<std::default_delete<Domain::Client::ClientHandler>,Domain::Client::ClientHandler *,1><std::default_delete<Domain::Client::ClientManagement>,Domain::Client::ClientManagement *> _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\type_traits ; COMDAT ??$forward@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@YA$$QEAU?$default_delete@UClientManagement@Client@Domain@@@0@AEAU10@@Z _TEXT SEGMENT _Arg$ = 224 ??$forward@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@YA$$QEAU?$default_delete@UClientManagement@Client@Domain@@@0@AEAU10@@Z PROC ; std::forward<std::default_delete<Domain::Client::ClientManagement> >, COMDAT ; 1442 : remove_reference_t<_Ty>& _Arg) noexcept { // forward an lvalue as either an lvalue or an rvalue $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__2D26A21E_type_traits call __CheckForDebuggerJustMyCode ; 1443 : return static_cast<_Ty&&>(_Arg); mov rax, QWORD PTR _Arg$[rbp] ; 1444 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??$forward@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@YA$$QEAU?$default_delete@UClientManagement@Client@Domain@@@0@AEAU10@@Z ENDP ; std::forward<std::default_delete<Domain::Client::ClientManagement> > _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\memory ; COMDAT ??$?0U?$default_delete@UClientManagement@Client@Domain@@@std@@$0A@@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAA@PEAUClientManagement@Client@Domain@@@Z _TEXT SEGMENT $T1 = 196 tv70 = 216 this$ = 256 _Ptr$ = 264 ??$?0U?$default_delete@UClientManagement@Client@Domain@@@std@@$0A@@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAA@PEAUClientManagement@Client@Domain@@@Z PROC ; std::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> >::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> ><std::default_delete<Domain::Client::ClientManagement>,0>, COMDAT ; 2590 : explicit unique_ptr(pointer _Ptr) noexcept : _Mypair(_Zero_then_variadic_args_t{}, _Ptr) {} $LN3: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 264 ; 00000108H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 66 ; 00000042H mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+296] lea rcx, OFFSET FLAT:__6A935154_memory call __CheckForDebuggerJustMyCode mov rax, QWORD PTR this$[rbp] mov QWORD PTR tv70[rbp], rax lea r8, QWORD PTR _Ptr$[rbp] movzx edx, BYTE PTR $T1[rbp] mov rcx, QWORD PTR tv70[rbp] call ??$?0AEAPEAUClientManagement@Client@Domain@@@?$_Compressed_pair@U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@$00@std@@QEAA@U_Zero_then_variadic_args_t@1@AEAPEAUClientManagement@Client@Domain@@@Z ; std::_Compressed_pair<std::default_delete<Domain::Client::ClientManagement>,Domain::Client::ClientManagement *,1>::_Compressed_pair<std::default_delete<Domain::Client::ClientManagement>,Domain::Client::ClientManagement *,1><Domain::Client::ClientManagement * &> mov rax, QWORD PTR this$[rbp] lea rsp, QWORD PTR [rbp+232] pop rdi pop rbp ret 0 ??$?0U?$default_delete@UClientManagement@Client@Domain@@@std@@$0A@@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAA@PEAUClientManagement@Client@Domain@@@Z ENDP ; std::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> >::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> ><std::default_delete<Domain::Client::ClientManagement>,0> _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\type_traits ; COMDAT ??$forward@AEBUUserCredentials@Persistence@TechnicalServices@@@std@@YAAEBUUserCredentials@Persistence@TechnicalServices@@AEBU123@@Z _TEXT SEGMENT _Arg$ = 224 ??$forward@AEBUUserCredentials@Persistence@TechnicalServices@@@std@@YAAEBUUserCredentials@Persistence@TechnicalServices@@AEBU123@@Z PROC ; std::forward<TechnicalServices::Persistence::UserCredentials const &>, COMDAT ; 1442 : remove_reference_t<_Ty>& _Arg) noexcept { // forward an lvalue as either an lvalue or an rvalue $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__2D26A21E_type_traits call __CheckForDebuggerJustMyCode ; 1443 : return static_cast<_Ty&&>(_Arg); mov rax, QWORD PTR _Arg$[rbp] ; 1444 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??$forward@AEBUUserCredentials@Persistence@TechnicalServices@@@std@@YAAEBUUserCredentials@Persistence@TechnicalServices@@AEBU123@@Z ENDP ; std::forward<TechnicalServices::Persistence::UserCredentials const &> _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ??$_Destroy_range@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@YAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@QEAV10@AEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z _TEXT SEGMENT _First$ = 224 _Last$ = 232 _Al$ = 240 ??$_Destroy_range@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@YAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@QEAV10@AEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z PROC ; std::_Destroy_range<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >, COMDAT ; 962 : _Alloc_ptr_t<_Alloc> _First, const _Alloc_ptr_t<_Alloc> _Last, _Alloc& _Al) noexcept { $LN6: mov QWORD PTR [rsp+24], r8 mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode ; 963 : // note that this is an optimization for debug mode codegen; in release mode the BE removes all of this ; 964 : using _Ty = typename _Alloc::value_type; ; 965 : if _CONSTEXPR_IF (!conjunction_v<is_trivially_destructible<_Ty>, _Uses_default_destroy<_Alloc, _Ty*>>) { ; 966 : for (; _First != _Last; ++_First) { jmp SHORT $LN4@Destroy_ra $LN2@Destroy_ra: mov rax, QWORD PTR _First$[rbp] add rax, 40 ; 00000028H mov QWORD PTR _First$[rbp], rax $LN4@Destroy_ra: mov rax, QWORD PTR _Last$[rbp] cmp QWORD PTR _First$[rbp], rax je SHORT $LN3@Destroy_ra ; 967 : allocator_traits<_Alloc>::destroy(_Al, _Unfancy(_First)); mov rcx, QWORD PTR _First$[rbp] call ??$_Unfancy@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@YAPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PEAV10@@Z ; std::_Unfancy<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > mov rdx, rax mov rcx, QWORD PTR _Al$[rbp] call ??$destroy@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$_Default_allocator_traits@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@SAXAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@QEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z ; std::_Default_allocator_traits<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::destroy<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > ; 968 : } jmp SHORT $LN2@Destroy_ra $LN3@Destroy_ra: ; 969 : } ; 970 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??$_Destroy_range@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@YAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@QEAV10@AEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z ENDP ; std::_Destroy_range<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ??$_Deallocate@$0BA@$0A@@std@@YAXPEAX_K@Z _TEXT SEGMENT _Ptr$ = 224 _Bytes$ = 232 ??$_Deallocate@$0BA@$0A@@std@@YAXPEAX_K@Z PROC ; std::_Deallocate<16,0>, COMDAT ; 213 : void _Deallocate(void* _Ptr, size_t _Bytes) noexcept { $LN4: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode ; 214 : // deallocate storage allocated by _Allocate when !_HAS_ALIGNED_NEW || _Align <= __STDCPP_DEFAULT_NEW_ALIGNMENT__ ; 215 : #if defined(_M_IX86) || defined(_M_X64) ; 216 : if (_Bytes >= _Big_allocation_threshold) { // boost the alignment of big allocations to help autovectorization cmp QWORD PTR _Bytes$[rbp], 4096 ; 00001000H jb SHORT $LN2@Deallocate ; 217 : _Adjust_manually_vector_aligned(_Ptr, _Bytes); lea rdx, QWORD PTR _Bytes$[rbp] lea rcx, QWORD PTR _Ptr$[rbp] call ?_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z ; std::_Adjust_manually_vector_aligned $LN2@Deallocate: ; 218 : } ; 219 : #endif // defined(_M_IX86) || defined(_M_X64) ; 220 : ; 221 : ::operator delete(_Ptr, _Bytes); mov rdx, QWORD PTR _Bytes$[rbp] mov rcx, QWORD PTR _Ptr$[rbp] call ??3@YAXPEAX_K@Z ; operator delete npad 1 ; 222 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??$_Deallocate@$0BA@$0A@@std@@YAXPEAX_K@Z ENDP ; std::_Deallocate<16,0> _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ??$_Destroy_in_place@PEAD@std@@YAXAEAPEAD@Z _TEXT SEGMENT _Obj$ = 224 ??$_Destroy_in_place@PEAD@std@@YAXAEAPEAD@Z PROC ; std::_Destroy_in_place<char *>, COMDAT ; 270 : /* _CONSTEXPR20_DYNALLOC */ void _Destroy_in_place(_Ty& _Obj) noexcept { $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode ; 271 : #if _HAS_IF_CONSTEXPR ; 272 : if constexpr (is_array_v<_Ty>) { ; 273 : _Destroy_range(_Obj, _Obj + extent_v<_Ty>); ; 274 : } else ; 275 : #endif // _HAS_IF_CONSTEXPR ; 276 : { ; 277 : _Obj.~_Ty(); ; 278 : } ; 279 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??$_Destroy_in_place@PEAD@std@@YAXAEAPEAD@Z ENDP ; std::_Destroy_in_place<char *> _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ??$?0D@?$allocator@U_Container_proxy@std@@@std@@QEAA@AEBV?$allocator@D@1@@Z _TEXT SEGMENT this$ = 224 __formal$ = 232 ??$?0D@?$allocator@U_Container_proxy@std@@@std@@QEAA@AEBV?$allocator@D@1@@Z PROC ; std::allocator<std::_Container_proxy>::allocator<std::_Container_proxy><char>, COMDAT ; 806 : constexpr allocator(const allocator<_Other>&) noexcept {} $LN3: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode mov rax, QWORD PTR this$[rbp] lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??$?0D@?$allocator@U_Container_proxy@std@@@std@@QEAA@AEBV?$allocator@D@1@@Z ENDP ; std::allocator<std::_Container_proxy>::allocator<std::_Container_proxy><char> _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ??$?0V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$allocator@U_Container_proxy@std@@@std@@QEAA@AEBV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z _TEXT SEGMENT this$ = 224 __formal$ = 232 ??$?0V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$allocator@U_Container_proxy@std@@@std@@QEAA@AEBV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z PROC ; std::allocator<std::_Container_proxy>::allocator<std::_Container_proxy><std::basic_string<char,std::char_traits<char>,std::allocator<char> > >, COMDAT ; 806 : constexpr allocator(const allocator<_Other>&) noexcept {} $LN3: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode mov rax, QWORD PTR this$[rbp] lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??$?0V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$allocator@U_Container_proxy@std@@@std@@QEAA@AEBV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z ENDP ; std::allocator<std::_Container_proxy>::allocator<std::_Container_proxy><std::basic_string<char,std::char_traits<char>,std::allocator<char> > > _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\utility ; COMDAT ??$exchange@PEAU_Container_proxy@std@@$$T@std@@YAPEAU_Container_proxy@0@AEAPEAU10@$$QEA$$T@Z _TEXT SEGMENT _Old_val$ = 8 _Val$ = 256 _New_val$ = 264 ??$exchange@PEAU_Container_proxy@std@@$$T@std@@YAPEAU_Container_proxy@0@AEAPEAU10@$$QEA$$T@Z PROC ; std::exchange<std::_Container_proxy *,std::nullptr_t>, COMDAT ; 596 : conjunction_v<is_nothrow_move_constructible<_Ty>, is_nothrow_assignable<_Ty&, _Other>>) /* strengthened */ { $LN3: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 264 ; 00000108H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 66 ; 00000042H mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+296] lea rcx, OFFSET FLAT:__9BE6F741_utility call __CheckForDebuggerJustMyCode ; 597 : // assign _New_val to _Val, return previous _Val ; 598 : _Ty _Old_val = static_cast<_Ty&&>(_Val); mov rax, QWORD PTR _Val$[rbp] mov rax, QWORD PTR [rax] mov QWORD PTR _Old_val$[rbp], rax ; 599 : _Val = static_cast<_Other&&>(_New_val); mov rax, QWORD PTR _Val$[rbp] mov rcx, QWORD PTR _New_val$[rbp] mov rcx, QWORD PTR [rcx] mov QWORD PTR [rax], rcx ; 600 : return _Old_val; mov rax, QWORD PTR _Old_val$[rbp] ; 601 : } lea rsp, QWORD PTR [rbp+232] pop rdi pop rbp ret 0 ??$exchange@PEAU_Container_proxy@std@@$$T@std@@YAPEAU_Container_proxy@0@AEAPEAU10@$$QEA$$T@Z ENDP ; std::exchange<std::_Container_proxy *,std::nullptr_t> _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ??$_Delete_plain_internal@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z _TEXT SEGMENT _Al$ = 224 _Ptr$ = 232 ??$_Delete_plain_internal@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z PROC ; std::_Delete_plain_internal<std::allocator<std::_Container_proxy> >, COMDAT ; 1031 : void _Delete_plain_internal(_Alloc& _Al, typename _Alloc::value_type* const _Ptr) noexcept { $LN3: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode ; 1032 : // destroy *_Ptr in place, then deallocate _Ptr using _Al; used for internal container types the user didn't name ; 1033 : using _Ty = typename _Alloc::value_type; ; 1034 : _Ptr->~_Ty(); ; 1035 : _Deallocate_plain(_Al, _Ptr); mov rdx, QWORD PTR _Ptr$[rbp] mov rcx, QWORD PTR _Al$[rbp] call ??$_Deallocate_plain@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z ; std::_Deallocate_plain<std::allocator<std::_Container_proxy> > ; 1036 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??$_Delete_plain_internal@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z ENDP ; std::_Delete_plain_internal<std::allocator<std::_Container_proxy> > _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\memory ; COMDAT ??$?0U?$default_delete@VClientHandler@Client@Domain@@@std@@$0A@@?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@QEAA@$$T@Z _TEXT SEGMENT $T1 = 196 tv69 = 216 this$ = 256 __formal$ = 264 ??$?0U?$default_delete@VClientHandler@Client@Domain@@@std@@$0A@@?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@QEAA@$$T@Z PROC ; std::unique_ptr<Domain::Client::ClientHandler,std::default_delete<Domain::Client::ClientHandler> >::unique_ptr<Domain::Client::ClientHandler,std::default_delete<Domain::Client::ClientHandler> ><std::default_delete<Domain::Client::ClientHandler>,0>, COMDAT ; 2582 : constexpr unique_ptr(nullptr_t) noexcept : _Mypair(_Zero_then_variadic_args_t{}) {} $LN3: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 264 ; 00000108H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 66 ; 00000042H mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+296] lea rcx, OFFSET FLAT:__6A935154_memory call __CheckForDebuggerJustMyCode mov rax, QWORD PTR this$[rbp] mov QWORD PTR tv69[rbp], rax movzx edx, BYTE PTR $T1[rbp] mov rcx, QWORD PTR tv69[rbp] call ??$?0$$V@?$_Compressed_pair@U?$default_delete@VClientHandler@Client@Domain@@@std@@PEAVClientHandler@Client@Domain@@$00@std@@QEAA@U_Zero_then_variadic_args_t@1@@Z ; std::_Compressed_pair<std::default_delete<Domain::Client::ClientHandler>,Domain::Client::ClientHandler *,1>::_Compressed_pair<std::default_delete<Domain::Client::ClientHandler>,Domain::Client::ClientHandler *,1><> mov rax, QWORD PTR this$[rbp] lea rsp, QWORD PTR [rbp+232] pop rdi pop rbp ret 0 ??$?0U?$default_delete@VClientHandler@Client@Domain@@@std@@$0A@@?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@QEAA@$$T@Z ENDP ; std::unique_ptr<Domain::Client::ClientHandler,std::default_delete<Domain::Client::ClientHandler> >::unique_ptr<Domain::Client::ClientHandler,std::default_delete<Domain::Client::ClientHandler> ><std::default_delete<Domain::Client::ClientHandler>,0> _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\memory ; COMDAT ??$?0UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@$0A@@?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@QEAA@$$QEAV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@1@@Z _TEXT SEGMENT $T1 = 200 $T2 = 228 $T3 = 260 tv80 = 280 tv78 = 288 this$ = 336 _Right$ = 344 ??$?0UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@$0A@@?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@QEAA@$$QEAV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@1@@Z PROC ; std::unique_ptr<Domain::Client::ClientHandler,std::default_delete<Domain::Client::ClientHandler> >::unique_ptr<Domain::Client::ClientHandler,std::default_delete<Domain::Client::ClientHandler> ><Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement>,0>, COMDAT ; 2613 : : _Mypair(_One_then_variadic_args_t{}, _STD forward<_Dx2>(_Right.get_deleter()), _Right.release()) {} $LN3: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 344 ; 00000158H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 86 ; 00000056H mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+376] lea rcx, OFFSET FLAT:__6A935154_memory call __CheckForDebuggerJustMyCode mov rax, QWORD PTR this$[rbp] mov QWORD PTR tv80[rbp], rax mov rcx, QWORD PTR _Right$[rbp] call ?release@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAAPEAUClientManagement@Client@Domain@@XZ ; std::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> >::release mov QWORD PTR $T1[rbp], rax mov rcx, QWORD PTR _Right$[rbp] call ?get_deleter@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAAAEAU?$default_delete@UClientManagement@Client@Domain@@@2@XZ ; std::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> >::get_deleter mov rcx, rax call ??$forward@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@YA$$QEAU?$default_delete@UClientManagement@Client@Domain@@@0@AEAU10@@Z ; std::forward<std::default_delete<Domain::Client::ClientManagement> > mov QWORD PTR tv78[rbp], rax movzx eax, BYTE PTR $T2[rbp] mov BYTE PTR $T3[rbp], al lea r9, QWORD PTR $T1[rbp] mov r8, QWORD PTR tv78[rbp] movzx edx, BYTE PTR $T3[rbp] mov rcx, QWORD PTR tv80[rbp] call ??$?0U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@@?$_Compressed_pair@U?$default_delete@VClientHandler@Client@Domain@@@std@@PEAVClientHandler@Client@Domain@@$00@std@@QEAA@U_One_then_variadic_args_t@1@$$QEAU?$default_delete@UClientManagement@Client@Domain@@@1@$$QEAPEAUClientManagement@Client@Domain@@@Z ; std::_Compressed_pair<std::default_delete<Domain::Client::ClientHandler>,Domain::Client::ClientHandler *,1>::_Compressed_pair<std::default_delete<Domain::Client::ClientHandler>,Domain::Client::ClientHandler *,1><std::default_delete<Domain::Client::ClientManagement>,Domain::Client::ClientManagement *> mov rax, QWORD PTR this$[rbp] lea rsp, QWORD PTR [rbp+312] pop rdi pop rbp ret 0 ??$?0UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@$0A@@?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@QEAA@$$QEAV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@1@@Z ENDP ; std::unique_ptr<Domain::Client::ClientHandler,std::default_delete<Domain::Client::ClientHandler> >::unique_ptr<Domain::Client::ClientHandler,std::default_delete<Domain::Client::ClientHandler> ><Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement>,0> _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\memory ; COMDAT ??$?0UClientManagement@Client@Domain@@$0A@@?$default_delete@VClientHandler@Client@Domain@@@std@@QEAA@AEBU?$default_delete@UClientManagement@Client@Domain@@@1@@Z _TEXT SEGMENT this$ = 224 __formal$ = 232 ??$?0UClientManagement@Client@Domain@@$0A@@?$default_delete@VClientHandler@Client@Domain@@@std@@QEAA@AEBU?$default_delete@UClientManagement@Client@Domain@@@1@@Z PROC ; std::default_delete<Domain::Client::ClientHandler>::default_delete<Domain::Client::ClientHandler><Domain::Client::ClientManagement,0>, COMDAT ; 2533 : default_delete(const default_delete<_Ty2>&) noexcept {} $LN3: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__6A935154_memory call __CheckForDebuggerJustMyCode mov rax, QWORD PTR this$[rbp] lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??$?0UClientManagement@Client@Domain@@$0A@@?$default_delete@VClientHandler@Client@Domain@@@std@@QEAA@AEBU?$default_delete@UClientManagement@Client@Domain@@@1@@Z ENDP ; std::default_delete<Domain::Client::ClientHandler>::default_delete<Domain::Client::ClientHandler><Domain::Client::ClientManagement,0> _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ?_Get_first@?$_Compressed_pair@U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@$00@std@@QEAAAEAU?$default_delete@UClientManagement@Client@Domain@@@2@XZ _TEXT SEGMENT this$ = 224 ?_Get_first@?$_Compressed_pair@U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@$00@std@@QEAAAEAU?$default_delete@UClientManagement@Client@Domain@@@2@XZ PROC ; std::_Compressed_pair<std::default_delete<Domain::Client::ClientManagement>,Domain::Client::ClientManagement *,1>::_Get_first, COMDAT ; 1346 : constexpr _Ty1& _Get_first() noexcept { $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode ; 1347 : return *this; mov rax, QWORD PTR this$[rbp] ; 1348 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ?_Get_first@?$_Compressed_pair@U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@$00@std@@QEAAAEAU?$default_delete@UClientManagement@Client@Domain@@@2@XZ ENDP ; std::_Compressed_pair<std::default_delete<Domain::Client::ClientManagement>,Domain::Client::ClientManagement *,1>::_Get_first _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\memory ; COMDAT ?release@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAAPEAUClientManagement@Client@Domain@@XZ _TEXT SEGMENT $T1 = 200 this$ = 256 ?release@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAAPEAUClientManagement@Client@Domain@@XZ PROC ; std::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> >::release, COMDAT ; 2675 : pointer release() noexcept { $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 264 ; 00000108H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 66 ; 00000042H mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+296] lea rcx, OFFSET FLAT:__6A935154_memory call __CheckForDebuggerJustMyCode ; 2676 : return _STD exchange(_Mypair._Myval2, pointer()); mov QWORD PTR $T1[rbp], 0 mov rax, QWORD PTR this$[rbp] lea rdx, QWORD PTR $T1[rbp] mov rcx, rax call ??$exchange@PEAUClientManagement@Client@Domain@@PEAU123@@std@@YAPEAUClientManagement@Client@Domain@@AEAPEAU123@$$QEAPEAU123@@Z ; std::exchange<Domain::Client::ClientManagement *,Domain::Client::ClientManagement *> ; 2677 : } lea rsp, QWORD PTR [rbp+232] pop rdi pop rbp ret 0 ?release@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAAPEAUClientManagement@Client@Domain@@XZ ENDP ; std::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> >::release _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\memory ; COMDAT ?get_deleter@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAAAEAU?$default_delete@UClientManagement@Client@Domain@@@2@XZ _TEXT SEGMENT this$ = 224 ?get_deleter@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAAAEAU?$default_delete@UClientManagement@Client@Domain@@@2@XZ PROC ; std::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> >::get_deleter, COMDAT ; 2651 : _NODISCARD _Dx& get_deleter() noexcept { $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__6A935154_memory call __CheckForDebuggerJustMyCode ; 2652 : return _Mypair._Get_first(); mov rax, QWORD PTR this$[rbp] mov rcx, rax call ?_Get_first@?$_Compressed_pair@U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@$00@std@@QEAAAEAU?$default_delete@UClientManagement@Client@Domain@@@2@XZ ; std::_Compressed_pair<std::default_delete<Domain::Client::ClientManagement>,Domain::Client::ClientManagement *,1>::_Get_first ; 2653 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ?get_deleter@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAAAEAU?$default_delete@UClientManagement@Client@Domain@@@2@XZ ENDP ; std::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> >::get_deleter _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\memory ; COMDAT ??1?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAA@XZ _TEXT SEGMENT tv77 = 192 tv75 = 200 this$ = 240 ??1?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAA@XZ PROC ; std::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> >::~unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> >, COMDAT ; 2645 : ~unique_ptr() noexcept { $LN4: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 248 ; 000000f8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 62 ; 0000003eH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+280] lea rcx, OFFSET FLAT:__6A935154_memory call __CheckForDebuggerJustMyCode ; 2646 : if (_Mypair._Myval2) { mov rax, QWORD PTR this$[rbp] cmp QWORD PTR [rax], 0 je SHORT $LN2@unique_ptr ; 2647 : _Mypair._Get_first()(_Mypair._Myval2); mov rax, QWORD PTR this$[rbp] mov rcx, rax call ?_Get_first@?$_Compressed_pair@U?$default_delete@UClientManagement@Client@Domain@@@std@@PEAUClientManagement@Client@Domain@@$00@std@@QEAAAEAU?$default_delete@UClientManagement@Client@Domain@@@2@XZ ; std::_Compressed_pair<std::default_delete<Domain::Client::ClientManagement>,Domain::Client::ClientManagement *,1>::_Get_first mov QWORD PTR tv77[rbp], rax mov rax, QWORD PTR this$[rbp] mov rax, QWORD PTR [rax] mov QWORD PTR tv75[rbp], rax mov rdx, QWORD PTR tv75[rbp] mov rcx, QWORD PTR tv77[rbp] call ??R?$default_delete@UClientManagement@Client@Domain@@@std@@QEBAXPEAUClientManagement@Client@Domain@@@Z ; std::default_delete<Domain::Client::ClientManagement>::operator() $LN2@unique_ptr: ; 2648 : } ; 2649 : } lea rsp, QWORD PTR [rbp+216] pop rdi pop rbp ret 0 ??1?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAA@XZ ENDP ; std::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> >::~unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> > _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\memory ; COMDAT ??R?$default_delete@UClientManagement@Client@Domain@@@std@@QEBAXPEAUClientManagement@Client@Domain@@@Z _TEXT SEGMENT $T1 = 200 tv75 = 216 tv76 = 224 this$ = 272 _Ptr$ = 280 ??R?$default_delete@UClientManagement@Client@Domain@@@std@@QEBAXPEAUClientManagement@Client@Domain@@@Z PROC ; std::default_delete<Domain::Client::ClientManagement>::operator(), COMDAT ; 2535 : void operator()(_Ty* _Ptr) const noexcept /* strengthened */ { // delete a pointer $LN5: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 280 ; 00000118H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 70 ; 00000046H mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+312] lea rcx, OFFSET FLAT:__6A935154_memory call __CheckForDebuggerJustMyCode ; 2536 : static_assert(0 < sizeof(_Ty), "can't delete an incomplete type"); ; 2537 : delete _Ptr; mov rax, QWORD PTR _Ptr$[rbp] mov QWORD PTR $T1[rbp], rax cmp QWORD PTR $T1[rbp], 0 je SHORT $LN3@operator mov rax, QWORD PTR $T1[rbp] mov rax, QWORD PTR [rax] mov rax, QWORD PTR [rax+64] mov QWORD PTR tv75[rbp], rax mov edx, 1 mov rcx, QWORD PTR $T1[rbp] call QWORD PTR tv75[rbp] mov QWORD PTR tv76[rbp], rax jmp SHORT $LN4@operator $LN3@operator: mov QWORD PTR tv76[rbp], 0 $LN4@operator: ; 2538 : } lea rsp, QWORD PTR [rbp+248] pop rdi pop rbp ret 0 ??R?$default_delete@UClientManagement@Client@Domain@@@std@@QEBAXPEAUClientManagement@Client@Domain@@@Z ENDP ; std::default_delete<Domain::Client::ClientManagement>::operator() _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\memory ; COMDAT ??$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z _TEXT SEGMENT $T1 = 200 $T2 = 232 $T3 = 260 tv81 = 280 tv82 = 288 __$ReturnUdt$ = 336 <_Args_0>$ = 344 ??$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z PROC ; std::make_unique<Domain::Client::ClientManagement,TechnicalServices::Persistence::UserCredentials const &,0>, COMDAT ; 2832 : _NODISCARD unique_ptr<_Ty> make_unique(_Types&&... _Args) { // make a unique_ptr $LN8: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 344 ; 00000158H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 86 ; 00000056H mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+376] mov DWORD PTR $T3[rbp], 0 lea rcx, OFFSET FLAT:__6A935154_memory call __CheckForDebuggerJustMyCode ; 2833 : return unique_ptr<_Ty>(new _Ty(_STD forward<_Types>(_Args)...)); mov ecx, 336 ; 00000150H call ??2@YAPEAX_K@Z ; operator new mov QWORD PTR $T2[rbp], rax cmp QWORD PTR $T2[rbp], 0 je SHORT $LN3@make_uniqu mov rcx, QWORD PTR <_Args_0>$[rbp] call ??$forward@AEBUUserCredentials@Persistence@TechnicalServices@@@std@@YAAEBUUserCredentials@Persistence@TechnicalServices@@AEBU123@@Z ; std::forward<TechnicalServices::Persistence::UserCredentials const &> mov QWORD PTR tv81[rbp], rax mov rdx, QWORD PTR tv81[rbp] mov rcx, QWORD PTR $T2[rbp] call ??0ClientManagement@Client@Domain@@QEAA@AEBUUserCredentials@Persistence@TechnicalServices@@@Z ; Domain::Client::ClientManagement::ClientManagement mov QWORD PTR tv82[rbp], rax jmp SHORT $LN4@make_uniqu $LN3@make_uniqu: mov QWORD PTR tv82[rbp], 0 $LN4@make_uniqu: mov rax, QWORD PTR tv82[rbp] mov QWORD PTR $T1[rbp], rax mov rdx, QWORD PTR $T1[rbp] mov rcx, QWORD PTR __$ReturnUdt$[rbp] call ??$?0U?$default_delete@UClientManagement@Client@Domain@@@std@@$0A@@?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAA@PEAUClientManagement@Client@Domain@@@Z ; std::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> >::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> ><std::default_delete<Domain::Client::ClientManagement>,0> mov eax, DWORD PTR $T3[rbp] or eax, 1 mov DWORD PTR $T3[rbp], eax mov rax, QWORD PTR __$ReturnUdt$[rbp] ; 2834 : } lea rsp, QWORD PTR [rbp+312] pop rdi pop rbp ret 0 ??$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z ENDP ; std::make_unique<Domain::Client::ClientManagement,TechnicalServices::Persistence::UserCredentials const &,0> _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 200 $T2 = 232 $T3 = 260 tv81 = 280 tv82 = 288 __$ReturnUdt$ = 336 <_Args_0>$ = 344 ?dtor$0@?0???$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA PROC ; `std::make_unique<Domain::Client::ClientManagement,TechnicalServices::Persistence::UserCredentials const &,0>'::`1'::dtor$0 mov QWORD PTR [rsp+8], rcx mov QWORD PTR [rsp+16], rdx push rbp push rdi sub rsp, 40 ; 00000028H lea rbp, QWORD PTR [rdx+32] mov edx, 336 ; 00000150H mov rcx, QWORD PTR $T2[rbp] call ??3@YAXPEAX_K@Z ; operator delete add rsp, 40 ; 00000028H pop rdi pop rbp ret 0 ?dtor$0@?0???$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA ENDP ; `std::make_unique<Domain::Client::ClientManagement,TechnicalServices::Persistence::UserCredentials const &,0>'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; COMDAT text$x text$x SEGMENT $T1 = 200 $T2 = 232 $T3 = 260 tv81 = 280 tv82 = 288 __$ReturnUdt$ = 336 <_Args_0>$ = 344 ?dtor$0@?0???$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA PROC ; `std::make_unique<Domain::Client::ClientManagement,TechnicalServices::Persistence::UserCredentials const &,0>'::`1'::dtor$0 mov QWORD PTR [rsp+8], rcx mov QWORD PTR [rsp+16], rdx push rbp push rdi sub rsp, 40 ; 00000028H lea rbp, QWORD PTR [rdx+32] mov edx, 336 ; 00000150H mov rcx, QWORD PTR $T2[rbp] call ??3@YAXPEAX_K@Z ; operator delete add rsp, 40 ; 00000028H pop rdi pop rbp ret 0 ?dtor$0@?0???$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA ENDP ; `std::make_unique<Domain::Client::ClientManagement,TechnicalServices::Persistence::UserCredentials const &,0>'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Users\danhp\Documents\GitHub\CPSC-462-GROUP-2\C++ Development Root\SourceCode\Domain\Client\ClientHandler.cpp ; COMDAT ??1ClientHandler@Client@Domain@@UEAA@XZ _TEXT SEGMENT this$ = 224 ??1ClientHandler@Client@Domain@@UEAA@XZ PROC ; Domain::Client::ClientHandler::~ClientHandler, COMDAT ; 17 : ClientHandler::~ClientHandler() noexcept = default; $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__753A1F67_ClientHandler@cpp call __CheckForDebuggerJustMyCode mov rax, QWORD PTR this$[rbp] lea rcx, OFFSET FLAT:??_7ClientHandler@Client@Domain@@6B@ mov QWORD PTR [rax], rcx lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??1ClientHandler@Client@Domain@@UEAA@XZ ENDP ; Domain::Client::ClientHandler::~ClientHandler _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Users\danhp\Documents\GitHub\CPSC-462-GROUP-2\C++ Development Root\SourceCode\Domain\Client\ClientHandler.cpp ; COMDAT ?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z _TEXT SEGMENT persistentData$4 = 8 credentialsFromDB$5 = 48 $T6 = 392 $T7 = 420 tv92 = 440 tv86 = 440 tv73 = 440 tv77 = 448 __$ArrayPad$ = 456 __$ReturnUdt$ = 496 user$ = 504 ?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z PROC ; Domain::Client::ClientHandler::UseClientManagement, COMDAT ; 24 : { $LN14: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 504 ; 000001f8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 126 ; 0000007eH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+536] mov rax, QWORD PTR __security_cookie xor rax, rbp mov QWORD PTR __$ArrayPad$[rbp], rax mov DWORD PTR $T7[rbp], 0 lea rcx, OFFSET FLAT:__753A1F67_ClientHandler@cpp call __CheckForDebuggerJustMyCode npad 1 ; 25 : ; 26 : try { ; 27 : auto& persistentData = TechnicalServices::Persistence::PersistenceHandler::instance(); call ?instance@PersistenceHandler@Persistence@TechnicalServices@@SAAEAV123@XZ ; TechnicalServices::Persistence::PersistenceHandler::instance mov QWORD PTR tv86[rbp], rax mov rax, QWORD PTR tv86[rbp] mov QWORD PTR persistentData$4[rbp], rax ; 28 : UserCredentials credentialsFromDB = persistentData.findCredentialsByName(user.userName); mov rax, QWORD PTR persistentData$4[rbp] mov rax, QWORD PTR [rax] mov rax, QWORD PTR [rax+16] mov QWORD PTR tv73[rbp], rax mov rax, QWORD PTR user$[rbp] add rax, 8 mov r8, rax lea rdx, QWORD PTR credentialsFromDB$5[rbp] mov rcx, QWORD PTR persistentData$4[rbp] call QWORD PTR tv73[rbp] mov QWORD PTR tv77[rbp], rax ; 29 : if (credentialsFromDB.status == 1) return std::make_unique<Domain::Client::ClientManagement>(user); cmp DWORD PTR credentialsFromDB$5[rbp+120], 1 jne SHORT $LN3@UseClientM mov rdx, QWORD PTR user$[rbp] lea rcx, QWORD PTR $T6[rbp] call ??$make_unique@UClientManagement@Client@Domain@@AEBUUserCredentials@Persistence@TechnicalServices@@$0A@@std@@YA?AV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@0@AEBUUserCredentials@Persistence@TechnicalServices@@@Z ; std::make_unique<Domain::Client::ClientManagement,TechnicalServices::Persistence::UserCredentials const &,0> mov QWORD PTR tv92[rbp], rax mov rdx, QWORD PTR tv92[rbp] mov rcx, QWORD PTR __$ReturnUdt$[rbp] call ??$?0UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@$0A@@?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@QEAA@$$QEAV?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@1@@Z ; std::unique_ptr<Domain::Client::ClientHandler,std::default_delete<Domain::Client::ClientHandler> >::unique_ptr<Domain::Client::ClientHandler,std::default_delete<Domain::Client::ClientHandler> ><Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement>,0> mov eax, DWORD PTR $T7[rbp] or eax, 1 mov DWORD PTR $T7[rbp], eax lea rcx, QWORD PTR $T6[rbp] call ??1?$unique_ptr@UClientManagement@Client@Domain@@U?$default_delete@UClientManagement@Client@Domain@@@std@@@std@@QEAA@XZ ; std::unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> >::~unique_ptr<Domain::Client::ClientManagement,std::default_delete<Domain::Client::ClientManagement> > npad 1 lea rcx, QWORD PTR credentialsFromDB$5[rbp] call ??1UserCredentials@Persistence@TechnicalServices@@QEAA@XZ mov rax, QWORD PTR __$ReturnUdt$[rbp] jmp SHORT $LN1@UseClientM $LN3@UseClientM: ; 30 : ; 31 : return nullptr; xor edx, edx mov rcx, QWORD PTR __$ReturnUdt$[rbp] call ??$?0U?$default_delete@VClientHandler@Client@Domain@@@std@@$0A@@?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@QEAA@$$T@Z ; std::unique_ptr<Domain::Client::ClientHandler,std::default_delete<Domain::Client::ClientHandler> >::unique_ptr<Domain::Client::ClientHandler,std::default_delete<Domain::Client::ClientHandler> ><std::default_delete<Domain::Client::ClientHandler>,0> mov eax, DWORD PTR $T7[rbp] or eax, 1 mov DWORD PTR $T7[rbp], eax lea rcx, QWORD PTR credentialsFromDB$5[rbp] call ??1UserCredentials@Persistence@TechnicalServices@@QEAA@XZ mov rax, QWORD PTR __$ReturnUdt$[rbp] jmp SHORT $LN1@UseClientM jmp SHORT $LN1@UseClientM $LN12@UseClientM: $LN1@UseClientM: ; 32 : } ; 33 : catch (const TechnicalServices::Persistence::PersistenceHandler::NoSuchUser&) {} ; 34 : ; 35 : } mov rdi, rax lea rcx, QWORD PTR [rbp-32] lea rdx, OFFSET FLAT:?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z$rtcFrameData call _RTC_CheckStackVars mov rax, rdi mov rcx, QWORD PTR __$ArrayPad$[rbp] xor rcx, rbp call __security_check_cookie lea rsp, QWORD PTR [rbp+472] pop rdi pop rbp ret 0 int 3 ?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z ENDP ; Domain::Client::ClientHandler::UseClientManagement _TEXT ENDS ; COMDAT text$x text$x SEGMENT persistentData$4 = 8 credentialsFromDB$5 = 48 $T6 = 392 $T7 = 420 tv92 = 440 tv86 = 440 tv73 = 440 tv77 = 448 __$ArrayPad$ = 456 __$ReturnUdt$ = 496 user$ = 504 ?dtor$0@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA PROC ; `Domain::Client::ClientHandler::UseClientManagement'::`1'::dtor$0 mov QWORD PTR [rsp+8], rcx mov QWORD PTR [rsp+16], rdx push rbp push rdi sub rsp, 40 ; 00000028H lea rbp, QWORD PTR [rdx+32] lea rcx, QWORD PTR credentialsFromDB$5[rbp] call ??1UserCredentials@Persistence@TechnicalServices@@QEAA@XZ add rsp, 40 ; 00000028H pop rdi pop rbp ret 0 ?dtor$0@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA ENDP ; `Domain::Client::ClientHandler::UseClientManagement'::`1'::dtor$0 text$x ENDS ; COMDAT text$x text$x SEGMENT persistentData$4 = 8 credentialsFromDB$5 = 48 $T6 = 392 $T7 = 420 tv92 = 440 tv86 = 440 tv73 = 440 tv77 = 448 __$ArrayPad$ = 456 __$ReturnUdt$ = 496 user$ = 504 ?catch$3@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA PROC ; `Domain::Client::ClientHandler::UseClientManagement'::`1'::catch$3 ; 32 : } ; 33 : catch (const TechnicalServices::Persistence::PersistenceHandler::NoSuchUser&) {} mov QWORD PTR [rsp+8], rcx mov QWORD PTR [rsp+16], rdx push rbp push rdi sub rsp, 40 ; 00000028H lea rbp, QWORD PTR [rdx+32] __catch$?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z$0: lea rax, $LN12@catch$3 add rsp, 40 ; 00000028H pop rdi pop rbp ret 0 int 3 ?catch$3@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA ENDP ; `Domain::Client::ClientHandler::UseClientManagement'::`1'::catch$3 text$x ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; COMDAT text$x text$x SEGMENT persistentData$4 = 8 credentialsFromDB$5 = 48 $T6 = 392 $T7 = 420 tv92 = 440 tv86 = 440 tv73 = 440 tv77 = 448 __$ArrayPad$ = 456 __$ReturnUdt$ = 496 user$ = 504 ?dtor$0@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA PROC ; `Domain::Client::ClientHandler::UseClientManagement'::`1'::dtor$0 mov QWORD PTR [rsp+8], rcx mov QWORD PTR [rsp+16], rdx push rbp push rdi sub rsp, 40 ; 00000028H lea rbp, QWORD PTR [rdx+32] lea rcx, QWORD PTR credentialsFromDB$5[rbp] call ??1UserCredentials@Persistence@TechnicalServices@@QEAA@XZ add rsp, 40 ; 00000028H pop rdi pop rbp ret 0 ?dtor$0@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA ENDP ; `Domain::Client::ClientHandler::UseClientManagement'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; COMDAT text$x text$x SEGMENT persistentData$4 = 8 credentialsFromDB$5 = 48 $T6 = 392 $T7 = 420 tv92 = 440 tv86 = 440 tv73 = 440 tv77 = 448 __$ArrayPad$ = 456 __$ReturnUdt$ = 496 user$ = 504 ?catch$3@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA PROC ; `Domain::Client::ClientHandler::UseClientManagement'::`1'::catch$3 ; 33 : catch (const TechnicalServices::Persistence::PersistenceHandler::NoSuchUser&) {} mov QWORD PTR [rsp+8], rcx mov QWORD PTR [rsp+16], rdx push rbp push rdi sub rsp, 40 ; 00000028H lea rbp, QWORD PTR [rdx+32] __catch$?UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z$0: lea rax, $LN12@catch$3 add rsp, 40 ; 00000028H pop rdi pop rbp ret 0 int 3 ?catch$3@?0??UseClientManagement@ClientHandler@Client@Domain@@SA?AV?$unique_ptr@VClientHandler@Client@Domain@@U?$default_delete@VClientHandler@Client@Domain@@@std@@@std@@AEBUUserCredentials@Persistence@TechnicalServices@@@Z@4HA ENDP ; `Domain::Client::ClientHandler::UseClientManagement'::`1'::catch$3 text$x ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; COMDAT ??1UserCredentials@Persistence@TechnicalServices@@QEAA@XZ _TEXT SEGMENT this$ = 224 ??1UserCredentials@Persistence@TechnicalServices@@QEAA@XZ PROC ; TechnicalServices::Persistence::UserCredentials::~UserCredentials, COMDAT $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] mov rax, QWORD PTR this$[rbp] add rax, 88 ; 00000058H mov rcx, rax call ??1?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@QEAA@XZ ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::~vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > mov rax, QWORD PTR this$[rbp] add rax, 48 ; 00000030H mov rcx, rax call ??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::~basic_string<char,std::char_traits<char>,std::allocator<char> > mov rax, QWORD PTR this$[rbp] add rax, 8 mov rcx, rax call ??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::~basic_string<char,std::char_traits<char>,std::allocator<char> > lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??1UserCredentials@Persistence@TechnicalServices@@QEAA@XZ ENDP ; TechnicalServices::Persistence::UserCredentials::~UserCredentials _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ?_Get_first@?$_Compressed_pair@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@V?$_Vector_val@U?$_Simple_types@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@2@$00@std@@QEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ _TEXT SEGMENT this$ = 224 ?_Get_first@?$_Compressed_pair@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@V?$_Vector_val@U?$_Simple_types@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@2@$00@std@@QEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ PROC ; std::_Compressed_pair<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >,std::_Vector_val<std::_Simple_types<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >,1>::_Get_first, COMDAT ; 1346 : constexpr _Ty1& _Get_first() noexcept { $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode ; 1347 : return *this; mov rax, QWORD PTR this$[rbp] ; 1348 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ?_Get_first@?$_Compressed_pair@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@V?$_Vector_val@U?$_Simple_types@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@2@$00@std@@QEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ ENDP ; std::_Compressed_pair<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >,std::_Vector_val<std::_Simple_types<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >,1>::_Get_first _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\vector ; COMDAT ?_Getal@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ _TEXT SEGMENT this$ = 224 ?_Getal@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ PROC ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::_Getal, COMDAT ; 1732 : _Alty& _Getal() noexcept { $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__9B902D3A_vector call __CheckForDebuggerJustMyCode ; 1733 : return _Mypair._Get_first(); mov rax, QWORD PTR this$[rbp] mov rcx, rax call ?_Get_first@?$_Compressed_pair@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@V?$_Vector_val@U?$_Simple_types@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@2@$00@std@@QEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ ; std::_Compressed_pair<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >,std::_Vector_val<std::_Simple_types<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >,1>::_Get_first ; 1734 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ?_Getal@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ ENDP ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::_Getal _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\vector ; COMDAT ?_Tidy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXXZ _TEXT SEGMENT _My_data$ = 8 _Myfirst$ = 40 _Mylast$ = 72 _Myend$ = 104 tv90 = 312 tv88 = 320 tv86 = 328 this$ = 368 ?_Tidy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXXZ PROC ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::_Tidy, COMDAT ; 1686 : void _Tidy() noexcept { // free all storage $LN4: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 376 ; 00000178H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 94 ; 0000005eH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+408] lea rcx, OFFSET FLAT:__9B902D3A_vector call __CheckForDebuggerJustMyCode ; 1687 : auto& _My_data = _Mypair._Myval2; mov rax, QWORD PTR this$[rbp] mov QWORD PTR _My_data$[rbp], rax ; 1688 : pointer& _Myfirst = _My_data._Myfirst; mov rax, QWORD PTR _My_data$[rbp] add rax, 8 mov QWORD PTR _Myfirst$[rbp], rax ; 1689 : pointer& _Mylast = _My_data._Mylast; mov rax, QWORD PTR _My_data$[rbp] add rax, 16 mov QWORD PTR _Mylast$[rbp], rax ; 1690 : pointer& _Myend = _My_data._Myend; mov rax, QWORD PTR _My_data$[rbp] add rax, 24 mov QWORD PTR _Myend$[rbp], rax ; 1691 : ; 1692 : _My_data._Orphan_all(); mov rcx, QWORD PTR _My_data$[rbp] call ?_Orphan_all@_Container_base12@std@@QEAAXXZ ; std::_Container_base12::_Orphan_all ; 1693 : ; 1694 : if (_Myfirst) { // destroy and deallocate old array mov rax, QWORD PTR _Myfirst$[rbp] cmp QWORD PTR [rax], 0 je $LN2@Tidy ; 1695 : _Destroy(_Myfirst, _Mylast); mov rax, QWORD PTR _Mylast$[rbp] mov r8, QWORD PTR [rax] mov rax, QWORD PTR _Myfirst$[rbp] mov rdx, QWORD PTR [rax] mov rcx, QWORD PTR this$[rbp] call ?_Destroy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@0@Z ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::_Destroy ; 1696 : _Getal().deallocate(_Myfirst, static_cast<size_type>(_Myend - _Myfirst)); mov rcx, QWORD PTR this$[rbp] call ?_Getal@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::_Getal mov QWORD PTR tv90[rbp], rax mov rax, QWORD PTR _Myend$[rbp] mov rcx, QWORD PTR _Myfirst$[rbp] mov rcx, QWORD PTR [rcx] mov rax, QWORD PTR [rax] sub rax, rcx cdq mov ecx, 40 ; 00000028H idiv rcx mov QWORD PTR tv88[rbp], rax mov rax, QWORD PTR _Myfirst$[rbp] mov rax, QWORD PTR [rax] mov QWORD PTR tv86[rbp], rax mov r8, QWORD PTR tv88[rbp] mov rdx, QWORD PTR tv86[rbp] mov rcx, QWORD PTR tv90[rbp] call ?deallocate@?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@QEAAXQEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@_K@Z ; std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >::deallocate ; 1697 : ; 1698 : _Myfirst = pointer(); mov rax, QWORD PTR _Myfirst$[rbp] mov QWORD PTR [rax], 0 ; 1699 : _Mylast = pointer(); mov rax, QWORD PTR _Mylast$[rbp] mov QWORD PTR [rax], 0 ; 1700 : _Myend = pointer(); mov rax, QWORD PTR _Myend$[rbp] mov QWORD PTR [rax], 0 $LN2@Tidy: ; 1701 : } ; 1702 : } lea rsp, QWORD PTR [rbp+344] pop rdi pop rbp ret 0 ?_Tidy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXXZ ENDP ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::_Tidy _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\vector ; COMDAT ?_Destroy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@0@Z _TEXT SEGMENT this$ = 224 _First$ = 232 _Last$ = 240 ?_Destroy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@0@Z PROC ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::_Destroy, COMDAT ; 1611 : void _Destroy(pointer _First, pointer _Last) { // destroy [_First, _Last) using allocator $LN3: mov QWORD PTR [rsp+24], r8 mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__9B902D3A_vector call __CheckForDebuggerJustMyCode ; 1612 : _Destroy_range(_First, _Last, _Getal()); mov rcx, QWORD PTR this$[rbp] call ?_Getal@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::_Getal mov r8, rax mov rdx, QWORD PTR _Last$[rbp] mov rcx, QWORD PTR _First$[rbp] call ??$_Destroy_range@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@std@@YAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@QEAV10@AEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z ; std::_Destroy_range<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > ; 1613 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ?_Destroy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXPEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@0@Z ENDP ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::_Destroy _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\vector ; COMDAT ??1?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@QEAA@XZ _TEXT SEGMENT _Alproxy$ = 8 $S4$ = 36 $T4 = 260 __$ArrayPad$ = 280 this$ = 320 ??1?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@QEAA@XZ PROC ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::~vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >, COMDAT ; 672 : ~vector() noexcept { $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 328 ; 00000148H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 82 ; 00000052H mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+360] mov rax, QWORD PTR __security_cookie xor rax, rbp mov QWORD PTR __$ArrayPad$[rbp], rax lea rcx, OFFSET FLAT:__9B902D3A_vector call __CheckForDebuggerJustMyCode ; 673 : _Tidy(); mov rcx, QWORD PTR this$[rbp] call ?_Tidy@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAXXZ ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::_Tidy ; 674 : #if _ITERATOR_DEBUG_LEVEL != 0 ; 675 : auto&& _Alproxy = _GET_PROXY_ALLOCATOR(_Alty, _Getal()); mov rcx, QWORD PTR this$[rbp] call ?_Getal@?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@AEAAAEAV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@XZ ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::_Getal mov rdx, rax lea rcx, QWORD PTR $S4$[rbp] call ??$?0V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$allocator@U_Container_proxy@std@@@std@@QEAA@AEBV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z ; std::allocator<std::_Container_proxy>::allocator<std::_Container_proxy><std::basic_string<char,std::char_traits<char>,std::allocator<char> > > lea rax, QWORD PTR $S4$[rbp] mov QWORD PTR _Alproxy$[rbp], rax ; 676 : _Delete_plain_internal(_Alproxy, _STD exchange(_Mypair._Myval2._Myproxy, nullptr)); mov QWORD PTR $T4[rbp], 0 mov rax, QWORD PTR this$[rbp] lea rdx, QWORD PTR $T4[rbp] mov rcx, rax call ??$exchange@PEAU_Container_proxy@std@@$$T@std@@YAPEAU_Container_proxy@0@AEAPEAU10@$$QEA$$T@Z ; std::exchange<std::_Container_proxy *,std::nullptr_t> mov rdx, rax mov rcx, QWORD PTR _Alproxy$[rbp] call ??$_Delete_plain_internal@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z ; std::_Delete_plain_internal<std::allocator<std::_Container_proxy> > ; 677 : #endif // _ITERATOR_DEBUG_LEVEL != 0 ; 678 : } lea rcx, QWORD PTR [rbp-32] lea rdx, OFFSET FLAT:??1?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@QEAA@XZ$rtcFrameData call _RTC_CheckStackVars mov rcx, QWORD PTR __$ArrayPad$[rbp] xor rcx, rbp call __security_check_cookie lea rsp, QWORD PTR [rbp+296] pop rdi pop rbp ret 0 ??1?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@QEAA@XZ ENDP ; std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::~vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ?deallocate@?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@QEAAXQEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@_K@Z _TEXT SEGMENT this$ = 224 _Ptr$ = 232 _Count$ = 240 ?deallocate@?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@QEAAXQEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@_K@Z PROC ; std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >::deallocate, COMDAT ; 808 : void deallocate(_Ty* const _Ptr, const size_t _Count) { $LN3: mov QWORD PTR [rsp+24], r8 mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode ; 809 : // no overflow check on the following multiply; we assume _Allocate did that check ; 810 : _Deallocate<_New_alignof<_Ty>>(_Ptr, sizeof(_Ty) * _Count); imul rax, QWORD PTR _Count$[rbp], 40 ; 00000028H mov rdx, rax mov rcx, QWORD PTR _Ptr$[rbp] call ??$_Deallocate@$0BA@$0A@@std@@YAXPEAX_K@Z ; std::_Deallocate<16,0> ; 811 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ?deallocate@?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@QEAAXQEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@_K@Z ENDP ; std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >::deallocate _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; COMDAT ??_G?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAPEAXI@Z _TEXT SEGMENT this$ = 224 __flags$ = 232 ??_G?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAPEAXI@Z PROC ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::`scalar deleting destructor', COMDAT $LN4: mov DWORD PTR [rsp+16], edx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] mov rcx, QWORD PTR this$[rbp] call ??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::~basic_string<char,std::char_traits<char>,std::allocator<char> > mov eax, DWORD PTR __flags$[rbp] and eax, 1 test eax, eax je SHORT $LN2@scalar mov edx, 40 ; 00000028H mov rcx, QWORD PTR this$[rbp] call ??3@YAXPEAX_K@Z ; operator delete $LN2@scalar: mov rax, QWORD PTR this$[rbp] lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??_G?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAPEAXI@Z ENDP ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::`scalar deleting destructor' _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; COMDAT ??1?$_Compressed_pair@V?$allocator@D@std@@V?$_String_val@U?$_Simple_types@D@std@@@2@$00@std@@QEAA@XZ _TEXT SEGMENT this$ = 224 ??1?$_Compressed_pair@V?$allocator@D@std@@V?$_String_val@U?$_Simple_types@D@std@@@2@$00@std@@QEAA@XZ PROC ; std::_Compressed_pair<std::allocator<char>,std::_String_val<std::_Simple_types<char> >,1>::~_Compressed_pair<std::allocator<char>,std::_String_val<std::_Simple_types<char> >,1>, COMDAT $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] mov rax, QWORD PTR this$[rbp] mov rcx, rax call ??1?$_String_val@U?$_Simple_types@D@std@@@std@@QEAA@XZ lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??1?$_Compressed_pair@V?$allocator@D@std@@V?$_String_val@U?$_Simple_types@D@std@@@2@$00@std@@QEAA@XZ ENDP ; std::_Compressed_pair<std::allocator<char>,std::_String_val<std::_Simple_types<char> >,1>::~_Compressed_pair<std::allocator<char>,std::_String_val<std::_Simple_types<char> >,1> _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ?_Get_first@?$_Compressed_pair@V?$allocator@D@std@@V?$_String_val@U?$_Simple_types@D@std@@@2@$00@std@@QEAAAEAV?$allocator@D@2@XZ _TEXT SEGMENT this$ = 224 ?_Get_first@?$_Compressed_pair@V?$allocator@D@std@@V?$_String_val@U?$_Simple_types@D@std@@@2@$00@std@@QEAAAEAV?$allocator@D@2@XZ PROC ; std::_Compressed_pair<std::allocator<char>,std::_String_val<std::_Simple_types<char> >,1>::_Get_first, COMDAT ; 1346 : constexpr _Ty1& _Get_first() noexcept { $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode ; 1347 : return *this; mov rax, QWORD PTR this$[rbp] ; 1348 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ?_Get_first@?$_Compressed_pair@V?$allocator@D@std@@V?$_String_val@U?$_Simple_types@D@std@@@2@$00@std@@QEAAAEAV?$allocator@D@2@XZ ENDP ; std::_Compressed_pair<std::allocator<char>,std::_String_val<std::_Simple_types<char> >,1>::_Get_first _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xstring ; COMDAT ?_Getal@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAAEAV?$allocator@D@2@XZ _TEXT SEGMENT this$ = 224 ?_Getal@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAAEAV?$allocator@D@2@XZ PROC ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Getal, COMDAT ; 4408 : _Alty& _Getal() noexcept { $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__85A0121E_xstring call __CheckForDebuggerJustMyCode ; 4409 : return _Mypair._Get_first(); mov rax, QWORD PTR this$[rbp] mov rcx, rax call ?_Get_first@?$_Compressed_pair@V?$allocator@D@std@@V?$_String_val@U?$_Simple_types@D@std@@@2@$00@std@@QEAAAEAV?$allocator@D@2@XZ ; std::_Compressed_pair<std::allocator<char>,std::_String_val<std::_Simple_types<char> >,1>::_Get_first ; 4410 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ?_Getal@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAAEAV?$allocator@D@2@XZ ENDP ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Getal _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xstring ; COMDAT ?_Tidy_deallocate@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAXXZ _TEXT SEGMENT _Ptr$1 = 8 _Al$2 = 40 $T3 = 260 this$ = 320 ?_Tidy_deallocate@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAXXZ PROC ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Tidy_deallocate, COMDAT ; 4383 : void _Tidy_deallocate() noexcept { // initialize buffer, deallocating any storage $LN4: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 328 ; 00000148H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 82 ; 00000052H mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+360] lea rcx, OFFSET FLAT:__85A0121E_xstring call __CheckForDebuggerJustMyCode ; 4384 : _Mypair._Myval2._Orphan_all(); mov rax, QWORD PTR this$[rbp] mov rcx, rax call ?_Orphan_all@_Container_base12@std@@QEAAXXZ ; std::_Container_base12::_Orphan_all ; 4385 : if (_Mypair._Myval2._Large_string_engaged()) { mov rax, QWORD PTR this$[rbp] mov rcx, rax call ?_Large_string_engaged@?$_String_val@U?$_Simple_types@D@std@@@std@@QEBA_NXZ ; std::_String_val<std::_Simple_types<char> >::_Large_string_engaged movzx eax, al test eax, eax je SHORT $LN2@Tidy_deall ; 4386 : const pointer _Ptr = _Mypair._Myval2._Bx._Ptr; mov rax, QWORD PTR this$[rbp] mov rax, QWORD PTR [rax+8] mov QWORD PTR _Ptr$1[rbp], rax ; 4387 : auto& _Al = _Getal(); mov rcx, QWORD PTR this$[rbp] call ?_Getal@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAAEAV?$allocator@D@2@XZ ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Getal mov QWORD PTR _Al$2[rbp], rax ; 4388 : _Destroy_in_place(_Mypair._Myval2._Bx._Ptr); mov rax, QWORD PTR this$[rbp] add rax, 8 mov rcx, rax call ??$_Destroy_in_place@PEAD@std@@YAXAEAPEAD@Z ; std::_Destroy_in_place<char *> ; 4389 : _Al.deallocate(_Ptr, _Mypair._Myval2._Myres + 1); mov rax, QWORD PTR this$[rbp] mov rax, QWORD PTR [rax+32] inc rax mov r8, rax mov rdx, QWORD PTR _Ptr$1[rbp] mov rcx, QWORD PTR _Al$2[rbp] call ?deallocate@?$allocator@D@std@@QEAAXQEAD_K@Z ; std::allocator<char>::deallocate $LN2@Tidy_deall: ; 4390 : } ; 4391 : ; 4392 : _Mypair._Myval2._Mysize = 0; mov rax, QWORD PTR this$[rbp] mov QWORD PTR [rax+24], 0 ; 4393 : _Mypair._Myval2._Myres = _BUF_SIZE - 1; mov rax, QWORD PTR this$[rbp] mov QWORD PTR [rax+32], 15 ; 4394 : // the _Traits::assign is last so the codegen doesn't think the char write can alias this ; 4395 : _Traits::assign(_Mypair._Myval2._Bx._Buf[0], _Elem()); mov BYTE PTR $T3[rbp], 0 mov eax, 1 imul rax, rax, 0 mov rcx, QWORD PTR this$[rbp] lea rax, QWORD PTR [rcx+rax+8] lea rdx, QWORD PTR $T3[rbp] mov rcx, rax call ?assign@?$_Narrow_char_traits@DH@std@@SAXAEADAEBD@Z ; std::_Narrow_char_traits<char,int>::assign npad 1 ; 4396 : } lea rsp, QWORD PTR [rbp+296] pop rdi pop rbp ret 0 ?_Tidy_deallocate@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAXXZ ENDP ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Tidy_deallocate _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xstring ; COMDAT ??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ _TEXT SEGMENT _Alproxy$ = 8 $S12$ = 36 _To_delete$ = 72 __$ArrayPad$ = 280 this$ = 320 ??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ PROC ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::~basic_string<char,std::char_traits<char>,std::allocator<char> >, COMDAT ; 2800 : ~basic_string() noexcept { $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 328 ; 00000148H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 82 ; 00000052H mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+360] mov rax, QWORD PTR __security_cookie xor rax, rbp mov QWORD PTR __$ArrayPad$[rbp], rax lea rcx, OFFSET FLAT:__85A0121E_xstring call __CheckForDebuggerJustMyCode ; 2801 : _Tidy_deallocate(); mov rcx, QWORD PTR this$[rbp] call ?_Tidy_deallocate@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAXXZ ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Tidy_deallocate ; 2802 : #if _ITERATOR_DEBUG_LEVEL != 0 ; 2803 : auto&& _Alproxy = _GET_PROXY_ALLOCATOR(_Alty, _Getal()); mov rcx, QWORD PTR this$[rbp] call ?_Getal@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAAEAV?$allocator@D@2@XZ ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Getal mov rdx, rax lea rcx, QWORD PTR $S12$[rbp] call ??$?0D@?$allocator@U_Container_proxy@std@@@std@@QEAA@AEBV?$allocator@D@1@@Z ; std::allocator<std::_Container_proxy>::allocator<std::_Container_proxy><char> lea rax, QWORD PTR $S12$[rbp] mov QWORD PTR _Alproxy$[rbp], rax ; 2804 : const auto _To_delete = _Mypair._Myval2._Myproxy; mov rax, QWORD PTR this$[rbp] mov rax, QWORD PTR [rax] mov QWORD PTR _To_delete$[rbp], rax ; 2805 : _Mypair._Myval2._Myproxy = nullptr; mov rax, QWORD PTR this$[rbp] mov QWORD PTR [rax], 0 ; 2806 : _Delete_plain_internal(_Alproxy, _To_delete); mov rdx, QWORD PTR _To_delete$[rbp] mov rcx, QWORD PTR _Alproxy$[rbp] call ??$_Delete_plain_internal@V?$allocator@U_Container_proxy@std@@@std@@@std@@YAXAEAV?$allocator@U_Container_proxy@std@@@0@QEAU_Container_proxy@0@@Z ; std::_Delete_plain_internal<std::allocator<std::_Container_proxy> > ; 2807 : #endif // _ITERATOR_DEBUG_LEVEL != 0 ; 2808 : } mov rax, QWORD PTR this$[rbp] mov rcx, rax call ??1?$_Compressed_pair@V?$allocator@D@std@@V?$_String_val@U?$_Simple_types@D@std@@@2@$00@std@@QEAA@XZ lea rcx, QWORD PTR [rbp-32] lea rdx, OFFSET FLAT:??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ$rtcFrameData call _RTC_CheckStackVars mov rcx, QWORD PTR __$ArrayPad$[rbp] xor rcx, rbp call __security_check_cookie lea rsp, QWORD PTR [rbp+296] pop rdi pop rbp ret 0 ??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ ENDP ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::~basic_string<char,std::char_traits<char>,std::allocator<char> > _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; COMDAT ??1?$_String_val@U?$_Simple_types@D@std@@@std@@QEAA@XZ _TEXT SEGMENT this$ = 224 ??1?$_String_val@U?$_Simple_types@D@std@@@std@@QEAA@XZ PROC ; std::_String_val<std::_Simple_types<char> >::~_String_val<std::_Simple_types<char> >, COMDAT $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] mov rax, QWORD PTR this$[rbp] add rax, 8 mov rcx, rax call ??1_Bxty@?$_String_val@U?$_Simple_types@D@std@@@std@@QEAA@XZ ; std::_String_val<std::_Simple_types<char> >::_Bxty::~_Bxty lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??1?$_String_val@U?$_Simple_types@D@std@@@std@@QEAA@XZ ENDP ; std::_String_val<std::_Simple_types<char> >::~_String_val<std::_Simple_types<char> > _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xstring ; COMDAT ??1_Bxty@?$_String_val@U?$_Simple_types@D@std@@@std@@QEAA@XZ _TEXT SEGMENT this$ = 224 ??1_Bxty@?$_String_val@U?$_Simple_types@D@std@@@std@@QEAA@XZ PROC ; std::_String_val<std::_Simple_types<char> >::_Bxty::~_Bxty, COMDAT ; 2254 : ~_Bxty() noexcept {} // user-provided, for fancy pointers $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__85A0121E_xstring call __CheckForDebuggerJustMyCode lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ??1_Bxty@?$_String_val@U?$_Simple_types@D@std@@@std@@QEAA@XZ ENDP ; std::_String_val<std::_Simple_types<char> >::_Bxty::~_Bxty _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xstring ; COMDAT ?_Large_string_engaged@?$_String_val@U?$_Simple_types@D@std@@@std@@QEBA_NXZ _TEXT SEGMENT tv66 = 192 this$ = 240 ?_Large_string_engaged@?$_String_val@U?$_Simple_types@D@std@@@std@@QEBA_NXZ PROC ; std::_String_val<std::_Simple_types<char> >::_Large_string_engaged, COMDAT ; 2226 : bool _Large_string_engaged() const noexcept { $LN5: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 248 ; 000000f8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 62 ; 0000003eH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+280] lea rcx, OFFSET FLAT:__85A0121E_xstring call __CheckForDebuggerJustMyCode ; 2227 : return _BUF_SIZE <= _Myres; mov rax, QWORD PTR this$[rbp] cmp QWORD PTR [rax+32], 16 jb SHORT $LN3@Large_stri mov DWORD PTR tv66[rbp], 1 jmp SHORT $LN4@Large_stri $LN3@Large_stri: mov DWORD PTR tv66[rbp], 0 $LN4@Large_stri: movzx eax, BYTE PTR tv66[rbp] ; 2228 : } lea rsp, QWORD PTR [rbp+216] pop rdi pop rbp ret 0 ?_Large_string_engaged@?$_String_val@U?$_Simple_types@D@std@@@std@@QEBA_NXZ ENDP ; std::_String_val<std::_Simple_types<char> >::_Large_string_engaged _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xstring ; COMDAT ?assign@?$_Narrow_char_traits@DH@std@@SAXAEADAEBD@Z _TEXT SEGMENT _Left$ = 224 _Right$ = 232 ?assign@?$_Narrow_char_traits@DH@std@@SAXAEADAEBD@Z PROC ; std::_Narrow_char_traits<char,int>::assign, COMDAT ; 427 : static _CONSTEXPR17 void assign(_Elem& _Left, const _Elem& _Right) noexcept { $LN3: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__85A0121E_xstring call __CheckForDebuggerJustMyCode ; 428 : _Left = _Right; mov rax, QWORD PTR _Left$[rbp] mov rcx, QWORD PTR _Right$[rbp] movzx ecx, BYTE PTR [rcx] mov BYTE PTR [rax], cl ; 429 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ?assign@?$_Narrow_char_traits@DH@std@@SAXAEADAEBD@Z ENDP ; std::_Narrow_char_traits<char,int>::assign _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ?deallocate@?$allocator@D@std@@QEAAXQEAD_K@Z _TEXT SEGMENT this$ = 224 _Ptr$ = 232 _Count$ = 240 ?deallocate@?$allocator@D@std@@QEAAXQEAD_K@Z PROC ; std::allocator<char>::deallocate, COMDAT ; 808 : void deallocate(_Ty* const _Ptr, const size_t _Count) { $LN3: mov QWORD PTR [rsp+24], r8 mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode ; 809 : // no overflow check on the following multiply; we assume _Allocate did that check ; 810 : _Deallocate<_New_alignof<_Ty>>(_Ptr, sizeof(_Ty) * _Count); mov rdx, QWORD PTR _Count$[rbp] mov rcx, QWORD PTR _Ptr$[rbp] call ??$_Deallocate@$0BA@$0A@@std@@YAXPEAX_K@Z ; std::_Deallocate<16,0> ; 811 : } lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ?deallocate@?$allocator@D@std@@QEAAXQEAD_K@Z ENDP ; std::allocator<char>::deallocate _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ?_Orphan_all@_Container_base12@std@@QEAAXXZ _TEXT SEGMENT _Lock$4 = 4 _Pnext$5 = 40 __$ArrayPad$ = 248 this$ = 288 ?_Orphan_all@_Container_base12@std@@QEAAXXZ PROC ; std::_Container_base12::_Orphan_all, COMDAT ; 1210 : inline void _Container_base12::_Orphan_all() noexcept { $LN7: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 296 ; 00000128H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 74 ; 0000004aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+328] mov rax, QWORD PTR __security_cookie xor rax, rbp mov QWORD PTR __$ArrayPad$[rbp], rax lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode ; 1211 : #if _ITERATOR_DEBUG_LEVEL == 2 ; 1212 : if (_Myproxy) { // proxy allocated, drain it mov rax, QWORD PTR this$[rbp] cmp QWORD PTR [rax], 0 je SHORT $LN5@Orphan_all ; 1213 : _Lockit _Lock(_LOCK_DEBUG); mov edx, 3 lea rcx, QWORD PTR _Lock$4[rbp] call QWORD PTR __imp_??0_Lockit@std@@QEAA@H@Z ; 1214 : ; 1215 : for (auto _Pnext = &_Myproxy->_Myfirstiter; *_Pnext; *_Pnext = (*_Pnext)->_Mynextiter) { mov rax, QWORD PTR this$[rbp] mov rax, QWORD PTR [rax] add rax, 8 mov QWORD PTR _Pnext$5[rbp], rax jmp SHORT $LN4@Orphan_all $LN2@Orphan_all: mov rax, QWORD PTR _Pnext$5[rbp] mov rax, QWORD PTR [rax] mov rcx, QWORD PTR _Pnext$5[rbp] mov rax, QWORD PTR [rax+8] mov QWORD PTR [rcx], rax $LN4@Orphan_all: mov rax, QWORD PTR _Pnext$5[rbp] cmp QWORD PTR [rax], 0 je SHORT $LN3@Orphan_all ; 1216 : (*_Pnext)->_Myproxy = nullptr; mov rax, QWORD PTR _Pnext$5[rbp] mov rax, QWORD PTR [rax] mov QWORD PTR [rax], 0 ; 1217 : } jmp SHORT $LN2@Orphan_all $LN3@Orphan_all: ; 1218 : ; 1219 : _Myproxy->_Myfirstiter = nullptr; mov rax, QWORD PTR this$[rbp] mov rax, QWORD PTR [rax] mov QWORD PTR [rax+8], 0 ; 1220 : } lea rcx, QWORD PTR _Lock$4[rbp] call QWORD PTR __imp_??1_Lockit@std@@QEAA@XZ $LN5@Orphan_all: ; 1221 : #endif // _ITERATOR_DEBUG_LEVEL == 2 ; 1222 : } lea rcx, QWORD PTR [rbp-32] lea rdx, OFFSET FLAT:?_Orphan_all@_Container_base12@std@@QEAAXXZ$rtcFrameData call _RTC_CheckStackVars mov rcx, QWORD PTR __$ArrayPad$[rbp] xor rcx, rbp call __security_check_cookie lea rsp, QWORD PTR [rbp+264] pop rdi pop rbp ret 0 ?_Orphan_all@_Container_base12@std@@QEAAXXZ ENDP ; std::_Container_base12::_Orphan_all _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\xmemory ; COMDAT ?_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z _TEXT SEGMENT _Ptr_user$ = 8 _Ptr_container$ = 40 _Min_back_shift$ = 72 _Back_shift$ = 104 _Ptr$ = 352 _Bytes$ = 360 ?_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z PROC ; std::_Adjust_manually_vector_aligned, COMDAT ; 132 : inline void _Adjust_manually_vector_aligned(void*& _Ptr, size_t& _Bytes) { $LN21: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 376 ; 00000178H lea rbp, QWORD PTR [rsp+48] mov rdi, rsp mov ecx, 94 ; 0000005eH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+408] lea rcx, OFFSET FLAT:__F1739482_xmemory call __CheckForDebuggerJustMyCode ; 133 : // adjust parameters from _Allocate_manually_vector_aligned to pass to operator delete ; 134 : _Bytes += _Non_user_size; mov rax, QWORD PTR _Bytes$[rbp] mov rax, QWORD PTR [rax] add rax, 47 ; 0000002fH mov rcx, QWORD PTR _Bytes$[rbp] mov QWORD PTR [rcx], rax ; 135 : ; 136 : const uintptr_t* const _Ptr_user = reinterpret_cast<uintptr_t*>(_Ptr); mov rax, QWORD PTR _Ptr$[rbp] mov rax, QWORD PTR [rax] mov QWORD PTR _Ptr_user$[rbp], rax ; 137 : const uintptr_t _Ptr_container = _Ptr_user[-1]; mov eax, 8 imul rax, rax, -1 mov rcx, QWORD PTR _Ptr_user$[rbp] mov rax, QWORD PTR [rcx+rax] mov QWORD PTR _Ptr_container$[rbp], rax $LN4@Adjust_man: ; 138 : ; 139 : // If the following asserts, it likely means that we are performing ; 140 : // an aligned delete on memory coming from an unaligned allocation. ; 141 : _STL_ASSERT(_Ptr_user[-2] == _Big_allocation_sentinel, "invalid argument"); mov eax, 8 imul rax, rax, -2 mov rcx, QWORD PTR _Ptr_user$[rbp] mov rdx, -361700864190383366 ; fafafafafafafafaH cmp QWORD PTR [rcx+rax], rdx jne SHORT $LN14@Adjust_man jmp SHORT $LN15@Adjust_man $LN14@Adjust_man: $LN7@Adjust_man: mov eax, DWORD PTR ?__LINE__Var@?0??_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z@4JA add eax, 9 lea rcx, OFFSET FLAT:??_C@_0BB@FCMFBGOM@invalid?5argument@ mov QWORD PTR [rsp+40], rcx lea rcx, OFFSET FLAT:??_C@_02DKCKIIND@?$CFs@ mov QWORD PTR [rsp+32], rcx xor r9d, r9d mov r8d, eax lea rdx, OFFSET FLAT:??_C@_0GI@CLKHGMEI@C?3?2Program?5Files?5?$CIx86?$CJ?2Microsof@ mov ecx, 2 call QWORD PTR __imp__CrtDbgReport cmp eax, 1 jne SHORT $LN19@Adjust_man int 3 xor eax, eax $LN19@Adjust_man: mov eax, DWORD PTR ?__LINE__Var@?0??_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z@4JA add eax, 9 mov QWORD PTR [rsp+32], 0 mov r9d, eax lea r8, OFFSET FLAT:??_C@_1NA@PDNNFCLD@?$AAC?$AA?3?$AA?2?$AAP?$AAr?$AAo?$AAg?$AAr?$AAa?$AAm?$AA?5?$AAF?$AAi?$AAl?$AAe@ lea rdx, OFFSET FLAT:??_C@_1EK@NIFDJFDG@?$AAs?$AAt?$AAd?$AA?3?$AA?3?$AA_?$AAA?$AAd?$AAj?$AAu?$AAs?$AAt?$AA_?$AAm?$AAa@ lea rcx, OFFSET FLAT:??_C@_1CG@JNLFBNGN@?$AA?$CC?$AAi?$AAn?$AAv?$AAa?$AAl?$AAi?$AAd?$AA?5?$AAa?$AAr?$AAg?$AAu?$AAm?$AAe@ call QWORD PTR __imp__invalid_parameter xor eax, eax test eax, eax jne SHORT $LN7@Adjust_man $LN15@Adjust_man: xor eax, eax test eax, eax jne $LN4@Adjust_man ; 142 : ; 143 : // Extra paranoia on aligned allocation/deallocation; ensure _Ptr_container is ; 144 : // in range [_Min_back_shift, _Non_user_size] ; 145 : #ifdef _DEBUG ; 146 : constexpr uintptr_t _Min_back_shift = 2 * sizeof(void*); mov QWORD PTR _Min_back_shift$[rbp], 16 ; 147 : #else // ^^^ _DEBUG ^^^ // vvv !_DEBUG vvv ; 148 : constexpr uintptr_t _Min_back_shift = sizeof(void*); ; 149 : #endif // _DEBUG ; 150 : const uintptr_t _Back_shift = reinterpret_cast<uintptr_t>(_Ptr) - _Ptr_container; mov rax, QWORD PTR _Ptr$[rbp] mov rcx, QWORD PTR _Ptr_container$[rbp] mov rax, QWORD PTR [rax] sub rax, rcx mov QWORD PTR _Back_shift$[rbp], rax $LN10@Adjust_man: ; 151 : _STL_VERIFY(_Back_shift >= _Min_back_shift && _Back_shift <= _Non_user_size, "invalid argument"); cmp QWORD PTR _Back_shift$[rbp], 16 jb SHORT $LN16@Adjust_man cmp QWORD PTR _Back_shift$[rbp], 47 ; 0000002fH ja SHORT $LN16@Adjust_man jmp SHORT $LN17@Adjust_man $LN16@Adjust_man: $LN13@Adjust_man: mov eax, DWORD PTR ?__LINE__Var@?0??_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z@4JA add eax, 19 lea rcx, OFFSET FLAT:??_C@_0BB@FCMFBGOM@invalid?5argument@ mov QWORD PTR [rsp+40], rcx lea rcx, OFFSET FLAT:??_C@_02DKCKIIND@?$CFs@ mov QWORD PTR [rsp+32], rcx xor r9d, r9d mov r8d, eax lea rdx, OFFSET FLAT:??_C@_0GI@CLKHGMEI@C?3?2Program?5Files?5?$CIx86?$CJ?2Microsof@ mov ecx, 2 call QWORD PTR __imp__CrtDbgReport cmp eax, 1 jne SHORT $LN20@Adjust_man int 3 xor eax, eax $LN20@Adjust_man: mov eax, DWORD PTR ?__LINE__Var@?0??_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z@4JA add eax, 19 mov QWORD PTR [rsp+32], 0 mov r9d, eax lea r8, OFFSET FLAT:??_C@_1NA@PDNNFCLD@?$AAC?$AA?3?$AA?2?$AAP?$AAr?$AAo?$AAg?$AAr?$AAa?$AAm?$AA?5?$AAF?$AAi?$AAl?$AAe@ lea rdx, OFFSET FLAT:??_C@_1EK@NIFDJFDG@?$AAs?$AAt?$AAd?$AA?3?$AA?3?$AA_?$AAA?$AAd?$AAj?$AAu?$AAs?$AAt?$AA_?$AAm?$AAa@ lea rcx, OFFSET FLAT:??_C@_1CG@JNLFBNGN@?$AA?$CC?$AAi?$AAn?$AAv?$AAa?$AAl?$AAi?$AAd?$AA?5?$AAa?$AAr?$AAg?$AAu?$AAm?$AAe@ call QWORD PTR __imp__invalid_parameter xor eax, eax test eax, eax jne SHORT $LN13@Adjust_man $LN17@Adjust_man: xor eax, eax test eax, eax jne $LN10@Adjust_man ; 152 : _Ptr = reinterpret_cast<void*>(_Ptr_container); mov rax, QWORD PTR _Ptr$[rbp] mov rcx, QWORD PTR _Ptr_container$[rbp] mov QWORD PTR [rax], rcx ; 153 : } lea rsp, QWORD PTR [rbp+328] pop rdi pop rbp ret 0 ?_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z ENDP ; std::_Adjust_manually_vector_aligned _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Users\danhp\Documents\GitHub\CPSC-462-GROUP-2\C++ Development Root\SourceCode\Domain\Client\ClientHandler.cpp ; COMDAT ?__empty_global_delete@@YAXPEAX_KW4align_val_t@std@@@Z _TEXT SEGMENT __formal$ = 224 __formal$ = 232 __formal$ = 240 ?__empty_global_delete@@YAXPEAX_KW4align_val_t@std@@@Z PROC ; __empty_global_delete, COMDAT $LN3: mov QWORD PTR [rsp+24], r8 mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__753A1F67_ClientHandler@cpp call __CheckForDebuggerJustMyCode lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ?__empty_global_delete@@YAXPEAX_KW4align_val_t@std@@@Z ENDP ; __empty_global_delete _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Users\danhp\Documents\GitHub\CPSC-462-GROUP-2\C++ Development Root\SourceCode\Domain\Client\ClientHandler.cpp ; COMDAT ?__empty_global_delete@@YAXPEAXW4align_val_t@std@@@Z _TEXT SEGMENT __formal$ = 224 __formal$ = 232 ?__empty_global_delete@@YAXPEAXW4align_val_t@std@@@Z PROC ; __empty_global_delete, COMDAT $LN3: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__753A1F67_ClientHandler@cpp call __CheckForDebuggerJustMyCode lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ?__empty_global_delete@@YAXPEAXW4align_val_t@std@@@Z ENDP ; __empty_global_delete _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Users\danhp\Documents\GitHub\CPSC-462-GROUP-2\C++ Development Root\SourceCode\Domain\Client\ClientHandler.cpp ; COMDAT ?__empty_global_delete@@YAXPEAX_K@Z _TEXT SEGMENT __formal$ = 224 __formal$ = 232 ?__empty_global_delete@@YAXPEAX_K@Z PROC ; __empty_global_delete, COMDAT $LN3: mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__753A1F67_ClientHandler@cpp call __CheckForDebuggerJustMyCode lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ?__empty_global_delete@@YAXPEAX_K@Z ENDP ; __empty_global_delete _TEXT ENDS ; Function compile flags: /Odtp /RTCsu /ZI ; File C:\Users\danhp\Documents\GitHub\CPSC-462-GROUP-2\C++ Development Root\SourceCode\Domain\Client\ClientHandler.cpp ; COMDAT ?__empty_global_delete@@YAXPEAX@Z _TEXT SEGMENT __formal$ = 224 ?__empty_global_delete@@YAXPEAX@Z PROC ; __empty_global_delete, COMDAT $LN3: mov QWORD PTR [rsp+8], rcx push rbp push rdi sub rsp, 232 ; 000000e8H lea rbp, QWORD PTR [rsp+32] mov rdi, rsp mov ecx, 58 ; 0000003aH mov eax, -858993460 ; ccccccccH rep stosd mov rcx, QWORD PTR [rsp+264] lea rcx, OFFSET FLAT:__753A1F67_ClientHandler@cpp call __CheckForDebuggerJustMyCode lea rsp, QWORD PTR [rbp+200] pop rdi pop rbp ret 0 ?__empty_global_delete@@YAXPEAX@Z ENDP ; __empty_global_delete _TEXT ENDS END
48.677892
667
0.74919
94c1b47845652aa819316faaa3b3901c2ea07e04
836
asm
Assembly
smsq/java/con2_sched.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
smsq/java/con2_sched.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
smsq/java/con2_sched.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
; CON scheduler for SMSQmulator ; 2004-03-18 1.01 cursor status is toggled before calling cn_curtg (wl) ; 2012-xx-xx 1.01 suspend java job when cursor toggle ; 2016 no longer used in SMSQmulator 2.17 section con ; include 'dev8_keys_con' include 'dev8_keys_sys' include 'dev8_keys_java' ; xdef cn_sched ; xref pt_sched xref cn_curtg ; cn_sched move.l sys_ckyq(a6),d0 ; keyboard queue beq.s csh_exit ; ... none move.l d0,a0 move.b sd_curf-sd_keyq(a0),d0 ; cursor status beq.s csh_exit ; ... none sub.w d3,sys_cfst(a6) ; count down bgt.s csh_exit ; not ready yet move.w #12,sys_cfst(a6) moveq #jt5.slep,d0 dc.w jva.trp5 ; call java possibly suspend job sub.w #sd_keyq,a0 ; base of channel block neg.b sd_curf(a0) ; change state - this is wished state jsr cn_curtg ; toogle now csh_exit jmp pt_sched end
23.222222
71
0.722488
625f85029a8639a522e186754cb20175a710e939
5,215
asm
Assembly
Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2.log_21829_274.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2.log_21829_274.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2.log_21829_274.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %r8 push %rax push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0xb3f5, %rax nop sub $56282, %r8 mov (%rax), %cx nop nop nop nop cmp %rbp, %rbp lea addresses_UC_ht+0x16c2b, %r12 nop nop nop xor $59657, %r13 movl $0x61626364, (%r12) nop nop nop nop dec %rbp lea addresses_A_ht+0xea05, %r12 nop nop nop nop nop cmp %rcx, %rcx and $0xffffffffffffffc0, %r12 movntdqa (%r12), %xmm3 vpextrq $1, %xmm3, %rdx nop nop nop nop dec %r8 lea addresses_A_ht+0x1c385, %rsi lea addresses_normal_ht+0x4d65, %rdi nop nop add $19337, %rbp mov $40, %rcx rep movsl mfence pop %rsi pop %rdx pop %rdi pop %rcx pop %rbp pop %rax pop %r8 pop %r13 pop %r12 ret .global s_faulty_load s_faulty_load: push %r11 push %r12 push %rbp push %rcx push %rdi push %rdx push %rsi // Store mov $0xa05, %rbp clflush (%rbp) nop nop nop and $52570, %r11 mov $0x5152535455565758, %rdi movq %rdi, %xmm4 vmovups %ymm4, (%rbp) nop nop nop nop nop add $6378, %rbp // Faulty Load lea addresses_D+0x13605, %rbp nop nop nop nop add $51799, %rsi mov (%rbp), %edi lea oracles, %r12 and $0xff, %rdi shlq $12, %rdi mov (%r12,%rdi,1), %rdi pop %rsi pop %rdx pop %rdi pop %rcx pop %rbp pop %r12 pop %r11 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'type': 'addresses_D', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_P', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 9, 'same': False}} [Faulty Load] {'OP': 'LOAD', 'src': {'type': 'addresses_D', 'size': 4, 'AVXalign': False, 'NT': True, 'congruent': 0, 'same': True}} <gen_prepare_buffer> {'OP': 'LOAD', 'src': {'type': 'addresses_A_ht', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_UC_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 1, 'same': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_A_ht', 'size': 16, 'AVXalign': False, 'NT': True, 'congruent': 9, 'same': False}} {'OP': 'REPM', 'src': {'type': 'addresses_A_ht', 'congruent': 6, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 5, 'same': False}} {'36': 21829} 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 */
40.426357
2,999
0.660594
5ad31994b8b31e0f182794d1cad183a4e75ad29e
543
asm
Assembly
programs/oeis/102/A102438.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/102/A102438.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/102/A102438.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A102438: a(n) = 100*n + 44. ; 44,144,244,344,444,544,644,744,844,944,1044,1144,1244,1344,1444,1544,1644,1744,1844,1944,2044,2144,2244,2344,2444,2544,2644,2744,2844,2944,3044,3144,3244,3344,3444,3544,3644,3744,3844,3944,4044,4144,4244,4344,4444,4544,4644,4744,4844,4944,5044,5144,5244,5344,5444,5544,5644,5744,5844,5944,6044,6144,6244,6344,6444,6544,6644,6744,6844,6944,7044,7144,7244,7344,7444,7544,7644,7744,7844,7944,8044,8144,8244,8344,8444,8544,8644,8744,8844,8944,9044,9144,9244,9344,9444,9544,9644,9744,9844,9944 mul $0,100 add $0,44
90.5
490
0.767956
c8cd916f4d2cecafaa8a384ce4e9d67bd0fefa9a
392
nasm
Assembly
Projetos/F-Assembly/src/nasm/mult.nasm
brunoartc/GladOS
ba8ccbb6e0e46dbe5f93cb6533d8956cd7ffffae
[ "Unlicense" ]
null
null
null
Projetos/F-Assembly/src/nasm/mult.nasm
brunoartc/GladOS
ba8ccbb6e0e46dbe5f93cb6533d8956cd7ffffae
[ "Unlicense" ]
40
2018-03-12T00:40:25.000Z
2020-02-20T21:58:52.000Z
Projetos/F-Assembly/src/nasm/mult.nasm
brunoartc/Z01-GladOS
ba8ccbb6e0e46dbe5f93cb6533d8956cd7ffffae
[ "Unlicense" ]
1
2018-03-02T13:32:33.000Z
2018-03-02T13:32:33.000Z
leaw $R0, %A movw (%A), %S ; S=RAM(%A) leaw $R1, %A movw (%A), %D ; D=RAM(%A) WHILE: ; while D not 0 leaw $END, %A jle %D ; termina o while se D=0 nop leaw $R0, %A movw (%A), %S ; S=RAM(%A) leaw $R3, %A addw (%A), %S, %S ; soma A com S e salva em R3 leaw $R3,%A movw %S, (%A) ; R0=S decw %D ; diminui D em 1 leaw $WHILE, %A ; recomeça o while jmp nop END: nop
18.666667
46
0.515306
9fbdfe40c973facd4bf71460d58de7b09b4b2d09
1,091
asm
Assembly
programs/oeis/083/A083098.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/083/A083098.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/083/A083098.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A083098: a(n) = 2*a(n-1) + 6*a(n-2). ; 1,1,8,22,92,316,1184,4264,15632,56848,207488,756064,2757056,10050496,36643328,133589632,487039232,1775616256,6473467904,23600633344,86042074112,313687948288,1143628341248,4169384372224,15200538791936,55417383817216,202038000386048,736580303675392,2685388609667072 mov $4,$0 mov $5,$0 add $5,1 lpb $5,1 mov $0,$4 sub $5,1 sub $0,$5 mov $13,$0 mov $15,2 lpb $15,1 mov $0,$13 sub $15,1 add $0,$15 sub $0,1 mov $9,$0 mov $11,2 lpb $11,1 mov $0,$9 sub $11,1 add $0,$11 mov $2,0 mov $3,0 mov $8,2 lpb $0,1 sub $0,1 mov $7,$3 mov $3,$2 mul $3,3 add $8,$7 mul $8,2 mov $2,$8 lpe mov $7,$2 mov $12,$11 lpb $12,1 mov $10,$7 sub $12,1 lpe lpe lpb $9,1 mov $9,0 sub $10,$7 lpe mov $6,$15 mov $7,$10 lpb $6,1 sub $6,1 mov $14,$7 lpe lpe lpb $13,1 mov $13,0 sub $14,$7 lpe mov $7,$14 div $7,4 add $1,$7 lpe
17.596774
265
0.503208
aa72e87b3eeb9f120894a9e3605009fc8366aea8
526
asm
Assembly
programs/oeis/170/A170277.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/170/A170277.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/170/A170277.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A170277: Number of reduced words of length n in Coxeter group on 28 generators S_i with relations (S_i)^2 = (S_i S_j)^41 = I. ; 1,28,756,20412,551124,14880348,401769396,10847773692,292889889684,7908027021468,213516729579636,5764951698650172,155653695863554644,4202649788315975388,113471544284531335476,3063731695682346057852 seq $0,3951 ; Expansion of g.f.: (1+x)/(1-8*x). add $0,2 seq $0,191106 ; Increasing sequence generated by these rules: a(1)=1, and if x is in a then 3x-2 and 3x are in a. sub $0,9 div $0,2 add $0,1
52.6
198
0.762357
95e4cb308f287fa383f61af26476805230962be1
12,717
asm
Assembly
tests/devices/nex_file/savenexSyntax.asm
cizo2000/sjasmplus
615d7c0e09a44aa2a923095fc9ed6dca6ecae4a4
[ "BSD-3-Clause" ]
null
null
null
tests/devices/nex_file/savenexSyntax.asm
cizo2000/sjasmplus
615d7c0e09a44aa2a923095fc9ed6dca6ecae4a4
[ "BSD-3-Clause" ]
null
null
null
tests/devices/nex_file/savenexSyntax.asm
cizo2000/sjasmplus
615d7c0e09a44aa2a923095fc9ed6dca6ecae4a4
[ "BSD-3-Clause" ]
null
null
null
;;; docs design ; SAVENEX <command> <command arguments> ; Works only in ZXSPECTRUMNEXT device emulation mode. See DEVICE. ; ; For file format details, check https://specnext.dev/wiki/NEX_file_format ; ; As the file is designed for self-contained distribution of whole applications/games, ; its configuration and assembling is a bit too complex for single directive, and the ; configuration is instead divided into multiple commands, and the assembling goes ; through multiple stages, so some commands must be used in correct sequence. ; ; While the format technically allows to include multiple screen types data, they are ; all loaded at the beginning over each other, so it makes sense to provide only single ; loading screen (sjasmplus enforces that). ; ; More detailed description of each command follows: ; ; SAVENEX OPEN <filename>[,<startAddress>[,<stackAddress>[,<entryBank 0..111>]]] ; Opens a NEX file, defines start address and stack address (if omitted, start address is ; zero = no start, stack address is 0xFF2D, entryBank is zero), and 16k bank to be mapped ; at 0xC000 before code is started. ; ; Only single NEX file can be open at the same time, and to finalize the header content ; the command CLOSE has to be used (does auto-close if source ends). ; ; Entry bank is number of 16k bank (0..111), not native 8k page, default is zero, i.e. ; the default memory map is identical to ZX 128 (ROM, RAM banks 5, 2 and 0). ; ; Make sure your new stack has at least tens of bytes available as those will be used ; already by the NEX loader before executing your entry point (although released back). ; ; SAVENEX CORE <major 0..15>,<minor 0..15>,<subminor 0..255> ; Set minimum required Next core version, can be set any time before CLOSE. ; ; SAVENEX CFG <border 0..7>[,<fileHandle 0/1/$4000+>[,<PreserveNextRegs 0/1>[,<2MbRamReq 0/1>]]] ; Set border colour (during loading), whether the machine should be set to default state ; (PreserveNextRegs = 0 = default), if the app requires extended RAM (224 8k pages) and ; how the file handle of the NEX file should be treated: 0 = default = close, 1 = keep ; open and pass in BC, $4000..$FFFE = keep open, and write into memory at provided address ; (after entry bank is paged in). This can be set any time before CLOSE. ; ; SAVENEX BAR <loadBar 0/1>,<barColour 0..255>[,<startDelay 0..255>[,<bankDelay 0..255>]] ; Loading-bar related setup ("colour" usage depends on screen mode), can be set any time ; before CLOSE. ; ; SAVENEX SCREEN L2 [<Page8kNum 0..223>,<offset>[,<palPage8kNum 0..223>,<palOffset>]] ; Layer 2 loading screen, can be used between OPEN and first AUTO/BANK command. ; ; Palette consists of 512 bytes (256 palette items from index 0), in 9b colour format: ; first byte is %RRRGGGBB, second byte is %P000000B (P is priority flag for Layer 2 colours). ; ; Image data are 48kiB block of memory, the loader will use always banks 9..11 to display ; it (8k pages 18..23), but if you will prepare the data there, it will be also re-saved ; by AUTO command, so either use other banks, and overwrite them with valid data/code ; after using the SCREEN command, or reset pages 18..23 to zero after SCREEN. ; ; If no memory address is specified, the pages 18..23 are stored in file, and if no ; palette address is specified, no-palette flag is set in NEX file. ; ; SAVENEX SCREEN LR [<Page8kNum 0..223>,<offset>[,<palPage8kNum 0..223>,<palOffset>]] ; LoRes (128x96) loading screen, can be used between OPEN and first AUTO/BANK command. ; ; Palette is similar to Layer 2 mode, just LoRes mode doesn't have priority bit. ; ; Image data are 12288 bytes memory block - either consecutive block if specific address ; is provided, or without address the actual bank 5 memory is stored (taking 6144 bytes ; from address 0x4000 and 6144 bytes from address 0x6000). ; ; SAVENEX SCREEN (SCR|SHC|SHR) [<hiResColour 0..7>] ; ULA/Timex modes loading screen, can be used between OPEN and first AUTO/BANK command. ; ; The actual bank 5 memory (pages 10..11) is stored as if the image is displayed, in ; these modes the palette can't be specified. ; ; SCR is classic ZX 6912 bytes long screen from address 0x4000 (page 10 is used, even ; if the slot 1 is modified to other page, so you must prepare the image "in place"). ; ; SHC and SHR are Timex HiColor (8x1 attribute) and HiRes (512x192 bitmap) modes, prepare ; data "in place", i.e. 6144 bytes into page 10 and 6144 bytes into page 11 (0x4000 and ; 0x6000 addresses in default memory setup). For HiRes mode you should specify ink colour ; (the paper is complement of ink). ; ; SAVENEX BANK <bank 0..111>[,...] ; Can be used after OPEN or SCREEN and before CLOSE, but the 16ki banks must be saved in ; correct order: 5, 2, 0, 1, 3, 4, 6, 7, ..., 111 ; ; SAVENEX AUTO [<fromBank 0..111>[,<toBank 0..111>]] ; Can be used after OPEN or SCREEN and before CLOSE. The sjasmplus will save every ; non-zero 16k bank detected in the correct order (automatically starting from ; first possible bank after previous BANK/AUTO commands, or from provided "fromBank"). ; ; For "fromBank" value use the specified order above in BANK command, i.e. 5, 2, 0, ... ; ; Keep in mind the DEVICE ZXSPECTRUMNEXT will automatically adjust content of banks 5 ; and 0 (ULA screen, sysvars and fake ZX48 stack), so unless you clear those banks to ; zero, or skip saving them by saving first set of banks explicitly with BANK command, ; they will be saved by AUTO. ; ; SAVENEX CLOSE [<fileToAppend>] ; Can be used after OPEN. The currently open NEX file will be finalized (header adjusted), ; and optional extra file just appended to the end of NEX file. DEVICE NONE ; correct commands, but outside of NEXT device SAVENEX OPEN "savenexSyntax.nex", $8000,$FFE0, 15 ; not in NEXT mode DEVICE ZXSPECTRUMNEXT SAVENEX NEPO ; wrong command ;; OPEN <filename>[,<startAddress>,<stackAddress>[,<entryBank 0..111>]] ; errors - [un]expected arguments SAVENEX SAVENEX ; no command, but with comment SAVENEX OPEN SAVENEX OPEN "savenexSyntax.nex", SAVENEX OPEN "savenexSyntax.nex", $8000, SAVENEX OPEN "savenexSyntax.nex", $8000,$FFE0, SAVENEX OPEN "savenexSyntax.nex", $8000,$FFE0, 15, SAVENEX OPEN "savenexSyntax.nex", $7170, $F1F0, 112 ; error entryBank ; one correct NEX file to verify simple case (but induce all sorts of warnings) SAVENEX OPEN "savenexSyntax.nex", $18180,$1F1F0, 'B' ; error = NEX file is already open SAVENEX OPEN "savenexSyntax.nex", $8180, $F1F0, 'B' ;; CORE <major 0..15>,<minor 0..15>,<subminor 0..255> ; errors - [un]expected arguments SAVENEX CORE SAVENEX CORE 0 SAVENEX CORE 0, SAVENEX CORE 0,0 SAVENEX CORE 0,0, SAVENEX CORE 0,0,0, ; one correct + one with warnings SAVENEX CORE 15,15,255 SAVENEX CORE 'a','b',$100+'c' ; warn about values ;; CFG <border 0..7>[,<fileHandle 0/1/$4000+>[,<PreserveNextRegs 0/1>[,<2MbRamReq 0/1>]]] ; errors - [un]expected arguments SAVENEX CFG SAVENEX CFG 5, SAVENEX CFG 5, 1, SAVENEX CFG 5, 1, 1, SAVENEX CFG 5, 1, 1, 1, ; correct ones with value warnings, and omitting optional arguments SAVENEX CFG 9 SAVENEX CFG 5, -1 SAVENEX CFG 5, 1, 2 SAVENEX CFG 5, "hf", 1, 1 ; one completely correct (no warning) SAVENEX CFG 5, "hf", 1, 'R' ;; BAR <loadBar 0/1>,<barColour 0..255>[,<startDelay 0..255>[,<bankDelay 0..255>]] ; errors - [un]expected arguments SAVENEX BAR SAVENEX BAR 1 SAVENEX BAR 1, SAVENEX BAR 1, 'L', SAVENEX BAR 1, 'L', 'D', SAVENEX BAR 1, 'L', 'D', 'd', ; correct ones with value warnings, and omitting optional arguments SAVENEX BAR 2, 255 SAVENEX BAR 1, 256 SAVENEX BAR 1, 255, 256 SAVENEX BAR 1, 255, 255, 256 SAVENEX BAR 1, 'L', 'D', 'd' ; one fully valid (no warning) ;; SCREEN L2 [<Page8kNum 0..223>,<offset>[,<palPage8kNum 0..223>,<palOffset>]] ; errors - [un]expected arguments SAVENEX SCREEN SAVENEX SCREEN NEERCS SAVENEX SCREEN L2 9 SAVENEX SCREEN L2 9 , SAVENEX SCREEN L2 9 , $1FFF , SAVENEX SCREEN L2 9 , $1FFF , 10 SAVENEX SCREEN L2 9 , $1FFF , 10 , SAVENEX SCREEN L2 9 , $1FFF , 10 , $1800, ; errors - wrong values SAVENEX SCREEN L2 224, 0, 0, 0 ; pagenum outside of range SAVENEX SCREEN L2 0, 0, 224, 0 ; pagenum outside of range SAVENEX SCREEN L2 218, 1, 0, 0 ; values in range, but leaks out of memory SAVENEX SCREEN L2 0, $1B4001, 0, 0 ; values in range, but leaks out of memory SAVENEX SCREEN L2 0, 0, 223, 7681 ; values in range, but leaks out of memory SAVENEX SCREEN L2 0, 0, 0, $1BFE01 ; values in range, but leaks out of memory SAVENEX SCREEN L2 218, 1 ; values in range, but leaks out of memory SAVENEX SCREEN L2 0, $1B4001 ; values in range, but leaks out of memory ; not testing correct variants, because it would make impossible to test other types ;; SCREEN LR [<Page8kNum 0..223>,<offset>[,<palPage8kNum 0..223>,<palOffset>]] ; errors - [un]expected arguments SAVENEX SCREEN LR 5 SAVENEX SCREEN LR 5 , SAVENEX SCREEN LR 5 , $1FFF , SAVENEX SCREEN LR 5 , $1FFF , 10 SAVENEX SCREEN LR 5 , $1FFF , 10 , SAVENEX SCREEN LR 5 , $1FFF , 10 , $1800, ; errors - wrong values SAVENEX SCREEN LR 224, 0, 0, 0 ; pagenum outside of range SAVENEX SCREEN LR 0, 0, 224, 0 ; pagenum outside of range SAVENEX SCREEN LR 222, $1001, 0, 0 ; values in range, but leaks out of memory SAVENEX SCREEN LR 0, $1BD001, 0, 0 ; values in range, but leaks out of memory SAVENEX SCREEN LR 0, 0, 223, 7681 ; values in range, but leaks out of memory SAVENEX SCREEN LR 0, 0, 0, $1BFE01 ; values in range, but leaks out of memory SAVENEX SCREEN LR 222, $1001 ; values in range, but leaks out of memory SAVENEX SCREEN LR 0, $1BD001 ; values in range, but leaks out of memory ; not testing correct variants, because it would make impossible to test other types ;; SCREEN (SCR|SHC|SHR) [<hiResColour 0..7>] ; there's basically no syntax error possible with these ;; BANK <bank 0..111>[,...] ; errors - invalid/missing arguments (will eventually also save some banks correctly) SAVENEX BANK () SAVENEX BANK -1 SAVENEX BANK 112 SAVENEX BANK 5, ; bank 5 will be stored SAVENEX BANK 0, 2, 3 ; bank 0 will be stored, 2 = wrong order ; revisit screen errors - here no screen should work because bank was written already SAVENEX SCREEN L2 SAVENEX SCREEN LR SAVENEX SCREEN SCR SAVENEX SCREEN SHC SAVENEX SCREEN SHR 10 ;; AUTO [<fromBank 0..111>[,<toBank 0..111>]] SAVENEX AUTO 21, SAVENEX AUTO 21, 25, SAVENEX AUTO -1, 20 SAVENEX AUTO 112, 20 SAVENEX AUTO 21, -1 SAVENEX AUTO 21, 112 SAVENEX AUTO 21, 20 SAVENEX AUTO 5, 1 ; already stored by BANK above SAVENEX AUTO 0, 1 SAVENEX AUTO 1, 1 ; correct one (but bank is zeroed = no output) SAVENEX AUTO 1, 1 ; but disabled for second try SAVENEX AUTO ; correct (but all zeroes = no output) SAVENEX AUTO ; but all are disabled now ;; CLOSE [<fileToAppend>] SAVENEX CLOSE "savenexSyntax.asm" ; correct one (there's not much to do wrong SAVENEX CLOSE ; should be error (no NEX is open) ;; create small NEX for BIN comparison, if the thing at least somewhat works ;; also verify it works twice per source (in sequential order) SAVENEX OPEN "savenexSyntax.bin", $5000 SAVENEX CORE 2,0,28 : SAVENEX CFG 4,0,0,1 : SAVENEX BAR 0,0,100,0 ORG $4800 : DB $45, $5F, $F5, $44 ORG $5000 : jr $ ; infinite JR loop SAVENEX AUTO 5, 5 ; should store bank5 ; let it close automatically by ending source END $7170 ; invoke warning about different start address
49.100386
100
0.644492
4b413b1e3e948ebfbcccb4963431257c706b21d6
707
asm
Assembly
programs/oeis/091/A091915.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/091/A091915.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/091/A091915.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A091915: Maximum of even products of partitions of n. ; 0,2,2,4,6,8,12,18,24,36,54,72,108,162,216,324,486,648,972,1458,1944,2916,4374,5832,8748,13122,17496,26244,39366,52488,78732,118098,157464,236196,354294,472392,708588,1062882,1417176,2125764,3188646,4251528 mov $2,$0 mov $4,$0 lpb $2 mov $0,$4 sub $2,1 sub $0,$2 mov $5,$0 mov $7,2 lpb $7 mov $0,$5 sub $7,1 add $0,$7 sub $0,1 mov $3,$0 lpb $0 mov $3,$0 sub $3,1 cal $3,792 ; a(n) = max{(n - i)*a(i) : i < n}; a(0) = 1. sub $0,$0 lpe mov $8,$7 lpb $8 mov $6,$3 sub $8,1 lpe lpe lpb $5 mov $5,0 sub $6,$3 lpe mov $3,$6 mul $3,2 add $1,$3 lpe
18.605263
207
0.534653
0e709c8686866685fe25a3771e994aa221591b1d
1,384
asm
Assembly
libsrc/strings/strcmp_callee.asm
grancier/z180
e83f35e36c9b4d1457e40585019430e901c86ed9
[ "ClArtistic" ]
8
2017-01-18T12:02:17.000Z
2021-06-12T09:40:28.000Z
libsrc/strings/strcmp_callee.asm
grancier/z180
e83f35e36c9b4d1457e40585019430e901c86ed9
[ "ClArtistic" ]
1
2017-03-06T07:41:56.000Z
2017-03-06T07:41:56.000Z
libsrc/strings/strcmp_callee.asm
RC2014Z80/z88dk
e5b9447b970e5fae26544b6d8aa5957c98ba0e6a
[ "ClArtistic" ]
3
2017-03-07T03:19:40.000Z
2021-09-15T17:59:19.000Z
; char __CALLEE__ *strcmp_callee(char *s1, char *s2) ; compare strings s1 and s2 ; ; Apr 25 1999 djm - Previously would return non ; zero if the two strings matched (it ignored ; the \0 at the end!) ; ; Jan 12 2002 Graham R. Cobb - Rewritten, ; previously strcmp("A","AB") would return 0. ; ; Mar 24 2002 Graham R. Cobb - Fix to above. ; Make sure positive return really is > 0 (not = 0) ; ; Jun 09 2002 Benjamin Green - Use CPI and ; rearrange loop slightly ; ; Dec 30 2006 aralbrec - Stop using cpi as that ; is slower than cp (hl) + inc hl combination! SECTION code_clib PUBLIC strcmp_callee PUBLIC _strcmp_callee PUBLIC strcmp1 .strcmp_callee ._strcmp_callee pop hl pop de ex (sp),hl ; enter : hl = char *s1 ; de = char *s2 ; exit : if s1==s2 : hl = 0, Z flag set ; if s1<<s2 : hl < 0, NC+NZ flag set ; if s1>>s2 : hl > 0, C+NZ flag set ; uses : af, de, hl .asmentry .strcmp1 ld a,(de) cp (hl) ; compare with s1 jr nz,strcmp2 inc de inc hl and a ; check for end of strings jp nz, strcmp1 ld l,a ; both strings ended simultaneously ld h,a ; it's a match! ret .strcmp2 ; strings are different ld h,$80 ret nc dec h ret
21.625
65
0.559971
d99485dee8b4f8ea7d000c199bd51f695c97f83a
180
asm
Assembly
Top Gear 2 (USA).asm
snaphat/oc_snes_patches
268f88d6d6b4fb8f771f4b368073859499bc711b
[ "Unlicense" ]
2
2021-10-16T23:02:09.000Z
2022-02-12T18:21:16.000Z
Top Gear 2 (USA).asm
snaphat/oc_snes_patches
268f88d6d6b4fb8f771f4b368073859499bc711b
[ "Unlicense" ]
null
null
null
Top Gear 2 (USA).asm
snaphat/oc_snes_patches
268f88d6d6b4fb8f771f4b368073859499bc711b
[ "Unlicense" ]
null
null
null
; Fix race condition on NTSC/PAL check. org $81f8ca db $80 ; Fix race condition on APU port read. org $9ff2a5 nop ; Fix race condition on APU port read. org $9ff439 nop
16.363636
40
0.694444
287e5efe4404e8bd3e3378cd866253fdfbe9da17
1,755
asm
Assembly
DSP/TI-Header/csl_c64xplus_intc_src/src/intc/_csl_intcIsrDispatch.asm
adildahlan/BE-thesis-Repo-McsDspRealtimeFeedback
fd61a78401bde72b0fb0d5df32f2fd1cbb631aeb
[ "BSD-2-Clause" ]
null
null
null
DSP/TI-Header/csl_c64xplus_intc_src/src/intc/_csl_intcIsrDispatch.asm
adildahlan/BE-thesis-Repo-McsDspRealtimeFeedback
fd61a78401bde72b0fb0d5df32f2fd1cbb631aeb
[ "BSD-2-Clause" ]
null
null
null
DSP/TI-Header/csl_c64xplus_intc_src/src/intc/_csl_intcIsrDispatch.asm
adildahlan/BE-thesis-Repo-McsDspRealtimeFeedback
fd61a78401bde72b0fb0d5df32f2fd1cbb631aeb
[ "BSD-2-Clause" ]
1
2020-05-14T00:50:50.000Z
2020-05-14T00:50:50.000Z
;/***************************************************************************** ; * Copyright (c) Texas Instruments Inc 2002, 2003, 2004, 2005 ; * ; * Use of this software is controlled by the terms and conditions found in the ; * license agreement under which this software has been supplied. ; *****************************************************************************/ ;/** @file _csl_intcIsrDispatch.asm ; * ; * @date 12th June, 2004 ; * @author Ruchika Kharwar ; */ .global __CSL_intcDispatcher .def __CSL_intcVectorTable .ref __CSL_intcCpuIntrTable RESV .macro num .loop num mvkh __CSL_intcCpuIntrTable,a4 .endloop .endm _CSL_intcpush .macro reg stw reg,*b15--[1] .endm _CSL_intcpop .macro reg ldw *++b15[1],reg .endm CALLDISP .macro intr _CSL_intcpush a0 mvkl __CSL_intcCpuIntrTable, a0 mvkh __CSL_intcCpuIntrTable, a0 ldw *++a0[intr + 1], a0 nop 2 stw a0, *-a0[intr + 1] _CSL_intcpop a0 bnop a0, 5 .endm .sect ".csl_vect" .align 1024 __CSL_intcVectorTable: __CSL_intcRsv0: RESV 8 __CSL_intcIsrNMI: CALLDISP 1 __CSL_intcRsv2: RESV 8 __CSL_intcRsv3: RESV 8 __CSL_intcIsr4: CALLDISP 4 __CSL_intcIsr5: CALLDISP 5 __CSL_intcIsr6: CALLDISP 6 __CSL_intcIsr7: CALLDISP 7 __CSL_intcIsr8: CALLDISP 8 __CSL_intcIsr9: CALLDISP 9 __CSL_intcIsr10: CALLDISP 10 __CSL_intcIsr11: CALLDISP 11 __CSL_intcIsr12: CALLDISP 12 __CSL_intcIsr13: CALLDISP 13 __CSL_intcIsr14: CALLDISP 14 __CSL_intcIsr15: CALLDISP 15
19.076087
81
0.557265
9476bea24889154398057b0b4119c2510eae5d43
4,496
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_15_186.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_15_186.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_15_186.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r14 push %r8 push %r9 push %rbp push %rcx push %rdi push %rsi lea addresses_normal_ht+0x94d7, %r8 dec %rbp movl $0x61626364, (%r8) nop nop nop nop nop and %rcx, %rcx lea addresses_normal_ht+0x1a57, %r14 nop nop nop and %rsi, %rsi movb $0x61, (%r14) nop and $12291, %rsi lea addresses_WC_ht+0x12417, %rsi lea addresses_UC_ht+0x1d0ff, %rdi nop nop nop dec %r9 mov $99, %rcx rep movsb nop and $36892, %r9 lea addresses_WT_ht+0x7537, %rsi nop nop nop nop inc %r9 movl $0x61626364, (%rsi) nop nop nop nop nop xor $15126, %r9 lea addresses_WT_ht+0x13e57, %rcx nop nop nop sub $57299, %r9 mov (%rcx), %rsi nop nop and $45250, %rcx lea addresses_UC_ht+0x99d7, %rdi clflush (%rdi) nop nop nop nop cmp $7278, %rsi mov $0x6162636465666768, %r8 movq %r8, %xmm0 vmovups %ymm0, (%rdi) nop nop nop and $57744, %r14 lea addresses_WC_ht+0x7b96, %rdi nop add %r14, %r14 mov (%rdi), %r9d dec %rbp lea addresses_WT_ht+0x1607f, %r10 nop nop sub $44276, %rdi mov $0x6162636465666768, %r14 movq %r14, %xmm4 movups %xmm4, (%r10) cmp $62981, %rcx lea addresses_A_ht+0x15057, %r8 nop nop nop nop cmp $34552, %rcx movw $0x6162, (%r8) nop nop nop nop add $504, %r10 lea addresses_A_ht+0x1ba57, %r14 nop nop nop nop cmp $45404, %rbp movb $0x61, (%r14) nop nop nop and %r10, %r10 lea addresses_A_ht+0x5e57, %rsi clflush (%rsi) nop nop nop nop and $58202, %r8 movb (%rsi), %r14b nop nop nop nop mfence pop %rsi pop %rdi pop %rcx pop %rbp pop %r9 pop %r8 pop %r14 pop %r10 ret .global s_faulty_load s_faulty_load: push %r10 push %r11 push %r12 push %r13 push %rbp push %rcx push %rdx // Store lea addresses_D+0x1ae57, %r13 nop nop nop nop and $23268, %rdx mov $0x5152535455565758, %r11 movq %r11, %xmm4 movups %xmm4, (%r13) nop nop nop nop nop add %r12, %r12 // Store lea addresses_WC+0x17457, %r11 nop cmp %r10, %r10 movw $0x5152, (%r11) nop xor %r11, %r11 // Load lea addresses_UC+0x83a7, %r12 clflush (%r12) nop add $46376, %rcx vmovntdqa (%r12), %ymm1 vextracti128 $0, %ymm1, %xmm1 vpextrq $1, %xmm1, %r11 nop nop nop nop and %r11, %r11 // Faulty Load lea addresses_PSE+0x11657, %r11 and %r12, %r12 vmovups (%r11), %ymm3 vextracti128 $0, %ymm3, %xmm3 vpextrq $1, %xmm3, %rcx lea oracles, %r12 and $0xff, %rcx shlq $12, %rcx mov (%r12,%rcx,1), %rcx pop %rdx pop %rcx pop %rbp pop %r13 pop %r12 pop %r11 pop %r10 ret /* <gen_faulty_load> [REF] {'src': {'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 0, 'same': False, 'type': 'addresses_PSE'}, 'OP': 'LOAD'} {'dst': {'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 11, 'same': False, 'type': 'addresses_D'}, 'OP': 'STOR'} {'dst': {'NT': False, 'AVXalign': True, 'size': 2, 'congruent': 9, 'same': False, 'type': 'addresses_WC'}, 'OP': 'STOR'} {'src': {'NT': True, 'AVXalign': False, 'size': 32, 'congruent': 4, 'same': False, 'type': 'addresses_UC'}, 'OP': 'LOAD'} [Faulty Load] {'src': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 0, 'same': True, 'type': 'addresses_PSE'}, 'OP': 'LOAD'} <gen_prepare_buffer> {'dst': {'NT': False, 'AVXalign': True, 'size': 4, 'congruent': 7, 'same': False, 'type': 'addresses_normal_ht'}, 'OP': 'STOR'} {'dst': {'NT': True, 'AVXalign': False, 'size': 1, 'congruent': 10, 'same': False, 'type': 'addresses_normal_ht'}, 'OP': 'STOR'} {'src': {'congruent': 5, 'same': False, 'type': 'addresses_WC_ht'}, 'dst': {'congruent': 3, 'same': False, 'type': 'addresses_UC_ht'}, 'OP': 'REPM'} {'dst': {'NT': True, 'AVXalign': False, 'size': 4, 'congruent': 5, 'same': False, 'type': 'addresses_WT_ht'}, 'OP': 'STOR'} {'src': {'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 9, 'same': False, 'type': 'addresses_WT_ht'}, 'OP': 'LOAD'} {'dst': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 7, 'same': False, 'type': 'addresses_UC_ht'}, 'OP': 'STOR'} {'src': {'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 0, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'LOAD'} {'dst': {'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 3, 'same': False, 'type': 'addresses_WT_ht'}, 'OP': 'STOR'} {'dst': {'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 9, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'STOR'} {'dst': {'NT': False, 'AVXalign': False, 'size': 1, 'congruent': 7, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'STOR'} {'src': {'NT': False, 'AVXalign': False, 'size': 1, 'congruent': 10, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'LOAD'} {'33': 15} 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 */
19.982222
148
0.646352
6218081cd64e8f0698c40f4b5a85225cc42547ed
5,389
asm
Assembly
Transynther/x86/_processed/NC/_st_zr_sm_/i7-7700_9_0xca.log_21829_1653.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NC/_st_zr_sm_/i7-7700_9_0xca.log_21829_1653.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NC/_st_zr_sm_/i7-7700_9_0xca.log_21829_1653.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r11 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x128d2, %rsi lea addresses_UC_ht+0x19152, %rdi nop nop nop nop nop xor $50489, %rbp mov $54, %rcx rep movsq nop nop nop nop inc %rcx lea addresses_D_ht+0x882e, %rdi clflush (%rdi) nop nop nop nop cmp $43034, %rdx mov $0x6162636465666768, %r11 movq %r11, %xmm0 and $0xffffffffffffffc0, %rdi movntdq %xmm0, (%rdi) nop nop nop nop and $42993, %rsi pop %rsi pop %rdx pop %rdi pop %rcx pop %rbp pop %r11 ret .global s_faulty_load s_faulty_load: push %r11 push %r12 push %r15 push %r8 push %r9 push %rcx push %rdx // Store mov $0x6d1aef0000000452, %rcx cmp %r11, %r11 movl $0x51525354, (%rcx) nop nop nop nop nop dec %r12 // Load mov $0x6d1aef0000000452, %r8 nop nop nop and %r9, %r9 movb (%r8), %r15b xor %r8, %r8 // Store lea addresses_normal+0xc892, %rcx nop nop nop nop nop sub $15947, %r11 movw $0x5152, (%rcx) nop nop nop cmp %r8, %r8 // Store lea addresses_A+0x1c18e, %r9 nop nop nop sub %rdx, %rdx movb $0x51, (%r9) nop nop nop nop nop inc %r8 // Faulty Load mov $0x6d1aef0000000452, %r12 nop nop dec %r9 movb (%r12), %cl lea oracles, %r8 and $0xff, %rcx shlq $12, %rcx mov (%r8,%rcx,1), %rcx pop %rdx pop %rcx pop %r9 pop %r8 pop %r15 pop %r12 pop %r11 ret /* <gen_faulty_load> [REF] {'src': {'congruent': 0, 'AVXalign': False, 'same': False, 'size': 1, 'NT': False, 'type': 'addresses_NC'}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'congruent': 0, 'AVXalign': False, 'same': True, 'size': 4, 'NT': False, 'type': 'addresses_NC'}} {'src': {'congruent': 0, 'AVXalign': False, 'same': True, 'size': 1, 'NT': False, 'type': 'addresses_NC'}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'congruent': 6, 'AVXalign': False, 'same': False, 'size': 2, 'NT': False, 'type': 'addresses_normal'}} {'OP': 'STOR', 'dst': {'congruent': 2, 'AVXalign': True, 'same': False, 'size': 1, 'NT': False, 'type': 'addresses_A'}} [Faulty Load] {'src': {'congruent': 0, 'AVXalign': False, 'same': True, 'size': 1, 'NT': False, 'type': 'addresses_NC'}, 'OP': 'LOAD'} <gen_prepare_buffer> {'src': {'congruent': 6, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'REPM', 'dst': {'congruent': 8, 'same': False, 'type': 'addresses_UC_ht'}} {'OP': 'STOR', 'dst': {'congruent': 0, 'AVXalign': False, 'same': False, 'size': 16, 'NT': True, 'type': 'addresses_D_ht'}} {'00': 202, '54': 21627} 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 00 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 00 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 00 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 00 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 00 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 00 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 00 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 00 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 00 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 00 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 00 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 00 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 00 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 00 54 54 54 54 54 54 54 54 54 54 54 54 54 */
38.219858
2,999
0.656708
b28ef1af9a9306f3acdb2ca2539bdbcd5e7cdefe
3,403
asm
Assembly
2ndSemester/Operating Systems/Lab6/Lab6_8bit.asm
xairaven/kpi_labs
650cfb7130e0223275d19ab7bcd575f9483c8c96
[ "MIT" ]
null
null
null
2ndSemester/Operating Systems/Lab6/Lab6_8bit.asm
xairaven/kpi_labs
650cfb7130e0223275d19ab7bcd575f9483c8c96
[ "MIT" ]
null
null
null
2ndSemester/Operating Systems/Lab6/Lab6_8bit.asm
xairaven/kpi_labs
650cfb7130e0223275d19ab7bcd575f9483c8c96
[ "MIT" ]
null
null
null
; Task - to calculate (12/c - d*4 + 73)/(a*a + 1) ; 8-bit title Lab6.asm ; Title of the program .model SMALL ; Model of memory for .ехе file .stack 100h ; Reserving memory for stack code segment assume CS:code, DS:data begin: MOV AX, data ; Initialising DS register MOV DS, AX ; with the adress of data segment MOV AL, 0 ; Move the value 0 to the register AL CMP AL, C ; We compare it with C. If C = 0 - then JE ERROR ; we pass to a label ERROR (JE - JUMP EQUAL) ; otherwise we go further. MOV AL, 12 ; (12/c) Moving 12 to AL. CBW ; Byte to word conversion command IDIV C ; (12/c) Division with a sign on C PUSH AX ; (12/c) The result is temporarily moved to the stack MOV AL, 4 ; (d*4) Moving 4 to АL CBW ; Byte to word conversion command IMUL D ; (d*4) Multiply by D MOV BL, AL ; (d*4) Temporarily move the result to BL POP AX ; (12/c) Get the value from the stack to АХ SBB AL, BL ; (12/c - d*4) Subtraction with borrow ADC AL, 73 ; (12/c - d*4 + 73) Adding with borrow PUSH AX ; (12/c - d*4 + 73) Moving to stack MOV AL, A ; (a*a) Transfer the value of variable A to AL CWD ; Byte to word conversion command IMUL A ; (a*a) Multiplication INC AL ; (a*a + 1) Increment MOV BL, AL ; (a*a + 1) Temporarily move the result to ВL POP AX ; (12/c - d*4 + 73) Get the value from the stack to АХ CWD ; Byte to word conversion command IDIV BL ; (The whole formula) Divide by BL MOV X, AL ; The result is written in a variable L JMP OUTPUT_START ; Go to the "Output_Start" label OUTPUT_START: ; Label, start output MOV AH, 09h ; Display the message "Result:" MOV DX, OFFSET SUCCESS_MSG INT 21h XOR AX, AX ; Reset the register АХ MOV AL, X ; Returning result PUSH AX ; Store in a stack CMP AX, 0 ; Comparing with 0 JNS PLUS ; Test, negative or positive MOV AH, 02h ; The number is negative, we displaying a minus sign MOV DL, '-' INT 21h POP AX ; Unload values ​​from the stack NEG AX ; Turning negative into positive PLUS: XOR CX, CX ; Remainder of division counter MOV BX, 10 ; Moving the basis of the 10th number system DIVISION: XOR DX, DX ; The remainder of the division DIV BX ; Divide by 10 PUSH DX ; Place in a stack, LIFO INC CX ; Increase the counter TEST AX, AX ; Check if the whole part = 0 JNZ DIVISION ; Divide until the whole part is equal 0 MOV AH, 02h ; Removing the remainder OUTPUT: POP DX ; Getting numbers from the stack ADD DL, 30h ; Translating them into ASCII-коди INT 21h ; Interrupting LOOP OUTPUT ; Repeat until the counter is equal 0 JMP EXIT ; Exit ERROR: ; Label, transition is made in case of error MOV AH, 09h ; Display the message of division by 0 MOV DX, OFFSET ERROR_MSG INT 21h JMP EXIT ; Go to the "End of program" label EXIT: ; Label, transition anyway MOV AH, 4Ch ; Completion of the program MOV AL, 0 ; Code 0 - code of successful completion INT 21h code ends data segment A DB 1 C DB 12 D DB 5 X DB ? L_BREAK EQU 0dh, 0ah, '$' ; L_BREAK - constant of CR_LF SUCCESS_MSG DB "Result: ", L_BREAK ERROR_MSG DB "Error! Division by zero!", L_BREAK data ends end begin
34.72449
69
0.629151
d7be14a844b6aa02265a4aa8b1f229bf85c825e5
3,374
asm
Assembly
src/die.asm
jardafis/CastleEscape
3deb573938109a8ea84277d83dd7a163588747a4
[ "BSD-3-Clause" ]
1
2022-01-07T07:10:55.000Z
2022-01-07T07:10:55.000Z
src/die.asm
jardafis/CastleEscape
3deb573938109a8ea84277d83dd7a163588747a4
[ "BSD-3-Clause" ]
null
null
null
src/die.asm
jardafis/CastleEscape
3deb573938109a8ea84277d83dd7a163588747a4
[ "BSD-3-Clause" ]
null
null
null
extern _pasteScreen extern _copyScreen extern _spriteBuffer extern _xPos extern decBCD extern display2BCD IF !_ZXN extern _yPos extern displayPixelTile ELSE extern setSpritePattern extern knightSprite extern updateSpriteAttribs extern setSpriteFlip ENDIF extern gameOver extern heartCount extern wyz_play_song extern wyz_player_stop extern resetPlayer extern spriteDataStart extern spriteDataEnd extern spriteDataStore public die #include "defs.inc" section CODE_2 ; ; Routine called when plater dies. ; die: push af push bc push de push hl IF !_ZXN ld de, _spriteBuffer ld bc, (_yPos) fix_to_int b, c ld b, c ld a, (_xPos) ld c, a call _copyScreen ; ; Display headstone where player died ; ld bc, (_yPos) fix_to_int b, c ld b, c ld a, (_xPos) ld c, a ld a, ID_HEADSTONE0 call displayPixelTile ld a, c add 8 ld c, a ld a, ID_HEADSTONE1 call displayPixelTile ld a, b add 8 ld b, a ld a, ID_HEADSTONE3 call displayPixelTile ld a, c sub 8 ld c, a ld a, ID_HEADSTONE2 call displayPixelTile ELSE ld ix, knightSprite xor a call setSpriteFlip ld a, SPRITE_ID_TOMBSTONE call setSpritePattern call updateSpriteAttribs ENDIF ; ; Stop in-game music and ; start the death march ; di call wyz_player_stop ld a, DEATH_MARCH call wyz_play_song ei ; ; Delay for 200 1/50's of a second (4 seconds) and flash ; the border while the music plays. ; ld b, 200 delayLoop: ld a, b and 0x07 border a halt djnz delayLoop ; ; Ensure border is black ; border INK_BLACK ; ; Decrement the heart count ; ld de, heartCount call decBCD ld bc, 0x011d ; y,x screen location ex de, hl call display2BCD ; ; If the heart count is zero, game over! ; hl points to heartCount ; ld a, (hl) or a jp z, gameOver ; Restart in-game music ld a, MAIN_MENU_MUSIC di call wyz_play_song ei IF !_ZXN ; ; Remove the headstone ; ld hl, _spriteBuffer call _pasteScreen ENDIF ; Set player X/Y position (and sprite direction) to where ; they entered the level. ld hl, spriteDataStore ld de, spriteDataStart ld bc, spriteDataEnd-spriteDataStart ldir call resetPlayer pop hl pop de pop bc pop af ret
21.628205
65
0.472436
c4500d41a436acbe150211ea2a173c8ef94ebc11
6,721
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_21829_619.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_21829_619.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_21829_619.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r14 push %r15 push %r8 push %rax push %rcx push %rdi push %rsi lea addresses_WT_ht+0x1ef05, %r15 nop nop sub $10372, %r12 mov $0x6162636465666768, %r11 movq %r11, %xmm4 vmovups %ymm4, (%r15) nop nop nop nop sub %r14, %r14 lea addresses_normal_ht+0x1ac45, %rax nop nop nop nop nop dec %rsi movl $0x61626364, (%rax) nop nop nop nop mfence lea addresses_A_ht+0x2645, %rsi clflush (%rsi) nop nop nop nop inc %r15 mov $0x6162636465666768, %r8 movq %r8, %xmm5 vmovups %ymm5, (%rsi) nop nop nop nop xor $4835, %r15 lea addresses_D_ht+0xef05, %r15 nop nop nop sub %r8, %r8 movb $0x61, (%r15) nop nop nop xor %r11, %r11 lea addresses_WC_ht+0x1ade5, %r8 nop nop nop nop and %rax, %rax mov (%r8), %r14d nop sub $18745, %r11 lea addresses_WC_ht+0x1c45, %rax clflush (%rax) nop nop nop nop nop dec %r15 movl $0x61626364, (%rax) nop nop nop nop nop and %r12, %r12 lea addresses_D_ht+0x5045, %rsi lea addresses_D_ht+0x1e585, %rdi nop nop and $12298, %r15 mov $44, %rcx rep movsw nop nop and $9618, %rdi lea addresses_UC_ht+0x1d89, %r11 dec %r12 movb (%r11), %r8b nop nop add %r8, %r8 lea addresses_UC_ht+0x10e85, %rax nop nop nop nop inc %rcx mov (%rax), %rdi dec %rcx lea addresses_A_ht+0x544d, %rsi lea addresses_WT_ht+0x13845, %rdi nop nop nop nop nop xor %r15, %r15 mov $120, %rcx rep movsb nop nop nop nop nop sub %rcx, %rcx lea addresses_WC_ht+0x1c215, %r8 clflush (%r8) nop nop nop nop nop cmp %r12, %r12 movb $0x61, (%r8) nop nop nop nop xor %r11, %r11 pop %rsi pop %rdi pop %rcx pop %rax pop %r8 pop %r15 pop %r14 pop %r12 pop %r11 ret .global s_faulty_load s_faulty_load: push %r11 push %r12 push %r8 push %r9 push %rbx push %rdi // Faulty Load lea addresses_normal+0x18045, %r8 add %rdi, %rdi vmovups (%r8), %ymm4 vextracti128 $1, %ymm4, %xmm4 vpextrq $1, %xmm4, %r9 lea oracles, %rbx and $0xff, %r9 shlq $12, %r9 mov (%rbx,%r9,1), %r9 pop %rdi pop %rbx pop %r9 pop %r8 pop %r12 pop %r11 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'type': 'addresses_normal', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}} [Faulty Load] {'OP': 'LOAD', 'src': {'type': 'addresses_normal', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}} <gen_prepare_buffer> {'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 5, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_normal_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 8, 'same': True}} {'OP': 'STOR', 'dst': {'type': 'addresses_A_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 5, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_D_ht', 'size': 1, 'AVXalign': False, 'NT': True, 'congruent': 6, 'same': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_WC_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 5, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 10, 'same': True}} {'OP': 'REPM', 'src': {'type': 'addresses_D_ht', 'congruent': 11, 'same': False}, 'dst': {'type': 'addresses_D_ht', 'congruent': 4, 'same': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 1, 'same': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 5, 'same': False}} {'OP': 'REPM', 'src': {'type': 'addresses_A_ht', 'congruent': 2, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 11, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': False}} {'34': 21829} 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 */
33.773869
2,999
0.658087
910a4ccca00ff0ab91b5269b464eb5912fd27a6b
4,391
asm
Assembly
sorting/QuicksortRecursive.asm
gmarciani/assimply
dc99d9f58dac43c8354d9cf7b36d28445bbb8921
[ "MIT" ]
1
2015-12-11T17:48:21.000Z
2015-12-11T17:48:21.000Z
sorting/QuicksortRecursive.asm
gmarciani/assimply
dc99d9f58dac43c8354d9cf7b36d28445bbb8921
[ "MIT" ]
null
null
null
sorting/QuicksortRecursive.asm
gmarciani/assimply
dc99d9f58dac43c8354d9cf7b36d28445bbb8921
[ "MIT" ]
null
null
null
# @Name: QuicksortRecursive # @Description: The program implements the recursive Quicksort algorithm. # # @Author: Giacomo Marciani <giacomo.marciani@gmail.com> .data msg_welcome: .asciiz "Il programma ordina gli elementi di un array 10-dimensionale tramite lalgoritmo QuickSort ricorsivo.\n\n" A: .word 2,4,6,8,10,3,6,9,12,15 dimensione_array: .word 10 .text .globl main ### MAIN ### main: la $a0,msg_welcome #carica l'indirizzo di msg_welcome. addi $v0,$zero,4 #codice servizio print string. syscall la $a0,dimensione_array #carica l'indirizzo di dimensione_array. lw $s0,0($a0) #$s0=dimensione_array=n. la $s1,A #$s0=(A), cioè indirizzo di base di A. subu $a0,$s0,1 #$a0=(n-1). addiu $a1,$s1,0 #$a1=(A+0). addiu $s0,$zero,0 #$s0=m=0. jal quicksort nop exit_program: addi $v0,$zero,10 #codice servizio exit. syscall ### FINE MAIN ### ### FUNZIONE void quicksort(int n, int *A, int m): $a0=n, $a1=(A+0), $s0=m ### quicksort: subu $sp,$sp,24 sw $ra,0($sp) sw $a0,4($sp) sw $a1,8($sp) sw $s0,12($sp) slt $t0,$s0,$a0 #$t0=1 iff m<n. $t0=0 iff m=>n. beq $t0,$zero,m_maggiore_uguale_n #salta a m_maggiore_n sse m=>n. m_minore_n: addiu $t1,$s0,0 #$t1=m, argomento m per indice_perno(m,n). addiu $t2,$a0,0 #$t2=n, argomento n per indice_perno(m,n). jal indice_perno #chiama indice_perno(m,n). nop addiu $t6,$s2,0 #$t6=k=indice_perno(m,n). sll $t4,$s0,2 #$t4=4*m. add $t4,$a1,$t4 #$t4=&A[m], argomento per swap_item(&A[m],&A[k]). sll $t5,$t6,2 #$t5=4*k. add $t5,$a1,$t5 #t5=&A[k], argomento per swap_item(&A[m],&A[k]). jal swap_item #chiama swap_item() nop lw $s3,0($t4) #$s3=key=A[m]. addiu $t1,$s0,1 #$t1=i=(m+1). addiu $t2,$a0,0 #$t2=j=n. ciclo_while_1: slt $t0,$t2,$t1 #$t0=1 iff j<i. $t0=0 iff i<=j. bne $t0,$zero,exit_ciclo_while_1 #salta a exit_ciclo_while_1 sse j<i. sll $t1,$t1,2 #$t1=4*i. add $t1,$a1,$t1 #$t1=&A[i]. lw $s6,0($t1) #$s6=A[i]. sub $t1,$t1,$a1 #$t1=4*i. srl $t1,$t1,2 #t1=i. sll $t2,$t2,2 #$t2=4*j. add $t2,$a1,$t2 #$t2=&A[j]. lw $s7,0($t2) #$s7=A[j]. sub $t2,$t2,$a1 #$t2=4*j. srl $t2,$t2,2 #t2=j. ciclo_while_2: slt $t0,$a0,$t1 #$t0=1 iff n<i. $t0=0 iff n=>i. bne $t0,$zero,exit_ciclo_while_2 #salta a exit_ciclo_while_2 sse n<i. slt $t0,$s3,$s6 #$t0=1 iff key<A[i]. $t0=0 iff key=>A[i]. bne $t0,$zero,exit_ciclo_while_2 #salta a exit_ciclo_while_2 sse key<A[i]. addiu $t1,$t1,1 #i++. exit_ciclo_while_2: nop ciclo_while_3: slt $t0,$t2,$s0 #$t0=1 iff j<m. $t0=0 iff j=>m. bne $t0,$zero,exit_ciclo_while_3 #salta a exit_ciclo_while_3 sse j<m. slt $t0,$s3,$s7 #$t0=1 iff key<A[j]. $t0=0 iff key=>A[j]. beq $t0,$zero,exit_ciclo_while_3 #salta a exit_ciclo_while_3 sse key=>A[j]. subu $t2,$t2,1 #j--. exit_ciclo_while_3: nop slt $t0,$t1,$t2 #$t0=1 iff i<j. $t0=0 iff i=>j. beq $t0,$zero,exit_ciclo_while_1 #salta a exit_ciclo_while_1 sse i=>j. sll $t4,$t1,2 #$t4=4*i. add $t4,$a1,$t4 #$t4=&A[i], argomento per swap_item(&A[i],&A[j]). sll $t5,$t2,2 #$t5=4*j. add $t5,$a1,$t5 #$t5=&A[j], argomento per swap_item(&A[i],&A[j]). jal swap_item #chiama swap_item(&A[i],&A[j]). nop exit_ciclo_while_1: nop sll $s0,$s0,2 #$s0=4*m. add $t4,$a1,$s0 #$t4=&A[m], argomento per swap_item(&A[m],&A[j]). srl $s0,$s0,2 #$s0=m. sll $t2,$t2,2 #$t2=4*j. add $t5,$a1,$t2 #$t5=&A[j], argomento per swap_item(&A[m],&A[j]). srl $t2,$t2,2 #$t2=j. jal swap_item #chiama swap_item(&A[m],&A[j]). nop subu $a0,$t2,1 #$a0=n=j-1, argomento per quicksort(A,m,j-1). jal quicksort #chiama quicksort(A,m,j-1). nop addiu $s0,$t2,1 #$s0=m=j+1, argomento per quicksort(A,m,j-1). jal quicksort #chiama quicksort(A,j+1,n). nop m_maggiore_uguale_n: lw $ra,0($sp) lw $a0,4($sp) lw $a1,8($sp) lw $s0,12($sp) addiu $sp,$sp,24 jr $ra ### FINE FUNZIONE quicksort(int n, int *A, int m) ### ### FUNZIONE void swap_item(int *x, int *y): $t4=&x, $t5=&y ### swap_item: subu $sp,$sp,20 sw $ra,0($sp) sw $t4,4($sp) sw $t5,8($sp) lw $t3,0($t4) #$t3=*x sw $t3,12($sp) lw $t3,0($t5) #$t3=*y sw $t3,16($sp) lw $t3,12($sp) #$t3=*x sw $t3,0($t5) #*y=*x lw $t3,16($sp) #$t3=*y sw $t3,0($t4) #*x=*y lw $ra,0($sp) addiu $sp,$sp,20 jr $ra ### FINE FUNZIONE void swap_item(int *x, int *y)) ### ### FUNZIONE int indice_perno(int i, int f): $t1=i, $t2=f, $s2=indice_perno(i,f) ### indice_perno: subu $sp,$sp,16 sw $ra,0($sp) sw $t1,4($sp) sw $t2,8($sp) add $s2,$t1,$t2 #$s2=(i+f) srl $s2,$s2,1 #$s2=(i+f)/2 lw $ra,0($sp) addiu $sp,$sp,16 jr $ra ### FINE FUNZIONE int perno(int i, int f) ###
22.634021
127
0.629014
de32fc6633bce9ec0ae133ca5906efe8d89b8049
37,548
asm
Assembly
Crypto/AesSmall_x86.asm
shangweixiao/TrueCrypt
debb5a0aa866fe40c2d1bcfb364887c7efcebe9a
[ "Zlib" ]
1
2016-01-29T02:47:31.000Z
2016-01-29T02:47:31.000Z
Crypto/AesSmall_x86.asm
shangweixiao/TrueCrypt
debb5a0aa866fe40c2d1bcfb364887c7efcebe9a
[ "Zlib" ]
1
2018-11-04T14:00:51.000Z
2018-11-04T14:00:51.000Z
Crypto/AesSmall_x86.asm
shangweixiao/TrueCrypt
debb5a0aa866fe40c2d1bcfb364887c7efcebe9a
[ "Zlib" ]
2
2018-01-20T20:22:20.000Z
2020-05-24T14:53:48.000Z
; --------------------------------------------------------------------------- ; Copyright (c) 1998-2007, Brian Gladman, Worcester, UK. All rights reserved. ; ; LICENSE TERMS ; ; The free distribution and use of this software is allowed (with or without ; changes) provided that: ; ; 1. source code distributions include the above copyright notice, this ; list of conditions and the following disclaimer; ; ; 2. binary distributions include the above copyright notice, this list ; of conditions and the following disclaimer in their documentation; ; ; 3. the name of the copyright holder is not used to endorse products ; built using this software without specific written permission. ; ; DISCLAIMER ; ; This software is provided 'as is' with no explicit or implied warranties ; in respect of its properties, including, but not limited to, correctness ; and/or fitness for purpose. ; --------------------------------------------------------------------------- ; Issue 20/12/2007 ; ; This code requires either ASM_X86_V2 or ASM_X86_V2C to be set in aesopt.h ; and the same define to be set here as well. If AES_V2C is set this file ; requires the C files aeskey.c and aestab.c for support. ; An AES implementation for x86 processors using the YASM (or NASM) assembler. ; This is a full assembler implementation covering encryption, decryption and ; key scheduling. It uses 2k bytes of tables but its encryption and decryption ; performance is very close to that obtained using large tables. Key schedule ; expansion is slower for both encryption and decryption but this is likely to ; be offset by the much smaller load that this version places on the processor ; cache. I acknowledge the contribution made by Daniel Bernstein to aspects of ; the design of the AES round function used here. ; ; This code provides the standard AES block size (128 bits, 16 bytes) and the ; three standard AES key sizes (128, 192 and 256 bits). It has the same call ; interface as my C implementation. The ebx, esi, edi and ebp registers are ; preserved across calls but eax, ecx and edx and the artihmetic status flags ; are not. Although this is a full assembler implementation, it can be used ; in conjunction with my C code which provides faster key scheduling using ; large tables. In this case aeskey.c should be compiled with ASM_X86_V2C ; defined. It is also important that the defines below match those used in the ; C code. This code uses the VC++ register saving conentions; if it is used ; with another compiler, conventions for using and saving registers may need ; to be checked (and calling conventions). The YASM command line for the VC++ ; custom build step is: ; ; yasm -Xvc -f win32 -D <Z> -o "$(TargetDir)\$(InputName).obj" "$(InputPath)" ; ; For the cryptlib build this is (pcg): ; ; yasm -Xvc -f win32 -D ASM_X86_V2C -o aescrypt2.obj aes_x86_v2.asm ; ; where <Z> is ASM_X86_V2 or ASM_X86_V2C. The calling intefaces are: ; ; AES_RETURN aes_encrypt(const unsigned char in_blk[], ; unsigned char out_blk[], const aes_encrypt_ctx cx[1]); ; ; AES_RETURN aes_decrypt(const unsigned char in_blk[], ; unsigned char out_blk[], const aes_decrypt_ctx cx[1]); ; ; AES_RETURN aes_encrypt_key<NNN>(const unsigned char key[], ; const aes_encrypt_ctx cx[1]); ; ; AES_RETURN aes_decrypt_key<NNN>(const unsigned char key[], ; const aes_decrypt_ctx cx[1]); ; ; AES_RETURN aes_encrypt_key(const unsigned char key[], ; unsigned int len, const aes_decrypt_ctx cx[1]); ; ; AES_RETURN aes_decrypt_key(const unsigned char key[], ; unsigned int len, const aes_decrypt_ctx cx[1]); ; ; where <NNN> is 128, 102 or 256. In the last two calls the length can be in ; either bits or bytes. ; The DLL interface must use the _stdcall convention in which the number ; of bytes of parameter space is added after an @ to the sutine's name. ; We must also remove our parameters from the stack before return (see ; the do_exit macro). Define DLL_EXPORT for the Dynamic Link Library version. ; ; Adapted for TrueCrypt: ; - All tables generated at run-time ; - Adapted for 16-bit environment ; CPU 386 USE16 SEGMENT _TEXT PUBLIC CLASS=CODE USE16 SEGMENT _DATA PUBLIC CLASS=DATA USE16 GROUP DGROUP _TEXT _DATA extern _aes_dec_tab ; Aestab.c extern _aes_enc_tab ; %define DLL_EXPORT ; The size of the code can be reduced by using functions for the encryption ; and decryption rounds in place of macro expansion %define REDUCE_CODE_SIZE ; Comment in/out the following lines to obtain the desired subroutines. These ; selections MUST match those in the C header file aes.h ; %define AES_128 ; define if AES with 128 bit keys is needed ; %define AES_192 ; define if AES with 192 bit keys is needed %define AES_256 ; define if AES with 256 bit keys is needed ; %define AES_VAR ; define if a variable key size is needed %define ENCRYPTION ; define if encryption is needed %define DECRYPTION ; define if decryption is needed ; %define AES_REV_DKS ; define if key decryption schedule is reversed %ifndef ASM_X86_V2C %define ENCRYPTION_KEY_SCHEDULE ; define if encryption key expansion is needed %define DECRYPTION_KEY_SCHEDULE ; define if decryption key expansion is needed %endif ; The encryption key schedule has the following in memory layout where N is the ; number of rounds (10, 12 or 14): ; ; lo: | input key (round 0) | ; each round is four 32-bit words ; | encryption round 1 | ; | encryption round 2 | ; .... ; | encryption round N-1 | ; hi: | encryption round N | ; ; The decryption key schedule is normally set up so that it has the same ; layout as above by actually reversing the order of the encryption key ; schedule in memory (this happens when AES_REV_DKS is set): ; ; lo: | decryption round 0 | = | encryption round N | ; | decryption round 1 | = INV_MIX_COL[ | encryption round N-1 | ] ; | decryption round 2 | = INV_MIX_COL[ | encryption round N-2 | ] ; .... .... ; | decryption round N-1 | = INV_MIX_COL[ | encryption round 1 | ] ; hi: | decryption round N | = | input key (round 0) | ; ; with rounds except the first and last modified using inv_mix_column() ; But if AES_REV_DKS is NOT set the order of keys is left as it is for ; encryption so that it has to be accessed in reverse when used for ; decryption (although the inverse mix column modifications are done) ; ; lo: | decryption round 0 | = | input key (round 0) | ; | decryption round 1 | = INV_MIX_COL[ | encryption round 1 | ] ; | decryption round 2 | = INV_MIX_COL[ | encryption round 2 | ] ; .... .... ; | decryption round N-1 | = INV_MIX_COL[ | encryption round N-1 | ] ; hi: | decryption round N | = | encryption round N | ; ; This layout is faster when the assembler key scheduling provided here ; is used. ; ; End of user defines %ifdef AES_VAR %ifndef AES_128 %define AES_128 %endif %ifndef AES_192 %define AES_192 %endif %ifndef AES_256 %define AES_256 %endif %endif %ifdef AES_VAR %define KS_LENGTH 60 %elifdef AES_256 %define KS_LENGTH 60 %elifdef AES_192 %define KS_LENGTH 52 %else %define KS_LENGTH 44 %endif ; These macros implement stack based local variables %macro save 2 mov [esp+4*%1],%2 %endmacro %macro restore 2 mov %1,[esp+4*%2] %endmacro %ifdef REDUCE_CODE_SIZE %macro mf_call 1 call %1 %endmacro %else %macro mf_call 1 %1 %endmacro %endif ; the DLL has to implement the _stdcall calling interface on return ; In this case we have to take our parameters (3 4-byte pointers) ; off the stack %define parms 12 %macro do_name 1-2 parms %ifndef DLL_EXPORT global %1 %1: %else global %1@%2 export %1@%2 %1@%2: %endif %endmacro %macro do_call 1-2 parms %ifndef DLL_EXPORT call %1 add esp,%2 %else call %1@%2 %endif %endmacro %macro do_exit 0-1 parms %ifdef DLL_EXPORT ret %1 %else ret %endif %endmacro ; finite field multiplies by {02}, {04} and {08} %define f2(x) ((x<<1)^(((x>>7)&1)*0x11b)) %define f4(x) ((x<<2)^(((x>>6)&1)*0x11b)^(((x>>6)&2)*0x11b)) %define f8(x) ((x<<3)^(((x>>5)&1)*0x11b)^(((x>>5)&2)*0x11b)^(((x>>5)&4)*0x11b)) ; finite field multiplies required in table generation %define f3(x) (f2(x) ^ x) %define f9(x) (f8(x) ^ x) %define fb(x) (f8(x) ^ f2(x) ^ x) %define fd(x) (f8(x) ^ f4(x) ^ x) %define fe(x) (f8(x) ^ f4(x) ^ f2(x)) %define etab_0(x) [_aes_enc_tab+4+8*x] %define etab_1(x) [_aes_enc_tab+3+8*x] %define etab_2(x) [_aes_enc_tab+2+8*x] %define etab_3(x) [_aes_enc_tab+1+8*x] %define etab_b(x) byte [_aes_enc_tab+1+8*x] ; used with movzx for 0x000000xx %define etab_w(x) word [_aes_enc_tab+8*x] ; used with movzx for 0x0000xx00 %define btab_0(x) [_aes_enc_tab+6+8*x] %define btab_1(x) [_aes_enc_tab+5+8*x] %define btab_2(x) [_aes_enc_tab+4+8*x] %define btab_3(x) [_aes_enc_tab+3+8*x] ; ROUND FUNCTION. Build column[2] on ESI and column[3] on EDI that have the ; round keys pre-loaded. Build column[0] in EBP and column[1] in EBX. ; ; Input: ; ; EAX column[0] ; EBX column[1] ; ECX column[2] ; EDX column[3] ; ESI column key[round][2] ; EDI column key[round][3] ; EBP scratch ; ; Output: ; ; EBP column[0] unkeyed ; EBX column[1] unkeyed ; ESI column[2] keyed ; EDI column[3] keyed ; EAX scratch ; ECX scratch ; EDX scratch %macro rnd_fun 2 rol ebx,16 %1 esi, cl, 0, ebp %1 esi, dh, 1, ebp %1 esi, bh, 3, ebp %1 edi, dl, 0, ebp %1 edi, ah, 1, ebp %1 edi, bl, 2, ebp %2 ebp, al, 0, ebp shr ebx,16 and eax,0xffff0000 or eax,ebx shr edx,16 %1 ebp, ah, 1, ebx %1 ebp, dh, 3, ebx %2 ebx, dl, 2, ebx %1 ebx, ch, 1, edx %1 ebx, al, 0, edx shr eax,16 shr ecx,16 %1 ebp, cl, 2, edx %1 edi, ch, 3, edx %1 esi, al, 2, edx %1 ebx, ah, 3, edx %endmacro ; Basic MOV and XOR Operations for normal rounds %macro nr_xor 4 movzx %4,%2 xor %1,etab_%3(%4) %endmacro %macro nr_mov 4 movzx %4,%2 mov %1,etab_%3(%4) %endmacro ; Basic MOV and XOR Operations for last round %if 1 %macro lr_xor 4 movzx %4,%2 movzx %4,etab_b(%4) %if %3 != 0 shl %4,8*%3 %endif xor %1,%4 %endmacro %macro lr_mov 4 movzx %4,%2 movzx %1,etab_b(%4) %if %3 != 0 shl %1,8*%3 %endif %endmacro %else ; less effective but worth leaving as an option %macro lr_xor 4 movzx %4,%2 mov %4,btab_%3(%4) and %4,0x000000ff << 8 * %3 xor %1,%4 %endmacro %macro lr_mov 4 movzx %4,%2 mov %1,btab_%3(%4) and %1,0x000000ff << 8 * %3 %endmacro %endif ; Apply S-Box to the 4 bytes in a 32-bit word and rotate byte positions %ifdef REDUCE_CODE_SIZE l3s_col: movzx ecx,al ; in eax movzx ecx, etab_b(ecx) ; out eax xor edx,ecx ; scratch ecx,edx movzx ecx,ah movzx ecx, etab_b(ecx) shl ecx,8 xor edx,ecx shr eax,16 movzx ecx,al movzx ecx, etab_b(ecx) shl ecx,16 xor edx,ecx movzx ecx,ah movzx ecx, etab_b(ecx) shl ecx,24 xor edx,ecx mov eax,edx ret %else %macro l3s_col 0 movzx ecx,al ; in eax movzx ecx, etab_b(ecx) ; out eax xor edx,ecx ; scratch ecx,edx movzx ecx,ah movzx ecx, etab_b(ecx) shl ecx,8 xor edx,ecx shr eax,16 movzx ecx,al movzx ecx, etab_b(ecx) shl ecx,16 xor edx,ecx movzx ecx,ah movzx ecx, etab_b(ecx) shl ecx,24 xor edx,ecx mov eax,edx %endmacro %endif ; offsets to parameters in_blk equ 2 ; input byte array address parameter out_blk equ 4 ; output byte array address parameter ctx equ 6 ; AES context structure stk_spc equ 20 ; stack space %ifdef ENCRYPTION ; %define ENCRYPTION_TABLE %ifdef REDUCE_CODE_SIZE enc_round: sub sp, 2 add ebp,16 save 1,ebp mov esi,[ebp+8] mov edi,[ebp+12] rnd_fun nr_xor, nr_mov mov eax,ebp mov ecx,esi mov edx,edi restore ebp,1 xor eax,[ebp] xor ebx,[ebp+4] add sp, 2 ret %else %macro enc_round 0 add ebp,16 save 0,ebp mov esi,[ebp+8] mov edi,[ebp+12] rnd_fun nr_xor, nr_mov mov eax,ebp mov ecx,esi mov edx,edi restore ebp,0 xor eax,[ebp] xor ebx,[ebp+4] %endmacro %endif %macro enc_last_round 0 add ebp,16 save 0,ebp mov esi,[ebp+8] mov edi,[ebp+12] rnd_fun lr_xor, lr_mov mov eax,ebp restore ebp,0 xor eax,[ebp] xor ebx,[ebp+4] %endmacro section _TEXT ; AES Encryption Subroutine do_name _aes_encrypt,12 mov ax, sp movzx esp, ax sub esp,stk_spc mov [esp+16],ebp mov [esp+12],ebx mov [esp+ 8],esi mov [esp+ 4],edi movzx esi,word [esp+in_blk+stk_spc] ; input pointer mov eax,[esi ] mov ebx,[esi+ 4] mov ecx,[esi+ 8] mov edx,[esi+12] movzx ebp,word [esp+ctx+stk_spc] ; key pointer movzx edi,byte [ebp+4*KS_LENGTH] xor eax,[ebp ] xor ebx,[ebp+ 4] xor ecx,[ebp+ 8] xor edx,[ebp+12] ; determine the number of rounds %ifndef AES_256 cmp edi,10*16 je .3 cmp edi,12*16 je .2 cmp edi,14*16 je .1 mov eax,-1 jmp .5 %endif .1: mf_call enc_round mf_call enc_round .2: mf_call enc_round mf_call enc_round .3: mf_call enc_round mf_call enc_round mf_call enc_round mf_call enc_round mf_call enc_round mf_call enc_round mf_call enc_round mf_call enc_round mf_call enc_round enc_last_round movzx edx,word [esp+out_blk+stk_spc] mov [edx],eax mov [edx+4],ebx mov [edx+8],esi mov [edx+12],edi xor eax,eax .5: mov ebp,[esp+16] mov ebx,[esp+12] mov esi,[esp+ 8] mov edi,[esp+ 4] add esp,stk_spc do_exit 12 %endif %macro f_key 2 push ecx push edx mov edx,esi ror eax,8 mf_call l3s_col mov esi,eax pop edx pop ecx xor esi,rc_val mov [ebp+%1*%2],esi xor edi,esi mov [ebp+%1*%2+4],edi xor ecx,edi mov [ebp+%1*%2+8],ecx xor edx,ecx mov [ebp+%1*%2+12],edx mov eax,edx %if %2 == 24 %if %1 < 7 xor eax,[ebp+%1*%2+16-%2] mov [ebp+%1*%2+16],eax xor eax,[ebp+%1*%2+20-%2] mov [ebp+%1*%2+20],eax %endif %elif %2 == 32 %if %1 < 6 push ecx push edx mov edx,[ebp+%1*%2+16-%2] mf_call l3s_col pop edx pop ecx mov [ebp+%1*%2+16],eax xor eax,[ebp+%1*%2+20-%2] mov [ebp+%1*%2+20],eax xor eax,[ebp+%1*%2+24-%2] mov [ebp+%1*%2+24],eax xor eax,[ebp+%1*%2+28-%2] mov [ebp+%1*%2+28],eax %endif %endif %assign rc_val f2(rc_val) %endmacro %ifdef ENCRYPTION_KEY_SCHEDULE %ifdef AES_128 %ifndef ENCRYPTION_TABLE ; %define ENCRYPTION_TABLE %endif %assign rc_val 1 do_name _aes_encrypt_key128,8 push ebp push ebx push esi push edi mov ebp,[esp+24] mov [ebp+4*KS_LENGTH],dword 10*16 mov ebx,[esp+20] mov esi,[ebx] mov [ebp],esi mov edi,[ebx+4] mov [ebp+4],edi mov ecx,[ebx+8] mov [ebp+8],ecx mov edx,[ebx+12] mov [ebp+12],edx add ebp,16 mov eax,edx f_key 0,16 ; 11 * 4 = 44 unsigned longs f_key 1,16 ; 4 + 4 * 10 generated = 44 f_key 2,16 f_key 3,16 f_key 4,16 f_key 5,16 f_key 6,16 f_key 7,16 f_key 8,16 f_key 9,16 pop edi pop esi pop ebx pop ebp xor eax,eax do_exit 8 %endif %ifdef AES_192 %ifndef ENCRYPTION_TABLE ; %define ENCRYPTION_TABLE %endif %assign rc_val 1 do_name _aes_encrypt_key192,8 push ebp push ebx push esi push edi mov ebp,[esp+24] mov [ebp+4*KS_LENGTH],dword 12 * 16 mov ebx,[esp+20] mov esi,[ebx] mov [ebp],esi mov edi,[ebx+4] mov [ebp+4],edi mov ecx,[ebx+8] mov [ebp+8],ecx mov edx,[ebx+12] mov [ebp+12],edx mov eax,[ebx+16] mov [ebp+16],eax mov eax,[ebx+20] mov [ebp+20],eax add ebp,24 f_key 0,24 ; 13 * 4 = 52 unsigned longs f_key 1,24 ; 6 + 6 * 8 generated = 54 f_key 2,24 f_key 3,24 f_key 4,24 f_key 5,24 f_key 6,24 f_key 7,24 pop edi pop esi pop ebx pop ebp xor eax,eax do_exit 8 %endif %ifdef AES_256 %ifndef ENCRYPTION_TABLE ; %define ENCRYPTION_TABLE %endif %assign rc_val 1 do_name _aes_encrypt_key256,8 mov ax, sp movzx esp, ax push ebp push ebx push esi push edi movzx ebp, word [esp+20] ; ks mov [ebp+4*KS_LENGTH],dword 14 * 16 movzx ebx, word [esp+18] ; key mov esi,[ebx] mov [ebp],esi mov edi,[ebx+4] mov [ebp+4],edi mov ecx,[ebx+8] mov [ebp+8],ecx mov edx,[ebx+12] mov [ebp+12],edx mov eax,[ebx+16] mov [ebp+16],eax mov eax,[ebx+20] mov [ebp+20],eax mov eax,[ebx+24] mov [ebp+24],eax mov eax,[ebx+28] mov [ebp+28],eax add ebp,32 f_key 0,32 ; 15 * 4 = 60 unsigned longs f_key 1,32 ; 8 + 8 * 7 generated = 64 f_key 2,32 f_key 3,32 f_key 4,32 f_key 5,32 f_key 6,32 pop edi pop esi pop ebx pop ebp xor eax,eax do_exit 8 %endif %ifdef AES_VAR %ifndef ENCRYPTION_TABLE ; %define ENCRYPTION_TABLE %endif do_name _aes_encrypt_key,12 mov ecx,[esp+4] mov eax,[esp+8] mov edx,[esp+12] push edx push ecx cmp eax,16 je .1 cmp eax,128 je .1 cmp eax,24 je .2 cmp eax,192 je .2 cmp eax,32 je .3 cmp eax,256 je .3 mov eax,-1 add esp,8 do_exit 12 .1: do_call _aes_encrypt_key128,8 do_exit 12 .2: do_call _aes_encrypt_key192,8 do_exit 12 .3: do_call _aes_encrypt_key256,8 do_exit 12 %endif %endif %ifdef ENCRYPTION_TABLE ; S-box data - 256 entries section _DATA %define u8(x) 0, x, x, f3(x), f2(x), x, x, f3(x) _aes_enc_tab: db u8(0x63),u8(0x7c),u8(0x77),u8(0x7b),u8(0xf2),u8(0x6b),u8(0x6f),u8(0xc5) db u8(0x30),u8(0x01),u8(0x67),u8(0x2b),u8(0xfe),u8(0xd7),u8(0xab),u8(0x76) db u8(0xca),u8(0x82),u8(0xc9),u8(0x7d),u8(0xfa),u8(0x59),u8(0x47),u8(0xf0) db u8(0xad),u8(0xd4),u8(0xa2),u8(0xaf),u8(0x9c),u8(0xa4),u8(0x72),u8(0xc0) db u8(0xb7),u8(0xfd),u8(0x93),u8(0x26),u8(0x36),u8(0x3f),u8(0xf7),u8(0xcc) db u8(0x34),u8(0xa5),u8(0xe5),u8(0xf1),u8(0x71),u8(0xd8),u8(0x31),u8(0x15) db u8(0x04),u8(0xc7),u8(0x23),u8(0xc3),u8(0x18),u8(0x96),u8(0x05),u8(0x9a) db u8(0x07),u8(0x12),u8(0x80),u8(0xe2),u8(0xeb),u8(0x27),u8(0xb2),u8(0x75) db u8(0x09),u8(0x83),u8(0x2c),u8(0x1a),u8(0x1b),u8(0x6e),u8(0x5a),u8(0xa0) db u8(0x52),u8(0x3b),u8(0xd6),u8(0xb3),u8(0x29),u8(0xe3),u8(0x2f),u8(0x84) db u8(0x53),u8(0xd1),u8(0x00),u8(0xed),u8(0x20),u8(0xfc),u8(0xb1),u8(0x5b) db u8(0x6a),u8(0xcb),u8(0xbe),u8(0x39),u8(0x4a),u8(0x4c),u8(0x58),u8(0xcf) db u8(0xd0),u8(0xef),u8(0xaa),u8(0xfb),u8(0x43),u8(0x4d),u8(0x33),u8(0x85) db u8(0x45),u8(0xf9),u8(0x02),u8(0x7f),u8(0x50),u8(0x3c),u8(0x9f),u8(0xa8) db u8(0x51),u8(0xa3),u8(0x40),u8(0x8f),u8(0x92),u8(0x9d),u8(0x38),u8(0xf5) db u8(0xbc),u8(0xb6),u8(0xda),u8(0x21),u8(0x10),u8(0xff),u8(0xf3),u8(0xd2) db u8(0xcd),u8(0x0c),u8(0x13),u8(0xec),u8(0x5f),u8(0x97),u8(0x44),u8(0x17) db u8(0xc4),u8(0xa7),u8(0x7e),u8(0x3d),u8(0x64),u8(0x5d),u8(0x19),u8(0x73) db u8(0x60),u8(0x81),u8(0x4f),u8(0xdc),u8(0x22),u8(0x2a),u8(0x90),u8(0x88) db u8(0x46),u8(0xee),u8(0xb8),u8(0x14),u8(0xde),u8(0x5e),u8(0x0b),u8(0xdb) db u8(0xe0),u8(0x32),u8(0x3a),u8(0x0a),u8(0x49),u8(0x06),u8(0x24),u8(0x5c) db u8(0xc2),u8(0xd3),u8(0xac),u8(0x62),u8(0x91),u8(0x95),u8(0xe4),u8(0x79) db u8(0xe7),u8(0xc8),u8(0x37),u8(0x6d),u8(0x8d),u8(0xd5),u8(0x4e),u8(0xa9) db u8(0x6c),u8(0x56),u8(0xf4),u8(0xea),u8(0x65),u8(0x7a),u8(0xae),u8(0x08) db u8(0xba),u8(0x78),u8(0x25),u8(0x2e),u8(0x1c),u8(0xa6),u8(0xb4),u8(0xc6) db u8(0xe8),u8(0xdd),u8(0x74),u8(0x1f),u8(0x4b),u8(0xbd),u8(0x8b),u8(0x8a) db u8(0x70),u8(0x3e),u8(0xb5),u8(0x66),u8(0x48),u8(0x03),u8(0xf6),u8(0x0e) db u8(0x61),u8(0x35),u8(0x57),u8(0xb9),u8(0x86),u8(0xc1),u8(0x1d),u8(0x9e) db u8(0xe1),u8(0xf8),u8(0x98),u8(0x11),u8(0x69),u8(0xd9),u8(0x8e),u8(0x94) db u8(0x9b),u8(0x1e),u8(0x87),u8(0xe9),u8(0xce),u8(0x55),u8(0x28),u8(0xdf) db u8(0x8c),u8(0xa1),u8(0x89),u8(0x0d),u8(0xbf),u8(0xe6),u8(0x42),u8(0x68) db u8(0x41),u8(0x99),u8(0x2d),u8(0x0f),u8(0xb0),u8(0x54),u8(0xbb),u8(0x16) %endif %ifdef DECRYPTION ; %define DECRYPTION_TABLE %define dtab_0(x) [_aes_dec_tab+ 8*x] %define dtab_1(x) [_aes_dec_tab+3+8*x] %define dtab_2(x) [_aes_dec_tab+2+8*x] %define dtab_3(x) [_aes_dec_tab+1+8*x] %define dtab_x(x) byte [_aes_dec_tab+7+8*x] %macro irn_fun 2 rol eax,16 %1 esi, cl, 0, ebp %1 esi, bh, 1, ebp %1 esi, al, 2, ebp %1 edi, dl, 0, ebp %1 edi, ch, 1, ebp %1 edi, ah, 3, ebp %2 ebp, bl, 0, ebp shr eax,16 and ebx,0xffff0000 or ebx,eax shr ecx,16 %1 ebp, bh, 1, eax %1 ebp, ch, 3, eax %2 eax, cl, 2, ecx %1 eax, bl, 0, ecx %1 eax, dh, 1, ecx shr ebx,16 shr edx,16 %1 esi, dh, 3, ecx %1 ebp, dl, 2, ecx %1 eax, bh, 3, ecx %1 edi, bl, 2, ecx %endmacro ; Basic MOV and XOR Operations for normal rounds %macro ni_xor 4 movzx %4,%2 xor %1,dtab_%3(%4) %endmacro %macro ni_mov 4 movzx %4,%2 mov %1,dtab_%3(%4) %endmacro ; Basic MOV and XOR Operations for last round %macro li_xor 4 movzx %4,%2 movzx %4,dtab_x(%4) %if %3 != 0 shl %4,8*%3 %endif xor %1,%4 %endmacro %macro li_mov 4 movzx %4,%2 movzx %1,dtab_x(%4) %if %3 != 0 shl %1,8*%3 %endif %endmacro %ifdef REDUCE_CODE_SIZE dec_round: sub sp, 2 %ifdef AES_REV_DKS add ebp,16 %else sub ebp,16 %endif save 1,ebp mov esi,[ebp+8] mov edi,[ebp+12] irn_fun ni_xor, ni_mov mov ebx,ebp mov ecx,esi mov edx,edi restore ebp,1 xor eax,[ebp] xor ebx,[ebp+4] add sp, 2 ret %else %macro dec_round 0 %ifdef AES_REV_DKS add ebp,16 %else sub ebp,16 %endif save 0,ebp mov esi,[ebp+8] mov edi,[ebp+12] irn_fun ni_xor, ni_mov mov ebx,ebp mov ecx,esi mov edx,edi restore ebp,0 xor eax,[ebp] xor ebx,[ebp+4] %endmacro %endif %macro dec_last_round 0 %ifdef AES_REV_DKS add ebp,16 %else sub ebp,16 %endif save 0,ebp mov esi,[ebp+8] mov edi,[ebp+12] irn_fun li_xor, li_mov mov ebx,ebp restore ebp,0 xor eax,[ebp] xor ebx,[ebp+4] %endmacro section _TEXT ; AES Decryption Subroutine do_name _aes_decrypt,12 mov ax, sp movzx esp, ax sub esp,stk_spc mov [esp+16],ebp mov [esp+12],ebx mov [esp+ 8],esi mov [esp+ 4],edi ; input four columns and xor in first round key movzx esi,word [esp+in_blk+stk_spc] ; input pointer mov eax,[esi ] mov ebx,[esi+ 4] mov ecx,[esi+ 8] mov edx,[esi+12] lea esi,[esi+16] movzx ebp, word [esp+ctx+stk_spc] ; key pointer movzx edi,byte[ebp+4*KS_LENGTH] %ifndef AES_REV_DKS ; if decryption key schedule is not reversed lea ebp,[ebp+edi] ; we have to access it from the top down %endif xor eax,[ebp ] ; key schedule xor ebx,[ebp+ 4] xor ecx,[ebp+ 8] xor edx,[ebp+12] ; determine the number of rounds %ifndef AES_256 cmp edi,10*16 je .3 cmp edi,12*16 je .2 cmp edi,14*16 je .1 mov eax,-1 jmp .5 %endif .1: mf_call dec_round mf_call dec_round .2: mf_call dec_round mf_call dec_round .3: mf_call dec_round mf_call dec_round mf_call dec_round mf_call dec_round mf_call dec_round mf_call dec_round mf_call dec_round mf_call dec_round mf_call dec_round dec_last_round ; move final values to the output array. movzx ebp,word [esp+out_blk+stk_spc] mov [ebp],eax mov [ebp+4],ebx mov [ebp+8],esi mov [ebp+12],edi xor eax,eax .5: mov ebp,[esp+16] mov ebx,[esp+12] mov esi,[esp+ 8] mov edi,[esp+ 4] add esp,stk_spc do_exit 12 %endif %ifdef REDUCE_CODE_SIZE inv_mix_col: movzx ecx,dl ; input eax, edx movzx ecx,etab_b(ecx) ; output eax mov eax,dtab_0(ecx) ; used ecx movzx ecx,dh shr edx,16 movzx ecx,etab_b(ecx) xor eax,dtab_1(ecx) movzx ecx,dl movzx ecx,etab_b(ecx) xor eax,dtab_2(ecx) movzx ecx,dh movzx ecx,etab_b(ecx) xor eax,dtab_3(ecx) ret %else %macro inv_mix_col 0 movzx ecx,dl ; input eax, edx movzx ecx,etab_b(ecx) ; output eax mov eax,dtab_0(ecx) ; used ecx movzx ecx,dh shr edx,16 movzx ecx,etab_b(ecx) xor eax,dtab_1(ecx) movzx ecx,dl movzx ecx,etab_b(ecx) xor eax,dtab_2(ecx) movzx ecx,dh movzx ecx,etab_b(ecx) xor eax,dtab_3(ecx) %endmacro %endif %ifdef DECRYPTION_KEY_SCHEDULE %ifdef AES_128 %ifndef DECRYPTION_TABLE ; %define DECRYPTION_TABLE %endif do_name _aes_decrypt_key128,8 push ebp push ebx push esi push edi mov eax,[esp+24] ; context mov edx,[esp+20] ; key push eax push edx do_call _aes_encrypt_key128,8 ; generate expanded encryption key mov eax,10*16 mov esi,[esp+24] ; pointer to first round key lea edi,[esi+eax] ; pointer to last round key add esi,32 ; the inverse mix column transformation mov edx,[esi-16] ; needs to be applied to all round keys mf_call inv_mix_col ; except first and last. Hence start by mov [esi-16],eax ; transforming the four sub-keys in the mov edx,[esi-12] ; second round key mf_call inv_mix_col mov [esi-12],eax ; transformations for subsequent rounds mov edx,[esi-8] ; can then be made more efficient by mf_call inv_mix_col ; noting that for three of the four sub-keys mov [esi-8],eax ; in the encryption round key ek[r]: mov edx,[esi-4] ; mf_call inv_mix_col ; ek[r][n] = ek[r][n-1] ^ ek[r-1][n] mov [esi-4],eax ; ; where n is 1..3. Hence the corresponding .0: mov edx,[esi] ; subkeys in the decryption round key dk[r] mf_call inv_mix_col ; also obey since inv_mix_col is linear in mov [esi],eax ; GF(256): xor eax,[esi-12] ; mov [esi+4],eax ; dk[r][n] = dk[r][n-1] ^ dk[r-1][n] xor eax,[esi-8] ; mov [esi+8],eax ; So we only need one inverse mix column xor eax,[esi-4] ; operation (n = 0) for each four word cycle mov [esi+12],eax ; in the expanded key. add esi,16 cmp edi,esi jg .0 jmp dec_end %endif %ifdef AES_192 %ifndef DECRYPTION_TABLE ; %define DECRYPTION_TABLE %endif do_name _aes_decrypt_key192,8 push ebp push ebx push esi push edi mov eax,[esp+24] ; context mov edx,[esp+20] ; key push eax push edx do_call _aes_encrypt_key192,8 ; generate expanded encryption key mov eax,12*16 mov esi,[esp+24] ; first round key lea edi,[esi+eax] ; last round key add esi,48 ; the first 6 words are the key, of ; which the top 2 words are part of mov edx,[esi-32] ; the second round key and hence mf_call inv_mix_col ; need to be modified. After this we mov [esi-32],eax ; need to do a further six values prior mov edx,[esi-28] ; to using a more efficient technique mf_call inv_mix_col ; based on: mov [esi-28],eax ; ; dk[r][n] = dk[r][n-1] ^ dk[r-1][n] mov edx,[esi-24] ; mf_call inv_mix_col ; for n = 1 .. 5 where the key expansion mov [esi-24],eax ; cycle is now 6 words long mov edx,[esi-20] mf_call inv_mix_col mov [esi-20],eax mov edx,[esi-16] mf_call inv_mix_col mov [esi-16],eax mov edx,[esi-12] mf_call inv_mix_col mov [esi-12],eax mov edx,[esi-8] mf_call inv_mix_col mov [esi-8],eax mov edx,[esi-4] mf_call inv_mix_col mov [esi-4],eax .0: mov edx,[esi] ; the expanded key is 13 * 4 = 44 32-bit words mf_call inv_mix_col ; of which 11 * 4 = 44 have to be modified mov [esi],eax ; using inv_mix_col. We have already done 8 xor eax,[esi-20] ; of these so 36 are left - hence we need mov [esi+4],eax ; exactly 6 loops of six here xor eax,[esi-16] mov [esi+8],eax xor eax,[esi-12] mov [esi+12],eax xor eax,[esi-8] mov [esi+16],eax xor eax,[esi-4] mov [esi+20],eax add esi,24 cmp edi,esi jg .0 jmp dec_end %endif %ifdef AES_256 %ifndef DECRYPTION_TABLE ; %define DECRYPTION_TABLE %endif do_name _aes_decrypt_key256,8 mov ax, sp movzx esp, ax push ebp push ebx push esi push edi movzx eax, word [esp+20] ; ks movzx edx, word [esp+18] ; key push ax push dx do_call _aes_encrypt_key256,4 ; generate expanded encryption key mov eax,14*16 movzx esi, word [esp+20] ; ks lea edi,[esi+eax] add esi,64 mov edx,[esi-48] ; the primary key is 8 words, of which mf_call inv_mix_col ; the top four require modification mov [esi-48],eax mov edx,[esi-44] mf_call inv_mix_col mov [esi-44],eax mov edx,[esi-40] mf_call inv_mix_col mov [esi-40],eax mov edx,[esi-36] mf_call inv_mix_col mov [esi-36],eax mov edx,[esi-32] ; the encryption key expansion cycle is mf_call inv_mix_col ; now eight words long so we need to mov [esi-32],eax ; start by doing one complete block mov edx,[esi-28] mf_call inv_mix_col mov [esi-28],eax mov edx,[esi-24] mf_call inv_mix_col mov [esi-24],eax mov edx,[esi-20] mf_call inv_mix_col mov [esi-20],eax mov edx,[esi-16] mf_call inv_mix_col mov [esi-16],eax mov edx,[esi-12] mf_call inv_mix_col mov [esi-12],eax mov edx,[esi-8] mf_call inv_mix_col mov [esi-8],eax mov edx,[esi-4] mf_call inv_mix_col mov [esi-4],eax .0: mov edx,[esi] ; we can now speed up the remaining mf_call inv_mix_col ; rounds by using the technique mov [esi],eax ; outlined earlier. But note that xor eax,[esi-28] ; there is one extra inverse mix mov [esi+4],eax ; column operation as the 256 bit xor eax,[esi-24] ; key has an extra non-linear step mov [esi+8],eax ; for the midway element. xor eax,[esi-20] mov [esi+12],eax ; the expanded key is 15 * 4 = 60 mov edx,[esi+16] ; 32-bit words of which 52 need to mf_call inv_mix_col ; be modified. We have already done mov [esi+16],eax ; 12 so 40 are left - which means xor eax,[esi-12] ; that we need exactly 5 loops of 8 mov [esi+20],eax xor eax,[esi-8] mov [esi+24],eax xor eax,[esi-4] mov [esi+28],eax add esi,32 cmp edi,esi jg .0 %endif dec_end: %ifdef AES_REV_DKS movzx esi,word [esp+20] ; this reverses the order of the .1: mov eax,[esi] ; round keys if required mov ebx,[esi+4] mov ebp,[edi] mov edx,[edi+4] mov [esi],ebp mov [esi+4],edx mov [edi],eax mov [edi+4],ebx mov eax,[esi+8] mov ebx,[esi+12] mov ebp,[edi+8] mov edx,[edi+12] mov [esi+8],ebp mov [esi+12],edx mov [edi+8],eax mov [edi+12],ebx add esi,16 sub edi,16 cmp edi,esi jg .1 %endif pop edi pop esi pop ebx pop ebp xor eax,eax do_exit 8 %ifdef AES_VAR do_name _aes_decrypt_key,12 mov ecx,[esp+4] mov eax,[esp+8] mov edx,[esp+12] push edx push ecx cmp eax,16 je .1 cmp eax,128 je .1 cmp eax,24 je .2 cmp eax,192 je .2 cmp eax,32 je .3 cmp eax,256 je .3 mov eax,-1 add esp,8 do_exit 12 .1: do_call _aes_decrypt_key128,8 do_exit 12 .2: do_call _aes_decrypt_key192,8 do_exit 12 .3: do_call _aes_decrypt_key256,8 do_exit 12 %endif %endif %ifdef DECRYPTION_TABLE ; Inverse S-box data - 256 entries section _DATA %define v8(x) fe(x), f9(x), fd(x), fb(x), fe(x), f9(x), fd(x), x _aes_dec_tab: db v8(0x52),v8(0x09),v8(0x6a),v8(0xd5),v8(0x30),v8(0x36),v8(0xa5),v8(0x38) db v8(0xbf),v8(0x40),v8(0xa3),v8(0x9e),v8(0x81),v8(0xf3),v8(0xd7),v8(0xfb) db v8(0x7c),v8(0xe3),v8(0x39),v8(0x82),v8(0x9b),v8(0x2f),v8(0xff),v8(0x87) db v8(0x34),v8(0x8e),v8(0x43),v8(0x44),v8(0xc4),v8(0xde),v8(0xe9),v8(0xcb) db v8(0x54),v8(0x7b),v8(0x94),v8(0x32),v8(0xa6),v8(0xc2),v8(0x23),v8(0x3d) db v8(0xee),v8(0x4c),v8(0x95),v8(0x0b),v8(0x42),v8(0xfa),v8(0xc3),v8(0x4e) db v8(0x08),v8(0x2e),v8(0xa1),v8(0x66),v8(0x28),v8(0xd9),v8(0x24),v8(0xb2) db v8(0x76),v8(0x5b),v8(0xa2),v8(0x49),v8(0x6d),v8(0x8b),v8(0xd1),v8(0x25) db v8(0x72),v8(0xf8),v8(0xf6),v8(0x64),v8(0x86),v8(0x68),v8(0x98),v8(0x16) db v8(0xd4),v8(0xa4),v8(0x5c),v8(0xcc),v8(0x5d),v8(0x65),v8(0xb6),v8(0x92) db v8(0x6c),v8(0x70),v8(0x48),v8(0x50),v8(0xfd),v8(0xed),v8(0xb9),v8(0xda) db v8(0x5e),v8(0x15),v8(0x46),v8(0x57),v8(0xa7),v8(0x8d),v8(0x9d),v8(0x84) db v8(0x90),v8(0xd8),v8(0xab),v8(0x00),v8(0x8c),v8(0xbc),v8(0xd3),v8(0x0a) db v8(0xf7),v8(0xe4),v8(0x58),v8(0x05),v8(0xb8),v8(0xb3),v8(0x45),v8(0x06) db v8(0xd0),v8(0x2c),v8(0x1e),v8(0x8f),v8(0xca),v8(0x3f),v8(0x0f),v8(0x02) db v8(0xc1),v8(0xaf),v8(0xbd),v8(0x03),v8(0x01),v8(0x13),v8(0x8a),v8(0x6b) db v8(0x3a),v8(0x91),v8(0x11),v8(0x41),v8(0x4f),v8(0x67),v8(0xdc),v8(0xea) db v8(0x97),v8(0xf2),v8(0xcf),v8(0xce),v8(0xf0),v8(0xb4),v8(0xe6),v8(0x73) db v8(0x96),v8(0xac),v8(0x74),v8(0x22),v8(0xe7),v8(0xad),v8(0x35),v8(0x85) db v8(0xe2),v8(0xf9),v8(0x37),v8(0xe8),v8(0x1c),v8(0x75),v8(0xdf),v8(0x6e) db v8(0x47),v8(0xf1),v8(0x1a),v8(0x71),v8(0x1d),v8(0x29),v8(0xc5),v8(0x89) db v8(0x6f),v8(0xb7),v8(0x62),v8(0x0e),v8(0xaa),v8(0x18),v8(0xbe),v8(0x1b) db v8(0xfc),v8(0x56),v8(0x3e),v8(0x4b),v8(0xc6),v8(0xd2),v8(0x79),v8(0x20) db v8(0x9a),v8(0xdb),v8(0xc0),v8(0xfe),v8(0x78),v8(0xcd),v8(0x5a),v8(0xf4) db v8(0x1f),v8(0xdd),v8(0xa8),v8(0x33),v8(0x88),v8(0x07),v8(0xc7),v8(0x31) db v8(0xb1),v8(0x12),v8(0x10),v8(0x59),v8(0x27),v8(0x80),v8(0xec),v8(0x5f) db v8(0x60),v8(0x51),v8(0x7f),v8(0xa9),v8(0x19),v8(0xb5),v8(0x4a),v8(0x0d) db v8(0x2d),v8(0xe5),v8(0x7a),v8(0x9f),v8(0x93),v8(0xc9),v8(0x9c),v8(0xef) db v8(0xa0),v8(0xe0),v8(0x3b),v8(0x4d),v8(0xae),v8(0x2a),v8(0xf5),v8(0xb0) db v8(0xc8),v8(0xeb),v8(0xbb),v8(0x3c),v8(0x83),v8(0x53),v8(0x99),v8(0x61) db v8(0x17),v8(0x2b),v8(0x04),v8(0x7e),v8(0xba),v8(0x77),v8(0xd6),v8(0x26) db v8(0xe1),v8(0x69),v8(0x14),v8(0x63),v8(0x55),v8(0x21),v8(0x0c),v8(0x7d) %endif
25.984775
81
0.576622
67cace244082630f7bb04341ccafccd9484127df
266
asm
Assembly
programs/oeis/040/A040306.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/040/A040306.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/040/A040306.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A040306: Continued fraction for sqrt(325). ; 18,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36 pow $1,$0 gcd $1,2 mul $1,18
38
190
0.661654
a2574cdcbc04f9038824805797a9aa9418efe5cf
520
asm
Assembly
programs/oeis/151/A151790.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/151/A151790.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/151/A151790.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A151790: Partial sums of A151789. ; 1,6,11,31,36,56,76,156,161,181,201,281,301,381,461,781,786,806,826,906,926,1006,1086,1406,1426,1506,1586,1906,1986,2306,2626,3906,3911,3931,3951,4031,4051,4131,4211,4531,4551,4631,4711,5031,5111,5431,5751,7031,7051 mov $3,$0 mov $5,$0 lpb $5 mov $0,$3 sub $5,1 sub $0,$5 mov $4,$0 mov $6,1 mul $6,$0 lpb $2 lpb $4 div $6,2 sub $4,$6 lpe mov $0,$4 sub $2,1 lpe mov $2,4 mov $4,4 pow $4,$0 add $1,$4 lpe div $1,4 mul $1,5 add $1,1
17.931034
216
0.594231
3f9be392bfc09decdeab9b61c407c783c9947df6
5,391
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_1300.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_1300.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_1300.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %rbp push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x17d87, %rbx nop nop nop sub $9591, %rdx mov $0x6162636465666768, %r12 movq %r12, %xmm3 movups %xmm3, (%rbx) nop nop mfence lea addresses_UC_ht+0x10607, %rbp nop xor %r12, %r12 movw $0x6162, (%rbp) nop nop xor $63054, %r12 lea addresses_D_ht+0xff87, %rdi nop nop cmp $4765, %r12 movl $0x61626364, (%rdi) nop nop sub %r12, %r12 lea addresses_normal_ht+0xa323, %rsi lea addresses_D_ht+0x1b987, %rdi clflush (%rdi) nop nop nop nop nop xor $10712, %rbx mov $79, %rcx rep movsl cmp %rbx, %rbx lea addresses_UC_ht+0x3cf0, %rsi lea addresses_UC_ht+0x1afd7, %rdi nop xor %rdx, %rdx mov $25, %rcx rep movsw nop and %rbp, %rbp lea addresses_WC_ht+0x19507, %r12 sub $11299, %rbx movl $0x61626364, (%r12) nop nop xor %r12, %r12 pop %rsi pop %rdx pop %rdi pop %rcx pop %rbx pop %rbp pop %r12 pop %r10 ret .global s_faulty_load s_faulty_load: push %r11 push %r13 push %r8 push %r9 push %rax push %rcx // Faulty Load lea addresses_D+0x15587, %rax sub %r9, %r9 movups (%rax), %xmm5 vpextrq $1, %xmm5, %r13 lea oracles, %r11 and $0xff, %r13 shlq $12, %r13 mov (%r11,%r13,1), %r13 pop %rcx pop %rax pop %r9 pop %r8 pop %r13 pop %r11 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'size': 8, 'NT': False, 'type': 'addresses_D', 'same': False, 'AVXalign': False, 'congruent': 0}} [Faulty Load] {'OP': 'LOAD', 'src': {'size': 16, 'NT': False, 'type': 'addresses_D', 'same': True, 'AVXalign': False, 'congruent': 0}} <gen_prepare_buffer> {'OP': 'STOR', 'dst': {'size': 16, 'NT': False, 'type': 'addresses_A_ht', 'same': False, 'AVXalign': False, 'congruent': 9}} {'OP': 'STOR', 'dst': {'size': 2, 'NT': False, 'type': 'addresses_UC_ht', 'same': False, 'AVXalign': False, 'congruent': 7}} {'OP': 'STOR', 'dst': {'size': 4, 'NT': False, 'type': 'addresses_D_ht', 'same': False, 'AVXalign': False, 'congruent': 9}} {'OP': 'REPM', 'src': {'same': False, 'type': 'addresses_normal_ht', 'congruent': 0}, 'dst': {'same': False, 'type': 'addresses_D_ht', 'congruent': 9}} {'OP': 'REPM', 'src': {'same': True, 'type': 'addresses_UC_ht', 'congruent': 0}, 'dst': {'same': False, 'type': 'addresses_UC_ht', 'congruent': 4}} {'OP': 'STOR', 'dst': {'size': 4, 'NT': False, 'type': 'addresses_WC_ht', 'same': False, 'AVXalign': False, 'congruent': 6}} {'36': 21829} 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 */
46.878261
2,999
0.660174
9423ab9b8256815d16e599f4820208c3ef87099d
476
asm
Assembly
oeis/313/A313722.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/313/A313722.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/313/A313722.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A313722: Coordination sequence Gal.6.248.4 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings. ; Submitted by Jamie Morken(s1) ; 1,5,10,15,20,24,30,34,39,44,49,54,59,64,69,74,78,84,88,93,98,103,108,113,118,123,128,132,138,142,147,152,157,162,167,172,177,182,186,192,196,201,206,211,216,221,226,231,236,240 mul $0,18 mov $1,$0 add $0,5 div $0,11 mul $1,2 sub $1,6 div $1,11 add $1,1 add $0,$1
34
178
0.712185