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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
59f612ce19855683155f391a4e5c31463974b70f | 1,077 | asm | Assembly | libsrc/input/zx81/in_keytranstbl.asm | andydansby/z88dk-mk2 | 51c15f1387293809c496f5eaf7b196f8a0e9b66b | [
"ClArtistic"
] | 1 | 2020-09-15T08:35:49.000Z | 2020-09-15T08:35:49.000Z | libsrc/input/zx81/in_keytranstbl.asm | dex4er/deb-z88dk | 9ee4f23444fa6f6043462332a1bff7ae20a8504b | [
"ClArtistic"
] | null | null | null | libsrc/input/zx81/in_keytranstbl.asm | dex4er/deb-z88dk | 9ee4f23444fa6f6043462332a1bff7ae20a8504b | [
"ClArtistic"
] | null | null | null |
; This table translates key presses into ascii codes.
; Also used by 'GetKey' and 'LookupKey'.
; I would like to add lower case letters too but not
; sure how to go about it with just one shift key
XLIB in_keytranstbl
.in_keytranstbl
; unshifted
defb 255,'Z','X','C','V' ; SHIFT, Z, X, C, V
defb 'A','S','D','F','G' ; A, S, D, F, G
defb 'Q','W','E','R','T' ; Q, W, E, R, T
defb '1','2','3','4','5' ; 1, 2, 3, 4, 5
defb '0','9','8','7','6' ; 0, 9, 8, 7, 6
defb 'P','O','I','U','Y' ; P, O, I, U, Y
defb 13,'L','K','J','H' ; ENTER, L, K, J, H
defb ' ','.','M','N','B' ; SPACE, ., M, N, B
; shifted
defb 255,':',';','?','/' ; SHIFT, Z, X, C, V
defb '~','|',92,'{','}' ; A, S, D, F, G
defb 131,132,133,18,20 ; Q, W, E, R, T
defb 27,28,29,30,8 ; 1, 2, 3, 4, 5
defb 12,8,9,11,10 ; 0, 9, 8, 7, 6
defb 34,')','(','$',25 ; P, O, I, U, Y
defb 13,'=','+','-','^' ; ENTER, L, K, J, H
defb 96,',','>','<','*' ; SPACE, ., M, N, B
| 33.65625 | 53 | 0.414113 |
6f68576671d6da7bbf6eeaa549d579b70fb51bdf | 221 | asm | Assembly | delay.asm | brainsmoke/softpwmpdk | a893ed1e32ee5ad0b4101964e21a021cca0027c7 | [
"MIT"
] | 1 | 2021-11-08T17:12:45.000Z | 2021-11-08T17:12:45.000Z | delay.asm | brainsmoke/softpwmpdk | a893ed1e32ee5ad0b4101964e21a021cca0027c7 | [
"MIT"
] | null | null | null | delay.asm | brainsmoke/softpwmpdk | a893ed1e32ee5ad0b4101964e21a021cca0027c7 | [
"MIT"
] | 1 | 2022-03-25T17:50:53.000Z | 2022-03-25T17:50:53.000Z | ;
.macro switchcase_filler n
.rept n
nop
.endm
.endm
.macro delay n, ?l1
.ifgt n - 3*255+2
.error 1
.else
mov a, #(n / 3)
l1:
dzsn a
goto l1
.ifgt n%3
nop
.ifgt n%3-1
nop
.endif
.endif
.endif
.endm
| 7.62069 | 26 | 0.58371 |
d37bde4d90d9d5cf2a6c7503dd9986808200d6c2 | 1,303 | asm | Assembly | Labs/Lab5_Structs-Arrays/6-process-structure/process_structure.asm | CristianCotovanu/IOCLA | 94bc8b092beae8ddba76d95617e7eb5b8cef52f5 | [
"MIT"
] | null | null | null | Labs/Lab5_Structs-Arrays/6-process-structure/process_structure.asm | CristianCotovanu/IOCLA | 94bc8b092beae8ddba76d95617e7eb5b8cef52f5 | [
"MIT"
] | null | null | null | Labs/Lab5_Structs-Arrays/6-process-structure/process_structure.asm | CristianCotovanu/IOCLA | 94bc8b092beae8ddba76d95617e7eb5b8cef52f5 | [
"MIT"
] | null | null | null | %include "io.inc"
struc stud_struct
name: resb 32
surname: resb 32
age: resb 1
group: resb 8
gender: resb 1
birth_year: resw 1
id: resb 16
endstruc
section .data
sample_student:
istruc stud_struct
at name, db 'Andrei', 0
at surname, db 'Voinea', 0
at age, db 21
at group, db '321CA', 0
at gender, db 1
at birth_year, dw 1994
at id, db 0
iend
print_format db "ID: ", 0
section .text
global CMAIN
CMAIN:
mov ebp, esp; for correct debugging
push ebp
mov ebp, esp
; TODO: store in a register the address of the sample_student struct
lea eax, [sample_student]
lea edi, [sample_student + id]
lea esi, [sample_student + name]
mov ecx, 3
rep movsb
lea edi, [sample_student + id + 3]
lea esi, [sample_student + surname]
mov ecx, 3
rep movsb
mov byte [sample_student + id + 6], '-'
; TODO: copy the bytes from field group to id using movsb
lea edi, [sample_student + id + 7]
lea esi, [sample_student + group]
mov ecx, 5
rep movsb
mov byte [sample_student + id + 12], '\0'
PRINT_STRING print_format
PRINT_STRING [sample_student + id]
leave
ret | 21.016129 | 73 | 0.5802 |
efca139648aec92c9dbd5861cda02c12e04cb607 | 321 | asm | Assembly | programs/oeis/090/A090773.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/090/A090773.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/090/A090773.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A090773: Numbers that are congruent to {4, 6} mod 10.
; 4,6,14,16,24,26,34,36,44,46,54,56,64,66,74,76,84,86,94,96,104,106,114,116,124,126,134,136,144,146,154,156,164,166,174,176,184,186,194,196,204,206,214,216,224,226,234,236,244,246,254,256,264,266,274,276,284
mov $1,$0
div $1,2
mul $1,3
add $0,$1
mul $0,2
add $0,4
| 32.1 | 207 | 0.679128 |
84a36a191f5dd952f33b800916e129375079ce6a | 6,251 | asm | Assembly | Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0_notsx.log_2_809.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0_notsx.log_2_809.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0_notsx.log_2_809.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 %r8
push %r9
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x16ca7, %r9
nop
nop
add $19715, %rdx
mov $0x6162636465666768, %rdi
movq %rdi, (%r9)
nop
nop
nop
nop
nop
lfence
lea addresses_UC_ht+0xe4a3, %r9
nop
nop
nop
lfence
mov (%r9), %ebx
nop
add %r8, %r8
lea addresses_WT_ht+0x8b63, %rbx
nop
nop
nop
add %rcx, %rcx
mov (%rbx), %di
nop
nop
nop
sub %rbx, %rbx
lea addresses_normal_ht+0xaef7, %rsi
lea addresses_D_ht+0xf5e3, %rdi
xor $13382, %r12
mov $25, %rcx
rep movsw
nop
nop
nop
nop
cmp %rcx, %rcx
lea addresses_WT_ht+0xd6e3, %rsi
lea addresses_UC_ht+0xc5bf, %rdi
nop
nop
nop
and %rdx, %rdx
mov $24, %rcx
rep movsl
nop
add $17818, %rdi
lea addresses_UC_ht+0xe1e3, %rsi
lea addresses_WC_ht+0x10843, %rdi
nop
xor %rdx, %rdx
mov $53, %rcx
rep movsl
nop
sub %r9, %r9
lea addresses_D_ht+0x7173, %rsi
lea addresses_D_ht+0x1c363, %rdi
nop
nop
cmp %r12, %r12
mov $4, %rcx
rep movsb
nop
inc %rsi
lea addresses_WT_ht+0x13563, %r8
nop
add %rbx, %rbx
movb $0x61, (%r8)
add %rdi, %rdi
lea addresses_WT_ht+0x19113, %rdx
nop
dec %rsi
vmovups (%rdx), %ymm1
vextracti128 $1, %ymm1, %xmm1
vpextrq $0, %xmm1, %r8
nop
nop
dec %r12
lea addresses_normal_ht+0x2373, %r12
xor $60440, %rbx
movw $0x6162, (%r12)
nop
nop
nop
dec %r12
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rbx
pop %r9
pop %r8
pop %r12
ret
.global s_faulty_load
s_faulty_load:
push %r12
push %r13
push %r9
push %rax
push %rbx
push %rcx
push %rdx
// Store
lea addresses_UC+0xd427, %rdx
inc %rax
mov $0x5152535455565758, %r13
movq %r13, %xmm2
vmovups %ymm2, (%rdx)
nop
nop
nop
nop
xor %r9, %r9
// Store
lea addresses_RW+0x13da3, %r13
nop
nop
nop
cmp %rbx, %rbx
mov $0x5152535455565758, %rdx
movq %rdx, (%r13)
nop
nop
nop
nop
xor $18472, %rcx
// Store
lea addresses_WC+0xd763, %r13
nop
nop
and %rax, %rax
movw $0x5152, (%r13)
nop
nop
nop
nop
nop
sub $38141, %rcx
// Load
lea addresses_PSE+0xa673, %rdx
clflush (%rdx)
nop
nop
add $22560, %r12
vmovups (%rdx), %ymm3
vextracti128 $0, %ymm3, %xmm3
vpextrq $1, %xmm3, %r13
nop
nop
and %r13, %r13
// Load
lea addresses_normal+0x8607, %r13
add %r9, %r9
movb (%r13), %dl
nop
add $38665, %rax
// Load
lea addresses_A+0x21e3, %rbx
add %rdx, %rdx
vmovups (%rbx), %ymm0
vextracti128 $0, %ymm0, %xmm0
vpextrq $0, %xmm0, %r9
nop
nop
nop
cmp %r9, %r9
// Store
lea addresses_PSE+0x15d0d, %rbx
nop
nop
sub %rdx, %rdx
mov $0x5152535455565758, %r13
movq %r13, (%rbx)
nop
nop
nop
nop
nop
add $10965, %rdx
// Load
lea addresses_WT+0xb2e3, %rax
cmp $26051, %r13
mov (%rax), %bx
nop
nop
cmp $55178, %r9
// Store
lea addresses_WT+0xfd3f, %r12
nop
nop
nop
nop
cmp $46638, %r13
mov $0x5152535455565758, %rdx
movq %rdx, %xmm0
vmovntdq %ymm0, (%r12)
sub $56446, %rcx
// Store
lea addresses_normal+0xc103, %rdx
nop
xor $23551, %r9
movw $0x5152, (%rdx)
sub $32202, %rdx
// Store
lea addresses_WC+0xab63, %rcx
nop
nop
nop
nop
nop
xor %r13, %r13
mov $0x5152535455565758, %rbx
movq %rbx, %xmm5
movups %xmm5, (%rcx)
xor %r13, %r13
// Faulty Load
lea addresses_A+0x159e3, %r13
nop
nop
nop
nop
cmp $2823, %rbx
movb (%r13), %dl
lea oracles, %r9
and $0xff, %rdx
shlq $12, %rdx
mov (%r9,%rdx,1), %rdx
pop %rdx
pop %rcx
pop %rbx
pop %rax
pop %r9
pop %r13
pop %r12
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_A', 'AVXalign': False, 'size': 32, 'NT': False, 'same': True, 'congruent': 0}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'type': 'addresses_UC', 'AVXalign': False, 'size': 32, 'NT': False, 'same': False, 'congruent': 1}}
{'OP': 'STOR', 'dst': {'type': 'addresses_RW', 'AVXalign': False, 'size': 8, 'NT': False, 'same': False, 'congruent': 6}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC', 'AVXalign': False, 'size': 2, 'NT': False, 'same': False, 'congruent': 1}}
{'src': {'type': 'addresses_PSE', 'AVXalign': False, 'size': 32, 'NT': False, 'same': False, 'congruent': 4}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_normal', 'AVXalign': False, 'size': 1, 'NT': False, 'same': False, 'congruent': 2}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_A', 'AVXalign': False, 'size': 32, 'NT': False, 'same': False, 'congruent': 10}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'type': 'addresses_PSE', 'AVXalign': False, 'size': 8, 'NT': False, 'same': False, 'congruent': 1}}
{'src': {'type': 'addresses_WT', 'AVXalign': False, 'size': 2, 'NT': False, 'same': False, 'congruent': 7}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'type': 'addresses_WT', 'AVXalign': False, 'size': 32, 'NT': True, 'same': False, 'congruent': 2}}
{'OP': 'STOR', 'dst': {'type': 'addresses_normal', 'AVXalign': False, 'size': 2, 'NT': False, 'same': False, 'congruent': 5}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC', 'AVXalign': False, 'size': 16, 'NT': False, 'same': False, 'congruent': 7}}
[Faulty Load]
{'src': {'type': 'addresses_A', 'AVXalign': False, 'size': 1, 'NT': False, 'same': True, 'congruent': 0}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'AVXalign': False, 'size': 8, 'NT': False, 'same': False, 'congruent': 1}}
{'src': {'type': 'addresses_UC_ht', 'AVXalign': False, 'size': 4, 'NT': False, 'same': False, 'congruent': 6}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_WT_ht', 'AVXalign': False, 'size': 2, 'NT': False, 'same': False, 'congruent': 6}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_normal_ht', 'congruent': 1, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_D_ht', 'congruent': 10, 'same': False}}
{'src': {'type': 'addresses_WT_ht', 'congruent': 5, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_UC_ht', 'congruent': 2, 'same': False}}
{'src': {'type': 'addresses_UC_ht', 'congruent': 10, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_WC_ht', 'congruent': 4, 'same': False}}
{'src': {'type': 'addresses_D_ht', 'congruent': 4, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_D_ht', 'congruent': 7, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'AVXalign': False, 'size': 1, 'NT': False, 'same': False, 'congruent': 7}}
{'src': {'type': 'addresses_WT_ht', 'AVXalign': False, 'size': 32, 'NT': False, 'same': False, 'congruent': 2}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'type': 'addresses_normal_ht', 'AVXalign': False, 'size': 2, 'NT': False, 'same': False, 'congruent': 1}}
{'00': 2}
00 00
*/
| 21.189831 | 152 | 0.641657 |
2f14b459753b1e21af78f11417da1849aa0a9748 | 4,019 | asm | Assembly | Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca_notsx.log_8_687.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca_notsx.log_8_687.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca_notsx.log_8_687.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 %r11
push %r13
push %r15
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0xf05a, %rsi
lea addresses_WC_ht+0xa212, %rdi
clflush (%rdi)
nop
nop
nop
inc %r13
mov $76, %rcx
rep movsl
nop
nop
dec %rcx
lea addresses_UC_ht+0x5dd2, %rsi
lea addresses_WT_ht+0xd1d2, %rdi
nop
nop
xor %rbp, %rbp
mov $99, %rcx
rep movsl
nop
nop
nop
nop
nop
and %rsi, %rsi
lea addresses_A_ht+0x10bd2, %rdi
nop
nop
nop
nop
and $36070, %r11
mov $0x6162636465666768, %rsi
movq %rsi, %xmm4
vmovups %ymm4, (%rdi)
nop
nop
nop
nop
nop
and $61365, %rsi
lea addresses_normal_ht+0x1e1b2, %rdi
clflush (%rdi)
add $28618, %r15
mov (%rdi), %r13w
nop
and %r11, %r11
lea addresses_WC_ht+0x7cd2, %r13
xor %r11, %r11
movw $0x6162, (%r13)
nop
nop
lfence
lea addresses_normal_ht+0x75d2, %rsi
lea addresses_A_ht+0x131a2, %rdi
nop
nop
nop
dec %rbp
mov $89, %rcx
rep movsw
nop
add %rsi, %rsi
lea addresses_normal_ht+0x972, %rcx
nop
nop
nop
add %rdi, %rdi
movw $0x6162, (%rcx)
nop
nop
cmp %rdi, %rdi
lea addresses_WT_ht+0x1982e, %rsi
nop
nop
sub $43988, %r11
vmovups (%rsi), %ymm6
vextracti128 $1, %ymm6, %xmm6
vpextrq $1, %xmm6, %rbp
nop
nop
nop
nop
nop
add $41451, %r13
lea addresses_A_ht+0x159d2, %r15
and %r11, %r11
movb $0x61, (%r15)
nop
lfence
lea addresses_WT_ht+0x128de, %rsi
lea addresses_normal_ht+0x1d7ec, %rdi
clflush (%rsi)
nop
nop
nop
nop
nop
xor %r10, %r10
mov $1, %rcx
rep movsw
nop
nop
nop
nop
cmp %r15, %r15
lea addresses_WC_ht+0x2392, %rcx
add $35471, %r11
mov $0x6162636465666768, %r15
movq %r15, %xmm6
movups %xmm6, (%rcx)
nop
nop
nop
nop
sub $36786, %r13
lea addresses_WC_ht+0x5d32, %rsi
clflush (%rsi)
and %r13, %r13
mov (%rsi), %r15
nop
cmp $42860, %r11
pop %rsi
pop %rdi
pop %rcx
pop %rbp
pop %r15
pop %r13
pop %r11
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r14
push %r9
push %rax
push %rsi
// Faulty Load
lea addresses_US+0x135d2, %rsi
nop
nop
nop
cmp $54247, %rax
movb (%rsi), %r14b
lea oracles, %r9
and $0xff, %r14
shlq $12, %r14
mov (%r9,%r14,1), %r14
pop %rsi
pop %rax
pop %r9
pop %r14
ret
/*
<gen_faulty_load>
[REF]
{'src': {'NT': False, 'AVXalign': True, 'size': 1, 'congruent': 0, 'same': False, 'type': 'addresses_US'}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'NT': False, 'AVXalign': False, 'size': 1, 'congruent': 0, 'same': True, 'type': 'addresses_US'}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'congruent': 2, 'same': True, 'type': 'addresses_normal_ht'}, 'dst': {'congruent': 5, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'REPM'}
{'src': {'congruent': 10, 'same': False, 'type': 'addresses_UC_ht'}, 'dst': {'congruent': 5, 'same': False, 'type': 'addresses_WT_ht'}, 'OP': 'REPM'}
{'dst': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 9, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'STOR'}
{'src': {'NT': False, 'AVXalign': True, 'size': 2, 'congruent': 5, 'same': False, 'type': 'addresses_normal_ht'}, 'OP': 'LOAD'}
{'dst': {'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 8, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'STOR'}
{'src': {'congruent': 9, 'same': False, 'type': 'addresses_normal_ht'}, 'dst': {'congruent': 3, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'REPM'}
{'dst': {'NT': True, 'AVXalign': False, 'size': 2, 'congruent': 5, 'same': False, 'type': 'addresses_normal_ht'}, 'OP': 'STOR'}
{'src': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 2, 'same': False, 'type': 'addresses_WT_ht'}, 'OP': 'LOAD'}
{'dst': {'NT': False, 'AVXalign': True, 'size': 1, 'congruent': 9, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'STOR'}
{'src': {'congruent': 2, 'same': False, 'type': 'addresses_WT_ht'}, 'dst': {'congruent': 1, 'same': False, 'type': 'addresses_normal_ht'}, 'OP': 'REPM'}
{'dst': {'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 2, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'STOR'}
{'src': {'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 4, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'LOAD'}
{'00': 8}
00 00 00 00 00 00 00 00
*/
| 21.37766 | 152 | 0.654392 |
870c66638566f0b2c38391910c263f84ee7da17d | 5,077 | asm | Assembly | flame32.asm | drako0812/flame32 | cf79e5fc14838cc3ca0dbe702bbdb8f157a587ab | [
"MIT"
] | 2 | 2019-08-21T09:16:32.000Z | 2020-08-12T12:56:08.000Z | flame32.asm | drako0812/flame32 | cf79e5fc14838cc3ca0dbe702bbdb8f157a587ab | [
"MIT"
] | null | null | null | flame32.asm | drako0812/flame32 | cf79e5fc14838cc3ca0dbe702bbdb8f157a587ab | [
"MIT"
] | null | null | null | #cpudef
{
#bits 8
#tokendef reg
{
A = 0
B = 1
C = 2
D = 3
E = 4
F = 5
G = 6
H = 7
X = 8
Y = 9
N = 10
O = 11
P = 12
S = 13
T = 14
U = 15
}
#tokendef flag
{
Z = 0b00000001
NZ = 0b00000010
EQ = 0b00000100
NE = 0b00001000
LT = 0b00010000
GT = 0b00100000
CA = 0b01000000
NAN =0b10000000
LE = 0b00010100
GE = 0b00100100
}
#tokendef errcode
{
ERROR_STACK_OVERFLOW = 0b00000001
ERROR_STACK_UNDERFLOW = 0b00000010
}
; Basic Instructions
nop -> 0x00000000
lod {i} -> 8'0x01 @ i[23:0]
ldl {a: reg}, {i} -> 8'0x02 @ a[3:0] @ 20'0x00000 @ i[31:0]
mov {a: reg}, {b: reg} -> 8'0x03 @ a[3:0] @ b[3:0] @ 16'0x0000
swp {a: reg}, {b: reg} -> 8'0x04 @ a[3:0] @ b[3:0] @ 16'0x0000
ldm {a: reg}, {i} -> 8'0x05 @ a[3:0] @ 20'0x00000 @ i[31:0]
sto {a: reg}, {i} -> 8'0x06 @ a[3:0] @ 20'0x00000 @ i[31:0]
inc {a: reg} -> 8'0x07 @ a[3:0] @ 20'0x00000
dec {a: reg} -> 8'0x08 @ a[3:0] @ 20'0x00000
add {a: reg}, {b: reg} -> 8'0x09 @ a[3:0] @ b[3:0] @ 16'0x0000
sub {a: reg}, {b: reg} -> 8'0x0A @ a[3:0] @ b[3:0] @ 16'0x0000
mul {a: reg}, {b: reg} -> 8'0x0B @ a[3:0] @ b[3:0] @ 16'0x0000
div {a: reg}, {b: reg} -> 8'0x0C @ a[3:0] @ b[3:0] @ 16'0x0000
mod {a: reg}, {b: reg} -> 8'0x0D @ a[3:0] @ b[3:0] @ 16'0x0000
mls {a: reg}, {b: reg} -> 8'0x0E @ a[3:0] @ b[3:0] @ 16'0x0000
dvs {a: reg}, {b: reg} -> 8'0x0F @ a[3:0] @ b[3:0] @ 16'0x0000
mds {a: reg}, {b: reg} -> 8'0x10 @ a[3:0] @ b[3:0] @ 16'0x0000
shl {a: reg} -> 8'0x11 @ a[3:0] @ 20'0x00000
shr {a: reg} -> 8'0x12 @ a[3:0] @ 20'0x00000
sli {a: reg}, {b: reg} -> 8'0x13 @ a[3:0] @ b[3:0] @ 16'0x0000
sri {a: reg}, {b: reg} -> 8'0x14 @ a[3:0] @ b[3:0] @ 16'0x0000
rtl {a: reg} -> 8'0x15 @ a[3:0] @ 20'0x00000
rtr {a: reg} -> 8'0x16 @ a[3:0] @ 20'0x00000
rli {a: reg}, {b: reg} -> 8'0x17 @ a[3:0] @ b[3:0] @ 16'0x0000
rri {a: reg}, {b: reg} -> 8'0x18 @ a[3:0] @ b[3:0] @ 16'0x0000
bor {a: reg}, {b: reg} -> 8'0x19 @ a[3:0] @ b[3:0] @ 16'0x0000
and {a: reg}, {b: reg} -> 8'0x1A @ a[3:0] @ b[3:0] @ 16'0x0000
xor {a: reg}, {b: reg} -> 8'0x1B @ a[3:0] @ b[3:0] @ 16'0x0000
bst {a: reg}, {b: reg} -> 8'0x1C @ a[3:0] @ b[3:0] @ 16'0x0000
brs {a: reg}, {b: reg} -> 8'0x1D @ a[3:0] @ b[3:0] @ 16'0x0000
bcp {a: reg} -> 8'0x1E @ a[3:0] @ 20'0x00000
cmp {a: reg}, {b: reg} -> 8'0x1F @ a[3:0] @ b[3:0] @ 16'0x0000
cpz {a: reg} -> 8'0x20 @ a[3:0] @ 20'0x00000
cpi {a: reg}, {i} -> 8'0x21 @ a[3:0] @ 20'0x00000 @ i[31:0]
jpr {i} -> 8'0x22 @ i[23:0]
jmp {i} -> 32'0x23000000 @ i[31:0]
jpc {f: flag}, {i} -> 8'0x24 @ f[23:0] @ i[31:0]
clr {i} -> 8'0x25 @ i[23:0]
cal {i} -> 32'0x26000000 @ i[31:0]
clc {f: flag}, {i} -> 8'0x27 @ f[23:0] @ i[31:0]
inp {p} -> 8'0x28 @ p[23:0]
out {p} -> 8'0x29 @ p[23:0]
inr {a: reg} -> 8'0x2A @ a[3:0] @ 20'0x00000
otr {a: reg} -> 8'0x2B @ a[3:0] @ 20'0x00000
psh {a: reg} -> 8'0x2C @ a[3:0] @ 20'0x00000
pop {a: reg} -> 8'0x2D @ a[3:0] @ 20'0x00000
psi {i} -> 32'0x2E000000 @ i[31:0]
hlt -> 32'0x2F000000
ppp -> 32'0x30000000
ret -> 32'0x31000000
lmr {a: reg}, {b: reg} -> 8'0x32 @ a[3:0] @ b[3:0] @ 16'0x0000
str {a: reg}, {b: reg} -> 8'0x33 @ a[3:0] @ b[3:0] @ 16'0x0000
; Byte Instructions
blod {a: reg}, {i} -> 8'0x34 @ a[3:0] @ 12'0x000 @ i[7:0]
bldm {a: reg}, {i} -> 8'0x35 @ a[3:0] @ 20'0x00000 @ i[31:0]
bsto {a: reg}, {i} -> 8'0x36 @ a[3:0] @ 20'0x00000 @ i[31:0]
binp {p} -> 8'0x37 @ p[23:0]
bout {p} -> 8'0x38 @ p[23:0]
binr {a: reg} -> 8'0x39 @ a[3:0] @ 20'0x00000
botr {a: reg} -> 8'0x3A @ a[3:0] @ 20'0x00000
bpsh {a: reg} -> 8'0x3B @ a[3:0] @ 20'0x00000
bpop {a: reg} -> 8'0x3C @ a[3:0] @ 20'0x00000
bpsi {i} -> 8'0x3D @ 16'0x0000 @ i[7:0]
bppp -> 32'0x3E000000
blmr {a: reg}, {b: reg} -> 8'0x3F @ a[3:0] @ b[3:0] @ 16'0x0000
bstr {a: reg}, {b: reg} -> 8'0x40 @ a[3:0] @ b[3:0] @ 16'0x0000
; Kernel Support Instructions
kic {i} -> 8'0x41 @ i[23:0]
kir {a: reg} -> 8'0x42 @ a[3:0] @ 20'0x00000
krt -> 32'0x43000000
kei -> 32'0x44000000
kdi -> 32'0x45000000
ksi {i} -> 32'0x46000000 @ i[31:0]
; Miscellaneous Instructions
ehr {i} -> 32'0x47000000 @ i[31:0]
ssi {i} -> 32'0x48000000 @ i[31:0]
ert -> 32'0x49000000
}
; #bankdef "bios"
; {
; #addr 0x000000
; #size 0x040000
; #outp 0x000000
; #fill
; }
;
; #bankdef "stack"
; {
; #addr 0x040000
; #size 0x040000
; }
;
; #bankdef "gfx"
; {
; #addr 0x080000
; #size 0x040000
; }
;
; #bankdef "hw"
; {
; #addr 0x0C0000
; #size 0x040000
; }
;
; #bankdef "os"
; {
; #addr 0x100000
; #size 0x080000
; #outp 0x000000
; #fill
; }
;
; #bankdef "user"
; {
; #addr 0x180000
; #size 0x100000
; #outp 0x000000
; #fill
; }
| 30.04142 | 67 | 0.46622 |
2905ad79058c36b7bc8e4faa9bc761266527c3fd | 5,153 | asm | Assembly | base/crts/crtw32/string/i386/_memicmp.asm | npocmaka/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 17 | 2020-11-13T13:42:52.000Z | 2021-09-16T09:13:13.000Z | base/crts/crtw32/string/i386/_memicmp.asm | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 2 | 2020-10-19T08:02:06.000Z | 2020-10-19T08:23:18.000Z | base/crts/crtw32/string/i386/_memicmp.asm | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 14 | 2020-11-14T09:43:20.000Z | 2021-08-28T08:59:57.000Z | page ,132
title memicmp - compare blocks of memory, ignore case
;***
;memicmp.asm - compare memory, ignore case
;
; Copyright (c) 1985-2001, Microsoft Corporation. All rights reserved.
;
;Purpose:
; defines __ascii_memicmp() - compare two blocks of memory for lexical
; order. Case is ignored in the comparison.
;
;Revision History:
; 05-16-83 RN initial version
; 05-17-88 SJM Add model-independent (large model) ifdef
; 08-04-88 SJM convert to cruntime/ add 32-bit support
; 08-23-88 JCR Cleanup...
; 10-25-88 JCR General cleanup for 386-only code
; 03-23-90 GJF Changed to _stdcall. Also, fixed the copyright.
; 01-17-91 GJF ANSI naming.
; 05-10-91 GJF Back to _cdecl, sigh...
; 10-20-94 GJF Made locale sensitive (i.e., now works for all
; single-byte character locales). Made multi-thread
; safe. Also, deleted obsolete _STDCALL_ code.
; 10-27-94 GJF Adapted above change for Win32S.
; 11-12-94 GJF Must avoid volatile regs or save them across function
; calls. Also, fixed bug in reg operand size.
; 07-03-95 CFW Changed offset of _lc_handle[LC_CTYPE], added sanity check
; to crtlib.c to catch changes to win32s.h that modify offset.
; 10-03-95 GJF New locale locking scheme.
; 07-17-96 GJF Added lock prefix to increment and decrement of
; __unguarded_readlc_active.
; 07-18-96 GJF Fixed race condition.
; 09-08-98 GJF All locale and multithread support moved up to
; memicmp.c. Renamed this file to _memicmp.asm.
; 06-12-01 PML inc->add 1, dec->sub 1 for Pentium 4 perf (vs7#267015)
;
;*******************************************************************************
.xlist
include cruntime.inc
.list
page
;***
;int __ascii_memicmp(first, last, count) - compare two blocks of memory, ignore case
;
;Purpose:
; Compares count bytes of the two blocks of memory stored at first
; and last. The characters are converted to lowercase before
; comparing (not permanently), so case is ignored in the search.
;
; Algorithm:
; int
; _memicmp (first, last, count)
; char *first, *last;
; unsigned count;
; {
; if (!count)
; return(0);
; while (--count && tolower(*first) == tolower(*last))
; {
; first++;
; last++;
; }
; return(tolower(*first) - tolower(*last));
; }
;
;Entry:
; char *first, *last - memory buffers to compare
; unsigned count - maximum length to compare
;
;Exit:
; returns <0 if first < last
; returns 0 if first == last
; returns >0 if first > last
;
;Uses:
;
;Exceptions:
;
;*******************************************************************************
CODESEG
public __ascii_memicmp
__ascii_memicmp proc \
uses edi esi ebx, \
first:ptr byte, \
last:ptr byte, \
count:IWORD
mov ecx,[count] ; cx = count
or ecx,ecx
jz short toend ; if count=0, nothing to do
mov esi,[first] ; si = first
mov edi,[last] ; di = last
; C locale
mov bh,'A'
mov bl,'Z'
mov dh,'a'-'A' ; add to cap to make lower
align 4
lupe:
mov ah,[esi] ; ah = *first
add esi,1 ; first++
mov al,[edi] ; al = *last
add edi,1 ; last++
cmp ah,al ; test for equality BEFORE converting case
je short dolupe
cmp ah,bh ; ah < 'A' ??
jb short skip1
cmp ah,bl ; ah > 'Z' ??
ja short skip1
add ah,dh ; make lower case
skip1:
cmp al,bh ; al < 'A' ??
jb short skip2
cmp al,bl ; al > 'Z' ??
ja short skip2
add al,dh ; make lower case
skip2:
cmp ah,al ; *first == *last ??
jne short differ ; nope, found mismatched chars
dolupe:
sub ecx,1
jnz short lupe
jmp short toend ; cx = 0, return 0
differ:
mov ecx,-1 ; assume last is bigger
; *** can't use "or ecx,-1" due to flags ***
jb short toend ; last is, in fact, bigger (return -1)
neg ecx ; first is bigger (return 1)
toend:
mov eax,ecx ; move return value to ax
ret ; _cdecl return
__ascii_memicmp endp
end
| 33.032051 | 85 | 0.47254 |
fc2030c0717a6cf5f767abf56cba3b376b15618a | 990 | asm | Assembly | oeis/100/A100151.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/100/A100151.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/100/A100151.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A100151: Structured snub dodecahedral numbers.
; 1,60,286,788,1675,3056,5040,7736,11253,15700,21186,27820,35711,44968,55700,68016,82025,97836,115558,135300,157171,181280,207736,236648,268125,302276,339210,379036,421863,467800,516956,569440,625361,684828,747950,814836,885595,960336,1039168,1122200,1209541,1301300,1397586,1498508,1604175,1714696,1830180,1950736,2076473,2207500,2343926,2485860,2633411,2786688,2945800,3110856,3281965,3459236,3642778,3832700,4029111,4232120,4441836,4658368,4881825,5112316,5349950,5594836,5847083,6106800,6374096
mov $3,4
mov $5,$0
lpb $0
sub $0,1
add $2,$3
add $3,1
add $4,$2
lpe
add $4,$2
add $2,4
add $4,1
add $2,$4
add $3,$2
add $0,$3
trn $4,$0
add $4,$2
mov $1,$4
sub $1,4
mov $6,$5
mov $9,3
lpb $9
add $1,$6
sub $9,1
lpe
mov $8,$5
lpb $8
add $7,$6
sub $8,1
lpe
mov $6,$7
mov $9,26
lpb $9
add $1,$6
sub $9,1
lpe
mov $7,0
mov $8,$5
lpb $8
add $7,$6
sub $8,1
lpe
mov $6,$7
mov $9,18
lpb $9
add $1,$6
sub $9,1
lpe
mov $0,$1
| 19.038462 | 498 | 0.69697 |
ce0b3e6d12114236795aa35593c0f04c8f74d123 | 423 | asm | Assembly | oeis/098/A098569.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/098/A098569.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/098/A098569.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A098569: Row sums of the triangle of triangular binomial coefficients given by A098568.
; Submitted by Jon Maiga
; 1,2,5,14,43,143,510,1936,7775,32869,145665,674338,3251208,16282580,84512702,453697993,2514668492,14367066833,84489482201,510760424832,3170267071640,20182121448815,131642848217536,878999194493046
mov $4,$0
lpb $0
add $4,$1
mov $3,$4
bin $3,$0
sub $0,1
add $1,1
add $2,$3
lpe
mov $0,$2
add $0,1
| 26.4375 | 196 | 0.744681 |
dab0ea847384dab28c17255249921585c5222f1a | 1,026 | asm | Assembly | src/map.asm | ryanw/speccy-junk | 1c55a09806dccf192a7b352b0143eb9cdb97dd81 | [
"MIT"
] | null | null | null | src/map.asm | ryanw/speccy-junk | 1c55a09806dccf192a7b352b0143eb9cdb97dd81 | [
"MIT"
] | null | null | null | src/map.asm | ryanw/speccy-junk | 1c55a09806dccf192a7b352b0143eb9cdb97dd81 | [
"MIT"
] | null | null | null | ; HL: Map to draw
draw_map:
; BC: address for tileset
ld c, (hl)
inc hl
ld b, (hl)
; BC: start of tileset
; HL: start of map tiles
draw_map_tile:
; DE: destination for data
ld de, PIXELS_ADDR
next_tile:
inc hl
; Load tile number into A
ld a, (hl)
; if tile is 0xFF then we're done
cp 0xff
jp z, draw_map_done
; Save HL, BC for next loop
push hl
push bc
; if tile is 0 skip to next
cp 0
jp z, next_tile_done
; Remove 1 from the tile numer to allow for 0x00
dec a
; Move BC into HL
push bc
pop hl
; Add A*8(char width) to HL
add a
add a
add a
add l
ld l, a
call draw_map_tile_char
next_tile_done:
inc de
; Restore HL, BC
pop bc
pop hl
jp next_tile
; HL: Address of tile we need to draw
; DE: Address of destination
draw_map_tile_char:
push hl
push de
; Copy HL into DE 8 times for 1 char
ld b, 8
draw_map_tile_char_loop:
ld a, (hl)
ld (de), a
inc d
inc hl
djnz draw_map_tile_char_loop
pop de
pop hl
draw_map_done:
ret
| 13.153846 | 50 | 0.650097 |
6c08eb7a2f8b12dd84fe5e503730d63b3407d41b | 297 | asm | Assembly | programs/oeis/093/A093136.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/093/A093136.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/093/A093136.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A093136: Expansion of (1 - 8*x)/(1 - 10*x).
; 1,2,20,200,2000,20000,200000,2000000,20000000,200000000,2000000000,20000000000,200000000000,2000000000000,20000000000000,200000000000000,2000000000000000,20000000000000000,200000000000000000
mov $1,10
pow $1,$0
sub $1,1
div $1,5
add $1,1
mov $0,$1
| 29.7 | 192 | 0.767677 |
c1cc8235e448b74b3eab0010e716e4eb635af3dd | 6,771 | asm | Assembly | Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0xca_notsx.log_21829_371.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0xca_notsx.log_21829_371.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0xca_notsx.log_21829_371.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 %r13
push %r8
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x1d249, %rax
nop
and %r8, %r8
vmovups (%rax), %ymm0
vextracti128 $0, %ymm0, %xmm0
vpextrq $1, %xmm0, %rbp
nop
nop
nop
nop
add $42858, %r9
lea addresses_D_ht+0x9d19, %r10
clflush (%r10)
nop
nop
nop
nop
nop
and $31783, %rbp
movw $0x6162, (%r10)
nop
nop
nop
and %r13, %r13
lea addresses_WC_ht+0xa449, %r9
nop
nop
inc %r10
mov (%r9), %ebp
nop
nop
nop
nop
nop
sub $55800, %rax
lea addresses_WC_ht+0x8449, %r13
nop
nop
nop
cmp $17241, %rdi
movl $0x61626364, (%r13)
nop
nop
nop
add $27980, %r13
lea addresses_A_ht+0x1a409, %r9
nop
add $585, %rdi
movl $0x61626364, (%r9)
cmp %r10, %r10
lea addresses_UC_ht+0x153c9, %r8
nop
inc %r9
vmovups (%r8), %ymm3
vextracti128 $0, %ymm3, %xmm3
vpextrq $1, %xmm3, %r13
nop
nop
nop
nop
nop
xor $17184, %r9
lea addresses_WT_ht+0x5a49, %rsi
lea addresses_normal_ht+0x18eff, %rdi
nop
sub $40130, %r9
mov $98, %rcx
rep movsq
nop
nop
nop
nop
nop
xor $28310, %rdi
lea addresses_normal_ht+0x1af91, %rbp
nop
nop
nop
and %rdi, %rdi
mov $0x6162636465666768, %r13
movq %r13, (%rbp)
nop
nop
nop
sub %r9, %r9
lea addresses_UC_ht+0x9215, %rsi
clflush (%rsi)
sub %rbp, %rbp
mov $0x6162636465666768, %r13
movq %r13, %xmm1
vmovups %ymm1, (%rsi)
nop
nop
nop
nop
add %r8, %r8
lea addresses_UC_ht+0x9589, %rsi
lea addresses_UC_ht+0x19789, %rdi
nop
nop
sub %r13, %r13
mov $6, %rcx
rep movsw
nop
nop
nop
nop
nop
and $24048, %rcx
lea addresses_WC_ht+0x2ec9, %rbp
nop
nop
sub %r9, %r9
mov $0x6162636465666768, %rax
movq %rax, %xmm1
movups %xmm1, (%rbp)
nop
nop
dec %rdi
pop %rsi
pop %rdi
pop %rcx
pop %rbp
pop %rax
pop %r9
pop %r8
pop %r13
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r15
push %rbx
push %rcx
// Faulty Load
lea addresses_D+0xec49, %r10
nop
nop
nop
nop
and %r11, %r11
movb (%r10), %r15b
lea oracles, %rcx
and $0xff, %r15
shlq $12, %r15
mov (%rcx,%r15,1), %r15
pop %rcx
pop %rbx
pop %r15
pop %r11
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 0, 'same': True, 'type': 'addresses_D'}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'NT': False, 'AVXalign': True, 'size': 1, 'congruent': 0, 'same': True, 'type': 'addresses_D'}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 9, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'LOAD'}
{'dst': {'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 3, 'same': False, 'type': 'addresses_D_ht'}, 'OP': 'STOR'}
{'src': {'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 10, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'LOAD'}
{'dst': {'NT': True, 'AVXalign': False, 'size': 4, 'congruent': 9, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'STOR'}
{'dst': {'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 6, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'STOR'}
{'src': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 7, 'same': False, 'type': 'addresses_UC_ht'}, 'OP': 'LOAD'}
{'src': {'congruent': 7, 'same': False, 'type': 'addresses_WT_ht'}, 'dst': {'congruent': 1, 'same': False, 'type': 'addresses_normal_ht'}, 'OP': 'REPM'}
{'dst': {'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 3, 'same': True, 'type': 'addresses_normal_ht'}, 'OP': 'STOR'}
{'dst': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 2, 'same': False, 'type': 'addresses_UC_ht'}, 'OP': 'STOR'}
{'src': {'congruent': 6, 'same': False, 'type': 'addresses_UC_ht'}, 'dst': {'congruent': 6, 'same': False, 'type': 'addresses_UC_ht'}, 'OP': 'REPM'}
{'dst': {'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 7, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'STOR'}
{'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
*/
| 35.636842 | 2,999 | 0.657953 |
907e918380468396d908b1150c0296a6b396e7fd | 20,233 | asm | Assembly | vpx_dsp/arm/loopfilter_4_neon.asm | clear39/avcode-libvpx | f4653c1efc0a8d758195572de34ae05271453d93 | [
"BSD-3-Clause"
] | 2,151 | 2020-04-18T07:31:17.000Z | 2022-03-31T08:39:18.000Z | vpx_dsp/arm/loopfilter_4_neon.asm | clear39/avcode-libvpx | f4653c1efc0a8d758195572de34ae05271453d93 | [
"BSD-3-Clause"
] | 395 | 2020-04-18T08:22:18.000Z | 2021-12-08T13:04:49.000Z | vpx_dsp/arm/loopfilter_4_neon.asm | clear39/avcode-libvpx | f4653c1efc0a8d758195572de34ae05271453d93 | [
"BSD-3-Clause"
] | 338 | 2015-01-17T12:36:51.000Z | 2022-03-22T16:12:11.000Z | ;
; Copyright (c) 2013 The WebM project authors. All Rights Reserved.
;
; Use of this source code is governed by a BSD-style license
; that can be found in the LICENSE file in the root of the source
; tree. An additional intellectual property rights grant can be found
; in the file PATENTS. All contributing project authors may
; be found in the AUTHORS file in the root of the source tree.
;
EXPORT |vpx_lpf_horizontal_4_neon|
EXPORT |vpx_lpf_vertical_4_neon|
EXPORT |vpx_lpf_horizontal_4_dual_neon|
EXPORT |vpx_lpf_vertical_4_dual_neon|
ARM
AREA ||.text||, CODE, READONLY, ALIGN=2
; Currently vpx only works on iterations 8 at a time. The vp8 loop filter
; works on 16 iterations at a time.
;
; void vpx_lpf_horizontal_4_neon(uint8_t *s,
; int p /* pitch */,
; const uint8_t *blimit,
; const uint8_t *limit,
; const uint8_t *thresh)
;
; r0 uint8_t *s,
; r1 int p, /* pitch */
; r2 const uint8_t *blimit,
; r3 const uint8_t *limit,
; sp const uint8_t *thresh,
|vpx_lpf_horizontal_4_neon| PROC
push {lr}
vld1.8 {d0[]}, [r2] ; duplicate *blimit
ldr r2, [sp, #4] ; load thresh
add r1, r1, r1 ; double pitch
vld1.8 {d1[]}, [r3] ; duplicate *limit
vld1.8 {d2[]}, [r2] ; duplicate *thresh
sub r2, r0, r1, lsl #1 ; move src pointer down by 4 lines
add r3, r2, r1, lsr #1 ; set to 3 lines down
vld1.u8 {d3}, [r2@64], r1 ; p3
vld1.u8 {d4}, [r3@64], r1 ; p2
vld1.u8 {d5}, [r2@64], r1 ; p1
vld1.u8 {d6}, [r3@64], r1 ; p0
vld1.u8 {d7}, [r2@64], r1 ; q0
vld1.u8 {d16}, [r3@64], r1 ; q1
vld1.u8 {d17}, [r2@64] ; q2
vld1.u8 {d18}, [r3@64] ; q3
sub r2, r2, r1, lsl #1
sub r3, r3, r1, lsl #1
bl filter4_8
vst1.u8 {d4}, [r2@64], r1 ; store op1
vst1.u8 {d5}, [r3@64], r1 ; store op0
vst1.u8 {d6}, [r2@64], r1 ; store oq0
vst1.u8 {d7}, [r3@64], r1 ; store oq1
pop {pc}
ENDP ; |vpx_lpf_horizontal_4_neon|
; Currently vpx only works on iterations 8 at a time. The vp8 loop filter
; works on 16 iterations at a time.
;
; void vpx_lpf_vertical_4_neon(uint8_t *s,
; int p /* pitch */,
; const uint8_t *blimit,
; const uint8_t *limit,
; const uint8_t *thresh)
;
; r0 uint8_t *s,
; r1 int p, /* pitch */
; r2 const uint8_t *blimit,
; r3 const uint8_t *limit,
; sp const uint8_t *thresh,
|vpx_lpf_vertical_4_neon| PROC
push {lr}
vld1.8 {d0[]}, [r2] ; duplicate *blimit
vld1.8 {d1[]}, [r3] ; duplicate *limit
ldr r3, [sp, #4] ; load thresh
sub r2, r0, #4 ; move s pointer down by 4 columns
vld1.8 {d2[]}, [r3] ; duplicate *thresh
vld1.u8 {d3}, [r2], r1 ; load s data
vld1.u8 {d4}, [r2], r1
vld1.u8 {d5}, [r2], r1
vld1.u8 {d6}, [r2], r1
vld1.u8 {d7}, [r2], r1
vld1.u8 {d16}, [r2], r1
vld1.u8 {d17}, [r2], r1
vld1.u8 {d18}, [r2]
;transpose to 8x16 matrix
vtrn.32 d3, d7
vtrn.32 d4, d16
vtrn.32 d5, d17
vtrn.32 d6, d18
vtrn.16 d3, d5
vtrn.16 d4, d6
vtrn.16 d7, d17
vtrn.16 d16, d18
vtrn.8 d3, d4
vtrn.8 d5, d6
vtrn.8 d7, d16
vtrn.8 d17, d18
bl filter4_8
sub r0, r0, #2
;store op1, op0, oq0, oq1
vst4.8 {d4[0], d5[0], d6[0], d7[0]}, [r0], r1
vst4.8 {d4[1], d5[1], d6[1], d7[1]}, [r0], r1
vst4.8 {d4[2], d5[2], d6[2], d7[2]}, [r0], r1
vst4.8 {d4[3], d5[3], d6[3], d7[3]}, [r0], r1
vst4.8 {d4[4], d5[4], d6[4], d7[4]}, [r0], r1
vst4.8 {d4[5], d5[5], d6[5], d7[5]}, [r0], r1
vst4.8 {d4[6], d5[6], d6[6], d7[6]}, [r0], r1
vst4.8 {d4[7], d5[7], d6[7], d7[7]}, [r0]
pop {pc}
ENDP ; |vpx_lpf_vertical_4_neon|
; void filter4_8();
; This is a helper function for the loopfilters. The invidual functions do the
; necessary load, transpose (if necessary) and store. The function does not use
; registers d8-d15.
;
; Inputs:
; r0-r3, r12 PRESERVE
; d0 blimit
; d1 limit
; d2 thresh
; d3 p3
; d4 p2
; d5 p1
; d6 p0
; d7 q0
; d16 q1
; d17 q2
; d18 q3
;
; Outputs:
; d4 op1
; d5 op0
; d6 oq0
; d7 oq1
|filter4_8| PROC
; filter_mask
vabd.u8 d19, d3, d4 ; m1 = abs(p3 - p2)
vabd.u8 d20, d4, d5 ; m2 = abs(p2 - p1)
vabd.u8 d21, d5, d6 ; m3 = abs(p1 - p0)
vabd.u8 d22, d16, d7 ; m4 = abs(q1 - q0)
vabd.u8 d3, d17, d16 ; m5 = abs(q2 - q1)
vabd.u8 d4, d18, d17 ; m6 = abs(q3 - q2)
; only compare the largest value to limit
vmax.u8 d19, d19, d20 ; m1 = max(m1, m2)
vmax.u8 d20, d21, d22 ; m2 = max(m3, m4)
vabd.u8 d17, d6, d7 ; abs(p0 - q0)
vmax.u8 d3, d3, d4 ; m3 = max(m5, m6)
vmov.u8 d18, #0x80
vmax.u8 d23, d19, d20 ; m1 = max(m1, m2)
; hevmask
vcgt.u8 d21, d21, d2 ; (abs(p1 - p0) > thresh)*-1
vcgt.u8 d22, d22, d2 ; (abs(q1 - q0) > thresh)*-1
vmax.u8 d23, d23, d3 ; m1 = max(m1, m3)
vabd.u8 d28, d5, d16 ; a = abs(p1 - q1)
vqadd.u8 d17, d17, d17 ; b = abs(p0 - q0) * 2
veor d7, d7, d18 ; qs0
vcge.u8 d23, d1, d23 ; abs(m1) > limit
; filter() function
; convert to signed
vshr.u8 d28, d28, #1 ; a = a / 2
veor d6, d6, d18 ; ps0
veor d5, d5, d18 ; ps1
vqadd.u8 d17, d17, d28 ; a = b + a
veor d16, d16, d18 ; qs1
vmov.u8 d19, #3
vsub.s8 d28, d7, d6 ; ( qs0 - ps0)
vcge.u8 d17, d0, d17 ; a > blimit
vqsub.s8 d27, d5, d16 ; filter = clamp(ps1-qs1)
vorr d22, d21, d22 ; hevmask
vmull.s8 q12, d28, d19 ; 3 * ( qs0 - ps0)
vand d27, d27, d22 ; filter &= hev
vand d23, d23, d17 ; filter_mask
vaddw.s8 q12, q12, d27 ; filter + 3 * (qs0 - ps0)
vmov.u8 d17, #4
; filter = clamp(filter + 3 * ( qs0 - ps0))
vqmovn.s16 d27, q12
vand d27, d27, d23 ; filter &= mask
vqadd.s8 d28, d27, d19 ; filter2 = clamp(filter+3)
vqadd.s8 d27, d27, d17 ; filter1 = clamp(filter+4)
vshr.s8 d28, d28, #3 ; filter2 >>= 3
vshr.s8 d27, d27, #3 ; filter1 >>= 3
vqadd.s8 d19, d6, d28 ; u = clamp(ps0 + filter2)
vqsub.s8 d26, d7, d27 ; u = clamp(qs0 - filter1)
; outer tap adjustments
vrshr.s8 d27, d27, #1 ; filter = ++filter1 >> 1
veor d6, d26, d18 ; *oq0 = u^0x80
vbic d27, d27, d22 ; filter &= ~hev
vqadd.s8 d21, d5, d27 ; u = clamp(ps1 + filter)
vqsub.s8 d20, d16, d27 ; u = clamp(qs1 - filter)
veor d5, d19, d18 ; *op0 = u^0x80
veor d4, d21, d18 ; *op1 = u^0x80
veor d7, d20, d18 ; *oq1 = u^0x80
bx lr
ENDP ; |filter4_8|
;void vpx_lpf_horizontal_4_dual_neon(uint8_t *s, int p,
; const uint8_t *blimit0,
; const uint8_t *limit0,
; const uint8_t *thresh0,
; const uint8_t *blimit1,
; const uint8_t *limit1,
; const uint8_t *thresh1)
; r0 uint8_t *s,
; r1 int p,
; r2 const uint8_t *blimit0,
; r3 const uint8_t *limit0,
; sp const uint8_t *thresh0,
; sp+4 const uint8_t *blimit1,
; sp+8 const uint8_t *limit1,
; sp+12 const uint8_t *thresh1,
|vpx_lpf_horizontal_4_dual_neon| PROC
push {lr}
ldr r12, [sp, #4] ; load thresh0
vld1.8 {d0}, [r2] ; load blimit0 to first half q
vld1.8 {d2}, [r3] ; load limit0 to first half q
add r1, r1, r1 ; double pitch
ldr r2, [sp, #8] ; load blimit1
vld1.8 {d4}, [r12] ; load thresh0 to first half q
ldr r3, [sp, #12] ; load limit1
ldr r12, [sp, #16] ; load thresh1
vld1.8 {d1}, [r2] ; load blimit1 to 2nd half q
sub r2, r0, r1, lsl #1 ; s[-4 * p]
vld1.8 {d3}, [r3] ; load limit1 to 2nd half q
vld1.8 {d5}, [r12] ; load thresh1 to 2nd half q
vpush {d8-d15} ; save neon registers
add r3, r2, r1, lsr #1 ; s[-3 * p]
vld1.u8 {q3}, [r2@64], r1 ; p3
vld1.u8 {q4}, [r3@64], r1 ; p2
vld1.u8 {q5}, [r2@64], r1 ; p1
vld1.u8 {q6}, [r3@64], r1 ; p0
vld1.u8 {q7}, [r2@64], r1 ; q0
vld1.u8 {q8}, [r3@64], r1 ; q1
vld1.u8 {q9}, [r2@64] ; q2
vld1.u8 {q10}, [r3@64] ; q3
sub r2, r2, r1, lsl #1
sub r3, r3, r1, lsl #1
bl filter4_16
vst1.u8 {q5}, [r2@64], r1 ; store op1
vst1.u8 {q6}, [r3@64], r1 ; store op0
vst1.u8 {q7}, [r2@64], r1 ; store oq0
vst1.u8 {q8}, [r3@64], r1 ; store oq1
vpop {d8-d15} ; restore neon registers
pop {pc}
ENDP ; |vpx_lpf_horizontal_4_dual_neon|
;void vpx_lpf_vertical_4_dual_neon(uint8_t *s, int p,
; const uint8_t *blimit0,
; const uint8_t *limit0,
; const uint8_t *thresh0,
; const uint8_t *blimit1,
; const uint8_t *limit1,
; const uint8_t *thresh1)
; r0 uint8_t *s,
; r1 int p,
; r2 const uint8_t *blimit0,
; r3 const uint8_t *limit0,
; sp const uint8_t *thresh0,
; sp+4 const uint8_t *blimit1,
; sp+8 const uint8_t *limit1,
; sp+12 const uint8_t *thresh1,
|vpx_lpf_vertical_4_dual_neon| PROC
push {lr}
ldr r12, [sp, #4] ; load thresh0
vld1.8 {d0}, [r2] ; load blimit0 to first half q
vld1.8 {d2}, [r3] ; load limit0 to first half q
ldr r2, [sp, #8] ; load blimit1
vld1.8 {d4}, [r12] ; load thresh0 to first half q
ldr r3, [sp, #12] ; load limit1
ldr r12, [sp, #16] ; load thresh1
vld1.8 {d1}, [r2] ; load blimit1 to 2nd half q
sub r2, r0, #4 ; s[-4]
vld1.8 {d3}, [r3] ; load limit1 to 2nd half q
vld1.8 {d5}, [r12] ; load thresh1 to 2nd half q
vpush {d8-d15} ; save neon registers
vld1.u8 {d6}, [r2], r1 ; 00 01 02 03 04 05 06 07
vld1.u8 {d8}, [r2], r1 ; 10 11 12 13 14 15 16 17
vld1.u8 {d10}, [r2], r1 ; 20 21 22 23 24 25 26 27
vld1.u8 {d12}, [r2], r1 ; 30 31 32 33 34 35 36 37
vld1.u8 {d14}, [r2], r1 ; 40 41 42 43 44 45 46 47
vld1.u8 {d16}, [r2], r1 ; 50 51 52 53 54 55 56 57
vld1.u8 {d18}, [r2], r1 ; 60 61 62 63 64 65 66 67
vld1.u8 {d20}, [r2], r1 ; 70 71 72 73 74 75 76 77
vld1.u8 {d7}, [r2], r1 ; 80 81 82 83 84 85 86 87
vld1.u8 {d9}, [r2], r1 ; 90 91 92 93 94 95 96 97
vld1.u8 {d11}, [r2], r1 ; A0 A1 A2 A3 A4 A5 A6 A7
vld1.u8 {d13}, [r2], r1 ; B0 B1 B2 B3 B4 B5 B6 B7
vld1.u8 {d15}, [r2], r1 ; C0 C1 C2 C3 C4 C5 C6 C7
vld1.u8 {d17}, [r2], r1 ; D0 D1 D2 D3 D4 D5 D6 D7
vld1.u8 {d19}, [r2], r1 ; E0 E1 E2 E3 E4 E5 E6 E7
vld1.u8 {d21}, [r2] ; F0 F1 F2 F3 F4 F5 F6 F7
vtrn.8 q3, q4 ; q3 : 00 10 02 12 04 14 06 16 80 90 82 92 84 94 86 96
; q4 : 01 11 03 13 05 15 07 17 81 91 83 93 85 95 87 97
vtrn.8 q5, q6 ; q5 : 20 30 22 32 24 34 26 36 A0 B0 A2 B2 A4 B4 A6 B6
; q6 : 21 31 23 33 25 35 27 37 A1 B1 A3 B3 A5 B5 A7 B7
vtrn.8 q7, q8 ; q7 : 40 50 42 52 44 54 46 56 C0 D0 C2 D2 C4 D4 C6 D6
; q8 : 41 51 43 53 45 55 47 57 C1 D1 C3 D3 C5 D5 C7 D7
vtrn.8 q9, q10 ; q9 : 60 70 62 72 64 74 66 76 E0 F0 E2 F2 E4 F4 E6 F6
; q10: 61 71 63 73 65 75 67 77 E1 F1 E3 F3 E5 F5 E7 F7
vtrn.16 q3, q5 ; q3 : 00 10 20 30 04 14 24 34 80 90 A0 B0 84 94 A4 B4
; q5 : 02 12 22 32 06 16 26 36 82 92 A2 B2 86 96 A6 B6
vtrn.16 q4, q6 ; q4 : 01 11 21 31 05 15 25 35 81 91 A1 B1 85 95 A5 B5
; q6 : 03 13 23 33 07 17 27 37 83 93 A3 B3 87 97 A7 B7
vtrn.16 q7, q9 ; q7 : 40 50 60 70 44 54 64 74 C0 D0 E0 F0 C4 D4 E4 F4
; q9 : 42 52 62 72 46 56 66 76 C2 D2 E2 F2 C6 D6 E6 F6
vtrn.16 q8, q10 ; q8 : 41 51 61 71 45 55 65 75 C1 D1 E1 F1 C5 D5 E5 F5
; q10: 43 53 63 73 47 57 67 77 C3 D3 E3 F3 C7 D7 E7 F7
vtrn.32 q3, q7 ; q3 : 00 10 20 30 40 50 60 70 80 90 A0 B0 C0 D0 E0 F0
; q7 : 04 14 24 34 44 54 64 74 84 94 A4 B4 C4 D4 E4 F4
vtrn.32 q5, q9 ; q5 : 02 12 22 32 42 52 62 72 82 92 A2 B2 C2 D2 E2 F2
; q9 : 06 16 26 36 46 56 66 76 86 96 A6 B6 C6 D6 E6 F6
vtrn.32 q4, q8 ; q4 : 01 11 21 31 41 51 61 71 81 91 A1 B1 C1 D1 E1 F1
; q8 : 05 15 25 35 45 55 65 75 85 95 A5 B5 C5 D5 E5 F5
vtrn.32 q6, q10 ; q6 : 03 13 23 33 43 53 63 73 83 93 A3 B3 C3 D3 E3 F3
; q10: 07 17 27 37 47 57 67 77 87 97 A7 B7 C7 D7 E7 F7
bl filter4_16
sub r0, #2
vmov d0, d11
vmov d1, d13
vmov d2, d15
vmov d3, d17
vmov d11, d12
vmov d12, d14
vmov d13, d16
vst4.8 {d10[0], d11[0], d12[0], d13[0]}, [r0], r1
vst4.8 {d10[1], d11[1], d12[1], d13[1]}, [r0], r1
vst4.8 {d10[2], d11[2], d12[2], d13[2]}, [r0], r1
vst4.8 {d10[3], d11[3], d12[3], d13[3]}, [r0], r1
vst4.8 {d10[4], d11[4], d12[4], d13[4]}, [r0], r1
vst4.8 {d10[5], d11[5], d12[5], d13[5]}, [r0], r1
vst4.8 {d10[6], d11[6], d12[6], d13[6]}, [r0], r1
vst4.8 {d10[7], d11[7], d12[7], d13[7]}, [r0], r1
vst4.8 {d0[0], d1[0], d2[0], d3[0]}, [r0], r1
vst4.8 {d0[1], d1[1], d2[1], d3[1]}, [r0], r1
vst4.8 {d0[2], d1[2], d2[2], d3[2]}, [r0], r1
vst4.8 {d0[3], d1[3], d2[3], d3[3]}, [r0], r1
vst4.8 {d0[4], d1[4], d2[4], d3[4]}, [r0], r1
vst4.8 {d0[5], d1[5], d2[5], d3[5]}, [r0], r1
vst4.8 {d0[6], d1[6], d2[6], d3[6]}, [r0], r1
vst4.8 {d0[7], d1[7], d2[7], d3[7]}, [r0]
vpop {d8-d15} ; restore neon registers
pop {pc}
ENDP ; |vpx_lpf_vertical_4_dual_neon|
; void filter4_16();
; This is a helper function for the loopfilters. The invidual functions do the
; necessary load, transpose (if necessary) and store. This function uses
; registers d8-d15, so the calling function must save those registers.
;
; r0-r3, r12 PRESERVE
; q0 blimit
; q1 limit
; q2 thresh
; q3 p3
; q4 p2
; q5 p1
; q6 p0
; q7 q0
; q8 q1
; q9 q2
; q10 q3
;
; Outputs:
; q5 op1
; q6 op0
; q7 oq0
; q8 oq1
|filter4_16| PROC
; filter_mask
vabd.u8 q11, q3, q4 ; m1 = abs(p3 - p2)
vabd.u8 q12, q4, q5 ; m2 = abs(p2 - p1)
vabd.u8 q13, q5, q6 ; m3 = abs(p1 - p0)
vabd.u8 q14, q8, q7 ; m4 = abs(q1 - q0)
vabd.u8 q3, q9, q8 ; m5 = abs(q2 - q1)
vabd.u8 q4, q10, q9 ; m6 = abs(q3 - q2)
; only compare the largest value to limit
vmax.u8 q11, q11, q12 ; m7 = max(m1, m2)
vmax.u8 q12, q13, q14 ; m8 = max(m3, m4)
vabd.u8 q9, q6, q7 ; abs(p0 - q0)
vmax.u8 q3, q3, q4 ; m9 = max(m5, m6)
vmov.u8 q10, #0x80
vmax.u8 q15, q11, q12 ; m10 = max(m7, m8)
vcgt.u8 q13, q13, q2 ; (abs(p1 - p0) > thresh)*-1
vcgt.u8 q14, q14, q2 ; (abs(q1 - q0) > thresh)*-1
vmax.u8 q15, q15, q3 ; m11 = max(m10, m9)
vabd.u8 q2, q5, q8 ; a = abs(p1 - q1)
vqadd.u8 q9, q9, q9 ; b = abs(p0 - q0) * 2
veor q7, q7, q10 ; qs0
vcge.u8 q15, q1, q15 ; abs(m11) > limit
vshr.u8 q2, q2, #1 ; a = a / 2
veor q6, q6, q10 ; ps0
veor q5, q5, q10 ; ps1
vqadd.u8 q9, q9, q2 ; a = b + a
veor q8, q8, q10 ; qs1
vmov.u16 q4, #3
vsubl.s8 q2, d14, d12 ; ( qs0 - ps0)
vsubl.s8 q11, d15, d13
vcge.u8 q9, q0, q9 ; a > blimit
vqsub.s8 q1, q5, q8 ; filter = clamp(ps1-qs1)
vorr q14, q13, q14 ; hev
vmul.i16 q2, q2, q4 ; 3 * ( qs0 - ps0)
vmul.i16 q11, q11, q4
vand q1, q1, q14 ; filter &= hev
vand q15, q15, q9 ; mask
vmov.u8 q4, #3
vaddw.s8 q2, q2, d2 ; filter + 3 * (qs0 - ps0)
vaddw.s8 q11, q11, d3
vmov.u8 q9, #4
; filter = clamp(filter + 3 * ( qs0 - ps0))
vqmovn.s16 d2, q2
vqmovn.s16 d3, q11
vand q1, q1, q15 ; filter &= mask
vqadd.s8 q2, q1, q4 ; filter2 = clamp(filter+3)
vqadd.s8 q1, q1, q9 ; filter1 = clamp(filter+4)
vshr.s8 q2, q2, #3 ; filter2 >>= 3
vshr.s8 q1, q1, #3 ; filter1 >>= 3
vqadd.s8 q11, q6, q2 ; u = clamp(ps0 + filter2)
vqsub.s8 q0, q7, q1 ; u = clamp(qs0 - filter1)
; outer tap adjustments
vrshr.s8 q1, q1, #1 ; filter = ++filter1 >> 1
veor q7, q0, q10 ; *oq0 = u^0x80
vbic q1, q1, q14 ; filter &= ~hev
vqadd.s8 q13, q5, q1 ; u = clamp(ps1 + filter)
vqsub.s8 q12, q8, q1 ; u = clamp(qs1 - filter)
veor q6, q11, q10 ; *op0 = u^0x80
veor q5, q13, q10 ; *op1 = u^0x80
veor q8, q12, q10 ; *oq1 = u^0x80
bx lr
ENDP ; |filter4_16|
END
| 36.787273 | 79 | 0.432017 |
59f179cb1feea55fb629271868a6e4023627c445 | 3,705 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_449.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_449.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_449.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 %r11
push %r15
push %r8
push %rbp
push %rcx
push %rsi
// Faulty Load
lea addresses_WT+0x1ca59, %r8
nop
inc %r15
movups (%r8), %xmm4
vpextrq $0, %xmm4, %rcx
lea oracles, %r8
and $0xff, %rcx
shlq $12, %rcx
mov (%r8,%rcx,1), %rcx
pop %rsi
pop %rcx
pop %rbp
pop %r8
pop %r15
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'src': {'same': False, 'congruent': 0, 'NT': False, 'type': 'addresses_WT', 'size': 4, 'AVXalign': False}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'same': True, 'congruent': 0, 'NT': False, 'type': 'addresses_WT', 'size': 16, 'AVXalign': False}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'39': 21829}
39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39
*/
| 88.214286 | 2,999 | 0.663428 |
bf7851de272c54f906dce8b119941c9460fef24a | 32,833 | asm | Assembly | Library/Spreadsheet/Spreadsheet/spreadsheetRange.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Library/Spreadsheet/Spreadsheet/spreadsheetRange.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Library/Spreadsheet/Spreadsheet/spreadsheetRange.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 73 | 2018-11-19T20:46:53.000Z | 2022-03-29T00:59:26.000Z | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1991 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: GeoCalc
FILE: spreadsheetRange.asm
AUTHOR: Gene Anderson, Mar 2, 1991
ROUTINES:
Name Description
---- -----------
METHOD SpreadsheetProtectRange Protect the range of cells from being
modified.
METHOD SpreadsheetUnprotectRange Unprotect the range of cells so that
they can be modified.
EXT CheckProtectedCell Check if there are some protected cells in
the input range.
EXT RecalcVisibleRangeGState Recalculate which cells are visible after
resize/scroll/etc.
EXT RangeDrawGrid Draw range for specified range
EXT CheckLargeGrid Check to see if the range we want to draw
is too large to draw in one piece.
EXT RangeDrawLargeGrid Draw a large grid by breaking it up into
pieces.
EXT CheckTranslate Check to see if we need to translate the
range in order to draw the grid.
EXT TranslateRangeInBounds Apply a translation to the gstate in order
to draw the range.
EXT RangeDraw Draw the specified range
EXT CallRangeEnumSelected Call RangeEnum() on selected area with
current draw flags
EXT CallRangeEnum Call RangeEnum() after setting up params
REVISION HISTORY:
Name Date Description
---- ---- -----------
Gene 3/ 2/91 Initial revision
DESCRIPTION:
Range routines for the spreadsheet.
$Id: spreadsheetRange.asm,v 1.1 97/04/07 11:13:39 newdeal Exp $
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
if _PROTECT_CELL
EditCode segment resource
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SpreadsheetProtectRange
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Mark the range of the cells to be protected.
CALLED BY: MSG_SPREADSHEET_PROTECT_RANGE
PASS: *ds:si = SpreadsheetClass object
ds:di = SpreadsheetClass instance data
es = segment of SpreadsheetClass
cl = SpreadsheetProctectionOptions
ax = message #
RETURN: nothing
DESTROYED: ax
SIDE EFFECTS:
PSEUDO CODE/STRATEGY:
* Find out the range of the cells that we have to protect.
* Mark each of the cells in the range to be protected using callback
using RangeEnum.
REVISION HISTORY:
Name Date Description
---- ---- -----------
CL 10/13/94 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
SpreadsheetProtectRange method dynamic SpreadsheetClass,
MSG_SPREADSHEET_PROTECT_RANGE
locals local CellLocals
uses cx, dx, bp
.enter
Assert etype cl, SpreadsheetProtectionOptions
;
; First of all, change the cursor to be a busy cursor. And then
; find out the range of the cells that we have to protect.
;
push si
mov si, di ;ds:si = instance data
call SpreadsheetMarkBusy
cmp cl, SPO_SELECTED_CELLS ;selected range?
jne allCells ;go to all Cell if not
mov ax, ds:[si].SSI_selected.CR_start.CR_row
mov cx, ds:[si].SSI_selected.CR_start.CR_column
mov bx, ds:[si].SSI_selected.CR_end.CR_row
mov dx, ds:[si].SSI_selected.CR_end.CR_column
jmp gotRange
allCells:
mov di, SET_ENTIRE_SHEET
call CallRangeExtentWholeSheet ;(ax,cx) (dx,bx) =
;range of spreadsheet
xchg dx, bx ;(bx,dx) = (r,c)
;
; We don't lock a whole empty spreadsheet. Give error message here if
; the user is trying to do that.
;
cmp ax, -1 ;empty spreadsheet
je error
gotRange:
;
; We have the range in (ax,cx) (bx,dx). Protect all cells in this
; range.
;
mov locals.CL_params.REP_callback.segment, SEGMENT_CS
mov locals.CL_params.REP_callback.offset, offset ProtectCellCB
mov di, mask REF_ALL_CELLS
call CallRangeEnum ;di trashed
;
; Make sure the UI Control is up-to-date
;
pop si ;*ds:si = spreadsheet
call SpreadsheetProtectionUpdateUI ;ax trashed
;
; Everything is done. Change the cursor back
;
quit:
call SpreadsheetMarkNotBusy
.leave
ret
error:
;
; Display the error dialog.
;
pop si
mov si, offset CellProtectEmptyError
call PasteNameNotifyDB
jmp quit
SpreadsheetProtectRange endm
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SpreadsheetCheckProtectedCells
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Check to see if the given range of the cells is protected.
CALLED BY: MSG_SPREADSHEET_CHECK_PROTECTED_CELLS
PASS: *ds:si = SpreadsheetClass object
ds:di = SpreadsheetClass instance data
es = segment of SpreadsheetClass
ss:bp = CellRange
dx = size of CellRange (called remotely)
ax = message #
RETURN: carry = set -- protected cell exists
clear -- no protected cell in the range
DESTROYED: ax
REVISION HISTORY:
Name Date Description
---- ---- -----------
CL 7/ 5/95 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
SpreadsheetCheckProtectedCells method dynamic SpreadsheetClass,
MSG_SPREADSHEET_CHECK_PROTECTED_CELLS
uses cx, dx
.enter
mov ax, ss:[bp].CR_start.CR_row
mov cx, ss:[bp].CR_start.CR_column
mov bx, ss:[bp].CR_end.CR_row
mov dx, ss:[bp].CR_end.CR_column
mov si, di
call CheckProtectedCell
.leave
ret
SpreadsheetCheckProtectedCells endm
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ProtectCellCB
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Callback used by RangeEnum to mark the cell to be protected.
CALLED BY: RangeEnum() through SpreadsheetProtectRange
PASS: (ax, cx) = current cell (r, c)
ss:bp = callback local variables (locals of type CallLocals)
ss:bx = RangeEnumParams
*es:di = cell data if any
carry set if cell has data
RETURN: carry set to abort enumeration
es = seg. addr of cell (updated)
dl = RangeEnumFlags
DESTROYED: nothing
SIDE EFFECTS:
PSEUDO CODE/STRATEGY:
* First of all, make sure the cell in current location is exist. If
not, we have to create one.
* Mark the cell to be protected and exit.
REVISION HISTORY:
Name Date Description
---- ---- -----------
CL 10/13/94 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
ProtectCellCB proc far
locals local CellLocals
uses ax, di, si, ds
.enter inherit
;
; First of all, we have to find out if the current cell is allocated
; or not. If it is not, we have to allocate one.
;
mov dl, 0 ;assume cell exists
jc gotCell ;Branch if cell exists
;
; Cell doesn't exist. Create a new one.
;
mov dl, mask REF_CELL_ALLOCATED
movdw dssi, locals.CL_instanceData ;ds:si = spreadsheet
;instance data
call SpreadsheetCreateEmptyCell
SpreadsheetCellLock ;*es:di = cell data
gotCell:
;
; Turn on the cell protection bit
;
mov di, es:[di] ;es:di = cell data
ornf es:[di].CC_recalcFlags, mask CRF_PROTECTION
SpreadsheetCellDirty ; Dirty the cell data
clc ; don't abort enum
.leave
ret
ProtectCellCB endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SpreadsheetUnprotectRange
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Mark the range of cell to be unprotected, so the content
of the cells can be changed again.
CALLED BY: MSG_SPREADSHEET_UNPROTECT_RANGE
PASS: *ds:si = SpreadsheetClass object
ds:di = SpreadsheetClass instance data
es = segment of SpreadsheetClass
cl = SpreadsheetProctectionOptions
ax = message #
RETURN: nothing
DESTROYED: ax
SIDE EFFECTS:
PSEUDO CODE/STRATEGY:
* Find out the range of the cells that we have to unprotec.
* Unprotect the range by using RangeEnum through callback.
* Notify the edit bar to update itself because the cell may change
from being protected to be unprotected
REVISION HISTORY:
Name Date Description
---- ---- -----------
CL 10/13/94 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
SpreadsheetUnprotectRange method dynamic SpreadsheetClass,
MSG_SPREADSHEET_UNPROTECT_RANGE
locals local CellLocals
uses cx, dx, bp
.enter
Assert etype cl, SpreadsheetProtectionOptions
;
; First of all, change the cursor to be a busy cursor. And then
; find out the range of the cells that we have to unprotect.
;
push si
mov si, di ;ds:si = instance data
call SpreadsheetMarkBusy
cmp cl, SPO_SELECTED_CELLS ;selected range?
jne allCells ;go to all Cell if not
mov ax, ds:[si].SSI_selected.CR_start.CR_row
mov cx, ds:[si].SSI_selected.CR_start.CR_column
mov bx, ds:[si].SSI_selected.CR_end.CR_row
mov dx, ds:[si].SSI_selected.CR_end.CR_column
jmp gotRange
allCells:
mov di, SET_ENTIRE_SHEET
call CallRangeExtentWholeSheet ;(ax,cx) (dx,bx) =
;range of spreadsheet
xchg dx, bx ;(bx,dx) = (r,c)
;
; We don't lock a whole empty spreadsheet. Give error message here if
; the user is trying to do that.
;
cmp ax, -1 ;empty spreadsheet
je error
gotRange:
;
; We have the range in (ax,cx) (bx,dx). Unrotect all cells in this
; range.
;
mov locals.CL_params.REP_callback.segment, SEGMENT_CS
mov locals.CL_params.REP_callback.offset, offset UnprotectCellCB
mov di, mask REF_ALL_CELLS
call CallRangeEnum ;di trashed
;
; Update the related controllers
;
pop si ;*ds:si = spreadsheet
call SpreadsheetProtectionUpdateUI ;ax trashed
;
; Everything is done. Change the cursor back
;
quit:
call SpreadsheetMarkNotBusy
.leave
ret
error:
;
; Display the error dialog.
;
pop si
mov si, offset CellProtectEmptyError
call PasteNameNotifyDB
jmp quit
SpreadsheetUnprotectRange endm
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
UnprotectCellCB
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Callback used by RangeEmnu to unmark the protected cells.
CALLED BY: RangeEnum() through SpreadsheetUnprotectRange
PASS: (ax, cx) = current clee (r,c)
ss:bp = callback local variables (locals of type CallLocals)
ss:bx = RangeEnumParams
*es:di = cell data if any
carry set if cell has data
RETURN: carry set to abort enumeration
es = seg. addr of cell (updated)
dl = RangeEnumFlags
DESTROYED: nothing
SIDE EFFECTS:
PSEUDO CODE/STRATEGY:
* If there is no cell in the current location, then quit.
* If the cell exists, clear the protection bit. BE CAREFULL: we
use the unused bit in CC_recalcFlag to be the protection
bit, so we don't have to allocate an extra byte just for
cell protection.
* We may need to delete the cell if the cell has no data
REVISION HISTORY:
Name Date Description
---- ---- -----------
CL 10/14/94 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
UnprotectCellCB proc far
locals local CellLocals
class SpreadsheetClass
uses ax, di, si, ds
.enter inherit far
;
; If cell at this location doesn't exist, just quit then.
;
jnc quit
EC < call ECCheckInstancePtr >
clr dl ;assume default return
mov di, es:[di] ;es:di = cell data
;
; Clear the protection bit from the cell data
;
andnf es:[di].CC_recalcFlags, not (mask CRF_PROTECTION)
SpreadsheetCellDirty
;
; We need to delete the cell if this cell has no empty, no note and
; no attri.
;
cmp es:[di].CC_type, CT_EMPTY ;empty cell?
jnz quit
tst es:[di].CC_notes.segment ;notes?
jnz quit
tst es:[di].CC_dependencies.segment ;dependencies?
jnz quit
;
; NOTE: this checks agains default column attributes, because if a
; cell is deleted, it will be recreated with those attributes
;
push dx
call ColumnGetDefaultAttrs ;dx = default col attrs
cmp es:[di].CC_attrs, dx ;default attrs?
pop dx
jnz quit
;
; This cell will really be deleted -- unlock it first
;
SpreadsheetCellUnlock
call DeleteCell
quit:
clc
.leave
ret
UnprotectCellCB endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SpreadsheetProtectionUpdateUI
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Update the controllers to reveal whether the cell(s) is/are
protected.
CALLED BY: SpreadsheetProtectRange, SpreadsheetUnprotectRange
PASS: *ds:si = spreadsheet instance data
ds:di = *ds:si
es = seg address of SpreadsheetClass
RETURN: nothing
DESTROYED: ax
SIDE EFFECTS:
PSEUDO CODE/STRATEGY:
REVISION HISTORY:
Name Date Description
---- ---- -----------
CL 10/17/94 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
SpreadsheetProtectionUpdateUI proc near
uses cx, dx, bp
.enter
;
; Update the EditBar Controller
;
mov ax, MSG_META_UI_FORCE_CONTROLLER_UPDATE
mov cx, MANUFACTURER_ID_GEOWORKS
mov dx, GWNT_SPREADSHEET_EDIT_BAR_CHANGE
call ObjCallInstanceNoLock
.leave
ret
SpreadsheetProtectionUpdateUI endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CheckProtectedCell
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Check if there are some protected cells in the input range.
CALLED BY: UTILITY for cell protection feature
PASS: ds:si = Spreadsheet instance
ax,cx = r, c of the top-left corner
bx,dx = r, c of the bottom-right corner
RETURN: carry set if the range contains protected cells;
otherwise, carry is clear
DESTROYED: nothing
SIDE EFFECTS:
PSEUDO CODE/STRATEGY:
* Clear CL_data1 because we need it to tell us whether there exists
any protected cell in the range. If it does, CL_data1 will be
set to non-zero.
* Use RangeEnum to check all the cells in the range
* Set the apropriate carry flag based on CL_data1
REVISION HISTORY:
Name Date Description
---- ---- -----------
CL 10/17/94 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
CheckProtectedCell proc far
locals local CellLocals
uses di
.enter
EC< call ECCheckInstancePtr >
;
; Init some of the local variables. CL_data1 is used to tell whether
; there exists any protected cell(s) in the range. Orginally, it should
; be set to 0.
;
clr locals.CL_data1
mov locals.CL_params.REP_callback.segment, SEGMENT_CS
mov locals.CL_params.REP_callback.offset, offset CheckProtectedCellCB
clr di ;use default flag
call CallRangeEnum ;di trashed
;
; If CL_data1 is non-zero, that means there exists some protected
; in the range. We have to correct carry flag for the return.
;
tst locals.CL_data1
jnz exit
stc ; no protected cell
exit:
cmc
.leave
ret
CheckProtectedCell endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CheckProtectedCellCB
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Callback used to check if the cell is protected.
CALLED BY: RangeEnum() through CheckProtectCell()
PASS: (ax, cx) = current cell (r, c)
ss:bp = callback local variables (locals of type CallLocals)
ss:bx = RangeEnumParams
*es:di = cell data if any
carry set if cell has data
RETURN: carry set to abort enumeration
es = seg. addr of cell (updated)
dl = RangeEnumFlags
locals.CL_data1 is non_zero if a protected cell is found.
DESTROYED: nothing
SIDE EFFECTS:
PSEUDO CODE/STRATEGY:
REVISION HISTORY:
Name Date Description
---- ---- -----------
CL 10/17/94 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
CheckProtectedCellCB proc far
locals local CellLocals
uses di
.enter inherit
EC < ERROR_NC -1 >
;
; Find out if this cell is protected or not. If it is, then set
; locals.CL_data1 to be non-zero, and abort the enum
;
mov di, es:[di] ;es:di = cell data
test es:[di].CC_recalcFlags, mask CRF_PROTECTION
jz quit ;quit if not protected
mov locals.CL_data1, 1 ;cell is protected
stc ;abort enum since the protected
;cell is found
quit:
clr dl
.leave
ret
CheckProtectedCellCB endp
EditCode ends
endif
DrawCode segment resource
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
RecalcVisibleRangeGState
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Recalculate which cells are visible after resize/scroll/etc.
CALLED BY: SpreadsheetDraw()
PASS: ds:si - ptr to Spreadsheet instance
di - handle of GState
RETURN: none
DESTROYED: none
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
eca 5/19/91 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
RecalcVisibleRangeGState proc near
class SpreadsheetClass
uses ax, bx, cx, dx
locals local CellLocals
.enter inherit
EC < call ECCheckInstancePtr ;>
call GetWinBounds32
lea bx, ss:locals.CL_docBounds.RD_right ;ss:bx <- ptr to PointDWord
call Pos32ToVisCellFar ;(ax,cx) <- lower right cell
mov ds:[si].SSI_visible.CR_end.CR_row, ax
mov ds:[si].SSI_visible.CR_end.CR_column, cx
.leave
ret
RecalcVisibleRangeGState endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
RangeDrawGrid
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Draw range for specified range
CALLED BY: RangeDraw()
PASS: ds:si - ptr to Spreadsheet instance
(ax,cx)
(bx,dx) - range of cells to draw (r,c)
ss:bp - inherited CellLocals
CL_origin - origin for relative draw
di - handle of GState
RETURN: none
DESTROYED: none
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
sets CL_params.REP_bounds
REVISION HISTORY:
Name Date Description
---- ---- -----------
eca 5/23/91 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
RangeDrawGrid proc near
uses ax, bx, cx, dx
class SpreadsheetClass
locals local CellLocals
EC < call ECCheckInstancePtr ;>
.enter inherit
EC < push bp ;>
EC < mov bp, bx ;>
EC < call ECCheckOrderedCoords ;>
EC < pop bp ;>
mov ss:locals.CL_params.REP_bounds.R_left, cx
mov ss:locals.CL_params.REP_bounds.R_top, ax
mov ss:locals.CL_params.REP_bounds.R_right, dx
mov ss:locals.CL_params.REP_bounds.R_bottom, bx
;
; Set the line draw mask to 50% to cool grid lines
;
push ax, dx
mov al, SDM_50 ;al <- SysDrawMask
call GrSetLineMask
;
; Set the line width to 0.0, so it doesn't scale
;
clr ax, dx ;dx.ax <- 0.0
call GrSetLineWidth
pop ax, dx
;
; Get the range bounds, relative to specified origin
;
call GetRangeRelBounds32
;
; We need to handle grids for large ranges specially.
;
call CheckLargeGrid
jnc notLarge
call RangeDrawLargeGrid
jmp quit
notLarge:
;
; If the grid is off the legal drawing area we need to apply a
; translation to get it legal.
;
call CheckTranslate
pushf ;save "translated" flag (carry)
jnc coordsOK
call GrSaveState
call TranslateRangeInBounds
coordsOK:
;
; Draw a vertical line at the left edge of each column
;
mov ax, ss:locals.CL_docBounds.RD_left.low
mov bx, ss:locals.CL_docBounds.RD_top.low
mov dx, ss:locals.CL_docBounds.RD_bottom.low
mov cx, ss:locals.CL_params.REP_bounds.R_left
columnLoop:
call GrDrawVLine
cmp cx, ss:locals.CL_params.REP_bounds.R_right
ja doneColumns ;branch if done
push dx
call ColumnGetWidth ;dx <- column width
add ax, dx ;ax <- next x position
pop dx
inc cx ;cx <- next column
jmp columnLoop
doneColumns:
;
; Draw a horizontal line at the top of each row
;
mov cx, ss:locals.CL_docBounds.RD_right.low
mov bx, ss:locals.CL_docBounds.RD_top.low
mov ax, ss:locals.CL_params.REP_bounds.R_top
rowLoop:
push ax
mov ax, ss:locals.CL_docBounds.RD_left.low
call GrDrawHLine
pop ax ;ax <- row #
cmp ax, ss:locals.CL_params.REP_bounds.R_bottom
ja doneRows ;branch if more rows
call RowGetHeight ;dx <- column width
add bx, dx ;bx <- next y position
inc ax ;ax <- next row
jmp rowLoop
doneRows:
popf ;restore "translated" flag
jnc quit
call GrRestoreState
quit:
;
; Set the line thickness back to 1.0 for other operations
;
mov dx, 1
clr ax ;dx.ax <- 1.0
call GrSetLineWidth
.leave
ret
RangeDrawGrid endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CheckLargeGrid
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Check to see if the range we want to draw is too large to
draw in one piece.
CALLED BY: RangeDrawGrid
PASS: ss:bp = Inheritable CellLocals
RETURN: carry set if we need to break up the draw.
DESTROYED: nothing
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
jcw 9/13/91 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
CheckLargeGrid proc near
uses ax, bx
locals local CellLocals
.enter inherit
;
; Check height.
;
mov ax, locals.CL_docBounds.RD_bottom.low
mov bx, locals.CL_docBounds.RD_bottom.high
sub ax, locals.CL_docBounds.RD_top.low
sbb bx, locals.CL_docBounds.RD_top.high
tst bx
jnz largeGrid
cmp ax, LARGEST_POSITIVE_COORDINATE
jae largeGrid
;
; Check width.
;
mov ax, locals.CL_docBounds.RD_right.low
mov bx, locals.CL_docBounds.RD_right.high
sub ax, locals.CL_docBounds.RD_left.low
sbb bx, locals.CL_docBounds.RD_left.high
tst bx
jnz largeGrid
cmp ax, LARGEST_POSITIVE_COORDINATE
jae largeGrid
clc ; Signal: small grid
quit:
.leave
ret
largeGrid:
stc ; Signal: large grid
jmp quit
CheckLargeGrid endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
RangeDrawLargeGrid
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Draw a large grid by breaking it up into pieces.
CALLED BY: RangeDrawGrid
PASS: ss:bp = Inheritable CellLocals
di = GState to use
ds:si = Spreadsheet instance
RETURN: nothing
DESTROYED: nothing
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
jcw 9/13/91 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
RangeDrawLargeGrid proc near
uses ax, bx, cx, dx
locals local CellLocals
.enter inherit
EC < call ECCheckInstancePtr ;>
;
; Break the grid into four pieces.
;
mov ax, ss:locals.CL_params.REP_bounds.R_top
mov bx, ss:locals.CL_params.REP_bounds.R_bottom
mov cx, ss:locals.CL_params.REP_bounds.R_left
mov dx, ss:locals.CL_params.REP_bounds.R_right
push dx ; Save old right
push cx ; Save old left
push bx ; Save old bottom
;
; Top-Left quadrant first...
;
push dx ; Save right edge
sub bx, ax
shr bx, 1
add bx, ax ; bx <- new bottom
sub dx, cx
shr dx, 1
add dx, cx ; dx <- new right
call RangeDrawGrid ; Draw top-left
;
; Set left edge to current right edge (+1)
;
mov cx, dx ; cx <- old right
inc cx
pop dx ; Restore right edge
;
; Top-Right quadrant next...
;
call RangeDrawGrid ; Draw top-right
;
; Lower-Left quadrant next...
;
mov ax, bx ; ax <- new top
inc ax
pop bx ; Restore old bottom
mov dx, cx ; dx <- new right edge
dec dx
pop cx ; Restore old left
call RangeDrawGrid ; Draw lower-left
;
; Lower-Right quadrant next...
;
mov cx, dx ; cx <- new left
inc cx
pop dx ; Restore old right
call RangeDrawGrid ; Draw lower-right
.leave
ret
RangeDrawLargeGrid endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CheckTranslate
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Check to see if we need to translate the range in order to
draw the grid.
CALLED BY: RangeDrawGrid
PASS: ss:bp = Inheritable CellLocals
RETURN: carry set if a translation is required
DESTROYED: nothing
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
jcw 9/13/91 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
CheckTranslate proc near
uses ax
locals local CellLocals
.enter inherit
mov ax, ss:locals.CL_docBounds.RD_bottom.high
or ax, ss:locals.CL_docBounds.RD_right.high
jnz translate
mov ax, LARGEST_POSITIVE_COORDINATE
cmp ss:locals.CL_docBounds.RD_bottom.low, ax
jae translate
cmp ss:locals.CL_docBounds.RD_right.low, ax
jae translate
clc ; Signal: no translation needed
quit:
.leave
ret
translate:
stc ; Signal: needs translation
jmp quit
CheckTranslate endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
TranslateRangeInBounds
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Apply a translation to the gstate in order to draw the range.
CALLED BY: RangeDrawGrid
PASS: ss:bp = Inheritable CellLocals
di = GState to transform
RETURN: nothing
DESTROYED: nothing
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
jcw 9/13/91 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
TranslateRangeInBounds proc near
uses ax, bx, cx, dx
locals local CellLocals
.enter inherit
mov dx, locals.CL_docBounds.RD_left.high
mov cx, locals.CL_docBounds.RD_left.low
mov bx, locals.CL_docBounds.RD_top.high
mov ax, locals.CL_docBounds.RD_top.low
call GrApplyTranslationDWord
sub locals.CL_docBounds.RD_bottom.low, ax
sbb locals.CL_docBounds.RD_bottom.high, bx
sub locals.CL_docBounds.RD_right.low, cx
sbb locals.CL_docBounds.RD_right.high, dx
clr ax
mov locals.CL_docBounds.RD_top.low, ax
mov locals.CL_docBounds.RD_top.high, ax
mov locals.CL_docBounds.RD_left.low, ax
mov locals.CL_docBounds.RD_left.high, ax
.leave
ret
TranslateRangeInBounds endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
RangeDraw
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Draw the specified range
CALLED BY: SpreadsheetDrawRange(), SpreadsheetDraw()
PASS: ds:si - instance data (SpreadsheetClass)
(ax,cx)
(bx,dx) - range of cells to draw (r,c)
di - handle of GState
ss:bp - inherited CellLocals
CL_origin - relative draw origin
CL_drawFlags - SpreadsheetDrawFlags
RETURN: none
DESTROYED: none
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
eca 3/ 2/91 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
RangeDraw proc far
uses ax, bx, cx, dx, di
class SpreadsheetClass
locals local CellLocals
.enter inherit
EC < call ECCheckInstancePtr ;>
EC < push bp ;>
EC < mov bp, bx ;>
EC < call ECCheckOrderedCoords ;>
EC < pop bp ;>
mov ss:locals.CL_gstate, di ;pass GState
;
; Draw the range of cells
;
clr {byte}ss:locals.CL_data1 ;border flags
clr di ;only cells w/data
mov ss:locals.CL_params.REP_callback.segment, SEGMENT_CS
mov ss:locals.CL_params.REP_callback.offset, offset CellDrawInt
call CallRangeEnum
;
; Draw any cells in that are overlapped by other cells.
; Note that we only call back for rows that are marked
; as having overlap, but for all cells in that row.
;
mov di, mask REF_MATCH_ROW_FLAGS or \
mask REF_ALL_CELLS
mov ss:locals.CL_params.REP_matchFlags, mask SRF_HAS_OVERLAP
mov ss:locals.CL_data2, -1
mov ss:locals.CL_data3, -1
mov ss:locals.CL_params.REP_callback.segment, SEGMENT_CS
mov ss:locals.CL_params.REP_callback.offset, offset CellDrawOverlap
call CallRangeEnum
;
; Draw the grid lines -- NOTE: we do this after the cells so that
; the gridlines consistently appear (otherwise they appear semi-
; randomly if a cell has a background color, at least in printing)
; but before cell borders so that those consistently appear.
;
test ss:locals.CL_drawFlags, mask SDF_DRAW_GRID
jz skipGridDraw
mov di, ss:locals.CL_gstate
call RangeDrawGrid
skipGridDraw:
;
; Draw the borders for the range, if any
;
tst {byte}ss:locals.CL_data1 ;any borders to draw?
jz noBorders ;branch if no borders
clr di ;only cells w/data
mov ss:locals.CL_params.REP_callback.segment, SEGMENT_CS
mov ss:locals.CL_params.REP_callback.offset, offset CellDrawBorders
call CallRangeEnum
noBorders:
;
; If this is our GState, reset the area mask and color for
; any further drawing.
;
mov di, ss:locals.CL_gstate
cmp di, ds:[si].SSI_gstate
jne noReset ;branch if not our GState
mov ax, C_BLACK or (CF_INDEX shl 8)
call GrSetAreaColor
mov al, SDM_100
call GrSetAreaMask
noReset:
.leave
ret
RangeDraw endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CallRangeEnumSelected
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Call RangeEnum() on selected area with current draw flags
CALLED BY: ds:si - ptr to Spreadsheet instance
ss:bp - ptr to CellLocals:
CL_data1 - data word #1
CL_data2 - data word #2
CL_data3 - data word #3
CL_params.REP_callback - fptr to callback
di.low - RangeEnumFlags
RETURN: none
DESTROYED: di
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
eca 5/ 8/91 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
CallRangeEnumSelected proc far
uses ax, bx, cx, dx
class SpreadsheetClass
locals local CellLocals
.enter inherit
EC < call ECCheckInstancePtr ;>
mov ax, ds:[si].SSI_selected.CR_start.CR_row
mov cx, ds:[si].SSI_selected.CR_start.CR_column
mov bx, ds:[si].SSI_selected.CR_end.CR_row
mov dx, ds:[si].SSI_selected.CR_end.CR_column
call CallRangeEnum
.leave
ret
CallRangeEnumSelected endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CallRangeEnum
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Call RangeEnum() after setting up params
CALLED BY: UTILITY
PASS: ds:si - instance data (SpreadsheetClass)
(ax,cx)
(bx,dx) - range of cells to enumerate (r,c)
ss:bp - ptr to CellLocals:
CL_gstate - handle of GState, if needed
CL_drawFlags - SpreadsheetDrawFlags, if needed
CL_data1 - data word #1
CL_data2 - data word #2
CL_data3 - data word #3
CL_params.REP_callback - fptr to callback
CL_origin - relative draw origin
di.low - RangeEnumFlags
RETURN: none
DESTROYED: di
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
eca 2/12/91 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
CallRangeEnum proc far
uses ax, bx, cx, dx
class SpreadsheetClass
locals local CellLocals
.enter inherit
EC < call ECCheckInstancePtr ;>
;
; Store arguments passed in registers
;
mov ss:locals.CL_params.REP_bounds.R_left, cx
mov ss:locals.CL_params.REP_bounds.R_top, ax
mov ss:locals.CL_params.REP_bounds.R_right, dx
mov ss:locals.CL_params.REP_bounds.R_bottom, bx
mov ss:locals.CL_instanceData.segment, ds
mov ss:locals.CL_instanceData.offset, si
;
; Set up other arguments
;
mov dx, di ;dl <- RangeEnumFlags
mov ss:locals.CL_styleToken, -1 ;no styles set yet
;
; Call RangeEnum() to callback for specified cells
;
lea bx, ss:locals.CL_params ;ss:bx <- ptr to args
CheckHack <offset SSI_cellParams eq 0 >
call RangeEnum
.leave
ret
CallRangeEnum endp
DrawCode ends
| 27.089934 | 79 | 0.613681 |
64d271c92b45e1e40a295d8f18cd6032d539f647 | 656 | asm | Assembly | subprojects/kernel/src/arch/i386/tss.asm | SlumberousForests/octOs | c1454ded1c42d83811a7c6bfcbbdfcb88bcae527 | [
"MIT"
] | 9 | 2019-10-25T10:11:43.000Z | 2021-11-09T00:16:20.000Z | subprojects/kernel/src/arch/i386/tss.asm | SlumberousForests/octOs | c1454ded1c42d83811a7c6bfcbbdfcb88bcae527 | [
"MIT"
] | 7 | 2019-10-24T16:32:37.000Z | 2021-07-19T13:33:56.000Z | subprojects/kernel/src/arch/i386/tss.asm | SlumberousForests/octOs | c1454ded1c42d83811a7c6bfcbbdfcb88bcae527 | [
"MIT"
] | 2 | 2019-10-24T18:32:02.000Z | 2022-02-19T23:22:35.000Z | tss_entry:
dd 0x00000000 ; prev_tss: unused
dd 0x00000000 ; esp0: the stack pointer which needs to be loaded when kernel mode is entered
dd 0x00000010 ; ss0: the kernel stack segment (the data segment in the GDT)
dd 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ; i won't use the rest of the TSS
; because i'm using software task switching
tss_limit equ $ - tss_entry
load_tss:
mov ax, 00101011b ; the address is 2b because: it's the 5th GDT selector and each entry is 8 bytes long
ltr ax ; loads the address of the TSS segment into the task state register
ret | 54.666667 | 110 | 0.640244 |
18b6af0e220af74ce671030a7671a589c6ff29a3 | 2,419 | asm | Assembly | Microprocessor/HexConvertor.asm | Nmane1612/Nihar-Mane | aa4db52a384f706a431c994e4e12d8e5e0cd8402 | [
"Apache-2.0"
] | 3 | 2019-12-27T06:07:37.000Z | 2020-07-01T08:51:32.000Z | Microprocessor/HexConvertor.asm | Nihar16/Personal-Repository | 0d319eeb8dbfa3f7c3eb8501829939ecd6923464 | [
"MIT"
] | null | null | null | Microprocessor/HexConvertor.asm | Nihar16/Personal-Repository | 0d319eeb8dbfa3f7c3eb8501829939ecd6923464 | [
"MIT"
] | null | null | null | ; hex convertor.
; this example converts a 2 digit hexadecimal number
; into a numeric value and then into decimal/ascii string representation,
; and finally it prints out the result in binary code.
; to see decimal string:
; 1. click "vars"
; 2. click "result" variable
; 3. enter "3" for the elements and "ascii" for show as.
name "hex"
org 100h
jmp start
; source hex value is 2 char string.
; numeric value is stored into temp,
; and string decimal value is stored into result.
source db '1b', 0 ; 1bh is converted to 27 (decimal) 00011011b (binary)
result db '000', 0
temp dw ?
start:
; convert first digit to value 0..15 from ascii:
mov al, source[0]
cmp al, '0'
jae f1
f1:
cmp al, '9'
ja f2 ; jumps only if not '0' to '9'.
sub al, 30h ; convert char '0' to '9' to numeric value.
jmp num1_ready
f2:
; gets here if it's 'a' to 'f' case:
or al, 00100000b ; remove upper case (if any).
sub al, 57h ; convert char 'a' to 'f' to numeric value.
num1_ready:
mov bl, 16
mul bl ; ax = al * bl
mov temp, ax
; convert second digit to value 0..15 from ascii:
mov al, source[1]
cmp al, '0'
jae g1
g1:
cmp al, '9'
ja g2 ; jumps only if not '0' to '9'.
sub al, 30h ; convert char '0' to '9' to numeric value.
jmp num2_ready
g2:
; gets here if it's 'a' to 'f' case:
or al, 00100000b ; remove upper case (if any).
sub al, 57h ; convert char 'a' to 'f' to numeric value.
num2_ready:
xor ah, ah
add temp, ax
; convertion from hex string complete!
push temp ; store original temp value.
; convert to decimal string,
; it has to be 3 decimal digits or less:
mov di, 2 ; point to top of the string.
next_digit:
cmp temp, 0
je stop
mov ax, temp
mov bl, 10
div bl ; al = ax / operand, ah = remainder.
mov result[di], ah
add result[di], 30h ; convert to ascii.
xor ah, ah
mov temp, ax
dec di ; next digit in string.
jmp next_digit
stop:
pop temp ; re-store original temp value.
; print result in binary:
mov bl, b.temp
mov cx, 8
print: mov ah, 2 ; print function.
mov dl, '0'
test bl, 10000000b ; test first bit.
jz zero
mov dl, '1'
zero: int 21h
shl bl, 1
loop print
; print binary suffix:
mov dl, 'b'
int 21h
; wait for any key press:
mov ah, 0
int 16h
ret ; return to operating system. | 18.898438 | 76 | 0.623398 |
c5d4483f35e0d5b779fdbd8f2db4300cdac74c6a | 798 | asm | Assembly | data/pokemon/base_stats/tentacruel.asm | AtmaBuster/pokeplat-gen2 | fa83b2e75575949b8f72cb2c48f7a1042e97f70f | [
"blessing"
] | 6 | 2021-06-19T06:41:19.000Z | 2022-02-15T17:12:33.000Z | data/pokemon/base_stats/tentacruel.asm | AtmaBuster/pokeplat-gen2-old | 01e42c55db5408d72d89133dc84a46c699d849ad | [
"blessing"
] | null | null | null | data/pokemon/base_stats/tentacruel.asm | AtmaBuster/pokeplat-gen2-old | 01e42c55db5408d72d89133dc84a46c699d849ad | [
"blessing"
] | 2 | 2021-08-11T19:47:07.000Z | 2022-01-01T07:07:56.000Z | db 0 ; species ID placeholder
db 80, 70, 65, 100, 80, 120
; hp atk def spd sat sdf
db WATER, POISON ; type
db 60 ; catch rate
db 205 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_F50 ; gender ratio
db 20 ; step cycles to hatch
INCBIN "gfx/pokemon/tentacruel/front.dimensions"
db GROWTH_SLOW ; growth rate
dn EGG_WATER_3, EGG_WATER_3 ; egg groups
db 70 ; happiness
; tm/hm learnset
tmhm WATER_PULSE, TOXIC, HAIL, HIDDEN_POWER, ICE_BEAM, BLIZZARD, HYPER_BEAM, PROTECT, RAIN_DANCE, GIGA_DRAIN, FRUSTRATION, RETURN, DOUBLE_TEAM, SLUDGE_BOMB, FACADE, SECRET_POWER, REST, ATTRACT, THIEF, BRINE, ENDURE, PAYBACK, GIGA_IMPACT, SWORDS_DANCE, CAPTIVATE, SLEEP_TALK, NATURAL_GIFT, POISON_JAB, SWAGGER, SUBSTITUTE, CUT, SURF, WATERFALL, DIVE, ICY_WIND, KNOCK_OFF, SNORE
; end
| 39.9 | 378 | 0.740602 |
a09dd47d3ff7d6db690698d044ee885b89d35082 | 522 | asm | Assembly | verify/output/real_write.alfy.asm | alexandruradovici/alf-alfy-asm-public | 43a73cc13c38f39125620fb9bd566c261cff1c73 | [
"BSD-2-Clause"
] | null | null | null | verify/output/real_write.alfy.asm | alexandruradovici/alf-alfy-asm-public | 43a73cc13c38f39125620fb9bd566c261cff1c73 | [
"BSD-2-Clause"
] | 2 | 2017-05-18T20:29:57.000Z | 2017-05-19T19:03:07.000Z | verify/output/real_write.alfy.asm | alexandruradovici/alf-alfy-asm-language-public | 43a73cc13c38f39125620fb9bd566c261cff1c73 | [
"BSD-2-Clause"
] | null | null | null | start:
readnumber r2
set r3 0
store r3 r2
set r2 undefined
load r2 r2
push r2
run real_write
set r2 4
pushsp
pop r3
add r3 r3 r2
push r3
popsp
mov r2 r1
stop
real_write:
push r0
pushsp
pop r0
set r2 4
sub r2 r0 r2
push r2
popsp
set r3 12
load r3 r3
set r4 0
store r4 r3
pop r3
set r4 4
store r4 r3
set r3 4
load r3 r3
set r4 1000
mod r5 r3 r4
set r3 4
store r3 r5
set r3 0
load r3 r3
writenumber r3
write undefined
set r3 4
load r3 r3
writenumber r3
push r0
popsp
pop r0
ret
| 10.653061 | 17 | 0.685824 |
8572845f8182dc1e65ae64b9907e4db537ee97ad | 1,466 | asm | Assembly | compile.asm | StraDaMa/mmbn6-pikachu-boss-battle | 0bc38a6a83c3971541bf20ed55583df3ab357a90 | [
"MIT"
] | 7 | 2021-04-04T13:38:05.000Z | 2022-03-31T01:33:46.000Z | compile.asm | StraDaMa/mmbn6-pikachu-boss-battle | 0bc38a6a83c3971541bf20ed55583df3ab357a90 | [
"MIT"
] | null | null | null | compile.asm | StraDaMa/mmbn6-pikachu-boss-battle | 0bc38a6a83c3971541bf20ed55583df3ab357a90 | [
"MIT"
] | 1 | 2021-10-02T23:15:01.000Z | 2021-10-02T23:15:01.000Z | .gba
.relativeinclude on
.if _version == 1
@INPUT_ROM equ "input_jp.gba"
@OUTPUT_ROM equ "ROCKEXE6_FXX_BR6J00.gba"
;Count's sprite
@CODE_FREESPACE_START equ 0x082EFE48
@CODE_FREESPACE_SIZE equ 0x082F3224 - 0x082EFE48
.else
@INPUT_ROM equ "input_us.gba"
@OUTPUT_ROM equ "MEGAMAN6_FXX_BR6E00.gba"
;Unused Proto Soul sprite sheet
@CODE_FREESPACE_START equ 0x081CA740
@CODE_FREESPACE_SIZE equ 0x5460+0x58C0
.endif
.open @INPUT_ROM, @OUTPUT_ROM, 0x08000000
.include "macros/version_macros.asm"
.include "macros/attack_macros.asm"
.include "macros/npc_macros.asm"
.include "macros/map_flag_listener_macros.asm"
.include "macros/map_cutscene_macros.asm"
.include "macros/chip_macros.asm"
.include "defines.asm"
;Routines here
.org @CODE_FREESPACE_START
.area @CODE_FREESPACE_SIZE
.include "navis/navis_code.asm"
.include "sprite/sprite_code.asm"
.include "objects/objects_code.asm"
.include "map/map_code.asm"
.include "chips/chips_code.asm"
.pool
.endarea
;General writes here
.include "navis/navis.asm"
.include "sprite/sprite.asm"
.include "objects/objects.asm"
.include "map/map.asm"
.include "chips/chips.asm"
.include "text/text.asm"
;End of ROM freespace writes
.vorg 0x087FE380, 0x087FF500
.include "navis/navis_freespace.asm"
.include "sprite/sprite_freespace.asm"
.include "objects/objects_freespace.asm"
.include "map/map_freespace.asm"
.include "chips/chips_freespace.asm"
.include "text/text_freespace.asm"
.close
;eof | 25.719298 | 49 | 0.778308 |
68f5c495e5de3c2609dd7f37261befa02f416f10 | 12,555 | asm | Assembly | M-OS-6502/MOS_monitor.asm | mkeller0815/MOUSE2Go | 23215ce81b73aef4c603c77951afe21b2b60b967 | [
"MIT"
] | 23 | 2017-08-30T20:32:24.000Z | 2022-01-04T06:04:03.000Z | M-OS-6502/MOS_monitor.asm | mkeller0815/MOUSE2Go | 23215ce81b73aef4c603c77951afe21b2b60b967 | [
"MIT"
] | null | null | null | M-OS-6502/MOS_monitor.asm | mkeller0815/MOUSE2Go | 23215ce81b73aef4c603c77951afe21b2b60b967 | [
"MIT"
] | 6 | 2017-12-12T18:29:42.000Z | 2021-12-06T04:50:59.000Z | ;
; M-OS monitor programm
;
; Character set
.alias AsciiCC $03 ; break (Control-C) ASCCI character
.alias AsciiBS $08 ; backspace ASCII character
.alias AsciiLF $0A ; line feed ASCII character
.alias AsciiCR $0D ; carriage return ASCII character
.alias AsciiSP $20 ; space ASCII character
.alias AsciiDS $2D ; dash/minus ASCII character
.alias AsciiDEL $7F ; DEL ASCII character
;
; M-OS monitor main loop
;
.scope
m_start:
.invoke print MS_WELCOME ; print welcome
m_main: ; monitor main loop
jsr m_clear_buffer ; clear input buffer
jsr m_show_prompt ; show initial prompt
_wait:
jsr j_rchr ; read character
bcs _wait ; wait for character
cmp #AsciiCR ; check if carriage return
beq m_parse ; parse buffer
cmp #AsciiLF ; check if line feed
beq m_parse ; parse buffer
jsr j_wchr ; local echo character
ldx K_BUF_P ; load current bufferpointer
sta K_BUFFER,x ; put character to buffer
inx ; increment bufferpointer
stx K_BUF_P ; save buffer pointer
cpx #K_BUF_LEN ; check for end of buffer
beq m_parse ; if end of buffer -> parse
jmp _wait ; next character
m_parse:
; code for parsing commands here
ldx #$00 ; set index to 0
lda K_BUFFER,x ; load first character
* cmp m_cmd_list,x ; compare to current command
beq m_cmdjmp ; command found
inx ; increment index
cpx m_cmd_num ; end of command list?
bne - ; next command
.invoke print MS_CMD_ERROR ; unknown command
pha ; save A
lda #$22 ; print "
jsr j_wchr
pla ; print command character
jsr j_wchr
lda #$22
jsr j_wchr ; print "
lda #$20
jsr j_wchr
jmp m_parse_end
m_cmdjmp:
.invoke print MS_OK
txa ; index to accumulator
asl ; x2
tax
lda m_cmd_jumptable,x
sta K_VAR1_L
inx
lda m_cmd_jumptable,x
sta K_VAR1_H
jmp (K_VAR1_L) ; jump to command
m_parse_end:
jmp m_main ; back to mainloop
.scend
m_cmd_num:
.byte 12
m_cmd_list:
.byte "acdfghimorsv"
m_cmd_jumptable:
.word m_cmd_assemble
.word m_cmd_chess
.word m_cmd_disass
.word m_cmd_fill
.word m_cmd_go
.word m_cmd_help
.word m_cmd_input
.word m_cmd_memdump
.word m_cmd_output
.word m_cmd_reset
.word m_cmd_show
.word m_cmd_vtl2
m_cmd_chess:
jmp CHESS ; jump to chess program
m_cmd_vtl2:
jmp v_startx ; jump to vtl2 interpreter
m_cmd_reset:
jmp ($fffc) ; jump to reset vector
m_cmd_show:
ldx #$02 ; bad hack to skip first blank
jsr j_a2b ; parse high byte
sta K_VAR1_H ; store high byte
jsr j_a2b ; parse low byte
sta K_VAR1_L ; store low byte
.invoke linefeed
ldx #0
lda (K_VAR1_L,X) ; load value
pha
jsr j_hex8out ; show hex value
.invoke space
pla
jsr j_bin8out
jmp m_main ; back to parse
m_cmd_memdump:
ldx #$02 ; bad hack to skip first blank
jsr j_a2b ; parse high byte
sta K_VAR1_H ; store high byte
jsr j_a2b ; parse low byte
sta K_VAR1_L ; store low byte
jsr j_a2b ; parse number of columns
sta K_VAR2_L ; store value
jsr j_a2b ; parse number of rows
sta K_VAR2_H ; store value
jsr m_dump_mem
.invoke linefeed
jmp m_parse_end ; back to parse
m_cmd_disass:
ldx #$02 ; fist character of address
jsr j_a2b ; parse high byte
sta K_VAR1_H ; store high byte
jsr j_a2b ; parse low byte
sta K_VAR1_L ; store low byte
jmp DSTART ; jump to parsed address
m_cmd_assemble:
ldx #$02 ; fist character of address
jsr j_a2b ; parse high byte
sta K_VAR1_H ; store high byte
jsr j_a2b ; parse low byte
sta K_VAR1_L ; store low byte
jmp ASTART ; start assembler
m_cmd_go:
ldx #$02 ; fist character of address
jsr j_a2b ; parse high byte
sta K_VAR1_H ; store high byte
jsr j_a2b ; parse low byte
sta K_VAR1_L ; store low byte
jmp (K_VAR1_L) ; jump to parsed address
m_cmd_help:
.invoke print MS_HELP1 ; print first help string
.invoke print MS_HELP2 ; print second help string
jmp m_parse_end ; back to parse
.scope
m_cmd_input:
.invoke linefeed ;
ldx #$02 ; fist character of address
jsr j_a2b ; parse high byte
sta K_VAR1_H ; store high byte
jsr j_a2b ; parse low byte
sta K_VAR1_L ; store low byte
jsr m_clear_buffer ; first clear the buffer
_start:
ldx #$00 ; index
_wait:
jsr j_rchr ; read character
bcs _wait ; wait for character
jsr j_wchr ; output character
cmp #'. ; check if carriage return
beq _end ; branch to end
cmp #AsciiSP ; ignore blank
beq _wait ;
cmp #AsciiLF ; ignore LF
beq _wait ;
cmp #AsciiCR ; ignore CR
beq _wait ;
sta K_BUFFER,x ; store character
inx ; increase index
cpx #$02 ; already second character
bne _wait ; loop for next character
ldx #$00 ; reset index
jsr j_a2b ; parse current byte
ldx #$00
sta (K_VAR1_L,x) ; save byte to destination
inc K_VAR1_L ; increase destination address
bne _start ; next byte
inc K_VAR1_H ; on overflow increase high byte
jmp _start ; next byte
_end:
jmp m_parse_end ; back to parse
.scend
.scope
m_cmd_output:
.invoke linefeed ;
ldx #$02 ; fist character of address
jsr j_a2b ; parse high byte
sta K_VAR1_H ; store high byte
jsr j_a2b ; parse low byte
sta K_VAR1_L ; store low byte
inx ; skip ':'
jsr j_a2b ; parse high byte
sta K_VAR2_H ; store high byte
jsr j_a2b ; parse low byte
sta K_VAR2_L ; store low byte
ldx #$10 ; 16 values per line
_loop:
txa
pha
ldx #$00
lda (K_VAR1_L,x) ; load value
jsr j_hex8out ; print value
pla
tax
.invoke space ; print separator
dex ; decrement index
bne + ; end of line?
.invoke linefeed ; linefeed
ldx #$10 ; reload index
* jsr m_loop_addr ; next step in loop
bcc _loop ; loop
txa
pha
lda (K_VAR1_L,x) ; laod last value
jsr j_hex8out ; write value
pla
txa
lda #$2e ; '.'
jsr j_wchr ; print final '.'
jmp m_parse_end ; back to parse
.scend
.scope
m_cmd_fill:
.invoke linefeed ;
ldx #$02 ; fist character of address
jsr j_a2b ; parse high byte
sta K_VAR1_H ; store high byte
jsr j_a2b ; parse low byte
sta K_VAR1_L ; store low byte
inx ; skip ':'
jsr j_a2b ; parse high byte
sta K_VAR2_H ; store high byte
jsr j_a2b ; parse low byte
sta K_VAR2_L ; store low byte
jsr j_a2b ; parse fill byte
_loop:
ldx #$00
sta (K_VAR1_L,x) ; write value
jsr m_loop_addr ; next step in loop
bcc _loop ; loop
sta (K_VAR1_L,x) ; write last value
jmp m_parse_end ; back to parse
.scend
;
; set cursor to new line and print a prompt
;
m_show_prompt:
.invoke print MS_PROMPT;
rts
;
; clear input buffer
;
.scope
m_clear_buffer:
pha
txa
pha ; save X
ldx #K_BUF_LEN ;
lda #$00
* sta K_BUFFER,x ; write 00 to buffer position
dex ; decrement index
bne - ; end of buffer ?
sta K_BUF_P ; clear buffer pointer
pla
tax
pla ; restore X
rts ; return
.scend
;
; dump a part of the memory as hex dump out
;
; @param K_VAR1_L + K_VAR1_H 16bit value of address to dump from
; @param K_VAR2_L number of bytes per line
; @param K_VAR2_H number of lines to print
;
; @return -
;
; A,X,Y are preserved K_VAR* are destroyed
.scope
m_dump_mem:
pha ;save A
txa
pha ;save X
tya
pha ;save Y
ldx K_VAR2_H ;load number of lines
_outer:
.invoke linefeed
ldy K_VAR2_L ;load number of bytes per line
lda K_VAR1_H ;load high byte of address
sta K_VAR3_H ;save high byte for second loop
jsr j_hex8out ;print high byte
lda K_VAR1_L ;load low byte of address
sta K_VAR3_L ;save low byte for second loop
jsr j_hex8out ;print low byte
_inner:
.invoke space ;print " "
stx K_TMP3 ; save X
ldx #$00
lda (K_VAR1_L,x) ;load next byte
jsr j_hex8out ;print byte
ldx K_TMP3 ;restore X
inc K_VAR1_L ;increment address low byte
bne + ;check for turnover
inc K_VAR1_H ;increment address high byte
* dey ;next byte
bne _inner ;end of line?
;-----------------------------------------------------
;-----------------------------------------------------
;
ldy K_VAR2_L ;load number of bytes per line
lda K_VAR3_H ;restore address
sta K_VAR1_H
lda K_VAR3_L
sta K_VAR1_L
.invoke space ;print " "
lda #$7c ;print '|' as ruler
jsr j_wchr
_inner2:
stx K_TMP3 ; save X
ldx #$00
lda (K_VAR1_L,x) ;load next byte
bpl _next1 ; >127
lda #$2e ; show unprintable charachter as '.'
_next1: cmp #$20 ; check if > 32
bcs _print ;
lda #$2e ; show lower then 32 as '.'
_print: jsr j_wchr ;print byte
ldx K_TMP3 ;restore X
inc K_VAR1_L ;increment address low byte
bne + ;check for turnover
inc K_VAR1_H ;increment address high byte
* dey ;next byte
bne _inner2 ;end of line?
lda #$7c ;print '|' as ruler
jsr j_wchr
;-----------------------------------------------------
;-----------------------------------------------------
dex ;next line
bne _outer ;end of lines?
pla ;restore Y
tay
pla ;restore X
tax
pla ;restore A
rts ;return
.scend
;
; loop from one address to a second address by
; increasing the start address until the end address is reached
;
; @param K_VAR1_L + K_VAR1_H 16bit value of address to start from
; @param K_VAR2_L + K_VAR2_H 16bit value of end address
;
.scope
m_loop_addr:
pha ; save A
inc K_VAR1_L ; increase low byte
bne + ; no overflow
inc K_VAR1_H ; increase high byte on overflow
* lda K_VAR2_L ; load end value
cmp K_VAR1_L ; compare wiht current address low
bne _end ; not equal
lda K_VAR2_H ; load high value
cmp K_VAR1_H ; compare with current address high
bne _end
sec ; set carry to indicate end of loop
jmp _end2
_end:
clc ; clear carry
_end2:
pla
rts
.scend
MS_PROMPT: .byte LINE_END,">",0
MS_WELCOME: .byte "MOUSE MON V 0.8",LINE_END,LINE_END,0
MS_CMD_ERROR: .byte LINE_END,"?unknown command: ",0
MS_OK: .byte " OK",0
MS_HELP1: .byte LINE_END,"commands:", LINE_END,"a <addr> - start assembler at address",LINE_END,"c - start microchess", LINE_END,"d <addr> - disassemble from address", LINE_END,"f <addr>:<addr> %val - fill memory with %val", LINE_END,"g <addr> - jump to <addr>", LINE_END,"h - this help",LINE_END,"i <addr> - input <addr> input data to memory '.' ends the input",0
MS_HELP2: .byte LINE_END,"m <addr> %cols %rows - dump memory from address", LINE_END,"o <addr>:<addr> - output memory range", LINE_END,"r - jump to reset vector", LINE_END,"s <addr> - show one byte in hex and binary", LINE_END,"v - start VTL2 language", LINE_END," <addr> - 16bit address, %xx - 8 bit value",0
| 30.253012 | 368 | 0.56137 |
2f12d91677f8f46ef2fc3b8a283b909ef33acbec | 594 | asm | Assembly | programs/oeis/100/A100586.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/100/A100586.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/100/A100586.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A100586: Write down the numbers from 3 to infinity. Take next number, M say, that has not been crossed off. Counting through the numbers that have not yet been crossed off after that M, cross off every 5th term. Repeat, always crossing off every 5th term of those that remain. The numbers that are left form the sequence.
; 3,4,5,6,7,9,11,14,17,21,26,32,40,50,62,77,96,120,150,187,234,292,365,456,570,712,890,1112,1390,1737,2171,2714,3392,4240,5300,6625,8281,10351,12939,16174,20217,25271,31589,39486,49357,61696,77120
mov $1,4
lpb $0
sub $0,1
mul $1,5
div $1,4
lpe
sub $1,1
mov $0,$1
| 49.5 | 323 | 0.739057 |
ce0713c4837afed95b2a82f0c57332b064413387 | 1,001 | asm | Assembly | source/features/sound.asm | feliposz/FelipOS | 9d50454d187a5a74a711c4b23a1653b5ece3df17 | [
"MIT"
] | null | null | null | source/features/sound.asm | feliposz/FelipOS | 9d50454d187a5a74a711c4b23a1653b5ece3df17 | [
"MIT"
] | null | null | null | source/features/sound.asm | feliposz/FelipOS | 9d50454d187a5a74a711c4b23a1653b5ece3df17 | [
"MIT"
] | null | null | null | ; ==========================================================
; os_speaker_tone -- Generate PC speaker tone (call os_speaker_off to turn off)
; IN: AX = note frequency divisor (from 1193182 hz of the PIT)
; OUT: Nothing (registers preserved)
os_speaker_tone:
push ax
push bx
push dx
mov cx, ax
mov al, 10110110b ; 10 = channel 2, 11 = lobyte + hibyte, 011 = square wave generator, 0 = 16 bit mode
out 43h, al ; set mode for PIT
mov al, cl
out 42h, al ; output low byte on channel 2
mov al, ch
out 42h, al ; output high byte on channel 2
in al, 61h
or al, 3 ; set bits 0-1 to turn on speaker
out 61h, al
pop dx
pop cx
pop ax
ret
; ==========================================================
; os_speaker_off -- Turn off PC speaker
; IN/OUT: Nothing (registers preserved)
os_speaker_off:
push ax
in al, 61h
and al, 0fch ; clear bits 0-1 to turn off speaker
out 61h, al
pop ax
ret
| 29.441176 | 106 | 0.544456 |
9a8517feb5a2666b84aad40803c8b396f42acb9c | 692 | asm | Assembly | oeis/041/A041687.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/041/A041687.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/041/A041687.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A041687: Denominators of continued fraction convergents to sqrt(363).
; Submitted by Jamie Morken(s1.)
; 1,19,723,13756,523451,9959325,378977801,7210537544,274379404473,5220419222531,198650309860651,3779576306574900,143822549959706851,2736408025541005069,104127327520517899473,1981155630915381095056,75388041302304999511601,1434353940374710371815475,54580837775541299128499651,1038470271675659393813308844,39516451161450598264034235723,751851042339237026410463787581,28609856060052457601861658163801,544339116183335931461781968899800,20713496271026817853149576476356201
add $0,1
mov $3,1
lpb $0
sub $0,1
add $2,$3
mov $3,$1
mov $1,$2
dif $2,2
mul $2,38
lpe
mov $0,$2
div $0,38
| 40.705882 | 466 | 0.839595 |
ee09fc395a5605a9c38dcd60140553ba428ed27c | 4,784 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_sm_/i7-8650U_0xd2_notsx.log_30_283.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_sm_/i7-8650U_0xd2_notsx.log_30_283.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_sm_/i7-8650U_0xd2_notsx.log_30_283.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 %r15
push %r8
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x11fa8, %r14
nop
nop
nop
dec %r8
movl $0x61626364, (%r14)
cmp $30677, %r10
lea addresses_D_ht+0x153f4, %rsi
lea addresses_A_ht+0x1b274, %rdi
nop
nop
cmp $31356, %rax
mov $29, %rcx
rep movsw
nop
nop
nop
nop
sub $21818, %rcx
lea addresses_normal_ht+0x98f8, %rsi
lea addresses_normal_ht+0xd5b4, %rdi
nop
nop
nop
nop
xor %r15, %r15
mov $4, %rcx
rep movsw
nop
dec %r15
lea addresses_A_ht+0x67d8, %rdi
cmp %r14, %r14
mov (%rdi), %r8
nop
nop
nop
nop
sub %r14, %r14
lea addresses_WC_ht+0xdf4, %rsi
clflush (%rsi)
nop
nop
add %rcx, %rcx
mov (%rsi), %r15
nop
nop
nop
sub $28009, %r10
lea addresses_normal_ht+0x1d0b4, %rdi
nop
nop
dec %r10
mov $0x6162636465666768, %r8
movq %r8, %xmm7
and $0xffffffffffffffc0, %rdi
movaps %xmm7, (%rdi)
sub $59412, %r10
lea addresses_normal_ht+0x9694, %rsi
lea addresses_D_ht+0x145f4, %rdi
nop
and %r8, %r8
mov $98, %rcx
rep movsw
nop
nop
nop
xor $18472, %rcx
lea addresses_normal_ht+0x1703c, %r15
nop
nop
nop
nop
nop
sub $51842, %rdi
mov $0x6162636465666768, %r8
movq %r8, %xmm4
vmovups %ymm4, (%r15)
nop
nop
nop
nop
and %r8, %r8
lea addresses_normal_ht+0x13df4, %r10
nop
nop
nop
nop
cmp %r14, %r14
movl $0x61626364, (%r10)
nop
cmp $42417, %r10
lea addresses_D_ht+0x5df4, %r10
nop
nop
nop
nop
sub $21685, %r14
vmovups (%r10), %ymm6
vextracti128 $1, %ymm6, %xmm6
vpextrq $0, %xmm6, %rax
nop
inc %rcx
pop %rsi
pop %rdi
pop %rcx
pop %rax
pop %r8
pop %r15
pop %r14
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r12
push %r13
push %r15
push %r8
push %r9
push %rcx
push %rsi
// Store
lea addresses_D+0x16b94, %r15
clflush (%r15)
nop
nop
nop
nop
and %r8, %r8
movb $0x51, (%r15)
cmp %r15, %r15
// Load
lea addresses_D+0x43d4, %rcx
nop
xor %rsi, %rsi
mov (%rcx), %r13w
nop
inc %rcx
// Store
lea addresses_WC+0x8df4, %r13
nop
nop
nop
xor $52941, %r12
movw $0x5152, (%r13)
nop
and $6170, %rsi
// Load
lea addresses_WC+0x1a334, %r8
and $55875, %rcx
mov (%r8), %r9w
nop
nop
nop
nop
nop
sub %r12, %r12
// Store
lea addresses_PSE+0xc63c, %r9
nop
cmp $5934, %rcx
mov $0x5152535455565758, %rsi
movq %rsi, (%r9)
nop
nop
nop
nop
inc %r15
// Faulty Load
lea addresses_WC+0x8df4, %r13
nop
cmp %r12, %r12
mov (%r13), %r9
lea oracles, %r12
and $0xff, %r9
shlq $12, %r9
mov (%r12,%r9,1), %r9
pop %rsi
pop %rcx
pop %r9
pop %r8
pop %r15
pop %r13
pop %r12
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_WC', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_D', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 5, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_D', 'size': 2, 'AVXalign': True, 'NT': False, 'congruent': 4, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
{'OP': 'LOAD', 'src': {'type': 'addresses_WC', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 5, 'same': True}}
{'OP': 'STOR', 'dst': {'type': 'addresses_PSE', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 3, 'same': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_WC', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
<gen_prepare_buffer>
{'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 2, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_D_ht', 'congruent': 9, 'same': False}, 'dst': {'type': 'addresses_A_ht', 'congruent': 7, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_normal_ht', 'congruent': 2, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 5, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_A_ht', 'size': 8, 'AVXalign': True, 'NT': False, 'congruent': 2, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_WC_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 11, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_normal_ht', 'size': 16, 'AVXalign': True, 'NT': False, 'congruent': 5, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_normal_ht', 'congruent': 4, 'same': False}, 'dst': {'type': 'addresses_D_ht', 'congruent': 10, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_normal_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 2, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_normal_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 11, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_D_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 10, 'same': False}}
{'52': 30}
52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52
*/
| 20.982456 | 156 | 0.64653 |
2273df5c237521ac321c1e1a321628d374056081 | 2,357 | asm | Assembly | src/ram.asm | Xkeeper0/tcrf-birthday | 122945985d98b31984ac9299c8086603dbf416ff | [
"MIT"
] | 10 | 2019-10-27T23:16:43.000Z | 2019-11-14T13:53:55.000Z | src/ram.asm | Xkeeper0/tcrf-birthday | 122945985d98b31984ac9299c8086603dbf416ff | [
"MIT"
] | null | null | null | src/ram.asm | Xkeeper0/tcrf-birthday | 122945985d98b31984ac9299c8086603dbf416ff | [
"MIT"
] | null | null | null |
; RAM addresses for stuff
TempAddrLo: .dsb 1
TempAddrHi: .dsb 1
Temp0002: .dsb 1
Temp0003: .dsb 1
NMIWaitFlag: .dsb 1
FramesToWait: .dsb 1
PPUCtrlMirror: .dsb 1
PPUMaskMirror: .dsb 1
MMC3Bank8000: .dsb 1
MMC3BankA000: .dsb 1
PPUBufferReady: .dsb 1
PPUBufferLo: .dsb 1
PPUBufferHi: .dsb 1
PPUScrollX: .dsb 1
PPUScrollY: .dsb 1
TextScriptLo: .dsb 1
TextScriptHi: .dsb 1
TextScriptPPUBaseHi: .dsb 1
TextScriptPPUBaseLo: .dsb 1
TextScriptPPUHi: .dsb 1
TextScriptPPULo: .dsb 1
TextScriptPPULen: .dsb 1
TextScriptPPUChar: .dsb 1
TextScriptPPUEnd: .dsb 1 ; This should always be 0
TextScriptEnd: .dsb 1
TextScriptSpeed: .dsb 1
FrameCounter: .dsb 1
PRNGSeed: .dsb 4
FunfettiEnable: .dsb 1
FunfettiMask: .dsb 1
FunfettiSpeed: .dsb 1
Player1JoypadPress: .dsb 1
Player1JoypadHeld: .dsb 1
; Sound engine zero-page requirements
.pad $0100 - SOUND_ENGINE_RAM_AREA_SIZE, $00
.include "src/music/engine/ggsound-ram-zeropage.asm"
; End of zero page
; --------------------------------------
.pad $0100, $00
StackArea: .dsb $100
; Technically usable but the deeper you go the more likely you are to
; cause Problems
; --------------------------------------
; Sprite DMA can technically go anywhere but it tends to be at $200
SpriteDMAArea: .dsb $100
SpriteY = $200
SpriteIndex = $201
SpriteAttrib = $202
SpriteX = $203
; Sound engine (non-zero-page) requirements
.include "src/music/engine/ggsound-ram.asm"
; Used for the clear-one-tile-row function because im lazy
ClearRowPPUHi: .dsb 1
ClearRowPPULo: .dsb 1
ClearRowPPULen: .dsb 1
ClearRowPPUChar: .dsb 1
; --------------------------------------
; End of RAM
; PPU registers
; $2000-$2007
PPUCTRL = $2000
PPUMASK = $2001
PPUSTATUS = $2002
OAMADDR = $2003
OAMDATA = $2004
PPUSCROLL = $2005
PPUADDR = $2006
PPUDATA = $2007
; APU registers and joypad registers
; $4000-$4015 $4016-$4017
SQ1_VOL = $4000
SQ1_SWEEP = $4001
SQ1_LO = $4002
SQ1_HI = $4003
SQ2_VOL = $4004
SQ2_SWEEP = $4005
SQ2_LO = $4006
SQ2_HI = $4007
TRI_LINEAR = $4008
_APU_TRI_UNUSED = $4009
TRI_LO = $400a
TRI_HI = $400b
NOISE_VOL = $400c
_APU_NOISE_UNUSED = $400d
NOISE_LO = $400e
NOISE_HI = $400f
DMC_FREQ = $4010
DMC_RAW = $4011
DMC_START = $4012
DMC_LEN = $4013
OAM_DMA = $4014
SND_CHN = $4015
JOY1 = $4016
JOY2 = $4017
| 19.806723 | 69 | 0.664828 |
7ab4d229fd5a045c920580b7faeab9e2c4355e72 | 627 | asm | Assembly | programs/oeis/158/A158004.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/158/A158004.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/158/A158004.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A158004: a(n) = 392*n - 1.
; 391,783,1175,1567,1959,2351,2743,3135,3527,3919,4311,4703,5095,5487,5879,6271,6663,7055,7447,7839,8231,8623,9015,9407,9799,10191,10583,10975,11367,11759,12151,12543,12935,13327,13719,14111,14503,14895,15287,15679,16071,16463,16855,17247,17639,18031,18423,18815,19207,19599,19991,20383,20775,21167,21559,21951,22343,22735,23127,23519,23911,24303,24695,25087,25479,25871,26263,26655,27047,27439,27831,28223,28615,29007,29399,29791,30183,30575,30967,31359,31751,32143,32535,32927,33319,33711,34103,34495,34887,35279,35671,36063,36455,36847,37239,37631,38023,38415,38807,39199
mul $0,392
add $0,391
| 104.5 | 574 | 0.799043 |
e457409a1bc810967d1418cd21ea6e733c059a83 | 1,827 | asm | Assembly | binutils-2.21.1/gcc-4.5.1/gcc/config/h8300/crti.asm | cberner12/xv6 | 53c4dfef0d48287ca0d0f9d27eab7a6ed7fee845 | [
"MIT-0"
] | 51 | 2015-01-31T01:51:39.000Z | 2022-02-18T02:01:50.000Z | binutils-2.21.1/gcc-4.5.1/gcc/config/h8300/crti.asm | cberner12/xv6 | 53c4dfef0d48287ca0d0f9d27eab7a6ed7fee845 | [
"MIT-0"
] | 7 | 2017-05-29T09:29:00.000Z | 2019-03-11T16:01:39.000Z | binutils-2.21.1/gcc-4.5.1/gcc/config/h8300/crti.asm | cberner12/xv6 | 53c4dfef0d48287ca0d0f9d27eab7a6ed7fee845 | [
"MIT-0"
] | 12 | 2015-03-26T08:05:38.000Z | 2022-02-18T02:01:51.000Z | /* Copyright (C) 2001, 2002, 2009 Free Software Foundation, Inc.
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3, or (at your option) any
later version.
GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.
You should have received a copy of the GNU General Public License and
a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
<http://www.gnu.org/licenses/>. */
/* The code in sections .init and .fini is supposed to be a single
regular function. The function in .init is called directly from
start in crt0.asm. The function in .fini is atexit()ed in crt0.asm
too.
crti.asm contributes the prologue of a function to these sections,
and crtn.asm comes up the epilogue. STARTFILE_SPEC should list
crti.o before any other object files that might add code to .init
or .fini sections, and ENDFILE_SPEC should list crtn.o after any
such object files. */
#ifdef __H8300H__
#ifdef __NORMAL_MODE__
.h8300hn
#else
.h8300h
#endif
#endif
#ifdef __H8300S__
#ifdef __NORMAL_MODE__
.h8300sn
#else
.h8300s
#endif
#endif
#ifdef __H8300SX__
#ifdef __NORMAL_MODE__
.h8300sxn
#else
.h8300sx
#endif
#endif
.section .init
.global __init
__init:
.section .fini
.global __fini
__fini:
| 28.546875 | 70 | 0.758073 |
877c409885058c9f3006fbb0b6e9bb39a5200b69 | 12,742 | asm | Assembly | Build/Interpreters/beebOzmoo/asm/stack.asm | polluks/Puddle-BuildTools | c1762d53a33002b62d8cffe3db129505a387bec3 | [
"BSD-2-Clause"
] | 38 | 2021-06-18T12:56:15.000Z | 2022-03-12T20:38:40.000Z | Build/Interpreters/beebOzmoo/asm/stack.asm | polluks/Puddle-BuildTools | c1762d53a33002b62d8cffe3db129505a387bec3 | [
"BSD-2-Clause"
] | 2 | 2021-06-20T16:28:12.000Z | 2021-11-17T21:33:56.000Z | Build/Interpreters/beebOzmoo/asm/stack.asm | polluks/Puddle-BuildTools | c1762d53a33002b62d8cffe3db129505a387bec3 | [
"BSD-2-Clause"
] | 6 | 2021-06-18T18:18:36.000Z | 2021-12-22T08:01:32.000Z | ; Anatomy of a stack frame:
;
; Number of pushed bytes (2*n)
; Pushed word n-1
; ...
; Pushed word 0
; ZZZZZZZZ ZZZZZZZZ
; SPPPLLLL 0000EZZZ
; Local variable k-1
; ...
; Local variable 0
;
; S = Does return address point to a a variable where return value should be stored?
; PPP = Number of parameters with which this routine was called
; LLLL = Number of local variables in this routine
; E = Execution mode (1 = interrupt, 0 = normal)
; ZZZ ZZZZZZZZ ZZZZZZZZ = Z_PC to go to when returning from this routine
;
; Stack pointer actually points to Pushed word 0.
!zone {
; stack_tmp !byte 0, 0, 0, 0, 0
; stack_pushed_bytes !byte 0, 0
!ifdef VIEW_STACK_RECORDS {
.stack_pushed_bytes_record !byte 0,0
.stack_size_record !byte 0,0
.stack_size !byte 0,0
}
stack_init
lda #<(stack_start)
sta stack_ptr
lda #>(stack_start)
sta stack_ptr + 1
lda #0
sta stack_pushed_bytes
sta stack_pushed_bytes + 1
sta stack_has_top_value
rts
stack_push_top_value
; prerequisites: Caller must check that stack_has_top_value > 0
; uses: a,y
; Note: Does not change stack_has_top_value! Caller must do this as needed.
+ lda stack_ptr
clc
adc stack_pushed_bytes + 1
sta zp_temp + 2
lda stack_ptr + 1
adc stack_pushed_bytes
sta zp_temp + 3
ldy #0
lda stack_top_value
sta (zp_temp + 2),y
iny
lda stack_top_value + 1
sta (zp_temp + 2),y
inc stack_pushed_bytes + 1
inc stack_pushed_bytes + 1
bne .top_done
inc stack_pushed_bytes
.top_done
+
!ifdef VIEW_STACK_RECORDS {
stx zp_temp + 4
lda .stack_pushed_bytes_record + 1
cmp stack_pushed_bytes + 1
lda .stack_pushed_bytes_record
sbc stack_pushed_bytes
bcs .not_push_record
jsr print_following_string
!pet 13,"=== Pushed bytes record: ",0
lda stack_pushed_bytes
sta .stack_pushed_bytes_record
ldx stack_pushed_bytes + 1
stx .stack_pushed_bytes_record + 1
jsr printinteger
jsr newline
.not_push_record
lda stack_ptr
clc
adc stack_pushed_bytes + 1
sta .stack_size + 1
lda stack_ptr + 1
adc stack_pushed_bytes
sec
sbc #>stack_start
sta .stack_size
lda .stack_size_record + 1
cmp .stack_size + 1
lda .stack_size_record
sbc .stack_size
bcs .no_size_record
jsr print_following_string
!pet 13,"### Stack size record: ",0
lda .stack_size
sta .stack_size_record
ldx .stack_size + 1
stx .stack_size_record + 1
jsr printinteger
jsr newline
.no_size_record
ldx zp_temp + 4
}
!ifndef UNSAFE {
; push_check_room
lda stack_ptr
clc
adc stack_pushed_bytes + 1
lda stack_ptr + 1
adc stack_pushed_bytes
cmp #>(stack_start + stack_size)
bcc .not_full
jmp .stack_full
.not_full
}
rts
+make_acorn_screen_hole
; This is used by stack_call_routine
.many_pushed_bytes
lda stack_ptr
clc
adc stack_pushed_bytes + 1
sta zp_temp + 2
lda stack_ptr + 1
adc stack_pushed_bytes
sta zp_temp + 3
ldy #0
lda stack_pushed_bytes
sta (zp_temp + 2),y
iny
lda stack_pushed_bytes + 1
sta (zp_temp + 2),y
jmp .move_stack_ptr_to_last_word_of_frame
stack_call_routine
; a = Mode ($80 = Call read interrupt routine, 0 = Normal)
; x = Number of arguments to be passed to routine
; y = Does Z_PC point to a variable where return value should be stored (0/1)
stx zp_temp
sty zp_temp + 1
sta stack_tmp + 4
; TASK: Wrap up current stack frame
lda stack_has_top_value
beq +
jsr stack_push_top_value
+
lda stack_pushed_bytes
bne .many_pushed_bytes
; Frame has < 256 bytes pushed
ldy stack_pushed_bytes + 1
sta (stack_ptr),y
tya
iny
sta (stack_ptr),y
cpy #1
beq .current_frame_done
.move_stack_ptr_to_last_word_of_frame
lda stack_ptr
clc
adc stack_pushed_bytes + 1
sta stack_ptr
lda stack_ptr + 1
adc stack_pushed_bytes
sta stack_ptr + 1
.current_frame_done
; TASK: Save PC. Set new PC. Setup new stack frame.
lda z_pc
sta stack_tmp
lda z_pc + 1
sta stack_tmp + 1
lda z_pc + 2
sta stack_tmp + 2
lda #0
asl z_operand_value_low_arr
rol z_operand_value_high_arr
rol
!ifdef Z4PLUS {
asl z_operand_value_low_arr
rol z_operand_value_high_arr
rol
!ifdef Z8 {
asl z_operand_value_low_arr
rol z_operand_value_high_arr
rol
}
}
ldx z_operand_value_high_arr
ldy z_operand_value_low_arr
jsr set_z_pc
+read_next_byte_at_z_pc
sta z_local_var_count
lda stack_ptr
sta z_local_vars_ptr
lda stack_ptr + 1
sta z_local_vars_ptr + 1
; TASK: Setup local vars
ldx #0 ; Index of first argument to be passed to routine - 1
ldy #2 ; Index of first byte to store local variables
; Copy parameter values to local vars
- cpx zp_temp ; Number of args
bcs .store_default_in_remaining_local_vars
cpx z_local_var_count
bcs .store_default_in_remaining_local_vars
lda z_operand_value_high_arr + 1,x
sta (stack_ptr),y
iny
lda z_operand_value_low_arr + 1,x
sta (stack_ptr),y
iny
inx
bne - ; Always branch
.store_default_in_remaining_local_vars
stx zp_temp + 4
!ifndef Z5PLUS {
; Make z_pc skip over default values
txa
beq +
sty stack_tmp + 3
asl
adc z_pc + 2 ; Carry is already clear
tay
lda z_pc + 1
adc #0
tax
lda z_pc
adc #0
jsr set_z_pc
ldy stack_tmp + 3
+
}
; Store default values in remaining vars
lda z_local_var_count
sec
sbc zp_temp + 4
beq .setup_of_local_vars_complete
asl
tax ; Number of bytes to init / copy is now in x
!ifdef Z5PLUS {
lda #0
}
-
!ifndef Z5PLUS {
sty stack_tmp + 3
+read_next_byte_at_z_pc ; Read first byte of initial var value
ldy stack_tmp + 3
}
sta (stack_ptr),y
iny
dex
bne -
.setup_of_local_vars_complete
; TASK: Store old Z_PC, number of local vars, number of arguments and store-result-bit on stack
!ifdef Z5PLUS {
; # of arguments is only stored for Z5+
lda zp_temp ; Arg count
asl
asl
asl
asl
ora z_local_var_count
} else {
lda z_local_var_count
}
ldx zp_temp + 1 ; Store?
beq +
ora #%10000000
+ sta (stack_ptr),y
iny
lda stack_tmp + 4 ; Add call mode
ora stack_tmp
sta (stack_ptr),y
iny
lda stack_tmp + 1
sta (stack_ptr),y
iny
lda stack_tmp + 2
sta (stack_ptr),y
; TASK: Set number of pushed bytes to 0
lda #0
sta stack_has_top_value
sta stack_pushed_bytes
sta stack_pushed_bytes + 1
; TASK: Set new (higher) value of stack pointer
iny
tya
clc
adc stack_ptr
sta stack_ptr
lda stack_ptr + 1
adc #0
sta stack_ptr + 1
!ifndef UNSAFE {
cmp #>(stack_start + stack_size)
bcs .stack_full
}
!ifdef VIEW_STACK_RECORDS {
lda stack_ptr
sta .stack_size + 1
lda stack_ptr + 1
sec
sbc #>stack_start
sta .stack_size
lda .stack_size_record + 1
cmp .stack_size + 1
lda .stack_size_record
sbc .stack_size
bcs .no_size_record_2
jsr print_following_string
!pet 13,"### Stack size record: ",0
lda .stack_size
sta .stack_size_record
ldx .stack_size + 1
stx .stack_size_record + 1
jsr printinteger
jsr newline
.no_size_record_2
}
rts
!ifndef UNSAFE {
.stack_full
lda #ERROR_STACK_FULL
jmp fatalerror
}
!ifdef Z5PLUS {
z_ins_check_arg_count
; Read number of arguments provided to this routine
lda z_operand_value_high_arr
bne .branch_false
ldy z_local_var_count
iny
tya
asl
tay
lda (z_local_vars_ptr),y
lsr
lsr
lsr
lsr
and #7
cmp z_operand_value_low_arr
bcc .branch_false
jmp make_branch_true
.branch_false
jmp make_branch_false
+make_acorn_screen_hole
z_ins_catch
; Store pointer to first byte where pushed values are stored in current frame.
ldx stack_ptr
lda stack_ptr + 1
jmp z_store_result
+make_acorn_screen_hole
z_ins_throw
; Restore pointer given. Return from routine (frame).
; First, restore old stack_ptr, and calculate where # of local vars is stored.
lda z_operand_value_low_arr + 1
sec
sbc #6
sta zp_temp
lda z_operand_value_high_arr + 1
sbc #0
sta zp_temp + 1
; Retrieve # of local vars, and set z_local_vars_ptr to correct value
ldy #2
lda (zp_temp),y
and #$0f
sta z_local_var_count
asl
sta zp_temp + 2 ; # of bytes used by local vars
lda zp_temp
sec
sbc zp_temp + 2 ; # of bytes used by local vars
sta z_local_vars_ptr
lda zp_temp + 1
sbc #0
sta z_local_vars_ptr + 1
; Return from the routine that contained the catch instruction
lda z_operand_value_high_arr
ldx z_operand_value_low_arr
; jmp stack_return_from_routine ; Placed z_ins_throw just before stack_return_from_routine, so no jmp needed
}
; NOTE: Must follow z_ins_throw
stack_return_from_routine
; input: return value in a,x
; Save input values
+ sta zp_temp
stx zp_temp + 1
; Read pc to return to and whether to store return value in this frame
ldy z_local_var_count
iny
tya
asl
tay
lda (z_local_vars_ptr),y
sta stack_tmp ; storebit, argcount, varcount
; Copy PC from stack to z_pc
iny
lda (z_local_vars_ptr),y
tax
and #$07
pha ; Top byte of z_pc
!ifdef Z4PLUS {
txa
and #$f8
sta z_exe_mode
}
iny
lda (z_local_vars_ptr),y
tax
iny
lda (z_local_vars_ptr),y
tay
pla
jsr set_z_pc
; TASK: Set stack_pushed_bytes to new value
ldy #0
sty stack_has_top_value
lda (z_local_vars_ptr),y
sta stack_pushed_bytes
iny
lda (z_local_vars_ptr),y
sta stack_pushed_bytes + 1
; TASK: Find new locals pointer value
; Skip past all items pushed onto stack in this frame
; First, set stack_ptr correctly
lda z_local_vars_ptr
sec
; ldy #1 ; Not needed, has right value already
sbc (z_local_vars_ptr),y
sta stack_ptr
lda z_local_vars_ptr + 1
dey
sbc (z_local_vars_ptr),y
sta stack_ptr + 1
; txa
; sbc #0 ; Carry should always be set after last operation
; sta stack_ptr
; tya
; sbc #0
; sta stack_ptr + 1
; Find # of locals
lda stack_ptr
sbc #4 ; Carry should always be set after last operation
sta zp_temp + 2
lda stack_ptr + 1
sbc #0
sta zp_temp + 3
ldy #0
lda (zp_temp + 2),y
+make_acorn_screen_hole_jmp
; Skip past locals on stack
and #$0f
sta z_local_var_count
clc
adc #1
asl
sta stack_tmp + 2
lda zp_temp + 2
sec
sbc stack_tmp + 2
sta z_local_vars_ptr
lda zp_temp + 3
sbc #0
sta z_local_vars_ptr + 1
!ifdef Z4PLUS {
; Set interrupt return value, if this was a return from an interrupt
lda z_exe_mode
beq +
lda zp_temp
sta z_interrupt_return_value
lda zp_temp + 1
sta z_interrupt_return_value + 1
+
}
; Store return value if calling instruction asked for it
bit stack_tmp
bmi +
rts
+
; +read_next_byte_at_z_pc
; tay
lda zp_temp
ldx zp_temp + 1
; jmp z_set_variable ; Code is followed by z_store_result which will set the variable
!zone {
z_store_result
; input: a,x hold result
; affected: a,x,y
pha
+read_next_byte_at_z_pc
tay
pla
jmp z_set_variable
}
stack_push
; Push a,x onto stack
ldy stack_has_top_value
bne +
sta stack_top_value
stx stack_top_value + 1
inc stack_has_top_value
rts
+ sta zp_temp
jsr stack_push_top_value
lda zp_temp
sta stack_top_value
stx stack_top_value + 1
rts
stack_get_ref_to_top_value
ldy stack_has_top_value
beq +
lda #>stack_top_value
ldx #<stack_top_value
rts
+
!ifdef DEBUG {
ldx stack_pushed_bytes + 1
beq .stack_underflow
}
clc
lda stack_pushed_bytes + 1
adc stack_ptr
tax
lda stack_pushed_bytes
adc stack_ptr + 1
tay
txa
sec
sbc #2
tax
tya
sbc #0
rts
!ifdef DEBUG {
.stack_underflow
lda #ERROR_STACK_EMPTY
jmp fatalerror
}
stack_pull
; Pull top value from stack, return in a,x
ldy stack_has_top_value
beq stack_pull_no_top_value
lda stack_top_value
ldx stack_top_value + 1
dec stack_has_top_value
rts
stack_pull_no_top_value
lda stack_pushed_bytes + 1
beq .stack_empty_return_0
; Decrease # of bytes on stack
sec
sbc #2
sta stack_pushed_bytes + 1
tax
lda stack_pushed_bytes
sbc #0
sta stack_pushed_bytes
tay
; Calculate address of top value
txa
clc
adc stack_ptr
sta zp_temp
tya
adc stack_ptr + 1
sta zp_temp + 1
; Load value and return
ldy #1
lda (zp_temp),y
tax
dey
lda (zp_temp),y
rts
.stack_empty_return_0
!ifdef DEBUG {
jsr print_following_string
!ifndef ACORN {
!pet "WARNING: pull from empty stack",13,0
} else {
!text "WARNING: pull from empty stack",13,0
}
}
lda #0
tax
rts
z_ins_push
lda z_operand_value_high_arr
ldx z_operand_value_low_arr
jmp stack_push
z_ins_pull
jsr stack_pull
pha
txa
pha
ldx z_operand_value_low_arr
jsr z_get_variable_reference
stx zp_temp
sta zp_temp + 1
ldy #1
pla
sta (zp_temp),y
pla
dey
sta (zp_temp),y
rts
}
| 19.160902 | 109 | 0.707346 |
084d2921cfacc1e5fc80f25c39081f8b25f7f3dc | 2,115 | asm | Assembly | raytracing/trs80-m1.asm | gp48k/lpfp | 070c73a8b67d98f85d2de86d75b23f0e71a18a8a | [
"MIT"
] | null | null | null | raytracing/trs80-m1.asm | gp48k/lpfp | 070c73a8b67d98f85d2de86d75b23f0e71a18a8a | [
"MIT"
] | null | null | null | raytracing/trs80-m1.asm | gp48k/lpfp | 070c73a8b67d98f85d2de86d75b23f0e71a18a8a | [
"MIT"
] | null | null | null | ; Version for the TRS-80 Model 1 and Model III.
;
; Graphics are done with special graphics characters on the text screen
; for an effective 128 x 48 resolution. Scaling down the Spectrum
; coordinates means stepping by 2 on the X axis and 4 on the Y.
;
; Suggest zmac to build and trs80gp to emulate.
; http://48k.ca/zmac.html
; http://48k.ca/trs80gp.html
;
; zmac trs80-m1.asm
; trs80gp zout\trs80-m1.bds
;
ORG $6000
scan: di
xor a
ld hl,$3c00
ld b,8+2
rowlp: ld c,2
collp: push hl ; [ screen addr
ld e,2
call pix
dec c
dec c
call pix
inc c
inc c
ld a,b
sub 4
ld b,a
call pix
dec c
dec c
call pix
inc c
inc c
ld a,b
sub 4
ld b,a
call pix
dec c
dec c
call pix
pop hl ; screen addr ]
ld (hl),e
inc hl
ld a,b
add 2*4
ld b,a
ld a,c
add 3*2
ld c,a
jr nc,collp
ld a,b
add 3*4
ld b,a
cp 192
jr c,rowlp
done: jr done
pix: push bc ; [ XY
push de ; [ bit
call trace
pop de ; bit ]
rl e
pop bc ; XY ]
ret
SCENE:
GROUND: DEFW BALL1,GROUNDI,GROUNDL,GC
BALL1: DEFW BALL2,SPHEREI,SPHEREL,B1C,$3F33,$3E71 ; r=0.6, r*r=0.36
BALL2: DEFW 0,SPHEREI,SPHEREL,B2C,$3D9A,$3B48 ; r=0.2, r*r=0.04
POS: DEFB 3 ; 3 positions
GROUNDC:DEFW $BE33,$3F00,$0000 ; -0.3, 0.5, 0
BALL1C: DEFW $BF33,$BE33,$4180 ; -0.6, -0.3, 3
BALL2C: DEFW $3F33,$BF33,$4100 ; 0.6, -0.6, 2
LIGHT: DEFW 0,$C000,0
INCLUDE "trace.asm"
LD IX,SCENE
CALL SCENEI
RET NC
INCLUDE "scene.asm"
INCLUDE "ground.asm"
INCLUDE "sphere.asm"
INCLUDE "hitray.asm"
; floating point constants
MINF: EQU $0000 ; Positive epsilon, 2^-64 5.421e-20
MAXF: EQU $7FFF ; Maximal floating point number 2^64-2^55 1.841e+19
ONEF: EQU $4000 ; One 1.000e+00
ROOT2F: EQU $406A ; Square root of 2 1.414e+00
F7F: EQU $46FC ; $7F i.e. 127 1.270e+02
; Subroutines
INCLUDE "../fdivmul.asm"
INCLUDE "../faddsub-fast.asm"
INCLUDE "../fsquare.asm"
INCLUDE "../mul8bit.asm"
INCLUDE "../fint64.asm"
INCLUDE "../dot.asm"
; Lookup tables
INCLUDE "../addtab.asm"
INCLUDE "../subtab.asm"
INCLUDE "../multab.asm"
INCLUDE "../divtab.asm"
INCLUDE "../squaretab.asm"
; Variables
INCLUDE "variables.asm"
end scan
| 18.232759 | 71 | 0.656738 |
49998f64d1d563699c8e880e36fae696cac90005 | 482,980 | asm | Assembly | pru_codes/tmp/main.asm | PierrickRauby/BBB-PRU-SHARED-MEM-ADC | 61cf69f78b890b1060c509027ffa4f761c2132dd | [
"MIT"
] | null | null | null | pru_codes/tmp/main.asm | PierrickRauby/BBB-PRU-SHARED-MEM-ADC | 61cf69f78b890b1060c509027ffa4f761c2132dd | [
"MIT"
] | null | null | null | pru_codes/tmp/main.asm | PierrickRauby/BBB-PRU-SHARED-MEM-ADC | 61cf69f78b890b1060c509027ffa4f761c2132dd | [
"MIT"
] | null | null | null | ;******************************************************************************
;* PRU C/C++ Codegen Unix v2.1.5 *
;* Date/Time created: Tue Jul 13 16:13:52 2021 *
;******************************************************************************
.compiler_opts --abi=eabi --endian=little --hll_source=on --object_format=elf --silicon_version=3 --symdebug:dwarf --symdebug:dwarf_version=3
$C$DW$CU .dwtag DW_TAG_compile_unit
.dwattr $C$DW$CU, DW_AT_name("main.c")
.dwattr $C$DW$CU, DW_AT_producer("TI PRU C/C++ Codegen Unix v2.1.5 Copyright (c) 2012-2017 Texas Instruments Incorporated")
.dwattr $C$DW$CU, DW_AT_TI_version(0x01)
.dwattr $C$DW$CU, DW_AT_comp_dir("/home/debian/BBB-PRU-SHARED-MEM-ADC/pru_codes")
.global __PRU_CREG_PRU_CFG
.global __PRU_CREG_PRU_INTC
.global __PRU_CREG_PRU_DMEM_0_1
$C$DW$1 .dwtag DW_TAG_subprogram, DW_AT_name("pru_rpmsg_init")
.dwattr $C$DW$1, DW_AT_TI_symbol_name("pru_rpmsg_init")
.dwattr $C$DW$1, DW_AT_type(*$C$DW$T$324)
.dwattr $C$DW$1, DW_AT_declaration
.dwattr $C$DW$1, DW_AT_external
.dwattr $C$DW$1, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$1, DW_AT_decl_line(0x8c)
.dwattr $C$DW$1, DW_AT_decl_column(0x09)
$C$DW$2 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$2, DW_AT_type(*$C$DW$T$309)
$C$DW$3 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$3, DW_AT_type(*$C$DW$T$310)
$C$DW$4 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$4, DW_AT_type(*$C$DW$T$310)
$C$DW$5 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$5, DW_AT_type(*$C$DW$T$32)
$C$DW$6 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$6, DW_AT_type(*$C$DW$T$32)
.dwendtag $C$DW$1
$C$DW$7 .dwtag DW_TAG_subprogram, DW_AT_name("pru_rpmsg_receive")
.dwattr $C$DW$7, DW_AT_TI_symbol_name("pru_rpmsg_receive")
.dwattr $C$DW$7, DW_AT_type(*$C$DW$T$324)
.dwattr $C$DW$7, DW_AT_declaration
.dwattr $C$DW$7, DW_AT_external
.dwattr $C$DW$7, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$7, DW_AT_decl_line(0xb2)
.dwattr $C$DW$7, DW_AT_decl_column(0x09)
$C$DW$8 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$8, DW_AT_type(*$C$DW$T$309)
$C$DW$9 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$9, DW_AT_type(*$C$DW$T$313)
$C$DW$10 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$10, DW_AT_type(*$C$DW$T$313)
$C$DW$11 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$11, DW_AT_type(*$C$DW$T$3)
$C$DW$12 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$12, DW_AT_type(*$C$DW$T$313)
.dwendtag $C$DW$7
$C$DW$13 .dwtag DW_TAG_subprogram, DW_AT_name("pru_rpmsg_send")
.dwattr $C$DW$13, DW_AT_TI_symbol_name("pru_rpmsg_send")
.dwattr $C$DW$13, DW_AT_type(*$C$DW$T$324)
.dwattr $C$DW$13, DW_AT_declaration
.dwattr $C$DW$13, DW_AT_external
.dwattr $C$DW$13, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$13, DW_AT_decl_line(0xd8)
.dwattr $C$DW$13, DW_AT_decl_column(0x09)
$C$DW$14 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$14, DW_AT_type(*$C$DW$T$309)
$C$DW$15 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$15, DW_AT_type(*$C$DW$T$32)
$C$DW$16 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$16, DW_AT_type(*$C$DW$T$32)
$C$DW$17 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$17, DW_AT_type(*$C$DW$T$3)
$C$DW$18 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$18, DW_AT_type(*$C$DW$T$36)
.dwendtag $C$DW$13
$C$DW$19 .dwtag DW_TAG_subprogram, DW_AT_name("pru_rpmsg_channel")
.dwattr $C$DW$19, DW_AT_TI_symbol_name("pru_rpmsg_channel")
.dwattr $C$DW$19, DW_AT_type(*$C$DW$T$324)
.dwattr $C$DW$19, DW_AT_declaration
.dwattr $C$DW$19, DW_AT_external
.dwattr $C$DW$19, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$19, DW_AT_decl_line(0x104)
.dwattr $C$DW$19, DW_AT_decl_column(0x09)
$C$DW$20 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$20, DW_AT_type(*$C$DW$T$318)
$C$DW$21 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$21, DW_AT_type(*$C$DW$T$309)
$C$DW$22 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$22, DW_AT_type(*$C$DW$T$320)
$C$DW$23 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$23, DW_AT_type(*$C$DW$T$320)
$C$DW$24 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$24, DW_AT_type(*$C$DW$T$321)
.dwendtag $C$DW$19
.weak ||CT_CFG||
||CT_CFG||: .usect ".creg.PRU_CFG.noload.near",68,1
$C$DW$25 .dwtag DW_TAG_variable, DW_AT_name("CT_CFG")
.dwattr $C$DW$25, DW_AT_TI_symbol_name("CT_CFG")
.dwattr $C$DW$25, DW_AT_location[DW_OP_addr ||CT_CFG||]
.dwattr $C$DW$25, DW_AT_type(*$C$DW$T$293)
.dwattr $C$DW$25, DW_AT_external
.dwattr $C$DW$25, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$25, DW_AT_decl_line(0xf2)
.dwattr $C$DW$25, DW_AT_decl_column(0x17)
.global ||pru_intc_map||
.sect ".data:pru_intc_map", RW
.clink
.align 1
.elfsym ||pru_intc_map||,SYM_SIZE(4)
||pru_intc_map||:
.bits 18,8 ; pru_intc_map[0].evt @ 0
.bits 3,8 ; pru_intc_map[0].ch @ 8
.bits 19,8 ; pru_intc_map[1].evt @ 16
.bits 1,8 ; pru_intc_map[1].ch @ 24
$C$DW$26 .dwtag DW_TAG_variable, DW_AT_name("pru_intc_map")
.dwattr $C$DW$26, DW_AT_TI_symbol_name("pru_intc_map")
.dwattr $C$DW$26, DW_AT_location[DW_OP_addr ||pru_intc_map||]
.dwattr $C$DW$26, DW_AT_type(*$C$DW$T$341)
.dwattr $C$DW$26, DW_AT_external
.dwattr $C$DW$26, DW_AT_decl_file("/var/lib/cloud9/common/resource_table_1.h")
.dwattr $C$DW$26, DW_AT_decl_line(0x3c)
.dwattr $C$DW$26, DW_AT_decl_column(0x0f)
.global ||resourceTable||
.sect ".resource_table:retain", RW
.retain
.align 1
.elfsym ||resourceTable||,SYM_SIZE(124)
||resourceTable||:
.bits 1,32 ; resourceTable.base.ver @ 0
.bits 2,32 ; resourceTable.base.num @ 32
.bits 0,32 ; resourceTable.base.reserved[0] @ 64
.bits 0,32 ; resourceTable.base.reserved[1] @ 96
.bits 24,32 ; resourceTable.offset[0] @ 128
.bits 92,32 ; resourceTable.offset[1] @ 160
.bits 3,32 ; resourceTable.rpmsg_vdev.type @ 192
.bits 7,32 ; resourceTable.rpmsg_vdev.id @ 224
.bits 0,32 ; resourceTable.rpmsg_vdev.notifyid @ 256
.bits 1,32 ; resourceTable.rpmsg_vdev.dfeatures @ 288
.bits 0,32 ; resourceTable.rpmsg_vdev.gfeatures @ 320
.bits 0,32 ; resourceTable.rpmsg_vdev.config_len @ 352
.bits 0,8 ; resourceTable.rpmsg_vdev.status @ 384
.bits 2,8 ; resourceTable.rpmsg_vdev.num_of_vrings @ 392
.bits 0,8 ; resourceTable.rpmsg_vdev.reserved[0] @ 400
.bits 0,8 ; resourceTable.rpmsg_vdev.reserved[1] @ 408
.bits 0,32 ; resourceTable.rpmsg_vring0.da @ 416
.bits 16,32 ; resourceTable.rpmsg_vring0.align @ 448
.bits 16,32 ; resourceTable.rpmsg_vring0.num @ 480
.bits 0,32 ; resourceTable.rpmsg_vring0.notifyid @ 512
.bits 0,32 ; resourceTable.rpmsg_vring0.reserved @ 544
.bits 0,32 ; resourceTable.rpmsg_vring1.da @ 576
.bits 16,32 ; resourceTable.rpmsg_vring1.align @ 608
.bits 16,32 ; resourceTable.rpmsg_vring1.num @ 640
.bits 0,32 ; resourceTable.rpmsg_vring1.notifyid @ 672
.bits 0,32 ; resourceTable.rpmsg_vring1.reserved @ 704
.bits 5,32 ; resourceTable.pru_ints.type @ 736
.bits 1,32 ; resourceTable.pru_ints.u.sub_type @ 768
.bits 20,32 ; resourceTable.pru_ints.rsc_size @ 800
.bits 0,16 ; resourceTable.pru_ints.rsc.pru_ints.reserved @ 832
.bits 255,8 ; resourceTable.pru_ints.rsc.pru_ints.channel_host[0] @ 848
.bits 1,8 ; resourceTable.pru_ints.rsc.pru_ints.channel_host[1] @ 856
.bits 255,8 ; resourceTable.pru_ints.rsc.pru_ints.channel_host[2] @ 864
.bits 3,8 ; resourceTable.pru_ints.rsc.pru_ints.channel_host[3] @ 872
.bits 255,8 ; resourceTable.pru_ints.rsc.pru_ints.channel_host[4] @ 880
.bits 255,8 ; resourceTable.pru_ints.rsc.pru_ints.channel_host[5] @ 888
.bits 255,8 ; resourceTable.pru_ints.rsc.pru_ints.channel_host[6] @ 896
.bits 255,8 ; resourceTable.pru_ints.rsc.pru_ints.channel_host[7] @ 904
.bits 255,8 ; resourceTable.pru_ints.rsc.pru_ints.channel_host[8] @ 912
.bits 255,8 ; resourceTable.pru_ints.rsc.pru_ints.channel_host[9] @ 920
.bits 2,32 ; resourceTable.pru_ints.rsc.pru_ints.num_evts @ 928
.bits ||pru_intc_map||,32 ; resourceTable.pru_ints.rsc.pru_ints.event_channel @ 960
$C$DW$27 .dwtag DW_TAG_variable, DW_AT_name("resourceTable")
.dwattr $C$DW$27, DW_AT_TI_symbol_name("resourceTable")
.dwattr $C$DW$27, DW_AT_location[DW_OP_addr ||resourceTable||]
.dwattr $C$DW$27, DW_AT_type(*$C$DW$T$274)
.dwattr $C$DW$27, DW_AT_external
.dwattr $C$DW$27, DW_AT_decl_file("/var/lib/cloud9/common/resource_table_1.h")
.dwattr $C$DW$27, DW_AT_decl_line(0x50)
.dwattr $C$DW$27, DW_AT_decl_column(0x1a)
.weak ||CT_INTC||
||CT_INTC||: .usect ".creg.PRU_INTC.noload.far",5380,1
$C$DW$28 .dwtag DW_TAG_variable, DW_AT_name("CT_INTC")
.dwattr $C$DW$28, DW_AT_TI_symbol_name("CT_INTC")
.dwattr $C$DW$28, DW_AT_location[DW_OP_addr ||CT_INTC||]
.dwattr $C$DW$28, DW_AT_type(*$C$DW$T$298)
.dwattr $C$DW$28, DW_AT_external
.dwattr $C$DW$28, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$28, DW_AT_decl_line(0x389)
.dwattr $C$DW$28, DW_AT_decl_column(0x18)
.global ||pru_mem_array||
||pru_mem_array||: .usect ".creg.PRU_DMEM_0_1.near",4096,1
$C$DW$29 .dwtag DW_TAG_variable, DW_AT_name("pru_mem_array")
.dwattr $C$DW$29, DW_AT_TI_symbol_name("pru_mem_array")
.dwattr $C$DW$29, DW_AT_location[DW_OP_addr ||pru_mem_array||]
.dwattr $C$DW$29, DW_AT_type(*$C$DW$T$337)
.dwattr $C$DW$29, DW_AT_external
.dwattr $C$DW$29, DW_AT_decl_file("main.c")
.dwattr $C$DW$29, DW_AT_decl_line(0x38)
.dwattr $C$DW$29, DW_AT_decl_column(0x1d)
.global ||payload||
.common ||payload||,512,1
$C$DW$30 .dwtag DW_TAG_variable, DW_AT_name("payload")
.dwattr $C$DW$30, DW_AT_TI_symbol_name("payload")
.dwattr $C$DW$30, DW_AT_location[DW_OP_addr ||payload||]
.dwattr $C$DW$30, DW_AT_type(*$C$DW$T$338)
.dwattr $C$DW$30, DW_AT_external
.dwattr $C$DW$30, DW_AT_decl_file("main.c")
.dwattr $C$DW$30, DW_AT_decl_line(0x39)
.dwattr $C$DW$30, DW_AT_decl_column(0x06)
.global ||transport||
.common ||transport||,60,1
$C$DW$31 .dwtag DW_TAG_variable, DW_AT_name("transport")
.dwattr $C$DW$31, DW_AT_TI_symbol_name("transport")
.dwattr $C$DW$31, DW_AT_location[DW_OP_addr ||transport||]
.dwattr $C$DW$31, DW_AT_type(*$C$DW$T$275)
.dwattr $C$DW$31, DW_AT_external
.dwattr $C$DW$31, DW_AT_decl_file("main.c")
.dwattr $C$DW$31, DW_AT_decl_line(0x3a)
.dwattr $C$DW$31, DW_AT_decl_column(0x1c)
.global ||src||
.common ||src||,2,1
$C$DW$32 .dwtag DW_TAG_variable, DW_AT_name("src")
.dwattr $C$DW$32, DW_AT_TI_symbol_name("src")
.dwattr $C$DW$32, DW_AT_location[DW_OP_addr ||src||]
.dwattr $C$DW$32, DW_AT_type(*$C$DW$T$36)
.dwattr $C$DW$32, DW_AT_external
.dwattr $C$DW$32, DW_AT_decl_file("main.c")
.dwattr $C$DW$32, DW_AT_decl_line(0x3b)
.dwattr $C$DW$32, DW_AT_decl_column(0x0a)
.global ||dst||
.common ||dst||,2,1
$C$DW$33 .dwtag DW_TAG_variable, DW_AT_name("dst")
.dwattr $C$DW$33, DW_AT_TI_symbol_name("dst")
.dwattr $C$DW$33, DW_AT_location[DW_OP_addr ||dst||]
.dwattr $C$DW$33, DW_AT_type(*$C$DW$T$36)
.dwattr $C$DW$33, DW_AT_external
.dwattr $C$DW$33, DW_AT_decl_file("main.c")
.dwattr $C$DW$33, DW_AT_decl_line(0x3b)
.dwattr $C$DW$33, DW_AT_decl_column(0x0f)
.global ||len||
.common ||len||,2,1
$C$DW$34 .dwtag DW_TAG_variable, DW_AT_name("len")
.dwattr $C$DW$34, DW_AT_TI_symbol_name("len")
.dwattr $C$DW$34, DW_AT_location[DW_OP_addr ||len||]
.dwattr $C$DW$34, DW_AT_type(*$C$DW$T$36)
.dwattr $C$DW$34, DW_AT_external
.dwattr $C$DW$34, DW_AT_decl_file("main.c")
.dwattr $C$DW$34, DW_AT_decl_line(0x3b)
.dwattr $C$DW$34, DW_AT_decl_column(0x14)
.global ||status||
.common ||status||,4,1
$C$DW$35 .dwtag DW_TAG_variable, DW_AT_name("status")
.dwattr $C$DW$35, DW_AT_TI_symbol_name("status")
.dwattr $C$DW$35, DW_AT_location[DW_OP_addr ||status||]
.dwattr $C$DW$35, DW_AT_type(*$C$DW$T$308)
.dwattr $C$DW$35, DW_AT_external
.dwattr $C$DW$35, DW_AT_decl_file("main.c")
.dwattr $C$DW$35, DW_AT_decl_line(0x3c)
.dwattr $C$DW$35, DW_AT_decl_column(0x13)
.global ||i||
.common ||i||,4,1
$C$DW$36 .dwtag DW_TAG_variable, DW_AT_name("i")
.dwattr $C$DW$36, DW_AT_TI_symbol_name("i")
.dwattr $C$DW$36, DW_AT_location[DW_OP_addr ||i||]
.dwattr $C$DW$36, DW_AT_type(*$C$DW$T$10)
.dwattr $C$DW$36, DW_AT_external
.dwattr $C$DW$36, DW_AT_decl_file("main.c")
.dwattr $C$DW$36, DW_AT_decl_line(0x3d)
.dwattr $C$DW$36, DW_AT_decl_column(0x05)
.global ||init_pins||
.sect ".init_pins:retain"
.retain
.align 1
.elfsym ||init_pins||,SYM_SIZE(171)
||init_pins||:
.bits 47,8 ; init_pins[0] @ 0
.bits 115,8 ; init_pins[1] @ 8
.bits 121,8 ; init_pins[2] @ 16
.bits 115,8 ; init_pins[3] @ 24
.bits 47,8 ; init_pins[4] @ 32
.bits 99,8 ; init_pins[5] @ 40
.bits 108,8 ; init_pins[6] @ 48
.bits 97,8 ; init_pins[7] @ 56
.bits 115,8 ; init_pins[8] @ 64
.bits 115,8 ; init_pins[9] @ 72
.bits 47,8 ; init_pins[10] @ 80
.bits 108,8 ; init_pins[11] @ 88
.bits 101,8 ; init_pins[12] @ 96
.bits 100,8 ; init_pins[13] @ 104
.bits 115,8 ; init_pins[14] @ 112
.bits 47,8 ; init_pins[15] @ 120
.bits 98,8 ; init_pins[16] @ 128
.bits 101,8 ; init_pins[17] @ 136
.bits 97,8 ; init_pins[18] @ 144
.bits 103,8 ; init_pins[19] @ 152
.bits 108,8 ; init_pins[20] @ 160
.bits 101,8 ; init_pins[21] @ 168
.bits 98,8 ; init_pins[22] @ 176
.bits 111,8 ; init_pins[23] @ 184
.bits 110,8 ; init_pins[24] @ 192
.bits 101,8 ; init_pins[25] @ 200
.bits 58,8 ; init_pins[26] @ 208
.bits 103,8 ; init_pins[27] @ 216
.bits 114,8 ; init_pins[28] @ 224
.bits 101,8 ; init_pins[29] @ 232
.bits 101,8 ; init_pins[30] @ 240
.bits 110,8 ; init_pins[31] @ 248
.bits 58,8 ; init_pins[32] @ 256
.bits 117,8 ; init_pins[33] @ 264
.bits 115,8 ; init_pins[34] @ 272
.bits 114,8 ; init_pins[35] @ 280
.bits 49,8 ; init_pins[36] @ 288
.bits 47,8 ; init_pins[37] @ 296
.bits 116,8 ; init_pins[38] @ 304
.bits 114,8 ; init_pins[39] @ 312
.bits 105,8 ; init_pins[40] @ 320
.bits 103,8 ; init_pins[41] @ 328
.bits 103,8 ; init_pins[42] @ 336
.bits 101,8 ; init_pins[43] @ 344
.bits 114,8 ; init_pins[44] @ 352
.bits 0,8 ; init_pins[45] @ 360
.bits 110,8 ; init_pins[46] @ 368
.bits 111,8 ; init_pins[47] @ 376
.bits 110,8 ; init_pins[48] @ 384
.bits 101,8 ; init_pins[49] @ 392
.bits 0,8 ; init_pins[50] @ 400
.bits 47,8 ; init_pins[51] @ 408
.bits 115,8 ; init_pins[52] @ 416
.bits 121,8 ; init_pins[53] @ 424
.bits 115,8 ; init_pins[54] @ 432
.bits 47,8 ; init_pins[55] @ 440
.bits 99,8 ; init_pins[56] @ 448
.bits 108,8 ; init_pins[57] @ 456
.bits 97,8 ; init_pins[58] @ 464
.bits 115,8 ; init_pins[59] @ 472
.bits 115,8 ; init_pins[60] @ 480
.bits 47,8 ; init_pins[61] @ 488
.bits 108,8 ; init_pins[62] @ 496
.bits 101,8 ; init_pins[63] @ 504
.bits 100,8 ; init_pins[64] @ 512
.bits 115,8 ; init_pins[65] @ 520
.bits 47,8 ; init_pins[66] @ 528
.bits 98,8 ; init_pins[67] @ 536
.bits 101,8 ; init_pins[68] @ 544
.bits 97,8 ; init_pins[69] @ 552
.bits 103,8 ; init_pins[70] @ 560
.bits 108,8 ; init_pins[71] @ 568
.bits 101,8 ; init_pins[72] @ 576
.bits 98,8 ; init_pins[73] @ 584
.bits 111,8 ; init_pins[74] @ 592
.bits 110,8 ; init_pins[75] @ 600
.bits 101,8 ; init_pins[76] @ 608
.bits 58,8 ; init_pins[77] @ 616
.bits 103,8 ; init_pins[78] @ 624
.bits 114,8 ; init_pins[79] @ 632
.bits 101,8 ; init_pins[80] @ 640
.bits 101,8 ; init_pins[81] @ 648
.bits 110,8 ; init_pins[82] @ 656
.bits 58,8 ; init_pins[83] @ 664
.bits 117,8 ; init_pins[84] @ 672
.bits 115,8 ; init_pins[85] @ 680
.bits 114,8 ; init_pins[86] @ 688
.bits 50,8 ; init_pins[87] @ 696
.bits 47,8 ; init_pins[88] @ 704
.bits 116,8 ; init_pins[89] @ 712
.bits 114,8 ; init_pins[90] @ 720
.bits 105,8 ; init_pins[91] @ 728
.bits 103,8 ; init_pins[92] @ 736
.bits 103,8 ; init_pins[93] @ 744
.bits 101,8 ; init_pins[94] @ 752
.bits 114,8 ; init_pins[95] @ 760
.bits 0,8 ; init_pins[96] @ 768
.bits 110,8 ; init_pins[97] @ 776
.bits 111,8 ; init_pins[98] @ 784
.bits 110,8 ; init_pins[99] @ 792
.bits 101,8 ; init_pins[100] @ 800
.bits 0,8 ; init_pins[101] @ 808
.bits 47,8 ; init_pins[102] @ 816
.bits 115,8 ; init_pins[103] @ 824
.bits 121,8 ; init_pins[104] @ 832
.bits 115,8 ; init_pins[105] @ 840
.bits 47,8 ; init_pins[106] @ 848
.bits 98,8 ; init_pins[107] @ 856
.bits 117,8 ; init_pins[108] @ 864
.bits 115,8 ; init_pins[109] @ 872
.bits 47,8 ; init_pins[110] @ 880
.bits 112,8 ; init_pins[111] @ 888
.bits 108,8 ; init_pins[112] @ 896
.bits 97,8 ; init_pins[113] @ 904
.bits 116,8 ; init_pins[114] @ 912
.bits 102,8 ; init_pins[115] @ 920
.bits 111,8 ; init_pins[116] @ 928
.bits 114,8 ; init_pins[117] @ 936
.bits 109,8 ; init_pins[118] @ 944
.bits 47,8 ; init_pins[119] @ 952
.bits 100,8 ; init_pins[120] @ 960
.bits 114,8 ; init_pins[121] @ 968
.bits 105,8 ; init_pins[122] @ 976
.bits 118,8 ; init_pins[123] @ 984
.bits 101,8 ; init_pins[124] @ 992
.bits 114,8 ; init_pins[125] @ 1000
.bits 115,8 ; init_pins[126] @ 1008
.bits 47,8 ; init_pins[127] @ 1016
.bits 116,8 ; init_pins[128] @ 1024
.bits 105,8 ; init_pins[129] @ 1032
.bits 95,8 ; init_pins[130] @ 1040
.bits 97,8 ; init_pins[131] @ 1048
.bits 109,8 ; init_pins[132] @ 1056
.bits 51,8 ; init_pins[133] @ 1064
.bits 51,8 ; init_pins[134] @ 1072
.bits 53,8 ; init_pins[135] @ 1080
.bits 57,8 ; init_pins[136] @ 1088
.bits 45,8 ; init_pins[137] @ 1096
.bits 116,8 ; init_pins[138] @ 1104
.bits 115,8 ; init_pins[139] @ 1112
.bits 99,8 ; init_pins[140] @ 1120
.bits 97,8 ; init_pins[141] @ 1128
.bits 100,8 ; init_pins[142] @ 1136
.bits 99,8 ; init_pins[143] @ 1144
.bits 47,8 ; init_pins[144] @ 1152
.bits 117,8 ; init_pins[145] @ 1160
.bits 110,8 ; init_pins[146] @ 1168
.bits 98,8 ; init_pins[147] @ 1176
.bits 105,8 ; init_pins[148] @ 1184
.bits 110,8 ; init_pins[149] @ 1192
.bits 100,8 ; init_pins[150] @ 1200
.bits 0,8 ; init_pins[151] @ 1208
.bits 52,8 ; init_pins[152] @ 1216
.bits 52,8 ; init_pins[153] @ 1224
.bits 101,8 ; init_pins[154] @ 1232
.bits 48,8 ; init_pins[155] @ 1240
.bits 100,8 ; init_pins[156] @ 1248
.bits 48,8 ; init_pins[157] @ 1256
.bits 48,8 ; init_pins[158] @ 1264
.bits 48,8 ; init_pins[159] @ 1272
.bits 46,8 ; init_pins[160] @ 1280
.bits 116,8 ; init_pins[161] @ 1288
.bits 115,8 ; init_pins[162] @ 1296
.bits 99,8 ; init_pins[163] @ 1304
.bits 97,8 ; init_pins[164] @ 1312
.bits 100,8 ; init_pins[165] @ 1320
.bits 99,8 ; init_pins[166] @ 1328
.bits 0,8 ; init_pins[167] @ 1336
.bits 0,8 ; init_pins[168] @ 1344
.bits 0,8 ; init_pins[169] @ 1352
.bits 0,8 ; init_pins[170] @ 1360
$C$DW$37 .dwtag DW_TAG_variable, DW_AT_name("init_pins")
.dwattr $C$DW$37, DW_AT_TI_symbol_name("init_pins")
.dwattr $C$DW$37, DW_AT_location[DW_OP_addr ||init_pins||]
.dwattr $C$DW$37, DW_AT_type(*$C$DW$T$340)
.dwattr $C$DW$37, DW_AT_external
.dwattr $C$DW$37, DW_AT_decl_file("main.c")
.dwattr $C$DW$37, DW_AT_decl_line(0xb2)
.dwattr $C$DW$37, DW_AT_decl_column(0x0e)
; optpru /tmp/TI0UWyHXaDO /tmp/TI0UWkFOR4s
; acpiapru -@/tmp/TI0UWH5qJ1f
.sect ".text:get_sample"
.clink
.global ||get_sample||
$C$DW$38 .dwtag DW_TAG_subprogram, DW_AT_name("get_sample")
.dwattr $C$DW$38, DW_AT_low_pc(||get_sample||)
.dwattr $C$DW$38, DW_AT_high_pc(0x00)
.dwattr $C$DW$38, DW_AT_TI_symbol_name("get_sample")
.dwattr $C$DW$38, DW_AT_external
.dwattr $C$DW$38, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$38, DW_AT_TI_begin_file("main.c")
.dwattr $C$DW$38, DW_AT_TI_begin_line(0x44)
.dwattr $C$DW$38, DW_AT_TI_begin_column(0x0a)
.dwattr $C$DW$38, DW_AT_decl_file("main.c")
.dwattr $C$DW$38, DW_AT_decl_line(0x44)
.dwattr $C$DW$38, DW_AT_decl_column(0x0a)
.dwattr $C$DW$38, DW_AT_TI_max_frame_size(0x00)
.dwpsn file "main.c",line 68,column 22,is_stmt,address ||get_sample||,isa 0
.dwfde $C$DW$CIE, ||get_sample||
;----------------------------------------------------------------------
; 68 | uint32_t get_sample(){
; 69 | uint32_t sample;
; 70 | unsigned int i, count, data ;
;----------------------------------------------------------------------
;***************************************************************
;* FNAME: get_sample FR SIZE: 0 *
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* 0 Auto, 0 SOE *
;***************************************************************
||get_sample||:
;* --------------------------------------------------------------------------*
;* r15_0 assigned to data
$C$DW$39 .dwtag DW_TAG_variable, DW_AT_name("data")
.dwattr $C$DW$39, DW_AT_TI_symbol_name("data")
.dwattr $C$DW$39, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$39, DW_AT_location[DW_OP_regx 0x3c]
;* r0_0 assigned to count
$C$DW$40 .dwtag DW_TAG_variable, DW_AT_name("count")
.dwattr $C$DW$40, DW_AT_TI_symbol_name("count")
.dwattr $C$DW$40, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$40, DW_AT_location[DW_OP_reg0]
;* r14_0 assigned to sample
$C$DW$41 .dwtag DW_TAG_variable, DW_AT_name("sample")
.dwattr $C$DW$41, DW_AT_TI_symbol_name("sample")
.dwattr $C$DW$41, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$41, DW_AT_location[DW_OP_regx 0x38]
;* r0_0 assigned to $O$L1
;* r1_0 assigned to $O$K4
.dwcfi cfa_offset, 0
.dwpsn file "main.c",line 71,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 71 | HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_STEPENABLE) = 0xfe;
;----------------------------------------------------------------------
LDI32 r1, 0x44e0d028 ; [ALU_PRU] |71| $O$K4
LDI r0, 0x00fe ; [ALU_PRU] |71|
SBBO &r0, r1, 44, 4 ; [ALU_PRU] |71| $O$K4
;* --------------------------------------------------------------------------*
;* BEGIN LOOP ||$C$L1||
;*
;* Loop source line : 73
;* Loop closing brace source line : 73
;* Known Minimum Trip Count : 1
;* Known Maximum Trip Count : 4294967295
;* Known Max Trip Count Factor : 1
;* --------------------------------------------------------------------------*
||$C$L1||:
.dwpsn file "main.c",line 73,column 10,is_stmt,isa 0
;----------------------------------------------------------------------
; 73 | while (!(HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_IRQSTATUS)&0x02));
;----------------------------------------------------------------------
LBBO &r0, r1, 0, 4 ; [ALU_PRU] |73| $O$K4
QBBC ||$C$L1||, r0, 0x01 ; [ALU_PRU] |73|
;* --------------------------------------------------------------------------*
.dwpsn file "main.c",line 75,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 75 | HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_IRQSTATUS) = 0x02;
;----------------------------------------------------------------------
LDI r0, 0x0002 ; [ALU_PRU] |75|
.dwpsn file "main.c",line 76,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 76 | sample = 0xFFFFFFFF;
;----------------------------------------------------------------------
FILL &r14, 4 ; [ALU_PRU] |76| sample
.dwpsn file "main.c",line 75,column 3,is_stmt,isa 0
SBBO &r0, r1, 0, 4 ; [ALU_PRU] |75| $O$K4
.dwpsn file "main.c",line 77,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 77 | count = HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_FIFOCOUNT(0));
; 78 | //sample = count;
;----------------------------------------------------------------------
LBBO &r0, r1, 188, 4 ; [ALU_PRU] |77| count,$O$K4
.dwpsn file "main.c",line 79,column 15,is_stmt,isa 0
;----------------------------------------------------------------------
; 79 | for (i = 0; i < count; i++) {
;----------------------------------------------------------------------
QBEQ ||$C$L4||, r0, 0x00 ; [ALU_PRU] |79| count
;* --------------------------------------------------------------------------*
;* BEGIN LOOP ||$C$L2||
;*
;* Loop source line : 79
;* Loop closing brace source line : 85
;* Known Minimum Trip Count : 1
;* Known Maximum Trip Count : 2147483647
;* Known Max Trip Count Factor : 1
;* --------------------------------------------------------------------------*
||$C$L2||:
.dwpsn file "main.c",line 80,column 5,is_stmt,isa 0
;----------------------------------------------------------------------
; 80 | data = HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_FIFODATA(0));
;----------------------------------------------------------------------
LBBO &r15, r1, 216, 4 ; [ALU_PRU] |80| data,$O$K4
.dwpsn file "main.c",line 81,column 5,is_stmt,isa 0
;----------------------------------------------------------------------
; 81 | if ((data & 0x000F0000) == 0) {
;----------------------------------------------------------------------
LDI32 r16, 0x000f0000 ; [ALU_PRU] |81|
AND r16, r15, r16 ; [ALU_PRU] |81| data
QBNE ||$C$L3||, r16, 0x00 ; [ALU_PRU] |81|
;* --------------------------------------------------------------------------*
.dwpsn file "main.c",line 83,column 7,is_stmt,isa 0
;----------------------------------------------------------------------
; 83 | sample = data & 0xFFF;
; 86 | return sample;
;----------------------------------------------------------------------
LDI r14, 0x0fff ; [ALU_PRU] |83|
AND r14, r15, r14 ; [ALU_PRU] |83| sample,data
;* --------------------------------------------------------------------------*
||$C$L3||:
.dwpsn file "main.c",line 79,column 15,is_stmt,isa 0
SUB r0, r0, 0x01 ; [ALU_PRU] |79| $O$L1,$O$L1
QBNE ||$C$L2||, r0, 0x00 ; [ALU_PRU] |79| $O$L1
;* --------------------------------------------------------------------------*
||$C$L4||:
$C$DW$42 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$42, DW_AT_low_pc(0x00)
.dwattr $C$DW$42, DW_AT_TI_return
JMP r3.w2 ; [ALU_PRU]
.dwattr $C$DW$38, DW_AT_TI_end_file("main.c")
.dwattr $C$DW$38, DW_AT_TI_end_line(0x57)
.dwattr $C$DW$38, DW_AT_TI_end_column(0x01)
.dwendentry
.dwendtag $C$DW$38
.sect ".text:pru_function"
.clink
.global ||pru_function||
$C$DW$43 .dwtag DW_TAG_subprogram, DW_AT_name("pru_function")
.dwattr $C$DW$43, DW_AT_low_pc(||pru_function||)
.dwattr $C$DW$43, DW_AT_high_pc(0x00)
.dwattr $C$DW$43, DW_AT_TI_symbol_name("pru_function")
.dwattr $C$DW$43, DW_AT_external
.dwattr $C$DW$43, DW_AT_TI_begin_file("main.c")
.dwattr $C$DW$43, DW_AT_TI_begin_line(0x8c)
.dwattr $C$DW$43, DW_AT_TI_begin_column(0x06)
.dwattr $C$DW$43, DW_AT_decl_file("main.c")
.dwattr $C$DW$43, DW_AT_decl_line(0x8c)
.dwattr $C$DW$43, DW_AT_decl_column(0x06)
.dwattr $C$DW$43, DW_AT_TI_max_frame_size(0x1e)
.dwpsn file "main.c",line 141,column 1,is_stmt,address ||pru_function||,isa 0
.dwfde $C$DW$CIE, ||pru_function||
;----------------------------------------------------------------------
; 140 | void pru_function()
;----------------------------------------------------------------------
;***************************************************************
;* FNAME: pru_function FR SIZE: 30 *
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* 0 Auto, 30 SOE *
;***************************************************************
||pru_function||:
;* --------------------------------------------------------------------------*
;* r18_0 assigned to $O$C1
;* r5_0 assigned to $O$C2
;* r0_0 assigned to $O$C3
;* r0_0 assigned to $O$v1
;* r10_0 assigned to $O$K51
;* r4_0 assigned to $O$K49
;* r9_0 assigned to $O$K43
;* r8_0 assigned to $O$K41
;* r7_0 assigned to $O$K46
;* r4_0 assigned to $O$K44
;* r6_0 assigned to $O$K4
;* r5_0 assigned to $O$K28
;* r0_0 assigned to $O$K12
.dwcfi cfa_offset, 0
SUB r2, r2, 0x1e ; [ALU_PRU]
.dwcfi cfa_offset, 30
.dwpsn file "main.c",line 144,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 144 | CT_CFG.SYSCFG_bit.STANDBY_INIT = 0;
; 146 | CT_INTC.SICR_bit.STS_CLR_IDX = FROM_ARM_HOST;
;----------------------------------------------------------------------
LBCO &r0, __PRU_CREG_PRU_CFG, $CSBREL(||CT_CFG||+4), 4 ; [ALU_PRU] |144| CT_CFG
SBBO &r3.b2, r2, 0, 30 ; [ALU_PRU]
.dwcfi save_reg_to_mem, 14, -30
.dwcfi save_reg_to_mem, 15, -29
.dwcfi save_reg_to_mem, 16, -28
.dwcfi save_reg_to_mem, 17, -27
.dwcfi save_reg_to_mem, 18, -26
.dwcfi save_reg_to_mem, 19, -25
.dwcfi save_reg_to_mem, 20, -24
.dwcfi save_reg_to_mem, 21, -23
.dwcfi save_reg_to_mem, 22, -22
.dwcfi save_reg_to_mem, 23, -21
.dwcfi save_reg_to_mem, 24, -20
.dwcfi save_reg_to_mem, 25, -19
.dwcfi save_reg_to_mem, 26, -18
.dwcfi save_reg_to_mem, 27, -17
.dwcfi save_reg_to_mem, 28, -16
.dwcfi save_reg_to_mem, 29, -15
.dwcfi save_reg_to_mem, 30, -14
.dwcfi save_reg_to_mem, 31, -13
.dwcfi save_reg_to_mem, 32, -12
.dwcfi save_reg_to_mem, 33, -11
.dwcfi save_reg_to_mem, 34, -10
.dwcfi save_reg_to_mem, 35, -9
.dwcfi save_reg_to_mem, 36, -8
.dwcfi save_reg_to_mem, 37, -7
.dwcfi save_reg_to_mem, 38, -6
.dwcfi save_reg_to_mem, 39, -5
.dwcfi save_reg_to_mem, 40, -4
.dwcfi save_reg_to_mem, 41, -3
.dwcfi save_reg_to_mem, 42, -2
.dwcfi save_reg_to_mem, 43, -1
.dwpsn file "main.c",line 148,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 148 | status = &resourceTable.rpmsg_vdev.status;
;----------------------------------------------------------------------
LDI r14, ||status|| ; [ALU_PRU] |148| status
.dwpsn file "main.c",line 146,column 3,is_stmt,isa 0
LDI32 r6, ||CT_INTC||+36 ; [ALU_PRU] |146| $O$K4,CT_INTC
.dwpsn file "main.c",line 144,column 3,is_stmt,isa 0
CLR r0, r0, 0x00000004 ; [ALU_PRU] |144|
SBCO &r0, __PRU_CREG_PRU_CFG, $CSBREL(||CT_CFG||+4), 4 ; [ALU_PRU] |144| CT_CFG
.dwpsn file "main.c",line 146,column 3,is_stmt,isa 0
LDI32 r0, 0xfffffc00 ; [ALU_PRU] |146|
LBBO &r1, r6, 0, 4 ; [ALU_PRU] |146| $O$K4
AND r0, r1, r0 ; [ALU_PRU] |146|
OR r0, r0, 0x13 ; [ALU_PRU] |146|
SBBO &r0, r6, 0, 4 ; [ALU_PRU] |146| $O$K4
.dwpsn file "main.c",line 148,column 3,is_stmt,isa 0
LDI r0, ||resourceTable|| ; [ALU_PRU] |148| $O$C3,resourceTable
ADD r1, r0, 0x30 ; [ALU_PRU] |148| $O$C3
SBBO &r1, r14, 0, 4 ; [ALU_PRU] |148|
;* --------------------------------------------------------------------------*
;* BEGIN LOOP ||$C$L5||
;*
;* Loop source line : 149
;* Loop closing brace source line : 149
;* Known Minimum Trip Count : 1
;* Known Maximum Trip Count : 4294967295
;* Known Max Trip Count Factor : 1
;* --------------------------------------------------------------------------*
||$C$L5||:
.dwpsn file "main.c",line 149,column 10,is_stmt,isa 0
;----------------------------------------------------------------------
; 149 | while (!(*status & VIRTIO_CONFIG_S_DRIVER_OK));
;----------------------------------------------------------------------
LBBO &r1.b0, r0, 48, 1 ; [ALU_PRU] |149| $O$K12
QBBC ||$C$L5||, r1.b0, 0x02 ; [ALU_PRU] |149|
;* --------------------------------------------------------------------------*
.dwpsn file "main.c",line 151,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 151 | pru_rpmsg_init(&transport, &resourceTable.rpmsg_vring0,
; 152 | &resourceTable.rpmsg_vring1, TO_ARM_HOST, FROM_ARM_HOST);
;----------------------------------------------------------------------
ADD r15, r0, 0x34 ; [ALU_PRU] |151| $O$K12
LDI r5, ||transport|| ; [ALU_PRU] |151| $O$C2,transport
LDI r17, 0x0012 ; [ALU_PRU] |151|
LDI r18, 0x0013 ; [ALU_PRU] |151|
ADD r16, r0, 0x48 ; [ALU_PRU] |151| $O$K12
MOV r14, r5 ; [ALU_PRU] |151| $O$C2
$C$DW$44 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$44, DW_AT_low_pc(0x00)
.dwattr $C$DW$44, DW_AT_name("pru_rpmsg_init")
.dwattr $C$DW$44, DW_AT_TI_call
JAL r3.w2, ||pru_rpmsg_init|| ; [ALU_PRU] |151| pru_rpmsg_init
;* --------------------------------------------------------------------------*
;* BEGIN LOOP ||$C$L6||
;*
;* Loop source line : 155
;* Loop closing brace source line : 156
;* Known Minimum Trip Count : 1
;* Known Maximum Trip Count : 4294967295
;* Known Max Trip Count Factor : 1
;* --------------------------------------------------------------------------*
||$C$L6||:
.dwpsn file "main.c",line 155,column 10,is_stmt,isa 0
;----------------------------------------------------------------------
; 155 | while (pru_rpmsg_channel(RPMSG_NS_CREATE, &transport, CHAN_NAME, CHAN_D
; | ESC,
; 156 | CHAN_PORT) != PRU_RPMSG_SUCCESS);
; 157 | while (1) {
;----------------------------------------------------------------------
LDI r14.b0, 0x00 ; [ALU_PRU] |155|
MOV r15, r5 ; [ALU_PRU] |155| $O$K28
LDI32 r16, $C$SL1 ; [ALU_PRU] |155|
LDI32 r17, $C$SL2 ; [ALU_PRU] |155|
LDI r18, 0x001e ; [ALU_PRU] |155|
$C$DW$45 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$45, DW_AT_low_pc(0x00)
.dwattr $C$DW$45, DW_AT_name("pru_rpmsg_channel")
.dwattr $C$DW$45, DW_AT_TI_call
JAL r3.w2, ||pru_rpmsg_channel|| ; [ALU_PRU] |155| pru_rpmsg_channel
QBNE ||$C$L6||, r14.w0, 0x00 ; [ALU_PRU] |155|
;* --------------------------------------------------------------------------*
ZERO &r4, 4 ; [ALU_PRU] $O$K44
LDI32 r10, ||pru_mem_array|| ; [ALU_PRU] $O$K51,pru_mem_array
LDI r7, ||i|| ; [ALU_PRU] $O$K46,i
LDI r9, ||src|| ; [ALU_PRU] $O$K43,src
LDI r8, ||dst|| ; [ALU_PRU] $O$K41,dst
;* --------------------------------------------------------------------------*
;* BEGIN LOOP ||$C$L7||
;*
;* Loop source line : 157
;* Loop closing brace source line : 172
;* Known Minimum Trip Count : 1
;* Known Maximum Trip Count : 4294967295
;* Known Max Trip Count Factor : 1
;* --------------------------------------------------------------------------*
||$C$L7||:
.dwpsn file "main.c",line 159,column 5,is_stmt,isa 0
;----------------------------------------------------------------------
; 159 | if (__R31 & HOST_INT) {
;----------------------------------------------------------------------
QBBC ||$C$L7||, r31, 0x1f ; [ALU_PRU] |159|
;* --------------------------------------------------------------------------*
.dwpsn file "main.c",line 161,column 7,is_stmt,isa 0
;----------------------------------------------------------------------
; 161 | CT_INTC.SICR_bit.STS_CLR_IDX = FROM_ARM_HOST;
;----------------------------------------------------------------------
LDI32 r0, 0xfffffc00 ; [ALU_PRU] |161|
LBBO &r1, r6, 0, 4 ; [ALU_PRU] |161| $O$K4
AND r0, r1, r0 ; [ALU_PRU] |161|
OR r0, r0, 0x13 ; [ALU_PRU] |161|
SBBO &r0, r6, 0, 4 ; [ALU_PRU] |161| $O$K4
;* --------------------------------------------------------------------------*
;* BEGIN LOOP ||$C$L8||
;*
;* Loop source line : 162
;* Loop closing brace source line : 170
;* Known Minimum Trip Count : 1
;* Known Maximum Trip Count : 4294967295
;* Known Max Trip Count Factor : 1
;* --------------------------------------------------------------------------*
||$C$L8||:
.dwpsn file "main.c",line 162,column 14,is_stmt,isa 0
;----------------------------------------------------------------------
; 162 | while (pru_rpmsg_receive(&transport, &src, &dst, payload,
; 163 | (uint16_t*)sizeof(int*)) == PRU_RPMSG_SUCCESS) {
;----------------------------------------------------------------------
MOV r14, r5 ; [ALU_PRU] |162| $O$K28
MOV r15, r9 ; [ALU_PRU] |162| $O$K43
MOV r16, r8 ; [ALU_PRU] |162| $O$K41
LDI r17, ||payload|| ; [ALU_PRU] |162| payload
LDI r18, 0x0004 ; [ALU_PRU] |162|
$C$DW$46 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$46, DW_AT_low_pc(0x00)
.dwattr $C$DW$46, DW_AT_name("pru_rpmsg_receive")
.dwattr $C$DW$46, DW_AT_TI_call
JAL r3.w2, ||pru_rpmsg_receive|| ; [ALU_PRU] |162| pru_rpmsg_receive
QBNE ||$C$L7||, r14.w0, 0x00 ; [ALU_PRU] |162|
;* --------------------------------------------------------------------------*
.dwpsn file "main.c",line 164,column 13,is_stmt,isa 0
;----------------------------------------------------------------------
; 164 | for(i=0;i<NUMBER_SAMPLES;i++){ // Get the data points and save them to
; | memory
;----------------------------------------------------------------------
SBBO &r4, r7, 0, 4 ; [ALU_PRU] |164| $O$K46,$O$K44
ZERO &r0, 4 ; [ALU_PRU] |164| $O$v1
.dwpsn file "main.c",line 164,column 17,is_stmt,isa 0
LDI r17, 0x0400 ; [ALU_PRU] |164|
;* --------------------------------------------------------------------------*
;* BEGIN LOOP ||$C$L9||
;*
;* Loop source line : 164
;* Loop closing brace source line : 167
;* Known Minimum Trip Count : 1
;* Known Maximum Trip Count : 4294967295
;* Known Max Trip Count Factor : 1
;* --------------------------------------------------------------------------*
||$C$L9||:
.dwpsn file "main.c",line 165,column 11,is_stmt,isa 0
;----------------------------------------------------------------------
; 165 | pru_mem_array[i]=0; // clear the memory
;----------------------------------------------------------------------
LSL r0, r0, 0x02 ; [ALU_PRU] |165| $O$v1
ADD r18, r0, r10 ; [ALU_PRU] |165| $O$C1,$O$K51
SBBO &r4, r18, 0, 4 ; [ALU_PRU] |165| $O$C1,$O$K49
.dwpsn file "main.c",line 166,column 11,is_stmt,isa 0
;----------------------------------------------------------------------
; 166 | pru_mem_array[i]=get_sample(); // write the sample
;----------------------------------------------------------------------
$C$DW$47 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$47, DW_AT_low_pc(0x00)
.dwattr $C$DW$47, DW_AT_name("get_sample")
.dwattr $C$DW$47, DW_AT_TI_call
JAL r3.w2, ||get_sample|| ; [ALU_PRU] |166| get_sample
.dwpsn file "main.c",line 164,column 17,is_stmt,isa 0
MOV r1, r17 ; [ALU_PRU] |164|
XOR r1.b3, r1.b3, 0x80 ; [ALU_PRU] |164|
.dwpsn file "main.c",line 166,column 11,is_stmt,isa 0
;----------------------------------------------------------------------
; 168 | // Tell the arm that data is ready
;----------------------------------------------------------------------
SBBO &r14, r18, 0, 4 ; [ALU_PRU] |166| $O$C1
.dwpsn file "main.c",line 164,column 34,is_stmt,isa 0
LBBO &r0, r7, 0, 4 ; [ALU_PRU] |164| $O$K46
ADD r0, r0, 0x01 ; [ALU_PRU] |164| $O$v1
SBBO &r0, r7, 0, 4 ; [ALU_PRU] |164| $O$K46,$O$v1
.dwpsn file "main.c",line 164,column 17,is_stmt,isa 0
MOV r14, r0 ; [ALU_PRU] |164| $O$v1
XOR r14.b3, r14.b3, 0x80 ; [ALU_PRU] |164|
QBLT ||$C$L9||, r1, r14 ; [ALU_PRU] |164|
;* --------------------------------------------------------------------------*
.dwpsn file "main.c",line 169,column 9,is_stmt,isa 0
;----------------------------------------------------------------------
; 169 | pru_rpmsg_send(&transport, dst, src,"writen" ,6);
;----------------------------------------------------------------------
LBBO &r0.w0, r8, 0, 2 ; [ALU_PRU] |169| $O$K41
MOV r14, r5 ; [ALU_PRU] |169| $O$K28
LDI32 r17, $C$SL3 ; [ALU_PRU] |169|
LDI r18.w0, 0x0006 ; [ALU_PRU] |169|
MOV r15, r0.w0 ; [ALU_PRU] |169|
LBBO &r0.w0, r9, 0, 2 ; [ALU_PRU] |169| $O$K43
MOV r16, r0.w0 ; [ALU_PRU] |169|
$C$DW$48 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$48, DW_AT_low_pc(0x00)
.dwattr $C$DW$48, DW_AT_name("pru_rpmsg_send")
.dwattr $C$DW$48, DW_AT_TI_call
JAL r3.w2, ||pru_rpmsg_send|| ; [ALU_PRU] |169| pru_rpmsg_send
JMP ||$C$L8|| ; [ALU_PRU] |169|
;* --------------------------------------------------------------------------*
.dwattr $C$DW$43, DW_AT_TI_end_file("main.c")
.dwattr $C$DW$43, DW_AT_TI_end_line(0xad)
.dwattr $C$DW$43, DW_AT_TI_end_column(0x01)
.dwendentry
.dwendtag $C$DW$43
.sect ".text:ADCConfigure"
.clink
$C$DW$49 .dwtag DW_TAG_subprogram, DW_AT_name("ADCConfigure")
.dwattr $C$DW$49, DW_AT_low_pc(||ADCConfigure||)
.dwattr $C$DW$49, DW_AT_high_pc(0x00)
.dwattr $C$DW$49, DW_AT_TI_symbol_name("ADCConfigure")
.dwattr $C$DW$49, DW_AT_TI_begin_file("main.c")
.dwattr $C$DW$49, DW_AT_TI_begin_line(0x59)
.dwattr $C$DW$49, DW_AT_TI_begin_column(0x0d)
.dwattr $C$DW$49, DW_AT_decl_file("main.c")
.dwattr $C$DW$49, DW_AT_decl_line(0x59)
.dwattr $C$DW$49, DW_AT_decl_column(0x0d)
.dwattr $C$DW$49, DW_AT_TI_max_frame_size(0x00)
.dwpsn file "main.c",line 90,column 1,is_stmt,address ||ADCConfigure||,isa 0
.dwfde $C$DW$CIE, ||ADCConfigure||
;----------------------------------------------------------------------
; 89 | static void ADCConfigure(void)
; 91 | unsigned int i, count ;
;----------------------------------------------------------------------
;***************************************************************
;* FNAME: ADCConfigure FR SIZE: 0 *
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* 0 Auto, 0 SOE *
;***************************************************************
||ADCConfigure||:
;* --------------------------------------------------------------------------*
;* r0_0 assigned to $O$C1
;* r14_0 assigned to $O$C2
;* r0_0 assigned to count
$C$DW$50 .dwtag DW_TAG_variable, DW_AT_name("count")
.dwattr $C$DW$50, DW_AT_TI_symbol_name("count")
.dwattr $C$DW$50, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$50, DW_AT_location[DW_OP_reg0]
;* r0_0 assigned to $O$L1
;* r1_0 assigned to $O$K8
.dwcfi cfa_offset, 0
.dwpsn file "main.c",line 93,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 93 | HWREG(SOC_CM_WKUP_REGS + CM_WKUP_ADC_TSC_CLKCTRL) = 0x02;
;----------------------------------------------------------------------
LDI r0, 0x0002 ; [ALU_PRU] |93| $O$C1
LDI32 r1, 0x44e004bc ; [ALU_PRU] |93|
SBBO &r0, r1, 0, 4 ; [ALU_PRU] |93| $O$C1
.dwpsn file "main.c",line 95,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 95 | HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_CTRL) &= ~0x01;
; 104 | HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_ADC_CLKDIV) = 0;
;----------------------------------------------------------------------
LDI32 r1, 0x44e0d028 ; [ALU_PRU] |95| $O$K8
ADD r14, r1, 0x18 ; [ALU_PRU] |95| $O$K8
LBBO &r15, r14, 0, 4 ; [ALU_PRU] |95|
CLR r15, r15, 0x00000000 ; [ALU_PRU] |95|
SBBO &r15, r14, 0, 4 ; [ALU_PRU] |95|
.dwpsn file "main.c",line 106,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 106 | HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_ADCRANGE) = 0xFFF << 16;
;----------------------------------------------------------------------
LDI32 r15, 0x0fff0000 ; [ALU_PRU] |106|
.dwpsn file "main.c",line 104,column 3,is_stmt,isa 0
ZERO &r14, 4 ; [ALU_PRU] |104| $O$C2
SBBO &r14, r1, 36, 4 ; [ALU_PRU] |104| $O$K8,$O$C2
.dwpsn file "main.c",line 106,column 3,is_stmt,isa 0
SBBO &r15, r1, 32, 4 ; [ALU_PRU] |106| $O$K8
.dwpsn file "main.c",line 109,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 109 | HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_STEPENABLE) &= 0xFF;
;----------------------------------------------------------------------
LBBO &r15, r1, 44, 4 ; [ALU_PRU] |109| $O$K8
AND r15, r15, 0xff ; [ALU_PRU] |109|
SBBO &r15, r1, 44, 4 ; [ALU_PRU] |109| $O$K8
.dwpsn file "main.c",line 112,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 112 | HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_CTRL) |= 0x04;
;----------------------------------------------------------------------
LBBO &r15, r1, 24, 4 ; [ALU_PRU] |112| $O$K8
SET r15, r15, 0x00000002 ; [ALU_PRU] |112|
SBBO &r15, r1, 24, 4 ; [ALU_PRU] |112| $O$K8
.dwpsn file "main.c",line 115,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 115 | HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_STEPCONFIG(0)) = 0x00000000;
;----------------------------------------------------------------------
SBBO &r14, r1, 60, 4 ; [ALU_PRU] |115| $O$K8,$O$C2
.dwpsn file "main.c",line 116,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 116 | HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_STEPDELAY(0)) = 0xFF000000;
;----------------------------------------------------------------------
LDI32 r14, 0xff000000 ; [ALU_PRU] |116|
SBBO &r14, r1, 64, 4 ; [ALU_PRU] |116| $O$K8
.dwpsn file "main.c",line 119,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 119 | HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_CTRL) |= 0x02;
;----------------------------------------------------------------------
LBBO &r14, r1, 24, 4 ; [ALU_PRU] |119| $O$K8
SET r14, r14, 0x00000001 ; [ALU_PRU] |119|
SBBO &r14, r1, 24, 4 ; [ALU_PRU] |119| $O$K8
.dwpsn file "main.c",line 122,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 122 | HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_IRQSTATUS) = 0x02;
;----------------------------------------------------------------------
SBBO &r0, r1, 0, 4 ; [ALU_PRU] |122| $O$K8,$O$C1
.dwpsn file "main.c",line 125,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 125 | HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_IRQENABLE_SET) = 0x02;
;----------------------------------------------------------------------
SBBO &r0, r1, 4, 4 ; [ALU_PRU] |125| $O$K8,$O$C1
.dwpsn file "main.c",line 128,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 128 | HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_CTRL) &= ~0x04;
;----------------------------------------------------------------------
LBBO &r0, r1, 24, 4 ; [ALU_PRU] |128| $O$K8
CLR r0, r0, 0x00000002 ; [ALU_PRU] |128|
SBBO &r0, r1, 24, 4 ; [ALU_PRU] |128| $O$K8
.dwpsn file "main.c",line 131,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 131 | count = HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_FIFOCOUNT(0));
; 132 | for (i = 0; i < count; i++) {
;----------------------------------------------------------------------
LBBO &r0, r1, 188, 4 ; [ALU_PRU] |131| count,$O$K8
QBEQ ||$C$L11||, r0, 0x00 ; [ALU_PRU] |131| count
;* --------------------------------------------------------------------------*
;* BEGIN LOOP ||$C$L10||
;*
;* Loop source line : 132
;* Loop closing brace source line : 134
;* Known Minimum Trip Count : 1
;* Known Maximum Trip Count : 2147483647
;* Known Max Trip Count Factor : 1
;* --------------------------------------------------------------------------*
||$C$L10||:
.dwpsn file "main.c",line 133,column 6,is_stmt,isa 0
;----------------------------------------------------------------------
; 133 | HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_FIFODATA(0));
;----------------------------------------------------------------------
LBBO &r14, r1, 216, 4 ; [ALU_PRU] |133| $O$K8
.dwpsn file "main.c",line 132,column 15,is_stmt,isa 0
SUB r0, r0, 0x01 ; [ALU_PRU] |132| $O$L1,$O$L1
QBNE ||$C$L10||, r0, 0x00 ; [ALU_PRU] |132| $O$L1
;* --------------------------------------------------------------------------*
||$C$L11||:
.dwpsn file "main.c",line 137,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 137 | HWREG(SOC_ADC_TSC_0_REGS + TSC_ADC_SS_CTRL) |= 0x01;
;----------------------------------------------------------------------
LBBO &r0, r1, 24, 4 ; [ALU_PRU] |137| $O$K8
SET r0, r0, 0x00000000 ; [ALU_PRU] |137|
SBBO &r0, r1, 24, 4 ; [ALU_PRU] |137| $O$K8
$C$DW$51 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$51, DW_AT_low_pc(0x00)
.dwattr $C$DW$51, DW_AT_TI_return
JMP r3.w2 ; [ALU_PRU]
.dwattr $C$DW$49, DW_AT_TI_end_file("main.c")
.dwattr $C$DW$49, DW_AT_TI_end_line(0x8a)
.dwattr $C$DW$49, DW_AT_TI_end_column(0x01)
.dwendentry
.dwendtag $C$DW$49
.sect ".text:main"
.clink
.global ||main||
$C$DW$52 .dwtag DW_TAG_subprogram, DW_AT_name("main")
.dwattr $C$DW$52, DW_AT_low_pc(||main||)
.dwattr $C$DW$52, DW_AT_high_pc(0x00)
.dwattr $C$DW$52, DW_AT_TI_symbol_name("main")
.dwattr $C$DW$52, DW_AT_external
.dwattr $C$DW$52, DW_AT_TI_begin_file("main.c")
.dwattr $C$DW$52, DW_AT_TI_begin_line(0x3f)
.dwattr $C$DW$52, DW_AT_TI_begin_column(0x06)
.dwattr $C$DW$52, DW_AT_decl_file("main.c")
.dwattr $C$DW$52, DW_AT_decl_line(0x3f)
.dwattr $C$DW$52, DW_AT_decl_column(0x06)
.dwattr $C$DW$52, DW_AT_TI_max_frame_size(0x02)
.dwpsn file "main.c",line 63,column 17,is_stmt,address ||main||,isa 0
.dwfde $C$DW$CIE, ||main||
;----------------------------------------------------------------------
; 63 | void main(void) {
;----------------------------------------------------------------------
;***************************************************************
;* FNAME: main FR SIZE: 2 *
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* 0 Auto, 2 SOE *
;***************************************************************
||main||:
;* --------------------------------------------------------------------------*
.dwcfi cfa_offset, 0
;*** ; the preceding call never returns
SUB r2, r2, 0x02 ; [ALU_PRU]
.dwcfi cfa_offset, 2
SBBO &r3.b2, r2, 0, 2 ; [ALU_PRU]
.dwcfi save_reg_to_mem, 14, -2
.dwcfi save_reg_to_mem, 15, -1
.dwpsn file "main.c",line 64,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 64 | ADCConfigure();
;----------------------------------------------------------------------
$C$DW$53 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$53, DW_AT_low_pc(0x00)
.dwattr $C$DW$53, DW_AT_name("ADCConfigure")
.dwattr $C$DW$53, DW_AT_TI_call
JAL r3.w2, ||ADCConfigure|| ; [ALU_PRU] |64| ADCConfigure
.dwpsn file "main.c",line 65,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 65 | pru_function();
;----------------------------------------------------------------------
$C$DW$54 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$54, DW_AT_low_pc(0x00)
.dwattr $C$DW$54, DW_AT_name("pru_function")
.dwattr $C$DW$54, DW_AT_TI_call
JAL r3.w2, ||pru_function|| ; [ALU_PRU] |65| pru_function
LBBO &r3.b2, r2, 0, 2 ; [ALU_PRU]
.dwcfi restore_reg, 14
.dwcfi restore_reg, 15
ADD r2, r2, 0x02 ; [ALU_PRU]
.dwcfi cfa_offset, 0
$C$DW$55 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$55, DW_AT_low_pc(0x00)
.dwattr $C$DW$55, DW_AT_TI_return
JMP r3.w2 ; [ALU_PRU]
.dwattr $C$DW$52, DW_AT_TI_end_file("main.c")
.dwattr $C$DW$52, DW_AT_TI_end_line(0x42)
.dwattr $C$DW$52, DW_AT_TI_end_column(0x01)
.dwendentry
.dwendtag $C$DW$52
;******************************************************************************
;* STRINGS *
;******************************************************************************
.sect ".rodata:.string"
||$C$SL1||: .string "rpmsg-pru",0
||$C$SL2||: .string "Channel 30",0
||$C$SL3||: .string "writen",0
;*****************************************************************************
;* UNDEFINED EXTERNAL REFERENCES *
;*****************************************************************************
.global ||pru_rpmsg_init||
.global ||pru_rpmsg_receive||
.global ||pru_rpmsg_send||
.global ||pru_rpmsg_channel||
;******************************************************************************
;* TYPE INFORMATION *
;******************************************************************************
$C$DW$T$19 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$19, DW_AT_byte_size(0x04)
$C$DW$56 .dwtag DW_TAG_member
.dwattr $C$DW$56, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$56, DW_AT_name("REVID")
.dwattr $C$DW$56, DW_AT_TI_symbol_name("REVID")
.dwattr $C$DW$56, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x20)
.dwattr $C$DW$56, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$56, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$56, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$56, DW_AT_decl_line(0x2d)
.dwattr $C$DW$56, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$19
.dwattr $C$DW$T$19, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$19, DW_AT_decl_line(0x2c)
.dwattr $C$DW$T$19, DW_AT_decl_column(0x13)
$C$DW$T$110 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$110, DW_AT_type(*$C$DW$T$19)
$C$DW$T$20 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$20, DW_AT_byte_size(0x04)
$C$DW$57 .dwtag DW_TAG_member
.dwattr $C$DW$57, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$57, DW_AT_name("IDLE_MODE")
.dwattr $C$DW$57, DW_AT_TI_symbol_name("IDLE_MODE")
.dwattr $C$DW$57, DW_AT_bit_offset(0x1e), DW_AT_bit_size(0x02)
.dwattr $C$DW$57, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$57, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$57, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$57, DW_AT_decl_line(0x37)
.dwattr $C$DW$57, DW_AT_decl_column(0x0d)
$C$DW$58 .dwtag DW_TAG_member
.dwattr $C$DW$58, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$58, DW_AT_name("STANDBY_MODE")
.dwattr $C$DW$58, DW_AT_TI_symbol_name("STANDBY_MODE")
.dwattr $C$DW$58, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x02)
.dwattr $C$DW$58, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$58, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$58, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$58, DW_AT_decl_line(0x38)
.dwattr $C$DW$58, DW_AT_decl_column(0x0d)
$C$DW$59 .dwtag DW_TAG_member
.dwattr $C$DW$59, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$59, DW_AT_name("STANDBY_INIT")
.dwattr $C$DW$59, DW_AT_TI_symbol_name("STANDBY_INIT")
.dwattr $C$DW$59, DW_AT_bit_offset(0x1b), DW_AT_bit_size(0x01)
.dwattr $C$DW$59, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$59, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$59, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$59, DW_AT_decl_line(0x39)
.dwattr $C$DW$59, DW_AT_decl_column(0x0d)
$C$DW$60 .dwtag DW_TAG_member
.dwattr $C$DW$60, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$60, DW_AT_name("SUB_MWAIT")
.dwattr $C$DW$60, DW_AT_TI_symbol_name("SUB_MWAIT")
.dwattr $C$DW$60, DW_AT_bit_offset(0x1a), DW_AT_bit_size(0x01)
.dwattr $C$DW$60, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$60, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$60, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$60, DW_AT_decl_line(0x3a)
.dwattr $C$DW$60, DW_AT_decl_column(0x0d)
$C$DW$61 .dwtag DW_TAG_member
.dwattr $C$DW$61, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$61, DW_AT_name("rsvd6")
.dwattr $C$DW$61, DW_AT_TI_symbol_name("rsvd6")
.dwattr $C$DW$61, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x1a)
.dwattr $C$DW$61, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$61, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$61, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$61, DW_AT_decl_line(0x3b)
.dwattr $C$DW$61, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$20
.dwattr $C$DW$T$20, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$20, DW_AT_decl_line(0x36)
.dwattr $C$DW$T$20, DW_AT_decl_column(0x13)
$C$DW$T$112 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$112, DW_AT_type(*$C$DW$T$20)
$C$DW$T$21 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$21, DW_AT_byte_size(0x04)
$C$DW$62 .dwtag DW_TAG_member
.dwattr $C$DW$62, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$62, DW_AT_name("PRU0_GPI_MODE")
.dwattr $C$DW$62, DW_AT_TI_symbol_name("PRU0_GPI_MODE")
.dwattr $C$DW$62, DW_AT_bit_offset(0x1e), DW_AT_bit_size(0x02)
.dwattr $C$DW$62, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$62, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$62, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$62, DW_AT_decl_line(0x45)
.dwattr $C$DW$62, DW_AT_decl_column(0x0d)
$C$DW$63 .dwtag DW_TAG_member
.dwattr $C$DW$63, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$63, DW_AT_name("PRU0_GPI_CLK_MODE")
.dwattr $C$DW$63, DW_AT_TI_symbol_name("PRU0_GPI_CLK_MODE")
.dwattr $C$DW$63, DW_AT_bit_offset(0x1d), DW_AT_bit_size(0x01)
.dwattr $C$DW$63, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$63, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$63, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$63, DW_AT_decl_line(0x46)
.dwattr $C$DW$63, DW_AT_decl_column(0x0d)
$C$DW$64 .dwtag DW_TAG_member
.dwattr $C$DW$64, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$64, DW_AT_name("PRU0_GPI_DIV0")
.dwattr $C$DW$64, DW_AT_TI_symbol_name("PRU0_GPI_DIV0")
.dwattr $C$DW$64, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x05)
.dwattr $C$DW$64, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$64, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$64, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$64, DW_AT_decl_line(0x47)
.dwattr $C$DW$64, DW_AT_decl_column(0x0d)
$C$DW$65 .dwtag DW_TAG_member
.dwattr $C$DW$65, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$65, DW_AT_name("PRU0_GPI_DIV1")
.dwattr $C$DW$65, DW_AT_TI_symbol_name("PRU0_GPI_DIV1")
.dwattr $C$DW$65, DW_AT_bit_offset(0x13), DW_AT_bit_size(0x05)
.dwattr $C$DW$65, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$65, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$65, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$65, DW_AT_decl_line(0x48)
.dwattr $C$DW$65, DW_AT_decl_column(0x0d)
$C$DW$66 .dwtag DW_TAG_member
.dwattr $C$DW$66, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$66, DW_AT_name("PRU0_GPI_SB")
.dwattr $C$DW$66, DW_AT_TI_symbol_name("PRU0_GPI_SB")
.dwattr $C$DW$66, DW_AT_bit_offset(0x12), DW_AT_bit_size(0x01)
.dwattr $C$DW$66, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$66, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$66, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$66, DW_AT_decl_line(0x49)
.dwattr $C$DW$66, DW_AT_decl_column(0x0d)
$C$DW$67 .dwtag DW_TAG_member
.dwattr $C$DW$67, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$67, DW_AT_name("PRU0_GPO_MODE")
.dwattr $C$DW$67, DW_AT_TI_symbol_name("PRU0_GPO_MODE")
.dwattr $C$DW$67, DW_AT_bit_offset(0x11), DW_AT_bit_size(0x01)
.dwattr $C$DW$67, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$67, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$67, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$67, DW_AT_decl_line(0x4a)
.dwattr $C$DW$67, DW_AT_decl_column(0x0d)
$C$DW$68 .dwtag DW_TAG_member
.dwattr $C$DW$68, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$68, DW_AT_name("PRU0_GPO_DIV0")
.dwattr $C$DW$68, DW_AT_TI_symbol_name("PRU0_GPO_DIV0")
.dwattr $C$DW$68, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x05)
.dwattr $C$DW$68, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$68, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$68, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$68, DW_AT_decl_line(0x4b)
.dwattr $C$DW$68, DW_AT_decl_column(0x0d)
$C$DW$69 .dwtag DW_TAG_member
.dwattr $C$DW$69, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$69, DW_AT_name("PRU0_GPO_DIV1")
.dwattr $C$DW$69, DW_AT_TI_symbol_name("PRU0_GPO_DIV1")
.dwattr $C$DW$69, DW_AT_bit_offset(0x07), DW_AT_bit_size(0x05)
.dwattr $C$DW$69, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$69, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$69, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$69, DW_AT_decl_line(0x4c)
.dwattr $C$DW$69, DW_AT_decl_column(0x0d)
$C$DW$70 .dwtag DW_TAG_member
.dwattr $C$DW$70, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$70, DW_AT_name("PRU0_GPO_SH_SEL")
.dwattr $C$DW$70, DW_AT_TI_symbol_name("PRU0_GPO_SH_SEL")
.dwattr $C$DW$70, DW_AT_bit_offset(0x06), DW_AT_bit_size(0x01)
.dwattr $C$DW$70, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$70, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$70, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$70, DW_AT_decl_line(0x4d)
.dwattr $C$DW$70, DW_AT_decl_column(0x0d)
$C$DW$71 .dwtag DW_TAG_member
.dwattr $C$DW$71, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$71, DW_AT_name("rsvd26")
.dwattr $C$DW$71, DW_AT_TI_symbol_name("rsvd26")
.dwattr $C$DW$71, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x06)
.dwattr $C$DW$71, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$71, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$71, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$71, DW_AT_decl_line(0x4e)
.dwattr $C$DW$71, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$21
.dwattr $C$DW$T$21, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$21, DW_AT_decl_line(0x44)
.dwattr $C$DW$T$21, DW_AT_decl_column(0x13)
$C$DW$T$114 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$114, DW_AT_type(*$C$DW$T$21)
$C$DW$T$22 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$22, DW_AT_byte_size(0x04)
$C$DW$72 .dwtag DW_TAG_member
.dwattr $C$DW$72, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$72, DW_AT_name("PRU1_GPI_MODE")
.dwattr $C$DW$72, DW_AT_TI_symbol_name("PRU1_GPI_MODE")
.dwattr $C$DW$72, DW_AT_bit_offset(0x1e), DW_AT_bit_size(0x02)
.dwattr $C$DW$72, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$72, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$72, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$72, DW_AT_decl_line(0x58)
.dwattr $C$DW$72, DW_AT_decl_column(0x0d)
$C$DW$73 .dwtag DW_TAG_member
.dwattr $C$DW$73, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$73, DW_AT_name("PRU1_GPI_CLK_MODE")
.dwattr $C$DW$73, DW_AT_TI_symbol_name("PRU1_GPI_CLK_MODE")
.dwattr $C$DW$73, DW_AT_bit_offset(0x1d), DW_AT_bit_size(0x01)
.dwattr $C$DW$73, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$73, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$73, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$73, DW_AT_decl_line(0x59)
.dwattr $C$DW$73, DW_AT_decl_column(0x0d)
$C$DW$74 .dwtag DW_TAG_member
.dwattr $C$DW$74, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$74, DW_AT_name("PRU1_GPI_DIV0")
.dwattr $C$DW$74, DW_AT_TI_symbol_name("PRU1_GPI_DIV0")
.dwattr $C$DW$74, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x05)
.dwattr $C$DW$74, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$74, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$74, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$74, DW_AT_decl_line(0x5a)
.dwattr $C$DW$74, DW_AT_decl_column(0x0d)
$C$DW$75 .dwtag DW_TAG_member
.dwattr $C$DW$75, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$75, DW_AT_name("PRU1_GPI_DIV1")
.dwattr $C$DW$75, DW_AT_TI_symbol_name("PRU1_GPI_DIV1")
.dwattr $C$DW$75, DW_AT_bit_offset(0x13), DW_AT_bit_size(0x05)
.dwattr $C$DW$75, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$75, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$75, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$75, DW_AT_decl_line(0x5b)
.dwattr $C$DW$75, DW_AT_decl_column(0x0d)
$C$DW$76 .dwtag DW_TAG_member
.dwattr $C$DW$76, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$76, DW_AT_name("PRU1_GPI_SB")
.dwattr $C$DW$76, DW_AT_TI_symbol_name("PRU1_GPI_SB")
.dwattr $C$DW$76, DW_AT_bit_offset(0x12), DW_AT_bit_size(0x01)
.dwattr $C$DW$76, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$76, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$76, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$76, DW_AT_decl_line(0x5c)
.dwattr $C$DW$76, DW_AT_decl_column(0x0d)
$C$DW$77 .dwtag DW_TAG_member
.dwattr $C$DW$77, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$77, DW_AT_name("PRU1_GPO_MODE")
.dwattr $C$DW$77, DW_AT_TI_symbol_name("PRU1_GPO_MODE")
.dwattr $C$DW$77, DW_AT_bit_offset(0x11), DW_AT_bit_size(0x01)
.dwattr $C$DW$77, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$77, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$77, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$77, DW_AT_decl_line(0x5d)
.dwattr $C$DW$77, DW_AT_decl_column(0x0d)
$C$DW$78 .dwtag DW_TAG_member
.dwattr $C$DW$78, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$78, DW_AT_name("PRU1_GPO_DIV0")
.dwattr $C$DW$78, DW_AT_TI_symbol_name("PRU1_GPO_DIV0")
.dwattr $C$DW$78, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x05)
.dwattr $C$DW$78, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$78, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$78, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$78, DW_AT_decl_line(0x5e)
.dwattr $C$DW$78, DW_AT_decl_column(0x0d)
$C$DW$79 .dwtag DW_TAG_member
.dwattr $C$DW$79, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$79, DW_AT_name("PRU1_GPO_DIV1")
.dwattr $C$DW$79, DW_AT_TI_symbol_name("PRU1_GPO_DIV1")
.dwattr $C$DW$79, DW_AT_bit_offset(0x07), DW_AT_bit_size(0x05)
.dwattr $C$DW$79, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$79, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$79, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$79, DW_AT_decl_line(0x5f)
.dwattr $C$DW$79, DW_AT_decl_column(0x0d)
$C$DW$80 .dwtag DW_TAG_member
.dwattr $C$DW$80, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$80, DW_AT_name("PRU1_GPO_SH_SEL")
.dwattr $C$DW$80, DW_AT_TI_symbol_name("PRU1_GPO_SH_SEL")
.dwattr $C$DW$80, DW_AT_bit_offset(0x06), DW_AT_bit_size(0x01)
.dwattr $C$DW$80, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$80, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$80, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$80, DW_AT_decl_line(0x60)
.dwattr $C$DW$80, DW_AT_decl_column(0x0d)
$C$DW$81 .dwtag DW_TAG_member
.dwattr $C$DW$81, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$81, DW_AT_name("rsvd26")
.dwattr $C$DW$81, DW_AT_TI_symbol_name("rsvd26")
.dwattr $C$DW$81, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x06)
.dwattr $C$DW$81, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$81, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$81, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$81, DW_AT_decl_line(0x61)
.dwattr $C$DW$81, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$22
.dwattr $C$DW$T$22, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$22, DW_AT_decl_line(0x57)
.dwattr $C$DW$T$22, DW_AT_decl_column(0x13)
$C$DW$T$116 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$116, DW_AT_type(*$C$DW$T$22)
$C$DW$T$23 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$23, DW_AT_byte_size(0x04)
$C$DW$82 .dwtag DW_TAG_member
.dwattr $C$DW$82, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$82, DW_AT_name("PRU0_CLK_STOP_REQ")
.dwattr $C$DW$82, DW_AT_TI_symbol_name("PRU0_CLK_STOP_REQ")
.dwattr $C$DW$82, DW_AT_bit_offset(0x1f), DW_AT_bit_size(0x01)
.dwattr $C$DW$82, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$82, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$82, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$82, DW_AT_decl_line(0x6b)
.dwattr $C$DW$82, DW_AT_decl_column(0x0d)
$C$DW$83 .dwtag DW_TAG_member
.dwattr $C$DW$83, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$83, DW_AT_name("PRU0_CLK_STOP_ACK")
.dwattr $C$DW$83, DW_AT_TI_symbol_name("PRU0_CLK_STOP_ACK")
.dwattr $C$DW$83, DW_AT_bit_offset(0x1e), DW_AT_bit_size(0x01)
.dwattr $C$DW$83, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$83, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$83, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$83, DW_AT_decl_line(0x6c)
.dwattr $C$DW$83, DW_AT_decl_column(0x0d)
$C$DW$84 .dwtag DW_TAG_member
.dwattr $C$DW$84, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$84, DW_AT_name("PRU0_CLK_EN")
.dwattr $C$DW$84, DW_AT_TI_symbol_name("PRU0_CLK_EN")
.dwattr $C$DW$84, DW_AT_bit_offset(0x1d), DW_AT_bit_size(0x01)
.dwattr $C$DW$84, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$84, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$84, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$84, DW_AT_decl_line(0x6d)
.dwattr $C$DW$84, DW_AT_decl_column(0x0d)
$C$DW$85 .dwtag DW_TAG_member
.dwattr $C$DW$85, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$85, DW_AT_name("PRU1_CLK_STOP_REQ")
.dwattr $C$DW$85, DW_AT_TI_symbol_name("PRU1_CLK_STOP_REQ")
.dwattr $C$DW$85, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x01)
.dwattr $C$DW$85, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$85, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$85, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$85, DW_AT_decl_line(0x6e)
.dwattr $C$DW$85, DW_AT_decl_column(0x0d)
$C$DW$86 .dwtag DW_TAG_member
.dwattr $C$DW$86, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$86, DW_AT_name("PRU1_CLK_STOP_ACK")
.dwattr $C$DW$86, DW_AT_TI_symbol_name("PRU1_CLK_STOP_ACK")
.dwattr $C$DW$86, DW_AT_bit_offset(0x1b), DW_AT_bit_size(0x01)
.dwattr $C$DW$86, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$86, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$86, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$86, DW_AT_decl_line(0x6f)
.dwattr $C$DW$86, DW_AT_decl_column(0x0d)
$C$DW$87 .dwtag DW_TAG_member
.dwattr $C$DW$87, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$87, DW_AT_name("PRU1_CLK_EN")
.dwattr $C$DW$87, DW_AT_TI_symbol_name("PRU1_CLK_EN")
.dwattr $C$DW$87, DW_AT_bit_offset(0x1a), DW_AT_bit_size(0x01)
.dwattr $C$DW$87, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$87, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$87, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$87, DW_AT_decl_line(0x70)
.dwattr $C$DW$87, DW_AT_decl_column(0x0d)
$C$DW$88 .dwtag DW_TAG_member
.dwattr $C$DW$88, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$88, DW_AT_name("INTC_CLK_STOP_REQ")
.dwattr $C$DW$88, DW_AT_TI_symbol_name("INTC_CLK_STOP_REQ")
.dwattr $C$DW$88, DW_AT_bit_offset(0x19), DW_AT_bit_size(0x01)
.dwattr $C$DW$88, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$88, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$88, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$88, DW_AT_decl_line(0x71)
.dwattr $C$DW$88, DW_AT_decl_column(0x0d)
$C$DW$89 .dwtag DW_TAG_member
.dwattr $C$DW$89, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$89, DW_AT_name("INTC_CLK_STOP_ACK")
.dwattr $C$DW$89, DW_AT_TI_symbol_name("INTC_CLK_STOP_ACK")
.dwattr $C$DW$89, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x01)
.dwattr $C$DW$89, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$89, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$89, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$89, DW_AT_decl_line(0x72)
.dwattr $C$DW$89, DW_AT_decl_column(0x0d)
$C$DW$90 .dwtag DW_TAG_member
.dwattr $C$DW$90, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$90, DW_AT_name("INTC_CLK_EN")
.dwattr $C$DW$90, DW_AT_TI_symbol_name("INTC_CLK_EN")
.dwattr $C$DW$90, DW_AT_bit_offset(0x17), DW_AT_bit_size(0x01)
.dwattr $C$DW$90, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$90, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$90, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$90, DW_AT_decl_line(0x73)
.dwattr $C$DW$90, DW_AT_decl_column(0x0d)
$C$DW$91 .dwtag DW_TAG_member
.dwattr $C$DW$91, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$91, DW_AT_name("UART_CLK_STOP_REQ")
.dwattr $C$DW$91, DW_AT_TI_symbol_name("UART_CLK_STOP_REQ")
.dwattr $C$DW$91, DW_AT_bit_offset(0x16), DW_AT_bit_size(0x01)
.dwattr $C$DW$91, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$91, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$91, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$91, DW_AT_decl_line(0x74)
.dwattr $C$DW$91, DW_AT_decl_column(0x0d)
$C$DW$92 .dwtag DW_TAG_member
.dwattr $C$DW$92, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$92, DW_AT_name("UART_CLK_STOP_ACK")
.dwattr $C$DW$92, DW_AT_TI_symbol_name("UART_CLK_STOP_ACK")
.dwattr $C$DW$92, DW_AT_bit_offset(0x15), DW_AT_bit_size(0x01)
.dwattr $C$DW$92, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$92, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$92, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$92, DW_AT_decl_line(0x75)
.dwattr $C$DW$92, DW_AT_decl_column(0x0d)
$C$DW$93 .dwtag DW_TAG_member
.dwattr $C$DW$93, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$93, DW_AT_name("UART_CLK_EN")
.dwattr $C$DW$93, DW_AT_TI_symbol_name("UART_CLK_EN")
.dwattr $C$DW$93, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x01)
.dwattr $C$DW$93, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$93, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$93, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$93, DW_AT_decl_line(0x76)
.dwattr $C$DW$93, DW_AT_decl_column(0x0d)
$C$DW$94 .dwtag DW_TAG_member
.dwattr $C$DW$94, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$94, DW_AT_name("ECAP_CLK_STOP_REQ")
.dwattr $C$DW$94, DW_AT_TI_symbol_name("ECAP_CLK_STOP_REQ")
.dwattr $C$DW$94, DW_AT_bit_offset(0x13), DW_AT_bit_size(0x01)
.dwattr $C$DW$94, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$94, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$94, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$94, DW_AT_decl_line(0x77)
.dwattr $C$DW$94, DW_AT_decl_column(0x0d)
$C$DW$95 .dwtag DW_TAG_member
.dwattr $C$DW$95, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$95, DW_AT_name("ECAP_CLK_STOP_ACK")
.dwattr $C$DW$95, DW_AT_TI_symbol_name("ECAP_CLK_STOP_ACK")
.dwattr $C$DW$95, DW_AT_bit_offset(0x12), DW_AT_bit_size(0x01)
.dwattr $C$DW$95, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$95, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$95, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$95, DW_AT_decl_line(0x78)
.dwattr $C$DW$95, DW_AT_decl_column(0x0d)
$C$DW$96 .dwtag DW_TAG_member
.dwattr $C$DW$96, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$96, DW_AT_name("ECAP_CLK_EN")
.dwattr $C$DW$96, DW_AT_TI_symbol_name("ECAP_CLK_EN")
.dwattr $C$DW$96, DW_AT_bit_offset(0x11), DW_AT_bit_size(0x01)
.dwattr $C$DW$96, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$96, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$96, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$96, DW_AT_decl_line(0x79)
.dwattr $C$DW$96, DW_AT_decl_column(0x0d)
$C$DW$97 .dwtag DW_TAG_member
.dwattr $C$DW$97, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$97, DW_AT_name("IEP_CLK_STOP_REQ")
.dwattr $C$DW$97, DW_AT_TI_symbol_name("IEP_CLK_STOP_REQ")
.dwattr $C$DW$97, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x01)
.dwattr $C$DW$97, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$97, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$97, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$97, DW_AT_decl_line(0x7a)
.dwattr $C$DW$97, DW_AT_decl_column(0x0d)
$C$DW$98 .dwtag DW_TAG_member
.dwattr $C$DW$98, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$98, DW_AT_name("IEP_CLK_STOP_ACK")
.dwattr $C$DW$98, DW_AT_TI_symbol_name("IEP_CLK_STOP_ACK")
.dwattr $C$DW$98, DW_AT_bit_offset(0x0f), DW_AT_bit_size(0x01)
.dwattr $C$DW$98, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$98, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$98, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$98, DW_AT_decl_line(0x7b)
.dwattr $C$DW$98, DW_AT_decl_column(0x0d)
$C$DW$99 .dwtag DW_TAG_member
.dwattr $C$DW$99, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$99, DW_AT_name("IEP_CLK_EN")
.dwattr $C$DW$99, DW_AT_TI_symbol_name("IEP_CLK_EN")
.dwattr $C$DW$99, DW_AT_bit_offset(0x0e), DW_AT_bit_size(0x01)
.dwattr $C$DW$99, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$99, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$99, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$99, DW_AT_decl_line(0x7c)
.dwattr $C$DW$99, DW_AT_decl_column(0x0d)
$C$DW$100 .dwtag DW_TAG_member
.dwattr $C$DW$100, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$100, DW_AT_name("rsvd18")
.dwattr $C$DW$100, DW_AT_TI_symbol_name("rsvd18")
.dwattr $C$DW$100, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x0e)
.dwattr $C$DW$100, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$100, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$100, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$100, DW_AT_decl_line(0x7d)
.dwattr $C$DW$100, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$23
.dwattr $C$DW$T$23, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$23, DW_AT_decl_line(0x6a)
.dwattr $C$DW$T$23, DW_AT_decl_column(0x13)
$C$DW$T$118 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$118, DW_AT_type(*$C$DW$T$23)
$C$DW$T$24 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$24, DW_AT_byte_size(0x04)
$C$DW$101 .dwtag DW_TAG_member
.dwattr $C$DW$101, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$101, DW_AT_name("PRU0_IMEM_PE_RAW")
.dwattr $C$DW$101, DW_AT_TI_symbol_name("PRU0_IMEM_PE_RAW")
.dwattr $C$DW$101, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$101, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$101, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$101, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$101, DW_AT_decl_line(0x87)
.dwattr $C$DW$101, DW_AT_decl_column(0x0d)
$C$DW$102 .dwtag DW_TAG_member
.dwattr $C$DW$102, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$102, DW_AT_name("PRU0_DMEM_PE_RAW")
.dwattr $C$DW$102, DW_AT_TI_symbol_name("PRU0_DMEM_PE_RAW")
.dwattr $C$DW$102, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$102, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$102, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$102, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$102, DW_AT_decl_line(0x88)
.dwattr $C$DW$102, DW_AT_decl_column(0x0d)
$C$DW$103 .dwtag DW_TAG_member
.dwattr $C$DW$103, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$103, DW_AT_name("PRU1_IMEM_PE_RAW")
.dwattr $C$DW$103, DW_AT_TI_symbol_name("PRU1_IMEM_PE_RAW")
.dwattr $C$DW$103, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$103, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$103, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$103, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$103, DW_AT_decl_line(0x89)
.dwattr $C$DW$103, DW_AT_decl_column(0x0d)
$C$DW$104 .dwtag DW_TAG_member
.dwattr $C$DW$104, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$104, DW_AT_name("PRU1_DMEM_PE_RAW")
.dwattr $C$DW$104, DW_AT_TI_symbol_name("PRU1_DMEM_PE_RAW")
.dwattr $C$DW$104, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$104, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$104, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$104, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$104, DW_AT_decl_line(0x8a)
.dwattr $C$DW$104, DW_AT_decl_column(0x0d)
$C$DW$105 .dwtag DW_TAG_member
.dwattr $C$DW$105, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$105, DW_AT_name("RAM_PE_RAW")
.dwattr $C$DW$105, DW_AT_TI_symbol_name("RAM_PE_RAW")
.dwattr $C$DW$105, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$105, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$105, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$105, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$105, DW_AT_decl_line(0x8b)
.dwattr $C$DW$105, DW_AT_decl_column(0x0d)
$C$DW$106 .dwtag DW_TAG_member
.dwattr $C$DW$106, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$106, DW_AT_name("rsvd20")
.dwattr $C$DW$106, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$106, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x0c)
.dwattr $C$DW$106, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$106, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$106, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$106, DW_AT_decl_line(0x8c)
.dwattr $C$DW$106, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$24
.dwattr $C$DW$T$24, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$24, DW_AT_decl_line(0x86)
.dwattr $C$DW$T$24, DW_AT_decl_column(0x14)
$C$DW$T$120 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$120, DW_AT_type(*$C$DW$T$24)
$C$DW$T$25 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$25, DW_AT_byte_size(0x04)
$C$DW$107 .dwtag DW_TAG_member
.dwattr $C$DW$107, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$107, DW_AT_name("PRU0_IMEM_PE")
.dwattr $C$DW$107, DW_AT_TI_symbol_name("PRU0_IMEM_PE")
.dwattr $C$DW$107, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$107, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$107, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$107, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$107, DW_AT_decl_line(0x96)
.dwattr $C$DW$107, DW_AT_decl_column(0x0d)
$C$DW$108 .dwtag DW_TAG_member
.dwattr $C$DW$108, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$108, DW_AT_name("PRU0_DMEM_PE")
.dwattr $C$DW$108, DW_AT_TI_symbol_name("PRU0_DMEM_PE")
.dwattr $C$DW$108, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$108, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$108, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$108, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$108, DW_AT_decl_line(0x97)
.dwattr $C$DW$108, DW_AT_decl_column(0x0d)
$C$DW$109 .dwtag DW_TAG_member
.dwattr $C$DW$109, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$109, DW_AT_name("PRU1_IMEM_PE")
.dwattr $C$DW$109, DW_AT_TI_symbol_name("PRU1_IMEM_PE")
.dwattr $C$DW$109, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$109, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$109, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$109, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$109, DW_AT_decl_line(0x98)
.dwattr $C$DW$109, DW_AT_decl_column(0x0d)
$C$DW$110 .dwtag DW_TAG_member
.dwattr $C$DW$110, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$110, DW_AT_name("PRU1_DMEM_PE")
.dwattr $C$DW$110, DW_AT_TI_symbol_name("PRU1_DMEM_PE")
.dwattr $C$DW$110, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$110, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$110, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$110, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$110, DW_AT_decl_line(0x99)
.dwattr $C$DW$110, DW_AT_decl_column(0x0d)
$C$DW$111 .dwtag DW_TAG_member
.dwattr $C$DW$111, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$111, DW_AT_name("RAM_PE")
.dwattr $C$DW$111, DW_AT_TI_symbol_name("RAM_PE")
.dwattr $C$DW$111, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$111, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$111, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$111, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$111, DW_AT_decl_line(0x9a)
.dwattr $C$DW$111, DW_AT_decl_column(0x0d)
$C$DW$112 .dwtag DW_TAG_member
.dwattr $C$DW$112, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$112, DW_AT_name("rsvd20")
.dwattr $C$DW$112, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$112, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x0c)
.dwattr $C$DW$112, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$112, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$112, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$112, DW_AT_decl_line(0x9b)
.dwattr $C$DW$112, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$25
.dwattr $C$DW$T$25, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$25, DW_AT_decl_line(0x95)
.dwattr $C$DW$T$25, DW_AT_decl_column(0x14)
$C$DW$T$122 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$122, DW_AT_type(*$C$DW$T$25)
$C$DW$T$26 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$26, DW_AT_byte_size(0x04)
$C$DW$113 .dwtag DW_TAG_member
.dwattr $C$DW$113, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$113, DW_AT_name("PRU0_IMEM_PE_SET")
.dwattr $C$DW$113, DW_AT_TI_symbol_name("PRU0_IMEM_PE_SET")
.dwattr $C$DW$113, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$113, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$113, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$113, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$113, DW_AT_decl_line(0xa4)
.dwattr $C$DW$113, DW_AT_decl_column(0x0d)
$C$DW$114 .dwtag DW_TAG_member
.dwattr $C$DW$114, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$114, DW_AT_name("PRU0_DMEM_PE_SET")
.dwattr $C$DW$114, DW_AT_TI_symbol_name("PRU0_DMEM_PE_SET")
.dwattr $C$DW$114, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$114, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$114, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$114, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$114, DW_AT_decl_line(0xa5)
.dwattr $C$DW$114, DW_AT_decl_column(0x0d)
$C$DW$115 .dwtag DW_TAG_member
.dwattr $C$DW$115, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$115, DW_AT_name("PRU1_IMEM_PE_SET")
.dwattr $C$DW$115, DW_AT_TI_symbol_name("PRU1_IMEM_PE_SET")
.dwattr $C$DW$115, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$115, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$115, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$115, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$115, DW_AT_decl_line(0xa6)
.dwattr $C$DW$115, DW_AT_decl_column(0x0d)
$C$DW$116 .dwtag DW_TAG_member
.dwattr $C$DW$116, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$116, DW_AT_name("PRU1_DMEM_PE_SET")
.dwattr $C$DW$116, DW_AT_TI_symbol_name("PRU1_DMEM_PE_SET")
.dwattr $C$DW$116, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$116, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$116, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$116, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$116, DW_AT_decl_line(0xa7)
.dwattr $C$DW$116, DW_AT_decl_column(0x0d)
$C$DW$117 .dwtag DW_TAG_member
.dwattr $C$DW$117, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$117, DW_AT_name("RAM_PE_SET")
.dwattr $C$DW$117, DW_AT_TI_symbol_name("RAM_PE_SET")
.dwattr $C$DW$117, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$117, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$117, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$117, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$117, DW_AT_decl_line(0xa8)
.dwattr $C$DW$117, DW_AT_decl_column(0x0d)
$C$DW$118 .dwtag DW_TAG_member
.dwattr $C$DW$118, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$118, DW_AT_name("rsvd20")
.dwattr $C$DW$118, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$118, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x0c)
.dwattr $C$DW$118, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$118, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$118, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$118, DW_AT_decl_line(0xa9)
.dwattr $C$DW$118, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$26
.dwattr $C$DW$T$26, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$26, DW_AT_decl_line(0xa3)
.dwattr $C$DW$T$26, DW_AT_decl_column(0x13)
$C$DW$T$124 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$124, DW_AT_type(*$C$DW$T$26)
$C$DW$T$27 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$27, DW_AT_byte_size(0x04)
$C$DW$119 .dwtag DW_TAG_member
.dwattr $C$DW$119, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$119, DW_AT_name("PRU0_IMEM_PE_CLR")
.dwattr $C$DW$119, DW_AT_TI_symbol_name("PRU0_IMEM_PE_CLR")
.dwattr $C$DW$119, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$119, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$119, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$119, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$119, DW_AT_decl_line(0xb3)
.dwattr $C$DW$119, DW_AT_decl_column(0x0d)
$C$DW$120 .dwtag DW_TAG_member
.dwattr $C$DW$120, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$120, DW_AT_name("PRU0_DMEM_PE_CLR")
.dwattr $C$DW$120, DW_AT_TI_symbol_name("PRU0_DMEM_PE_CLR")
.dwattr $C$DW$120, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$120, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$120, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$120, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$120, DW_AT_decl_line(0xb4)
.dwattr $C$DW$120, DW_AT_decl_column(0x0d)
$C$DW$121 .dwtag DW_TAG_member
.dwattr $C$DW$121, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$121, DW_AT_name("PRU1_IMEM_PE_CLR")
.dwattr $C$DW$121, DW_AT_TI_symbol_name("PRU1_IMEM_PE_CLR")
.dwattr $C$DW$121, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$121, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$121, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$121, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$121, DW_AT_decl_line(0xb5)
.dwattr $C$DW$121, DW_AT_decl_column(0x0d)
$C$DW$122 .dwtag DW_TAG_member
.dwattr $C$DW$122, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$122, DW_AT_name("PRU1_DMEM_PE_CLR")
.dwattr $C$DW$122, DW_AT_TI_symbol_name("PRU1_DMEM_PE_CLR")
.dwattr $C$DW$122, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$122, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$122, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$122, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$122, DW_AT_decl_line(0xb6)
.dwattr $C$DW$122, DW_AT_decl_column(0x0d)
$C$DW$123 .dwtag DW_TAG_member
.dwattr $C$DW$123, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$123, DW_AT_name("rsvd16")
.dwattr $C$DW$123, DW_AT_TI_symbol_name("rsvd16")
.dwattr $C$DW$123, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x10)
.dwattr $C$DW$123, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$123, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$123, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$123, DW_AT_decl_line(0xb7)
.dwattr $C$DW$123, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$27
.dwattr $C$DW$T$27, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$27, DW_AT_decl_line(0xb2)
.dwattr $C$DW$T$27, DW_AT_decl_column(0x13)
$C$DW$T$126 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$126, DW_AT_type(*$C$DW$T$27)
$C$DW$T$28 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$28, DW_AT_byte_size(0x04)
$C$DW$124 .dwtag DW_TAG_member
.dwattr $C$DW$124, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$124, DW_AT_name("PMAO_PRU0")
.dwattr $C$DW$124, DW_AT_TI_symbol_name("PMAO_PRU0")
.dwattr $C$DW$124, DW_AT_bit_offset(0x1f), DW_AT_bit_size(0x01)
.dwattr $C$DW$124, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$124, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$124, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$124, DW_AT_decl_line(0xc4)
.dwattr $C$DW$124, DW_AT_decl_column(0x0d)
$C$DW$125 .dwtag DW_TAG_member
.dwattr $C$DW$125, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$125, DW_AT_name("PMAO_PRU1")
.dwattr $C$DW$125, DW_AT_TI_symbol_name("PMAO_PRU1")
.dwattr $C$DW$125, DW_AT_bit_offset(0x1e), DW_AT_bit_size(0x01)
.dwattr $C$DW$125, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$125, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$125, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$125, DW_AT_decl_line(0xc5)
.dwattr $C$DW$125, DW_AT_decl_column(0x0d)
$C$DW$126 .dwtag DW_TAG_member
.dwattr $C$DW$126, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$126, DW_AT_name("rsvd2")
.dwattr $C$DW$126, DW_AT_TI_symbol_name("rsvd2")
.dwattr $C$DW$126, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x1e)
.dwattr $C$DW$126, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$126, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$126, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$126, DW_AT_decl_line(0xc6)
.dwattr $C$DW$126, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$28
.dwattr $C$DW$T$28, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$28, DW_AT_decl_line(0xc3)
.dwattr $C$DW$T$28, DW_AT_decl_column(0x13)
$C$DW$T$128 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$128, DW_AT_type(*$C$DW$T$28)
$C$DW$T$29 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$29, DW_AT_byte_size(0x04)
$C$DW$127 .dwtag DW_TAG_member
.dwattr $C$DW$127, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$127, DW_AT_name("OCP_EN")
.dwattr $C$DW$127, DW_AT_TI_symbol_name("OCP_EN")
.dwattr $C$DW$127, DW_AT_bit_offset(0x1f), DW_AT_bit_size(0x01)
.dwattr $C$DW$127, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$127, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$127, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$127, DW_AT_decl_line(0xd3)
.dwattr $C$DW$127, DW_AT_decl_column(0x0d)
$C$DW$128 .dwtag DW_TAG_member
.dwattr $C$DW$128, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$128, DW_AT_name("rsvd1")
.dwattr $C$DW$128, DW_AT_TI_symbol_name("rsvd1")
.dwattr $C$DW$128, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x1f)
.dwattr $C$DW$128, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$128, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$128, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$128, DW_AT_decl_line(0xd4)
.dwattr $C$DW$128, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$29
.dwattr $C$DW$T$29, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$29, DW_AT_decl_line(0xd2)
.dwattr $C$DW$T$29, DW_AT_decl_column(0x13)
$C$DW$T$130 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$130, DW_AT_type(*$C$DW$T$29)
$C$DW$T$30 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$30, DW_AT_byte_size(0x04)
$C$DW$129 .dwtag DW_TAG_member
.dwattr $C$DW$129, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$129, DW_AT_name("PRU1_PAD_HP_EN")
.dwattr $C$DW$129, DW_AT_TI_symbol_name("PRU1_PAD_HP_EN")
.dwattr $C$DW$129, DW_AT_bit_offset(0x1f), DW_AT_bit_size(0x01)
.dwattr $C$DW$129, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$129, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$129, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$129, DW_AT_decl_line(0xde)
.dwattr $C$DW$129, DW_AT_decl_column(0x0d)
$C$DW$130 .dwtag DW_TAG_member
.dwattr $C$DW$130, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$130, DW_AT_name("XFR_SHIFT_EN")
.dwattr $C$DW$130, DW_AT_TI_symbol_name("XFR_SHIFT_EN")
.dwattr $C$DW$130, DW_AT_bit_offset(0x1e), DW_AT_bit_size(0x01)
.dwattr $C$DW$130, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$130, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$130, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$130, DW_AT_decl_line(0xdf)
.dwattr $C$DW$130, DW_AT_decl_column(0x0d)
$C$DW$131 .dwtag DW_TAG_member
.dwattr $C$DW$131, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$131, DW_AT_name("rsvd2")
.dwattr $C$DW$131, DW_AT_TI_symbol_name("rsvd2")
.dwattr $C$DW$131, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x1e)
.dwattr $C$DW$131, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$131, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$131, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$131, DW_AT_decl_line(0xe0)
.dwattr $C$DW$131, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$30
.dwattr $C$DW$T$30, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$30, DW_AT_decl_line(0xdd)
.dwattr $C$DW$T$30, DW_AT_decl_column(0x13)
$C$DW$T$132 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$132, DW_AT_type(*$C$DW$T$30)
$C$DW$T$31 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$31, DW_AT_byte_size(0x04)
$C$DW$132 .dwtag DW_TAG_member
.dwattr $C$DW$132, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$132, DW_AT_name("PIN_MUX_SEL")
.dwattr $C$DW$132, DW_AT_TI_symbol_name("PIN_MUX_SEL")
.dwattr $C$DW$132, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x08)
.dwattr $C$DW$132, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$132, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$132, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$132, DW_AT_decl_line(0xec)
.dwattr $C$DW$132, DW_AT_decl_column(0x0d)
$C$DW$133 .dwtag DW_TAG_member
.dwattr $C$DW$133, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$133, DW_AT_name("rsvd2")
.dwattr $C$DW$133, DW_AT_TI_symbol_name("rsvd2")
.dwattr $C$DW$133, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x18)
.dwattr $C$DW$133, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$133, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$133, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$133, DW_AT_decl_line(0xed)
.dwattr $C$DW$133, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$31
.dwattr $C$DW$T$31, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$31, DW_AT_decl_line(0xeb)
.dwattr $C$DW$T$31, DW_AT_decl_column(0x13)
$C$DW$T$134 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$134, DW_AT_type(*$C$DW$T$31)
$C$DW$T$35 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$35, DW_AT_byte_size(0x44)
$C$DW$134 .dwtag DW_TAG_member
.dwattr $C$DW$134, DW_AT_type(*$C$DW$T$111)
.dwattr $C$DW$134, DW_AT_name("$P$T0")
.dwattr $C$DW$134, DW_AT_TI_symbol_name("$P$T0")
.dwattr $C$DW$134, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$134, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$134, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$134, DW_AT_decl_line(0x29)
.dwattr $C$DW$134, DW_AT_decl_column(0x02)
$C$DW$135 .dwtag DW_TAG_member
.dwattr $C$DW$135, DW_AT_type(*$C$DW$T$113)
.dwattr $C$DW$135, DW_AT_name("$P$T1")
.dwattr $C$DW$135, DW_AT_TI_symbol_name("$P$T1")
.dwattr $C$DW$135, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$135, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$135, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$135, DW_AT_decl_line(0x33)
.dwattr $C$DW$135, DW_AT_decl_column(0x02)
$C$DW$136 .dwtag DW_TAG_member
.dwattr $C$DW$136, DW_AT_type(*$C$DW$T$115)
.dwattr $C$DW$136, DW_AT_name("$P$T2")
.dwattr $C$DW$136, DW_AT_TI_symbol_name("$P$T2")
.dwattr $C$DW$136, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$136, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$136, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$136, DW_AT_decl_line(0x41)
.dwattr $C$DW$136, DW_AT_decl_column(0x02)
$C$DW$137 .dwtag DW_TAG_member
.dwattr $C$DW$137, DW_AT_type(*$C$DW$T$117)
.dwattr $C$DW$137, DW_AT_name("$P$T3")
.dwattr $C$DW$137, DW_AT_TI_symbol_name("$P$T3")
.dwattr $C$DW$137, DW_AT_data_member_location[DW_OP_plus_uconst 0xc]
.dwattr $C$DW$137, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$137, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$137, DW_AT_decl_line(0x54)
.dwattr $C$DW$137, DW_AT_decl_column(0x02)
$C$DW$138 .dwtag DW_TAG_member
.dwattr $C$DW$138, DW_AT_type(*$C$DW$T$119)
.dwattr $C$DW$138, DW_AT_name("$P$T4")
.dwattr $C$DW$138, DW_AT_TI_symbol_name("$P$T4")
.dwattr $C$DW$138, DW_AT_data_member_location[DW_OP_plus_uconst 0x10]
.dwattr $C$DW$138, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$138, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$138, DW_AT_decl_line(0x67)
.dwattr $C$DW$138, DW_AT_decl_column(0x02)
$C$DW$139 .dwtag DW_TAG_member
.dwattr $C$DW$139, DW_AT_type(*$C$DW$T$121)
.dwattr $C$DW$139, DW_AT_name("$P$T5")
.dwattr $C$DW$139, DW_AT_TI_symbol_name("$P$T5")
.dwattr $C$DW$139, DW_AT_data_member_location[DW_OP_plus_uconst 0x14]
.dwattr $C$DW$139, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$139, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$139, DW_AT_decl_line(0x83)
.dwattr $C$DW$139, DW_AT_decl_column(0x02)
$C$DW$140 .dwtag DW_TAG_member
.dwattr $C$DW$140, DW_AT_type(*$C$DW$T$123)
.dwattr $C$DW$140, DW_AT_name("$P$T6")
.dwattr $C$DW$140, DW_AT_TI_symbol_name("$P$T6")
.dwattr $C$DW$140, DW_AT_data_member_location[DW_OP_plus_uconst 0x18]
.dwattr $C$DW$140, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$140, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$140, DW_AT_decl_line(0x92)
.dwattr $C$DW$140, DW_AT_decl_column(0x02)
$C$DW$141 .dwtag DW_TAG_member
.dwattr $C$DW$141, DW_AT_type(*$C$DW$T$125)
.dwattr $C$DW$141, DW_AT_name("$P$T7")
.dwattr $C$DW$141, DW_AT_TI_symbol_name("$P$T7")
.dwattr $C$DW$141, DW_AT_data_member_location[DW_OP_plus_uconst 0x1c]
.dwattr $C$DW$141, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$141, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$141, DW_AT_decl_line(0xa0)
.dwattr $C$DW$141, DW_AT_decl_column(0x02)
$C$DW$142 .dwtag DW_TAG_member
.dwattr $C$DW$142, DW_AT_type(*$C$DW$T$127)
.dwattr $C$DW$142, DW_AT_name("$P$T8")
.dwattr $C$DW$142, DW_AT_TI_symbol_name("$P$T8")
.dwattr $C$DW$142, DW_AT_data_member_location[DW_OP_plus_uconst 0x20]
.dwattr $C$DW$142, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$142, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$142, DW_AT_decl_line(0xaf)
.dwattr $C$DW$142, DW_AT_decl_column(0x02)
$C$DW$143 .dwtag DW_TAG_member
.dwattr $C$DW$143, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$143, DW_AT_name("rsvd24")
.dwattr $C$DW$143, DW_AT_TI_symbol_name("rsvd24")
.dwattr $C$DW$143, DW_AT_data_member_location[DW_OP_plus_uconst 0x24]
.dwattr $C$DW$143, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$143, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$143, DW_AT_decl_line(0xbc)
.dwattr $C$DW$143, DW_AT_decl_column(0x0b)
$C$DW$144 .dwtag DW_TAG_member
.dwattr $C$DW$144, DW_AT_type(*$C$DW$T$129)
.dwattr $C$DW$144, DW_AT_name("$P$T9")
.dwattr $C$DW$144, DW_AT_TI_symbol_name("$P$T9")
.dwattr $C$DW$144, DW_AT_data_member_location[DW_OP_plus_uconst 0x28]
.dwattr $C$DW$144, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$144, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$144, DW_AT_decl_line(0xc0)
.dwattr $C$DW$144, DW_AT_decl_column(0x02)
$C$DW$145 .dwtag DW_TAG_member
.dwattr $C$DW$145, DW_AT_type(*$C$DW$T$33)
.dwattr $C$DW$145, DW_AT_name("rsvd2c")
.dwattr $C$DW$145, DW_AT_TI_symbol_name("rsvd2c")
.dwattr $C$DW$145, DW_AT_data_member_location[DW_OP_plus_uconst 0x2c]
.dwattr $C$DW$145, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$145, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$145, DW_AT_decl_line(0xcb)
.dwattr $C$DW$145, DW_AT_decl_column(0x0b)
$C$DW$146 .dwtag DW_TAG_member
.dwattr $C$DW$146, DW_AT_type(*$C$DW$T$131)
.dwattr $C$DW$146, DW_AT_name("$P$T10")
.dwattr $C$DW$146, DW_AT_TI_symbol_name("$P$T10")
.dwattr $C$DW$146, DW_AT_data_member_location[DW_OP_plus_uconst 0x30]
.dwattr $C$DW$146, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$146, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$146, DW_AT_decl_line(0xcf)
.dwattr $C$DW$146, DW_AT_decl_column(0x02)
$C$DW$147 .dwtag DW_TAG_member
.dwattr $C$DW$147, DW_AT_type(*$C$DW$T$133)
.dwattr $C$DW$147, DW_AT_name("$P$T11")
.dwattr $C$DW$147, DW_AT_TI_symbol_name("$P$T11")
.dwattr $C$DW$147, DW_AT_data_member_location[DW_OP_plus_uconst 0x34]
.dwattr $C$DW$147, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$147, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$147, DW_AT_decl_line(0xda)
.dwattr $C$DW$147, DW_AT_decl_column(0x02)
$C$DW$148 .dwtag DW_TAG_member
.dwattr $C$DW$148, DW_AT_type(*$C$DW$T$34)
.dwattr $C$DW$148, DW_AT_name("rsvd38")
.dwattr $C$DW$148, DW_AT_TI_symbol_name("rsvd38")
.dwattr $C$DW$148, DW_AT_data_member_location[DW_OP_plus_uconst 0x38]
.dwattr $C$DW$148, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$148, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$148, DW_AT_decl_line(0xe5)
.dwattr $C$DW$148, DW_AT_decl_column(0x0b)
$C$DW$149 .dwtag DW_TAG_member
.dwattr $C$DW$149, DW_AT_type(*$C$DW$T$135)
.dwattr $C$DW$149, DW_AT_name("$P$T12")
.dwattr $C$DW$149, DW_AT_TI_symbol_name("$P$T12")
.dwattr $C$DW$149, DW_AT_data_member_location[DW_OP_plus_uconst 0x40]
.dwattr $C$DW$149, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$149, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$149, DW_AT_decl_line(0xe8)
.dwattr $C$DW$149, DW_AT_decl_column(0x02)
.dwendtag $C$DW$T$35
.dwattr $C$DW$T$35, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$35, DW_AT_decl_line(0x26)
.dwattr $C$DW$T$35, DW_AT_decl_column(0x10)
$C$DW$T$292 .dwtag DW_TAG_typedef, DW_AT_name("pruCfg")
.dwattr $C$DW$T$292, DW_AT_type(*$C$DW$T$35)
.dwattr $C$DW$T$292, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$292, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$292, DW_AT_decl_line(0xf0)
.dwattr $C$DW$T$292, DW_AT_decl_column(0x03)
$C$DW$T$293 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$293, DW_AT_type(*$C$DW$T$292)
$C$DW$T$37 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$37, DW_AT_byte_size(0x04)
$C$DW$150 .dwtag DW_TAG_member
.dwattr $C$DW$150, DW_AT_type(*$C$DW$T$36)
.dwattr $C$DW$150, DW_AT_name("type")
.dwattr $C$DW$150, DW_AT_TI_symbol_name("type")
.dwattr $C$DW$150, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$150, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$150, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$150, DW_AT_decl_line(0x177)
.dwattr $C$DW$150, DW_AT_decl_column(0x0d)
$C$DW$151 .dwtag DW_TAG_member
.dwattr $C$DW$151, DW_AT_type(*$C$DW$T$36)
.dwattr $C$DW$151, DW_AT_name("ver")
.dwattr $C$DW$151, DW_AT_TI_symbol_name("ver")
.dwattr $C$DW$151, DW_AT_data_member_location[DW_OP_plus_uconst 0x2]
.dwattr $C$DW$151, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$151, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$151, DW_AT_decl_line(0x178)
.dwattr $C$DW$151, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$37
.dwattr $C$DW$T$37, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$T$37, DW_AT_decl_line(0x176)
.dwattr $C$DW$T$37, DW_AT_decl_column(0x0a)
$C$DW$T$38 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$38, DW_AT_byte_size(0x04)
$C$DW$152 .dwtag DW_TAG_member
.dwattr $C$DW$152, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$152, DW_AT_name("REV_MINOR")
.dwattr $C$DW$152, DW_AT_TI_symbol_name("REV_MINOR")
.dwattr $C$DW$152, DW_AT_bit_offset(0x1a), DW_AT_bit_size(0x06)
.dwattr $C$DW$152, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$152, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$152, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$152, DW_AT_decl_line(0x2d)
.dwattr $C$DW$152, DW_AT_decl_column(0x0d)
$C$DW$153 .dwtag DW_TAG_member
.dwattr $C$DW$153, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$153, DW_AT_name("REV_CUSTOM")
.dwattr $C$DW$153, DW_AT_TI_symbol_name("REV_CUSTOM")
.dwattr $C$DW$153, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x02)
.dwattr $C$DW$153, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$153, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$153, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$153, DW_AT_decl_line(0x2e)
.dwattr $C$DW$153, DW_AT_decl_column(0x0d)
$C$DW$154 .dwtag DW_TAG_member
.dwattr $C$DW$154, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$154, DW_AT_name("REV_MAJOR")
.dwattr $C$DW$154, DW_AT_TI_symbol_name("REV_MAJOR")
.dwattr $C$DW$154, DW_AT_bit_offset(0x15), DW_AT_bit_size(0x03)
.dwattr $C$DW$154, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$154, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$154, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$154, DW_AT_decl_line(0x2f)
.dwattr $C$DW$154, DW_AT_decl_column(0x0d)
$C$DW$155 .dwtag DW_TAG_member
.dwattr $C$DW$155, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$155, DW_AT_name("REV_RTL")
.dwattr $C$DW$155, DW_AT_TI_symbol_name("REV_RTL")
.dwattr $C$DW$155, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x05)
.dwattr $C$DW$155, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$155, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$155, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$155, DW_AT_decl_line(0x30)
.dwattr $C$DW$155, DW_AT_decl_column(0x0d)
$C$DW$156 .dwtag DW_TAG_member
.dwattr $C$DW$156, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$156, DW_AT_name("REV_MODULE")
.dwattr $C$DW$156, DW_AT_TI_symbol_name("REV_MODULE")
.dwattr $C$DW$156, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x0c)
.dwattr $C$DW$156, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$156, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$156, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$156, DW_AT_decl_line(0x31)
.dwattr $C$DW$156, DW_AT_decl_column(0x0d)
$C$DW$157 .dwtag DW_TAG_member
.dwattr $C$DW$157, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$157, DW_AT_name("rsvd28")
.dwattr $C$DW$157, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$157, DW_AT_bit_offset(0x02), DW_AT_bit_size(0x02)
.dwattr $C$DW$157, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$157, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$157, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$157, DW_AT_decl_line(0x32)
.dwattr $C$DW$157, DW_AT_decl_column(0x0d)
$C$DW$158 .dwtag DW_TAG_member
.dwattr $C$DW$158, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$158, DW_AT_name("REV_SCHEME")
.dwattr $C$DW$158, DW_AT_TI_symbol_name("REV_SCHEME")
.dwattr $C$DW$158, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x02)
.dwattr $C$DW$158, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$158, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$158, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$158, DW_AT_decl_line(0x33)
.dwattr $C$DW$158, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$38
.dwattr $C$DW$T$38, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$38, DW_AT_decl_line(0x2c)
.dwattr $C$DW$T$38, DW_AT_decl_column(0x13)
$C$DW$T$137 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$137, DW_AT_type(*$C$DW$T$38)
$C$DW$T$39 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$39, DW_AT_byte_size(0x04)
$C$DW$159 .dwtag DW_TAG_member
.dwattr $C$DW$159, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$159, DW_AT_name("rsvd0")
.dwattr $C$DW$159, DW_AT_TI_symbol_name("rsvd0")
.dwattr $C$DW$159, DW_AT_bit_offset(0x1e), DW_AT_bit_size(0x02)
.dwattr $C$DW$159, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$159, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$159, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$159, DW_AT_decl_line(0x3d)
.dwattr $C$DW$159, DW_AT_decl_column(0x0d)
$C$DW$160 .dwtag DW_TAG_member
.dwattr $C$DW$160, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$160, DW_AT_name("NEST_MODE")
.dwattr $C$DW$160, DW_AT_TI_symbol_name("NEST_MODE")
.dwattr $C$DW$160, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x02)
.dwattr $C$DW$160, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$160, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$160, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$160, DW_AT_decl_line(0x3e)
.dwattr $C$DW$160, DW_AT_decl_column(0x0d)
$C$DW$161 .dwtag DW_TAG_member
.dwattr $C$DW$161, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$161, DW_AT_name("rsvd4")
.dwattr $C$DW$161, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$161, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x1c)
.dwattr $C$DW$161, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$161, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$161, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$161, DW_AT_decl_line(0x3f)
.dwattr $C$DW$161, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$39
.dwattr $C$DW$T$39, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$39, DW_AT_decl_line(0x3c)
.dwattr $C$DW$T$39, DW_AT_decl_column(0x13)
$C$DW$T$139 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$139, DW_AT_type(*$C$DW$T$39)
$C$DW$T$40 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$40, DW_AT_byte_size(0x04)
$C$DW$162 .dwtag DW_TAG_member
.dwattr $C$DW$162, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$162, DW_AT_name("EN_HINT_ANY")
.dwattr $C$DW$162, DW_AT_TI_symbol_name("EN_HINT_ANY")
.dwattr $C$DW$162, DW_AT_bit_offset(0x1f), DW_AT_bit_size(0x01)
.dwattr $C$DW$162, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$162, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$162, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$162, DW_AT_decl_line(0x4c)
.dwattr $C$DW$162, DW_AT_decl_column(0x0d)
$C$DW$163 .dwtag DW_TAG_member
.dwattr $C$DW$163, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$163, DW_AT_name("rsvd1")
.dwattr $C$DW$163, DW_AT_TI_symbol_name("rsvd1")
.dwattr $C$DW$163, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x1f)
.dwattr $C$DW$163, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$163, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$163, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$163, DW_AT_decl_line(0x4d)
.dwattr $C$DW$163, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$40
.dwattr $C$DW$T$40, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$40, DW_AT_decl_line(0x4b)
.dwattr $C$DW$T$40, DW_AT_decl_column(0x13)
$C$DW$T$141 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$141, DW_AT_type(*$C$DW$T$40)
$C$DW$T$41 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$41, DW_AT_byte_size(0x04)
$C$DW$164 .dwtag DW_TAG_member
.dwattr $C$DW$164, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$164, DW_AT_name("GLB_NEST_LEVEL")
.dwattr $C$DW$164, DW_AT_TI_symbol_name("GLB_NEST_LEVEL")
.dwattr $C$DW$164, DW_AT_bit_offset(0x17), DW_AT_bit_size(0x09)
.dwattr $C$DW$164, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$164, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$164, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$164, DW_AT_decl_line(0x5a)
.dwattr $C$DW$164, DW_AT_decl_column(0x0d)
$C$DW$165 .dwtag DW_TAG_member
.dwattr $C$DW$165, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$165, DW_AT_name("rsvd9")
.dwattr $C$DW$165, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$165, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x16)
.dwattr $C$DW$165, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$165, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$165, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$165, DW_AT_decl_line(0x5b)
.dwattr $C$DW$165, DW_AT_decl_column(0x0d)
$C$DW$166 .dwtag DW_TAG_member
.dwattr $C$DW$166, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$166, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$166, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$166, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$166, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$166, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$166, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$166, DW_AT_decl_line(0x5c)
.dwattr $C$DW$166, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$41
.dwattr $C$DW$T$41, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$41, DW_AT_decl_line(0x59)
.dwattr $C$DW$T$41, DW_AT_decl_column(0x13)
$C$DW$T$143 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$143, DW_AT_type(*$C$DW$T$41)
$C$DW$T$42 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$42, DW_AT_byte_size(0x04)
$C$DW$167 .dwtag DW_TAG_member
.dwattr $C$DW$167, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$167, DW_AT_name("STS_SET_IDX")
.dwattr $C$DW$167, DW_AT_TI_symbol_name("STS_SET_IDX")
.dwattr $C$DW$167, DW_AT_bit_offset(0x16), DW_AT_bit_size(0x0a)
.dwattr $C$DW$167, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$167, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$167, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$167, DW_AT_decl_line(0x66)
.dwattr $C$DW$167, DW_AT_decl_column(0x0d)
$C$DW$168 .dwtag DW_TAG_member
.dwattr $C$DW$168, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$168, DW_AT_name("rsvd10")
.dwattr $C$DW$168, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$168, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x16)
.dwattr $C$DW$168, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$168, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$168, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$168, DW_AT_decl_line(0x67)
.dwattr $C$DW$168, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$42
.dwattr $C$DW$T$42, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$42, DW_AT_decl_line(0x65)
.dwattr $C$DW$T$42, DW_AT_decl_column(0x13)
$C$DW$T$145 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$145, DW_AT_type(*$C$DW$T$42)
$C$DW$T$43 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$43, DW_AT_byte_size(0x04)
$C$DW$169 .dwtag DW_TAG_member
.dwattr $C$DW$169, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$169, DW_AT_name("STS_CLR_IDX")
.dwattr $C$DW$169, DW_AT_TI_symbol_name("STS_CLR_IDX")
.dwattr $C$DW$169, DW_AT_bit_offset(0x16), DW_AT_bit_size(0x0a)
.dwattr $C$DW$169, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$169, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$169, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$169, DW_AT_decl_line(0x71)
.dwattr $C$DW$169, DW_AT_decl_column(0x0d)
$C$DW$170 .dwtag DW_TAG_member
.dwattr $C$DW$170, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$170, DW_AT_name("rsvd10")
.dwattr $C$DW$170, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$170, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x16)
.dwattr $C$DW$170, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$170, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$170, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$170, DW_AT_decl_line(0x72)
.dwattr $C$DW$170, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$43
.dwattr $C$DW$T$43, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$43, DW_AT_decl_line(0x70)
.dwattr $C$DW$T$43, DW_AT_decl_column(0x13)
$C$DW$T$147 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$147, DW_AT_type(*$C$DW$T$43)
$C$DW$T$44 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$44, DW_AT_byte_size(0x04)
$C$DW$171 .dwtag DW_TAG_member
.dwattr $C$DW$171, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$171, DW_AT_name("EN_SET_IDX")
.dwattr $C$DW$171, DW_AT_TI_symbol_name("EN_SET_IDX")
.dwattr $C$DW$171, DW_AT_bit_offset(0x16), DW_AT_bit_size(0x0a)
.dwattr $C$DW$171, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$171, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$171, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$171, DW_AT_decl_line(0x7c)
.dwattr $C$DW$171, DW_AT_decl_column(0x0d)
$C$DW$172 .dwtag DW_TAG_member
.dwattr $C$DW$172, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$172, DW_AT_name("rsvd10")
.dwattr $C$DW$172, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$172, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x16)
.dwattr $C$DW$172, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$172, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$172, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$172, DW_AT_decl_line(0x7d)
.dwattr $C$DW$172, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$44
.dwattr $C$DW$T$44, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$44, DW_AT_decl_line(0x7b)
.dwattr $C$DW$T$44, DW_AT_decl_column(0x13)
$C$DW$T$149 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$149, DW_AT_type(*$C$DW$T$44)
$C$DW$T$45 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$45, DW_AT_byte_size(0x04)
$C$DW$173 .dwtag DW_TAG_member
.dwattr $C$DW$173, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$173, DW_AT_name("EN_CLR_IDX")
.dwattr $C$DW$173, DW_AT_TI_symbol_name("EN_CLR_IDX")
.dwattr $C$DW$173, DW_AT_bit_offset(0x16), DW_AT_bit_size(0x0a)
.dwattr $C$DW$173, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$173, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$173, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$173, DW_AT_decl_line(0x87)
.dwattr $C$DW$173, DW_AT_decl_column(0x0d)
$C$DW$174 .dwtag DW_TAG_member
.dwattr $C$DW$174, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$174, DW_AT_name("rsvd10")
.dwattr $C$DW$174, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$174, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x16)
.dwattr $C$DW$174, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$174, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$174, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$174, DW_AT_decl_line(0x88)
.dwattr $C$DW$174, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$45
.dwattr $C$DW$T$45, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$45, DW_AT_decl_line(0x86)
.dwattr $C$DW$T$45, DW_AT_decl_column(0x13)
$C$DW$T$151 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$151, DW_AT_type(*$C$DW$T$45)
$C$DW$T$46 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$46, DW_AT_byte_size(0x04)
$C$DW$175 .dwtag DW_TAG_member
.dwattr $C$DW$175, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$175, DW_AT_name("HINT_EN_SET_IDX")
.dwattr $C$DW$175, DW_AT_TI_symbol_name("HINT_EN_SET_IDX")
.dwattr $C$DW$175, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$175, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$175, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$175, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$175, DW_AT_decl_line(0x95)
.dwattr $C$DW$175, DW_AT_decl_column(0x0d)
$C$DW$176 .dwtag DW_TAG_member
.dwattr $C$DW$176, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$176, DW_AT_name("rsvd4")
.dwattr $C$DW$176, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$176, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x1c)
.dwattr $C$DW$176, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$176, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$176, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$176, DW_AT_decl_line(0x96)
.dwattr $C$DW$176, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$46
.dwattr $C$DW$T$46, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$46, DW_AT_decl_line(0x94)
.dwattr $C$DW$T$46, DW_AT_decl_column(0x13)
$C$DW$T$153 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$153, DW_AT_type(*$C$DW$T$46)
$C$DW$T$47 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$47, DW_AT_byte_size(0x04)
$C$DW$177 .dwtag DW_TAG_member
.dwattr $C$DW$177, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$177, DW_AT_name("HINT_EN_CLR_IDX")
.dwattr $C$DW$177, DW_AT_TI_symbol_name("HINT_EN_CLR_IDX")
.dwattr $C$DW$177, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$177, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$177, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$177, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$177, DW_AT_decl_line(0xa0)
.dwattr $C$DW$177, DW_AT_decl_column(0x0d)
$C$DW$178 .dwtag DW_TAG_member
.dwattr $C$DW$178, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$178, DW_AT_name("rsvd4")
.dwattr $C$DW$178, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$178, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x1c)
.dwattr $C$DW$178, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$178, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$178, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$178, DW_AT_decl_line(0xa1)
.dwattr $C$DW$178, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$47
.dwattr $C$DW$T$47, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$47, DW_AT_decl_line(0x9f)
.dwattr $C$DW$T$47, DW_AT_decl_column(0x13)
$C$DW$T$155 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$155, DW_AT_type(*$C$DW$T$47)
$C$DW$T$48 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$48, DW_AT_byte_size(0x04)
$C$DW$179 .dwtag DW_TAG_member
.dwattr $C$DW$179, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$179, DW_AT_name("GLB_PRI_INTR")
.dwattr $C$DW$179, DW_AT_TI_symbol_name("GLB_PRI_INTR")
.dwattr $C$DW$179, DW_AT_bit_offset(0x16), DW_AT_bit_size(0x0a)
.dwattr $C$DW$179, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$179, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$179, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$179, DW_AT_decl_line(0xae)
.dwattr $C$DW$179, DW_AT_decl_column(0x0d)
$C$DW$180 .dwtag DW_TAG_member
.dwattr $C$DW$180, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$180, DW_AT_name("rsvd10")
.dwattr $C$DW$180, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$180, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x15)
.dwattr $C$DW$180, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$180, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$180, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$180, DW_AT_decl_line(0xaf)
.dwattr $C$DW$180, DW_AT_decl_column(0x0d)
$C$DW$181 .dwtag DW_TAG_member
.dwattr $C$DW$181, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$181, DW_AT_name("GLB_NONE")
.dwattr $C$DW$181, DW_AT_TI_symbol_name("GLB_NONE")
.dwattr $C$DW$181, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$181, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$181, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$181, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$181, DW_AT_decl_line(0xb0)
.dwattr $C$DW$181, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$48
.dwattr $C$DW$T$48, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$48, DW_AT_decl_line(0xad)
.dwattr $C$DW$T$48, DW_AT_decl_column(0x13)
$C$DW$T$157 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$157, DW_AT_type(*$C$DW$T$48)
$C$DW$T$49 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$49, DW_AT_byte_size(0x04)
$C$DW$182 .dwtag DW_TAG_member
.dwattr $C$DW$182, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$182, DW_AT_name("RAW_STS_31_0")
.dwattr $C$DW$182, DW_AT_TI_symbol_name("RAW_STS_31_0")
.dwattr $C$DW$182, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x20)
.dwattr $C$DW$182, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$182, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$182, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$182, DW_AT_decl_line(0xbd)
.dwattr $C$DW$182, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$49
.dwattr $C$DW$T$49, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$49, DW_AT_decl_line(0xbc)
.dwattr $C$DW$T$49, DW_AT_decl_column(0x13)
$C$DW$T$159 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$159, DW_AT_type(*$C$DW$T$49)
$C$DW$T$50 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$50, DW_AT_byte_size(0x04)
$C$DW$183 .dwtag DW_TAG_member
.dwattr $C$DW$183, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$183, DW_AT_name("RAW_STS_63_32")
.dwattr $C$DW$183, DW_AT_TI_symbol_name("RAW_STS_63_32")
.dwattr $C$DW$183, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x20)
.dwattr $C$DW$183, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$183, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$183, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$183, DW_AT_decl_line(0xc7)
.dwattr $C$DW$183, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$50
.dwattr $C$DW$T$50, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$50, DW_AT_decl_line(0xc6)
.dwattr $C$DW$T$50, DW_AT_decl_column(0x13)
$C$DW$T$161 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$161, DW_AT_type(*$C$DW$T$50)
$C$DW$T$51 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$51, DW_AT_byte_size(0x04)
$C$DW$184 .dwtag DW_TAG_member
.dwattr $C$DW$184, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$184, DW_AT_name("ENA_STS_31_0")
.dwattr $C$DW$184, DW_AT_TI_symbol_name("ENA_STS_31_0")
.dwattr $C$DW$184, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x20)
.dwattr $C$DW$184, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$184, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$184, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$184, DW_AT_decl_line(0xd4)
.dwattr $C$DW$184, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$51
.dwattr $C$DW$T$51, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$51, DW_AT_decl_line(0xd3)
.dwattr $C$DW$T$51, DW_AT_decl_column(0x13)
$C$DW$T$163 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$163, DW_AT_type(*$C$DW$T$51)
$C$DW$T$52 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$52, DW_AT_byte_size(0x04)
$C$DW$185 .dwtag DW_TAG_member
.dwattr $C$DW$185, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$185, DW_AT_name("ENA_STS_63_32")
.dwattr $C$DW$185, DW_AT_TI_symbol_name("ENA_STS_63_32")
.dwattr $C$DW$185, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x20)
.dwattr $C$DW$185, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$185, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$185, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$185, DW_AT_decl_line(0xde)
.dwattr $C$DW$185, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$52
.dwattr $C$DW$T$52, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$52, DW_AT_decl_line(0xdd)
.dwattr $C$DW$T$52, DW_AT_decl_column(0x13)
$C$DW$T$165 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$165, DW_AT_type(*$C$DW$T$52)
$C$DW$T$53 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$53, DW_AT_byte_size(0x04)
$C$DW$186 .dwtag DW_TAG_member
.dwattr $C$DW$186, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$186, DW_AT_name("EN_SET_31_0")
.dwattr $C$DW$186, DW_AT_TI_symbol_name("EN_SET_31_0")
.dwattr $C$DW$186, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x20)
.dwattr $C$DW$186, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$186, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$186, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$186, DW_AT_decl_line(0xeb)
.dwattr $C$DW$186, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$53
.dwattr $C$DW$T$53, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$53, DW_AT_decl_line(0xea)
.dwattr $C$DW$T$53, DW_AT_decl_column(0x13)
$C$DW$T$167 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$167, DW_AT_type(*$C$DW$T$53)
$C$DW$T$54 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$54, DW_AT_byte_size(0x04)
$C$DW$187 .dwtag DW_TAG_member
.dwattr $C$DW$187, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$187, DW_AT_name("EN_SET_63_32")
.dwattr $C$DW$187, DW_AT_TI_symbol_name("EN_SET_63_32")
.dwattr $C$DW$187, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x20)
.dwattr $C$DW$187, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$187, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$187, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$187, DW_AT_decl_line(0xf5)
.dwattr $C$DW$187, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$54
.dwattr $C$DW$T$54, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$54, DW_AT_decl_line(0xf4)
.dwattr $C$DW$T$54, DW_AT_decl_column(0x13)
$C$DW$T$169 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$169, DW_AT_type(*$C$DW$T$54)
$C$DW$T$55 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$55, DW_AT_byte_size(0x04)
$C$DW$188 .dwtag DW_TAG_member
.dwattr $C$DW$188, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$188, DW_AT_name("EN_CLR_31_0")
.dwattr $C$DW$188, DW_AT_TI_symbol_name("EN_CLR_31_0")
.dwattr $C$DW$188, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x20)
.dwattr $C$DW$188, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$188, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$188, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$188, DW_AT_decl_line(0x102)
.dwattr $C$DW$188, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$55
.dwattr $C$DW$T$55, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$55, DW_AT_decl_line(0x101)
.dwattr $C$DW$T$55, DW_AT_decl_column(0x13)
$C$DW$T$171 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$171, DW_AT_type(*$C$DW$T$55)
$C$DW$T$56 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$56, DW_AT_byte_size(0x04)
$C$DW$189 .dwtag DW_TAG_member
.dwattr $C$DW$189, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$189, DW_AT_name("EN_CLR_63_32")
.dwattr $C$DW$189, DW_AT_TI_symbol_name("EN_CLR_63_32")
.dwattr $C$DW$189, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x20)
.dwattr $C$DW$189, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$189, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$189, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$189, DW_AT_decl_line(0x10c)
.dwattr $C$DW$189, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$56
.dwattr $C$DW$T$56, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$56, DW_AT_decl_line(0x10b)
.dwattr $C$DW$T$56, DW_AT_decl_column(0x13)
$C$DW$T$173 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$173, DW_AT_type(*$C$DW$T$56)
$C$DW$T$57 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$57, DW_AT_byte_size(0x04)
$C$DW$190 .dwtag DW_TAG_member
.dwattr $C$DW$190, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$190, DW_AT_name("CH_MAP_0")
.dwattr $C$DW$190, DW_AT_TI_symbol_name("CH_MAP_0")
.dwattr $C$DW$190, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$190, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$190, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$190, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$190, DW_AT_decl_line(0x119)
.dwattr $C$DW$190, DW_AT_decl_column(0x0d)
$C$DW$191 .dwtag DW_TAG_member
.dwattr $C$DW$191, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$191, DW_AT_name("rsvd4")
.dwattr $C$DW$191, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$191, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$191, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$191, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$191, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$191, DW_AT_decl_line(0x11a)
.dwattr $C$DW$191, DW_AT_decl_column(0x0d)
$C$DW$192 .dwtag DW_TAG_member
.dwattr $C$DW$192, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$192, DW_AT_name("CH_MAP_1")
.dwattr $C$DW$192, DW_AT_TI_symbol_name("CH_MAP_1")
.dwattr $C$DW$192, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$192, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$192, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$192, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$192, DW_AT_decl_line(0x11b)
.dwattr $C$DW$192, DW_AT_decl_column(0x0d)
$C$DW$193 .dwtag DW_TAG_member
.dwattr $C$DW$193, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$193, DW_AT_name("rsvd12")
.dwattr $C$DW$193, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$193, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$193, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$193, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$193, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$193, DW_AT_decl_line(0x11c)
.dwattr $C$DW$193, DW_AT_decl_column(0x0d)
$C$DW$194 .dwtag DW_TAG_member
.dwattr $C$DW$194, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$194, DW_AT_name("CH_MAP_2")
.dwattr $C$DW$194, DW_AT_TI_symbol_name("CH_MAP_2")
.dwattr $C$DW$194, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$194, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$194, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$194, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$194, DW_AT_decl_line(0x11d)
.dwattr $C$DW$194, DW_AT_decl_column(0x0d)
$C$DW$195 .dwtag DW_TAG_member
.dwattr $C$DW$195, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$195, DW_AT_name("rsvd20")
.dwattr $C$DW$195, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$195, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$195, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$195, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$195, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$195, DW_AT_decl_line(0x11e)
.dwattr $C$DW$195, DW_AT_decl_column(0x0d)
$C$DW$196 .dwtag DW_TAG_member
.dwattr $C$DW$196, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$196, DW_AT_name("CH_MAP_3")
.dwattr $C$DW$196, DW_AT_TI_symbol_name("CH_MAP_3")
.dwattr $C$DW$196, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$196, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$196, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$196, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$196, DW_AT_decl_line(0x11f)
.dwattr $C$DW$196, DW_AT_decl_column(0x0d)
$C$DW$197 .dwtag DW_TAG_member
.dwattr $C$DW$197, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$197, DW_AT_name("rsvd28")
.dwattr $C$DW$197, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$197, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$197, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$197, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$197, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$197, DW_AT_decl_line(0x120)
.dwattr $C$DW$197, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$57
.dwattr $C$DW$T$57, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$57, DW_AT_decl_line(0x118)
.dwattr $C$DW$T$57, DW_AT_decl_column(0x13)
$C$DW$T$175 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$175, DW_AT_type(*$C$DW$T$57)
$C$DW$T$58 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$58, DW_AT_byte_size(0x04)
$C$DW$198 .dwtag DW_TAG_member
.dwattr $C$DW$198, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$198, DW_AT_name("CH_MAP_4")
.dwattr $C$DW$198, DW_AT_TI_symbol_name("CH_MAP_4")
.dwattr $C$DW$198, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$198, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$198, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$198, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$198, DW_AT_decl_line(0x12a)
.dwattr $C$DW$198, DW_AT_decl_column(0x0d)
$C$DW$199 .dwtag DW_TAG_member
.dwattr $C$DW$199, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$199, DW_AT_name("rsvd4")
.dwattr $C$DW$199, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$199, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$199, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$199, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$199, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$199, DW_AT_decl_line(0x12b)
.dwattr $C$DW$199, DW_AT_decl_column(0x0d)
$C$DW$200 .dwtag DW_TAG_member
.dwattr $C$DW$200, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$200, DW_AT_name("CH_MAP_5")
.dwattr $C$DW$200, DW_AT_TI_symbol_name("CH_MAP_5")
.dwattr $C$DW$200, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$200, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$200, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$200, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$200, DW_AT_decl_line(0x12c)
.dwattr $C$DW$200, DW_AT_decl_column(0x0d)
$C$DW$201 .dwtag DW_TAG_member
.dwattr $C$DW$201, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$201, DW_AT_name("rsvd12")
.dwattr $C$DW$201, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$201, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$201, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$201, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$201, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$201, DW_AT_decl_line(0x12d)
.dwattr $C$DW$201, DW_AT_decl_column(0x0d)
$C$DW$202 .dwtag DW_TAG_member
.dwattr $C$DW$202, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$202, DW_AT_name("CH_MAP_6")
.dwattr $C$DW$202, DW_AT_TI_symbol_name("CH_MAP_6")
.dwattr $C$DW$202, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$202, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$202, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$202, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$202, DW_AT_decl_line(0x12e)
.dwattr $C$DW$202, DW_AT_decl_column(0x0d)
$C$DW$203 .dwtag DW_TAG_member
.dwattr $C$DW$203, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$203, DW_AT_name("rsvd20")
.dwattr $C$DW$203, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$203, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$203, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$203, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$203, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$203, DW_AT_decl_line(0x12f)
.dwattr $C$DW$203, DW_AT_decl_column(0x0d)
$C$DW$204 .dwtag DW_TAG_member
.dwattr $C$DW$204, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$204, DW_AT_name("CH_MAP_7")
.dwattr $C$DW$204, DW_AT_TI_symbol_name("CH_MAP_7")
.dwattr $C$DW$204, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$204, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$204, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$204, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$204, DW_AT_decl_line(0x130)
.dwattr $C$DW$204, DW_AT_decl_column(0x0d)
$C$DW$205 .dwtag DW_TAG_member
.dwattr $C$DW$205, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$205, DW_AT_name("rsvd28")
.dwattr $C$DW$205, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$205, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$205, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$205, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$205, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$205, DW_AT_decl_line(0x131)
.dwattr $C$DW$205, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$58
.dwattr $C$DW$T$58, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$58, DW_AT_decl_line(0x129)
.dwattr $C$DW$T$58, DW_AT_decl_column(0x13)
$C$DW$T$177 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$177, DW_AT_type(*$C$DW$T$58)
$C$DW$T$59 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$59, DW_AT_byte_size(0x04)
$C$DW$206 .dwtag DW_TAG_member
.dwattr $C$DW$206, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$206, DW_AT_name("CH_MAP_8")
.dwattr $C$DW$206, DW_AT_TI_symbol_name("CH_MAP_8")
.dwattr $C$DW$206, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$206, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$206, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$206, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$206, DW_AT_decl_line(0x13b)
.dwattr $C$DW$206, DW_AT_decl_column(0x0d)
$C$DW$207 .dwtag DW_TAG_member
.dwattr $C$DW$207, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$207, DW_AT_name("rsvd4")
.dwattr $C$DW$207, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$207, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$207, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$207, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$207, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$207, DW_AT_decl_line(0x13c)
.dwattr $C$DW$207, DW_AT_decl_column(0x0d)
$C$DW$208 .dwtag DW_TAG_member
.dwattr $C$DW$208, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$208, DW_AT_name("CH_MAP_9")
.dwattr $C$DW$208, DW_AT_TI_symbol_name("CH_MAP_9")
.dwattr $C$DW$208, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$208, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$208, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$208, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$208, DW_AT_decl_line(0x13d)
.dwattr $C$DW$208, DW_AT_decl_column(0x0d)
$C$DW$209 .dwtag DW_TAG_member
.dwattr $C$DW$209, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$209, DW_AT_name("rsvd12")
.dwattr $C$DW$209, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$209, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$209, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$209, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$209, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$209, DW_AT_decl_line(0x13e)
.dwattr $C$DW$209, DW_AT_decl_column(0x0d)
$C$DW$210 .dwtag DW_TAG_member
.dwattr $C$DW$210, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$210, DW_AT_name("CH_MAP_10")
.dwattr $C$DW$210, DW_AT_TI_symbol_name("CH_MAP_10")
.dwattr $C$DW$210, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$210, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$210, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$210, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$210, DW_AT_decl_line(0x13f)
.dwattr $C$DW$210, DW_AT_decl_column(0x0d)
$C$DW$211 .dwtag DW_TAG_member
.dwattr $C$DW$211, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$211, DW_AT_name("rsvd20")
.dwattr $C$DW$211, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$211, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$211, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$211, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$211, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$211, DW_AT_decl_line(0x140)
.dwattr $C$DW$211, DW_AT_decl_column(0x0d)
$C$DW$212 .dwtag DW_TAG_member
.dwattr $C$DW$212, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$212, DW_AT_name("CH_MAP_11")
.dwattr $C$DW$212, DW_AT_TI_symbol_name("CH_MAP_11")
.dwattr $C$DW$212, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$212, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$212, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$212, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$212, DW_AT_decl_line(0x141)
.dwattr $C$DW$212, DW_AT_decl_column(0x0d)
$C$DW$213 .dwtag DW_TAG_member
.dwattr $C$DW$213, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$213, DW_AT_name("rsvd28")
.dwattr $C$DW$213, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$213, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$213, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$213, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$213, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$213, DW_AT_decl_line(0x142)
.dwattr $C$DW$213, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$59
.dwattr $C$DW$T$59, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$59, DW_AT_decl_line(0x13a)
.dwattr $C$DW$T$59, DW_AT_decl_column(0x13)
$C$DW$T$179 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$179, DW_AT_type(*$C$DW$T$59)
$C$DW$T$60 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$60, DW_AT_byte_size(0x04)
$C$DW$214 .dwtag DW_TAG_member
.dwattr $C$DW$214, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$214, DW_AT_name("CH_MAP_12")
.dwattr $C$DW$214, DW_AT_TI_symbol_name("CH_MAP_12")
.dwattr $C$DW$214, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$214, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$214, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$214, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$214, DW_AT_decl_line(0x14c)
.dwattr $C$DW$214, DW_AT_decl_column(0x0d)
$C$DW$215 .dwtag DW_TAG_member
.dwattr $C$DW$215, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$215, DW_AT_name("rsvd4")
.dwattr $C$DW$215, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$215, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$215, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$215, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$215, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$215, DW_AT_decl_line(0x14d)
.dwattr $C$DW$215, DW_AT_decl_column(0x0d)
$C$DW$216 .dwtag DW_TAG_member
.dwattr $C$DW$216, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$216, DW_AT_name("CH_MAP_13")
.dwattr $C$DW$216, DW_AT_TI_symbol_name("CH_MAP_13")
.dwattr $C$DW$216, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$216, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$216, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$216, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$216, DW_AT_decl_line(0x14e)
.dwattr $C$DW$216, DW_AT_decl_column(0x0d)
$C$DW$217 .dwtag DW_TAG_member
.dwattr $C$DW$217, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$217, DW_AT_name("rsvd12")
.dwattr $C$DW$217, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$217, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$217, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$217, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$217, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$217, DW_AT_decl_line(0x14f)
.dwattr $C$DW$217, DW_AT_decl_column(0x0d)
$C$DW$218 .dwtag DW_TAG_member
.dwattr $C$DW$218, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$218, DW_AT_name("CH_MAP_14")
.dwattr $C$DW$218, DW_AT_TI_symbol_name("CH_MAP_14")
.dwattr $C$DW$218, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$218, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$218, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$218, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$218, DW_AT_decl_line(0x150)
.dwattr $C$DW$218, DW_AT_decl_column(0x0d)
$C$DW$219 .dwtag DW_TAG_member
.dwattr $C$DW$219, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$219, DW_AT_name("rsvd20")
.dwattr $C$DW$219, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$219, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$219, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$219, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$219, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$219, DW_AT_decl_line(0x151)
.dwattr $C$DW$219, DW_AT_decl_column(0x0d)
$C$DW$220 .dwtag DW_TAG_member
.dwattr $C$DW$220, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$220, DW_AT_name("CH_MAP_15")
.dwattr $C$DW$220, DW_AT_TI_symbol_name("CH_MAP_15")
.dwattr $C$DW$220, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$220, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$220, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$220, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$220, DW_AT_decl_line(0x152)
.dwattr $C$DW$220, DW_AT_decl_column(0x0d)
$C$DW$221 .dwtag DW_TAG_member
.dwattr $C$DW$221, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$221, DW_AT_name("rsvd28")
.dwattr $C$DW$221, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$221, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$221, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$221, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$221, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$221, DW_AT_decl_line(0x153)
.dwattr $C$DW$221, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$60
.dwattr $C$DW$T$60, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$60, DW_AT_decl_line(0x14b)
.dwattr $C$DW$T$60, DW_AT_decl_column(0x13)
$C$DW$T$181 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$181, DW_AT_type(*$C$DW$T$60)
$C$DW$T$61 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$61, DW_AT_byte_size(0x04)
$C$DW$222 .dwtag DW_TAG_member
.dwattr $C$DW$222, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$222, DW_AT_name("CH_MAP_16")
.dwattr $C$DW$222, DW_AT_TI_symbol_name("CH_MAP_16")
.dwattr $C$DW$222, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$222, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$222, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$222, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$222, DW_AT_decl_line(0x15d)
.dwattr $C$DW$222, DW_AT_decl_column(0x0d)
$C$DW$223 .dwtag DW_TAG_member
.dwattr $C$DW$223, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$223, DW_AT_name("rsvd4")
.dwattr $C$DW$223, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$223, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$223, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$223, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$223, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$223, DW_AT_decl_line(0x15e)
.dwattr $C$DW$223, DW_AT_decl_column(0x0d)
$C$DW$224 .dwtag DW_TAG_member
.dwattr $C$DW$224, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$224, DW_AT_name("CH_MAP_17")
.dwattr $C$DW$224, DW_AT_TI_symbol_name("CH_MAP_17")
.dwattr $C$DW$224, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$224, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$224, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$224, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$224, DW_AT_decl_line(0x15f)
.dwattr $C$DW$224, DW_AT_decl_column(0x0d)
$C$DW$225 .dwtag DW_TAG_member
.dwattr $C$DW$225, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$225, DW_AT_name("rsvd12")
.dwattr $C$DW$225, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$225, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$225, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$225, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$225, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$225, DW_AT_decl_line(0x160)
.dwattr $C$DW$225, DW_AT_decl_column(0x0d)
$C$DW$226 .dwtag DW_TAG_member
.dwattr $C$DW$226, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$226, DW_AT_name("CH_MAP_18")
.dwattr $C$DW$226, DW_AT_TI_symbol_name("CH_MAP_18")
.dwattr $C$DW$226, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$226, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$226, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$226, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$226, DW_AT_decl_line(0x161)
.dwattr $C$DW$226, DW_AT_decl_column(0x0d)
$C$DW$227 .dwtag DW_TAG_member
.dwattr $C$DW$227, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$227, DW_AT_name("rsvd20")
.dwattr $C$DW$227, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$227, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$227, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$227, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$227, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$227, DW_AT_decl_line(0x162)
.dwattr $C$DW$227, DW_AT_decl_column(0x0d)
$C$DW$228 .dwtag DW_TAG_member
.dwattr $C$DW$228, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$228, DW_AT_name("CH_MAP_19")
.dwattr $C$DW$228, DW_AT_TI_symbol_name("CH_MAP_19")
.dwattr $C$DW$228, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$228, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$228, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$228, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$228, DW_AT_decl_line(0x163)
.dwattr $C$DW$228, DW_AT_decl_column(0x0d)
$C$DW$229 .dwtag DW_TAG_member
.dwattr $C$DW$229, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$229, DW_AT_name("rsvd28")
.dwattr $C$DW$229, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$229, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$229, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$229, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$229, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$229, DW_AT_decl_line(0x164)
.dwattr $C$DW$229, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$61
.dwattr $C$DW$T$61, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$61, DW_AT_decl_line(0x15c)
.dwattr $C$DW$T$61, DW_AT_decl_column(0x13)
$C$DW$T$183 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$183, DW_AT_type(*$C$DW$T$61)
$C$DW$T$62 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$62, DW_AT_byte_size(0x04)
$C$DW$230 .dwtag DW_TAG_member
.dwattr $C$DW$230, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$230, DW_AT_name("CH_MAP_20")
.dwattr $C$DW$230, DW_AT_TI_symbol_name("CH_MAP_20")
.dwattr $C$DW$230, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$230, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$230, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$230, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$230, DW_AT_decl_line(0x16e)
.dwattr $C$DW$230, DW_AT_decl_column(0x0d)
$C$DW$231 .dwtag DW_TAG_member
.dwattr $C$DW$231, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$231, DW_AT_name("rsvd4")
.dwattr $C$DW$231, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$231, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$231, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$231, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$231, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$231, DW_AT_decl_line(0x16f)
.dwattr $C$DW$231, DW_AT_decl_column(0x0d)
$C$DW$232 .dwtag DW_TAG_member
.dwattr $C$DW$232, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$232, DW_AT_name("CH_MAP_21")
.dwattr $C$DW$232, DW_AT_TI_symbol_name("CH_MAP_21")
.dwattr $C$DW$232, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$232, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$232, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$232, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$232, DW_AT_decl_line(0x170)
.dwattr $C$DW$232, DW_AT_decl_column(0x0d)
$C$DW$233 .dwtag DW_TAG_member
.dwattr $C$DW$233, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$233, DW_AT_name("rsvd12")
.dwattr $C$DW$233, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$233, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$233, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$233, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$233, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$233, DW_AT_decl_line(0x171)
.dwattr $C$DW$233, DW_AT_decl_column(0x0d)
$C$DW$234 .dwtag DW_TAG_member
.dwattr $C$DW$234, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$234, DW_AT_name("CH_MAP_22")
.dwattr $C$DW$234, DW_AT_TI_symbol_name("CH_MAP_22")
.dwattr $C$DW$234, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$234, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$234, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$234, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$234, DW_AT_decl_line(0x172)
.dwattr $C$DW$234, DW_AT_decl_column(0x0d)
$C$DW$235 .dwtag DW_TAG_member
.dwattr $C$DW$235, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$235, DW_AT_name("rsvd20")
.dwattr $C$DW$235, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$235, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$235, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$235, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$235, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$235, DW_AT_decl_line(0x173)
.dwattr $C$DW$235, DW_AT_decl_column(0x0d)
$C$DW$236 .dwtag DW_TAG_member
.dwattr $C$DW$236, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$236, DW_AT_name("CH_MAP_23")
.dwattr $C$DW$236, DW_AT_TI_symbol_name("CH_MAP_23")
.dwattr $C$DW$236, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$236, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$236, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$236, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$236, DW_AT_decl_line(0x174)
.dwattr $C$DW$236, DW_AT_decl_column(0x0d)
$C$DW$237 .dwtag DW_TAG_member
.dwattr $C$DW$237, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$237, DW_AT_name("rsvd28")
.dwattr $C$DW$237, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$237, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$237, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$237, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$237, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$237, DW_AT_decl_line(0x175)
.dwattr $C$DW$237, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$62
.dwattr $C$DW$T$62, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$62, DW_AT_decl_line(0x16d)
.dwattr $C$DW$T$62, DW_AT_decl_column(0x13)
$C$DW$T$185 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$185, DW_AT_type(*$C$DW$T$62)
$C$DW$T$63 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$63, DW_AT_byte_size(0x04)
$C$DW$238 .dwtag DW_TAG_member
.dwattr $C$DW$238, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$238, DW_AT_name("CH_MAP_24")
.dwattr $C$DW$238, DW_AT_TI_symbol_name("CH_MAP_24")
.dwattr $C$DW$238, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$238, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$238, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$238, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$238, DW_AT_decl_line(0x17f)
.dwattr $C$DW$238, DW_AT_decl_column(0x0d)
$C$DW$239 .dwtag DW_TAG_member
.dwattr $C$DW$239, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$239, DW_AT_name("rsvd4")
.dwattr $C$DW$239, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$239, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$239, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$239, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$239, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$239, DW_AT_decl_line(0x180)
.dwattr $C$DW$239, DW_AT_decl_column(0x0d)
$C$DW$240 .dwtag DW_TAG_member
.dwattr $C$DW$240, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$240, DW_AT_name("CH_MAP_25")
.dwattr $C$DW$240, DW_AT_TI_symbol_name("CH_MAP_25")
.dwattr $C$DW$240, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$240, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$240, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$240, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$240, DW_AT_decl_line(0x181)
.dwattr $C$DW$240, DW_AT_decl_column(0x0d)
$C$DW$241 .dwtag DW_TAG_member
.dwattr $C$DW$241, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$241, DW_AT_name("rsvd12")
.dwattr $C$DW$241, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$241, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$241, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$241, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$241, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$241, DW_AT_decl_line(0x182)
.dwattr $C$DW$241, DW_AT_decl_column(0x0d)
$C$DW$242 .dwtag DW_TAG_member
.dwattr $C$DW$242, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$242, DW_AT_name("CH_MAP_26")
.dwattr $C$DW$242, DW_AT_TI_symbol_name("CH_MAP_26")
.dwattr $C$DW$242, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$242, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$242, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$242, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$242, DW_AT_decl_line(0x183)
.dwattr $C$DW$242, DW_AT_decl_column(0x0d)
$C$DW$243 .dwtag DW_TAG_member
.dwattr $C$DW$243, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$243, DW_AT_name("rsvd20")
.dwattr $C$DW$243, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$243, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$243, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$243, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$243, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$243, DW_AT_decl_line(0x184)
.dwattr $C$DW$243, DW_AT_decl_column(0x0d)
$C$DW$244 .dwtag DW_TAG_member
.dwattr $C$DW$244, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$244, DW_AT_name("CH_MAP_27")
.dwattr $C$DW$244, DW_AT_TI_symbol_name("CH_MAP_27")
.dwattr $C$DW$244, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$244, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$244, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$244, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$244, DW_AT_decl_line(0x185)
.dwattr $C$DW$244, DW_AT_decl_column(0x0d)
$C$DW$245 .dwtag DW_TAG_member
.dwattr $C$DW$245, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$245, DW_AT_name("rsvd28")
.dwattr $C$DW$245, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$245, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$245, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$245, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$245, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$245, DW_AT_decl_line(0x186)
.dwattr $C$DW$245, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$63
.dwattr $C$DW$T$63, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$63, DW_AT_decl_line(0x17e)
.dwattr $C$DW$T$63, DW_AT_decl_column(0x13)
$C$DW$T$187 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$187, DW_AT_type(*$C$DW$T$63)
$C$DW$T$64 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$64, DW_AT_byte_size(0x04)
$C$DW$246 .dwtag DW_TAG_member
.dwattr $C$DW$246, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$246, DW_AT_name("CH_MAP_28")
.dwattr $C$DW$246, DW_AT_TI_symbol_name("CH_MAP_28")
.dwattr $C$DW$246, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$246, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$246, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$246, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$246, DW_AT_decl_line(0x190)
.dwattr $C$DW$246, DW_AT_decl_column(0x0d)
$C$DW$247 .dwtag DW_TAG_member
.dwattr $C$DW$247, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$247, DW_AT_name("rsvd4")
.dwattr $C$DW$247, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$247, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$247, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$247, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$247, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$247, DW_AT_decl_line(0x191)
.dwattr $C$DW$247, DW_AT_decl_column(0x0d)
$C$DW$248 .dwtag DW_TAG_member
.dwattr $C$DW$248, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$248, DW_AT_name("CH_MAP_29")
.dwattr $C$DW$248, DW_AT_TI_symbol_name("CH_MAP_29")
.dwattr $C$DW$248, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$248, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$248, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$248, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$248, DW_AT_decl_line(0x192)
.dwattr $C$DW$248, DW_AT_decl_column(0x0d)
$C$DW$249 .dwtag DW_TAG_member
.dwattr $C$DW$249, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$249, DW_AT_name("rsvd12")
.dwattr $C$DW$249, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$249, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$249, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$249, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$249, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$249, DW_AT_decl_line(0x193)
.dwattr $C$DW$249, DW_AT_decl_column(0x0d)
$C$DW$250 .dwtag DW_TAG_member
.dwattr $C$DW$250, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$250, DW_AT_name("CH_MAP_30")
.dwattr $C$DW$250, DW_AT_TI_symbol_name("CH_MAP_30")
.dwattr $C$DW$250, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$250, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$250, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$250, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$250, DW_AT_decl_line(0x194)
.dwattr $C$DW$250, DW_AT_decl_column(0x0d)
$C$DW$251 .dwtag DW_TAG_member
.dwattr $C$DW$251, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$251, DW_AT_name("rsvd20")
.dwattr $C$DW$251, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$251, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$251, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$251, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$251, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$251, DW_AT_decl_line(0x195)
.dwattr $C$DW$251, DW_AT_decl_column(0x0d)
$C$DW$252 .dwtag DW_TAG_member
.dwattr $C$DW$252, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$252, DW_AT_name("CH_MAP_31")
.dwattr $C$DW$252, DW_AT_TI_symbol_name("CH_MAP_31")
.dwattr $C$DW$252, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$252, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$252, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$252, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$252, DW_AT_decl_line(0x196)
.dwattr $C$DW$252, DW_AT_decl_column(0x0d)
$C$DW$253 .dwtag DW_TAG_member
.dwattr $C$DW$253, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$253, DW_AT_name("rsvd28")
.dwattr $C$DW$253, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$253, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$253, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$253, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$253, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$253, DW_AT_decl_line(0x197)
.dwattr $C$DW$253, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$64
.dwattr $C$DW$T$64, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$64, DW_AT_decl_line(0x18f)
.dwattr $C$DW$T$64, DW_AT_decl_column(0x13)
$C$DW$T$189 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$189, DW_AT_type(*$C$DW$T$64)
$C$DW$T$65 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$65, DW_AT_byte_size(0x04)
$C$DW$254 .dwtag DW_TAG_member
.dwattr $C$DW$254, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$254, DW_AT_name("CH_MAP_32")
.dwattr $C$DW$254, DW_AT_TI_symbol_name("CH_MAP_32")
.dwattr $C$DW$254, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$254, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$254, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$254, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$254, DW_AT_decl_line(0x1a1)
.dwattr $C$DW$254, DW_AT_decl_column(0x0d)
$C$DW$255 .dwtag DW_TAG_member
.dwattr $C$DW$255, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$255, DW_AT_name("rsvd4")
.dwattr $C$DW$255, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$255, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$255, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$255, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$255, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$255, DW_AT_decl_line(0x1a2)
.dwattr $C$DW$255, DW_AT_decl_column(0x0d)
$C$DW$256 .dwtag DW_TAG_member
.dwattr $C$DW$256, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$256, DW_AT_name("CH_MAP_33")
.dwattr $C$DW$256, DW_AT_TI_symbol_name("CH_MAP_33")
.dwattr $C$DW$256, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$256, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$256, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$256, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$256, DW_AT_decl_line(0x1a3)
.dwattr $C$DW$256, DW_AT_decl_column(0x0d)
$C$DW$257 .dwtag DW_TAG_member
.dwattr $C$DW$257, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$257, DW_AT_name("rsvd12")
.dwattr $C$DW$257, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$257, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$257, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$257, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$257, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$257, DW_AT_decl_line(0x1a4)
.dwattr $C$DW$257, DW_AT_decl_column(0x0d)
$C$DW$258 .dwtag DW_TAG_member
.dwattr $C$DW$258, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$258, DW_AT_name("CH_MAP_34")
.dwattr $C$DW$258, DW_AT_TI_symbol_name("CH_MAP_34")
.dwattr $C$DW$258, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$258, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$258, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$258, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$258, DW_AT_decl_line(0x1a5)
.dwattr $C$DW$258, DW_AT_decl_column(0x0d)
$C$DW$259 .dwtag DW_TAG_member
.dwattr $C$DW$259, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$259, DW_AT_name("rsvd20")
.dwattr $C$DW$259, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$259, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$259, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$259, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$259, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$259, DW_AT_decl_line(0x1a6)
.dwattr $C$DW$259, DW_AT_decl_column(0x0d)
$C$DW$260 .dwtag DW_TAG_member
.dwattr $C$DW$260, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$260, DW_AT_name("CH_MAP_35")
.dwattr $C$DW$260, DW_AT_TI_symbol_name("CH_MAP_35")
.dwattr $C$DW$260, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$260, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$260, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$260, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$260, DW_AT_decl_line(0x1a7)
.dwattr $C$DW$260, DW_AT_decl_column(0x0d)
$C$DW$261 .dwtag DW_TAG_member
.dwattr $C$DW$261, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$261, DW_AT_name("rsvd28")
.dwattr $C$DW$261, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$261, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$261, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$261, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$261, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$261, DW_AT_decl_line(0x1a8)
.dwattr $C$DW$261, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$65
.dwattr $C$DW$T$65, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$65, DW_AT_decl_line(0x1a0)
.dwattr $C$DW$T$65, DW_AT_decl_column(0x13)
$C$DW$T$191 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$191, DW_AT_type(*$C$DW$T$65)
$C$DW$T$66 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$66, DW_AT_byte_size(0x04)
$C$DW$262 .dwtag DW_TAG_member
.dwattr $C$DW$262, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$262, DW_AT_name("CH_MAP_36")
.dwattr $C$DW$262, DW_AT_TI_symbol_name("CH_MAP_36")
.dwattr $C$DW$262, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$262, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$262, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$262, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$262, DW_AT_decl_line(0x1b2)
.dwattr $C$DW$262, DW_AT_decl_column(0x0d)
$C$DW$263 .dwtag DW_TAG_member
.dwattr $C$DW$263, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$263, DW_AT_name("rsvd4")
.dwattr $C$DW$263, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$263, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$263, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$263, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$263, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$263, DW_AT_decl_line(0x1b3)
.dwattr $C$DW$263, DW_AT_decl_column(0x0d)
$C$DW$264 .dwtag DW_TAG_member
.dwattr $C$DW$264, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$264, DW_AT_name("CH_MAP_37")
.dwattr $C$DW$264, DW_AT_TI_symbol_name("CH_MAP_37")
.dwattr $C$DW$264, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$264, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$264, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$264, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$264, DW_AT_decl_line(0x1b4)
.dwattr $C$DW$264, DW_AT_decl_column(0x0d)
$C$DW$265 .dwtag DW_TAG_member
.dwattr $C$DW$265, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$265, DW_AT_name("rsvd12")
.dwattr $C$DW$265, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$265, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$265, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$265, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$265, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$265, DW_AT_decl_line(0x1b5)
.dwattr $C$DW$265, DW_AT_decl_column(0x0d)
$C$DW$266 .dwtag DW_TAG_member
.dwattr $C$DW$266, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$266, DW_AT_name("CH_MAP_38")
.dwattr $C$DW$266, DW_AT_TI_symbol_name("CH_MAP_38")
.dwattr $C$DW$266, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$266, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$266, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$266, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$266, DW_AT_decl_line(0x1b6)
.dwattr $C$DW$266, DW_AT_decl_column(0x0d)
$C$DW$267 .dwtag DW_TAG_member
.dwattr $C$DW$267, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$267, DW_AT_name("rsvd20")
.dwattr $C$DW$267, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$267, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$267, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$267, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$267, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$267, DW_AT_decl_line(0x1b7)
.dwattr $C$DW$267, DW_AT_decl_column(0x0d)
$C$DW$268 .dwtag DW_TAG_member
.dwattr $C$DW$268, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$268, DW_AT_name("CH_MAP_39")
.dwattr $C$DW$268, DW_AT_TI_symbol_name("CH_MAP_39")
.dwattr $C$DW$268, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$268, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$268, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$268, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$268, DW_AT_decl_line(0x1b8)
.dwattr $C$DW$268, DW_AT_decl_column(0x0d)
$C$DW$269 .dwtag DW_TAG_member
.dwattr $C$DW$269, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$269, DW_AT_name("rsvd28")
.dwattr $C$DW$269, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$269, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$269, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$269, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$269, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$269, DW_AT_decl_line(0x1b9)
.dwattr $C$DW$269, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$66
.dwattr $C$DW$T$66, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$66, DW_AT_decl_line(0x1b1)
.dwattr $C$DW$T$66, DW_AT_decl_column(0x13)
$C$DW$T$193 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$193, DW_AT_type(*$C$DW$T$66)
$C$DW$T$67 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$67, DW_AT_byte_size(0x04)
$C$DW$270 .dwtag DW_TAG_member
.dwattr $C$DW$270, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$270, DW_AT_name("CH_MAP_40")
.dwattr $C$DW$270, DW_AT_TI_symbol_name("CH_MAP_40")
.dwattr $C$DW$270, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$270, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$270, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$270, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$270, DW_AT_decl_line(0x1c3)
.dwattr $C$DW$270, DW_AT_decl_column(0x0d)
$C$DW$271 .dwtag DW_TAG_member
.dwattr $C$DW$271, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$271, DW_AT_name("rsvd4")
.dwattr $C$DW$271, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$271, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$271, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$271, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$271, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$271, DW_AT_decl_line(0x1c4)
.dwattr $C$DW$271, DW_AT_decl_column(0x0d)
$C$DW$272 .dwtag DW_TAG_member
.dwattr $C$DW$272, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$272, DW_AT_name("CH_MAP_41")
.dwattr $C$DW$272, DW_AT_TI_symbol_name("CH_MAP_41")
.dwattr $C$DW$272, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$272, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$272, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$272, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$272, DW_AT_decl_line(0x1c5)
.dwattr $C$DW$272, DW_AT_decl_column(0x0d)
$C$DW$273 .dwtag DW_TAG_member
.dwattr $C$DW$273, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$273, DW_AT_name("rsvd12")
.dwattr $C$DW$273, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$273, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$273, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$273, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$273, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$273, DW_AT_decl_line(0x1c6)
.dwattr $C$DW$273, DW_AT_decl_column(0x0d)
$C$DW$274 .dwtag DW_TAG_member
.dwattr $C$DW$274, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$274, DW_AT_name("CH_MAP_42")
.dwattr $C$DW$274, DW_AT_TI_symbol_name("CH_MAP_42")
.dwattr $C$DW$274, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$274, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$274, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$274, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$274, DW_AT_decl_line(0x1c7)
.dwattr $C$DW$274, DW_AT_decl_column(0x0d)
$C$DW$275 .dwtag DW_TAG_member
.dwattr $C$DW$275, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$275, DW_AT_name("rsvd20")
.dwattr $C$DW$275, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$275, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$275, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$275, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$275, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$275, DW_AT_decl_line(0x1c8)
.dwattr $C$DW$275, DW_AT_decl_column(0x0d)
$C$DW$276 .dwtag DW_TAG_member
.dwattr $C$DW$276, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$276, DW_AT_name("CH_MAP_43")
.dwattr $C$DW$276, DW_AT_TI_symbol_name("CH_MAP_43")
.dwattr $C$DW$276, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$276, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$276, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$276, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$276, DW_AT_decl_line(0x1c9)
.dwattr $C$DW$276, DW_AT_decl_column(0x0d)
$C$DW$277 .dwtag DW_TAG_member
.dwattr $C$DW$277, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$277, DW_AT_name("rsvd28")
.dwattr $C$DW$277, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$277, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$277, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$277, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$277, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$277, DW_AT_decl_line(0x1ca)
.dwattr $C$DW$277, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$67
.dwattr $C$DW$T$67, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$67, DW_AT_decl_line(0x1c2)
.dwattr $C$DW$T$67, DW_AT_decl_column(0x13)
$C$DW$T$195 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$195, DW_AT_type(*$C$DW$T$67)
$C$DW$T$68 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$68, DW_AT_byte_size(0x04)
$C$DW$278 .dwtag DW_TAG_member
.dwattr $C$DW$278, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$278, DW_AT_name("CH_MAP_44")
.dwattr $C$DW$278, DW_AT_TI_symbol_name("CH_MAP_44")
.dwattr $C$DW$278, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$278, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$278, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$278, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$278, DW_AT_decl_line(0x1d4)
.dwattr $C$DW$278, DW_AT_decl_column(0x0d)
$C$DW$279 .dwtag DW_TAG_member
.dwattr $C$DW$279, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$279, DW_AT_name("rsvd4")
.dwattr $C$DW$279, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$279, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$279, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$279, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$279, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$279, DW_AT_decl_line(0x1d5)
.dwattr $C$DW$279, DW_AT_decl_column(0x0d)
$C$DW$280 .dwtag DW_TAG_member
.dwattr $C$DW$280, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$280, DW_AT_name("CH_MAP_45")
.dwattr $C$DW$280, DW_AT_TI_symbol_name("CH_MAP_45")
.dwattr $C$DW$280, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$280, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$280, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$280, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$280, DW_AT_decl_line(0x1d6)
.dwattr $C$DW$280, DW_AT_decl_column(0x0d)
$C$DW$281 .dwtag DW_TAG_member
.dwattr $C$DW$281, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$281, DW_AT_name("rsvd12")
.dwattr $C$DW$281, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$281, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$281, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$281, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$281, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$281, DW_AT_decl_line(0x1d7)
.dwattr $C$DW$281, DW_AT_decl_column(0x0d)
$C$DW$282 .dwtag DW_TAG_member
.dwattr $C$DW$282, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$282, DW_AT_name("CH_MAP_46")
.dwattr $C$DW$282, DW_AT_TI_symbol_name("CH_MAP_46")
.dwattr $C$DW$282, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$282, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$282, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$282, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$282, DW_AT_decl_line(0x1d8)
.dwattr $C$DW$282, DW_AT_decl_column(0x0d)
$C$DW$283 .dwtag DW_TAG_member
.dwattr $C$DW$283, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$283, DW_AT_name("rsvd20")
.dwattr $C$DW$283, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$283, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$283, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$283, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$283, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$283, DW_AT_decl_line(0x1d9)
.dwattr $C$DW$283, DW_AT_decl_column(0x0d)
$C$DW$284 .dwtag DW_TAG_member
.dwattr $C$DW$284, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$284, DW_AT_name("CH_MAP_47")
.dwattr $C$DW$284, DW_AT_TI_symbol_name("CH_MAP_47")
.dwattr $C$DW$284, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$284, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$284, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$284, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$284, DW_AT_decl_line(0x1da)
.dwattr $C$DW$284, DW_AT_decl_column(0x0d)
$C$DW$285 .dwtag DW_TAG_member
.dwattr $C$DW$285, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$285, DW_AT_name("rsvd28")
.dwattr $C$DW$285, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$285, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$285, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$285, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$285, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$285, DW_AT_decl_line(0x1db)
.dwattr $C$DW$285, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$68
.dwattr $C$DW$T$68, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$68, DW_AT_decl_line(0x1d3)
.dwattr $C$DW$T$68, DW_AT_decl_column(0x13)
$C$DW$T$197 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$197, DW_AT_type(*$C$DW$T$68)
$C$DW$T$69 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$69, DW_AT_byte_size(0x04)
$C$DW$286 .dwtag DW_TAG_member
.dwattr $C$DW$286, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$286, DW_AT_name("CH_MAP_48")
.dwattr $C$DW$286, DW_AT_TI_symbol_name("CH_MAP_48")
.dwattr $C$DW$286, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$286, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$286, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$286, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$286, DW_AT_decl_line(0x1e5)
.dwattr $C$DW$286, DW_AT_decl_column(0x0d)
$C$DW$287 .dwtag DW_TAG_member
.dwattr $C$DW$287, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$287, DW_AT_name("rsvd4")
.dwattr $C$DW$287, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$287, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$287, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$287, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$287, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$287, DW_AT_decl_line(0x1e6)
.dwattr $C$DW$287, DW_AT_decl_column(0x0d)
$C$DW$288 .dwtag DW_TAG_member
.dwattr $C$DW$288, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$288, DW_AT_name("CH_MAP_49")
.dwattr $C$DW$288, DW_AT_TI_symbol_name("CH_MAP_49")
.dwattr $C$DW$288, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$288, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$288, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$288, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$288, DW_AT_decl_line(0x1e7)
.dwattr $C$DW$288, DW_AT_decl_column(0x0d)
$C$DW$289 .dwtag DW_TAG_member
.dwattr $C$DW$289, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$289, DW_AT_name("rsvd12")
.dwattr $C$DW$289, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$289, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$289, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$289, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$289, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$289, DW_AT_decl_line(0x1e8)
.dwattr $C$DW$289, DW_AT_decl_column(0x0d)
$C$DW$290 .dwtag DW_TAG_member
.dwattr $C$DW$290, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$290, DW_AT_name("CH_MAP_50")
.dwattr $C$DW$290, DW_AT_TI_symbol_name("CH_MAP_50")
.dwattr $C$DW$290, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$290, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$290, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$290, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$290, DW_AT_decl_line(0x1e9)
.dwattr $C$DW$290, DW_AT_decl_column(0x0d)
$C$DW$291 .dwtag DW_TAG_member
.dwattr $C$DW$291, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$291, DW_AT_name("rsvd20")
.dwattr $C$DW$291, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$291, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$291, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$291, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$291, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$291, DW_AT_decl_line(0x1ea)
.dwattr $C$DW$291, DW_AT_decl_column(0x0d)
$C$DW$292 .dwtag DW_TAG_member
.dwattr $C$DW$292, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$292, DW_AT_name("CH_MAP_51")
.dwattr $C$DW$292, DW_AT_TI_symbol_name("CH_MAP_51")
.dwattr $C$DW$292, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$292, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$292, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$292, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$292, DW_AT_decl_line(0x1eb)
.dwattr $C$DW$292, DW_AT_decl_column(0x0d)
$C$DW$293 .dwtag DW_TAG_member
.dwattr $C$DW$293, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$293, DW_AT_name("rsvd28")
.dwattr $C$DW$293, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$293, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$293, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$293, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$293, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$293, DW_AT_decl_line(0x1ec)
.dwattr $C$DW$293, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$69
.dwattr $C$DW$T$69, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$69, DW_AT_decl_line(0x1e4)
.dwattr $C$DW$T$69, DW_AT_decl_column(0x13)
$C$DW$T$199 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$199, DW_AT_type(*$C$DW$T$69)
$C$DW$T$70 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$70, DW_AT_byte_size(0x04)
$C$DW$294 .dwtag DW_TAG_member
.dwattr $C$DW$294, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$294, DW_AT_name("CH_MAP_52")
.dwattr $C$DW$294, DW_AT_TI_symbol_name("CH_MAP_52")
.dwattr $C$DW$294, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$294, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$294, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$294, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$294, DW_AT_decl_line(0x1f6)
.dwattr $C$DW$294, DW_AT_decl_column(0x0d)
$C$DW$295 .dwtag DW_TAG_member
.dwattr $C$DW$295, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$295, DW_AT_name("rsvd4")
.dwattr $C$DW$295, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$295, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$295, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$295, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$295, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$295, DW_AT_decl_line(0x1f7)
.dwattr $C$DW$295, DW_AT_decl_column(0x0d)
$C$DW$296 .dwtag DW_TAG_member
.dwattr $C$DW$296, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$296, DW_AT_name("CH_MAP_53")
.dwattr $C$DW$296, DW_AT_TI_symbol_name("CH_MAP_53")
.dwattr $C$DW$296, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$296, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$296, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$296, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$296, DW_AT_decl_line(0x1f8)
.dwattr $C$DW$296, DW_AT_decl_column(0x0d)
$C$DW$297 .dwtag DW_TAG_member
.dwattr $C$DW$297, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$297, DW_AT_name("rsvd12")
.dwattr $C$DW$297, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$297, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$297, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$297, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$297, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$297, DW_AT_decl_line(0x1f9)
.dwattr $C$DW$297, DW_AT_decl_column(0x0d)
$C$DW$298 .dwtag DW_TAG_member
.dwattr $C$DW$298, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$298, DW_AT_name("CH_MAP_54")
.dwattr $C$DW$298, DW_AT_TI_symbol_name("CH_MAP_54")
.dwattr $C$DW$298, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$298, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$298, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$298, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$298, DW_AT_decl_line(0x1fa)
.dwattr $C$DW$298, DW_AT_decl_column(0x0d)
$C$DW$299 .dwtag DW_TAG_member
.dwattr $C$DW$299, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$299, DW_AT_name("rsvd20")
.dwattr $C$DW$299, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$299, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$299, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$299, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$299, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$299, DW_AT_decl_line(0x1fb)
.dwattr $C$DW$299, DW_AT_decl_column(0x0d)
$C$DW$300 .dwtag DW_TAG_member
.dwattr $C$DW$300, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$300, DW_AT_name("CH_MAP_55")
.dwattr $C$DW$300, DW_AT_TI_symbol_name("CH_MAP_55")
.dwattr $C$DW$300, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$300, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$300, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$300, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$300, DW_AT_decl_line(0x1fc)
.dwattr $C$DW$300, DW_AT_decl_column(0x0d)
$C$DW$301 .dwtag DW_TAG_member
.dwattr $C$DW$301, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$301, DW_AT_name("rsvd28")
.dwattr $C$DW$301, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$301, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$301, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$301, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$301, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$301, DW_AT_decl_line(0x1fd)
.dwattr $C$DW$301, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$70
.dwattr $C$DW$T$70, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$70, DW_AT_decl_line(0x1f5)
.dwattr $C$DW$T$70, DW_AT_decl_column(0x13)
$C$DW$T$201 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$201, DW_AT_type(*$C$DW$T$70)
$C$DW$T$71 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$71, DW_AT_byte_size(0x04)
$C$DW$302 .dwtag DW_TAG_member
.dwattr $C$DW$302, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$302, DW_AT_name("CH_MAP_56")
.dwattr $C$DW$302, DW_AT_TI_symbol_name("CH_MAP_56")
.dwattr $C$DW$302, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$302, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$302, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$302, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$302, DW_AT_decl_line(0x207)
.dwattr $C$DW$302, DW_AT_decl_column(0x0d)
$C$DW$303 .dwtag DW_TAG_member
.dwattr $C$DW$303, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$303, DW_AT_name("rsvd4")
.dwattr $C$DW$303, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$303, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$303, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$303, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$303, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$303, DW_AT_decl_line(0x208)
.dwattr $C$DW$303, DW_AT_decl_column(0x0d)
$C$DW$304 .dwtag DW_TAG_member
.dwattr $C$DW$304, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$304, DW_AT_name("CH_MAP_57")
.dwattr $C$DW$304, DW_AT_TI_symbol_name("CH_MAP_57")
.dwattr $C$DW$304, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$304, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$304, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$304, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$304, DW_AT_decl_line(0x209)
.dwattr $C$DW$304, DW_AT_decl_column(0x0d)
$C$DW$305 .dwtag DW_TAG_member
.dwattr $C$DW$305, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$305, DW_AT_name("rsvd12")
.dwattr $C$DW$305, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$305, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$305, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$305, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$305, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$305, DW_AT_decl_line(0x20a)
.dwattr $C$DW$305, DW_AT_decl_column(0x0d)
$C$DW$306 .dwtag DW_TAG_member
.dwattr $C$DW$306, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$306, DW_AT_name("CH_MAP_58")
.dwattr $C$DW$306, DW_AT_TI_symbol_name("CH_MAP_58")
.dwattr $C$DW$306, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$306, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$306, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$306, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$306, DW_AT_decl_line(0x20b)
.dwattr $C$DW$306, DW_AT_decl_column(0x0d)
$C$DW$307 .dwtag DW_TAG_member
.dwattr $C$DW$307, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$307, DW_AT_name("rsvd20")
.dwattr $C$DW$307, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$307, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$307, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$307, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$307, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$307, DW_AT_decl_line(0x20c)
.dwattr $C$DW$307, DW_AT_decl_column(0x0d)
$C$DW$308 .dwtag DW_TAG_member
.dwattr $C$DW$308, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$308, DW_AT_name("CH_MAP_59")
.dwattr $C$DW$308, DW_AT_TI_symbol_name("CH_MAP_59")
.dwattr $C$DW$308, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$308, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$308, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$308, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$308, DW_AT_decl_line(0x20d)
.dwattr $C$DW$308, DW_AT_decl_column(0x0d)
$C$DW$309 .dwtag DW_TAG_member
.dwattr $C$DW$309, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$309, DW_AT_name("rsvd28")
.dwattr $C$DW$309, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$309, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$309, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$309, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$309, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$309, DW_AT_decl_line(0x20e)
.dwattr $C$DW$309, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$71
.dwattr $C$DW$T$71, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$71, DW_AT_decl_line(0x206)
.dwattr $C$DW$T$71, DW_AT_decl_column(0x13)
$C$DW$T$203 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$203, DW_AT_type(*$C$DW$T$71)
$C$DW$T$72 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$72, DW_AT_byte_size(0x04)
$C$DW$310 .dwtag DW_TAG_member
.dwattr $C$DW$310, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$310, DW_AT_name("CH_MAP_60")
.dwattr $C$DW$310, DW_AT_TI_symbol_name("CH_MAP_60")
.dwattr $C$DW$310, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$310, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$310, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$310, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$310, DW_AT_decl_line(0x218)
.dwattr $C$DW$310, DW_AT_decl_column(0x0d)
$C$DW$311 .dwtag DW_TAG_member
.dwattr $C$DW$311, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$311, DW_AT_name("rsvd4")
.dwattr $C$DW$311, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$311, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$311, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$311, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$311, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$311, DW_AT_decl_line(0x219)
.dwattr $C$DW$311, DW_AT_decl_column(0x0d)
$C$DW$312 .dwtag DW_TAG_member
.dwattr $C$DW$312, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$312, DW_AT_name("CH_MAP_61")
.dwattr $C$DW$312, DW_AT_TI_symbol_name("CH_MAP_61")
.dwattr $C$DW$312, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$312, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$312, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$312, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$312, DW_AT_decl_line(0x21a)
.dwattr $C$DW$312, DW_AT_decl_column(0x0d)
$C$DW$313 .dwtag DW_TAG_member
.dwattr $C$DW$313, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$313, DW_AT_name("rsvd12")
.dwattr $C$DW$313, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$313, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$313, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$313, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$313, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$313, DW_AT_decl_line(0x21b)
.dwattr $C$DW$313, DW_AT_decl_column(0x0d)
$C$DW$314 .dwtag DW_TAG_member
.dwattr $C$DW$314, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$314, DW_AT_name("CH_MAP_62")
.dwattr $C$DW$314, DW_AT_TI_symbol_name("CH_MAP_62")
.dwattr $C$DW$314, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$314, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$314, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$314, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$314, DW_AT_decl_line(0x21c)
.dwattr $C$DW$314, DW_AT_decl_column(0x0d)
$C$DW$315 .dwtag DW_TAG_member
.dwattr $C$DW$315, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$315, DW_AT_name("rsvd20")
.dwattr $C$DW$315, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$315, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$315, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$315, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$315, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$315, DW_AT_decl_line(0x21d)
.dwattr $C$DW$315, DW_AT_decl_column(0x0d)
$C$DW$316 .dwtag DW_TAG_member
.dwattr $C$DW$316, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$316, DW_AT_name("CH_MAP_63")
.dwattr $C$DW$316, DW_AT_TI_symbol_name("CH_MAP_63")
.dwattr $C$DW$316, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$316, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$316, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$316, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$316, DW_AT_decl_line(0x21e)
.dwattr $C$DW$316, DW_AT_decl_column(0x0d)
$C$DW$317 .dwtag DW_TAG_member
.dwattr $C$DW$317, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$317, DW_AT_name("rsvd28")
.dwattr $C$DW$317, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$317, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$317, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$317, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$317, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$317, DW_AT_decl_line(0x21f)
.dwattr $C$DW$317, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$72
.dwattr $C$DW$T$72, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$72, DW_AT_decl_line(0x217)
.dwattr $C$DW$T$72, DW_AT_decl_column(0x13)
$C$DW$T$205 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$205, DW_AT_type(*$C$DW$T$72)
$C$DW$T$73 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$73, DW_AT_byte_size(0x04)
$C$DW$318 .dwtag DW_TAG_member
.dwattr $C$DW$318, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$318, DW_AT_name("HINT_MAP_0")
.dwattr $C$DW$318, DW_AT_TI_symbol_name("HINT_MAP_0")
.dwattr $C$DW$318, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$318, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$318, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$318, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$318, DW_AT_decl_line(0x22c)
.dwattr $C$DW$318, DW_AT_decl_column(0x0d)
$C$DW$319 .dwtag DW_TAG_member
.dwattr $C$DW$319, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$319, DW_AT_name("rsvd4")
.dwattr $C$DW$319, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$319, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$319, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$319, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$319, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$319, DW_AT_decl_line(0x22d)
.dwattr $C$DW$319, DW_AT_decl_column(0x0d)
$C$DW$320 .dwtag DW_TAG_member
.dwattr $C$DW$320, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$320, DW_AT_name("HINT_MAP_1")
.dwattr $C$DW$320, DW_AT_TI_symbol_name("HINT_MAP_1")
.dwattr $C$DW$320, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$320, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$320, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$320, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$320, DW_AT_decl_line(0x22e)
.dwattr $C$DW$320, DW_AT_decl_column(0x0d)
$C$DW$321 .dwtag DW_TAG_member
.dwattr $C$DW$321, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$321, DW_AT_name("rsvd12")
.dwattr $C$DW$321, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$321, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$321, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$321, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$321, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$321, DW_AT_decl_line(0x22f)
.dwattr $C$DW$321, DW_AT_decl_column(0x0d)
$C$DW$322 .dwtag DW_TAG_member
.dwattr $C$DW$322, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$322, DW_AT_name("HINT_MAP_2")
.dwattr $C$DW$322, DW_AT_TI_symbol_name("HINT_MAP_2")
.dwattr $C$DW$322, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$322, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$322, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$322, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$322, DW_AT_decl_line(0x230)
.dwattr $C$DW$322, DW_AT_decl_column(0x0d)
$C$DW$323 .dwtag DW_TAG_member
.dwattr $C$DW$323, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$323, DW_AT_name("rsvd20")
.dwattr $C$DW$323, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$323, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$323, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$323, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$323, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$323, DW_AT_decl_line(0x231)
.dwattr $C$DW$323, DW_AT_decl_column(0x0d)
$C$DW$324 .dwtag DW_TAG_member
.dwattr $C$DW$324, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$324, DW_AT_name("HINT_MAP_3")
.dwattr $C$DW$324, DW_AT_TI_symbol_name("HINT_MAP_3")
.dwattr $C$DW$324, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$324, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$324, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$324, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$324, DW_AT_decl_line(0x232)
.dwattr $C$DW$324, DW_AT_decl_column(0x0d)
$C$DW$325 .dwtag DW_TAG_member
.dwattr $C$DW$325, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$325, DW_AT_name("rsvd28")
.dwattr $C$DW$325, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$325, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$325, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$325, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$325, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$325, DW_AT_decl_line(0x233)
.dwattr $C$DW$325, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$73
.dwattr $C$DW$T$73, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$73, DW_AT_decl_line(0x22b)
.dwattr $C$DW$T$73, DW_AT_decl_column(0x13)
$C$DW$T$207 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$207, DW_AT_type(*$C$DW$T$73)
$C$DW$T$74 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$74, DW_AT_byte_size(0x04)
$C$DW$326 .dwtag DW_TAG_member
.dwattr $C$DW$326, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$326, DW_AT_name("HINT_MAP_4")
.dwattr $C$DW$326, DW_AT_TI_symbol_name("HINT_MAP_4")
.dwattr $C$DW$326, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$326, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$326, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$326, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$326, DW_AT_decl_line(0x23d)
.dwattr $C$DW$326, DW_AT_decl_column(0x0d)
$C$DW$327 .dwtag DW_TAG_member
.dwattr $C$DW$327, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$327, DW_AT_name("rsvd4")
.dwattr $C$DW$327, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$327, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$327, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$327, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$327, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$327, DW_AT_decl_line(0x23e)
.dwattr $C$DW$327, DW_AT_decl_column(0x0d)
$C$DW$328 .dwtag DW_TAG_member
.dwattr $C$DW$328, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$328, DW_AT_name("HINT_MAP_5")
.dwattr $C$DW$328, DW_AT_TI_symbol_name("HINT_MAP_5")
.dwattr $C$DW$328, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$328, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$328, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$328, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$328, DW_AT_decl_line(0x23f)
.dwattr $C$DW$328, DW_AT_decl_column(0x0d)
$C$DW$329 .dwtag DW_TAG_member
.dwattr $C$DW$329, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$329, DW_AT_name("rsvd12")
.dwattr $C$DW$329, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$329, DW_AT_bit_offset(0x10), DW_AT_bit_size(0x04)
.dwattr $C$DW$329, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$329, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$329, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$329, DW_AT_decl_line(0x240)
.dwattr $C$DW$329, DW_AT_decl_column(0x0d)
$C$DW$330 .dwtag DW_TAG_member
.dwattr $C$DW$330, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$330, DW_AT_name("HINT_MAP_6")
.dwattr $C$DW$330, DW_AT_TI_symbol_name("HINT_MAP_6")
.dwattr $C$DW$330, DW_AT_bit_offset(0x0c), DW_AT_bit_size(0x04)
.dwattr $C$DW$330, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$330, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$330, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$330, DW_AT_decl_line(0x241)
.dwattr $C$DW$330, DW_AT_decl_column(0x0d)
$C$DW$331 .dwtag DW_TAG_member
.dwattr $C$DW$331, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$331, DW_AT_name("rsvd20")
.dwattr $C$DW$331, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$331, DW_AT_bit_offset(0x08), DW_AT_bit_size(0x04)
.dwattr $C$DW$331, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$331, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$331, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$331, DW_AT_decl_line(0x242)
.dwattr $C$DW$331, DW_AT_decl_column(0x0d)
$C$DW$332 .dwtag DW_TAG_member
.dwattr $C$DW$332, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$332, DW_AT_name("HINT_MAP_7")
.dwattr $C$DW$332, DW_AT_TI_symbol_name("HINT_MAP_7")
.dwattr $C$DW$332, DW_AT_bit_offset(0x04), DW_AT_bit_size(0x04)
.dwattr $C$DW$332, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$332, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$332, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$332, DW_AT_decl_line(0x243)
.dwattr $C$DW$332, DW_AT_decl_column(0x0d)
$C$DW$333 .dwtag DW_TAG_member
.dwattr $C$DW$333, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$333, DW_AT_name("rsvd28")
.dwattr $C$DW$333, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$333, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x04)
.dwattr $C$DW$333, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$333, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$333, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$333, DW_AT_decl_line(0x244)
.dwattr $C$DW$333, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$74
.dwattr $C$DW$T$74, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$74, DW_AT_decl_line(0x23c)
.dwattr $C$DW$T$74, DW_AT_decl_column(0x13)
$C$DW$T$209 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$209, DW_AT_type(*$C$DW$T$74)
$C$DW$T$75 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$75, DW_AT_byte_size(0x04)
$C$DW$334 .dwtag DW_TAG_member
.dwattr $C$DW$334, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$334, DW_AT_name("HINT_MAP_8")
.dwattr $C$DW$334, DW_AT_TI_symbol_name("HINT_MAP_8")
.dwattr $C$DW$334, DW_AT_bit_offset(0x1c), DW_AT_bit_size(0x04)
.dwattr $C$DW$334, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$334, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$334, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$334, DW_AT_decl_line(0x24e)
.dwattr $C$DW$334, DW_AT_decl_column(0x0d)
$C$DW$335 .dwtag DW_TAG_member
.dwattr $C$DW$335, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$335, DW_AT_name("rsvd4")
.dwattr $C$DW$335, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$335, DW_AT_bit_offset(0x18), DW_AT_bit_size(0x04)
.dwattr $C$DW$335, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$335, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$335, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$335, DW_AT_decl_line(0x24f)
.dwattr $C$DW$335, DW_AT_decl_column(0x0d)
$C$DW$336 .dwtag DW_TAG_member
.dwattr $C$DW$336, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$336, DW_AT_name("HINT_MAP_9")
.dwattr $C$DW$336, DW_AT_TI_symbol_name("HINT_MAP_9")
.dwattr $C$DW$336, DW_AT_bit_offset(0x14), DW_AT_bit_size(0x04)
.dwattr $C$DW$336, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$336, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$336, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$336, DW_AT_decl_line(0x250)
.dwattr $C$DW$336, DW_AT_decl_column(0x0d)
$C$DW$337 .dwtag DW_TAG_member
.dwattr $C$DW$337, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$337, DW_AT_name("rsvd12")
.dwattr $C$DW$337, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$337, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x14)
.dwattr $C$DW$337, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$337, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$337, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$337, DW_AT_decl_line(0x251)
.dwattr $C$DW$337, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$75
.dwattr $C$DW$T$75, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$75, DW_AT_decl_line(0x24d)
.dwattr $C$DW$T$75, DW_AT_decl_column(0x13)
$C$DW$T$211 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$211, DW_AT_type(*$C$DW$T$75)
$C$DW$T$76 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$76, DW_AT_byte_size(0x04)
$C$DW$338 .dwtag DW_TAG_member
.dwattr $C$DW$338, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$338, DW_AT_name("PRI_HINT_0")
.dwattr $C$DW$338, DW_AT_TI_symbol_name("PRI_HINT_0")
.dwattr $C$DW$338, DW_AT_bit_offset(0x16), DW_AT_bit_size(0x0a)
.dwattr $C$DW$338, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$338, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$338, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$338, DW_AT_decl_line(0x25e)
.dwattr $C$DW$338, DW_AT_decl_column(0x0d)
$C$DW$339 .dwtag DW_TAG_member
.dwattr $C$DW$339, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$339, DW_AT_name("rsvd10")
.dwattr $C$DW$339, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$339, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x15)
.dwattr $C$DW$339, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$339, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$339, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$339, DW_AT_decl_line(0x25f)
.dwattr $C$DW$339, DW_AT_decl_column(0x0d)
$C$DW$340 .dwtag DW_TAG_member
.dwattr $C$DW$340, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$340, DW_AT_name("NONE_HINT_0")
.dwattr $C$DW$340, DW_AT_TI_symbol_name("NONE_HINT_0")
.dwattr $C$DW$340, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$340, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$340, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$340, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$340, DW_AT_decl_line(0x260)
.dwattr $C$DW$340, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$76
.dwattr $C$DW$T$76, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$76, DW_AT_decl_line(0x25d)
.dwattr $C$DW$T$76, DW_AT_decl_column(0x13)
$C$DW$T$213 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$213, DW_AT_type(*$C$DW$T$76)
$C$DW$T$77 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$77, DW_AT_byte_size(0x04)
$C$DW$341 .dwtag DW_TAG_member
.dwattr $C$DW$341, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$341, DW_AT_name("PRI_HINT_1")
.dwattr $C$DW$341, DW_AT_TI_symbol_name("PRI_HINT_1")
.dwattr $C$DW$341, DW_AT_bit_offset(0x16), DW_AT_bit_size(0x0a)
.dwattr $C$DW$341, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$341, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$341, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$341, DW_AT_decl_line(0x26a)
.dwattr $C$DW$341, DW_AT_decl_column(0x0d)
$C$DW$342 .dwtag DW_TAG_member
.dwattr $C$DW$342, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$342, DW_AT_name("rsvd10")
.dwattr $C$DW$342, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$342, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x15)
.dwattr $C$DW$342, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$342, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$342, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$342, DW_AT_decl_line(0x26b)
.dwattr $C$DW$342, DW_AT_decl_column(0x0d)
$C$DW$343 .dwtag DW_TAG_member
.dwattr $C$DW$343, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$343, DW_AT_name("NONE_HINT_1")
.dwattr $C$DW$343, DW_AT_TI_symbol_name("NONE_HINT_1")
.dwattr $C$DW$343, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$343, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$343, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$343, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$343, DW_AT_decl_line(0x26c)
.dwattr $C$DW$343, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$77
.dwattr $C$DW$T$77, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$77, DW_AT_decl_line(0x269)
.dwattr $C$DW$T$77, DW_AT_decl_column(0x13)
$C$DW$T$215 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$215, DW_AT_type(*$C$DW$T$77)
$C$DW$T$78 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$78, DW_AT_byte_size(0x04)
$C$DW$344 .dwtag DW_TAG_member
.dwattr $C$DW$344, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$344, DW_AT_name("PRI_HINT_2")
.dwattr $C$DW$344, DW_AT_TI_symbol_name("PRI_HINT_2")
.dwattr $C$DW$344, DW_AT_bit_offset(0x16), DW_AT_bit_size(0x0a)
.dwattr $C$DW$344, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$344, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$344, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$344, DW_AT_decl_line(0x276)
.dwattr $C$DW$344, DW_AT_decl_column(0x0d)
$C$DW$345 .dwtag DW_TAG_member
.dwattr $C$DW$345, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$345, DW_AT_name("rsvd10")
.dwattr $C$DW$345, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$345, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x15)
.dwattr $C$DW$345, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$345, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$345, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$345, DW_AT_decl_line(0x277)
.dwattr $C$DW$345, DW_AT_decl_column(0x0d)
$C$DW$346 .dwtag DW_TAG_member
.dwattr $C$DW$346, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$346, DW_AT_name("NONE_HINT_2")
.dwattr $C$DW$346, DW_AT_TI_symbol_name("NONE_HINT_2")
.dwattr $C$DW$346, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$346, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$346, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$346, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$346, DW_AT_decl_line(0x278)
.dwattr $C$DW$346, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$78
.dwattr $C$DW$T$78, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$78, DW_AT_decl_line(0x275)
.dwattr $C$DW$T$78, DW_AT_decl_column(0x13)
$C$DW$T$217 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$217, DW_AT_type(*$C$DW$T$78)
$C$DW$T$79 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$79, DW_AT_byte_size(0x04)
$C$DW$347 .dwtag DW_TAG_member
.dwattr $C$DW$347, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$347, DW_AT_name("PRI_HINT_3")
.dwattr $C$DW$347, DW_AT_TI_symbol_name("PRI_HINT_3")
.dwattr $C$DW$347, DW_AT_bit_offset(0x16), DW_AT_bit_size(0x0a)
.dwattr $C$DW$347, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$347, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$347, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$347, DW_AT_decl_line(0x282)
.dwattr $C$DW$347, DW_AT_decl_column(0x0d)
$C$DW$348 .dwtag DW_TAG_member
.dwattr $C$DW$348, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$348, DW_AT_name("rsvd10")
.dwattr $C$DW$348, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$348, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x15)
.dwattr $C$DW$348, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$348, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$348, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$348, DW_AT_decl_line(0x283)
.dwattr $C$DW$348, DW_AT_decl_column(0x0d)
$C$DW$349 .dwtag DW_TAG_member
.dwattr $C$DW$349, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$349, DW_AT_name("NONE_HINT_3")
.dwattr $C$DW$349, DW_AT_TI_symbol_name("NONE_HINT_3")
.dwattr $C$DW$349, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$349, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$349, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$349, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$349, DW_AT_decl_line(0x284)
.dwattr $C$DW$349, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$79
.dwattr $C$DW$T$79, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$79, DW_AT_decl_line(0x281)
.dwattr $C$DW$T$79, DW_AT_decl_column(0x13)
$C$DW$T$219 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$219, DW_AT_type(*$C$DW$T$79)
$C$DW$T$80 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$80, DW_AT_byte_size(0x04)
$C$DW$350 .dwtag DW_TAG_member
.dwattr $C$DW$350, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$350, DW_AT_name("PRI_HINT_4")
.dwattr $C$DW$350, DW_AT_TI_symbol_name("PRI_HINT_4")
.dwattr $C$DW$350, DW_AT_bit_offset(0x16), DW_AT_bit_size(0x0a)
.dwattr $C$DW$350, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$350, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$350, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$350, DW_AT_decl_line(0x28e)
.dwattr $C$DW$350, DW_AT_decl_column(0x0d)
$C$DW$351 .dwtag DW_TAG_member
.dwattr $C$DW$351, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$351, DW_AT_name("rsvd10")
.dwattr $C$DW$351, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$351, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x15)
.dwattr $C$DW$351, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$351, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$351, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$351, DW_AT_decl_line(0x28f)
.dwattr $C$DW$351, DW_AT_decl_column(0x0d)
$C$DW$352 .dwtag DW_TAG_member
.dwattr $C$DW$352, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$352, DW_AT_name("NONE_HINT_4")
.dwattr $C$DW$352, DW_AT_TI_symbol_name("NONE_HINT_4")
.dwattr $C$DW$352, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$352, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$352, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$352, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$352, DW_AT_decl_line(0x290)
.dwattr $C$DW$352, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$80
.dwattr $C$DW$T$80, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$80, DW_AT_decl_line(0x28d)
.dwattr $C$DW$T$80, DW_AT_decl_column(0x13)
$C$DW$T$221 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$221, DW_AT_type(*$C$DW$T$80)
$C$DW$T$81 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$81, DW_AT_byte_size(0x04)
$C$DW$353 .dwtag DW_TAG_member
.dwattr $C$DW$353, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$353, DW_AT_name("PRI_HINT_5")
.dwattr $C$DW$353, DW_AT_TI_symbol_name("PRI_HINT_5")
.dwattr $C$DW$353, DW_AT_bit_offset(0x16), DW_AT_bit_size(0x0a)
.dwattr $C$DW$353, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$353, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$353, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$353, DW_AT_decl_line(0x29a)
.dwattr $C$DW$353, DW_AT_decl_column(0x0d)
$C$DW$354 .dwtag DW_TAG_member
.dwattr $C$DW$354, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$354, DW_AT_name("rsvd10")
.dwattr $C$DW$354, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$354, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x15)
.dwattr $C$DW$354, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$354, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$354, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$354, DW_AT_decl_line(0x29b)
.dwattr $C$DW$354, DW_AT_decl_column(0x0d)
$C$DW$355 .dwtag DW_TAG_member
.dwattr $C$DW$355, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$355, DW_AT_name("NONE_HINT_5")
.dwattr $C$DW$355, DW_AT_TI_symbol_name("NONE_HINT_5")
.dwattr $C$DW$355, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$355, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$355, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$355, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$355, DW_AT_decl_line(0x29c)
.dwattr $C$DW$355, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$81
.dwattr $C$DW$T$81, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$81, DW_AT_decl_line(0x299)
.dwattr $C$DW$T$81, DW_AT_decl_column(0x13)
$C$DW$T$223 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$223, DW_AT_type(*$C$DW$T$81)
$C$DW$T$82 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$82, DW_AT_byte_size(0x04)
$C$DW$356 .dwtag DW_TAG_member
.dwattr $C$DW$356, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$356, DW_AT_name("PRI_HINT_6")
.dwattr $C$DW$356, DW_AT_TI_symbol_name("PRI_HINT_6")
.dwattr $C$DW$356, DW_AT_bit_offset(0x16), DW_AT_bit_size(0x0a)
.dwattr $C$DW$356, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$356, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$356, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$356, DW_AT_decl_line(0x2a6)
.dwattr $C$DW$356, DW_AT_decl_column(0x0d)
$C$DW$357 .dwtag DW_TAG_member
.dwattr $C$DW$357, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$357, DW_AT_name("rsvd10")
.dwattr $C$DW$357, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$357, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x15)
.dwattr $C$DW$357, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$357, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$357, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$357, DW_AT_decl_line(0x2a7)
.dwattr $C$DW$357, DW_AT_decl_column(0x0d)
$C$DW$358 .dwtag DW_TAG_member
.dwattr $C$DW$358, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$358, DW_AT_name("NONE_HINT_6")
.dwattr $C$DW$358, DW_AT_TI_symbol_name("NONE_HINT_6")
.dwattr $C$DW$358, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$358, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$358, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$358, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$358, DW_AT_decl_line(0x2a8)
.dwattr $C$DW$358, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$82
.dwattr $C$DW$T$82, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$82, DW_AT_decl_line(0x2a5)
.dwattr $C$DW$T$82, DW_AT_decl_column(0x13)
$C$DW$T$225 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$225, DW_AT_type(*$C$DW$T$82)
$C$DW$T$83 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$83, DW_AT_byte_size(0x04)
$C$DW$359 .dwtag DW_TAG_member
.dwattr $C$DW$359, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$359, DW_AT_name("PRI_HINT_7")
.dwattr $C$DW$359, DW_AT_TI_symbol_name("PRI_HINT_7")
.dwattr $C$DW$359, DW_AT_bit_offset(0x16), DW_AT_bit_size(0x0a)
.dwattr $C$DW$359, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$359, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$359, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$359, DW_AT_decl_line(0x2b2)
.dwattr $C$DW$359, DW_AT_decl_column(0x0d)
$C$DW$360 .dwtag DW_TAG_member
.dwattr $C$DW$360, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$360, DW_AT_name("rsvd10")
.dwattr $C$DW$360, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$360, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x15)
.dwattr $C$DW$360, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$360, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$360, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$360, DW_AT_decl_line(0x2b3)
.dwattr $C$DW$360, DW_AT_decl_column(0x0d)
$C$DW$361 .dwtag DW_TAG_member
.dwattr $C$DW$361, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$361, DW_AT_name("NONE_HINT_7")
.dwattr $C$DW$361, DW_AT_TI_symbol_name("NONE_HINT_7")
.dwattr $C$DW$361, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$361, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$361, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$361, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$361, DW_AT_decl_line(0x2b4)
.dwattr $C$DW$361, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$83
.dwattr $C$DW$T$83, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$83, DW_AT_decl_line(0x2b1)
.dwattr $C$DW$T$83, DW_AT_decl_column(0x13)
$C$DW$T$227 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$227, DW_AT_type(*$C$DW$T$83)
$C$DW$T$84 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$84, DW_AT_byte_size(0x04)
$C$DW$362 .dwtag DW_TAG_member
.dwattr $C$DW$362, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$362, DW_AT_name("PRI_HINT_8")
.dwattr $C$DW$362, DW_AT_TI_symbol_name("PRI_HINT_8")
.dwattr $C$DW$362, DW_AT_bit_offset(0x16), DW_AT_bit_size(0x0a)
.dwattr $C$DW$362, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$362, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$362, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$362, DW_AT_decl_line(0x2be)
.dwattr $C$DW$362, DW_AT_decl_column(0x0d)
$C$DW$363 .dwtag DW_TAG_member
.dwattr $C$DW$363, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$363, DW_AT_name("rsvd10")
.dwattr $C$DW$363, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$363, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x15)
.dwattr $C$DW$363, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$363, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$363, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$363, DW_AT_decl_line(0x2bf)
.dwattr $C$DW$363, DW_AT_decl_column(0x0d)
$C$DW$364 .dwtag DW_TAG_member
.dwattr $C$DW$364, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$364, DW_AT_name("NONE_HINT_8")
.dwattr $C$DW$364, DW_AT_TI_symbol_name("NONE_HINT_8")
.dwattr $C$DW$364, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$364, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$364, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$364, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$364, DW_AT_decl_line(0x2c0)
.dwattr $C$DW$364, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$84
.dwattr $C$DW$T$84, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$84, DW_AT_decl_line(0x2bd)
.dwattr $C$DW$T$84, DW_AT_decl_column(0x13)
$C$DW$T$229 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$229, DW_AT_type(*$C$DW$T$84)
$C$DW$T$85 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$85, DW_AT_byte_size(0x04)
$C$DW$365 .dwtag DW_TAG_member
.dwattr $C$DW$365, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$365, DW_AT_name("PRI_HINT_9")
.dwattr $C$DW$365, DW_AT_TI_symbol_name("PRI_HINT_9")
.dwattr $C$DW$365, DW_AT_bit_offset(0x16), DW_AT_bit_size(0x0a)
.dwattr $C$DW$365, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$365, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$365, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$365, DW_AT_decl_line(0x2ca)
.dwattr $C$DW$365, DW_AT_decl_column(0x0d)
$C$DW$366 .dwtag DW_TAG_member
.dwattr $C$DW$366, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$366, DW_AT_name("rsvd10")
.dwattr $C$DW$366, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$366, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x15)
.dwattr $C$DW$366, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$366, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$366, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$366, DW_AT_decl_line(0x2cb)
.dwattr $C$DW$366, DW_AT_decl_column(0x0d)
$C$DW$367 .dwtag DW_TAG_member
.dwattr $C$DW$367, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$367, DW_AT_name("NONE_HINT_9")
.dwattr $C$DW$367, DW_AT_TI_symbol_name("NONE_HINT_9")
.dwattr $C$DW$367, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$367, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$367, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$367, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$367, DW_AT_decl_line(0x2cc)
.dwattr $C$DW$367, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$85
.dwattr $C$DW$T$85, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$85, DW_AT_decl_line(0x2c9)
.dwattr $C$DW$T$85, DW_AT_decl_column(0x13)
$C$DW$T$231 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$231, DW_AT_type(*$C$DW$T$85)
$C$DW$T$86 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$86, DW_AT_byte_size(0x04)
$C$DW$368 .dwtag DW_TAG_member
.dwattr $C$DW$368, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$368, DW_AT_name("POLARITY_31_0")
.dwattr $C$DW$368, DW_AT_TI_symbol_name("POLARITY_31_0")
.dwattr $C$DW$368, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x20)
.dwattr $C$DW$368, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$368, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$368, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$368, DW_AT_decl_line(0x2d9)
.dwattr $C$DW$368, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$86
.dwattr $C$DW$T$86, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$86, DW_AT_decl_line(0x2d8)
.dwattr $C$DW$T$86, DW_AT_decl_column(0x13)
$C$DW$T$233 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$233, DW_AT_type(*$C$DW$T$86)
$C$DW$T$87 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$87, DW_AT_byte_size(0x04)
$C$DW$369 .dwtag DW_TAG_member
.dwattr $C$DW$369, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$369, DW_AT_name("POLARITY_63_32")
.dwattr $C$DW$369, DW_AT_TI_symbol_name("POLARITY_63_32")
.dwattr $C$DW$369, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x20)
.dwattr $C$DW$369, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$369, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$369, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$369, DW_AT_decl_line(0x2e3)
.dwattr $C$DW$369, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$87
.dwattr $C$DW$T$87, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$87, DW_AT_decl_line(0x2e2)
.dwattr $C$DW$T$87, DW_AT_decl_column(0x13)
$C$DW$T$235 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$235, DW_AT_type(*$C$DW$T$87)
$C$DW$T$88 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$88, DW_AT_byte_size(0x04)
$C$DW$370 .dwtag DW_TAG_member
.dwattr $C$DW$370, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$370, DW_AT_name("TYPE_31_0")
.dwattr $C$DW$370, DW_AT_TI_symbol_name("TYPE_31_0")
.dwattr $C$DW$370, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x20)
.dwattr $C$DW$370, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$370, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$370, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$370, DW_AT_decl_line(0x2f0)
.dwattr $C$DW$370, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$88
.dwattr $C$DW$T$88, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$88, DW_AT_decl_line(0x2ef)
.dwattr $C$DW$T$88, DW_AT_decl_column(0x13)
$C$DW$T$237 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$237, DW_AT_type(*$C$DW$T$88)
$C$DW$T$89 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$89, DW_AT_byte_size(0x04)
$C$DW$371 .dwtag DW_TAG_member
.dwattr $C$DW$371, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$371, DW_AT_name("TYPE_63_32")
.dwattr $C$DW$371, DW_AT_TI_symbol_name("TYPE_63_32")
.dwattr $C$DW$371, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x20)
.dwattr $C$DW$371, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$371, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$371, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$371, DW_AT_decl_line(0x2fa)
.dwattr $C$DW$371, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$89
.dwattr $C$DW$T$89, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$89, DW_AT_decl_line(0x2f9)
.dwattr $C$DW$T$89, DW_AT_decl_column(0x13)
$C$DW$T$239 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$239, DW_AT_type(*$C$DW$T$89)
$C$DW$T$90 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$90, DW_AT_byte_size(0x04)
$C$DW$372 .dwtag DW_TAG_member
.dwattr $C$DW$372, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$372, DW_AT_name("NEST_HINT_0")
.dwattr $C$DW$372, DW_AT_TI_symbol_name("NEST_HINT_0")
.dwattr $C$DW$372, DW_AT_bit_offset(0x17), DW_AT_bit_size(0x09)
.dwattr $C$DW$372, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$372, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$372, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$372, DW_AT_decl_line(0x307)
.dwattr $C$DW$372, DW_AT_decl_column(0x0d)
$C$DW$373 .dwtag DW_TAG_member
.dwattr $C$DW$373, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$373, DW_AT_name("rsvd9")
.dwattr $C$DW$373, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$373, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x16)
.dwattr $C$DW$373, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$373, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$373, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$373, DW_AT_decl_line(0x308)
.dwattr $C$DW$373, DW_AT_decl_column(0x0d)
$C$DW$374 .dwtag DW_TAG_member
.dwattr $C$DW$374, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$374, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$374, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$374, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$374, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$374, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$374, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$374, DW_AT_decl_line(0x309)
.dwattr $C$DW$374, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$90
.dwattr $C$DW$T$90, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$90, DW_AT_decl_line(0x306)
.dwattr $C$DW$T$90, DW_AT_decl_column(0x13)
$C$DW$T$241 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$241, DW_AT_type(*$C$DW$T$90)
$C$DW$T$91 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$91, DW_AT_byte_size(0x04)
$C$DW$375 .dwtag DW_TAG_member
.dwattr $C$DW$375, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$375, DW_AT_name("NEST_HINT_1")
.dwattr $C$DW$375, DW_AT_TI_symbol_name("NEST_HINT_1")
.dwattr $C$DW$375, DW_AT_bit_offset(0x17), DW_AT_bit_size(0x09)
.dwattr $C$DW$375, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$375, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$375, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$375, DW_AT_decl_line(0x313)
.dwattr $C$DW$375, DW_AT_decl_column(0x0d)
$C$DW$376 .dwtag DW_TAG_member
.dwattr $C$DW$376, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$376, DW_AT_name("rsvd9")
.dwattr $C$DW$376, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$376, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x16)
.dwattr $C$DW$376, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$376, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$376, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$376, DW_AT_decl_line(0x314)
.dwattr $C$DW$376, DW_AT_decl_column(0x0d)
$C$DW$377 .dwtag DW_TAG_member
.dwattr $C$DW$377, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$377, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$377, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$377, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$377, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$377, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$377, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$377, DW_AT_decl_line(0x315)
.dwattr $C$DW$377, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$91
.dwattr $C$DW$T$91, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$91, DW_AT_decl_line(0x312)
.dwattr $C$DW$T$91, DW_AT_decl_column(0x13)
$C$DW$T$243 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$243, DW_AT_type(*$C$DW$T$91)
$C$DW$T$92 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$92, DW_AT_byte_size(0x04)
$C$DW$378 .dwtag DW_TAG_member
.dwattr $C$DW$378, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$378, DW_AT_name("NEST_HINT_2")
.dwattr $C$DW$378, DW_AT_TI_symbol_name("NEST_HINT_2")
.dwattr $C$DW$378, DW_AT_bit_offset(0x17), DW_AT_bit_size(0x09)
.dwattr $C$DW$378, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$378, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$378, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$378, DW_AT_decl_line(0x31f)
.dwattr $C$DW$378, DW_AT_decl_column(0x0d)
$C$DW$379 .dwtag DW_TAG_member
.dwattr $C$DW$379, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$379, DW_AT_name("rsvd9")
.dwattr $C$DW$379, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$379, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x16)
.dwattr $C$DW$379, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$379, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$379, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$379, DW_AT_decl_line(0x320)
.dwattr $C$DW$379, DW_AT_decl_column(0x0d)
$C$DW$380 .dwtag DW_TAG_member
.dwattr $C$DW$380, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$380, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$380, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$380, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$380, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$380, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$380, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$380, DW_AT_decl_line(0x321)
.dwattr $C$DW$380, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$92
.dwattr $C$DW$T$92, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$92, DW_AT_decl_line(0x31e)
.dwattr $C$DW$T$92, DW_AT_decl_column(0x13)
$C$DW$T$245 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$245, DW_AT_type(*$C$DW$T$92)
$C$DW$T$93 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$93, DW_AT_byte_size(0x04)
$C$DW$381 .dwtag DW_TAG_member
.dwattr $C$DW$381, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$381, DW_AT_name("NEST_HINT_3")
.dwattr $C$DW$381, DW_AT_TI_symbol_name("NEST_HINT_3")
.dwattr $C$DW$381, DW_AT_bit_offset(0x17), DW_AT_bit_size(0x09)
.dwattr $C$DW$381, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$381, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$381, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$381, DW_AT_decl_line(0x32b)
.dwattr $C$DW$381, DW_AT_decl_column(0x0d)
$C$DW$382 .dwtag DW_TAG_member
.dwattr $C$DW$382, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$382, DW_AT_name("rsvd9")
.dwattr $C$DW$382, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$382, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x16)
.dwattr $C$DW$382, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$382, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$382, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$382, DW_AT_decl_line(0x32c)
.dwattr $C$DW$382, DW_AT_decl_column(0x0d)
$C$DW$383 .dwtag DW_TAG_member
.dwattr $C$DW$383, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$383, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$383, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$383, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$383, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$383, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$383, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$383, DW_AT_decl_line(0x32d)
.dwattr $C$DW$383, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$93
.dwattr $C$DW$T$93, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$93, DW_AT_decl_line(0x32a)
.dwattr $C$DW$T$93, DW_AT_decl_column(0x13)
$C$DW$T$247 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$247, DW_AT_type(*$C$DW$T$93)
$C$DW$T$94 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$94, DW_AT_byte_size(0x04)
$C$DW$384 .dwtag DW_TAG_member
.dwattr $C$DW$384, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$384, DW_AT_name("NEST_HINT_4")
.dwattr $C$DW$384, DW_AT_TI_symbol_name("NEST_HINT_4")
.dwattr $C$DW$384, DW_AT_bit_offset(0x17), DW_AT_bit_size(0x09)
.dwattr $C$DW$384, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$384, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$384, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$384, DW_AT_decl_line(0x337)
.dwattr $C$DW$384, DW_AT_decl_column(0x0d)
$C$DW$385 .dwtag DW_TAG_member
.dwattr $C$DW$385, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$385, DW_AT_name("rsvd9")
.dwattr $C$DW$385, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$385, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x16)
.dwattr $C$DW$385, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$385, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$385, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$385, DW_AT_decl_line(0x338)
.dwattr $C$DW$385, DW_AT_decl_column(0x0d)
$C$DW$386 .dwtag DW_TAG_member
.dwattr $C$DW$386, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$386, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$386, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$386, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$386, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$386, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$386, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$386, DW_AT_decl_line(0x339)
.dwattr $C$DW$386, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$94
.dwattr $C$DW$T$94, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$94, DW_AT_decl_line(0x336)
.dwattr $C$DW$T$94, DW_AT_decl_column(0x13)
$C$DW$T$249 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$249, DW_AT_type(*$C$DW$T$94)
$C$DW$T$95 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$95, DW_AT_byte_size(0x04)
$C$DW$387 .dwtag DW_TAG_member
.dwattr $C$DW$387, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$387, DW_AT_name("NEST_HINT_5")
.dwattr $C$DW$387, DW_AT_TI_symbol_name("NEST_HINT_5")
.dwattr $C$DW$387, DW_AT_bit_offset(0x17), DW_AT_bit_size(0x09)
.dwattr $C$DW$387, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$387, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$387, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$387, DW_AT_decl_line(0x343)
.dwattr $C$DW$387, DW_AT_decl_column(0x0d)
$C$DW$388 .dwtag DW_TAG_member
.dwattr $C$DW$388, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$388, DW_AT_name("rsvd9")
.dwattr $C$DW$388, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$388, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x16)
.dwattr $C$DW$388, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$388, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$388, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$388, DW_AT_decl_line(0x344)
.dwattr $C$DW$388, DW_AT_decl_column(0x0d)
$C$DW$389 .dwtag DW_TAG_member
.dwattr $C$DW$389, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$389, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$389, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$389, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$389, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$389, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$389, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$389, DW_AT_decl_line(0x345)
.dwattr $C$DW$389, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$95
.dwattr $C$DW$T$95, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$95, DW_AT_decl_line(0x342)
.dwattr $C$DW$T$95, DW_AT_decl_column(0x13)
$C$DW$T$251 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$251, DW_AT_type(*$C$DW$T$95)
$C$DW$T$96 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$96, DW_AT_byte_size(0x04)
$C$DW$390 .dwtag DW_TAG_member
.dwattr $C$DW$390, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$390, DW_AT_name("NEST_HINT_6")
.dwattr $C$DW$390, DW_AT_TI_symbol_name("NEST_HINT_6")
.dwattr $C$DW$390, DW_AT_bit_offset(0x17), DW_AT_bit_size(0x09)
.dwattr $C$DW$390, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$390, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$390, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$390, DW_AT_decl_line(0x34f)
.dwattr $C$DW$390, DW_AT_decl_column(0x0d)
$C$DW$391 .dwtag DW_TAG_member
.dwattr $C$DW$391, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$391, DW_AT_name("rsvd9")
.dwattr $C$DW$391, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$391, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x16)
.dwattr $C$DW$391, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$391, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$391, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$391, DW_AT_decl_line(0x350)
.dwattr $C$DW$391, DW_AT_decl_column(0x0d)
$C$DW$392 .dwtag DW_TAG_member
.dwattr $C$DW$392, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$392, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$392, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$392, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$392, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$392, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$392, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$392, DW_AT_decl_line(0x351)
.dwattr $C$DW$392, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$96
.dwattr $C$DW$T$96, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$96, DW_AT_decl_line(0x34e)
.dwattr $C$DW$T$96, DW_AT_decl_column(0x13)
$C$DW$T$253 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$253, DW_AT_type(*$C$DW$T$96)
$C$DW$T$97 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$97, DW_AT_byte_size(0x04)
$C$DW$393 .dwtag DW_TAG_member
.dwattr $C$DW$393, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$393, DW_AT_name("NEST_HINT_7")
.dwattr $C$DW$393, DW_AT_TI_symbol_name("NEST_HINT_7")
.dwattr $C$DW$393, DW_AT_bit_offset(0x17), DW_AT_bit_size(0x09)
.dwattr $C$DW$393, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$393, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$393, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$393, DW_AT_decl_line(0x35b)
.dwattr $C$DW$393, DW_AT_decl_column(0x0d)
$C$DW$394 .dwtag DW_TAG_member
.dwattr $C$DW$394, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$394, DW_AT_name("rsvd9")
.dwattr $C$DW$394, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$394, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x16)
.dwattr $C$DW$394, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$394, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$394, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$394, DW_AT_decl_line(0x35c)
.dwattr $C$DW$394, DW_AT_decl_column(0x0d)
$C$DW$395 .dwtag DW_TAG_member
.dwattr $C$DW$395, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$395, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$395, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$395, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$395, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$395, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$395, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$395, DW_AT_decl_line(0x35d)
.dwattr $C$DW$395, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$97
.dwattr $C$DW$T$97, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$97, DW_AT_decl_line(0x35a)
.dwattr $C$DW$T$97, DW_AT_decl_column(0x13)
$C$DW$T$255 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$255, DW_AT_type(*$C$DW$T$97)
$C$DW$T$98 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$98, DW_AT_byte_size(0x04)
$C$DW$396 .dwtag DW_TAG_member
.dwattr $C$DW$396, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$396, DW_AT_name("NEST_HINT_8")
.dwattr $C$DW$396, DW_AT_TI_symbol_name("NEST_HINT_8")
.dwattr $C$DW$396, DW_AT_bit_offset(0x17), DW_AT_bit_size(0x09)
.dwattr $C$DW$396, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$396, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$396, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$396, DW_AT_decl_line(0x367)
.dwattr $C$DW$396, DW_AT_decl_column(0x0d)
$C$DW$397 .dwtag DW_TAG_member
.dwattr $C$DW$397, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$397, DW_AT_name("rsvd9")
.dwattr $C$DW$397, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$397, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x16)
.dwattr $C$DW$397, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$397, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$397, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$397, DW_AT_decl_line(0x368)
.dwattr $C$DW$397, DW_AT_decl_column(0x0d)
$C$DW$398 .dwtag DW_TAG_member
.dwattr $C$DW$398, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$398, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$398, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$398, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$398, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$398, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$398, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$398, DW_AT_decl_line(0x369)
.dwattr $C$DW$398, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$98
.dwattr $C$DW$T$98, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$98, DW_AT_decl_line(0x366)
.dwattr $C$DW$T$98, DW_AT_decl_column(0x13)
$C$DW$T$257 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$257, DW_AT_type(*$C$DW$T$98)
$C$DW$T$99 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$99, DW_AT_byte_size(0x04)
$C$DW$399 .dwtag DW_TAG_member
.dwattr $C$DW$399, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$399, DW_AT_name("NEST_HINT_9")
.dwattr $C$DW$399, DW_AT_TI_symbol_name("NEST_HINT_9")
.dwattr $C$DW$399, DW_AT_bit_offset(0x17), DW_AT_bit_size(0x09)
.dwattr $C$DW$399, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$399, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$399, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$399, DW_AT_decl_line(0x373)
.dwattr $C$DW$399, DW_AT_decl_column(0x0d)
$C$DW$400 .dwtag DW_TAG_member
.dwattr $C$DW$400, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$400, DW_AT_name("rsvd9")
.dwattr $C$DW$400, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$400, DW_AT_bit_offset(0x01), DW_AT_bit_size(0x16)
.dwattr $C$DW$400, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$400, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$400, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$400, DW_AT_decl_line(0x374)
.dwattr $C$DW$400, DW_AT_decl_column(0x0d)
$C$DW$401 .dwtag DW_TAG_member
.dwattr $C$DW$401, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$401, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$401, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$401, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x01)
.dwattr $C$DW$401, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$401, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$401, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$401, DW_AT_decl_line(0x375)
.dwattr $C$DW$401, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$99
.dwattr $C$DW$T$99, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$99, DW_AT_decl_line(0x372)
.dwattr $C$DW$T$99, DW_AT_decl_column(0x13)
$C$DW$T$259 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$259, DW_AT_type(*$C$DW$T$99)
$C$DW$T$100 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$100, DW_AT_byte_size(0x04)
$C$DW$402 .dwtag DW_TAG_member
.dwattr $C$DW$402, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$402, DW_AT_name("EN_HINT")
.dwattr $C$DW$402, DW_AT_TI_symbol_name("EN_HINT")
.dwattr $C$DW$402, DW_AT_bit_offset(0x16), DW_AT_bit_size(0x0a)
.dwattr $C$DW$402, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$402, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$402, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$402, DW_AT_decl_line(0x382)
.dwattr $C$DW$402, DW_AT_decl_column(0x0d)
$C$DW$403 .dwtag DW_TAG_member
.dwattr $C$DW$403, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$403, DW_AT_name("rsvd9")
.dwattr $C$DW$403, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$403, DW_AT_bit_offset(0x00), DW_AT_bit_size(0x16)
.dwattr $C$DW$403, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$403, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$403, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$403, DW_AT_decl_line(0x383)
.dwattr $C$DW$403, DW_AT_decl_column(0x0d)
.dwendtag $C$DW$T$100
.dwattr $C$DW$T$100, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$100, DW_AT_decl_line(0x381)
.dwattr $C$DW$T$100, DW_AT_decl_column(0x13)
$C$DW$T$261 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$261, DW_AT_type(*$C$DW$T$100)
$C$DW$T$108 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$108, DW_AT_byte_size(0x1504)
$C$DW$404 .dwtag DW_TAG_member
.dwattr $C$DW$404, DW_AT_type(*$C$DW$T$138)
.dwattr $C$DW$404, DW_AT_name("$P$T13")
.dwattr $C$DW$404, DW_AT_TI_symbol_name("$P$T13")
.dwattr $C$DW$404, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$404, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$404, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$404, DW_AT_decl_line(0x29)
.dwattr $C$DW$404, DW_AT_decl_column(0x02)
$C$DW$405 .dwtag DW_TAG_member
.dwattr $C$DW$405, DW_AT_type(*$C$DW$T$140)
.dwattr $C$DW$405, DW_AT_name("$P$T14")
.dwattr $C$DW$405, DW_AT_TI_symbol_name("$P$T14")
.dwattr $C$DW$405, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$405, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$405, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$405, DW_AT_decl_line(0x39)
.dwattr $C$DW$405, DW_AT_decl_column(0x02)
$C$DW$406 .dwtag DW_TAG_member
.dwattr $C$DW$406, DW_AT_type(*$C$DW$T$34)
.dwattr $C$DW$406, DW_AT_name("rsvd8")
.dwattr $C$DW$406, DW_AT_TI_symbol_name("rsvd8")
.dwattr $C$DW$406, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$406, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$406, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$406, DW_AT_decl_line(0x44)
.dwattr $C$DW$406, DW_AT_decl_column(0x0b)
$C$DW$407 .dwtag DW_TAG_member
.dwattr $C$DW$407, DW_AT_type(*$C$DW$T$142)
.dwattr $C$DW$407, DW_AT_name("$P$T15")
.dwattr $C$DW$407, DW_AT_TI_symbol_name("$P$T15")
.dwattr $C$DW$407, DW_AT_data_member_location[DW_OP_plus_uconst 0x10]
.dwattr $C$DW$407, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$407, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$407, DW_AT_decl_line(0x48)
.dwattr $C$DW$407, DW_AT_decl_column(0x02)
$C$DW$408 .dwtag DW_TAG_member
.dwattr $C$DW$408, DW_AT_type(*$C$DW$T$34)
.dwattr $C$DW$408, DW_AT_name("rsvd14")
.dwattr $C$DW$408, DW_AT_TI_symbol_name("rsvd14")
.dwattr $C$DW$408, DW_AT_data_member_location[DW_OP_plus_uconst 0x14]
.dwattr $C$DW$408, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$408, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$408, DW_AT_decl_line(0x52)
.dwattr $C$DW$408, DW_AT_decl_column(0x0b)
$C$DW$409 .dwtag DW_TAG_member
.dwattr $C$DW$409, DW_AT_type(*$C$DW$T$144)
.dwattr $C$DW$409, DW_AT_name("$P$T16")
.dwattr $C$DW$409, DW_AT_TI_symbol_name("$P$T16")
.dwattr $C$DW$409, DW_AT_data_member_location[DW_OP_plus_uconst 0x1c]
.dwattr $C$DW$409, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$409, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$409, DW_AT_decl_line(0x56)
.dwattr $C$DW$409, DW_AT_decl_column(0x02)
$C$DW$410 .dwtag DW_TAG_member
.dwattr $C$DW$410, DW_AT_type(*$C$DW$T$146)
.dwattr $C$DW$410, DW_AT_name("$P$T17")
.dwattr $C$DW$410, DW_AT_TI_symbol_name("$P$T17")
.dwattr $C$DW$410, DW_AT_data_member_location[DW_OP_plus_uconst 0x20]
.dwattr $C$DW$410, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$410, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$410, DW_AT_decl_line(0x62)
.dwattr $C$DW$410, DW_AT_decl_column(0x02)
$C$DW$411 .dwtag DW_TAG_member
.dwattr $C$DW$411, DW_AT_type(*$C$DW$T$148)
.dwattr $C$DW$411, DW_AT_name("$P$T18")
.dwattr $C$DW$411, DW_AT_TI_symbol_name("$P$T18")
.dwattr $C$DW$411, DW_AT_data_member_location[DW_OP_plus_uconst 0x24]
.dwattr $C$DW$411, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$411, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$411, DW_AT_decl_line(0x6d)
.dwattr $C$DW$411, DW_AT_decl_column(0x02)
$C$DW$412 .dwtag DW_TAG_member
.dwattr $C$DW$412, DW_AT_type(*$C$DW$T$150)
.dwattr $C$DW$412, DW_AT_name("$P$T19")
.dwattr $C$DW$412, DW_AT_TI_symbol_name("$P$T19")
.dwattr $C$DW$412, DW_AT_data_member_location[DW_OP_plus_uconst 0x28]
.dwattr $C$DW$412, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$412, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$412, DW_AT_decl_line(0x78)
.dwattr $C$DW$412, DW_AT_decl_column(0x02)
$C$DW$413 .dwtag DW_TAG_member
.dwattr $C$DW$413, DW_AT_type(*$C$DW$T$152)
.dwattr $C$DW$413, DW_AT_name("$P$T20")
.dwattr $C$DW$413, DW_AT_TI_symbol_name("$P$T20")
.dwattr $C$DW$413, DW_AT_data_member_location[DW_OP_plus_uconst 0x2c]
.dwattr $C$DW$413, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$413, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$413, DW_AT_decl_line(0x83)
.dwattr $C$DW$413, DW_AT_decl_column(0x02)
$C$DW$414 .dwtag DW_TAG_member
.dwattr $C$DW$414, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$414, DW_AT_name("rsvd30")
.dwattr $C$DW$414, DW_AT_TI_symbol_name("rsvd30")
.dwattr $C$DW$414, DW_AT_data_member_location[DW_OP_plus_uconst 0x30]
.dwattr $C$DW$414, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$414, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$414, DW_AT_decl_line(0x8d)
.dwattr $C$DW$414, DW_AT_decl_column(0x0b)
$C$DW$415 .dwtag DW_TAG_member
.dwattr $C$DW$415, DW_AT_type(*$C$DW$T$154)
.dwattr $C$DW$415, DW_AT_name("$P$T21")
.dwattr $C$DW$415, DW_AT_TI_symbol_name("$P$T21")
.dwattr $C$DW$415, DW_AT_data_member_location[DW_OP_plus_uconst 0x34]
.dwattr $C$DW$415, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$415, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$415, DW_AT_decl_line(0x91)
.dwattr $C$DW$415, DW_AT_decl_column(0x02)
$C$DW$416 .dwtag DW_TAG_member
.dwattr $C$DW$416, DW_AT_type(*$C$DW$T$156)
.dwattr $C$DW$416, DW_AT_name("$P$T22")
.dwattr $C$DW$416, DW_AT_TI_symbol_name("$P$T22")
.dwattr $C$DW$416, DW_AT_data_member_location[DW_OP_plus_uconst 0x38]
.dwattr $C$DW$416, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$416, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$416, DW_AT_decl_line(0x9c)
.dwattr $C$DW$416, DW_AT_decl_column(0x02)
$C$DW$417 .dwtag DW_TAG_member
.dwattr $C$DW$417, DW_AT_type(*$C$DW$T$101)
.dwattr $C$DW$417, DW_AT_name("rsvd3C")
.dwattr $C$DW$417, DW_AT_TI_symbol_name("rsvd3C")
.dwattr $C$DW$417, DW_AT_data_member_location[DW_OP_plus_uconst 0x3c]
.dwattr $C$DW$417, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$417, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$417, DW_AT_decl_line(0xa6)
.dwattr $C$DW$417, DW_AT_decl_column(0x0b)
$C$DW$418 .dwtag DW_TAG_member
.dwattr $C$DW$418, DW_AT_type(*$C$DW$T$158)
.dwattr $C$DW$418, DW_AT_name("$P$T23")
.dwattr $C$DW$418, DW_AT_TI_symbol_name("$P$T23")
.dwattr $C$DW$418, DW_AT_data_member_location[DW_OP_plus_uconst 0x80]
.dwattr $C$DW$418, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$418, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$418, DW_AT_decl_line(0xaa)
.dwattr $C$DW$418, DW_AT_decl_column(0x02)
$C$DW$419 .dwtag DW_TAG_member
.dwattr $C$DW$419, DW_AT_type(*$C$DW$T$102)
.dwattr $C$DW$419, DW_AT_name("rsvd84")
.dwattr $C$DW$419, DW_AT_TI_symbol_name("rsvd84")
.dwattr $C$DW$419, DW_AT_data_member_location[DW_OP_plus_uconst 0x84]
.dwattr $C$DW$419, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$419, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$419, DW_AT_decl_line(0xb5)
.dwattr $C$DW$419, DW_AT_decl_column(0x0b)
$C$DW$420 .dwtag DW_TAG_member
.dwattr $C$DW$420, DW_AT_type(*$C$DW$T$160)
.dwattr $C$DW$420, DW_AT_name("$P$T24")
.dwattr $C$DW$420, DW_AT_TI_symbol_name("$P$T24")
.dwattr $C$DW$420, DW_AT_data_member_location[DW_OP_plus_uconst 0x200]
.dwattr $C$DW$420, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$420, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$420, DW_AT_decl_line(0xb9)
.dwattr $C$DW$420, DW_AT_decl_column(0x02)
$C$DW$421 .dwtag DW_TAG_member
.dwattr $C$DW$421, DW_AT_type(*$C$DW$T$162)
.dwattr $C$DW$421, DW_AT_name("$P$T25")
.dwattr $C$DW$421, DW_AT_TI_symbol_name("$P$T25")
.dwattr $C$DW$421, DW_AT_data_member_location[DW_OP_plus_uconst 0x204]
.dwattr $C$DW$421, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$421, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$421, DW_AT_decl_line(0xc3)
.dwattr $C$DW$421, DW_AT_decl_column(0x02)
$C$DW$422 .dwtag DW_TAG_member
.dwattr $C$DW$422, DW_AT_type(*$C$DW$T$103)
.dwattr $C$DW$422, DW_AT_name("rsvd208")
.dwattr $C$DW$422, DW_AT_TI_symbol_name("rsvd208")
.dwattr $C$DW$422, DW_AT_data_member_location[DW_OP_plus_uconst 0x208]
.dwattr $C$DW$422, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$422, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$422, DW_AT_decl_line(0xcc)
.dwattr $C$DW$422, DW_AT_decl_column(0x0b)
$C$DW$423 .dwtag DW_TAG_member
.dwattr $C$DW$423, DW_AT_type(*$C$DW$T$164)
.dwattr $C$DW$423, DW_AT_name("$P$T26")
.dwattr $C$DW$423, DW_AT_TI_symbol_name("$P$T26")
.dwattr $C$DW$423, DW_AT_data_member_location[DW_OP_plus_uconst 0x280]
.dwattr $C$DW$423, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$423, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$423, DW_AT_decl_line(0xd0)
.dwattr $C$DW$423, DW_AT_decl_column(0x02)
$C$DW$424 .dwtag DW_TAG_member
.dwattr $C$DW$424, DW_AT_type(*$C$DW$T$166)
.dwattr $C$DW$424, DW_AT_name("$P$T27")
.dwattr $C$DW$424, DW_AT_TI_symbol_name("$P$T27")
.dwattr $C$DW$424, DW_AT_data_member_location[DW_OP_plus_uconst 0x284]
.dwattr $C$DW$424, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$424, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$424, DW_AT_decl_line(0xda)
.dwattr $C$DW$424, DW_AT_decl_column(0x02)
$C$DW$425 .dwtag DW_TAG_member
.dwattr $C$DW$425, DW_AT_type(*$C$DW$T$103)
.dwattr $C$DW$425, DW_AT_name("rsvd288")
.dwattr $C$DW$425, DW_AT_TI_symbol_name("rsvd288")
.dwattr $C$DW$425, DW_AT_data_member_location[DW_OP_plus_uconst 0x288]
.dwattr $C$DW$425, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$425, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$425, DW_AT_decl_line(0xe3)
.dwattr $C$DW$425, DW_AT_decl_column(0x0b)
$C$DW$426 .dwtag DW_TAG_member
.dwattr $C$DW$426, DW_AT_type(*$C$DW$T$168)
.dwattr $C$DW$426, DW_AT_name("$P$T28")
.dwattr $C$DW$426, DW_AT_TI_symbol_name("$P$T28")
.dwattr $C$DW$426, DW_AT_data_member_location[DW_OP_plus_uconst 0x300]
.dwattr $C$DW$426, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$426, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$426, DW_AT_decl_line(0xe7)
.dwattr $C$DW$426, DW_AT_decl_column(0x02)
$C$DW$427 .dwtag DW_TAG_member
.dwattr $C$DW$427, DW_AT_type(*$C$DW$T$170)
.dwattr $C$DW$427, DW_AT_name("$P$T29")
.dwattr $C$DW$427, DW_AT_TI_symbol_name("$P$T29")
.dwattr $C$DW$427, DW_AT_data_member_location[DW_OP_plus_uconst 0x304]
.dwattr $C$DW$427, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$427, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$427, DW_AT_decl_line(0xf1)
.dwattr $C$DW$427, DW_AT_decl_column(0x02)
$C$DW$428 .dwtag DW_TAG_member
.dwattr $C$DW$428, DW_AT_type(*$C$DW$T$103)
.dwattr $C$DW$428, DW_AT_name("rsvd308")
.dwattr $C$DW$428, DW_AT_TI_symbol_name("rsvd308")
.dwattr $C$DW$428, DW_AT_data_member_location[DW_OP_plus_uconst 0x308]
.dwattr $C$DW$428, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$428, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$428, DW_AT_decl_line(0xfa)
.dwattr $C$DW$428, DW_AT_decl_column(0x0b)
$C$DW$429 .dwtag DW_TAG_member
.dwattr $C$DW$429, DW_AT_type(*$C$DW$T$172)
.dwattr $C$DW$429, DW_AT_name("$P$T30")
.dwattr $C$DW$429, DW_AT_TI_symbol_name("$P$T30")
.dwattr $C$DW$429, DW_AT_data_member_location[DW_OP_plus_uconst 0x380]
.dwattr $C$DW$429, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$429, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$429, DW_AT_decl_line(0xfe)
.dwattr $C$DW$429, DW_AT_decl_column(0x02)
$C$DW$430 .dwtag DW_TAG_member
.dwattr $C$DW$430, DW_AT_type(*$C$DW$T$174)
.dwattr $C$DW$430, DW_AT_name("$P$T31")
.dwattr $C$DW$430, DW_AT_TI_symbol_name("$P$T31")
.dwattr $C$DW$430, DW_AT_data_member_location[DW_OP_plus_uconst 0x384]
.dwattr $C$DW$430, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$430, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$430, DW_AT_decl_line(0x108)
.dwattr $C$DW$430, DW_AT_decl_column(0x02)
$C$DW$431 .dwtag DW_TAG_member
.dwattr $C$DW$431, DW_AT_type(*$C$DW$T$103)
.dwattr $C$DW$431, DW_AT_name("rsvd388")
.dwattr $C$DW$431, DW_AT_TI_symbol_name("rsvd388")
.dwattr $C$DW$431, DW_AT_data_member_location[DW_OP_plus_uconst 0x388]
.dwattr $C$DW$431, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$431, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$431, DW_AT_decl_line(0x111)
.dwattr $C$DW$431, DW_AT_decl_column(0x0b)
$C$DW$432 .dwtag DW_TAG_member
.dwattr $C$DW$432, DW_AT_type(*$C$DW$T$176)
.dwattr $C$DW$432, DW_AT_name("$P$T32")
.dwattr $C$DW$432, DW_AT_TI_symbol_name("$P$T32")
.dwattr $C$DW$432, DW_AT_data_member_location[DW_OP_plus_uconst 0x400]
.dwattr $C$DW$432, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$432, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$432, DW_AT_decl_line(0x115)
.dwattr $C$DW$432, DW_AT_decl_column(0x02)
$C$DW$433 .dwtag DW_TAG_member
.dwattr $C$DW$433, DW_AT_type(*$C$DW$T$178)
.dwattr $C$DW$433, DW_AT_name("$P$T33")
.dwattr $C$DW$433, DW_AT_TI_symbol_name("$P$T33")
.dwattr $C$DW$433, DW_AT_data_member_location[DW_OP_plus_uconst 0x404]
.dwattr $C$DW$433, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$433, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$433, DW_AT_decl_line(0x126)
.dwattr $C$DW$433, DW_AT_decl_column(0x02)
$C$DW$434 .dwtag DW_TAG_member
.dwattr $C$DW$434, DW_AT_type(*$C$DW$T$180)
.dwattr $C$DW$434, DW_AT_name("$P$T34")
.dwattr $C$DW$434, DW_AT_TI_symbol_name("$P$T34")
.dwattr $C$DW$434, DW_AT_data_member_location[DW_OP_plus_uconst 0x408]
.dwattr $C$DW$434, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$434, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$434, DW_AT_decl_line(0x137)
.dwattr $C$DW$434, DW_AT_decl_column(0x02)
$C$DW$435 .dwtag DW_TAG_member
.dwattr $C$DW$435, DW_AT_type(*$C$DW$T$182)
.dwattr $C$DW$435, DW_AT_name("$P$T35")
.dwattr $C$DW$435, DW_AT_TI_symbol_name("$P$T35")
.dwattr $C$DW$435, DW_AT_data_member_location[DW_OP_plus_uconst 0x40c]
.dwattr $C$DW$435, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$435, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$435, DW_AT_decl_line(0x148)
.dwattr $C$DW$435, DW_AT_decl_column(0x02)
$C$DW$436 .dwtag DW_TAG_member
.dwattr $C$DW$436, DW_AT_type(*$C$DW$T$184)
.dwattr $C$DW$436, DW_AT_name("$P$T36")
.dwattr $C$DW$436, DW_AT_TI_symbol_name("$P$T36")
.dwattr $C$DW$436, DW_AT_data_member_location[DW_OP_plus_uconst 0x410]
.dwattr $C$DW$436, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$436, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$436, DW_AT_decl_line(0x159)
.dwattr $C$DW$436, DW_AT_decl_column(0x02)
$C$DW$437 .dwtag DW_TAG_member
.dwattr $C$DW$437, DW_AT_type(*$C$DW$T$186)
.dwattr $C$DW$437, DW_AT_name("$P$T37")
.dwattr $C$DW$437, DW_AT_TI_symbol_name("$P$T37")
.dwattr $C$DW$437, DW_AT_data_member_location[DW_OP_plus_uconst 0x414]
.dwattr $C$DW$437, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$437, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$437, DW_AT_decl_line(0x16a)
.dwattr $C$DW$437, DW_AT_decl_column(0x02)
$C$DW$438 .dwtag DW_TAG_member
.dwattr $C$DW$438, DW_AT_type(*$C$DW$T$188)
.dwattr $C$DW$438, DW_AT_name("$P$T38")
.dwattr $C$DW$438, DW_AT_TI_symbol_name("$P$T38")
.dwattr $C$DW$438, DW_AT_data_member_location[DW_OP_plus_uconst 0x418]
.dwattr $C$DW$438, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$438, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$438, DW_AT_decl_line(0x17b)
.dwattr $C$DW$438, DW_AT_decl_column(0x02)
$C$DW$439 .dwtag DW_TAG_member
.dwattr $C$DW$439, DW_AT_type(*$C$DW$T$190)
.dwattr $C$DW$439, DW_AT_name("$P$T39")
.dwattr $C$DW$439, DW_AT_TI_symbol_name("$P$T39")
.dwattr $C$DW$439, DW_AT_data_member_location[DW_OP_plus_uconst 0x41c]
.dwattr $C$DW$439, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$439, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$439, DW_AT_decl_line(0x18c)
.dwattr $C$DW$439, DW_AT_decl_column(0x02)
$C$DW$440 .dwtag DW_TAG_member
.dwattr $C$DW$440, DW_AT_type(*$C$DW$T$192)
.dwattr $C$DW$440, DW_AT_name("$P$T40")
.dwattr $C$DW$440, DW_AT_TI_symbol_name("$P$T40")
.dwattr $C$DW$440, DW_AT_data_member_location[DW_OP_plus_uconst 0x420]
.dwattr $C$DW$440, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$440, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$440, DW_AT_decl_line(0x19d)
.dwattr $C$DW$440, DW_AT_decl_column(0x02)
$C$DW$441 .dwtag DW_TAG_member
.dwattr $C$DW$441, DW_AT_type(*$C$DW$T$194)
.dwattr $C$DW$441, DW_AT_name("$P$T41")
.dwattr $C$DW$441, DW_AT_TI_symbol_name("$P$T41")
.dwattr $C$DW$441, DW_AT_data_member_location[DW_OP_plus_uconst 0x424]
.dwattr $C$DW$441, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$441, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$441, DW_AT_decl_line(0x1ae)
.dwattr $C$DW$441, DW_AT_decl_column(0x02)
$C$DW$442 .dwtag DW_TAG_member
.dwattr $C$DW$442, DW_AT_type(*$C$DW$T$196)
.dwattr $C$DW$442, DW_AT_name("$P$T42")
.dwattr $C$DW$442, DW_AT_TI_symbol_name("$P$T42")
.dwattr $C$DW$442, DW_AT_data_member_location[DW_OP_plus_uconst 0x428]
.dwattr $C$DW$442, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$442, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$442, DW_AT_decl_line(0x1bf)
.dwattr $C$DW$442, DW_AT_decl_column(0x02)
$C$DW$443 .dwtag DW_TAG_member
.dwattr $C$DW$443, DW_AT_type(*$C$DW$T$198)
.dwattr $C$DW$443, DW_AT_name("$P$T43")
.dwattr $C$DW$443, DW_AT_TI_symbol_name("$P$T43")
.dwattr $C$DW$443, DW_AT_data_member_location[DW_OP_plus_uconst 0x42c]
.dwattr $C$DW$443, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$443, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$443, DW_AT_decl_line(0x1d0)
.dwattr $C$DW$443, DW_AT_decl_column(0x02)
$C$DW$444 .dwtag DW_TAG_member
.dwattr $C$DW$444, DW_AT_type(*$C$DW$T$200)
.dwattr $C$DW$444, DW_AT_name("$P$T44")
.dwattr $C$DW$444, DW_AT_TI_symbol_name("$P$T44")
.dwattr $C$DW$444, DW_AT_data_member_location[DW_OP_plus_uconst 0x430]
.dwattr $C$DW$444, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$444, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$444, DW_AT_decl_line(0x1e1)
.dwattr $C$DW$444, DW_AT_decl_column(0x02)
$C$DW$445 .dwtag DW_TAG_member
.dwattr $C$DW$445, DW_AT_type(*$C$DW$T$202)
.dwattr $C$DW$445, DW_AT_name("$P$T45")
.dwattr $C$DW$445, DW_AT_TI_symbol_name("$P$T45")
.dwattr $C$DW$445, DW_AT_data_member_location[DW_OP_plus_uconst 0x434]
.dwattr $C$DW$445, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$445, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$445, DW_AT_decl_line(0x1f2)
.dwattr $C$DW$445, DW_AT_decl_column(0x02)
$C$DW$446 .dwtag DW_TAG_member
.dwattr $C$DW$446, DW_AT_type(*$C$DW$T$204)
.dwattr $C$DW$446, DW_AT_name("$P$T46")
.dwattr $C$DW$446, DW_AT_TI_symbol_name("$P$T46")
.dwattr $C$DW$446, DW_AT_data_member_location[DW_OP_plus_uconst 0x438]
.dwattr $C$DW$446, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$446, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$446, DW_AT_decl_line(0x203)
.dwattr $C$DW$446, DW_AT_decl_column(0x02)
$C$DW$447 .dwtag DW_TAG_member
.dwattr $C$DW$447, DW_AT_type(*$C$DW$T$206)
.dwattr $C$DW$447, DW_AT_name("$P$T47")
.dwattr $C$DW$447, DW_AT_TI_symbol_name("$P$T47")
.dwattr $C$DW$447, DW_AT_data_member_location[DW_OP_plus_uconst 0x43c]
.dwattr $C$DW$447, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$447, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$447, DW_AT_decl_line(0x214)
.dwattr $C$DW$447, DW_AT_decl_column(0x02)
$C$DW$448 .dwtag DW_TAG_member
.dwattr $C$DW$448, DW_AT_type(*$C$DW$T$104)
.dwattr $C$DW$448, DW_AT_name("rsvd440")
.dwattr $C$DW$448, DW_AT_TI_symbol_name("rsvd440")
.dwattr $C$DW$448, DW_AT_data_member_location[DW_OP_plus_uconst 0x440]
.dwattr $C$DW$448, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$448, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$448, DW_AT_decl_line(0x224)
.dwattr $C$DW$448, DW_AT_decl_column(0x0b)
$C$DW$449 .dwtag DW_TAG_member
.dwattr $C$DW$449, DW_AT_type(*$C$DW$T$208)
.dwattr $C$DW$449, DW_AT_name("$P$T48")
.dwattr $C$DW$449, DW_AT_TI_symbol_name("$P$T48")
.dwattr $C$DW$449, DW_AT_data_member_location[DW_OP_plus_uconst 0x800]
.dwattr $C$DW$449, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$449, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$449, DW_AT_decl_line(0x228)
.dwattr $C$DW$449, DW_AT_decl_column(0x02)
$C$DW$450 .dwtag DW_TAG_member
.dwattr $C$DW$450, DW_AT_type(*$C$DW$T$210)
.dwattr $C$DW$450, DW_AT_name("$P$T49")
.dwattr $C$DW$450, DW_AT_TI_symbol_name("$P$T49")
.dwattr $C$DW$450, DW_AT_data_member_location[DW_OP_plus_uconst 0x804]
.dwattr $C$DW$450, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$450, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$450, DW_AT_decl_line(0x239)
.dwattr $C$DW$450, DW_AT_decl_column(0x02)
$C$DW$451 .dwtag DW_TAG_member
.dwattr $C$DW$451, DW_AT_type(*$C$DW$T$212)
.dwattr $C$DW$451, DW_AT_name("$P$T50")
.dwattr $C$DW$451, DW_AT_TI_symbol_name("$P$T50")
.dwattr $C$DW$451, DW_AT_data_member_location[DW_OP_plus_uconst 0x808]
.dwattr $C$DW$451, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$451, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$451, DW_AT_decl_line(0x24a)
.dwattr $C$DW$451, DW_AT_decl_column(0x02)
$C$DW$452 .dwtag DW_TAG_member
.dwattr $C$DW$452, DW_AT_type(*$C$DW$T$105)
.dwattr $C$DW$452, DW_AT_name("rsvd80C")
.dwattr $C$DW$452, DW_AT_TI_symbol_name("rsvd80C")
.dwattr $C$DW$452, DW_AT_data_member_location[DW_OP_plus_uconst 0x80c]
.dwattr $C$DW$452, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$452, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$452, DW_AT_decl_line(0x256)
.dwattr $C$DW$452, DW_AT_decl_column(0x0b)
$C$DW$453 .dwtag DW_TAG_member
.dwattr $C$DW$453, DW_AT_type(*$C$DW$T$214)
.dwattr $C$DW$453, DW_AT_name("$P$T51")
.dwattr $C$DW$453, DW_AT_TI_symbol_name("$P$T51")
.dwattr $C$DW$453, DW_AT_data_member_location[DW_OP_plus_uconst 0x900]
.dwattr $C$DW$453, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$453, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$453, DW_AT_decl_line(0x25a)
.dwattr $C$DW$453, DW_AT_decl_column(0x02)
$C$DW$454 .dwtag DW_TAG_member
.dwattr $C$DW$454, DW_AT_type(*$C$DW$T$216)
.dwattr $C$DW$454, DW_AT_name("$P$T52")
.dwattr $C$DW$454, DW_AT_TI_symbol_name("$P$T52")
.dwattr $C$DW$454, DW_AT_data_member_location[DW_OP_plus_uconst 0x904]
.dwattr $C$DW$454, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$454, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$454, DW_AT_decl_line(0x266)
.dwattr $C$DW$454, DW_AT_decl_column(0x02)
$C$DW$455 .dwtag DW_TAG_member
.dwattr $C$DW$455, DW_AT_type(*$C$DW$T$218)
.dwattr $C$DW$455, DW_AT_name("$P$T53")
.dwattr $C$DW$455, DW_AT_TI_symbol_name("$P$T53")
.dwattr $C$DW$455, DW_AT_data_member_location[DW_OP_plus_uconst 0x908]
.dwattr $C$DW$455, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$455, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$455, DW_AT_decl_line(0x272)
.dwattr $C$DW$455, DW_AT_decl_column(0x02)
$C$DW$456 .dwtag DW_TAG_member
.dwattr $C$DW$456, DW_AT_type(*$C$DW$T$220)
.dwattr $C$DW$456, DW_AT_name("$P$T54")
.dwattr $C$DW$456, DW_AT_TI_symbol_name("$P$T54")
.dwattr $C$DW$456, DW_AT_data_member_location[DW_OP_plus_uconst 0x90c]
.dwattr $C$DW$456, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$456, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$456, DW_AT_decl_line(0x27e)
.dwattr $C$DW$456, DW_AT_decl_column(0x02)
$C$DW$457 .dwtag DW_TAG_member
.dwattr $C$DW$457, DW_AT_type(*$C$DW$T$222)
.dwattr $C$DW$457, DW_AT_name("$P$T55")
.dwattr $C$DW$457, DW_AT_TI_symbol_name("$P$T55")
.dwattr $C$DW$457, DW_AT_data_member_location[DW_OP_plus_uconst 0x910]
.dwattr $C$DW$457, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$457, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$457, DW_AT_decl_line(0x28a)
.dwattr $C$DW$457, DW_AT_decl_column(0x02)
$C$DW$458 .dwtag DW_TAG_member
.dwattr $C$DW$458, DW_AT_type(*$C$DW$T$224)
.dwattr $C$DW$458, DW_AT_name("$P$T56")
.dwattr $C$DW$458, DW_AT_TI_symbol_name("$P$T56")
.dwattr $C$DW$458, DW_AT_data_member_location[DW_OP_plus_uconst 0x914]
.dwattr $C$DW$458, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$458, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$458, DW_AT_decl_line(0x296)
.dwattr $C$DW$458, DW_AT_decl_column(0x02)
$C$DW$459 .dwtag DW_TAG_member
.dwattr $C$DW$459, DW_AT_type(*$C$DW$T$226)
.dwattr $C$DW$459, DW_AT_name("$P$T57")
.dwattr $C$DW$459, DW_AT_TI_symbol_name("$P$T57")
.dwattr $C$DW$459, DW_AT_data_member_location[DW_OP_plus_uconst 0x918]
.dwattr $C$DW$459, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$459, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$459, DW_AT_decl_line(0x2a2)
.dwattr $C$DW$459, DW_AT_decl_column(0x02)
$C$DW$460 .dwtag DW_TAG_member
.dwattr $C$DW$460, DW_AT_type(*$C$DW$T$228)
.dwattr $C$DW$460, DW_AT_name("$P$T58")
.dwattr $C$DW$460, DW_AT_TI_symbol_name("$P$T58")
.dwattr $C$DW$460, DW_AT_data_member_location[DW_OP_plus_uconst 0x91c]
.dwattr $C$DW$460, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$460, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$460, DW_AT_decl_line(0x2ae)
.dwattr $C$DW$460, DW_AT_decl_column(0x02)
$C$DW$461 .dwtag DW_TAG_member
.dwattr $C$DW$461, DW_AT_type(*$C$DW$T$230)
.dwattr $C$DW$461, DW_AT_name("$P$T59")
.dwattr $C$DW$461, DW_AT_TI_symbol_name("$P$T59")
.dwattr $C$DW$461, DW_AT_data_member_location[DW_OP_plus_uconst 0x920]
.dwattr $C$DW$461, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$461, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$461, DW_AT_decl_line(0x2ba)
.dwattr $C$DW$461, DW_AT_decl_column(0x02)
$C$DW$462 .dwtag DW_TAG_member
.dwattr $C$DW$462, DW_AT_type(*$C$DW$T$232)
.dwattr $C$DW$462, DW_AT_name("$P$T60")
.dwattr $C$DW$462, DW_AT_TI_symbol_name("$P$T60")
.dwattr $C$DW$462, DW_AT_data_member_location[DW_OP_plus_uconst 0x924]
.dwattr $C$DW$462, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$462, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$462, DW_AT_decl_line(0x2c6)
.dwattr $C$DW$462, DW_AT_decl_column(0x02)
$C$DW$463 .dwtag DW_TAG_member
.dwattr $C$DW$463, DW_AT_type(*$C$DW$T$106)
.dwattr $C$DW$463, DW_AT_name("rsvd928")
.dwattr $C$DW$463, DW_AT_TI_symbol_name("rsvd928")
.dwattr $C$DW$463, DW_AT_data_member_location[DW_OP_plus_uconst 0x928]
.dwattr $C$DW$463, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$463, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$463, DW_AT_decl_line(0x2d1)
.dwattr $C$DW$463, DW_AT_decl_column(0x0b)
$C$DW$464 .dwtag DW_TAG_member
.dwattr $C$DW$464, DW_AT_type(*$C$DW$T$234)
.dwattr $C$DW$464, DW_AT_name("$P$T61")
.dwattr $C$DW$464, DW_AT_TI_symbol_name("$P$T61")
.dwattr $C$DW$464, DW_AT_data_member_location[DW_OP_plus_uconst 0xd00]
.dwattr $C$DW$464, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$464, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$464, DW_AT_decl_line(0x2d5)
.dwattr $C$DW$464, DW_AT_decl_column(0x02)
$C$DW$465 .dwtag DW_TAG_member
.dwattr $C$DW$465, DW_AT_type(*$C$DW$T$236)
.dwattr $C$DW$465, DW_AT_name("$P$T62")
.dwattr $C$DW$465, DW_AT_TI_symbol_name("$P$T62")
.dwattr $C$DW$465, DW_AT_data_member_location[DW_OP_plus_uconst 0xd04]
.dwattr $C$DW$465, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$465, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$465, DW_AT_decl_line(0x2df)
.dwattr $C$DW$465, DW_AT_decl_column(0x02)
$C$DW$466 .dwtag DW_TAG_member
.dwattr $C$DW$466, DW_AT_type(*$C$DW$T$103)
.dwattr $C$DW$466, DW_AT_name("rsvdD08")
.dwattr $C$DW$466, DW_AT_TI_symbol_name("rsvdD08")
.dwattr $C$DW$466, DW_AT_data_member_location[DW_OP_plus_uconst 0xd08]
.dwattr $C$DW$466, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$466, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$466, DW_AT_decl_line(0x2e8)
.dwattr $C$DW$466, DW_AT_decl_column(0x0b)
$C$DW$467 .dwtag DW_TAG_member
.dwattr $C$DW$467, DW_AT_type(*$C$DW$T$238)
.dwattr $C$DW$467, DW_AT_name("$P$T63")
.dwattr $C$DW$467, DW_AT_TI_symbol_name("$P$T63")
.dwattr $C$DW$467, DW_AT_data_member_location[DW_OP_plus_uconst 0xd80]
.dwattr $C$DW$467, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$467, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$467, DW_AT_decl_line(0x2ec)
.dwattr $C$DW$467, DW_AT_decl_column(0x02)
$C$DW$468 .dwtag DW_TAG_member
.dwattr $C$DW$468, DW_AT_type(*$C$DW$T$240)
.dwattr $C$DW$468, DW_AT_name("$P$T64")
.dwattr $C$DW$468, DW_AT_TI_symbol_name("$P$T64")
.dwattr $C$DW$468, DW_AT_data_member_location[DW_OP_plus_uconst 0xd84]
.dwattr $C$DW$468, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$468, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$468, DW_AT_decl_line(0x2f6)
.dwattr $C$DW$468, DW_AT_decl_column(0x02)
$C$DW$469 .dwtag DW_TAG_member
.dwattr $C$DW$469, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$469, DW_AT_name("rsvdD84")
.dwattr $C$DW$469, DW_AT_TI_symbol_name("rsvdD84")
.dwattr $C$DW$469, DW_AT_data_member_location[DW_OP_plus_uconst 0xd88]
.dwattr $C$DW$469, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$469, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$469, DW_AT_decl_line(0x2ff)
.dwattr $C$DW$469, DW_AT_decl_column(0x0b)
$C$DW$470 .dwtag DW_TAG_member
.dwattr $C$DW$470, DW_AT_type(*$C$DW$T$242)
.dwattr $C$DW$470, DW_AT_name("$P$T65")
.dwattr $C$DW$470, DW_AT_TI_symbol_name("$P$T65")
.dwattr $C$DW$470, DW_AT_data_member_location[DW_OP_plus_uconst 0x1100]
.dwattr $C$DW$470, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$470, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$470, DW_AT_decl_line(0x303)
.dwattr $C$DW$470, DW_AT_decl_column(0x02)
$C$DW$471 .dwtag DW_TAG_member
.dwattr $C$DW$471, DW_AT_type(*$C$DW$T$244)
.dwattr $C$DW$471, DW_AT_name("$P$T66")
.dwattr $C$DW$471, DW_AT_TI_symbol_name("$P$T66")
.dwattr $C$DW$471, DW_AT_data_member_location[DW_OP_plus_uconst 0x1104]
.dwattr $C$DW$471, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$471, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$471, DW_AT_decl_line(0x30f)
.dwattr $C$DW$471, DW_AT_decl_column(0x02)
$C$DW$472 .dwtag DW_TAG_member
.dwattr $C$DW$472, DW_AT_type(*$C$DW$T$246)
.dwattr $C$DW$472, DW_AT_name("$P$T67")
.dwattr $C$DW$472, DW_AT_TI_symbol_name("$P$T67")
.dwattr $C$DW$472, DW_AT_data_member_location[DW_OP_plus_uconst 0x1108]
.dwattr $C$DW$472, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$472, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$472, DW_AT_decl_line(0x31b)
.dwattr $C$DW$472, DW_AT_decl_column(0x02)
$C$DW$473 .dwtag DW_TAG_member
.dwattr $C$DW$473, DW_AT_type(*$C$DW$T$248)
.dwattr $C$DW$473, DW_AT_name("$P$T68")
.dwattr $C$DW$473, DW_AT_TI_symbol_name("$P$T68")
.dwattr $C$DW$473, DW_AT_data_member_location[DW_OP_plus_uconst 0x110c]
.dwattr $C$DW$473, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$473, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$473, DW_AT_decl_line(0x327)
.dwattr $C$DW$473, DW_AT_decl_column(0x02)
$C$DW$474 .dwtag DW_TAG_member
.dwattr $C$DW$474, DW_AT_type(*$C$DW$T$250)
.dwattr $C$DW$474, DW_AT_name("$P$T69")
.dwattr $C$DW$474, DW_AT_TI_symbol_name("$P$T69")
.dwattr $C$DW$474, DW_AT_data_member_location[DW_OP_plus_uconst 0x1110]
.dwattr $C$DW$474, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$474, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$474, DW_AT_decl_line(0x333)
.dwattr $C$DW$474, DW_AT_decl_column(0x02)
$C$DW$475 .dwtag DW_TAG_member
.dwattr $C$DW$475, DW_AT_type(*$C$DW$T$252)
.dwattr $C$DW$475, DW_AT_name("$P$T70")
.dwattr $C$DW$475, DW_AT_TI_symbol_name("$P$T70")
.dwattr $C$DW$475, DW_AT_data_member_location[DW_OP_plus_uconst 0x1114]
.dwattr $C$DW$475, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$475, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$475, DW_AT_decl_line(0x33f)
.dwattr $C$DW$475, DW_AT_decl_column(0x02)
$C$DW$476 .dwtag DW_TAG_member
.dwattr $C$DW$476, DW_AT_type(*$C$DW$T$254)
.dwattr $C$DW$476, DW_AT_name("$P$T71")
.dwattr $C$DW$476, DW_AT_TI_symbol_name("$P$T71")
.dwattr $C$DW$476, DW_AT_data_member_location[DW_OP_plus_uconst 0x1118]
.dwattr $C$DW$476, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$476, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$476, DW_AT_decl_line(0x34b)
.dwattr $C$DW$476, DW_AT_decl_column(0x02)
$C$DW$477 .dwtag DW_TAG_member
.dwattr $C$DW$477, DW_AT_type(*$C$DW$T$256)
.dwattr $C$DW$477, DW_AT_name("$P$T72")
.dwattr $C$DW$477, DW_AT_TI_symbol_name("$P$T72")
.dwattr $C$DW$477, DW_AT_data_member_location[DW_OP_plus_uconst 0x111c]
.dwattr $C$DW$477, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$477, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$477, DW_AT_decl_line(0x357)
.dwattr $C$DW$477, DW_AT_decl_column(0x02)
$C$DW$478 .dwtag DW_TAG_member
.dwattr $C$DW$478, DW_AT_type(*$C$DW$T$258)
.dwattr $C$DW$478, DW_AT_name("$P$T73")
.dwattr $C$DW$478, DW_AT_TI_symbol_name("$P$T73")
.dwattr $C$DW$478, DW_AT_data_member_location[DW_OP_plus_uconst 0x1120]
.dwattr $C$DW$478, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$478, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$478, DW_AT_decl_line(0x363)
.dwattr $C$DW$478, DW_AT_decl_column(0x02)
$C$DW$479 .dwtag DW_TAG_member
.dwattr $C$DW$479, DW_AT_type(*$C$DW$T$260)
.dwattr $C$DW$479, DW_AT_name("$P$T74")
.dwattr $C$DW$479, DW_AT_TI_symbol_name("$P$T74")
.dwattr $C$DW$479, DW_AT_data_member_location[DW_OP_plus_uconst 0x1124]
.dwattr $C$DW$479, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$479, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$479, DW_AT_decl_line(0x36f)
.dwattr $C$DW$479, DW_AT_decl_column(0x02)
$C$DW$480 .dwtag DW_TAG_member
.dwattr $C$DW$480, DW_AT_type(*$C$DW$T$106)
.dwattr $C$DW$480, DW_AT_name("rsvd1128")
.dwattr $C$DW$480, DW_AT_TI_symbol_name("rsvd1128")
.dwattr $C$DW$480, DW_AT_data_member_location[DW_OP_plus_uconst 0x1128]
.dwattr $C$DW$480, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$480, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$480, DW_AT_decl_line(0x37a)
.dwattr $C$DW$480, DW_AT_decl_column(0x0b)
$C$DW$481 .dwtag DW_TAG_member
.dwattr $C$DW$481, DW_AT_type(*$C$DW$T$262)
.dwattr $C$DW$481, DW_AT_name("$P$T75")
.dwattr $C$DW$481, DW_AT_TI_symbol_name("$P$T75")
.dwattr $C$DW$481, DW_AT_data_member_location[DW_OP_plus_uconst 0x1500]
.dwattr $C$DW$481, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$481, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$481, DW_AT_decl_line(0x37e)
.dwattr $C$DW$481, DW_AT_decl_column(0x02)
.dwendtag $C$DW$T$108
.dwattr $C$DW$T$108, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$108, DW_AT_decl_line(0x26)
.dwattr $C$DW$T$108, DW_AT_decl_column(0x10)
$C$DW$T$297 .dwtag DW_TAG_typedef, DW_AT_name("pruIntc")
.dwattr $C$DW$T$297, DW_AT_type(*$C$DW$T$108)
.dwattr $C$DW$T$297, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$297, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$297, DW_AT_decl_line(0x387)
.dwattr $C$DW$T$297, DW_AT_decl_column(0x03)
$C$DW$T$298 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$298, DW_AT_type(*$C$DW$T$297)
$C$DW$T$111 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$111, DW_AT_byte_size(0x04)
$C$DW$482 .dwtag DW_TAG_member
.dwattr $C$DW$482, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$482, DW_AT_name("REVID")
.dwattr $C$DW$482, DW_AT_TI_symbol_name("REVID")
.dwattr $C$DW$482, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$482, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$482, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$482, DW_AT_decl_line(0x2a)
.dwattr $C$DW$482, DW_AT_decl_column(0x15)
$C$DW$483 .dwtag DW_TAG_member
.dwattr $C$DW$483, DW_AT_type(*$C$DW$T$110)
.dwattr $C$DW$483, DW_AT_name("REVID_bit")
.dwattr $C$DW$483, DW_AT_TI_symbol_name("REVID_bit")
.dwattr $C$DW$483, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$483, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$483, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$483, DW_AT_decl_line(0x2e)
.dwattr $C$DW$483, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$111
.dwattr $C$DW$T$111, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$111, DW_AT_decl_line(0x29)
.dwattr $C$DW$T$111, DW_AT_decl_column(0x08)
$C$DW$T$113 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$113, DW_AT_byte_size(0x04)
$C$DW$484 .dwtag DW_TAG_member
.dwattr $C$DW$484, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$484, DW_AT_name("SYSCFG")
.dwattr $C$DW$484, DW_AT_TI_symbol_name("SYSCFG")
.dwattr $C$DW$484, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$484, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$484, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$484, DW_AT_decl_line(0x34)
.dwattr $C$DW$484, DW_AT_decl_column(0x15)
$C$DW$485 .dwtag DW_TAG_member
.dwattr $C$DW$485, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$485, DW_AT_name("SYSCFG_bit")
.dwattr $C$DW$485, DW_AT_TI_symbol_name("SYSCFG_bit")
.dwattr $C$DW$485, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$485, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$485, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$485, DW_AT_decl_line(0x3c)
.dwattr $C$DW$485, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$113
.dwattr $C$DW$T$113, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$113, DW_AT_decl_line(0x33)
.dwattr $C$DW$T$113, DW_AT_decl_column(0x08)
$C$DW$T$115 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$115, DW_AT_byte_size(0x04)
$C$DW$486 .dwtag DW_TAG_member
.dwattr $C$DW$486, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$486, DW_AT_name("GPCFG0")
.dwattr $C$DW$486, DW_AT_TI_symbol_name("GPCFG0")
.dwattr $C$DW$486, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$486, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$486, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$486, DW_AT_decl_line(0x42)
.dwattr $C$DW$486, DW_AT_decl_column(0x15)
$C$DW$487 .dwtag DW_TAG_member
.dwattr $C$DW$487, DW_AT_type(*$C$DW$T$114)
.dwattr $C$DW$487, DW_AT_name("GPCFG0_bit")
.dwattr $C$DW$487, DW_AT_TI_symbol_name("GPCFG0_bit")
.dwattr $C$DW$487, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$487, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$487, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$487, DW_AT_decl_line(0x4f)
.dwattr $C$DW$487, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$115
.dwattr $C$DW$T$115, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$115, DW_AT_decl_line(0x41)
.dwattr $C$DW$T$115, DW_AT_decl_column(0x08)
$C$DW$T$117 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$117, DW_AT_byte_size(0x04)
$C$DW$488 .dwtag DW_TAG_member
.dwattr $C$DW$488, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$488, DW_AT_name("GPCFG1")
.dwattr $C$DW$488, DW_AT_TI_symbol_name("GPCFG1")
.dwattr $C$DW$488, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$488, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$488, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$488, DW_AT_decl_line(0x55)
.dwattr $C$DW$488, DW_AT_decl_column(0x15)
$C$DW$489 .dwtag DW_TAG_member
.dwattr $C$DW$489, DW_AT_type(*$C$DW$T$116)
.dwattr $C$DW$489, DW_AT_name("GPCFG1_bit")
.dwattr $C$DW$489, DW_AT_TI_symbol_name("GPCFG1_bit")
.dwattr $C$DW$489, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$489, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$489, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$489, DW_AT_decl_line(0x62)
.dwattr $C$DW$489, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$117
.dwattr $C$DW$T$117, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$117, DW_AT_decl_line(0x54)
.dwattr $C$DW$T$117, DW_AT_decl_column(0x08)
$C$DW$T$119 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$119, DW_AT_byte_size(0x04)
$C$DW$490 .dwtag DW_TAG_member
.dwattr $C$DW$490, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$490, DW_AT_name("CGR")
.dwattr $C$DW$490, DW_AT_TI_symbol_name("CGR")
.dwattr $C$DW$490, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$490, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$490, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$490, DW_AT_decl_line(0x68)
.dwattr $C$DW$490, DW_AT_decl_column(0x15)
$C$DW$491 .dwtag DW_TAG_member
.dwattr $C$DW$491, DW_AT_type(*$C$DW$T$118)
.dwattr $C$DW$491, DW_AT_name("CGR_bit")
.dwattr $C$DW$491, DW_AT_TI_symbol_name("CGR_bit")
.dwattr $C$DW$491, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$491, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$491, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$491, DW_AT_decl_line(0x7e)
.dwattr $C$DW$491, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$119
.dwattr $C$DW$T$119, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$119, DW_AT_decl_line(0x67)
.dwattr $C$DW$T$119, DW_AT_decl_column(0x08)
$C$DW$T$121 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$121, DW_AT_byte_size(0x04)
$C$DW$492 .dwtag DW_TAG_member
.dwattr $C$DW$492, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$492, DW_AT_name("ISRP")
.dwattr $C$DW$492, DW_AT_TI_symbol_name("ISRP")
.dwattr $C$DW$492, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$492, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$492, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$492, DW_AT_decl_line(0x84)
.dwattr $C$DW$492, DW_AT_decl_column(0x15)
$C$DW$493 .dwtag DW_TAG_member
.dwattr $C$DW$493, DW_AT_type(*$C$DW$T$120)
.dwattr $C$DW$493, DW_AT_name("ISRP_bit")
.dwattr $C$DW$493, DW_AT_TI_symbol_name("ISRP_bit")
.dwattr $C$DW$493, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$493, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$493, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$493, DW_AT_decl_line(0x8d)
.dwattr $C$DW$493, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$121
.dwattr $C$DW$T$121, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$121, DW_AT_decl_line(0x83)
.dwattr $C$DW$T$121, DW_AT_decl_column(0x08)
$C$DW$T$123 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$123, DW_AT_byte_size(0x04)
$C$DW$494 .dwtag DW_TAG_member
.dwattr $C$DW$494, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$494, DW_AT_name("ISP")
.dwattr $C$DW$494, DW_AT_TI_symbol_name("ISP")
.dwattr $C$DW$494, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$494, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$494, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$494, DW_AT_decl_line(0x93)
.dwattr $C$DW$494, DW_AT_decl_column(0x15)
$C$DW$495 .dwtag DW_TAG_member
.dwattr $C$DW$495, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$495, DW_AT_name("ISP_bit")
.dwattr $C$DW$495, DW_AT_TI_symbol_name("ISP_bit")
.dwattr $C$DW$495, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$495, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$495, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$495, DW_AT_decl_line(0x9c)
.dwattr $C$DW$495, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$123
.dwattr $C$DW$T$123, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$123, DW_AT_decl_line(0x92)
.dwattr $C$DW$T$123, DW_AT_decl_column(0x08)
$C$DW$T$125 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$125, DW_AT_byte_size(0x04)
$C$DW$496 .dwtag DW_TAG_member
.dwattr $C$DW$496, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$496, DW_AT_name("IESP")
.dwattr $C$DW$496, DW_AT_TI_symbol_name("IESP")
.dwattr $C$DW$496, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$496, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$496, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$496, DW_AT_decl_line(0xa1)
.dwattr $C$DW$496, DW_AT_decl_column(0x15)
$C$DW$497 .dwtag DW_TAG_member
.dwattr $C$DW$497, DW_AT_type(*$C$DW$T$124)
.dwattr $C$DW$497, DW_AT_name("IESP_bit")
.dwattr $C$DW$497, DW_AT_TI_symbol_name("IESP_bit")
.dwattr $C$DW$497, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$497, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$497, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$497, DW_AT_decl_line(0xaa)
.dwattr $C$DW$497, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$125
.dwattr $C$DW$T$125, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$125, DW_AT_decl_line(0xa0)
.dwattr $C$DW$T$125, DW_AT_decl_column(0x08)
$C$DW$T$127 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$127, DW_AT_byte_size(0x04)
$C$DW$498 .dwtag DW_TAG_member
.dwattr $C$DW$498, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$498, DW_AT_name("IECP")
.dwattr $C$DW$498, DW_AT_TI_symbol_name("IECP")
.dwattr $C$DW$498, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$498, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$498, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$498, DW_AT_decl_line(0xb0)
.dwattr $C$DW$498, DW_AT_decl_column(0x15)
$C$DW$499 .dwtag DW_TAG_member
.dwattr $C$DW$499, DW_AT_type(*$C$DW$T$126)
.dwattr $C$DW$499, DW_AT_name("IECP_bit")
.dwattr $C$DW$499, DW_AT_TI_symbol_name("IECP_bit")
.dwattr $C$DW$499, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$499, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$499, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$499, DW_AT_decl_line(0xb8)
.dwattr $C$DW$499, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$127
.dwattr $C$DW$T$127, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$127, DW_AT_decl_line(0xaf)
.dwattr $C$DW$T$127, DW_AT_decl_column(0x08)
$C$DW$T$129 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$129, DW_AT_byte_size(0x04)
$C$DW$500 .dwtag DW_TAG_member
.dwattr $C$DW$500, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$500, DW_AT_name("PMAO")
.dwattr $C$DW$500, DW_AT_TI_symbol_name("PMAO")
.dwattr $C$DW$500, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$500, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$500, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$500, DW_AT_decl_line(0xc1)
.dwattr $C$DW$500, DW_AT_decl_column(0x15)
$C$DW$501 .dwtag DW_TAG_member
.dwattr $C$DW$501, DW_AT_type(*$C$DW$T$128)
.dwattr $C$DW$501, DW_AT_name("PMAO_bit")
.dwattr $C$DW$501, DW_AT_TI_symbol_name("PMAO_bit")
.dwattr $C$DW$501, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$501, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$501, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$501, DW_AT_decl_line(0xc7)
.dwattr $C$DW$501, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$129
.dwattr $C$DW$T$129, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$129, DW_AT_decl_line(0xc0)
.dwattr $C$DW$T$129, DW_AT_decl_column(0x08)
$C$DW$T$131 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$131, DW_AT_byte_size(0x04)
$C$DW$502 .dwtag DW_TAG_member
.dwattr $C$DW$502, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$502, DW_AT_name("IEPCLK")
.dwattr $C$DW$502, DW_AT_TI_symbol_name("IEPCLK")
.dwattr $C$DW$502, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$502, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$502, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$502, DW_AT_decl_line(0xd0)
.dwattr $C$DW$502, DW_AT_decl_column(0x15)
$C$DW$503 .dwtag DW_TAG_member
.dwattr $C$DW$503, DW_AT_type(*$C$DW$T$130)
.dwattr $C$DW$503, DW_AT_name("IEPCLK_bit")
.dwattr $C$DW$503, DW_AT_TI_symbol_name("IEPCLK_bit")
.dwattr $C$DW$503, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$503, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$503, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$503, DW_AT_decl_line(0xd5)
.dwattr $C$DW$503, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$131
.dwattr $C$DW$T$131, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$131, DW_AT_decl_line(0xcf)
.dwattr $C$DW$T$131, DW_AT_decl_column(0x08)
$C$DW$T$133 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$133, DW_AT_byte_size(0x04)
$C$DW$504 .dwtag DW_TAG_member
.dwattr $C$DW$504, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$504, DW_AT_name("SPP")
.dwattr $C$DW$504, DW_AT_TI_symbol_name("SPP")
.dwattr $C$DW$504, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$504, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$504, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$504, DW_AT_decl_line(0xdb)
.dwattr $C$DW$504, DW_AT_decl_column(0x15)
$C$DW$505 .dwtag DW_TAG_member
.dwattr $C$DW$505, DW_AT_type(*$C$DW$T$132)
.dwattr $C$DW$505, DW_AT_name("SPP_bit")
.dwattr $C$DW$505, DW_AT_TI_symbol_name("SPP_bit")
.dwattr $C$DW$505, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$505, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$505, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$505, DW_AT_decl_line(0xe1)
.dwattr $C$DW$505, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$133
.dwattr $C$DW$T$133, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$133, DW_AT_decl_line(0xda)
.dwattr $C$DW$T$133, DW_AT_decl_column(0x08)
$C$DW$T$135 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$135, DW_AT_byte_size(0x04)
$C$DW$506 .dwtag DW_TAG_member
.dwattr $C$DW$506, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$506, DW_AT_name("PIN_MX")
.dwattr $C$DW$506, DW_AT_TI_symbol_name("PIN_MX")
.dwattr $C$DW$506, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$506, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$506, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$506, DW_AT_decl_line(0xe9)
.dwattr $C$DW$506, DW_AT_decl_column(0x15)
$C$DW$507 .dwtag DW_TAG_member
.dwattr $C$DW$507, DW_AT_type(*$C$DW$T$134)
.dwattr $C$DW$507, DW_AT_name("PIN_MX_bit")
.dwattr $C$DW$507, DW_AT_TI_symbol_name("PIN_MX_bit")
.dwattr $C$DW$507, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$507, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$507, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$507, DW_AT_decl_line(0xee)
.dwattr $C$DW$507, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$135
.dwattr $C$DW$T$135, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$135, DW_AT_decl_line(0xe8)
.dwattr $C$DW$T$135, DW_AT_decl_column(0x08)
$C$DW$T$136 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$136, DW_AT_byte_size(0x04)
$C$DW$508 .dwtag DW_TAG_member
.dwattr $C$DW$508, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$508, DW_AT_name("sub_type")
.dwattr $C$DW$508, DW_AT_TI_symbol_name("sub_type")
.dwattr $C$DW$508, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$508, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$508, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$508, DW_AT_decl_line(0x175)
.dwattr $C$DW$508, DW_AT_decl_column(0x0c)
$C$DW$509 .dwtag DW_TAG_member
.dwattr $C$DW$509, DW_AT_type(*$C$DW$T$37)
.dwattr $C$DW$509, DW_AT_name("st")
.dwattr $C$DW$509, DW_AT_TI_symbol_name("st")
.dwattr $C$DW$509, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$509, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$509, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$509, DW_AT_decl_line(0x179)
.dwattr $C$DW$509, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$136
.dwattr $C$DW$T$136, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$T$136, DW_AT_decl_line(0x174)
.dwattr $C$DW$T$136, DW_AT_decl_column(0x08)
$C$DW$T$138 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$138, DW_AT_byte_size(0x04)
$C$DW$510 .dwtag DW_TAG_member
.dwattr $C$DW$510, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$510, DW_AT_name("REVID")
.dwattr $C$DW$510, DW_AT_TI_symbol_name("REVID")
.dwattr $C$DW$510, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$510, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$510, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$510, DW_AT_decl_line(0x2a)
.dwattr $C$DW$510, DW_AT_decl_column(0x15)
$C$DW$511 .dwtag DW_TAG_member
.dwattr $C$DW$511, DW_AT_type(*$C$DW$T$137)
.dwattr $C$DW$511, DW_AT_name("REVID_bit")
.dwattr $C$DW$511, DW_AT_TI_symbol_name("REVID_bit")
.dwattr $C$DW$511, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$511, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$511, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$511, DW_AT_decl_line(0x34)
.dwattr $C$DW$511, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$138
.dwattr $C$DW$T$138, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$138, DW_AT_decl_line(0x29)
.dwattr $C$DW$T$138, DW_AT_decl_column(0x08)
$C$DW$T$140 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$140, DW_AT_byte_size(0x04)
$C$DW$512 .dwtag DW_TAG_member
.dwattr $C$DW$512, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$512, DW_AT_name("CR")
.dwattr $C$DW$512, DW_AT_TI_symbol_name("CR")
.dwattr $C$DW$512, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$512, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$512, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$512, DW_AT_decl_line(0x3a)
.dwattr $C$DW$512, DW_AT_decl_column(0x15)
$C$DW$513 .dwtag DW_TAG_member
.dwattr $C$DW$513, DW_AT_type(*$C$DW$T$139)
.dwattr $C$DW$513, DW_AT_name("CR_bit")
.dwattr $C$DW$513, DW_AT_TI_symbol_name("CR_bit")
.dwattr $C$DW$513, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$513, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$513, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$513, DW_AT_decl_line(0x40)
.dwattr $C$DW$513, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$140
.dwattr $C$DW$T$140, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$140, DW_AT_decl_line(0x39)
.dwattr $C$DW$T$140, DW_AT_decl_column(0x08)
$C$DW$T$142 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$142, DW_AT_byte_size(0x04)
$C$DW$514 .dwtag DW_TAG_member
.dwattr $C$DW$514, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$514, DW_AT_name("GER")
.dwattr $C$DW$514, DW_AT_TI_symbol_name("GER")
.dwattr $C$DW$514, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$514, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$514, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$514, DW_AT_decl_line(0x49)
.dwattr $C$DW$514, DW_AT_decl_column(0x15)
$C$DW$515 .dwtag DW_TAG_member
.dwattr $C$DW$515, DW_AT_type(*$C$DW$T$141)
.dwattr $C$DW$515, DW_AT_name("GER_bit")
.dwattr $C$DW$515, DW_AT_TI_symbol_name("GER_bit")
.dwattr $C$DW$515, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$515, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$515, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$515, DW_AT_decl_line(0x4e)
.dwattr $C$DW$515, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$142
.dwattr $C$DW$T$142, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$142, DW_AT_decl_line(0x48)
.dwattr $C$DW$T$142, DW_AT_decl_column(0x08)
$C$DW$T$144 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$144, DW_AT_byte_size(0x04)
$C$DW$516 .dwtag DW_TAG_member
.dwattr $C$DW$516, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$516, DW_AT_name("GNLR")
.dwattr $C$DW$516, DW_AT_TI_symbol_name("GNLR")
.dwattr $C$DW$516, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$516, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$516, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$516, DW_AT_decl_line(0x57)
.dwattr $C$DW$516, DW_AT_decl_column(0x15)
$C$DW$517 .dwtag DW_TAG_member
.dwattr $C$DW$517, DW_AT_type(*$C$DW$T$143)
.dwattr $C$DW$517, DW_AT_name("GNLR_bit")
.dwattr $C$DW$517, DW_AT_TI_symbol_name("GNLR_bit")
.dwattr $C$DW$517, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$517, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$517, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$517, DW_AT_decl_line(0x5d)
.dwattr $C$DW$517, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$144
.dwattr $C$DW$T$144, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$144, DW_AT_decl_line(0x56)
.dwattr $C$DW$T$144, DW_AT_decl_column(0x08)
$C$DW$T$146 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$146, DW_AT_byte_size(0x04)
$C$DW$518 .dwtag DW_TAG_member
.dwattr $C$DW$518, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$518, DW_AT_name("SISR")
.dwattr $C$DW$518, DW_AT_TI_symbol_name("SISR")
.dwattr $C$DW$518, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$518, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$518, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$518, DW_AT_decl_line(0x63)
.dwattr $C$DW$518, DW_AT_decl_column(0x15)
$C$DW$519 .dwtag DW_TAG_member
.dwattr $C$DW$519, DW_AT_type(*$C$DW$T$145)
.dwattr $C$DW$519, DW_AT_name("SISR_bit")
.dwattr $C$DW$519, DW_AT_TI_symbol_name("SISR_bit")
.dwattr $C$DW$519, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$519, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$519, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$519, DW_AT_decl_line(0x68)
.dwattr $C$DW$519, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$146
.dwattr $C$DW$T$146, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$146, DW_AT_decl_line(0x62)
.dwattr $C$DW$T$146, DW_AT_decl_column(0x08)
$C$DW$T$148 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$148, DW_AT_byte_size(0x04)
$C$DW$520 .dwtag DW_TAG_member
.dwattr $C$DW$520, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$520, DW_AT_name("SICR")
.dwattr $C$DW$520, DW_AT_TI_symbol_name("SICR")
.dwattr $C$DW$520, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$520, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$520, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$520, DW_AT_decl_line(0x6e)
.dwattr $C$DW$520, DW_AT_decl_column(0x15)
$C$DW$521 .dwtag DW_TAG_member
.dwattr $C$DW$521, DW_AT_type(*$C$DW$T$147)
.dwattr $C$DW$521, DW_AT_name("SICR_bit")
.dwattr $C$DW$521, DW_AT_TI_symbol_name("SICR_bit")
.dwattr $C$DW$521, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$521, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$521, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$521, DW_AT_decl_line(0x73)
.dwattr $C$DW$521, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$148
.dwattr $C$DW$T$148, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$148, DW_AT_decl_line(0x6d)
.dwattr $C$DW$T$148, DW_AT_decl_column(0x08)
$C$DW$T$150 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$150, DW_AT_byte_size(0x04)
$C$DW$522 .dwtag DW_TAG_member
.dwattr $C$DW$522, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$522, DW_AT_name("EISR")
.dwattr $C$DW$522, DW_AT_TI_symbol_name("EISR")
.dwattr $C$DW$522, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$522, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$522, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$522, DW_AT_decl_line(0x79)
.dwattr $C$DW$522, DW_AT_decl_column(0x15)
$C$DW$523 .dwtag DW_TAG_member
.dwattr $C$DW$523, DW_AT_type(*$C$DW$T$149)
.dwattr $C$DW$523, DW_AT_name("EISR_bit")
.dwattr $C$DW$523, DW_AT_TI_symbol_name("EISR_bit")
.dwattr $C$DW$523, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$523, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$523, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$523, DW_AT_decl_line(0x7e)
.dwattr $C$DW$523, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$150
.dwattr $C$DW$T$150, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$150, DW_AT_decl_line(0x78)
.dwattr $C$DW$T$150, DW_AT_decl_column(0x08)
$C$DW$T$152 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$152, DW_AT_byte_size(0x04)
$C$DW$524 .dwtag DW_TAG_member
.dwattr $C$DW$524, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$524, DW_AT_name("EICR")
.dwattr $C$DW$524, DW_AT_TI_symbol_name("EICR")
.dwattr $C$DW$524, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$524, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$524, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$524, DW_AT_decl_line(0x84)
.dwattr $C$DW$524, DW_AT_decl_column(0x15)
$C$DW$525 .dwtag DW_TAG_member
.dwattr $C$DW$525, DW_AT_type(*$C$DW$T$151)
.dwattr $C$DW$525, DW_AT_name("EICR_bit")
.dwattr $C$DW$525, DW_AT_TI_symbol_name("EICR_bit")
.dwattr $C$DW$525, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$525, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$525, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$525, DW_AT_decl_line(0x89)
.dwattr $C$DW$525, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$152
.dwattr $C$DW$T$152, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$152, DW_AT_decl_line(0x83)
.dwattr $C$DW$T$152, DW_AT_decl_column(0x08)
$C$DW$T$154 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$154, DW_AT_byte_size(0x04)
$C$DW$526 .dwtag DW_TAG_member
.dwattr $C$DW$526, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$526, DW_AT_name("HIEISR")
.dwattr $C$DW$526, DW_AT_TI_symbol_name("HIEISR")
.dwattr $C$DW$526, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$526, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$526, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$526, DW_AT_decl_line(0x92)
.dwattr $C$DW$526, DW_AT_decl_column(0x15)
$C$DW$527 .dwtag DW_TAG_member
.dwattr $C$DW$527, DW_AT_type(*$C$DW$T$153)
.dwattr $C$DW$527, DW_AT_name("HIEISR_bit")
.dwattr $C$DW$527, DW_AT_TI_symbol_name("HIEISR_bit")
.dwattr $C$DW$527, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$527, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$527, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$527, DW_AT_decl_line(0x97)
.dwattr $C$DW$527, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$154
.dwattr $C$DW$T$154, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$154, DW_AT_decl_line(0x91)
.dwattr $C$DW$T$154, DW_AT_decl_column(0x08)
$C$DW$T$156 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$156, DW_AT_byte_size(0x04)
$C$DW$528 .dwtag DW_TAG_member
.dwattr $C$DW$528, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$528, DW_AT_name("HIDISR")
.dwattr $C$DW$528, DW_AT_TI_symbol_name("HIDISR")
.dwattr $C$DW$528, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$528, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$528, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$528, DW_AT_decl_line(0x9d)
.dwattr $C$DW$528, DW_AT_decl_column(0x15)
$C$DW$529 .dwtag DW_TAG_member
.dwattr $C$DW$529, DW_AT_type(*$C$DW$T$155)
.dwattr $C$DW$529, DW_AT_name("HIDISR_bit")
.dwattr $C$DW$529, DW_AT_TI_symbol_name("HIDISR_bit")
.dwattr $C$DW$529, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$529, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$529, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$529, DW_AT_decl_line(0xa2)
.dwattr $C$DW$529, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$156
.dwattr $C$DW$T$156, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$156, DW_AT_decl_line(0x9c)
.dwattr $C$DW$T$156, DW_AT_decl_column(0x08)
$C$DW$T$158 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$158, DW_AT_byte_size(0x04)
$C$DW$530 .dwtag DW_TAG_member
.dwattr $C$DW$530, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$530, DW_AT_name("GPIR")
.dwattr $C$DW$530, DW_AT_TI_symbol_name("GPIR")
.dwattr $C$DW$530, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$530, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$530, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$530, DW_AT_decl_line(0xab)
.dwattr $C$DW$530, DW_AT_decl_column(0x15)
$C$DW$531 .dwtag DW_TAG_member
.dwattr $C$DW$531, DW_AT_type(*$C$DW$T$157)
.dwattr $C$DW$531, DW_AT_name("GPIR_bit")
.dwattr $C$DW$531, DW_AT_TI_symbol_name("GPIR_bit")
.dwattr $C$DW$531, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$531, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$531, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$531, DW_AT_decl_line(0xb1)
.dwattr $C$DW$531, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$158
.dwattr $C$DW$T$158, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$158, DW_AT_decl_line(0xaa)
.dwattr $C$DW$T$158, DW_AT_decl_column(0x08)
$C$DW$T$160 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$160, DW_AT_byte_size(0x04)
$C$DW$532 .dwtag DW_TAG_member
.dwattr $C$DW$532, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$532, DW_AT_name("SRSR0")
.dwattr $C$DW$532, DW_AT_TI_symbol_name("SRSR0")
.dwattr $C$DW$532, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$532, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$532, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$532, DW_AT_decl_line(0xba)
.dwattr $C$DW$532, DW_AT_decl_column(0x15)
$C$DW$533 .dwtag DW_TAG_member
.dwattr $C$DW$533, DW_AT_type(*$C$DW$T$159)
.dwattr $C$DW$533, DW_AT_name("SRSR0_bit")
.dwattr $C$DW$533, DW_AT_TI_symbol_name("SRSR0_bit")
.dwattr $C$DW$533, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$533, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$533, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$533, DW_AT_decl_line(0xbe)
.dwattr $C$DW$533, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$160
.dwattr $C$DW$T$160, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$160, DW_AT_decl_line(0xb9)
.dwattr $C$DW$T$160, DW_AT_decl_column(0x08)
$C$DW$T$162 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$162, DW_AT_byte_size(0x04)
$C$DW$534 .dwtag DW_TAG_member
.dwattr $C$DW$534, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$534, DW_AT_name("SRSR1")
.dwattr $C$DW$534, DW_AT_TI_symbol_name("SRSR1")
.dwattr $C$DW$534, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$534, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$534, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$534, DW_AT_decl_line(0xc4)
.dwattr $C$DW$534, DW_AT_decl_column(0x15)
$C$DW$535 .dwtag DW_TAG_member
.dwattr $C$DW$535, DW_AT_type(*$C$DW$T$161)
.dwattr $C$DW$535, DW_AT_name("SRSR1_bit")
.dwattr $C$DW$535, DW_AT_TI_symbol_name("SRSR1_bit")
.dwattr $C$DW$535, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$535, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$535, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$535, DW_AT_decl_line(0xc8)
.dwattr $C$DW$535, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$162
.dwattr $C$DW$T$162, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$162, DW_AT_decl_line(0xc3)
.dwattr $C$DW$T$162, DW_AT_decl_column(0x08)
$C$DW$T$164 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$164, DW_AT_byte_size(0x04)
$C$DW$536 .dwtag DW_TAG_member
.dwattr $C$DW$536, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$536, DW_AT_name("SECR0")
.dwattr $C$DW$536, DW_AT_TI_symbol_name("SECR0")
.dwattr $C$DW$536, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$536, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$536, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$536, DW_AT_decl_line(0xd1)
.dwattr $C$DW$536, DW_AT_decl_column(0x15)
$C$DW$537 .dwtag DW_TAG_member
.dwattr $C$DW$537, DW_AT_type(*$C$DW$T$163)
.dwattr $C$DW$537, DW_AT_name("SECR0_bit")
.dwattr $C$DW$537, DW_AT_TI_symbol_name("SECR0_bit")
.dwattr $C$DW$537, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$537, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$537, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$537, DW_AT_decl_line(0xd5)
.dwattr $C$DW$537, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$164
.dwattr $C$DW$T$164, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$164, DW_AT_decl_line(0xd0)
.dwattr $C$DW$T$164, DW_AT_decl_column(0x08)
$C$DW$T$166 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$166, DW_AT_byte_size(0x04)
$C$DW$538 .dwtag DW_TAG_member
.dwattr $C$DW$538, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$538, DW_AT_name("SECR1")
.dwattr $C$DW$538, DW_AT_TI_symbol_name("SECR1")
.dwattr $C$DW$538, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$538, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$538, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$538, DW_AT_decl_line(0xdb)
.dwattr $C$DW$538, DW_AT_decl_column(0x15)
$C$DW$539 .dwtag DW_TAG_member
.dwattr $C$DW$539, DW_AT_type(*$C$DW$T$165)
.dwattr $C$DW$539, DW_AT_name("SECR1_bit")
.dwattr $C$DW$539, DW_AT_TI_symbol_name("SECR1_bit")
.dwattr $C$DW$539, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$539, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$539, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$539, DW_AT_decl_line(0xdf)
.dwattr $C$DW$539, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$166
.dwattr $C$DW$T$166, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$166, DW_AT_decl_line(0xda)
.dwattr $C$DW$T$166, DW_AT_decl_column(0x08)
$C$DW$T$168 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$168, DW_AT_byte_size(0x04)
$C$DW$540 .dwtag DW_TAG_member
.dwattr $C$DW$540, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$540, DW_AT_name("ESR0")
.dwattr $C$DW$540, DW_AT_TI_symbol_name("ESR0")
.dwattr $C$DW$540, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$540, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$540, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$540, DW_AT_decl_line(0xe8)
.dwattr $C$DW$540, DW_AT_decl_column(0x15)
$C$DW$541 .dwtag DW_TAG_member
.dwattr $C$DW$541, DW_AT_type(*$C$DW$T$167)
.dwattr $C$DW$541, DW_AT_name("ESR0_bit")
.dwattr $C$DW$541, DW_AT_TI_symbol_name("ESR0_bit")
.dwattr $C$DW$541, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$541, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$541, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$541, DW_AT_decl_line(0xec)
.dwattr $C$DW$541, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$168
.dwattr $C$DW$T$168, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$168, DW_AT_decl_line(0xe7)
.dwattr $C$DW$T$168, DW_AT_decl_column(0x08)
$C$DW$T$170 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$170, DW_AT_byte_size(0x04)
$C$DW$542 .dwtag DW_TAG_member
.dwattr $C$DW$542, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$542, DW_AT_name("ESR1")
.dwattr $C$DW$542, DW_AT_TI_symbol_name("ESR1")
.dwattr $C$DW$542, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$542, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$542, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$542, DW_AT_decl_line(0xf2)
.dwattr $C$DW$542, DW_AT_decl_column(0x15)
$C$DW$543 .dwtag DW_TAG_member
.dwattr $C$DW$543, DW_AT_type(*$C$DW$T$169)
.dwattr $C$DW$543, DW_AT_name("ESR1_bit")
.dwattr $C$DW$543, DW_AT_TI_symbol_name("ESR1_bit")
.dwattr $C$DW$543, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$543, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$543, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$543, DW_AT_decl_line(0xf6)
.dwattr $C$DW$543, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$170
.dwattr $C$DW$T$170, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$170, DW_AT_decl_line(0xf1)
.dwattr $C$DW$T$170, DW_AT_decl_column(0x08)
$C$DW$T$172 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$172, DW_AT_byte_size(0x04)
$C$DW$544 .dwtag DW_TAG_member
.dwattr $C$DW$544, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$544, DW_AT_name("ECR0")
.dwattr $C$DW$544, DW_AT_TI_symbol_name("ECR0")
.dwattr $C$DW$544, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$544, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$544, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$544, DW_AT_decl_line(0xff)
.dwattr $C$DW$544, DW_AT_decl_column(0x15)
$C$DW$545 .dwtag DW_TAG_member
.dwattr $C$DW$545, DW_AT_type(*$C$DW$T$171)
.dwattr $C$DW$545, DW_AT_name("ECR0_bit")
.dwattr $C$DW$545, DW_AT_TI_symbol_name("ECR0_bit")
.dwattr $C$DW$545, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$545, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$545, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$545, DW_AT_decl_line(0x103)
.dwattr $C$DW$545, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$172
.dwattr $C$DW$T$172, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$172, DW_AT_decl_line(0xfe)
.dwattr $C$DW$T$172, DW_AT_decl_column(0x08)
$C$DW$T$174 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$174, DW_AT_byte_size(0x04)
$C$DW$546 .dwtag DW_TAG_member
.dwattr $C$DW$546, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$546, DW_AT_name("ECR1")
.dwattr $C$DW$546, DW_AT_TI_symbol_name("ECR1")
.dwattr $C$DW$546, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$546, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$546, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$546, DW_AT_decl_line(0x109)
.dwattr $C$DW$546, DW_AT_decl_column(0x15)
$C$DW$547 .dwtag DW_TAG_member
.dwattr $C$DW$547, DW_AT_type(*$C$DW$T$173)
.dwattr $C$DW$547, DW_AT_name("ECR1_bit")
.dwattr $C$DW$547, DW_AT_TI_symbol_name("ECR1_bit")
.dwattr $C$DW$547, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$547, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$547, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$547, DW_AT_decl_line(0x10d)
.dwattr $C$DW$547, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$174
.dwattr $C$DW$T$174, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$174, DW_AT_decl_line(0x108)
.dwattr $C$DW$T$174, DW_AT_decl_column(0x08)
$C$DW$T$176 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$176, DW_AT_byte_size(0x04)
$C$DW$548 .dwtag DW_TAG_member
.dwattr $C$DW$548, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$548, DW_AT_name("CMR0")
.dwattr $C$DW$548, DW_AT_TI_symbol_name("CMR0")
.dwattr $C$DW$548, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$548, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$548, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$548, DW_AT_decl_line(0x116)
.dwattr $C$DW$548, DW_AT_decl_column(0x15)
$C$DW$549 .dwtag DW_TAG_member
.dwattr $C$DW$549, DW_AT_type(*$C$DW$T$175)
.dwattr $C$DW$549, DW_AT_name("CMR0_bit")
.dwattr $C$DW$549, DW_AT_TI_symbol_name("CMR0_bit")
.dwattr $C$DW$549, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$549, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$549, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$549, DW_AT_decl_line(0x121)
.dwattr $C$DW$549, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$176
.dwattr $C$DW$T$176, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$176, DW_AT_decl_line(0x115)
.dwattr $C$DW$T$176, DW_AT_decl_column(0x08)
$C$DW$T$178 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$178, DW_AT_byte_size(0x04)
$C$DW$550 .dwtag DW_TAG_member
.dwattr $C$DW$550, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$550, DW_AT_name("CMR1")
.dwattr $C$DW$550, DW_AT_TI_symbol_name("CMR1")
.dwattr $C$DW$550, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$550, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$550, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$550, DW_AT_decl_line(0x127)
.dwattr $C$DW$550, DW_AT_decl_column(0x15)
$C$DW$551 .dwtag DW_TAG_member
.dwattr $C$DW$551, DW_AT_type(*$C$DW$T$177)
.dwattr $C$DW$551, DW_AT_name("CMR1_bit")
.dwattr $C$DW$551, DW_AT_TI_symbol_name("CMR1_bit")
.dwattr $C$DW$551, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$551, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$551, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$551, DW_AT_decl_line(0x132)
.dwattr $C$DW$551, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$178
.dwattr $C$DW$T$178, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$178, DW_AT_decl_line(0x126)
.dwattr $C$DW$T$178, DW_AT_decl_column(0x08)
$C$DW$T$180 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$180, DW_AT_byte_size(0x04)
$C$DW$552 .dwtag DW_TAG_member
.dwattr $C$DW$552, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$552, DW_AT_name("CMR2")
.dwattr $C$DW$552, DW_AT_TI_symbol_name("CMR2")
.dwattr $C$DW$552, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$552, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$552, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$552, DW_AT_decl_line(0x138)
.dwattr $C$DW$552, DW_AT_decl_column(0x15)
$C$DW$553 .dwtag DW_TAG_member
.dwattr $C$DW$553, DW_AT_type(*$C$DW$T$179)
.dwattr $C$DW$553, DW_AT_name("CMR2_bit")
.dwattr $C$DW$553, DW_AT_TI_symbol_name("CMR2_bit")
.dwattr $C$DW$553, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$553, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$553, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$553, DW_AT_decl_line(0x143)
.dwattr $C$DW$553, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$180
.dwattr $C$DW$T$180, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$180, DW_AT_decl_line(0x137)
.dwattr $C$DW$T$180, DW_AT_decl_column(0x08)
$C$DW$T$182 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$182, DW_AT_byte_size(0x04)
$C$DW$554 .dwtag DW_TAG_member
.dwattr $C$DW$554, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$554, DW_AT_name("CMR3")
.dwattr $C$DW$554, DW_AT_TI_symbol_name("CMR3")
.dwattr $C$DW$554, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$554, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$554, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$554, DW_AT_decl_line(0x149)
.dwattr $C$DW$554, DW_AT_decl_column(0x15)
$C$DW$555 .dwtag DW_TAG_member
.dwattr $C$DW$555, DW_AT_type(*$C$DW$T$181)
.dwattr $C$DW$555, DW_AT_name("CMR3_bit")
.dwattr $C$DW$555, DW_AT_TI_symbol_name("CMR3_bit")
.dwattr $C$DW$555, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$555, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$555, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$555, DW_AT_decl_line(0x154)
.dwattr $C$DW$555, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$182
.dwattr $C$DW$T$182, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$182, DW_AT_decl_line(0x148)
.dwattr $C$DW$T$182, DW_AT_decl_column(0x08)
$C$DW$T$184 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$184, DW_AT_byte_size(0x04)
$C$DW$556 .dwtag DW_TAG_member
.dwattr $C$DW$556, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$556, DW_AT_name("CMR4")
.dwattr $C$DW$556, DW_AT_TI_symbol_name("CMR4")
.dwattr $C$DW$556, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$556, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$556, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$556, DW_AT_decl_line(0x15a)
.dwattr $C$DW$556, DW_AT_decl_column(0x15)
$C$DW$557 .dwtag DW_TAG_member
.dwattr $C$DW$557, DW_AT_type(*$C$DW$T$183)
.dwattr $C$DW$557, DW_AT_name("CMR4_bit")
.dwattr $C$DW$557, DW_AT_TI_symbol_name("CMR4_bit")
.dwattr $C$DW$557, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$557, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$557, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$557, DW_AT_decl_line(0x165)
.dwattr $C$DW$557, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$184
.dwattr $C$DW$T$184, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$184, DW_AT_decl_line(0x159)
.dwattr $C$DW$T$184, DW_AT_decl_column(0x08)
$C$DW$T$186 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$186, DW_AT_byte_size(0x04)
$C$DW$558 .dwtag DW_TAG_member
.dwattr $C$DW$558, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$558, DW_AT_name("CMR5")
.dwattr $C$DW$558, DW_AT_TI_symbol_name("CMR5")
.dwattr $C$DW$558, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$558, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$558, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$558, DW_AT_decl_line(0x16b)
.dwattr $C$DW$558, DW_AT_decl_column(0x15)
$C$DW$559 .dwtag DW_TAG_member
.dwattr $C$DW$559, DW_AT_type(*$C$DW$T$185)
.dwattr $C$DW$559, DW_AT_name("CMR5_bit")
.dwattr $C$DW$559, DW_AT_TI_symbol_name("CMR5_bit")
.dwattr $C$DW$559, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$559, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$559, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$559, DW_AT_decl_line(0x176)
.dwattr $C$DW$559, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$186
.dwattr $C$DW$T$186, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$186, DW_AT_decl_line(0x16a)
.dwattr $C$DW$T$186, DW_AT_decl_column(0x08)
$C$DW$T$188 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$188, DW_AT_byte_size(0x04)
$C$DW$560 .dwtag DW_TAG_member
.dwattr $C$DW$560, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$560, DW_AT_name("CMR6")
.dwattr $C$DW$560, DW_AT_TI_symbol_name("CMR6")
.dwattr $C$DW$560, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$560, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$560, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$560, DW_AT_decl_line(0x17c)
.dwattr $C$DW$560, DW_AT_decl_column(0x15)
$C$DW$561 .dwtag DW_TAG_member
.dwattr $C$DW$561, DW_AT_type(*$C$DW$T$187)
.dwattr $C$DW$561, DW_AT_name("CMR6_bit")
.dwattr $C$DW$561, DW_AT_TI_symbol_name("CMR6_bit")
.dwattr $C$DW$561, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$561, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$561, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$561, DW_AT_decl_line(0x187)
.dwattr $C$DW$561, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$188
.dwattr $C$DW$T$188, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$188, DW_AT_decl_line(0x17b)
.dwattr $C$DW$T$188, DW_AT_decl_column(0x08)
$C$DW$T$190 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$190, DW_AT_byte_size(0x04)
$C$DW$562 .dwtag DW_TAG_member
.dwattr $C$DW$562, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$562, DW_AT_name("CMR7")
.dwattr $C$DW$562, DW_AT_TI_symbol_name("CMR7")
.dwattr $C$DW$562, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$562, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$562, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$562, DW_AT_decl_line(0x18d)
.dwattr $C$DW$562, DW_AT_decl_column(0x15)
$C$DW$563 .dwtag DW_TAG_member
.dwattr $C$DW$563, DW_AT_type(*$C$DW$T$189)
.dwattr $C$DW$563, DW_AT_name("CMR7_bit")
.dwattr $C$DW$563, DW_AT_TI_symbol_name("CMR7_bit")
.dwattr $C$DW$563, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$563, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$563, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$563, DW_AT_decl_line(0x198)
.dwattr $C$DW$563, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$190
.dwattr $C$DW$T$190, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$190, DW_AT_decl_line(0x18c)
.dwattr $C$DW$T$190, DW_AT_decl_column(0x08)
$C$DW$T$192 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$192, DW_AT_byte_size(0x04)
$C$DW$564 .dwtag DW_TAG_member
.dwattr $C$DW$564, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$564, DW_AT_name("CMR8")
.dwattr $C$DW$564, DW_AT_TI_symbol_name("CMR8")
.dwattr $C$DW$564, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$564, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$564, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$564, DW_AT_decl_line(0x19e)
.dwattr $C$DW$564, DW_AT_decl_column(0x15)
$C$DW$565 .dwtag DW_TAG_member
.dwattr $C$DW$565, DW_AT_type(*$C$DW$T$191)
.dwattr $C$DW$565, DW_AT_name("CMR8_bit")
.dwattr $C$DW$565, DW_AT_TI_symbol_name("CMR8_bit")
.dwattr $C$DW$565, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$565, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$565, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$565, DW_AT_decl_line(0x1a9)
.dwattr $C$DW$565, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$192
.dwattr $C$DW$T$192, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$192, DW_AT_decl_line(0x19d)
.dwattr $C$DW$T$192, DW_AT_decl_column(0x08)
$C$DW$T$194 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$194, DW_AT_byte_size(0x04)
$C$DW$566 .dwtag DW_TAG_member
.dwattr $C$DW$566, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$566, DW_AT_name("CMR9")
.dwattr $C$DW$566, DW_AT_TI_symbol_name("CMR9")
.dwattr $C$DW$566, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$566, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$566, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$566, DW_AT_decl_line(0x1af)
.dwattr $C$DW$566, DW_AT_decl_column(0x15)
$C$DW$567 .dwtag DW_TAG_member
.dwattr $C$DW$567, DW_AT_type(*$C$DW$T$193)
.dwattr $C$DW$567, DW_AT_name("CMR9_bit")
.dwattr $C$DW$567, DW_AT_TI_symbol_name("CMR9_bit")
.dwattr $C$DW$567, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$567, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$567, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$567, DW_AT_decl_line(0x1ba)
.dwattr $C$DW$567, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$194
.dwattr $C$DW$T$194, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$194, DW_AT_decl_line(0x1ae)
.dwattr $C$DW$T$194, DW_AT_decl_column(0x08)
$C$DW$T$196 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$196, DW_AT_byte_size(0x04)
$C$DW$568 .dwtag DW_TAG_member
.dwattr $C$DW$568, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$568, DW_AT_name("CMR10")
.dwattr $C$DW$568, DW_AT_TI_symbol_name("CMR10")
.dwattr $C$DW$568, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$568, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$568, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$568, DW_AT_decl_line(0x1c0)
.dwattr $C$DW$568, DW_AT_decl_column(0x15)
$C$DW$569 .dwtag DW_TAG_member
.dwattr $C$DW$569, DW_AT_type(*$C$DW$T$195)
.dwattr $C$DW$569, DW_AT_name("CMR10_bit")
.dwattr $C$DW$569, DW_AT_TI_symbol_name("CMR10_bit")
.dwattr $C$DW$569, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$569, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$569, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$569, DW_AT_decl_line(0x1cb)
.dwattr $C$DW$569, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$196
.dwattr $C$DW$T$196, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$196, DW_AT_decl_line(0x1bf)
.dwattr $C$DW$T$196, DW_AT_decl_column(0x08)
$C$DW$T$198 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$198, DW_AT_byte_size(0x04)
$C$DW$570 .dwtag DW_TAG_member
.dwattr $C$DW$570, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$570, DW_AT_name("CMR11")
.dwattr $C$DW$570, DW_AT_TI_symbol_name("CMR11")
.dwattr $C$DW$570, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$570, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$570, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$570, DW_AT_decl_line(0x1d1)
.dwattr $C$DW$570, DW_AT_decl_column(0x15)
$C$DW$571 .dwtag DW_TAG_member
.dwattr $C$DW$571, DW_AT_type(*$C$DW$T$197)
.dwattr $C$DW$571, DW_AT_name("CMR11_bit")
.dwattr $C$DW$571, DW_AT_TI_symbol_name("CMR11_bit")
.dwattr $C$DW$571, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$571, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$571, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$571, DW_AT_decl_line(0x1dc)
.dwattr $C$DW$571, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$198
.dwattr $C$DW$T$198, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$198, DW_AT_decl_line(0x1d0)
.dwattr $C$DW$T$198, DW_AT_decl_column(0x08)
$C$DW$T$200 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$200, DW_AT_byte_size(0x04)
$C$DW$572 .dwtag DW_TAG_member
.dwattr $C$DW$572, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$572, DW_AT_name("CMR12")
.dwattr $C$DW$572, DW_AT_TI_symbol_name("CMR12")
.dwattr $C$DW$572, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$572, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$572, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$572, DW_AT_decl_line(0x1e2)
.dwattr $C$DW$572, DW_AT_decl_column(0x15)
$C$DW$573 .dwtag DW_TAG_member
.dwattr $C$DW$573, DW_AT_type(*$C$DW$T$199)
.dwattr $C$DW$573, DW_AT_name("CMR12_bit")
.dwattr $C$DW$573, DW_AT_TI_symbol_name("CMR12_bit")
.dwattr $C$DW$573, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$573, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$573, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$573, DW_AT_decl_line(0x1ed)
.dwattr $C$DW$573, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$200
.dwattr $C$DW$T$200, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$200, DW_AT_decl_line(0x1e1)
.dwattr $C$DW$T$200, DW_AT_decl_column(0x08)
$C$DW$T$202 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$202, DW_AT_byte_size(0x04)
$C$DW$574 .dwtag DW_TAG_member
.dwattr $C$DW$574, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$574, DW_AT_name("CMR13")
.dwattr $C$DW$574, DW_AT_TI_symbol_name("CMR13")
.dwattr $C$DW$574, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$574, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$574, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$574, DW_AT_decl_line(0x1f3)
.dwattr $C$DW$574, DW_AT_decl_column(0x15)
$C$DW$575 .dwtag DW_TAG_member
.dwattr $C$DW$575, DW_AT_type(*$C$DW$T$201)
.dwattr $C$DW$575, DW_AT_name("CMR13_bit")
.dwattr $C$DW$575, DW_AT_TI_symbol_name("CMR13_bit")
.dwattr $C$DW$575, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$575, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$575, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$575, DW_AT_decl_line(0x1fe)
.dwattr $C$DW$575, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$202
.dwattr $C$DW$T$202, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$202, DW_AT_decl_line(0x1f2)
.dwattr $C$DW$T$202, DW_AT_decl_column(0x08)
$C$DW$T$204 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$204, DW_AT_byte_size(0x04)
$C$DW$576 .dwtag DW_TAG_member
.dwattr $C$DW$576, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$576, DW_AT_name("CMR14")
.dwattr $C$DW$576, DW_AT_TI_symbol_name("CMR14")
.dwattr $C$DW$576, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$576, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$576, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$576, DW_AT_decl_line(0x204)
.dwattr $C$DW$576, DW_AT_decl_column(0x15)
$C$DW$577 .dwtag DW_TAG_member
.dwattr $C$DW$577, DW_AT_type(*$C$DW$T$203)
.dwattr $C$DW$577, DW_AT_name("CMR14_bit")
.dwattr $C$DW$577, DW_AT_TI_symbol_name("CMR14_bit")
.dwattr $C$DW$577, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$577, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$577, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$577, DW_AT_decl_line(0x20f)
.dwattr $C$DW$577, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$204
.dwattr $C$DW$T$204, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$204, DW_AT_decl_line(0x203)
.dwattr $C$DW$T$204, DW_AT_decl_column(0x08)
$C$DW$T$206 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$206, DW_AT_byte_size(0x04)
$C$DW$578 .dwtag DW_TAG_member
.dwattr $C$DW$578, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$578, DW_AT_name("CMR15")
.dwattr $C$DW$578, DW_AT_TI_symbol_name("CMR15")
.dwattr $C$DW$578, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$578, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$578, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$578, DW_AT_decl_line(0x215)
.dwattr $C$DW$578, DW_AT_decl_column(0x15)
$C$DW$579 .dwtag DW_TAG_member
.dwattr $C$DW$579, DW_AT_type(*$C$DW$T$205)
.dwattr $C$DW$579, DW_AT_name("CMR15_bit")
.dwattr $C$DW$579, DW_AT_TI_symbol_name("CMR15_bit")
.dwattr $C$DW$579, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$579, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$579, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$579, DW_AT_decl_line(0x220)
.dwattr $C$DW$579, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$206
.dwattr $C$DW$T$206, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$206, DW_AT_decl_line(0x214)
.dwattr $C$DW$T$206, DW_AT_decl_column(0x08)
$C$DW$T$208 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$208, DW_AT_byte_size(0x04)
$C$DW$580 .dwtag DW_TAG_member
.dwattr $C$DW$580, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$580, DW_AT_name("HMR0")
.dwattr $C$DW$580, DW_AT_TI_symbol_name("HMR0")
.dwattr $C$DW$580, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$580, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$580, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$580, DW_AT_decl_line(0x229)
.dwattr $C$DW$580, DW_AT_decl_column(0x15)
$C$DW$581 .dwtag DW_TAG_member
.dwattr $C$DW$581, DW_AT_type(*$C$DW$T$207)
.dwattr $C$DW$581, DW_AT_name("HMR0_bit")
.dwattr $C$DW$581, DW_AT_TI_symbol_name("HMR0_bit")
.dwattr $C$DW$581, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$581, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$581, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$581, DW_AT_decl_line(0x234)
.dwattr $C$DW$581, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$208
.dwattr $C$DW$T$208, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$208, DW_AT_decl_line(0x228)
.dwattr $C$DW$T$208, DW_AT_decl_column(0x08)
$C$DW$T$210 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$210, DW_AT_byte_size(0x04)
$C$DW$582 .dwtag DW_TAG_member
.dwattr $C$DW$582, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$582, DW_AT_name("HMR1")
.dwattr $C$DW$582, DW_AT_TI_symbol_name("HMR1")
.dwattr $C$DW$582, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$582, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$582, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$582, DW_AT_decl_line(0x23a)
.dwattr $C$DW$582, DW_AT_decl_column(0x15)
$C$DW$583 .dwtag DW_TAG_member
.dwattr $C$DW$583, DW_AT_type(*$C$DW$T$209)
.dwattr $C$DW$583, DW_AT_name("HMR1_bit")
.dwattr $C$DW$583, DW_AT_TI_symbol_name("HMR1_bit")
.dwattr $C$DW$583, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$583, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$583, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$583, DW_AT_decl_line(0x245)
.dwattr $C$DW$583, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$210
.dwattr $C$DW$T$210, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$210, DW_AT_decl_line(0x239)
.dwattr $C$DW$T$210, DW_AT_decl_column(0x08)
$C$DW$T$212 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$212, DW_AT_byte_size(0x04)
$C$DW$584 .dwtag DW_TAG_member
.dwattr $C$DW$584, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$584, DW_AT_name("HMR2")
.dwattr $C$DW$584, DW_AT_TI_symbol_name("HMR2")
.dwattr $C$DW$584, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$584, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$584, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$584, DW_AT_decl_line(0x24b)
.dwattr $C$DW$584, DW_AT_decl_column(0x15)
$C$DW$585 .dwtag DW_TAG_member
.dwattr $C$DW$585, DW_AT_type(*$C$DW$T$211)
.dwattr $C$DW$585, DW_AT_name("HMR2_bit")
.dwattr $C$DW$585, DW_AT_TI_symbol_name("HMR2_bit")
.dwattr $C$DW$585, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$585, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$585, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$585, DW_AT_decl_line(0x252)
.dwattr $C$DW$585, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$212
.dwattr $C$DW$T$212, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$212, DW_AT_decl_line(0x24a)
.dwattr $C$DW$T$212, DW_AT_decl_column(0x08)
$C$DW$T$214 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$214, DW_AT_byte_size(0x04)
$C$DW$586 .dwtag DW_TAG_member
.dwattr $C$DW$586, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$586, DW_AT_name("HIPIR0")
.dwattr $C$DW$586, DW_AT_TI_symbol_name("HIPIR0")
.dwattr $C$DW$586, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$586, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$586, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$586, DW_AT_decl_line(0x25b)
.dwattr $C$DW$586, DW_AT_decl_column(0x15)
$C$DW$587 .dwtag DW_TAG_member
.dwattr $C$DW$587, DW_AT_type(*$C$DW$T$213)
.dwattr $C$DW$587, DW_AT_name("HIPIR0_bit")
.dwattr $C$DW$587, DW_AT_TI_symbol_name("HIPIR0_bit")
.dwattr $C$DW$587, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$587, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$587, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$587, DW_AT_decl_line(0x261)
.dwattr $C$DW$587, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$214
.dwattr $C$DW$T$214, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$214, DW_AT_decl_line(0x25a)
.dwattr $C$DW$T$214, DW_AT_decl_column(0x08)
$C$DW$T$216 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$216, DW_AT_byte_size(0x04)
$C$DW$588 .dwtag DW_TAG_member
.dwattr $C$DW$588, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$588, DW_AT_name("HIPIR1")
.dwattr $C$DW$588, DW_AT_TI_symbol_name("HIPIR1")
.dwattr $C$DW$588, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$588, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$588, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$588, DW_AT_decl_line(0x267)
.dwattr $C$DW$588, DW_AT_decl_column(0x15)
$C$DW$589 .dwtag DW_TAG_member
.dwattr $C$DW$589, DW_AT_type(*$C$DW$T$215)
.dwattr $C$DW$589, DW_AT_name("HIPIR1_bit")
.dwattr $C$DW$589, DW_AT_TI_symbol_name("HIPIR1_bit")
.dwattr $C$DW$589, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$589, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$589, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$589, DW_AT_decl_line(0x26d)
.dwattr $C$DW$589, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$216
.dwattr $C$DW$T$216, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$216, DW_AT_decl_line(0x266)
.dwattr $C$DW$T$216, DW_AT_decl_column(0x08)
$C$DW$T$218 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$218, DW_AT_byte_size(0x04)
$C$DW$590 .dwtag DW_TAG_member
.dwattr $C$DW$590, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$590, DW_AT_name("HIPIR2")
.dwattr $C$DW$590, DW_AT_TI_symbol_name("HIPIR2")
.dwattr $C$DW$590, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$590, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$590, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$590, DW_AT_decl_line(0x273)
.dwattr $C$DW$590, DW_AT_decl_column(0x15)
$C$DW$591 .dwtag DW_TAG_member
.dwattr $C$DW$591, DW_AT_type(*$C$DW$T$217)
.dwattr $C$DW$591, DW_AT_name("HIPIR2_bit")
.dwattr $C$DW$591, DW_AT_TI_symbol_name("HIPIR2_bit")
.dwattr $C$DW$591, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$591, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$591, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$591, DW_AT_decl_line(0x279)
.dwattr $C$DW$591, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$218
.dwattr $C$DW$T$218, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$218, DW_AT_decl_line(0x272)
.dwattr $C$DW$T$218, DW_AT_decl_column(0x08)
$C$DW$T$220 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$220, DW_AT_byte_size(0x04)
$C$DW$592 .dwtag DW_TAG_member
.dwattr $C$DW$592, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$592, DW_AT_name("HIPIR3")
.dwattr $C$DW$592, DW_AT_TI_symbol_name("HIPIR3")
.dwattr $C$DW$592, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$592, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$592, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$592, DW_AT_decl_line(0x27f)
.dwattr $C$DW$592, DW_AT_decl_column(0x15)
$C$DW$593 .dwtag DW_TAG_member
.dwattr $C$DW$593, DW_AT_type(*$C$DW$T$219)
.dwattr $C$DW$593, DW_AT_name("HIPIR3_bit")
.dwattr $C$DW$593, DW_AT_TI_symbol_name("HIPIR3_bit")
.dwattr $C$DW$593, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$593, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$593, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$593, DW_AT_decl_line(0x285)
.dwattr $C$DW$593, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$220
.dwattr $C$DW$T$220, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$220, DW_AT_decl_line(0x27e)
.dwattr $C$DW$T$220, DW_AT_decl_column(0x08)
$C$DW$T$222 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$222, DW_AT_byte_size(0x04)
$C$DW$594 .dwtag DW_TAG_member
.dwattr $C$DW$594, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$594, DW_AT_name("HIPIR4")
.dwattr $C$DW$594, DW_AT_TI_symbol_name("HIPIR4")
.dwattr $C$DW$594, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$594, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$594, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$594, DW_AT_decl_line(0x28b)
.dwattr $C$DW$594, DW_AT_decl_column(0x15)
$C$DW$595 .dwtag DW_TAG_member
.dwattr $C$DW$595, DW_AT_type(*$C$DW$T$221)
.dwattr $C$DW$595, DW_AT_name("HIPIR4_bit")
.dwattr $C$DW$595, DW_AT_TI_symbol_name("HIPIR4_bit")
.dwattr $C$DW$595, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$595, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$595, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$595, DW_AT_decl_line(0x291)
.dwattr $C$DW$595, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$222
.dwattr $C$DW$T$222, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$222, DW_AT_decl_line(0x28a)
.dwattr $C$DW$T$222, DW_AT_decl_column(0x08)
$C$DW$T$224 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$224, DW_AT_byte_size(0x04)
$C$DW$596 .dwtag DW_TAG_member
.dwattr $C$DW$596, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$596, DW_AT_name("HIPIR5")
.dwattr $C$DW$596, DW_AT_TI_symbol_name("HIPIR5")
.dwattr $C$DW$596, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$596, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$596, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$596, DW_AT_decl_line(0x297)
.dwattr $C$DW$596, DW_AT_decl_column(0x15)
$C$DW$597 .dwtag DW_TAG_member
.dwattr $C$DW$597, DW_AT_type(*$C$DW$T$223)
.dwattr $C$DW$597, DW_AT_name("HIPIR5_bit")
.dwattr $C$DW$597, DW_AT_TI_symbol_name("HIPIR5_bit")
.dwattr $C$DW$597, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$597, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$597, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$597, DW_AT_decl_line(0x29d)
.dwattr $C$DW$597, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$224
.dwattr $C$DW$T$224, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$224, DW_AT_decl_line(0x296)
.dwattr $C$DW$T$224, DW_AT_decl_column(0x08)
$C$DW$T$226 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$226, DW_AT_byte_size(0x04)
$C$DW$598 .dwtag DW_TAG_member
.dwattr $C$DW$598, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$598, DW_AT_name("HIPIR6")
.dwattr $C$DW$598, DW_AT_TI_symbol_name("HIPIR6")
.dwattr $C$DW$598, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$598, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$598, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$598, DW_AT_decl_line(0x2a3)
.dwattr $C$DW$598, DW_AT_decl_column(0x15)
$C$DW$599 .dwtag DW_TAG_member
.dwattr $C$DW$599, DW_AT_type(*$C$DW$T$225)
.dwattr $C$DW$599, DW_AT_name("HIPIR6_bit")
.dwattr $C$DW$599, DW_AT_TI_symbol_name("HIPIR6_bit")
.dwattr $C$DW$599, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$599, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$599, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$599, DW_AT_decl_line(0x2a9)
.dwattr $C$DW$599, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$226
.dwattr $C$DW$T$226, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$226, DW_AT_decl_line(0x2a2)
.dwattr $C$DW$T$226, DW_AT_decl_column(0x08)
$C$DW$T$228 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$228, DW_AT_byte_size(0x04)
$C$DW$600 .dwtag DW_TAG_member
.dwattr $C$DW$600, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$600, DW_AT_name("HIPIR7")
.dwattr $C$DW$600, DW_AT_TI_symbol_name("HIPIR7")
.dwattr $C$DW$600, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$600, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$600, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$600, DW_AT_decl_line(0x2af)
.dwattr $C$DW$600, DW_AT_decl_column(0x15)
$C$DW$601 .dwtag DW_TAG_member
.dwattr $C$DW$601, DW_AT_type(*$C$DW$T$227)
.dwattr $C$DW$601, DW_AT_name("HIPIR7_bit")
.dwattr $C$DW$601, DW_AT_TI_symbol_name("HIPIR7_bit")
.dwattr $C$DW$601, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$601, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$601, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$601, DW_AT_decl_line(0x2b5)
.dwattr $C$DW$601, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$228
.dwattr $C$DW$T$228, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$228, DW_AT_decl_line(0x2ae)
.dwattr $C$DW$T$228, DW_AT_decl_column(0x08)
$C$DW$T$230 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$230, DW_AT_byte_size(0x04)
$C$DW$602 .dwtag DW_TAG_member
.dwattr $C$DW$602, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$602, DW_AT_name("HIPIR8")
.dwattr $C$DW$602, DW_AT_TI_symbol_name("HIPIR8")
.dwattr $C$DW$602, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$602, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$602, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$602, DW_AT_decl_line(0x2bb)
.dwattr $C$DW$602, DW_AT_decl_column(0x15)
$C$DW$603 .dwtag DW_TAG_member
.dwattr $C$DW$603, DW_AT_type(*$C$DW$T$229)
.dwattr $C$DW$603, DW_AT_name("HIPIR8_bit")
.dwattr $C$DW$603, DW_AT_TI_symbol_name("HIPIR8_bit")
.dwattr $C$DW$603, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$603, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$603, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$603, DW_AT_decl_line(0x2c1)
.dwattr $C$DW$603, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$230
.dwattr $C$DW$T$230, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$230, DW_AT_decl_line(0x2ba)
.dwattr $C$DW$T$230, DW_AT_decl_column(0x08)
$C$DW$T$232 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$232, DW_AT_byte_size(0x04)
$C$DW$604 .dwtag DW_TAG_member
.dwattr $C$DW$604, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$604, DW_AT_name("HIPIR9")
.dwattr $C$DW$604, DW_AT_TI_symbol_name("HIPIR9")
.dwattr $C$DW$604, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$604, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$604, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$604, DW_AT_decl_line(0x2c7)
.dwattr $C$DW$604, DW_AT_decl_column(0x15)
$C$DW$605 .dwtag DW_TAG_member
.dwattr $C$DW$605, DW_AT_type(*$C$DW$T$231)
.dwattr $C$DW$605, DW_AT_name("HIPIR9_bit")
.dwattr $C$DW$605, DW_AT_TI_symbol_name("HIPIR9_bit")
.dwattr $C$DW$605, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$605, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$605, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$605, DW_AT_decl_line(0x2cd)
.dwattr $C$DW$605, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$232
.dwattr $C$DW$T$232, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$232, DW_AT_decl_line(0x2c6)
.dwattr $C$DW$T$232, DW_AT_decl_column(0x08)
$C$DW$T$234 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$234, DW_AT_byte_size(0x04)
$C$DW$606 .dwtag DW_TAG_member
.dwattr $C$DW$606, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$606, DW_AT_name("SIPR0")
.dwattr $C$DW$606, DW_AT_TI_symbol_name("SIPR0")
.dwattr $C$DW$606, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$606, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$606, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$606, DW_AT_decl_line(0x2d6)
.dwattr $C$DW$606, DW_AT_decl_column(0x15)
$C$DW$607 .dwtag DW_TAG_member
.dwattr $C$DW$607, DW_AT_type(*$C$DW$T$233)
.dwattr $C$DW$607, DW_AT_name("SIPR0_bit")
.dwattr $C$DW$607, DW_AT_TI_symbol_name("SIPR0_bit")
.dwattr $C$DW$607, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$607, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$607, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$607, DW_AT_decl_line(0x2da)
.dwattr $C$DW$607, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$234
.dwattr $C$DW$T$234, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$234, DW_AT_decl_line(0x2d5)
.dwattr $C$DW$T$234, DW_AT_decl_column(0x08)
$C$DW$T$236 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$236, DW_AT_byte_size(0x04)
$C$DW$608 .dwtag DW_TAG_member
.dwattr $C$DW$608, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$608, DW_AT_name("SIPR1")
.dwattr $C$DW$608, DW_AT_TI_symbol_name("SIPR1")
.dwattr $C$DW$608, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$608, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$608, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$608, DW_AT_decl_line(0x2e0)
.dwattr $C$DW$608, DW_AT_decl_column(0x15)
$C$DW$609 .dwtag DW_TAG_member
.dwattr $C$DW$609, DW_AT_type(*$C$DW$T$235)
.dwattr $C$DW$609, DW_AT_name("SIPR1_bit")
.dwattr $C$DW$609, DW_AT_TI_symbol_name("SIPR1_bit")
.dwattr $C$DW$609, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$609, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$609, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$609, DW_AT_decl_line(0x2e4)
.dwattr $C$DW$609, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$236
.dwattr $C$DW$T$236, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$236, DW_AT_decl_line(0x2df)
.dwattr $C$DW$T$236, DW_AT_decl_column(0x08)
$C$DW$T$238 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$238, DW_AT_byte_size(0x04)
$C$DW$610 .dwtag DW_TAG_member
.dwattr $C$DW$610, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$610, DW_AT_name("SITR0")
.dwattr $C$DW$610, DW_AT_TI_symbol_name("SITR0")
.dwattr $C$DW$610, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$610, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$610, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$610, DW_AT_decl_line(0x2ed)
.dwattr $C$DW$610, DW_AT_decl_column(0x15)
$C$DW$611 .dwtag DW_TAG_member
.dwattr $C$DW$611, DW_AT_type(*$C$DW$T$237)
.dwattr $C$DW$611, DW_AT_name("SITR0_bit")
.dwattr $C$DW$611, DW_AT_TI_symbol_name("SITR0_bit")
.dwattr $C$DW$611, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$611, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$611, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$611, DW_AT_decl_line(0x2f1)
.dwattr $C$DW$611, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$238
.dwattr $C$DW$T$238, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$238, DW_AT_decl_line(0x2ec)
.dwattr $C$DW$T$238, DW_AT_decl_column(0x08)
$C$DW$T$240 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$240, DW_AT_byte_size(0x04)
$C$DW$612 .dwtag DW_TAG_member
.dwattr $C$DW$612, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$612, DW_AT_name("SITR1")
.dwattr $C$DW$612, DW_AT_TI_symbol_name("SITR1")
.dwattr $C$DW$612, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$612, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$612, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$612, DW_AT_decl_line(0x2f7)
.dwattr $C$DW$612, DW_AT_decl_column(0x15)
$C$DW$613 .dwtag DW_TAG_member
.dwattr $C$DW$613, DW_AT_type(*$C$DW$T$239)
.dwattr $C$DW$613, DW_AT_name("SITR1_bit")
.dwattr $C$DW$613, DW_AT_TI_symbol_name("SITR1_bit")
.dwattr $C$DW$613, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$613, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$613, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$613, DW_AT_decl_line(0x2fb)
.dwattr $C$DW$613, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$240
.dwattr $C$DW$T$240, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$240, DW_AT_decl_line(0x2f6)
.dwattr $C$DW$T$240, DW_AT_decl_column(0x08)
$C$DW$T$242 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$242, DW_AT_byte_size(0x04)
$C$DW$614 .dwtag DW_TAG_member
.dwattr $C$DW$614, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$614, DW_AT_name("HINLR0")
.dwattr $C$DW$614, DW_AT_TI_symbol_name("HINLR0")
.dwattr $C$DW$614, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$614, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$614, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$614, DW_AT_decl_line(0x304)
.dwattr $C$DW$614, DW_AT_decl_column(0x15)
$C$DW$615 .dwtag DW_TAG_member
.dwattr $C$DW$615, DW_AT_type(*$C$DW$T$241)
.dwattr $C$DW$615, DW_AT_name("HINLR0_bit")
.dwattr $C$DW$615, DW_AT_TI_symbol_name("HINLR0_bit")
.dwattr $C$DW$615, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$615, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$615, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$615, DW_AT_decl_line(0x30a)
.dwattr $C$DW$615, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$242
.dwattr $C$DW$T$242, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$242, DW_AT_decl_line(0x303)
.dwattr $C$DW$T$242, DW_AT_decl_column(0x08)
$C$DW$T$244 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$244, DW_AT_byte_size(0x04)
$C$DW$616 .dwtag DW_TAG_member
.dwattr $C$DW$616, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$616, DW_AT_name("HINLR1")
.dwattr $C$DW$616, DW_AT_TI_symbol_name("HINLR1")
.dwattr $C$DW$616, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$616, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$616, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$616, DW_AT_decl_line(0x310)
.dwattr $C$DW$616, DW_AT_decl_column(0x15)
$C$DW$617 .dwtag DW_TAG_member
.dwattr $C$DW$617, DW_AT_type(*$C$DW$T$243)
.dwattr $C$DW$617, DW_AT_name("HINLR1_bit")
.dwattr $C$DW$617, DW_AT_TI_symbol_name("HINLR1_bit")
.dwattr $C$DW$617, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$617, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$617, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$617, DW_AT_decl_line(0x316)
.dwattr $C$DW$617, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$244
.dwattr $C$DW$T$244, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$244, DW_AT_decl_line(0x30f)
.dwattr $C$DW$T$244, DW_AT_decl_column(0x08)
$C$DW$T$246 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$246, DW_AT_byte_size(0x04)
$C$DW$618 .dwtag DW_TAG_member
.dwattr $C$DW$618, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$618, DW_AT_name("HINLR2")
.dwattr $C$DW$618, DW_AT_TI_symbol_name("HINLR2")
.dwattr $C$DW$618, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$618, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$618, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$618, DW_AT_decl_line(0x31c)
.dwattr $C$DW$618, DW_AT_decl_column(0x15)
$C$DW$619 .dwtag DW_TAG_member
.dwattr $C$DW$619, DW_AT_type(*$C$DW$T$245)
.dwattr $C$DW$619, DW_AT_name("HINLR2_bit")
.dwattr $C$DW$619, DW_AT_TI_symbol_name("HINLR2_bit")
.dwattr $C$DW$619, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$619, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$619, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$619, DW_AT_decl_line(0x322)
.dwattr $C$DW$619, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$246
.dwattr $C$DW$T$246, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$246, DW_AT_decl_line(0x31b)
.dwattr $C$DW$T$246, DW_AT_decl_column(0x08)
$C$DW$T$248 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$248, DW_AT_byte_size(0x04)
$C$DW$620 .dwtag DW_TAG_member
.dwattr $C$DW$620, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$620, DW_AT_name("HINLR3")
.dwattr $C$DW$620, DW_AT_TI_symbol_name("HINLR3")
.dwattr $C$DW$620, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$620, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$620, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$620, DW_AT_decl_line(0x328)
.dwattr $C$DW$620, DW_AT_decl_column(0x15)
$C$DW$621 .dwtag DW_TAG_member
.dwattr $C$DW$621, DW_AT_type(*$C$DW$T$247)
.dwattr $C$DW$621, DW_AT_name("HINLR3_bit")
.dwattr $C$DW$621, DW_AT_TI_symbol_name("HINLR3_bit")
.dwattr $C$DW$621, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$621, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$621, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$621, DW_AT_decl_line(0x32e)
.dwattr $C$DW$621, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$248
.dwattr $C$DW$T$248, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$248, DW_AT_decl_line(0x327)
.dwattr $C$DW$T$248, DW_AT_decl_column(0x08)
$C$DW$T$250 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$250, DW_AT_byte_size(0x04)
$C$DW$622 .dwtag DW_TAG_member
.dwattr $C$DW$622, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$622, DW_AT_name("HINLR4")
.dwattr $C$DW$622, DW_AT_TI_symbol_name("HINLR4")
.dwattr $C$DW$622, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$622, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$622, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$622, DW_AT_decl_line(0x334)
.dwattr $C$DW$622, DW_AT_decl_column(0x15)
$C$DW$623 .dwtag DW_TAG_member
.dwattr $C$DW$623, DW_AT_type(*$C$DW$T$249)
.dwattr $C$DW$623, DW_AT_name("HINLR4_bit")
.dwattr $C$DW$623, DW_AT_TI_symbol_name("HINLR4_bit")
.dwattr $C$DW$623, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$623, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$623, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$623, DW_AT_decl_line(0x33a)
.dwattr $C$DW$623, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$250
.dwattr $C$DW$T$250, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$250, DW_AT_decl_line(0x333)
.dwattr $C$DW$T$250, DW_AT_decl_column(0x08)
$C$DW$T$252 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$252, DW_AT_byte_size(0x04)
$C$DW$624 .dwtag DW_TAG_member
.dwattr $C$DW$624, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$624, DW_AT_name("HINLR5")
.dwattr $C$DW$624, DW_AT_TI_symbol_name("HINLR5")
.dwattr $C$DW$624, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$624, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$624, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$624, DW_AT_decl_line(0x340)
.dwattr $C$DW$624, DW_AT_decl_column(0x15)
$C$DW$625 .dwtag DW_TAG_member
.dwattr $C$DW$625, DW_AT_type(*$C$DW$T$251)
.dwattr $C$DW$625, DW_AT_name("HINLR5_bit")
.dwattr $C$DW$625, DW_AT_TI_symbol_name("HINLR5_bit")
.dwattr $C$DW$625, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$625, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$625, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$625, DW_AT_decl_line(0x346)
.dwattr $C$DW$625, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$252
.dwattr $C$DW$T$252, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$252, DW_AT_decl_line(0x33f)
.dwattr $C$DW$T$252, DW_AT_decl_column(0x08)
$C$DW$T$254 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$254, DW_AT_byte_size(0x04)
$C$DW$626 .dwtag DW_TAG_member
.dwattr $C$DW$626, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$626, DW_AT_name("HINLR6")
.dwattr $C$DW$626, DW_AT_TI_symbol_name("HINLR6")
.dwattr $C$DW$626, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$626, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$626, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$626, DW_AT_decl_line(0x34c)
.dwattr $C$DW$626, DW_AT_decl_column(0x15)
$C$DW$627 .dwtag DW_TAG_member
.dwattr $C$DW$627, DW_AT_type(*$C$DW$T$253)
.dwattr $C$DW$627, DW_AT_name("HINLR6_bit")
.dwattr $C$DW$627, DW_AT_TI_symbol_name("HINLR6_bit")
.dwattr $C$DW$627, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$627, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$627, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$627, DW_AT_decl_line(0x352)
.dwattr $C$DW$627, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$254
.dwattr $C$DW$T$254, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$254, DW_AT_decl_line(0x34b)
.dwattr $C$DW$T$254, DW_AT_decl_column(0x08)
$C$DW$T$256 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$256, DW_AT_byte_size(0x04)
$C$DW$628 .dwtag DW_TAG_member
.dwattr $C$DW$628, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$628, DW_AT_name("HINLR7")
.dwattr $C$DW$628, DW_AT_TI_symbol_name("HINLR7")
.dwattr $C$DW$628, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$628, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$628, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$628, DW_AT_decl_line(0x358)
.dwattr $C$DW$628, DW_AT_decl_column(0x15)
$C$DW$629 .dwtag DW_TAG_member
.dwattr $C$DW$629, DW_AT_type(*$C$DW$T$255)
.dwattr $C$DW$629, DW_AT_name("HINLR7_bit")
.dwattr $C$DW$629, DW_AT_TI_symbol_name("HINLR7_bit")
.dwattr $C$DW$629, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$629, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$629, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$629, DW_AT_decl_line(0x35e)
.dwattr $C$DW$629, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$256
.dwattr $C$DW$T$256, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$256, DW_AT_decl_line(0x357)
.dwattr $C$DW$T$256, DW_AT_decl_column(0x08)
$C$DW$T$258 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$258, DW_AT_byte_size(0x04)
$C$DW$630 .dwtag DW_TAG_member
.dwattr $C$DW$630, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$630, DW_AT_name("HINLR8")
.dwattr $C$DW$630, DW_AT_TI_symbol_name("HINLR8")
.dwattr $C$DW$630, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$630, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$630, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$630, DW_AT_decl_line(0x364)
.dwattr $C$DW$630, DW_AT_decl_column(0x15)
$C$DW$631 .dwtag DW_TAG_member
.dwattr $C$DW$631, DW_AT_type(*$C$DW$T$257)
.dwattr $C$DW$631, DW_AT_name("HINLR8_bit")
.dwattr $C$DW$631, DW_AT_TI_symbol_name("HINLR8_bit")
.dwattr $C$DW$631, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$631, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$631, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$631, DW_AT_decl_line(0x36a)
.dwattr $C$DW$631, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$258
.dwattr $C$DW$T$258, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$258, DW_AT_decl_line(0x363)
.dwattr $C$DW$T$258, DW_AT_decl_column(0x08)
$C$DW$T$260 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$260, DW_AT_byte_size(0x04)
$C$DW$632 .dwtag DW_TAG_member
.dwattr $C$DW$632, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$632, DW_AT_name("HINLR9")
.dwattr $C$DW$632, DW_AT_TI_symbol_name("HINLR9")
.dwattr $C$DW$632, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$632, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$632, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$632, DW_AT_decl_line(0x370)
.dwattr $C$DW$632, DW_AT_decl_column(0x15)
$C$DW$633 .dwtag DW_TAG_member
.dwattr $C$DW$633, DW_AT_type(*$C$DW$T$259)
.dwattr $C$DW$633, DW_AT_name("HINLR9_bit")
.dwattr $C$DW$633, DW_AT_TI_symbol_name("HINLR9_bit")
.dwattr $C$DW$633, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$633, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$633, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$633, DW_AT_decl_line(0x376)
.dwattr $C$DW$633, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$260
.dwattr $C$DW$T$260, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$260, DW_AT_decl_line(0x36f)
.dwattr $C$DW$T$260, DW_AT_decl_column(0x08)
$C$DW$T$262 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$262, DW_AT_byte_size(0x04)
$C$DW$634 .dwtag DW_TAG_member
.dwattr $C$DW$634, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$634, DW_AT_name("HIER")
.dwattr $C$DW$634, DW_AT_TI_symbol_name("HIER")
.dwattr $C$DW$634, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$634, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$634, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$634, DW_AT_decl_line(0x37f)
.dwattr $C$DW$634, DW_AT_decl_column(0x15)
$C$DW$635 .dwtag DW_TAG_member
.dwattr $C$DW$635, DW_AT_type(*$C$DW$T$261)
.dwattr $C$DW$635, DW_AT_name("HIER_bit")
.dwattr $C$DW$635, DW_AT_TI_symbol_name("HIER_bit")
.dwattr $C$DW$635, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$635, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$635, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$635, DW_AT_decl_line(0x384)
.dwattr $C$DW$635, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$262
.dwattr $C$DW$T$262, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$262, DW_AT_decl_line(0x37e)
.dwattr $C$DW$T$262, DW_AT_decl_column(0x08)
$C$DW$T$2 .dwtag DW_TAG_unspecified_type
.dwattr $C$DW$T$2, DW_AT_name("void")
$C$DW$T$3 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$3, DW_AT_type(*$C$DW$T$2)
.dwattr $C$DW$T$3, DW_AT_address_class(0x20)
$C$DW$T$4 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$4, DW_AT_encoding(DW_ATE_boolean)
.dwattr $C$DW$T$4, DW_AT_name("bool")
.dwattr $C$DW$T$4, DW_AT_byte_size(0x01)
$C$DW$T$5 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$5, DW_AT_encoding(DW_ATE_signed_char)
.dwattr $C$DW$T$5, DW_AT_name("signed char")
.dwattr $C$DW$T$5, DW_AT_byte_size(0x01)
$C$DW$T$6 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$6, DW_AT_encoding(DW_ATE_unsigned_char)
.dwattr $C$DW$T$6, DW_AT_name("unsigned char")
.dwattr $C$DW$T$6, DW_AT_byte_size(0x01)
$C$DW$T$263 .dwtag DW_TAG_typedef, DW_AT_name("uint8_t")
.dwattr $C$DW$T$263, DW_AT_type(*$C$DW$T$6)
.dwattr $C$DW$T$263, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$263, DW_AT_decl_file("/usr/share/ti/cgt-pru/include/stdint.h")
.dwattr $C$DW$T$263, DW_AT_decl_line(0x2b)
.dwattr $C$DW$T$263, DW_AT_decl_column(0x1c)
$C$DW$T$267 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$267, DW_AT_type(*$C$DW$T$263)
.dwattr $C$DW$T$267, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$267, DW_AT_byte_size(0x0a)
$C$DW$636 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$636, DW_AT_upper_bound(0x09)
.dwendtag $C$DW$T$267
$C$DW$T$270 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$270, DW_AT_type(*$C$DW$T$263)
.dwattr $C$DW$T$270, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$270, DW_AT_byte_size(0x02)
$C$DW$637 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$637, DW_AT_upper_bound(0x01)
.dwendtag $C$DW$T$270
$C$DW$T$307 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$307, DW_AT_type(*$C$DW$T$263)
$C$DW$T$308 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$308, DW_AT_type(*$C$DW$T$307)
.dwattr $C$DW$T$308, DW_AT_address_class(0x20)
$C$DW$T$7 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$7, DW_AT_encoding(DW_ATE_signed_char)
.dwattr $C$DW$T$7, DW_AT_name("wchar_t")
.dwattr $C$DW$T$7, DW_AT_byte_size(0x04)
$C$DW$T$8 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$8, DW_AT_encoding(DW_ATE_signed)
.dwattr $C$DW$T$8, DW_AT_name("short")
.dwattr $C$DW$T$8, DW_AT_byte_size(0x02)
$C$DW$T$324 .dwtag DW_TAG_typedef, DW_AT_name("int16_t")
.dwattr $C$DW$T$324, DW_AT_type(*$C$DW$T$8)
.dwattr $C$DW$T$324, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$324, DW_AT_decl_file("/usr/share/ti/cgt-pru/include/stdint.h")
.dwattr $C$DW$T$324, DW_AT_decl_line(0x2c)
.dwattr $C$DW$T$324, DW_AT_decl_column(0x1d)
$C$DW$T$9 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$9, DW_AT_encoding(DW_ATE_unsigned)
.dwattr $C$DW$T$9, DW_AT_name("unsigned short")
.dwattr $C$DW$T$9, DW_AT_byte_size(0x02)
$C$DW$T$36 .dwtag DW_TAG_typedef, DW_AT_name("uint16_t")
.dwattr $C$DW$T$36, DW_AT_type(*$C$DW$T$9)
.dwattr $C$DW$T$36, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$36, DW_AT_decl_file("/usr/share/ti/cgt-pru/include/stdint.h")
.dwattr $C$DW$T$36, DW_AT_decl_line(0x2d)
.dwattr $C$DW$T$36, DW_AT_decl_column(0x1c)
$C$DW$T$282 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$282, DW_AT_type(*$C$DW$T$36)
.dwattr $C$DW$T$282, DW_AT_language(DW_LANG_C)
$C$DW$638 .dwtag DW_TAG_subrange_type
.dwendtag $C$DW$T$282
$C$DW$T$313 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$313, DW_AT_type(*$C$DW$T$36)
.dwattr $C$DW$T$313, DW_AT_address_class(0x20)
$C$DW$T$10 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$10, DW_AT_encoding(DW_ATE_signed)
.dwattr $C$DW$T$10, DW_AT_name("int")
.dwattr $C$DW$T$10, DW_AT_byte_size(0x04)
$C$DW$T$321 .dwtag DW_TAG_typedef, DW_AT_name("int32_t")
.dwattr $C$DW$T$321, DW_AT_type(*$C$DW$T$10)
.dwattr $C$DW$T$321, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$321, DW_AT_decl_file("/usr/share/ti/cgt-pru/include/stdint.h")
.dwattr $C$DW$T$321, DW_AT_decl_line(0x2e)
.dwattr $C$DW$T$321, DW_AT_decl_column(0x1d)
$C$DW$T$11 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$11, DW_AT_encoding(DW_ATE_unsigned)
.dwattr $C$DW$T$11, DW_AT_name("unsigned int")
.dwattr $C$DW$T$11, DW_AT_byte_size(0x04)
$C$DW$T$32 .dwtag DW_TAG_typedef, DW_AT_name("uint32_t")
.dwattr $C$DW$T$32, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$T$32, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$32, DW_AT_decl_file("/usr/share/ti/cgt-pru/include/stdint.h")
.dwattr $C$DW$T$32, DW_AT_decl_line(0x2f)
.dwattr $C$DW$T$32, DW_AT_decl_column(0x1c)
$C$DW$T$33 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$33, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$33, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$33, DW_AT_byte_size(0x04)
$C$DW$639 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$639, DW_AT_upper_bound(0x00)
.dwendtag $C$DW$T$33
$C$DW$T$34 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$34, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$34, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$34, DW_AT_byte_size(0x08)
$C$DW$640 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$640, DW_AT_upper_bound(0x01)
.dwendtag $C$DW$T$34
$C$DW$T$101 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$101, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$101, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$101, DW_AT_byte_size(0x44)
$C$DW$641 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$641, DW_AT_upper_bound(0x10)
.dwendtag $C$DW$T$101
$C$DW$T$102 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$102, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$102, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$102, DW_AT_byte_size(0x17c)
$C$DW$642 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$642, DW_AT_upper_bound(0x5e)
.dwendtag $C$DW$T$102
$C$DW$T$103 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$103, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$103, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$103, DW_AT_byte_size(0x78)
$C$DW$643 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$643, DW_AT_upper_bound(0x1d)
.dwendtag $C$DW$T$103
$C$DW$T$104 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$104, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$104, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$104, DW_AT_byte_size(0x3c0)
$C$DW$644 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$644, DW_AT_upper_bound(0xef)
.dwendtag $C$DW$T$104
$C$DW$T$105 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$105, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$105, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$105, DW_AT_byte_size(0xf4)
$C$DW$645 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$645, DW_AT_upper_bound(0x3c)
.dwendtag $C$DW$T$105
$C$DW$T$106 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$106, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$106, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$106, DW_AT_byte_size(0x3d8)
$C$DW$646 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$646, DW_AT_upper_bound(0xf5)
.dwendtag $C$DW$T$106
$C$DW$T$107 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$107, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$107, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$107, DW_AT_byte_size(0x378)
$C$DW$647 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$647, DW_AT_upper_bound(0xdd)
.dwendtag $C$DW$T$107
$C$DW$T$109 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$109, DW_AT_type(*$C$DW$T$32)
$C$DW$T$337 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$337, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$T$337, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$337, DW_AT_byte_size(0x1000)
$C$DW$648 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$648, DW_AT_upper_bound(0x3ff)
.dwendtag $C$DW$T$337
$C$DW$T$12 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$12, DW_AT_encoding(DW_ATE_signed)
.dwattr $C$DW$T$12, DW_AT_name("long")
.dwattr $C$DW$T$12, DW_AT_byte_size(0x04)
$C$DW$T$13 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$13, DW_AT_encoding(DW_ATE_unsigned)
.dwattr $C$DW$T$13, DW_AT_name("unsigned long")
.dwattr $C$DW$T$13, DW_AT_byte_size(0x04)
$C$DW$T$14 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$14, DW_AT_encoding(DW_ATE_signed)
.dwattr $C$DW$T$14, DW_AT_name("long long")
.dwattr $C$DW$T$14, DW_AT_byte_size(0x08)
$C$DW$T$15 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$15, DW_AT_encoding(DW_ATE_unsigned)
.dwattr $C$DW$T$15, DW_AT_name("unsigned long long")
.dwattr $C$DW$T$15, DW_AT_byte_size(0x08)
$C$DW$T$284 .dwtag DW_TAG_typedef, DW_AT_name("uint64_t")
.dwattr $C$DW$T$284, DW_AT_type(*$C$DW$T$15)
.dwattr $C$DW$T$284, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$284, DW_AT_decl_file("/usr/share/ti/cgt-pru/include/stdint.h")
.dwattr $C$DW$T$284, DW_AT_decl_line(0x33)
.dwattr $C$DW$T$284, DW_AT_decl_column(0x20)
$C$DW$T$16 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$16, DW_AT_encoding(DW_ATE_float)
.dwattr $C$DW$T$16, DW_AT_name("float")
.dwattr $C$DW$T$16, DW_AT_byte_size(0x04)
$C$DW$T$17 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$17, DW_AT_encoding(DW_ATE_float)
.dwattr $C$DW$T$17, DW_AT_name("double")
.dwattr $C$DW$T$17, DW_AT_byte_size(0x08)
$C$DW$T$18 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$18, DW_AT_encoding(DW_ATE_float)
.dwattr $C$DW$T$18, DW_AT_name("long double")
.dwattr $C$DW$T$18, DW_AT_byte_size(0x08)
$C$DW$T$320 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$320, DW_AT_type(*$C$DW$T$6)
.dwattr $C$DW$T$320, DW_AT_address_class(0x20)
$C$DW$T$338 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$338, DW_AT_type(*$C$DW$T$6)
.dwattr $C$DW$T$338, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$338, DW_AT_byte_size(0x200)
$C$DW$649 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$649, DW_AT_upper_bound(0x1ff)
.dwendtag $C$DW$T$338
$C$DW$T$339 .dwtag DW_TAG_const_type
.dwattr $C$DW$T$339, DW_AT_type(*$C$DW$T$6)
$C$DW$T$340 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$340, DW_AT_type(*$C$DW$T$339)
.dwattr $C$DW$T$340, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$340, DW_AT_byte_size(0xab)
$C$DW$650 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$650, DW_AT_upper_bound(0xaa)
.dwendtag $C$DW$T$340
$C$DW$T$264 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$264, DW_AT_name("ch_map")
.dwattr $C$DW$T$264, DW_AT_byte_size(0x02)
$C$DW$651 .dwtag DW_TAG_member
.dwattr $C$DW$651, DW_AT_type(*$C$DW$T$263)
.dwattr $C$DW$651, DW_AT_name("evt")
.dwattr $C$DW$651, DW_AT_TI_symbol_name("evt")
.dwattr $C$DW$651, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$651, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$651, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_types.h")
.dwattr $C$DW$651, DW_AT_decl_line(0x3a)
.dwattr $C$DW$651, DW_AT_decl_column(0x0a)
$C$DW$652 .dwtag DW_TAG_member
.dwattr $C$DW$652, DW_AT_type(*$C$DW$T$263)
.dwattr $C$DW$652, DW_AT_name("ch")
.dwattr $C$DW$652, DW_AT_TI_symbol_name("ch")
.dwattr $C$DW$652, DW_AT_data_member_location[DW_OP_plus_uconst 0x1]
.dwattr $C$DW$652, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$652, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_types.h")
.dwattr $C$DW$652, DW_AT_decl_line(0x3b)
.dwattr $C$DW$652, DW_AT_decl_column(0x0a)
.dwendtag $C$DW$T$264
.dwattr $C$DW$T$264, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_types.h")
.dwattr $C$DW$T$264, DW_AT_decl_line(0x39)
.dwattr $C$DW$T$264, DW_AT_decl_column(0x08)
$C$DW$T$268 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$268, DW_AT_type(*$C$DW$T$264)
.dwattr $C$DW$T$268, DW_AT_address_class(0x20)
$C$DW$T$341 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$341, DW_AT_type(*$C$DW$T$264)
.dwattr $C$DW$T$341, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$341, DW_AT_byte_size(0x04)
$C$DW$653 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$653, DW_AT_upper_bound(0x01)
.dwendtag $C$DW$T$341
$C$DW$T$265 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$265, DW_AT_name("fw_custom")
.dwattr $C$DW$T$265, DW_AT_byte_size(0x14)
$C$DW$654 .dwtag DW_TAG_member
.dwattr $C$DW$654, DW_AT_type(*$C$DW$T$269)
.dwattr $C$DW$654, DW_AT_name("pru_ints")
.dwattr $C$DW$654, DW_AT_TI_symbol_name("pru_ints")
.dwattr $C$DW$654, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$654, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$654, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$654, DW_AT_decl_line(0x37)
.dwattr $C$DW$654, DW_AT_decl_column(0x1c)
$C$DW$655 .dwtag DW_TAG_member
.dwattr $C$DW$655, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$655, DW_AT_name("reserved")
.dwattr $C$DW$655, DW_AT_TI_symbol_name("reserved")
.dwattr $C$DW$655, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$655, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$655, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$655, DW_AT_decl_line(0x39)
.dwattr $C$DW$655, DW_AT_decl_column(0x0b)
.dwendtag $C$DW$T$265
.dwattr $C$DW$T$265, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$T$265, DW_AT_decl_line(0x35)
.dwattr $C$DW$T$265, DW_AT_decl_column(0x07)
$C$DW$T$266 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$266, DW_AT_name("fw_rsc_custom")
.dwattr $C$DW$T$266, DW_AT_byte_size(0x20)
$C$DW$656 .dwtag DW_TAG_member
.dwattr $C$DW$656, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$656, DW_AT_name("type")
.dwattr $C$DW$656, DW_AT_TI_symbol_name("type")
.dwattr $C$DW$656, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$656, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$656, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$656, DW_AT_decl_line(0x173)
.dwattr $C$DW$656, DW_AT_decl_column(0x0b)
$C$DW$657 .dwtag DW_TAG_member
.dwattr $C$DW$657, DW_AT_type(*$C$DW$T$136)
.dwattr $C$DW$657, DW_AT_name("u")
.dwattr $C$DW$657, DW_AT_TI_symbol_name("u")
.dwattr $C$DW$657, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$657, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$657, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$657, DW_AT_decl_line(0x17a)
.dwattr $C$DW$657, DW_AT_decl_column(0x04)
$C$DW$658 .dwtag DW_TAG_member
.dwattr $C$DW$658, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$658, DW_AT_name("rsc_size")
.dwattr $C$DW$658, DW_AT_TI_symbol_name("rsc_size")
.dwattr $C$DW$658, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$658, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$658, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$658, DW_AT_decl_line(0x17b)
.dwattr $C$DW$658, DW_AT_decl_column(0x0b)
$C$DW$659 .dwtag DW_TAG_member
.dwattr $C$DW$659, DW_AT_type(*$C$DW$T$265)
.dwattr $C$DW$659, DW_AT_name("rsc")
.dwattr $C$DW$659, DW_AT_TI_symbol_name("rsc")
.dwattr $C$DW$659, DW_AT_data_member_location[DW_OP_plus_uconst 0xc]
.dwattr $C$DW$659, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$659, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$659, DW_AT_decl_line(0x17c)
.dwattr $C$DW$659, DW_AT_decl_column(0x12)
.dwendtag $C$DW$T$266
.dwattr $C$DW$T$266, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$T$266, DW_AT_decl_line(0x172)
.dwattr $C$DW$T$266, DW_AT_decl_column(0x08)
$C$DW$T$269 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$269, DW_AT_name("fw_rsc_custom_ints")
.dwattr $C$DW$T$269, DW_AT_byte_size(0x14)
$C$DW$660 .dwtag DW_TAG_member
.dwattr $C$DW$660, DW_AT_type(*$C$DW$T$36)
.dwattr $C$DW$660, DW_AT_name("reserved")
.dwattr $C$DW$660, DW_AT_TI_symbol_name("reserved")
.dwattr $C$DW$660, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$660, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$660, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_types.h")
.dwattr $C$DW$660, DW_AT_decl_line(0x4f)
.dwattr $C$DW$660, DW_AT_decl_column(0x0b)
$C$DW$661 .dwtag DW_TAG_member
.dwattr $C$DW$661, DW_AT_type(*$C$DW$T$267)
.dwattr $C$DW$661, DW_AT_name("channel_host")
.dwattr $C$DW$661, DW_AT_TI_symbol_name("channel_host")
.dwattr $C$DW$661, DW_AT_data_member_location[DW_OP_plus_uconst 0x2]
.dwattr $C$DW$661, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$661, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_types.h")
.dwattr $C$DW$661, DW_AT_decl_line(0x50)
.dwattr $C$DW$661, DW_AT_decl_column(0x0a)
$C$DW$662 .dwtag DW_TAG_member
.dwattr $C$DW$662, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$662, DW_AT_name("num_evts")
.dwattr $C$DW$662, DW_AT_TI_symbol_name("num_evts")
.dwattr $C$DW$662, DW_AT_data_member_location[DW_OP_plus_uconst 0xc]
.dwattr $C$DW$662, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$662, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_types.h")
.dwattr $C$DW$662, DW_AT_decl_line(0x51)
.dwattr $C$DW$662, DW_AT_decl_column(0x0b)
$C$DW$663 .dwtag DW_TAG_member
.dwattr $C$DW$663, DW_AT_type(*$C$DW$T$268)
.dwattr $C$DW$663, DW_AT_name("event_channel")
.dwattr $C$DW$663, DW_AT_TI_symbol_name("event_channel")
.dwattr $C$DW$663, DW_AT_data_member_location[DW_OP_plus_uconst 0x10]
.dwattr $C$DW$663, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$663, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_types.h")
.dwattr $C$DW$663, DW_AT_decl_line(0x52)
.dwattr $C$DW$663, DW_AT_decl_column(0x11)
.dwendtag $C$DW$T$269
.dwattr $C$DW$T$269, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_types.h")
.dwattr $C$DW$T$269, DW_AT_decl_line(0x4e)
.dwattr $C$DW$T$269, DW_AT_decl_column(0x08)
$C$DW$T$272 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$272, DW_AT_name("fw_rsc_vdev")
.dwattr $C$DW$T$272, DW_AT_byte_size(0x1c)
$C$DW$664 .dwtag DW_TAG_member
.dwattr $C$DW$664, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$664, DW_AT_name("type")
.dwattr $C$DW$664, DW_AT_TI_symbol_name("type")
.dwattr $C$DW$664, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$664, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$664, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$664, DW_AT_decl_line(0x113)
.dwattr $C$DW$664, DW_AT_decl_column(0x0b)
$C$DW$665 .dwtag DW_TAG_member
.dwattr $C$DW$665, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$665, DW_AT_name("id")
.dwattr $C$DW$665, DW_AT_TI_symbol_name("id")
.dwattr $C$DW$665, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$665, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$665, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$665, DW_AT_decl_line(0x114)
.dwattr $C$DW$665, DW_AT_decl_column(0x0b)
$C$DW$666 .dwtag DW_TAG_member
.dwattr $C$DW$666, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$666, DW_AT_name("notifyid")
.dwattr $C$DW$666, DW_AT_TI_symbol_name("notifyid")
.dwattr $C$DW$666, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$666, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$666, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$666, DW_AT_decl_line(0x115)
.dwattr $C$DW$666, DW_AT_decl_column(0x0b)
$C$DW$667 .dwtag DW_TAG_member
.dwattr $C$DW$667, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$667, DW_AT_name("dfeatures")
.dwattr $C$DW$667, DW_AT_TI_symbol_name("dfeatures")
.dwattr $C$DW$667, DW_AT_data_member_location[DW_OP_plus_uconst 0xc]
.dwattr $C$DW$667, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$667, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$667, DW_AT_decl_line(0x116)
.dwattr $C$DW$667, DW_AT_decl_column(0x0b)
$C$DW$668 .dwtag DW_TAG_member
.dwattr $C$DW$668, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$668, DW_AT_name("gfeatures")
.dwattr $C$DW$668, DW_AT_TI_symbol_name("gfeatures")
.dwattr $C$DW$668, DW_AT_data_member_location[DW_OP_plus_uconst 0x10]
.dwattr $C$DW$668, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$668, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$668, DW_AT_decl_line(0x117)
.dwattr $C$DW$668, DW_AT_decl_column(0x0b)
$C$DW$669 .dwtag DW_TAG_member
.dwattr $C$DW$669, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$669, DW_AT_name("config_len")
.dwattr $C$DW$669, DW_AT_TI_symbol_name("config_len")
.dwattr $C$DW$669, DW_AT_data_member_location[DW_OP_plus_uconst 0x14]
.dwattr $C$DW$669, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$669, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$669, DW_AT_decl_line(0x118)
.dwattr $C$DW$669, DW_AT_decl_column(0x0b)
$C$DW$670 .dwtag DW_TAG_member
.dwattr $C$DW$670, DW_AT_type(*$C$DW$T$263)
.dwattr $C$DW$670, DW_AT_name("status")
.dwattr $C$DW$670, DW_AT_TI_symbol_name("status")
.dwattr $C$DW$670, DW_AT_data_member_location[DW_OP_plus_uconst 0x18]
.dwattr $C$DW$670, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$670, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$670, DW_AT_decl_line(0x119)
.dwattr $C$DW$670, DW_AT_decl_column(0x0a)
$C$DW$671 .dwtag DW_TAG_member
.dwattr $C$DW$671, DW_AT_type(*$C$DW$T$263)
.dwattr $C$DW$671, DW_AT_name("num_of_vrings")
.dwattr $C$DW$671, DW_AT_TI_symbol_name("num_of_vrings")
.dwattr $C$DW$671, DW_AT_data_member_location[DW_OP_plus_uconst 0x19]
.dwattr $C$DW$671, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$671, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$671, DW_AT_decl_line(0x11a)
.dwattr $C$DW$671, DW_AT_decl_column(0x0a)
$C$DW$672 .dwtag DW_TAG_member
.dwattr $C$DW$672, DW_AT_type(*$C$DW$T$270)
.dwattr $C$DW$672, DW_AT_name("reserved")
.dwattr $C$DW$672, DW_AT_TI_symbol_name("reserved")
.dwattr $C$DW$672, DW_AT_data_member_location[DW_OP_plus_uconst 0x1a]
.dwattr $C$DW$672, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$672, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$672, DW_AT_decl_line(0x11b)
.dwattr $C$DW$672, DW_AT_decl_column(0x0a)
$C$DW$673 .dwtag DW_TAG_member
.dwattr $C$DW$673, DW_AT_type(*$C$DW$T$271)
.dwattr $C$DW$673, DW_AT_name("vring")
.dwattr $C$DW$673, DW_AT_TI_symbol_name("vring")
.dwattr $C$DW$673, DW_AT_data_member_location[DW_OP_plus_uconst 0x1c]
.dwattr $C$DW$673, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$673, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$673, DW_AT_decl_line(0x11c)
.dwattr $C$DW$673, DW_AT_decl_column(0x1b)
.dwendtag $C$DW$T$272
.dwattr $C$DW$T$272, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$T$272, DW_AT_decl_line(0x112)
.dwattr $C$DW$T$272, DW_AT_decl_column(0x08)
$C$DW$T$273 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$273, DW_AT_name("fw_rsc_vdev_vring")
.dwattr $C$DW$T$273, DW_AT_byte_size(0x14)
$C$DW$674 .dwtag DW_TAG_member
.dwattr $C$DW$674, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$674, DW_AT_name("da")
.dwattr $C$DW$674, DW_AT_TI_symbol_name("da")
.dwattr $C$DW$674, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$674, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$674, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$674, DW_AT_decl_line(0xe7)
.dwattr $C$DW$674, DW_AT_decl_column(0x0b)
$C$DW$675 .dwtag DW_TAG_member
.dwattr $C$DW$675, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$675, DW_AT_name("align")
.dwattr $C$DW$675, DW_AT_TI_symbol_name("align")
.dwattr $C$DW$675, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$675, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$675, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$675, DW_AT_decl_line(0xe8)
.dwattr $C$DW$675, DW_AT_decl_column(0x0b)
$C$DW$676 .dwtag DW_TAG_member
.dwattr $C$DW$676, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$676, DW_AT_name("num")
.dwattr $C$DW$676, DW_AT_TI_symbol_name("num")
.dwattr $C$DW$676, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$676, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$676, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$676, DW_AT_decl_line(0xe9)
.dwattr $C$DW$676, DW_AT_decl_column(0x0b)
$C$DW$677 .dwtag DW_TAG_member
.dwattr $C$DW$677, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$677, DW_AT_name("notifyid")
.dwattr $C$DW$677, DW_AT_TI_symbol_name("notifyid")
.dwattr $C$DW$677, DW_AT_data_member_location[DW_OP_plus_uconst 0xc]
.dwattr $C$DW$677, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$677, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$677, DW_AT_decl_line(0xea)
.dwattr $C$DW$677, DW_AT_decl_column(0x0b)
$C$DW$678 .dwtag DW_TAG_member
.dwattr $C$DW$678, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$678, DW_AT_name("reserved")
.dwattr $C$DW$678, DW_AT_TI_symbol_name("reserved")
.dwattr $C$DW$678, DW_AT_data_member_location[DW_OP_plus_uconst 0x10]
.dwattr $C$DW$678, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$678, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$678, DW_AT_decl_line(0xeb)
.dwattr $C$DW$678, DW_AT_decl_column(0x0b)
.dwendtag $C$DW$T$273
.dwattr $C$DW$T$273, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$T$273, DW_AT_decl_line(0xe6)
.dwattr $C$DW$T$273, DW_AT_decl_column(0x08)
$C$DW$T$271 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$271, DW_AT_type(*$C$DW$T$273)
.dwattr $C$DW$T$271, DW_AT_language(DW_LANG_C)
$C$DW$679 .dwtag DW_TAG_subrange_type
.dwendtag $C$DW$T$271
$C$DW$T$310 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$310, DW_AT_type(*$C$DW$T$273)
.dwattr $C$DW$T$310, DW_AT_address_class(0x20)
$C$DW$T$274 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$274, DW_AT_name("my_resource_table")
.dwattr $C$DW$T$274, DW_AT_byte_size(0x7c)
$C$DW$680 .dwtag DW_TAG_member
.dwattr $C$DW$680, DW_AT_type(*$C$DW$T$277)
.dwattr $C$DW$680, DW_AT_name("base")
.dwattr $C$DW$680, DW_AT_TI_symbol_name("base")
.dwattr $C$DW$680, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$680, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$680, DW_AT_decl_file("/var/lib/cloud9/common/resource_table_1.h")
.dwattr $C$DW$680, DW_AT_decl_line(0x41)
.dwattr $C$DW$680, DW_AT_decl_column(0x18)
$C$DW$681 .dwtag DW_TAG_member
.dwattr $C$DW$681, DW_AT_type(*$C$DW$T$34)
.dwattr $C$DW$681, DW_AT_name("offset")
.dwattr $C$DW$681, DW_AT_TI_symbol_name("offset")
.dwattr $C$DW$681, DW_AT_data_member_location[DW_OP_plus_uconst 0x10]
.dwattr $C$DW$681, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$681, DW_AT_decl_file("/var/lib/cloud9/common/resource_table_1.h")
.dwattr $C$DW$681, DW_AT_decl_line(0x43)
.dwattr $C$DW$681, DW_AT_decl_column(0x0b)
$C$DW$682 .dwtag DW_TAG_member
.dwattr $C$DW$682, DW_AT_type(*$C$DW$T$272)
.dwattr $C$DW$682, DW_AT_name("rpmsg_vdev")
.dwattr $C$DW$682, DW_AT_TI_symbol_name("rpmsg_vdev")
.dwattr $C$DW$682, DW_AT_data_member_location[DW_OP_plus_uconst 0x18]
.dwattr $C$DW$682, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$682, DW_AT_decl_file("/var/lib/cloud9/common/resource_table_1.h")
.dwattr $C$DW$682, DW_AT_decl_line(0x46)
.dwattr $C$DW$682, DW_AT_decl_column(0x15)
$C$DW$683 .dwtag DW_TAG_member
.dwattr $C$DW$683, DW_AT_type(*$C$DW$T$273)
.dwattr $C$DW$683, DW_AT_name("rpmsg_vring0")
.dwattr $C$DW$683, DW_AT_TI_symbol_name("rpmsg_vring0")
.dwattr $C$DW$683, DW_AT_data_member_location[DW_OP_plus_uconst 0x34]
.dwattr $C$DW$683, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$683, DW_AT_decl_file("/var/lib/cloud9/common/resource_table_1.h")
.dwattr $C$DW$683, DW_AT_decl_line(0x47)
.dwattr $C$DW$683, DW_AT_decl_column(0x1b)
$C$DW$684 .dwtag DW_TAG_member
.dwattr $C$DW$684, DW_AT_type(*$C$DW$T$273)
.dwattr $C$DW$684, DW_AT_name("rpmsg_vring1")
.dwattr $C$DW$684, DW_AT_TI_symbol_name("rpmsg_vring1")
.dwattr $C$DW$684, DW_AT_data_member_location[DW_OP_plus_uconst 0x48]
.dwattr $C$DW$684, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$684, DW_AT_decl_file("/var/lib/cloud9/common/resource_table_1.h")
.dwattr $C$DW$684, DW_AT_decl_line(0x48)
.dwattr $C$DW$684, DW_AT_decl_column(0x1b)
$C$DW$685 .dwtag DW_TAG_member
.dwattr $C$DW$685, DW_AT_type(*$C$DW$T$266)
.dwattr $C$DW$685, DW_AT_name("pru_ints")
.dwattr $C$DW$685, DW_AT_TI_symbol_name("pru_ints")
.dwattr $C$DW$685, DW_AT_data_member_location[DW_OP_plus_uconst 0x5c]
.dwattr $C$DW$685, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$685, DW_AT_decl_file("/var/lib/cloud9/common/resource_table_1.h")
.dwattr $C$DW$685, DW_AT_decl_line(0x4b)
.dwattr $C$DW$685, DW_AT_decl_column(0x17)
.dwendtag $C$DW$T$274
.dwattr $C$DW$T$274, DW_AT_decl_file("/var/lib/cloud9/common/resource_table_1.h")
.dwattr $C$DW$T$274, DW_AT_decl_line(0x40)
.dwattr $C$DW$T$274, DW_AT_decl_column(0x08)
$C$DW$T$318 .dwtag DW_TAG_enumeration_type
.dwattr $C$DW$T$318, DW_AT_name("pru_rpmsg_ns_flags")
.dwattr $C$DW$T$318, DW_AT_byte_size(0x01)
$C$DW$686 .dwtag DW_TAG_enumerator, DW_AT_name("RPMSG_NS_CREATE"), DW_AT_const_value(0x00)
.dwattr $C$DW$686, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$686, DW_AT_decl_line(0x59)
.dwattr $C$DW$686, DW_AT_decl_column(0x05)
$C$DW$687 .dwtag DW_TAG_enumerator, DW_AT_name("RPMSG_NS_DESTROY"), DW_AT_const_value(0x01)
.dwattr $C$DW$687, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$687, DW_AT_decl_line(0x5a)
.dwattr $C$DW$687, DW_AT_decl_column(0x05)
.dwendtag $C$DW$T$318
.dwattr $C$DW$T$318, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$T$318, DW_AT_decl_line(0x58)
.dwattr $C$DW$T$318, DW_AT_decl_column(0x06)
$C$DW$T$275 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$275, DW_AT_name("pru_rpmsg_transport")
.dwattr $C$DW$T$275, DW_AT_byte_size(0x3c)
$C$DW$688 .dwtag DW_TAG_member
.dwattr $C$DW$688, DW_AT_type(*$C$DW$T$276)
.dwattr $C$DW$688, DW_AT_name("virtqueue0")
.dwattr $C$DW$688, DW_AT_TI_symbol_name("virtqueue0")
.dwattr $C$DW$688, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$688, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$688, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$688, DW_AT_decl_line(0x6b)
.dwattr $C$DW$688, DW_AT_decl_column(0x17)
$C$DW$689 .dwtag DW_TAG_member
.dwattr $C$DW$689, DW_AT_type(*$C$DW$T$276)
.dwattr $C$DW$689, DW_AT_name("virtqueue1")
.dwattr $C$DW$689, DW_AT_TI_symbol_name("virtqueue1")
.dwattr $C$DW$689, DW_AT_data_member_location[DW_OP_plus_uconst 0x1e]
.dwattr $C$DW$689, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$689, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$689, DW_AT_decl_line(0x6c)
.dwattr $C$DW$689, DW_AT_decl_column(0x17)
.dwendtag $C$DW$T$275
.dwattr $C$DW$T$275, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$T$275, DW_AT_decl_line(0x6a)
.dwattr $C$DW$T$275, DW_AT_decl_column(0x08)
$C$DW$T$309 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$309, DW_AT_type(*$C$DW$T$275)
.dwattr $C$DW$T$309, DW_AT_address_class(0x20)
$C$DW$T$276 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$276, DW_AT_name("pru_virtqueue")
.dwattr $C$DW$T$276, DW_AT_byte_size(0x1e)
$C$DW$690 .dwtag DW_TAG_member
.dwattr $C$DW$690, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$690, DW_AT_name("id")
.dwattr $C$DW$690, DW_AT_TI_symbol_name("id")
.dwattr $C$DW$690, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$690, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$690, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtqueue.h")
.dwattr $C$DW$690, DW_AT_decl_line(0x5e)
.dwattr $C$DW$690, DW_AT_decl_column(0x0b)
$C$DW$691 .dwtag DW_TAG_member
.dwattr $C$DW$691, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$691, DW_AT_name("to_arm_event")
.dwattr $C$DW$691, DW_AT_TI_symbol_name("to_arm_event")
.dwattr $C$DW$691, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$691, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$691, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtqueue.h")
.dwattr $C$DW$691, DW_AT_decl_line(0x5f)
.dwattr $C$DW$691, DW_AT_decl_column(0x0b)
$C$DW$692 .dwtag DW_TAG_member
.dwattr $C$DW$692, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$692, DW_AT_name("from_arm_event")
.dwattr $C$DW$692, DW_AT_TI_symbol_name("from_arm_event")
.dwattr $C$DW$692, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$692, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$692, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtqueue.h")
.dwattr $C$DW$692, DW_AT_decl_line(0x60)
.dwattr $C$DW$692, DW_AT_decl_column(0x0b)
$C$DW$693 .dwtag DW_TAG_member
.dwattr $C$DW$693, DW_AT_type(*$C$DW$T$36)
.dwattr $C$DW$693, DW_AT_name("last_avail_idx")
.dwattr $C$DW$693, DW_AT_TI_symbol_name("last_avail_idx")
.dwattr $C$DW$693, DW_AT_data_member_location[DW_OP_plus_uconst 0xc]
.dwattr $C$DW$693, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$693, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtqueue.h")
.dwattr $C$DW$693, DW_AT_decl_line(0x61)
.dwattr $C$DW$693, DW_AT_decl_column(0x0c)
$C$DW$694 .dwtag DW_TAG_member
.dwattr $C$DW$694, DW_AT_type(*$C$DW$T$281)
.dwattr $C$DW$694, DW_AT_name("vring")
.dwattr $C$DW$694, DW_AT_TI_symbol_name("vring")
.dwattr $C$DW$694, DW_AT_data_member_location[DW_OP_plus_uconst 0xe]
.dwattr $C$DW$694, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$694, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtqueue.h")
.dwattr $C$DW$694, DW_AT_decl_line(0x62)
.dwattr $C$DW$694, DW_AT_decl_column(0x10)
.dwendtag $C$DW$T$276
.dwattr $C$DW$T$276, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtqueue.h")
.dwattr $C$DW$T$276, DW_AT_decl_line(0x5d)
.dwattr $C$DW$T$276, DW_AT_decl_column(0x08)
$C$DW$T$277 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$277, DW_AT_name("resource_table")
.dwattr $C$DW$T$277, DW_AT_byte_size(0x10)
$C$DW$695 .dwtag DW_TAG_member
.dwattr $C$DW$695, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$695, DW_AT_name("ver")
.dwattr $C$DW$695, DW_AT_TI_symbol_name("ver")
.dwattr $C$DW$695, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$695, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$695, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$695, DW_AT_decl_line(0x59)
.dwattr $C$DW$695, DW_AT_decl_column(0x0b)
$C$DW$696 .dwtag DW_TAG_member
.dwattr $C$DW$696, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$696, DW_AT_name("num")
.dwattr $C$DW$696, DW_AT_TI_symbol_name("num")
.dwattr $C$DW$696, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$696, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$696, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$696, DW_AT_decl_line(0x5a)
.dwattr $C$DW$696, DW_AT_decl_column(0x0b)
$C$DW$697 .dwtag DW_TAG_member
.dwattr $C$DW$697, DW_AT_type(*$C$DW$T$34)
.dwattr $C$DW$697, DW_AT_name("reserved")
.dwattr $C$DW$697, DW_AT_TI_symbol_name("reserved")
.dwattr $C$DW$697, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$697, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$697, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$697, DW_AT_decl_line(0x5b)
.dwattr $C$DW$697, DW_AT_decl_column(0x0b)
.dwendtag $C$DW$T$277
.dwattr $C$DW$T$277, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$T$277, DW_AT_decl_line(0x58)
.dwattr $C$DW$T$277, DW_AT_decl_column(0x08)
$C$DW$T$281 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$281, DW_AT_name("vring")
.dwattr $C$DW$T$281, DW_AT_byte_size(0x10)
$C$DW$698 .dwtag DW_TAG_member
.dwattr $C$DW$698, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$698, DW_AT_name("num")
.dwattr $C$DW$698, DW_AT_TI_symbol_name("num")
.dwattr $C$DW$698, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$698, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$698, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$698, DW_AT_decl_line(0x5e)
.dwattr $C$DW$698, DW_AT_decl_column(0x0b)
$C$DW$699 .dwtag DW_TAG_member
.dwattr $C$DW$699, DW_AT_type(*$C$DW$T$278)
.dwattr $C$DW$699, DW_AT_name("desc")
.dwattr $C$DW$699, DW_AT_TI_symbol_name("desc")
.dwattr $C$DW$699, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$699, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$699, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$699, DW_AT_decl_line(0x60)
.dwattr $C$DW$699, DW_AT_decl_column(0x15)
$C$DW$700 .dwtag DW_TAG_member
.dwattr $C$DW$700, DW_AT_type(*$C$DW$T$279)
.dwattr $C$DW$700, DW_AT_name("avail")
.dwattr $C$DW$700, DW_AT_TI_symbol_name("avail")
.dwattr $C$DW$700, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$700, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$700, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$700, DW_AT_decl_line(0x62)
.dwattr $C$DW$700, DW_AT_decl_column(0x16)
$C$DW$701 .dwtag DW_TAG_member
.dwattr $C$DW$701, DW_AT_type(*$C$DW$T$280)
.dwattr $C$DW$701, DW_AT_name("used")
.dwattr $C$DW$701, DW_AT_TI_symbol_name("used")
.dwattr $C$DW$701, DW_AT_data_member_location[DW_OP_plus_uconst 0xc]
.dwattr $C$DW$701, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$701, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$701, DW_AT_decl_line(0x64)
.dwattr $C$DW$701, DW_AT_decl_column(0x15)
.dwendtag $C$DW$T$281
.dwattr $C$DW$T$281, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$T$281, DW_AT_decl_line(0x5d)
.dwattr $C$DW$T$281, DW_AT_decl_column(0x08)
$C$DW$T$283 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$283, DW_AT_name("vring_avail")
.dwattr $C$DW$T$283, DW_AT_byte_size(0x04)
$C$DW$702 .dwtag DW_TAG_member
.dwattr $C$DW$702, DW_AT_type(*$C$DW$T$36)
.dwattr $C$DW$702, DW_AT_name("flags")
.dwattr $C$DW$702, DW_AT_TI_symbol_name("flags")
.dwattr $C$DW$702, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$702, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$702, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$702, DW_AT_decl_line(0x4a)
.dwattr $C$DW$702, DW_AT_decl_column(0x0b)
$C$DW$703 .dwtag DW_TAG_member
.dwattr $C$DW$703, DW_AT_type(*$C$DW$T$36)
.dwattr $C$DW$703, DW_AT_name("idx")
.dwattr $C$DW$703, DW_AT_TI_symbol_name("idx")
.dwattr $C$DW$703, DW_AT_data_member_location[DW_OP_plus_uconst 0x2]
.dwattr $C$DW$703, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$703, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$703, DW_AT_decl_line(0x4b)
.dwattr $C$DW$703, DW_AT_decl_column(0x0b)
$C$DW$704 .dwtag DW_TAG_member
.dwattr $C$DW$704, DW_AT_type(*$C$DW$T$282)
.dwattr $C$DW$704, DW_AT_name("ring")
.dwattr $C$DW$704, DW_AT_TI_symbol_name("ring")
.dwattr $C$DW$704, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$704, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$704, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$704, DW_AT_decl_line(0x4c)
.dwattr $C$DW$704, DW_AT_decl_column(0x0b)
.dwendtag $C$DW$T$283
.dwattr $C$DW$T$283, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$T$283, DW_AT_decl_line(0x49)
.dwattr $C$DW$T$283, DW_AT_decl_column(0x08)
$C$DW$T$279 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$279, DW_AT_type(*$C$DW$T$283)
.dwattr $C$DW$T$279, DW_AT_address_class(0x20)
$C$DW$T$285 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$285, DW_AT_name("vring_desc")
.dwattr $C$DW$T$285, DW_AT_byte_size(0x10)
$C$DW$705 .dwtag DW_TAG_member
.dwattr $C$DW$705, DW_AT_type(*$C$DW$T$284)
.dwattr $C$DW$705, DW_AT_name("addr")
.dwattr $C$DW$705, DW_AT_TI_symbol_name("addr")
.dwattr $C$DW$705, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$705, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$705, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$705, DW_AT_decl_line(0x40)
.dwattr $C$DW$705, DW_AT_decl_column(0x0b)
$C$DW$706 .dwtag DW_TAG_member
.dwattr $C$DW$706, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$706, DW_AT_name("len")
.dwattr $C$DW$706, DW_AT_TI_symbol_name("len")
.dwattr $C$DW$706, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$706, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$706, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$706, DW_AT_decl_line(0x42)
.dwattr $C$DW$706, DW_AT_decl_column(0x0b)
$C$DW$707 .dwtag DW_TAG_member
.dwattr $C$DW$707, DW_AT_type(*$C$DW$T$36)
.dwattr $C$DW$707, DW_AT_name("flags")
.dwattr $C$DW$707, DW_AT_TI_symbol_name("flags")
.dwattr $C$DW$707, DW_AT_data_member_location[DW_OP_plus_uconst 0xc]
.dwattr $C$DW$707, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$707, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$707, DW_AT_decl_line(0x44)
.dwattr $C$DW$707, DW_AT_decl_column(0x0b)
$C$DW$708 .dwtag DW_TAG_member
.dwattr $C$DW$708, DW_AT_type(*$C$DW$T$36)
.dwattr $C$DW$708, DW_AT_name("next")
.dwattr $C$DW$708, DW_AT_TI_symbol_name("next")
.dwattr $C$DW$708, DW_AT_data_member_location[DW_OP_plus_uconst 0xe]
.dwattr $C$DW$708, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$708, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$708, DW_AT_decl_line(0x46)
.dwattr $C$DW$708, DW_AT_decl_column(0x0b)
.dwendtag $C$DW$T$285
.dwattr $C$DW$T$285, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$T$285, DW_AT_decl_line(0x3e)
.dwattr $C$DW$T$285, DW_AT_decl_column(0x08)
$C$DW$T$278 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$278, DW_AT_type(*$C$DW$T$285)
.dwattr $C$DW$T$278, DW_AT_address_class(0x20)
$C$DW$T$287 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$287, DW_AT_name("vring_used")
.dwattr $C$DW$T$287, DW_AT_byte_size(0x04)
$C$DW$709 .dwtag DW_TAG_member
.dwattr $C$DW$709, DW_AT_type(*$C$DW$T$36)
.dwattr $C$DW$709, DW_AT_name("flags")
.dwattr $C$DW$709, DW_AT_TI_symbol_name("flags")
.dwattr $C$DW$709, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$709, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$709, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$709, DW_AT_decl_line(0x58)
.dwattr $C$DW$709, DW_AT_decl_column(0x0b)
$C$DW$710 .dwtag DW_TAG_member
.dwattr $C$DW$710, DW_AT_type(*$C$DW$T$36)
.dwattr $C$DW$710, DW_AT_name("idx")
.dwattr $C$DW$710, DW_AT_TI_symbol_name("idx")
.dwattr $C$DW$710, DW_AT_data_member_location[DW_OP_plus_uconst 0x2]
.dwattr $C$DW$710, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$710, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$710, DW_AT_decl_line(0x59)
.dwattr $C$DW$710, DW_AT_decl_column(0x0b)
$C$DW$711 .dwtag DW_TAG_member
.dwattr $C$DW$711, DW_AT_type(*$C$DW$T$286)
.dwattr $C$DW$711, DW_AT_name("ring")
.dwattr $C$DW$711, DW_AT_TI_symbol_name("ring")
.dwattr $C$DW$711, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$711, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$711, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$711, DW_AT_decl_line(0x5a)
.dwattr $C$DW$711, DW_AT_decl_column(0x19)
.dwendtag $C$DW$T$287
.dwattr $C$DW$T$287, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$T$287, DW_AT_decl_line(0x57)
.dwattr $C$DW$T$287, DW_AT_decl_column(0x08)
$C$DW$T$280 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$280, DW_AT_type(*$C$DW$T$287)
.dwattr $C$DW$T$280, DW_AT_address_class(0x20)
$C$DW$T$288 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$288, DW_AT_name("vring_used_elem")
.dwattr $C$DW$T$288, DW_AT_byte_size(0x08)
$C$DW$712 .dwtag DW_TAG_member
.dwattr $C$DW$712, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$712, DW_AT_name("id")
.dwattr $C$DW$712, DW_AT_TI_symbol_name("id")
.dwattr $C$DW$712, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$712, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$712, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$712, DW_AT_decl_line(0x52)
.dwattr $C$DW$712, DW_AT_decl_column(0x0b)
$C$DW$713 .dwtag DW_TAG_member
.dwattr $C$DW$713, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$713, DW_AT_name("len")
.dwattr $C$DW$713, DW_AT_TI_symbol_name("len")
.dwattr $C$DW$713, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$713, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$713, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$713, DW_AT_decl_line(0x54)
.dwattr $C$DW$713, DW_AT_decl_column(0x0b)
.dwendtag $C$DW$T$288
.dwattr $C$DW$T$288, DW_AT_decl_file("/usr/lib/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$T$288, DW_AT_decl_line(0x50)
.dwattr $C$DW$T$288, DW_AT_decl_column(0x08)
$C$DW$T$286 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$286, DW_AT_type(*$C$DW$T$288)
.dwattr $C$DW$T$286, DW_AT_language(DW_LANG_C)
$C$DW$714 .dwtag DW_TAG_subrange_type
.dwendtag $C$DW$T$286
.dwattr $C$DW$CU, DW_AT_language(DW_LANG_C)
;***************************************************************
;* DWARF CIE ENTRIES *
;***************************************************************
$C$DW$CIE .dwcie 14
.dwcfi cfa_register, 8
.dwcfi cfa_offset, 0
.dwcfi undefined, 0
.dwcfi undefined, 1
.dwcfi undefined, 2
.dwcfi undefined, 3
.dwcfi undefined, 4
.dwcfi undefined, 5
.dwcfi undefined, 6
.dwcfi undefined, 7
.dwcfi same_value, 8
.dwcfi same_value, 9
.dwcfi same_value, 10
.dwcfi same_value, 11
.dwcfi undefined, 12
.dwcfi undefined, 13
.dwcfi undefined, 14
.dwcfi undefined, 15
.dwcfi same_value, 16
.dwcfi same_value, 17
.dwcfi same_value, 18
.dwcfi same_value, 19
.dwcfi same_value, 20
.dwcfi same_value, 21
.dwcfi same_value, 22
.dwcfi same_value, 23
.dwcfi same_value, 24
.dwcfi same_value, 25
.dwcfi same_value, 26
.dwcfi same_value, 27
.dwcfi same_value, 28
.dwcfi same_value, 29
.dwcfi same_value, 30
.dwcfi same_value, 31
.dwcfi same_value, 32
.dwcfi same_value, 33
.dwcfi same_value, 34
.dwcfi same_value, 35
.dwcfi same_value, 36
.dwcfi same_value, 37
.dwcfi same_value, 38
.dwcfi same_value, 39
.dwcfi same_value, 40
.dwcfi same_value, 41
.dwcfi same_value, 42
.dwcfi same_value, 43
.dwcfi same_value, 44
.dwcfi same_value, 45
.dwcfi same_value, 46
.dwcfi same_value, 47
.dwcfi same_value, 48
.dwcfi same_value, 49
.dwcfi same_value, 50
.dwcfi same_value, 51
.dwcfi same_value, 52
.dwcfi same_value, 53
.dwcfi same_value, 54
.dwcfi same_value, 55
.dwcfi undefined, 56
.dwcfi undefined, 57
.dwcfi undefined, 58
.dwcfi undefined, 59
.dwcfi undefined, 60
.dwcfi undefined, 61
.dwcfi undefined, 62
.dwcfi undefined, 63
.dwcfi undefined, 64
.dwcfi undefined, 65
.dwcfi undefined, 66
.dwcfi undefined, 67
.dwcfi undefined, 68
.dwcfi undefined, 69
.dwcfi undefined, 70
.dwcfi undefined, 71
.dwcfi undefined, 72
.dwcfi undefined, 73
.dwcfi undefined, 74
.dwcfi undefined, 75
.dwcfi undefined, 76
.dwcfi undefined, 77
.dwcfi undefined, 78
.dwcfi undefined, 79
.dwcfi undefined, 80
.dwcfi undefined, 81
.dwcfi undefined, 82
.dwcfi undefined, 83
.dwcfi undefined, 84
.dwcfi undefined, 85
.dwcfi undefined, 86
.dwcfi undefined, 87
.dwcfi undefined, 88
.dwcfi undefined, 89
.dwcfi undefined, 90
.dwcfi undefined, 91
.dwcfi undefined, 92
.dwcfi undefined, 93
.dwcfi undefined, 94
.dwcfi undefined, 95
.dwcfi undefined, 96
.dwcfi undefined, 97
.dwcfi undefined, 98
.dwcfi undefined, 99
.dwcfi undefined, 100
.dwcfi undefined, 101
.dwcfi undefined, 102
.dwcfi undefined, 103
.dwcfi undefined, 104
.dwcfi undefined, 105
.dwcfi undefined, 106
.dwcfi undefined, 107
.dwcfi undefined, 108
.dwcfi undefined, 109
.dwcfi undefined, 110
.dwcfi undefined, 111
.dwcfi undefined, 112
.dwcfi undefined, 113
.dwcfi undefined, 114
.dwcfi undefined, 115
.dwcfi undefined, 116
.dwcfi undefined, 117
.dwcfi undefined, 118
.dwcfi undefined, 119
.dwcfi undefined, 120
.dwcfi undefined, 121
.dwcfi undefined, 122
.dwcfi undefined, 123
.dwcfi undefined, 124
.dwcfi undefined, 125
.dwcfi undefined, 126
.dwcfi undefined, 127
.dwcfi undefined, 128
.dwcfi undefined, 129
.dwcfi undefined, 130
.dwcfi undefined, 131
.dwcfi undefined, 132
.dwcfi undefined, 133
.dwcfi undefined, 134
.dwendentry
;***************************************************************
;* DWARF REGISTER MAP *
;***************************************************************
$C$DW$715 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R0_b0")
.dwattr $C$DW$715, DW_AT_location[DW_OP_reg0]
$C$DW$716 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R0_b1")
.dwattr $C$DW$716, DW_AT_location[DW_OP_reg1]
$C$DW$717 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R0_b2")
.dwattr $C$DW$717, DW_AT_location[DW_OP_reg2]
$C$DW$718 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R0_b3")
.dwattr $C$DW$718, DW_AT_location[DW_OP_reg3]
$C$DW$719 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R1_b0")
.dwattr $C$DW$719, DW_AT_location[DW_OP_reg4]
$C$DW$720 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R1_b1")
.dwattr $C$DW$720, DW_AT_location[DW_OP_reg5]
$C$DW$721 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R1_b2")
.dwattr $C$DW$721, DW_AT_location[DW_OP_reg6]
$C$DW$722 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R1_b3")
.dwattr $C$DW$722, DW_AT_location[DW_OP_reg7]
$C$DW$723 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R2_b0")
.dwattr $C$DW$723, DW_AT_location[DW_OP_reg8]
$C$DW$724 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R2_b1")
.dwattr $C$DW$724, DW_AT_location[DW_OP_reg9]
$C$DW$725 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R2_b2")
.dwattr $C$DW$725, DW_AT_location[DW_OP_reg10]
$C$DW$726 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R2_b3")
.dwattr $C$DW$726, DW_AT_location[DW_OP_reg11]
$C$DW$727 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R3_b0")
.dwattr $C$DW$727, DW_AT_location[DW_OP_reg12]
$C$DW$728 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R3_b1")
.dwattr $C$DW$728, DW_AT_location[DW_OP_reg13]
$C$DW$729 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R3_b2")
.dwattr $C$DW$729, DW_AT_location[DW_OP_reg14]
$C$DW$730 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R3_b3")
.dwattr $C$DW$730, DW_AT_location[DW_OP_reg15]
$C$DW$731 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R4_b0")
.dwattr $C$DW$731, DW_AT_location[DW_OP_reg16]
$C$DW$732 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R4_b1")
.dwattr $C$DW$732, DW_AT_location[DW_OP_reg17]
$C$DW$733 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R4_b2")
.dwattr $C$DW$733, DW_AT_location[DW_OP_reg18]
$C$DW$734 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R4_b3")
.dwattr $C$DW$734, DW_AT_location[DW_OP_reg19]
$C$DW$735 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R5_b0")
.dwattr $C$DW$735, DW_AT_location[DW_OP_reg20]
$C$DW$736 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R5_b1")
.dwattr $C$DW$736, DW_AT_location[DW_OP_reg21]
$C$DW$737 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R5_b2")
.dwattr $C$DW$737, DW_AT_location[DW_OP_reg22]
$C$DW$738 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R5_b3")
.dwattr $C$DW$738, DW_AT_location[DW_OP_reg23]
$C$DW$739 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R6_b0")
.dwattr $C$DW$739, DW_AT_location[DW_OP_reg24]
$C$DW$740 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R6_b1")
.dwattr $C$DW$740, DW_AT_location[DW_OP_reg25]
$C$DW$741 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R6_b2")
.dwattr $C$DW$741, DW_AT_location[DW_OP_reg26]
$C$DW$742 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R6_b3")
.dwattr $C$DW$742, DW_AT_location[DW_OP_reg27]
$C$DW$743 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R7_b0")
.dwattr $C$DW$743, DW_AT_location[DW_OP_reg28]
$C$DW$744 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R7_b1")
.dwattr $C$DW$744, DW_AT_location[DW_OP_reg29]
$C$DW$745 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R7_b2")
.dwattr $C$DW$745, DW_AT_location[DW_OP_reg30]
$C$DW$746 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R7_b3")
.dwattr $C$DW$746, DW_AT_location[DW_OP_reg31]
$C$DW$747 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R8_b0")
.dwattr $C$DW$747, DW_AT_location[DW_OP_regx 0x20]
$C$DW$748 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R8_b1")
.dwattr $C$DW$748, DW_AT_location[DW_OP_regx 0x21]
$C$DW$749 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R8_b2")
.dwattr $C$DW$749, DW_AT_location[DW_OP_regx 0x22]
$C$DW$750 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R8_b3")
.dwattr $C$DW$750, DW_AT_location[DW_OP_regx 0x23]
$C$DW$751 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R9_b0")
.dwattr $C$DW$751, DW_AT_location[DW_OP_regx 0x24]
$C$DW$752 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R9_b1")
.dwattr $C$DW$752, DW_AT_location[DW_OP_regx 0x25]
$C$DW$753 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R9_b2")
.dwattr $C$DW$753, DW_AT_location[DW_OP_regx 0x26]
$C$DW$754 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R9_b3")
.dwattr $C$DW$754, DW_AT_location[DW_OP_regx 0x27]
$C$DW$755 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R10_b0")
.dwattr $C$DW$755, DW_AT_location[DW_OP_regx 0x28]
$C$DW$756 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R10_b1")
.dwattr $C$DW$756, DW_AT_location[DW_OP_regx 0x29]
$C$DW$757 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R10_b2")
.dwattr $C$DW$757, DW_AT_location[DW_OP_regx 0x2a]
$C$DW$758 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R10_b3")
.dwattr $C$DW$758, DW_AT_location[DW_OP_regx 0x2b]
$C$DW$759 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R11_b0")
.dwattr $C$DW$759, DW_AT_location[DW_OP_regx 0x2c]
$C$DW$760 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R11_b1")
.dwattr $C$DW$760, DW_AT_location[DW_OP_regx 0x2d]
$C$DW$761 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R11_b2")
.dwattr $C$DW$761, DW_AT_location[DW_OP_regx 0x2e]
$C$DW$762 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R11_b3")
.dwattr $C$DW$762, DW_AT_location[DW_OP_regx 0x2f]
$C$DW$763 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R12_b0")
.dwattr $C$DW$763, DW_AT_location[DW_OP_regx 0x30]
$C$DW$764 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R12_b1")
.dwattr $C$DW$764, DW_AT_location[DW_OP_regx 0x31]
$C$DW$765 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R12_b2")
.dwattr $C$DW$765, DW_AT_location[DW_OP_regx 0x32]
$C$DW$766 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R12_b3")
.dwattr $C$DW$766, DW_AT_location[DW_OP_regx 0x33]
$C$DW$767 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R13_b0")
.dwattr $C$DW$767, DW_AT_location[DW_OP_regx 0x34]
$C$DW$768 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R13_b1")
.dwattr $C$DW$768, DW_AT_location[DW_OP_regx 0x35]
$C$DW$769 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R13_b2")
.dwattr $C$DW$769, DW_AT_location[DW_OP_regx 0x36]
$C$DW$770 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R13_b3")
.dwattr $C$DW$770, DW_AT_location[DW_OP_regx 0x37]
$C$DW$771 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R14_b0")
.dwattr $C$DW$771, DW_AT_location[DW_OP_regx 0x38]
$C$DW$772 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R14_b1")
.dwattr $C$DW$772, DW_AT_location[DW_OP_regx 0x39]
$C$DW$773 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R14_b2")
.dwattr $C$DW$773, DW_AT_location[DW_OP_regx 0x3a]
$C$DW$774 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R14_b3")
.dwattr $C$DW$774, DW_AT_location[DW_OP_regx 0x3b]
$C$DW$775 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R15_b0")
.dwattr $C$DW$775, DW_AT_location[DW_OP_regx 0x3c]
$C$DW$776 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R15_b1")
.dwattr $C$DW$776, DW_AT_location[DW_OP_regx 0x3d]
$C$DW$777 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R15_b2")
.dwattr $C$DW$777, DW_AT_location[DW_OP_regx 0x3e]
$C$DW$778 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R15_b3")
.dwattr $C$DW$778, DW_AT_location[DW_OP_regx 0x3f]
$C$DW$779 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R16_b0")
.dwattr $C$DW$779, DW_AT_location[DW_OP_regx 0x40]
$C$DW$780 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R16_b1")
.dwattr $C$DW$780, DW_AT_location[DW_OP_regx 0x41]
$C$DW$781 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R16_b2")
.dwattr $C$DW$781, DW_AT_location[DW_OP_regx 0x42]
$C$DW$782 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R16_b3")
.dwattr $C$DW$782, DW_AT_location[DW_OP_regx 0x43]
$C$DW$783 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R17_b0")
.dwattr $C$DW$783, DW_AT_location[DW_OP_regx 0x44]
$C$DW$784 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R17_b1")
.dwattr $C$DW$784, DW_AT_location[DW_OP_regx 0x45]
$C$DW$785 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R17_b2")
.dwattr $C$DW$785, DW_AT_location[DW_OP_regx 0x46]
$C$DW$786 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R17_b3")
.dwattr $C$DW$786, DW_AT_location[DW_OP_regx 0x47]
$C$DW$787 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R18_b0")
.dwattr $C$DW$787, DW_AT_location[DW_OP_regx 0x48]
$C$DW$788 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R18_b1")
.dwattr $C$DW$788, DW_AT_location[DW_OP_regx 0x49]
$C$DW$789 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R18_b2")
.dwattr $C$DW$789, DW_AT_location[DW_OP_regx 0x4a]
$C$DW$790 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R18_b3")
.dwattr $C$DW$790, DW_AT_location[DW_OP_regx 0x4b]
$C$DW$791 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R19_b0")
.dwattr $C$DW$791, DW_AT_location[DW_OP_regx 0x4c]
$C$DW$792 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R19_b1")
.dwattr $C$DW$792, DW_AT_location[DW_OP_regx 0x4d]
$C$DW$793 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R19_b2")
.dwattr $C$DW$793, DW_AT_location[DW_OP_regx 0x4e]
$C$DW$794 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R19_b3")
.dwattr $C$DW$794, DW_AT_location[DW_OP_regx 0x4f]
$C$DW$795 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R20_b0")
.dwattr $C$DW$795, DW_AT_location[DW_OP_regx 0x50]
$C$DW$796 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R20_b1")
.dwattr $C$DW$796, DW_AT_location[DW_OP_regx 0x51]
$C$DW$797 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R20_b2")
.dwattr $C$DW$797, DW_AT_location[DW_OP_regx 0x52]
$C$DW$798 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R20_b3")
.dwattr $C$DW$798, DW_AT_location[DW_OP_regx 0x53]
$C$DW$799 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R21_b0")
.dwattr $C$DW$799, DW_AT_location[DW_OP_regx 0x54]
$C$DW$800 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R21_b1")
.dwattr $C$DW$800, DW_AT_location[DW_OP_regx 0x55]
$C$DW$801 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R21_b2")
.dwattr $C$DW$801, DW_AT_location[DW_OP_regx 0x56]
$C$DW$802 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R21_b3")
.dwattr $C$DW$802, DW_AT_location[DW_OP_regx 0x57]
$C$DW$803 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R22_b0")
.dwattr $C$DW$803, DW_AT_location[DW_OP_regx 0x58]
$C$DW$804 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R22_b1")
.dwattr $C$DW$804, DW_AT_location[DW_OP_regx 0x59]
$C$DW$805 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R22_b2")
.dwattr $C$DW$805, DW_AT_location[DW_OP_regx 0x5a]
$C$DW$806 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R22_b3")
.dwattr $C$DW$806, DW_AT_location[DW_OP_regx 0x5b]
$C$DW$807 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R23_b0")
.dwattr $C$DW$807, DW_AT_location[DW_OP_regx 0x5c]
$C$DW$808 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R23_b1")
.dwattr $C$DW$808, DW_AT_location[DW_OP_regx 0x5d]
$C$DW$809 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R23_b2")
.dwattr $C$DW$809, DW_AT_location[DW_OP_regx 0x5e]
$C$DW$810 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R23_b3")
.dwattr $C$DW$810, DW_AT_location[DW_OP_regx 0x5f]
$C$DW$811 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R24_b0")
.dwattr $C$DW$811, DW_AT_location[DW_OP_regx 0x60]
$C$DW$812 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R24_b1")
.dwattr $C$DW$812, DW_AT_location[DW_OP_regx 0x61]
$C$DW$813 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R24_b2")
.dwattr $C$DW$813, DW_AT_location[DW_OP_regx 0x62]
$C$DW$814 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R24_b3")
.dwattr $C$DW$814, DW_AT_location[DW_OP_regx 0x63]
$C$DW$815 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R25_b0")
.dwattr $C$DW$815, DW_AT_location[DW_OP_regx 0x64]
$C$DW$816 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R25_b1")
.dwattr $C$DW$816, DW_AT_location[DW_OP_regx 0x65]
$C$DW$817 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R25_b2")
.dwattr $C$DW$817, DW_AT_location[DW_OP_regx 0x66]
$C$DW$818 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R25_b3")
.dwattr $C$DW$818, DW_AT_location[DW_OP_regx 0x67]
$C$DW$819 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R26_b0")
.dwattr $C$DW$819, DW_AT_location[DW_OP_regx 0x68]
$C$DW$820 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R26_b1")
.dwattr $C$DW$820, DW_AT_location[DW_OP_regx 0x69]
$C$DW$821 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R26_b2")
.dwattr $C$DW$821, DW_AT_location[DW_OP_regx 0x6a]
$C$DW$822 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R26_b3")
.dwattr $C$DW$822, DW_AT_location[DW_OP_regx 0x6b]
$C$DW$823 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R27_b0")
.dwattr $C$DW$823, DW_AT_location[DW_OP_regx 0x6c]
$C$DW$824 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R27_b1")
.dwattr $C$DW$824, DW_AT_location[DW_OP_regx 0x6d]
$C$DW$825 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R27_b2")
.dwattr $C$DW$825, DW_AT_location[DW_OP_regx 0x6e]
$C$DW$826 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R27_b3")
.dwattr $C$DW$826, DW_AT_location[DW_OP_regx 0x6f]
$C$DW$827 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R28_b0")
.dwattr $C$DW$827, DW_AT_location[DW_OP_regx 0x70]
$C$DW$828 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R28_b1")
.dwattr $C$DW$828, DW_AT_location[DW_OP_regx 0x71]
$C$DW$829 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R28_b2")
.dwattr $C$DW$829, DW_AT_location[DW_OP_regx 0x72]
$C$DW$830 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R28_b3")
.dwattr $C$DW$830, DW_AT_location[DW_OP_regx 0x73]
$C$DW$831 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R29_b0")
.dwattr $C$DW$831, DW_AT_location[DW_OP_regx 0x74]
$C$DW$832 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R29_b1")
.dwattr $C$DW$832, DW_AT_location[DW_OP_regx 0x75]
$C$DW$833 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R29_b2")
.dwattr $C$DW$833, DW_AT_location[DW_OP_regx 0x76]
$C$DW$834 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R29_b3")
.dwattr $C$DW$834, DW_AT_location[DW_OP_regx 0x77]
$C$DW$835 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R30_b0")
.dwattr $C$DW$835, DW_AT_location[DW_OP_regx 0x78]
$C$DW$836 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R30_b1")
.dwattr $C$DW$836, DW_AT_location[DW_OP_regx 0x79]
$C$DW$837 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R30_b2")
.dwattr $C$DW$837, DW_AT_location[DW_OP_regx 0x7a]
$C$DW$838 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R30_b3")
.dwattr $C$DW$838, DW_AT_location[DW_OP_regx 0x7b]
$C$DW$839 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R31_b0")
.dwattr $C$DW$839, DW_AT_location[DW_OP_regx 0x7c]
$C$DW$840 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R31_b1")
.dwattr $C$DW$840, DW_AT_location[DW_OP_regx 0x7d]
$C$DW$841 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R31_b2")
.dwattr $C$DW$841, DW_AT_location[DW_OP_regx 0x7e]
$C$DW$842 .dwtag DW_TAG_TI_assign_register, DW_AT_name("R31_b3")
.dwattr $C$DW$842, DW_AT_location[DW_OP_regx 0x7f]
.dwendtag $C$DW$CU
| 50.754519 | 143 | 0.722158 |
9745876a22ab610b20ac5eec2ff6b48842524334 | 3,075 | asm | Assembly | C5515_Support_Files/C5515_Lib/dsplib_2.40.00/55x_src/q15tofl.asm | HeroSizy/Sizy | 89bc29940dc7666591259730b5112efd0a626043 | [
"Unlicense"
] | null | null | null | C5515_Support_Files/C5515_Lib/dsplib_2.40.00/55x_src/q15tofl.asm | HeroSizy/Sizy | 89bc29940dc7666591259730b5112efd0a626043 | [
"Unlicense"
] | null | null | null | C5515_Support_Files/C5515_Lib/dsplib_2.40.00/55x_src/q15tofl.asm | HeroSizy/Sizy | 89bc29940dc7666591259730b5112efd0a626043 | [
"Unlicense"
] | null | null | null | ;***********************************************************
; Version 2.40.00
;***********************************************************
; Function: q15tofl
; Description: converts Q15 to IEEE floating point
;
; Copyright Texas instruments Inc, 2000
;****************************************************************
.ARMS_off ;enable assembler for ARMS=0
.CPL_on ;enable assembler for CPL=1
.mmregs
;----------------------------------------------------------------
; Function definition:
;----------------------------------------------------------------
.global _q15tofl
_q15tofl:
;----------------------------------------------------------------
; Prologue: establish local frame, reset sign extension mode
;----------------------------------------------------------------
AADD #-7, SP
BCLR SATD
BCLR SXMD
;----------------------------------------------------------------
; Process function arguments
;----------------------------------------------------------------
; MOV AR0, AR2
; MOV AR1, AR3
||MOV T0, AC1
SUB #1, AC1
MOV AC1, mmap(BRC0)
;----------------------------------------------------------------
; Store function constants
;----------------------------------------------------------------
MOV #127, *SP(#4)
MOV #32768, *SP(#5)
MOV #1, *SP(#6)
MOV #16383, *SP(#0)
MOV #65535, *SP(#1)
BSET SXMD
MOV *AR0+ << #16, AC0
;----------------------------------------------------------------
; Convert each element of vector A, to Q15 format
; Pre-Load first vector element
;----------------------------------------------------------------
||RPTB end_loop
loop_start:
BCC zero, AC0 == #0
CMP *(#(9))== #32767, TC2
AND #32768 << #16, AC0, AC1
BCC not_q_one, !TC2
MOV #0 << #16, AC0
not_q_one:
ABS AC0
;----------------------------------------------------------------
; Shift right by one, since exp and norm never count shift into
; upper most bit (bit 31)
;----------------------------------------------------------------
SFTSC AC0, #-1
EXP AC0, T3
MOV HI(AC1 << #0), *SP(#2)
SFTS AC0, T3
MOV mmap(T3), AC1
NEG AC1
ADD *SP(#4), AC1
MOV AC1 << #0, *SP(#3)
;----------------------------------------------------------------
; Remove upper most bit as this becomes an implicit 1
; 2^exp * (1.f) where f is mantissa
;----------------------------------------------------------------
MOV40 dbl(*SP(#0)), AC1
AND AC1, AC0
; SFTSC AC0, #-7
MOV *SP(#3) << #7, AC1
OR *SP(#2), AC1
SFTSC AC0, #-7
MOV *(#(11)) << #16, AC1
OR AC1, AC0
zero:
store_result:
MOV AC0, dbl(*AR1+)
MOV *AR0+ << #16, AC0
end_loop:
;----------------------------------------------------------------
; Return to calling program.
;----------------------------------------------------------------
Epilogue:
MOV #0, T0
XCCPART check, overflow(AC0)
||MOV #1, T0
AADD #7, SP
check:
BSET SXMD
RET
| 24.212598 | 67 | 0.331057 |
2285f1ff2ab9b8e59ec410e6af665f403ec41c6f | 9,480 | asm | Assembly | vera.asm | yignoth/x16-pminer | 8cee8d3aa37a48baa7b822945b02b819fbaf6f5f | [
"Unlicense"
] | 2 | 2019-10-28T16:48:13.000Z | 2020-03-01T02:38:32.000Z | vera.asm | yignoth/x16-pminer | 8cee8d3aa37a48baa7b822945b02b819fbaf6f5f | [
"Unlicense"
] | null | null | null | vera.asm | yignoth/x16-pminer | 8cee8d3aa37a48baa7b822945b02b819fbaf6f5f | [
"Unlicense"
] | null | null | null | ;
; VERA Library
;
bpoke: .macro
lda #\1
sta \2
.endm
wpoke: .macro
lda #<\1
sta \2
lda #>\1
sta \2 + 1
.endm
lpoke: .macro
lda #<\1
sta \2
lda #>\1
sta \2 + 1
lda #`\1
sta \2 + 2
.endm
vaddr: .macro ; increment, 20bit addr
lda #<(\2)
sta Vera.IO_VERA.addrL
lda #>(\2)
sta Vera.IO_VERA.addrM
lda #`((\1 << 20) | \2)
sta Vera.IO_VERA.addrH
.endm
vinc: .macro
lda Vera.IO_VERA.addrH
and #$0f
ora #(\1<<4)
sta Vera.IO_VERA.addrH
.endm
vpoke0: .macro
lda #\1
sta Vera.IO_VERA.data0
.endm
vpoke0A: .macro
sta Vera.IO_VERA.data0
.endm
vwpoke0: .macro
lda #<\1
sta Vera.IO_VERA.data0
lda #>\1
sta Vera.IO_VERA.data0
.endm
Vera: .block
; structures
S_IO: .struct
addrL .byte ? ; VERA_ADDR_L LLLLLLLL: L=address bits 7-0
addrM .byte ? ; VERA_ADDR_M MMMMMMMM: M=address bits 15-8
addrH .byte ? ; VERA_ADDR_H IIIIHHHH: I=increment (0,1,2,4,..,16k), H=address bits 19-16
data0 .byte ? ; VERA_DATA0
data1 .byte ? ; VERA_DATA1
ctrl .byte ? ; VERA_CTRL R------A: R=reset, A=data port (0=DATA1, 1=DATA2)
ien .byte ? ; VERA_IEN ----USLV: UART, Sprint_Collision, Line, VSync
isr .byte ? ; VERA_ISR ----USLV: UART, Sprint_Collision, Line, VSync
.ends
S_LAYER: .struct
ctrl0 .byte ?
ctrl1 .byte ?
mapBase .word ?
tileBase .word ?
hScroll .word ?
vScroll .word ?
.ends
.section section_IO_VERA
IO_VERA .dstruct S_IO
.send section_IO_VERA
.section section_ZP
z0 .word ?
z1 .word ?
.send section_ZP
.section section_BSS
.send section_BSS
SCREEN_MEM = $00000 ; start of screen memory
FONT_ASCII = $1E800 ; iso ascii font
FONT_UPETSCII = $1F000 ; PETSCII uppercase
FONT_LPETSCII = $1F800 ; PETSCII lowercase
DC_VIDEO = $F0000 ; video mode
PALETTE = $F1000
L0_CTRL0 = $F2000 ; layer 1 control port
L0_HSCROLL = $F2006
L1_CTRL0 = $F3000 ; layer 2 control port
L1_HSCROLL = $F3006
SPRITE_REG = $F4000
SPRITE_ATTS = $F5000
AUDIO = $F6000
SPI = $F7000
UART = $F8000
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Macros
;;;;;;;;;;;;;;;;;;;;;;;;;
; Sets the data port to DATA0 or DATA1
; veraSetDataPort <port> (0 or 1)
; Uses: A
setDataPort: .macro
.if \1 < 0 || \1 > 1
.error "Bad DataPort value: ", \1 , ", should be 0 or 1"
.fi
#bpoke \1, Vera.IO_VERA.ctrl
.endm
;;;;;;;;;;;;;;;;;;;;;;;;;
; Sets the screen resolution
; veraSetScreenRes <W>, <H>
; <W>: 640, 320, 160
; <H>: 480, 240, 120
; Uses: A
setScreenRes: .macro
.if \1 != 640 && \1 != 320 && \1 != 160
.error "veraSetScreenRes H=(",\1,") must be one of 640,320,160"
.fi
.if \2 != 480 && \2 != 240 && \2 != 120
.error "veraSetScreenRes V=(",\2,") must be one of 480,240,120"
.fi
#vaddr 1, Vera.DC_VIDEO
#vpoke0 %00000001 ; set vga mode F----COO; O=Outmode (1=vga)
#vpoke0 (\1 / 5) ; Hscale (128,64,32)
#vpoke0 (\2 / 15)<<2 ; Vscale (128,64,32)
.endm
;;;;;;;;;;;;;;;;;;;;;;;;;
; Setup layer
; veraLayerSetup <layer> <mode> <tile/map-size> <map-base> <tile-base> <hscroll> <vscroll>
; <layer> = layer 0 or 1
; <mode> = MMM----E; M=mode 0-7, E=enable
; <tile-map-size> = --HWhhww
; <map-base> = 18 bit addr
; <tile-base> = 18 bit addr
; <hscroll> = 12 bit addr
; <vscroll> = 12 bit addr
; Uses: A
layerSetup: .macro
.if \1 == 0
LAYER = Vera.L0_CTRL0
.elsif \1 == 1
LAYER = Vera.L1_CTRL0
.else
.error "veraLayerSetup Mode=(",\1,") must be 0,1"
.fi
vaddr 1, LAYER ; set layer address
#vpoke0 \2 ; set mode and enable layer
.if \2 > 0
#vpoke0 \3 ; set tile/map size --HWhhww
#vwpoke0 (\4 >> 2) ; set map base
#vwpoke0 (\5 >> 2) ; set tile base
#vwpoke0 \6 ; set hscroll
#vwpoke0 \7 ; set vscroll
.fi
.endm
;;;;;;;;;;;;;;;;;;;;;;;;;
; Sets <value> in last set VERA data port at current address
; veraSetData <value>
; <value> = the value to store
; Uses: A
setData0: .macro
lda \1
sta Vera.IO_VERA.data0
.endm
;;;;;;;;;;;;;;;;;;;;;;;;;
; Fills a window with a character and color
; veraFillWindow V, X, Y, W, H, F, C
; V = the baseMap VAddr address
; MC= the number of map columns
; X = the left column of the window
; Y = the top row of the window
; W = the width of the window
; H = the height of the window
; F = the fill character
; C = the fill color
;
; NOTE: need to set VeraAddr to start of layer screen memory
;
; Uses: A, X, Y
fillWindow: .macro
#vaddr 1, \1
#bpoke \3, Vera.cw_col
#bpoke \4, Vera.cw_row
#bpoke \5, Vera.cw_width
#bpoke \6, Vera.cw_height
#bpoke \7, Vera.cw_char
#bpoke \8, Vera.cw_color
#bpoke (\2 - \5)<<1, Vera.cw_winc
.if \2 == 32
jsr Vera.AddCwRowColToVAddr32
.elsif \2 == 64
jsr Vera.AddCwRowColToVAddr64
.elsif \2 == 128
jsr Vera.AddCwRowColToVAddr128
.elsif \2 == 256
jsr Vera.AddCwRowColToVAddr256
.fi
jsr Vera.FillWindow
.endm
; Fills a single character on the screen
; fillCHar V, X, Y, F, C
; V = the baseMap VAddr address
; MC= the number of map columns
; X = the left column of the window
; Y = the top row of the window
; F = the fill character
; C = the fill color
fillChar: .macro
#vaddr 1, \1
#bpoke \3, Vera.cw_col
#bpoke \4, Vera.cw_row
#bpoke \5, Vera.cw_char
#bpoke \6, Vera.cw_color
.if \2 == 32
jsr Vera.AddCwRowColToVAddr32
.elsif \2 == 64
jsr Vera.AddCwRowColToVAddr64
.elsif \2 == 128
jsr Vera.AddCwRowColToVAddr128
.elsif \2 == 256
jsr Vera.AddCwRowColToVAddr256
.fi
jsr Vera.FillChar
.endm
; \1 = CPU RAM data source location
; \2 = VERA RAM destination location
; \3 = number of bytes (DO NOT CALL WITH 0)
copyDataToVera: .macro
#vaddr 1, \2 ; set VERA address
lda #<\1 ; copy source address to z0
sta Vera.z0
lda #>\1
sta Vera.z0+1
lda #>\3
sta Vera.z1 ; store \3(hi) in z1
ldx #<\3 ; load \3(lo) into x
beq + ; if zero then jump to decreasing \3(hi)
- ldy #$00 ; start y at 0 since VERA address increase goes by 1
- lda (Vera.z0),y ; load A with source + y
sta Vera.IO_VERA.data0 ; store in data0
iny
dex
bne - ; continue if more bytes to xfer
inc Vera.z0+1 ; increment src(hi) by 1
+ lda Vera.z1 ; load A with \3(hi)
beq + ; if zero then we are done
dec Vera.z1 ; decrease \3(hi)
bra -- ; goto -
+
.endm
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Subroutines
.section section_CODE
cw_layer .byte 0
cw_col .byte 0
cw_row .byte 0
cw_width .byte 0
cw_height .byte 0
cw_char .byte 0
cw_color .byte 0
cw_winc .byte 0
cw_rinc .byte 0
;;;;;;;;;;;;;;;;;;;;;;;;;
; FillWindow: Fills a window on the current screen starting at current
; screen position.
;
; Req:
; cw_col, cw_row = row/col of start of fill
; cw_width, cw_height = widht/height of fill window
; cw_char, cw_color = color and character to fill
; cw_winc, num bytes from end on window to start of next row/col.
;
; Uses: A, X, Y
FillWindow:
ldy cw_height ; height counter
- ldx cw_width ; width counter
- #setData0 cw_char ; store char
#setData0 cw_color ; store color
dex ; dec col count
bne -
dey ; dec row count
beq +
lda cw_winc ; skip to next to
jsr Add_A_ToVAddr
bra --
+ rts
;;;;;;;;;;;;;;;;;;;;;;;;;
; FillChar: Fills a single character on the current screen starting at current
; screen position.
;
; Req:
; cw_col, cw_row = row/col of start of fill
; cw_char, cw_color = color and character to fill
;
; Uses: A, X, Y
FillChar:
#setData0 cw_char ; store char
#setData0 cw_color ; store color
rts
;;;;;;;;;;;;;;;;;;;;;;;;;
; Computes screen starting address for window with default INC=1
;
; cw_col, cw_row = starting row,
;
; Uses: A, Y
AddCwRowColToVAddr32: ; map width of 32 (64 bytes row increment)
lda cw_row
asl a
asl a
asl a
asl a
asl a
asl a
clc
adc Vera.IO_VERA.addrL
sta Vera.IO_VERA.addrL
bcc +
lda Vera.IO_VERA.addrM
adc #0
sta Vera.IO_VERA.addrM
bcc +
lda Vera.IO_VERA.addrH
adc #0
sta Vera.IO_VERA.addrH
+ lda cw_row
lsr a
lsr a
clc
adc Vera.IO_VERA.addrM
sta Vera.IO_VERA.addrM
bcc +
inc Vera.IO_VERA.addrH
+ jmp AddCwColToVAddr
AddCwRowColToVAddr64: ; map width of 64 (128 bytes row increment)
lda cw_row
lsr a
bcc ++
lda #$80
clc
adc Vera.IO_VERA.addrL
sta Vera.IO_VERA.addrL
bcc +
lda Vera.IO_VERA.addrM
adc #0
sta Vera.IO_VERA.addrM
bcc +
lda Vera.IO_VERA.addrH
adc #0
sta Vera.IO_VERA.addrH
+ lda cw_row
lsr a
clc
+ adc Vera.IO_VERA.addrM
sta Vera.IO_VERA.addrM
bcc +
inc Vera.IO_VERA.addrH
+ jmp AddCwColToVAddr
AddCwRowColToVAddr128: ; map width of 128 (256 byte row increment)
lda cw_row
clc
adc Vera.IO_VERA.addrM
sta Vera.IO_VERA.addrM
bcc +
inc Vera.IO_VERA.addrH
+ jmp AddCwColToVAddr
AddCwRowColToVAddr256: ; map width of 256 (512 byte row increment)
lda cw_row
clc
adc Vera.IO_VERA.addrM
sta Vera.IO_VERA.addrM
bcc +
inc Vera.IO_VERA.addrH
+ lda cw_row
clc
adc Vera.IO_VERA.addrM
sta Vera.IO_VERA.addrM
bcc +
inc Vera.IO_VERA.addrH
+ ; fall through to AddCwColToVAddr
;;;;;;;;;;;;;;;;;;;;;;;;
; Adds A to VERA Address
; A contains the value to add
AddCwColToVAddr:
lda cw_col
asl a ; *2 for (char,byte)
Add_A_ToVAddr:
clc
adc Vera.IO_VERA.addrL
sta Vera.IO_VERA.addrL
bcc +
lda Vera.IO_VERA.addrM
adc #0 ; carry is already set
sta Vera.IO_VERA.addrM
bcc +
inc Vera.IO_VERA.addrH
+ rts
.send section_CODE
.bend
| 21.99536 | 104 | 0.621308 |
87bcc31b87b8219705a307ea449ef0a60512705b | 675 | asm | Assembly | oeis/092/A092498.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/092/A092498.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/092/A092498.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A092498: G.f.: (1+x+2x^2)/((1-x)^3*(1-x^3)).
; Submitted by Jon Maiga
; 1,4,11,23,41,67,102,147,204,274,358,458,575,710,865,1041,1239,1461,1708,1981,2282,2612,2972,3364,3789,4248,4743,5275,5845,6455,7106,7799,8536,9318,10146,11022,11947,12922,13949,15029,16163,17353,18600,19905,21270,22696,24184,25736,27353,29036,30787,32607,34497,36459,38494,40603,42788,45050,47390,49810,52311,54894,57561,60313,63151,66077,69092,72197,75394,78684,82068,85548,89125,92800,96575,100451,104429,108511,112698,116991,121392,125902,130522,135254,140099,145058,150133,155325,160635,166065
mov $1,$0
add $0,3
mul $1,4
add $1,5
bin $1,2
add $1,2
mul $0,$1
div $0,12
sub $0,3
div $0,3
add $0,1
| 42.1875 | 499 | 0.745185 |
d56e0596a32221ba2e0a4d88e21563e2870e1b12 | 42,688 | asm | Assembly | project.asm | HxnDev/Canon-War-Game-using-Assembly-Language | 2422ee8136d4303ccf0a13ee5cf19e827cad0ca2 | [
"MIT"
] | 6 | 2021-07-04T09:06:01.000Z | 2021-11-30T19:24:22.000Z | project.asm | HxnDev/Canon-War-Game-using-Assembly-Language | 2422ee8136d4303ccf0a13ee5cf19e827cad0ca2 | [
"MIT"
] | null | null | null | project.asm | HxnDev/Canon-War-Game-using-Assembly-Language | 2422ee8136d4303ccf0a13ee5cf19e827cad0ca2 | [
"MIT"
] | null | null | null | ;bulets zyada damage canon ka zyada krna damage player ka kam krna hy
.model small
.stack 100h
.386
.data
scor db "Score:$"
cman db "Robot$"
canon1 db "CannonA$"
canon2 db "CannonB$"
play db "PLAY$"
endd db "Game End$"
inst db "INSTRUCTIONS$"
scr db "SCORE$"
exts db "EXIT$"
;ooof db "<- ->: move, Up Arrow: shoot, e: exit$"
win db "YOU WIN!!$"
los db "LOSER HAHA$"
pose db "PAUSE", 10, 13, "PRESS SPACE BAR TO RESUME$"
entname db "Enter player name: $"
ename db "Name: $"
lstring db "Press Enter to go to the next level, any other key to end the game $"
uname db 20 dup('$')
score dw 0
sound dw 0
level dw 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
Splash DB 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0 ;01
DB 0, 1, 1, 1, 1, 1, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, 1, 0, 0, 0 ;02
DB 0, 1, 5, 5, 5, 5, 1, 5, 5, 1, 1, 1, 1, 1, 1, 5, 5, 1, 5, 5, 5, 5, 1, 0, 0, 0 ;03
DB 0, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 1, 1, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 0, 0, 0 ;04
DB 0, 1, 7, 7, 7, 1, 7, 7, 1, 7, 7, 1, 1, 7, 7, 1, 7, 7, 1, 7, 7, 7, 1, 0, 0, 0 ;05
DB 0, 1, 7, 7, 7, 7, 1, 7, 7, 1, 7, 7, 7, 7, 1, 7, 7, 1, 7, 7, 7, 7, 1, 0, 0, 0 ;06
DB 0, 1, 7, 7, 1, 7, 7, 1, 7, 1, 1, 7, 7, 1, 1, 7, 1, 7, 7, 1, 7, 7, 1, 0, 0, 0 ;07
DB 0, 1, 7, 7, 7, 1, 7, 7, 7, 1, 7, 1, 1, 7, 1, 7, 7, 7, 1, 7, 7, 7, 1, 0, 0, 0 ;08
DB 0, 0, 1, 4, 4, 4, 1, 4, 4, 1, 4, 4, 4, 4, 1, 4, 4, 1, 4, 4, 4, 1, 0, 0, 0, 0 ;09
DB 0, 0, 0, 1, 4, 4, 4, 1, 4, 1, 1, 4, 4, 1, 1, 4, 1, 4, 4, 4, 1, 0, 0, 0, 0, 0 ;10
DB 0, 0, 0, 1, 1, 1, 4, 4, 4, 4, 1, 4, 4, 1, 4, 4, 4, 4, 1, 1, 1, 0, 0, 0, 0, 0 ;11
DB 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 9, 9, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0 ;12
DB 0, 0, 0, 1, 9, 1, 1, 1, 1, 1, 1, 9, 9, 1, 1, 1, 1, 1, 1, 9, 1, 0, 0, 0, 0, 0 ;13
DB 0, 0, 0, 1, 9, 9, 1, 1, 1, 9, 1, 9, 9, 1, 9, 1, 1, 1, 9, 9, 1, 0, 0, 0, 0, 0 ;14
DB 0, 0, 0, 1, 9, 9, 9, 1, 9, 9, 1, 9, 9, 1, 9, 9, 1, 9, 9, 9, 1, 0, 0, 0, 0, 0 ;15
DB 0, 0, 0, 1, 9, 9, 9, 1, 9, 9, 1, 9, 9, 1, 9, 9, 1, 9, 9, 9, 1, 0, 0, 0, 0, 0 ;16
DB 0, 0, 0, 1, 9, 9, 9, 1, 9, 9, 1, 1, 1, 1, 9, 9, 1, 9, 9, 9, 1, 0, 0, 0, 0, 0 ;17
DB 0, 0, 0, 0, 1, 7, 7, 1, 7, 7, 7, 7, 7, 7, 7, 7, 1, 7, 7, 1, 0, 0, 0, 0, 0, 0 ;18
DB 0, 0, 0, 0, 0, 1, 2, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0 ;19
DB 0, 0, 0, 0, 0, 0, 1, 1, 4, 1, 1, 4, 4, 1, 1, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0 ;20
DB 0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 4, 4, 4, 4, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0 ;21
DB 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 4, 4, 4, 4, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0 ;22
DB 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ;23
DB 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ;24
DB 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ;25
DB 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ;26
DB 8, 8, 8, 0, 8, 8, 8, 0, 8, 0, 0, 8, 0, 8, 8, 8, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0 ;27
DB 8, 0, 0, 0, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 0, 8, 0, 8, 8, 0, 8, 0, 0, 0, 0, 0 ;28
DB 8, 0, 0, 0, 8, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 0, 8, 0, 8, 8, 0, 0, 0, 0, 0 ;29
DB 8, 8, 8, 0, 8, 0, 8, 0, 8, 0, 0, 8, 0, 8, 8, 8, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0 ;30
DB 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ;31
DB 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ;32
DB 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0 ;33
DB 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 0 ;34
DB 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 8, 8, 0, 8, 8, 8, 0, 8, 8, 0, 0, 0 ;35
DB 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 8, 0 ;36
DB 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ;37
DB 0, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ;38
DB 0, 9, 9, 9, 9, 0, 0, 0, 0, 0, 7, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ;39
DB 0, 9, 1, 1, 9, 0, 0, 0, 0, 7, 4, 4, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ;40
DB 0, 9, 1, 1, 9, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ;41
DB 0, 9, 1, 1, 9, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ;42
DB 0, 9, 9, 9, 9, 7, 1, 7, 7, 7, 7, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0 ;43
DB 0, 9, 9, 9, 9, 7, 1, 7, 7, 7, 7, 7, 7, 7, 7, 7, 9, 5, 5, 5, 9, 0, 0, 0, 0, 0 ;44
DB 0, 9, 7, 7, 9, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 9, 5, 5, 5, 9, 0, 0, 0, 0, 0 ;45
DB 0, 9, 7, 7, 9, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0 ;46
splashx dw 100
splashy dw 10
;1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Canoon1 DB 07,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,07;01
DB 07,07,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,07,07;02
DB 07,07,07,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,07,07,07;03
DB 07,07,07,07,10,10,10,10,10,10,10,10,10,10,10,10,10,10,07,07,07,07;04
DB 07,07,07,07,07,10,10,10,10,10,10,10,10,10,10,10,10,07,07,07,07,07;05
DB 07,07,07,07,07,07,10,10,10,10,10,10,10,10,10,10,07,07,07,07,07,07;06
DB 07,07,07,07,07,07,07,10,10,10,10,10,10,10,10,07,07,07,07,07,07,07;07
DB 07,07,07,07,07,07,07,07,10,10,10,10,10,10,07,07,07,07,07,07,07,07;08
DB 07,07,07,07,07,07,07,07,07,10,10,10,10,07,07,07,07,07,07,07,07,07;09
DB 07,07,07,07,07,07,07,07,07,07,10,10,07,07,07,07,07,07,07,07,07,07;10
;1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Canoon2 DB 07,09,09,09,09,09,09,09,09,09,09,09,09,09,09,09,09,09,09,09,09,07;01
DB 07,07,09,09,09,09,09,09,09,09,09,09,09,09,09,09,09,09,09,09,07,07;02
DB 07,07,07,09,09,09,09,09,09,09,09,09,09,09,09,09,09,09,09,07,07,07;03
DB 07,07,07,07,09,09,09,09,09,09,09,09,09,09,09,09,09,09,07,07,07,07;04
DB 07,07,07,07,07,09,09,09,09,09,09,09,09,09,09,09,09,07,07,07,07,07;05
DB 07,07,07,07,07,07,09,09,09,09,09,09,09,09,09,09,07,07,07,07,07,07;06
DB 07,07,07,07,07,07,07,09,09,09,09,09,09,09,09,07,07,07,07,07,07,07;07
DB 07,07,07,07,07,07,07,07,09,09,09,09,09,09,07,07,07,07,07,07,07,07;08
DB 07,07,07,07,07,07,07,07,07,09,09,09,09,07,07,07,07,07,07,07,07,07;09
DB 07,07,07,07,07,07,07,07,07,07,09,09,07,07,07,07,07,07,07,07,07,07;10
;1 2 3 4 5 6
Bullet DB 07, 07, 07, 07, 07, 07 ;01
DB 07, 07, 14, 14, 07, 07 ;02
DB 07, 14, 14, 14, 14, 07 ;03
DB 07, 14, 14, 14, 14, 07 ;04
DB 07, 06, 06, 06, 06, 07 ;05
DB 07, 06, 06, 06, 06, 07 ;06
DB 07, 06, 06, 06, 06, 07 ;07
DB 07, 06, 06, 06, 06, 07 ;08
DB 07, 07, 06, 06, 07, 07 ;09
DB 07, 07, 07, 07, 07, 07 ;10
DB 07, 07, 07, 07, 07, 07 ;11
DB 07, 07, 07, 07, 07, 07 ;12
;1 2 3 4 5 6
BulletC DB 07, 07, 07, 07, 07, 07 ;01
DB 07, 07, 07, 07, 07, 07 ;10
DB 07, 07, 07, 07, 07, 07 ;11
DB 07, 07, 15, 15, 07, 07 ;02
DB 07, 15, 15, 15, 15, 07 ;03
DB 07, 15, 15, 15, 15, 07 ;04
DB 07, 15, 15, 15, 15, 07 ;05
DB 07, 00, 00, 00, 00, 07 ;06
DB 07, 00, 00, 00, 00, 07 ;07
DB 07, 00, 00, 00, 00, 07 ;08
DB 07, 07, 00, 00, 07, 07 ;09
DB 07, 07, 07, 07, 07, 07 ;12
;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
robut DB 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 5, 5, 5, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 ;71
DB 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 5, 5, 5, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 ;02
DB 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 4, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 ;03
DB 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 4, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 ;04
DB 7, 7, 7, 7, 4, 7, 7, 7, 7, 7, 2, 2, 2, 2, 2, 2, 2, 7, 7, 7, 7, 7, 4, 7, 7, 7, 7 ;05
DB 7, 7, 7, 7, 4, 7, 7, 7, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 7, 7, 7, 7, 4, 7, 7, 7, 7 ;06
DB 7, 7, 7, 7, 4, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 4, 7, 7, 7, 7 ;07
DB 7, 7, 7, 7, 4, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2, 4, 7, 7, 7, 7 ;08
DB 7, 7, 7, 7, 2, 2, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 2, 2, 7, 7, 7, 7 ;09
DB 7, 7, 7, 7, 2, 2, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 2, 2, 7, 7, 7, 7 ;10
DB 7, 7, 7, 7, 2, 2, 8, 3, 1, 1, 3, 3, 3, 3, 3, 3, 3, 1, 1, 3, 8, 2, 2, 7, 7, 7, 7 ;11
DB 7, 7, 7, 7, 2, 2, 8, 3, 1, 1, 3, 3, 3, 3, 3, 3, 3, 1, 1, 3, 8, 2, 2, 7, 7, 7, 7 ;12
DB 7, 7, 7, 7, 2, 2, 8, 3, 1, 1, 3, 3, 3, 3, 3, 3, 3, 1, 1, 3, 8, 2, 2, 7, 7, 7, 7 ;13
DB 7, 7, 7, 7, 2, 2, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 2, 2, 7, 7, 7, 7 ;14
DB 7, 7, 7, 7, 7, 7, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 7, 7, 7, 7, 7, 7 ;15
DB 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7 ;16
DB 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7 ;17
DB 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 3, 3, 3, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7 ;18
DB 7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 8, 3, 3, 3, 8, 2, 2, 7, 7, 7, 7, 7, 7, 7, 7, 7 ;19
DB 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 2, 8, 3, 3, 3, 8, 2, 2, 2, 7, 7, 7, 7, 7, 7, 7, 7 ;20
DB 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 8, 8, 8, 8, 8, 8, 8, 2, 2, 7, 7, 7, 7, 7, 7, 7, 7 ;21
DB 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 8, 8, 8, 8, 8, 8, 8, 2, 2, 7, 7, 7, 7, 7, 7, 7, 7 ;22
DB 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 8, 8, 8, 8, 8, 8, 8, 2, 2, 7, 7, 7, 7, 7, 7, 7, 7 ;23
DB 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7 ;24
DB 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 7, 2, 2, 7, 2, 2, 7, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7 ;25
DB 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 7, 2, 2, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 ;26
DB 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 2, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 ;27
DB 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 2, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 ;28
DB 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 7, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 ;29
DB 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 ;30
; central point of bullets
shotr dw 83
shotc1 dw 61
shotc2 dw 111
time db 0
; x y of bullets initial/final canon 1/2
xbic1 sword 11
xbfc1 sword 22
ybic1 dw 58
ybfc1 dw 64
xbic2 sword 11
xbfc2 sword 22
ybic2 dw 108
ybfc2 dw 114
; x/y bulets initial/final robot
xbir sword 118
xbfr sword 130
ybir dw 80
ybfr dw 86
; y coordinate of canon initial/final 1/2
yci1 dw 50
ycf1 dw 72
yci2 dw 100
ycf2 dw 122
; y coordinate of robot initial/final 1/2
yxi dw 70
yxf dw 97
;-- generic initial coordinates
xcordi dw 0 ; x coordinate initial to draw
xcordf dw 0 ; final
ycordi dw 0
ycordf dw 0
colorOf db 0
;---movement variable for canons
movv1 dw 0
movv2 dw 0
movvb dw 0
movvcb1 dw 0
movvcb2 dw 0
Helth DB 07, 07, 09, 07, 07, 07, 09, 07, 07, 07, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04;36
DB 07, 09, 09, 09, 07, 09, 09, 09, 07, 07, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04
DB 09, 09, 09, 09, 09, 09, 09, 09, 09, 07, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04
DB 09, 09, 09, 09, 09, 09, 09, 09, 09, 07, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04
DB 07, 09, 09, 09, 09, 09, 09, 09, 07, 07, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04
DB 07, 07, 09, 09, 09, 09, 09, 07, 07, 07, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04
DB 07, 07, 07, 09, 09, 09, 07, 07, 07, 07, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04
DB 07, 07, 07, 07, 09, 07, 07, 07, 07, 07, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04, 07, 04, 04, 04
exHelth db 07,07,04,04,07,04,04,07,07 ;09
db 07,04,15,04,04,04,04,04,07
db 07,04,04,04,04,04,04,04,07
db 07,07,04,04,04,04,04,07,07
db 07,07,07,04,04,04,07,07,07
db 07,07,07,07,04,07,07,07,07 ;06
helthx dw 0
helthy dw 0
heltcontr dw 0
helttimr dw 0
heltx dw 260
helty dw 10
;health final robot (x axis)
hfr dw 298
hifr dw 298
hfc1 dw 298
hfc2 dw 298
hifc1 dw 298
hifc2 dw 298
;counters
hlos dw 7
hc1 dw 7
hc2 dw 7
hscore dw 17
;---file load k variable
handle dw ?
filename db "insturr.txt", 0
buffer db 500 DUP('$')
;---file handling for highscores
fname db "hscores.txt",0
handle1 dw ?
buffer1 db 500 dup('$')
count db 10
scount db 3
oof dw ":"
sstring db 10,13, "Highscore: "
hss dw 0
dstring db 10,13 ,"Date: "
date db 10 dup(?)
tstring db 10,13 ,"Time: "
ttime db 8 dup (?)
entr db 10,13
;******************************************************************************************************************************************
.code
main proc
mov ax,@data
mov ds,ax
; setting video mode
mov al, 13h
mov ah, 00h
int 10H
;==========================================SPLASH============================================================================
mov xcordi, 0
mov xcordf, 320
mov ycordi, 0
mov ycordf, 200
mov colorOf, 0
call boxKap
mov si, offset Splash ;draw splash
mov xcordi, 20
mov xcordf, 158
mov ycordi, 100
mov ycordf, 178
mov ah,0ch
mov dx, xcordi ; x coordinate initial( up down)
ywalas:
mov cx, ycordi ;y coordinate initial (left right)
xwalas:
mov al,[si]
int 10h
inc cx
int 10h
inc cx
int 10h
inc si
inc cx
cmp cx, ycordf ; y coordinate final( left right)
jb xwalas
inc dx
mov cx, ycordi
sub si,26
xwalas2:
mov al,[si]
int 10h
inc cx
int 10h
inc cx
int 10h
inc si
inc cx
cmp cx, ycordf ; y coordinate final( left right)
jb xwalas2
inc dx
mov cx, ycordi
sub si,26
xwalas3:
mov al,[si]
int 10h
inc cx
int 10h
inc cx
int 10h
inc si
inc cx
cmp cx, ycordf ; y coordinate final( left right)
jb xwalas3
inc dx
cmp dx, xcordf ; x coordinate final( up down)
jb ywalas
;TIme delay
mov CX, 13H
mov DX, 4240H
mov AH, 86H
int 15H
;==================================================================ENTER NAME===================================================
mov xcordi, 0
mov xcordf, 320
mov ycordi, 0
mov ycordf, 200
mov colorOf, 0
call boxKap
mov ch,2 ;write name
mov cl,2
mov si, offset entname
call stringKap
mov si,offset uname
string1:
mov ah,1
int 21h
cmp al,13
je meenu
mov [si],al
inc si
jmp string1
;==============================================M3Nu==============================================================================
meenu:
;----------M3Nu-------------
mov xcordi, 0
mov xcordf, 320
mov ycordi, 0
mov ycordf, 200
mov colorOf, 0
call boxKap
;-----------strings with dabbe unk
;play box on menu
mov xcordi, 110
mov xcordf, 147
mov ycordi, 72
mov ycordf, 82
mov colorOf, 2
call boxKap
mov ch,9 ;write play
mov cl,54
mov si, offset play
call stringKap
;---------------------------next
mov xcordi, 110
mov xcordf, 210
mov ycordi, 88
mov ycordf, 98
mov colorOf, 4
call boxKap
mov ch,11 ;write Instructions
mov cl,54
mov si, offset inst
call stringKap
;-----------------------------next
mov xcordi, 110
mov xcordf, 154
mov ycordi, 104
mov ycordf, 114
mov colorOf, 0
call boxKap
mov ch,13 ;write score
mov cl,54
mov si, offset scr
call stringKap
;----------------------------------next
mov xcordi, 110
mov xcordf, 147
mov ycordi, 120
mov ycordf, 130
mov colorOf, 6
call boxKap
mov ch,15 ;write Exit
mov cl,54
mov si, offset exts
call stringKap
;========================================================================================================================
;-------Mouse----------------
mov ax,01
int 33h
mouse:
mov ax, 03
int 33h
cmp bx,1
je Cecks
;je dispppp
jmp mouse
Cecks:
;---Play screen----
.if(cx>=210 && cx<=277 && dx>=72 && dx<=82 )
jmp dispppp
.endif
.if(cx>=210 && cx<=420 && dx>=88 && dx<=98)
jmp ififififi
.endif
.if(cx>=210 && cx<=287 && dx>=104 && dx<=114)
jmp hsc
.endif
.if(cx>=210 && cx<=287 && dx>=120 && dx<=130)
jmp extt
.endif
jmp mouse
;--- PRESS SPACE BAR TO START
inputt:
mov ah,0h
int 16h
; mov kee,al
;---display---
; cmp al,020H
; je dispppp
;-----I/i----
; cmp al,049H
; je ififififi
; cmp al,069H
; je ififififi
;---back to menu from backspace
cmp al,008H
je meenu
jmp inputt
;---
hsc:
mov xcordi, 0
mov xcordf, 320
mov ycordi, 0
mov ycordf, 200
mov colorOf, 0
call boxKap
;---reset background---
mov xcordi, 0
mov xcordf, 320
mov ycordi, 0
mov ycordf, 200
mov colorOf, 0
call boxKap
mov ah,02h ;reset cursor
mov bx,0
mov dh,0
mov dl,0
int 10h
;LOAD FILE HANDLE
lea dx, fname ; Load address of String “file”
mov al, 0 ; Open file (read)
mov ah, 3Dh ; Load File Handler and store in ax
int 21h
mov handle1, ax
;READ FROM FILE
mov bx, handle1 ; Move file Handle to bx
lea dx, buffer1
mov ah, 3Fh ; Function to read from file
int 21h
;PRINT BUFFER
lea dx, buffer1
mov ah, 09h
int 21h
;CLOSE FILE HANDLE
mov ah, 3Eh
mov bx, handle1
int 21h
jmp inputt
;--- INSTRUCTIONS TO LOAD
ififififi:
;---reset background---
mov xcordi, 0
mov xcordf, 320
mov ycordi, 0
mov ycordf, 200
mov colorOf, 0
call boxKap
mov ah,02h ;reset cursor
mov bx,0
mov dh,0
mov dl,0
int 10h
;LOAD FILE HANDLE
lea dx, filename ; Load address of String “file”
mov al, 0 ; Open file (read)
mov ah, 3Dh ; Load File Handler and store in ax
int 21h
mov handle, ax
;READ FROM FILE
mov bx, handle ; Move file Handle to bx
lea dx, buffer
mov ah, 3Fh ; Function to read from file
int 21h
;PRINT BUFFER
lea dx, buffer
mov ah, 09h
int 21h
;CLOSE FILE HANDLE
mov ah, 3Eh
mov bx, handle
int 21h
jmp inputt
;========================================================DISPLAY=================================================================
dispppp:
mov ax, 02 ; hides the mouse
int 33h
;------asmaan ka ganda rang----
;top box
mov xcordi, 0
mov xcordf, 320
mov ycordi, 0
mov ycordf, 160
mov colorOf, 7
call boxKap
;division line
mov xcordi, 0
mov xcordf, 320
mov ycordi, 160
mov ycordf, 163
mov colorOf, 8
call boxKap
;ground box
mov xcordi, 0
mov xcordf, 320
mov ycordi, 163
mov ycordf, 200
mov colorOf, 196
call boxKap
;---canons--
mov si, offset Canoon1 ;draw canon1
mov xcordi, 0
mov xcordf, 10
mov ax, yci1
mov ycordi, ax
mov ax, ycf1
mov ycordf, ax
call drawKap
mov si, offset Canoon2 ;draw canon2
mov xcordi, 0
mov xcordf, 10
mov ax, yci2
mov ycordi, ax
mov ax, ycf2
mov ycordf, ax
call drawKap
;---robot--
mov si, offset robut ;draw robot
mov xcordi, 130
mov xcordf, 160
mov ax, yxi
mov ycordi, ax
mov ax, yxf
mov ycordf, ax
call drawKap
; mov ax, ycordi
; add ax,13
; mov shotr, ax
;----health---
;---1
mov si, offset Helth ;draw health of robot
mov xcordi, 30
mov xcordf, 38
mov ycordi, 260
mov ycordf, 298
call drawKap
mov ax,xcordf
mov ycordf,ax
mov ax,xcordi
mov ycordi,ax
.if(hlos > 7)
; mov xcordi, 299
; ;mov xcordf, 301
; mov cx, hlos
; sub cx, 7
; l3helth:
; mov ycordi, 30
; mov ycordf, 38
; mov ax, xcordi
; mov xcordf, ax
; add xcordf, 2
; add ax, 3
; push ax
; push cx
; mov colorOf, 04
; call boxKap
; pop cx
; pop ax
; mov xcordi, ax
; loop l3helth
.endif
mov ycordi, 30
mov ycordf, 38
mov ax, hifr
mov xcordi, ax
mov ax, hfr
mov xcordf, ax
mov colorOf, 07
call boxKap
;---2
mov si, offset Helth ;draw health of canon1
mov xcordi, 70
mov xcordf, 78
mov ycordi, 260
mov ycordf, 298
call drawKap
mov ax,xcordf
mov ycordf,ax
mov ax,xcordi
mov ycordi,ax
mov ax, hifc1
mov xcordi, ax
mov ax, hfc1
mov xcordf, ax
mov colorOf, 07
call boxKap
;--3
mov si, offset Helth ;draw health of canon2
mov xcordi, 110
mov xcordf, 118
mov ycordi, 260
mov ycordf, 298
call drawKap
mov ax,xcordf
mov ycordf,ax
mov ax,xcordi
mov ycordi,ax
mov ax, hifc2
mov xcordi, ax
mov ax, hfc2
mov xcordf, ax
mov colorOf, 07
call boxKap
;----------side health box/ status bar----
;1
mov xcordi, 230
mov xcordf, 320
mov ycordi, 0
mov ycordf, 3
mov colorOf, 8
call boxKap
;2
mov xcordi, 230
mov xcordf, 233
mov ycordi, 0
mov ycordf, 160
mov colorOf, 8
call boxKap
;3
mov xcordi, 317
mov xcordf, 320
mov ycordi, 0
mov ycordf, 160
mov colorOf, 8
call boxKap
;4
mov xcordi, 230
mov xcordf, 320
mov ycordi, 160
mov ycordf, 163
mov colorOf, 8
call boxKap
;5
mov xcordi, 230
mov xcordf, 320
mov ycordi, 120
mov ycordf, 123
mov colorOf, 8
call boxKap
;------------------strings of heath box-------
mov ch,2 ;write robot
mov cl,73
mov si, offset cman
call stringKap
mov ch,7 ;write canonA
mov cl,71
mov si, offset canon1
call stringKap
mov ch,12 ;write canonB
mov cl,71
mov si, offset canon2
call stringKap
mov ch,24 ;write neechy wali line
mov cl,0
mov si, offset ename
call stringKap
mov ch,24 ;write neechy wali line
mov cl,5
mov si, offset uname
call stringKap
;---bullet--
; mov si, offset BulletC ;draw bullet
; mov xcordi, 110
; mov xcordf, 121
; mov ycordi, 70
; mov ycordf, 76
; call drawKap
cnonn:
;------------------------------------------------------------------------------------------------------------------move canons--
;mov ah, 02h
; mov bh,00h
; mov dh,10 ;row k liye
; mov dl,3 ;column k liye
; int 10h
;mov dx, score
;mov ah, 02
;int 21h
;----------------- score display--------------------
mov ch,16 ;write score
mov cl,71
mov si, offset scor
call stringKap
mov ah,2 ;setting cursor to show score
mov bx,0
mov dh,69
mov dl,18
int 10h
mov ax,score
call scoreKaP
; ;/////////////////////////////
; mov ah,2 ;setting cursor to show score
; mov bx,0
; mov dh,70
; mov dl,20
; int 10h
; mov ax,hscore
; call scoreKaP
; ;///////////////////////////////
mov ah,0ch
mov al, 0h
int 21h
; Adding Time Delay
mov cx, 01H
.if(level > 0)
mov cx, 0
.endif
mov dx, 2120H
.if(level > 0)
mov dx, 9090H
.if(level > 1)
mov dx, 6060H
.endif
.endif
mov ah, 86H
int 15H
;--------shooting---
mov ah,2Ch
int 21h
mov time, dh
mov ah,0
mov al,dh
mov dl,5
div dl
.if(ah == 4 && movvcb1 == 0)
mov movvcb1,1
mov sound, 9121
mov cx, 0
call beep
.endif
mov ah,2Ch
int 21h
mov time, dh
mov ah,0
mov al,dh
mov dl,5
mov bx, level
sub dl, bl
div dl
.if(ah == 0 && movvcb2 == 0)
mov movvcb2,1
mov sound, 9121
mov cx, 0
call beep
.endif
;----------------------------extra life gand------------------------
.if(level < 2)
.if(helttimr == 0)
.if(heltcontr == 0)
mov ah,2Ch
int 21h
mov time, dl
mov ah,0
mov al,dh
mov dl,20
div dl
.endif
.if(ah == 9 && heltcontr == 0)
mov ah,2Ch
int 21h
;mov time, dl
mov ah,0
mov al,dh
mov dl, 3
mul dl
mov ycordi,ax
mov ycordf, ax
add ycordf, 9
mov helthx, ax
mov si, offset exHelth ;draw health of robot
mov xcordi, 132
mov xcordf, 138
;mov ycordi, 160
;mov ycordf, 169
call drawKap
mov heltcontr,1
.endif
.if(heltcontr == 60)
mov ax, helthx
mov xcordi, ax
mov xcordf, ax
add xcordf, 9
; mov xcordi, 160
; mov xcordf, 169
mov ycordi, 132
mov ycordf, 138
mov colorOf, 07
call boxKap
mov heltcontr, 0
.elseif(heltcontr > 0)
inc heltcontr
mov si, yxi
mov di, yxf
.if(helthx <= di && helthx >= si)
.if(hlos <= 10)
;add hfr, 4
add hifr, 4
;mov heltcontr, 0
mov helttimr, 60
mov helthx, 0
inc hlos
mov ax, hifr
mov xcordi, ax
mov xcordf, ax
sub xcordi, 3
mov ycordi, 30
mov ycordf, 38
mov colorOf, 04
call boxKap
.if(hlos > 7)
add hfr, 4
.endif
.else
.if(helttimr == 0)
inc score
mov helttimr, 60
mov helthx, 0
.endif
.endif
.endif
.endif
.else
dec helttimr
.endif
.endif
;-------canons
.if(hc1 > 0)
.if(yci1<=1)
mov movv1, 0
.endif
.if(yci1 >= 110)
mov movv1, 1
.endif
.endif
.if(hc2 > 0)
.if (yci2>=207)
mov movv2,1
.endif
.if(yci2 <= 133)
mov movv2, 0
.endif
.endif
.if(hc1 > 0)
.if (movv1==0)
jmp forwrd1
.elseif (movv1==1)
jmp bckwrd1
.endif
forwrd1:
inc ycf1
inc yci1
.if(movvcb1 == 0)
inc ybic1
inc ybfc1
.endif
; jmp input1
jmp contnuee1
bckwrd1:
dec ycf1
dec yci1
.if(movvcb1 == 0)
dec ybic1
dec ybfc1
.endif
; jmp input1
jmp contnuee1
contnuee1:
mov si, offset Canoon1 ;draw canon1
mov xcordi, 0
mov xcordf, 10
mov ax, yci1
mov ycordi, ax
mov ax, ycf1
mov ycordf, ax
call drawKap
.endif
.if(hc2 > 0)
.if(movv2 == 0)
jmp forwrd2
.elseif(movv2 == 1)
jmp bckwrd2
.endif
forwrd2:
inc ycf2
inc yci2
.if(movvcb2 == 0)
inc ybic2
inc ybfc2
.endif
jmp contnuee2
bckwrd2:
dec ycf2
dec yci2
.if(movvcb2 == 0)
dec ybic2
dec ybfc2
.endif
jmp contnuee2
contnuee2:
mov si, offset Canoon2 ;draw canon2
mov xcordi, 0
mov xcordf, 10
mov ax, yci2
mov ycordi, ax
mov ax, ycf2
mov ycordf, ax
call drawKap
.endif
.if(movvb==0)
jmp cnonnfire
.endif
contnuee3:
mov si, offset Bullet ;draw bullet again robot
mov ax, xbir
mov xcordi, ax
mov ax, xbfr
mov xcordf, ax
mov ax, ybir
mov ycordi, ax
mov ax, ybfr
mov ycordf, ax
call drawKap
sub xbfr, 3
sub xbir, 3
.if(xbir<=0)
mov movvb,0
mov ycordi,0
mov ycordf,12
mov ax, ybir
mov xcordi, ax
mov ax, ybfr
mov xcordf, ax
mov colorOf, 07
call boxKap
.endif
.if(hc1 > 0)
mov si, hifc1
mov di, 70
mov ax, ycf1
mov bx, yci1
mov cx, ybir
mov dx, xbfr
call DamageCanon
.endif
.if(hifc1 > si)
mov hifc1,si
dec hc1
.if(hc1 == 0)
mov ax, yci1
mov bx, ycf1
mov xcordi, ax
mov xcordf, bx
mov ycordi, 0
mov ycordf, 11
mov colorOf, 07
call boxKap
mov movvcb1, 0
.endif
.endif
.if(hc2 > 0)
mov si, hifc2
mov di, 110
mov ax, ycf2
mov bx, yci2
mov cx, ybir
mov dx, xbfr
call DamageCanon
.endif
.if(hifc2 > si)
mov hifc2,si
dec hc2
.if(hc2 == 0)
mov ax, yci2
mov bx, ycf2
mov xcordi, ax
mov xcordf, bx
mov ycordi, 0
mov ycordf, 11
mov colorOf, 07
call boxKap
mov movvcb2, 0
.endif
.endif
.if (hc1 == 0 && hc2 == 0)
call winKaP
.if(ax == 1)
jmp extt
.endif
inc level
call nayaLevelKap
jmp dispppp
.endif
;jmp cnonn
cnonnfire:
;----------cannon bullet drawing----
;1:
.if(movvcb1 == 1)
mov si, offset BulletC ;draw bullet again
mov ax, xbic1
mov xcordi, ax
mov ax, xbfc1
mov xcordf, ax
mov ax, ybic1
mov ycordi, ax
mov ax, ybfc1
mov ycordf, ax
call drawKap
add xbfc1, 3
add xbic1, 3
.if(xbfc1>=157)
mov movvcb1,0
mov ycordi,145
mov ycordf,157
mov xbic1,11
mov xbfc1,22
mov ax, ybic1
mov xcordi, ax
mov ax, ybfc1
mov xcordf, ax
mov ax, yci1
mov ybic1, ax
add ybic1,10
mov ybfc1,ax
add ybfc1, 16
mov colorOf, 07
call boxKap
.if(hc1 == 0)
mov movvcb1, 2
.endif
.endif
.endif
mov cx, ybic1
mov dx, xbfc1
call DamageRobo1
.if (hlos == 0)
call losKaP
jmp extt1
.endif
;2
.if(movvcb2 == 1)
mov si, offset BulletC ;draw bullet again
mov ax, xbic2
mov xcordi, ax
mov ax, xbfc2
mov xcordf, ax
mov ax, ybic2
mov ycordi, ax
mov ax, ybfc2
mov ycordf, ax
call drawKap
add xbfc2, 3
add xbic2, 3
.if(xbfc2>=157)
mov movvcb2,0
mov ycordi,145
mov ycordf,157
mov xbic2,11
mov xbfc2,22
mov ax, ybic2
mov xcordi, ax
mov ax, ybfc2
mov xcordf, ax
mov ax, yci2
mov ybic2, ax
add ybic2,10
mov ybfc2,ax
add ybfc2, 16
mov colorOf, 07
call boxKap
.if(hc2 == 0)
mov movvcb2, 2
.endif
.endif
.endif
mov cx, ybic2
mov dx, xbfc2
call DamageRobo2
.if (hlos == 0)
call losKaP
jmp extt1
.endif
input1:
mov ah,01h
int 16h
;---------------------------------------------------------------robot left right q(4Bh) w(4Dh) for now---
cmp ah,4Bh
je goLeft
cmp ah, 4Dh
je goRight
cmp ah, 48h ;up arrow key
je shoot
cmp al, 'e' ;escape key
je extt
.if( al == 20h) ;spacebar
mov ah, 0ch
int 21h
jmp pauseL
.endif
jmp cnonn
shoot:
mov si, offset Bullet ;draw bullet
.if(movvb == 0)
mov xcordi, 118
mov xcordf, 130
mov xbir, 118
mov xbfr, 130
mov ax, shotr
sub ax, 3
mov ycordi, ax
mov ybir ,ax
mov ax, shotr
add ax, 3
mov ycordf, ax
mov ybfr, ax
call drawKap
mov movvb,1
mov sound, 2280
mov cx, 1
call beep
; jmp contnuee3
.endif
jmp cnonn
goLeft:
mov si, offset robut ;draw robot again
mov xcordi, 130
mov xcordf, 160
.if(yxi>3)
sub yxi,3
sub yxf,3
sub shotr,3
jmp contnuee
.endif
jmp cnonn
goRight:
mov si, offset robut ;draw robot
mov xcordi, 130
mov xcordf, 160
.if (yxf<227)
add yxi,3
add yxf,3
add shotr,3
jmp contnuee
.endif
contnuee:
mov ax, yxi
mov ycordi, ax
mov ax, yxf
mov ycordf, ax
call drawKap
jmp cnonn
;=====================================================================PAUSE============================================
pauseL:
mov xcordi, 0
mov xcordf, 320
mov ycordi, 0
mov ycordf, 200
mov colorOf, 0
call boxKap
mov ch,9 ;write you pause
mov cl,54
mov si, offset pose
call stringKap
mov movv1,2
mov movv2,2
mov movvb,0
mov movvcb1,0
mov movvcb2,0
input:
mov ah,01h
int 16h
cmp al,20h ;spacebar
je resume
mov ah, 0ch
int 21h
jmp pauseL
resume:
; mov movv1,1
; mov movv2,1
; mov movvb,1
; mov movvcb1,1
; mov movvcb2,1
jmp dispppp
;********************************************************************************************************************************
extt:
mov xcordi, 0
mov xcordf, 320
mov ycordi, 0
mov ycordf, 200
mov colorOf, 0
call boxKap
mov ch,5
mov cl,50
mov si, offset endd
call stringKap
extt1:
; Adding Time Delay
mov cx, 13H
mov dx, 4240H
mov ah, 86H
int 15H
mov ax,score
.if(hscore<ax)
mov hscore,ax
.endif
call hsKaP
call readKaP
mov si, offset buffer
mov ax,[si+14]
add ax,30h
mov hss,ax
mov ax,hscore
;.if(hss<ax)
mov hss,ax
call hsKaP
;.endif
mov ah,04ch
int 21h
main endp
;====================================================================================PROCEDURES================================
;------------------------------------------------------------------------damage detection---------------------
DamageRobo1 proc
.if (cx<=yxf && cx>=yxi && dx>=130)
mov ycordi, 30
mov ycordf, 38
mov ax, hfr
mov xcordf, ax
mov ax, hifr
mov xcordi, ax
sub xcordi, 4
sub hifr, 4
mov colorOf, 07 ;draw box over lives
call boxKap
.if(level == 2)
mov ax, hfr
mov xcordf, ax
mov ax, hifr
mov xcordi, ax
sub xcordi, 4
sub hifr, 4
mov colorOf, 07 ;draw box over lives
call boxKap
dec hlos
.if(hlos == 0)
ret
.endif
.endif
mov ax, xbic1
mov ycordi, ax
mov ax,xbfc1
mov ycordf,ax
mov xbic1,11
mov xbfc1,22
mov ax, ybic1
mov xcordi, ax
mov ax, ybfc1
mov xcordf, ax
mov ax, yci1
mov ybic1, ax
add ybic1,10
mov ybfc1,ax
add ybfc1, 16
mov colorOf, 07 ;hide bullet
call boxKap
;dec score
dec hlos
mov sound, 8609
mov cx, 2
call beep
.endif
ret
DamageRobo1 endp
DamageRobo2 proc
.if (cx<=yxf && cx>=yxi && dx>=130)
mov ycordi, 30
mov ycordf, 38
mov ax, hfr
mov xcordf, ax
mov ax, hifr
mov xcordi, ax
sub xcordi, 4
sub hifr, 4
mov colorOf, 07 ;draw box over lives
call boxKap
.if(level == 2)
mov ax, hfr
mov xcordf, ax
mov ax, hifr
mov xcordi, ax
sub xcordi, 4
sub hifr, 4
mov colorOf, 07 ;draw box over lives
call boxKap
dec hlos
.if(hlos == 0)
ret
.endif
.endif
mov ax, xbic2
mov ycordi, ax
mov ax,xbfc2
mov ycordf,ax
mov xbic2,11
mov xbfc2,22
mov ax, ybic2
mov xcordi, ax
mov ax, ybfc2
mov xcordf, ax
mov ax, yci2
mov ybic2, ax
add ybic2,10
mov ybfc2,ax
add ybfc2, 16
mov colorOf, 07 ;hide bullet
call boxKap
;dec score
dec hlos
mov sound, 8609
mov cx, 2
call beep
.endif
ret
DamageRobo2 endp
DamageCanon proc
.if (cx<=ax && cx>=bx && dx<=10)
mov ycordi, di
mov ycordf, di
add ycordf, 8
mov xcordf, 298
mov cx, level
l2health:
add xcordf, 4
loop l2health
sub si, 4
mov ax, si
mov xcordi, ax
mov colorOf, 07 ;draw box over lives
call boxKap
mov ax, xbir
mov ycordi, ax
mov ax,xbfr
mov ycordf,ax
mov xbir,118
mov xbfr,130
mov ax, ybir
mov xcordi, ax
mov ax, ybfr
mov xcordf, ax
mov ax, shotr
mov ybir, ax
sub ybir,3
mov ybfr,ax
add ybfr, 3
mov colorOf, 07 ;hide bullet
call boxKap
; .if(
inc score
mov sound, 1140
mov cx, 3
call beep
.endif
ret
DamageCanon endp
;--------------------------------------------------------------------------------Write string------------
stringKap proc
mov ah,02h
mov bh,0 ;color
mov dh,ch ;y coordinate (left right)
mov dl,cl ;x coordinate (up down)
int 10h
lea dx , [si] ;string variable
mov ah , 9
int 21h
ret
stringKap endp
;-----------------------------------------------------------------------------Draw strings (characters)--------
drawKap proc
mov ah,0ch
mov dx, xcordi ; x coordinate initial( up down)
ywala333:
mov cx, ycordi ;y coordinate initial (left right)
xwala333:
mov al,[si]
int 10h
inc si
inc cx
cmp cx, ycordf ; y coordinate final( left right)
jb xwala333
inc dx
cmp dx, xcordf ; x coordinate final( up down)
jb ywala333
ret
drawKap endp
;------------------------------------------------------------------------------Draw box--------------
boxKap proc
mov ah, 0ch
mov dx, ycordi ;(up down)
dradbba1:
mov cx,xcordi ;(left right)
linebg1:
mov al, colorOf ;color Of box
int 10h
inc cx
cmp cx,xcordf
jl linebg1
inc dx
cmp dx,ycordf
jl dradbba1
ret
boxKap endp
;=====================================================LOSER SCREEN============================================================
losKaP proc
mov xcordi, 0
mov xcordf, 320
mov ycordi, 0
mov ycordf, 200
mov colorOf, 0
call boxKap
mov ch,9 ;write you win
mov cl,54
mov si, offset los
call stringKap
mov sound, 3224
mov cx, 2
call beep
mov sound, 1436
mov cx, 5
call beep
mov sound, 1140
mov cx, 12
call beep
; Adding Time Delay
mov cx, 03H
mov dx, 4240H
mov ah, 86H
int 15H
ret
losKaP endp
;---------------------------------------------WIN KA P------------------------------
winKaP proc
mov xcordi, 0
mov xcordf, 320
mov ycordi, 0
mov ycordf, 200
mov colorOf, 0
call boxKap
mov ch,9 ;write you win
mov cl,54
mov si, offset win
call stringKap
mov sound, 7239
mov cx, 2
call beep
mov sound, 8126
mov cx, 4
call beep
mov sound, 9121
mov cx, 7
call beep
; Adding Time Delay
mov cx, 03H
mov dx, 4240H
mov ah, 86H
int 15H
mov ah, 0ch
int 21h
.if(level < 2)
mov ch,15 ;write you win
mov cl,2
mov si, offset lstring
call stringKap
mov ah, 07
int 21h
.if(al != 13)
mov ax, 1
.endif
ret
.endif
mov ax, 1
ret
winKaP endp
;----------------------------SCORE---------------------------------
scoreKaP proc
mov bx, 10
mov dx, 0000h
mov cx, 0000h
x1:
mov dx, 0000h
div bx
push dx
inc cx
cmp ax, 0
jne x1
x2:
pop dx
add dx, 30h
mov ah, 02h
int 21h
loop x2
ret
scoreKaP endp
;-------------------------------------------------highscore--------------------------------------------
hsKaP proc
;//////////////////////////////////////////////////DATE/////////////////////////////////////////
mov si,offset date
mov ah,2Ah ;get date: date in dl, month in dh, year in cx
int 21h
mov ah,0
mov al,dl ;hours
mov bx, 10 ;initializes divisor
mov dx, 0000h ;clears dx
mov cx, 0000h ;clears cx
l1:
mov dx, 0000h ;clears dx during jump
div bx ;divides ax by bx
push dx ;pushes dx(remainder) to stack
inc cx ;increments counter to track the number of digits
cmp ax, 0 ;checks if there is still something in ax to divide
jne l1 ;jumps if ax is not zero
l2:
pop dx ;pops from stack to dx
add dx, 30h ;converts to it's ascii equivalent
mov [si],dx
inc si
loop l2
mov bx,oof ;print :
mov [si],bx
inc si
mov ah,2Ah
int 21h
add dh,48
mov [si],dh ;month
inc si
mov bx,oof ;print :
mov [si],bx
inc si
mov ax,cx
mov bx, 10
mov dx, 0000h
mov cx, 0000h
l3:
mov dx, 0000h
div bx
push dx
inc cx
cmp ax, 0
jne l3
l4:
pop dx
add dx, 30h
mov [si],dx
inc si
loop l4
;///////////////////////////////////////////TIME///////////////////////////////////////
mov si,offset ttime
mov ah,2Ch ;hour: ch, minute cl, seconds dh
int 21h
mov ah,0
mov al,ch ;hours
mov bx, 10
mov dx, 0000h
mov cx, 0000h
l5:
mov dx, 0000h
div bx
push dx
inc cx
cmp ax, 0
jne l5
l6:
pop dx
add dx, 30h
mov [si],dx
inc si
loop l6
mov bx,oof ;print :
mov [si],bx
inc si
mov ah,2Ch
int 21h
mov ah,0
mov al,cl ;minutes
mov bx, 10
mov dx, 0000h
mov cx, 0000h
l7:
mov dx, 0000h
div bx
push dx
inc cx
cmp ax, 0
jne l7
l8:
pop dx
add dx, 30h
mov [si],dx
inc si
loop l8
mov bx,oof ;print :
mov [si],bx
inc si
mov ah,2Ch
int 21h
mov ah,0
mov al,dh ;seconds
mov bx, 10
mov dx, 0000h
mov cx, 0000h
l9:
mov dx, 0000h
div bx
push dx
inc cx
cmp ax, 0
jne l9
l10:
pop dx
add dx, 30h
mov [si],dx
inc si
loop l10
;opening an existing file
mov ah,3dh
mov dx,offset [fname]
mov al,1
int 21h
mov handle1,ax
;File Pointer end of file
mov cx,0
mov ah, 42h ; Move file pointer
mov al, 02h ; End of File
int 21h
mov ah,40h
mov bx,handle1
mov cx,50
add hss,48
mov dx,offset[sstring]
int 21h
mov ah,3eh
mov dx,handle1
int 21h
mov dx,offset[hss]
int 21h
mov ah,3eh
mov dx,handle1
int 21h
ret
hsKaP endp
readKaP proc
;LOAD FILE HANDLE
lea dx, fname ; Load address of String “file”
mov al, 0 ; Open file (read)
mov ah, 3Dh ; Load File Handler and store in ax
int 21h
mov handle, ax
;READ FROM FILE
mov bx, handle ; Move file Handle to bx
lea dx, buffer
mov ah, 3Fh ; Function to read from file
int 21h
;CLOSE FILE HANDLE
mov ah, 3Eh
mov bx, handle
int 21h
ret
readKaP endp
;==================================================================Sound===============================
beep proc
mov al, 182
out 43h, al
mov ax, sound
out 42h, al
mov al, ah
out 42h, al
in al, 61h
or al, 3
out 61h, al
;mov cx, 3h
mov dx, 4240h
mov ah, 86h
int 15h
in al, 61h
and al, 11111100b
out 61h, al
ret
beep endp
nayaLevelKap proc
mov hlos, 7
mov hc1, 7
mov hc2, 7
mov ax, level
mov cx, level
add hc1, ax
add hc2, ax
mov hifr, 298
mov hfr, 298
mov hfc1, 298
mov hfc2, 298
mov movv1, 0
mov movv2, 1
mov movvb, 0
mov movvcb1, 0
mov movvcb2, 0
mov hifc1, 298
mov hifc2, 298
lhealth:
add hifc1, 4
add hifc2, 4
add hfc1, 4
add hfc2, 4
loop lhealth
; x y of bullets initial/final canon 1/2
mov xbic1,11
mov xbfc1,22
mov ax, yci1
add ax, 10
mov ybic1, ax
add ax, 6
mov ybfc1, ax
mov xbic2, 11
mov xbfc2, 22
mov ax, yci2
add ax, 10
mov ybic2, ax
add ax, 6
mov ybfc2, 6
; x/y bulets initial/final robot
mov xbir, 118
mov xbfr, 130
mov ybir, 80
mov ybfr, 86
ret
nayaLevelKap endp
end main | 20.308278 | 163 | 0.50075 |
9ca37e6c09caa13b4b96d59ea6f20e0f780ad4a3 | 311 | asm | Assembly | libsrc/_DEVELOPMENT/adt/w_vector/c/sccz80/w_vector_at_callee.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/adt/w_vector/c/sccz80/w_vector_at_callee.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/adt/w_vector/c/sccz80/w_vector_at_callee.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z |
; void *w_vector_at(b_vector_t *v, size_t idx)
SECTION code_clib
SECTION code_adt_w_vector
PUBLIC w_vector_at_callee
EXTERN w_array_at_callee
defc w_vector_at_callee = w_array_at_callee
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _w_vector_at_callee
defc _w_vector_at_callee = w_vector_at_callee
ENDIF
| 16.368421 | 46 | 0.845659 |
8f1825363488726d7840af2d6825cd04b46f7000 | 490 | asm | Assembly | oeis/348/A348508.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/348/A348508.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/348/A348508.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A348508: a(n) = A003959(n) - 2*n, where A003959 is multiplicative with a(p^e) = (p+1)^e.
; Submitted by Jon Maiga
; -1,-1,-2,1,-4,0,-6,11,-2,-2,-10,12,-12,-4,-6,49,-16,12,-18,14,-10,-8,-22,60,-14,-10,10,16,-28,12,-30,179,-18,-14,-22,72,-36,-16,-22,82,-40,12,-42,20,6,-20,-46,228,-34,8,-30,22,-52,84,-38,104,-34,-26,-58,96,-60,-28,2,601,-46,12,-66,26,-42,4,-70,288
mov $1,$0
seq $0,348507 ; a(n) = A003959(n) - n, where A003959 is multiplicative with a(p^e) = (p+1)^e.
add $1,1
sub $0,$1
| 54.444444 | 249 | 0.577551 |
1fcac64e9930704d5173bff101e8f5152fcc0441 | 4,279 | asm | Assembly | Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_1635.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_1635.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_1635.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 %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0xfb0c, %rsi
lea addresses_A_ht+0x6a8c, %rdi
nop
nop
sub $42016, %r13
mov $13, %rcx
rep movsq
nop
nop
xor %r11, %r11
lea addresses_D_ht+0xf0c, %rbx
nop
nop
nop
sub %r14, %r14
mov (%rbx), %r13w
add $27718, %rcx
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %r14
pop %r13
pop %r11
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %rcx
push %rdx
// Faulty Load
lea addresses_A+0xe70c, %rdx
nop
xor %rcx, %rcx
mov (%rdx), %r10
lea oracles, %rcx
and $0xff, %r10
shlq $12, %r10
mov (%rcx,%r10,1), %r10
pop %rdx
pop %rcx
pop %r12
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'congruent': 0, 'AVXalign': True, 'same': False, 'size': 2, 'NT': False, 'type': 'addresses_A'}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'congruent': 0, 'AVXalign': False, 'same': True, 'size': 8, 'NT': False, 'type': 'addresses_A'}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'congruent': 10, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'REPM', 'dst': {'congruent': 5, 'same': False, 'type': 'addresses_A_ht'}}
{'src': {'congruent': 11, 'AVXalign': True, 'same': False, 'size': 2, 'NT': False, 'type': 'addresses_D_ht'}, '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
*/
| 61.128571 | 2,999 | 0.661136 |
03e9fff50aabb05793e2cc6823d415f2068a1938 | 424 | asm | Assembly | 7/01.asm | Changlon/x86Assembly | f363aaad6231f27d2e27e05be2c765e7be34099c | [
"MIT"
] | null | null | null | 7/01.asm | Changlon/x86Assembly | f363aaad6231f27d2e27e05be2c765e7be34099c | [
"MIT"
] | null | null | null | 7/01.asm | Changlon/x86Assembly | f363aaad6231f27d2e27e05be2c765e7be34099c | [
"MIT"
] | null | null | null | ; @author Changlon <changlong.a2@gmail.com>
; @github https://github.com/Changlon
; @date 2022-02-05 15:33:03
; IF 中断标志位,1 ->接受 INTER 中断信号
; cli ->清除IF -> 0
; sti -> 设置IF -> 1
; iret -> pop : ip ,cs ,flags
; test r/m , r/imm 相当于and 但不保存结果,影响 zf,sf,pf
; test al, 0000 1000b 测试al 位3 从而影响 zf
; not r/m 求反指令
; hlt 使cpu 进入睡眠状态
; int r/imm 软中断,发生一个中断去处理中断指令
; int3 断点调试中断
; into 溢出中断指令 of 为1处理四号中断程序
| 16.96 | 46 | 0.622642 |
ab1babbf8a70e4f28274026f81bd1443cb1a5a37 | 18,120 | asm | Assembly | test.asm | cnsumner/SNAPS | 5913d2ea6a1715e97770bf40761b01cad563ebda | [
"MIT"
] | null | null | null | test.asm | cnsumner/SNAPS | 5913d2ea6a1715e97770bf40761b01cad563ebda | [
"MIT"
] | null | null | null | test.asm | cnsumner/SNAPS | 5913d2ea6a1715e97770bf40761b01cad563ebda | [
"MIT"
] | null | null | null | var n 1000
var newn 0
var zero 0
var i 0
var j 0
var temp1 0
var temp2 0
var arg1 0
var arg2 0
array nums1 81 66 17 -24 51 -87 -99 -52 95 -12 62 77 -57 84 2 40 95 100 86 8 -92 -17 52 51 -99 -73 53 78 18 69 45 -100 -36 24 -39 -75 -43 -65 55 90 2 17 85 -8 10 22 54 -86 63 58 5 50 -15 -53 25 60 69 -49 48 91 -13 40 -32 -68 -93 -57 8 -48 -94 81 82 -60 11 67 -87 -16 39 -54 -12 -53 -43 -93 87 -94 44 -14 -91 -67 -30 -21 -17 -57 72 -47 71 -40 -35 -62 -99 35 72 34 -59 -71 -99 -22 -81 57 -20 55 -59 -18 30 -33 -93 40 28 54 -77 -71 -32 -66 77 -72 -99 -97 9 94 -10 21 -32 30 -71 85 -18 94 18 73 36 63 6 -86 -37 68 -29 96 -26 -25 61 -70 -18 8 -42 -15 23 -9 -53 80 18 -33 -83 -23 -57 21 -25 -83 -13 -18 -80 -64 60 -84 61 -96 -74 -68 -79 -13 30 0 62 54 -26 -16 6 100 23 -79 -29 95 -54 27 36 69 16 -38 -63 97 -75 -79 79 53 13 -62 52 58 24 -23 -91 67 46 89 83 63 -97 -29 79 -75 34 81 -33 44 -71 84 -16 60 32 -10 -82 -35 85 -60 -80 89 -26 70 50 -56 9 24 -3 -95 -95 -59 6 -68 52 56 -38 89 10 -72 70 42 5 12 72 30 9 21 19 -54 -93 36 8 -12 22 56 -25 -5 -41 -41 -98 51 48 53 93 23 2 -99 -61 -38 9 -48 -35 24 81 50 2 -76 44 61 34 76 -92 70 47 -41 -18 -54 -11 88 36 27 71 71 13 -11 89 -85 -47 54 98 60 29 83 -87 27 -43 92 73 -57 34 -71 -6 20 -41 -17 -89 -80 -80 -24 81 88 -3 71 16 76 -60 64 26 -35 -57 -67 -11 -82 -50 -62 30 -11 20 -25 36 -84 -82 -25 63 65 -90 -78 -93 56 -75 -94 50 59 80 32 -45 -99 -29 69 65 -37 7 36 50 -92 30 -51 -15 -70 -75 -74 -3 49 96 87 -5 55 88 -74 -68 94 -38 -73 -24 35 30 16 21 83 -83 -28 63 -83 -28 -1 -65 -44 36 -86 -60 -84 -90 -95 58 6 -46 -69 14 -20 5 -62 -28 1 71 40 67 85 59 -83 6 49 -69 -49 71 100 -51 86 -26 -6 25 48 -7 25 -18 -35 -22 89 -73 43 -97 -86 58 -81 78 -24 75 -88 40 -15 -89 62 97 83 68 69 -21 -83 3 99 60 -58 33 13 -82 14 6 45 -76 15 -82 -85 20 -97 76 69 -74 -84 -63 15 11 53 -75 44 5 -25 -25 85 -33 46 42 94 -98 -3 -48 20 68 66 87 -4 -99 28 82 -9 -71 25 -20 25 17 88 -86 -9 23 24 -33 43 -31 -30 -50 -61 -94 -12 -95 18 -58 -85 24 70 75 -17 7 78 89 -99 -43 -89 -27 47 -69 -5 52 77 98 58 -30 75 -73 93 48 66 -95 -56 94 -16 71 20 -92 64 23 33 -63 14 -76 -38 44 -60 22 -33 -90 -97 83 -14 -74 40 -91 50 -85 35 96 29 -91 -100 58 30 58 3 -34 56 -8 87 70 -24 -79 -19 -26 -4 61 -3 -31 49 -18 -82 -18 -16 -33 36 -42 42 -97 -60 -37 -33 -17 -7 5 -51 -61 -100 -32 97 75 17 50 -50 92 16 -54 -100 49 -75 43 -50 68 42 7 47 -84 65 17 93 95 64 -32 41 17 -47 39 89 99 35 -59 17 4 15 16 70 -50 14 -15 -46 -63 -28 56 -47 -22 -59 -86 25 -21 -35 -71 27 95 59 -82 29 36 71 35 13 31 -68 38 62 -24 25 42 -35 -18 49 -20 -86 -46 -86 -83 6 -77 -7 56 -4 66 46 -47 7 -2 23 -72 -17 -98 26 15 60 98 39 36 -5 -61 27 -29 49 62 36 -90 65 60 -31 74 94 22 88 -94 -26 -96 9 68 -57 54 -78 -27 -48 -81 7 65 -96 -94 46 -54 -97 -30 6 -83 -27 -3 -35 -38 -56 84 0 5 -90 -48 38 83 40 54 77 40 -28 73 -53 -44 -59 -55 -97 -81 1 -74 -55 -16 63 26 -15 30 47 -66 -16 1 -57 -47 -68 86 77 -1 -79 35 57 60 -52 -11 -39 98 -97 -22 58 41 -34 77 62 33 44 71 -75 26 42 -79 -58 -50 -78 -55 -22 100 -88 -25 89 -55 -15 -24 -38 -83 14 -46 -48 38 -6 -81 -89 -44 -96 -37 12 -64 43 48 8 -1 60 5 -2 -91 99 77 -70 -63 69 98 -26 -81 56 -77 50 -95 66 -39 -57 55 80 -38 -61 -69 -14 36 -41 -44 68 -9 -41 -82 -84 19 24 57 -43 44 0 -27 40 0 88 37 -83 48 -37 7 96 -76 10 44 44 -28 -27 55 -95 6 -19 -87 -4 95 -49 10 -1 50 -27 -63 31 -77 -17 84 50 -23 91 56 -45 -87 -68 69 -76 -90 9 -23 -34 -79 0 58 -92 -13 -74 57 90 16 65 -49 -97 -91 -16 -19 79 59 -1 -65 69 -14 44 84 16 -39 89 -39 -57 17 0 -21 2 5 53 11 -62 25 56 99 57 77 80 -54 59 -99 4 44 -76 12 -19 -75 100 -1 99 56 23 -50 30
array nums2 -53 36 -8 -76 -80 29 84 99 -31 -25 93 -79 -31 14 -78 -99 76 88 88 47 -44 3 -100 -6 -17 88 63 63 -36 52 70 -23 56 99 51 -76 99 -5 18 32 74 -1 8 52 51 -23 -39 -71 -95 61 46 2 3 17 -31 92 -96 63 -17 84 -30 13 -75 100 45 11 -46 -92 43 35 -56 93 -64 -23 -54 8 -8 -43 77 -99 -68 -3 13 86 -43 -76 -25 -5 -34 -53 -63 87 -55 53 -63 11 80 -62 -73 -8 -37 -57 88 -83 -58 77 -93 97 -86 -19 -37 -67 -53 4 -61 -21 -17 95 -94 6 -64 82 -2 -88 41 11 43 57 -76 27 78 94 -15 68 76 61 -2 -17 -35 -92 -12 -46 -74 -13 100 45 -17 93 49 41 -81 -9 -94 -87 -64 -92 75 -64 68 -60 73 3 94 -82 41 -62 -80 29 42 26 -72 13 -63 55 44 40 85 -19 20 -24 -4 -54 72 46 -68 70 -10 -54 -11 4 -4 -22 -41 -56 -44 74 -69 -74 -26 84 -69 -20 29 -45 69 -17 -98 -25 72 -42 -43 27 -56 71 5 79 -39 -56 -36 -38 -60 13 36 80 -77 64 -44 -19 -32 1 48 -72 -16 -80 -41 -22 96 81 -22 -59 -65 -35 -17 12 51 -79 -78 10 -36 -25 45 58 99 27 24 27 -67 -65 95 84 -8 -99 61 64 -32 -52 16 -3 87 -55 12 -53 -71 19 41 -42 -39 95 98 -21 -41 -49 -29 -15 -33 41 42 -20 93 90 -96 36 91 -81 -79 -26 48 45 6 -12 -64 -100 -89 2 -15 12 35 88 -58 -67 -51 4 -57 -40 79 -47 -87 -91 70 -8 33 35 9 6 32 80 7 -32 -99 57 -37 20 -51 54 -10 87 34 78 -70 2 -67 -62 -93 -17 -13 -87 -89 23 37 -60 -69 -70 3 60 -50 -17 -86 25 3 51 -40 -39 75 -59 -90 -37 -63 73 -7 -3 -37 -58 -63 -44 -85 30 -69 57 -51 -12 43 -16 -7 -66 47 86 87 53 49 -65 35 -16 -28 4 -16 -93 -86 -73 24 71 32 -65 -8 -63 -99 -95 -100 -27 18 3 31 27 54 42 96 52 70 27 21 -62 -100 -27 -47 37 -46 -4 84 -41 -46 -43 -61 81 16 -32 -49 -36 72 -57 7 85 -76 -89 57 -81 -46 -99 -75 63 -57 38 46 70 12 85 -93 59 -100 -47 -86 -63 -68 -67 -92 29 -45 86 60 -58 26 -47 22 -77 -55 -31 70 39 22 -33 -29 -75 26 -3 21 -36 52 66 38 -35 -39 -68 -98 -9 77 -77 -17 92 82 11 80 89 0 -85 83 0 39 24 41 43 -19 6 -36 -37 43 -2 52 -94 64 -32 42 -34 -26 -61 21 79 -5 -29 -79 -15 -73 45 -65 -12 -89 60 -81 50 -85 -76 12 43 -61 -55 53 -57 -36 21 81 48 87 -77 -58 10 -11 -48 47 -62 -58 99 -80 6 48 -53 -47 -56 -32 -85 -2 -48 96 -21 -58 -17 -86 10 -57 -74 -59 -37 -72 -94 49 -25 53 100 -50 -94 8 98 50 37 -70 91 35 46 80 -100 56 54 34 -82 -81 90 2 24 99 -41 -81 45 -10 -86 -98 -77 -28 36 -18 50 -30 19 -13 -87 64 -16 -86 -47 51 29 -84 96 16 -16 90 -95 -15 42 89 76 18 80 -60 -26 -15 -85 23 54 74 -35 -2 4 -97 -59 -58 21 -56 -6 84 -19 -14 81 -56 -88 40 -98 -43 10 -45 -10 51 96 -81 81 -44 15 0 -51 15 -74 -3 66 -40 39 -48 -86 -23 22 -60 93 -16 -81 6 49 80 76 -79 -74 89 73 31 59 31 -89 -60 94 -96 85 -23 77 -37 -41 38 25 -84 -48 94 81 10 -75 -9 -93 -46 85 -44 -90 94 -43 -94 -2 27 47 -37 56 -47 36 79 94 -91 36 -97 -52 -11 -23 1 -68 64 -12 -85 12 22 8 -5 -29 -30 57 12 -46 -21 -1 -74 76 -29 4 67 -59 -45 -34 -49 -36 -65 -4 43 66 -8 -35 86 -31 -9 10 11 -47 67 27 80 45 -29 7 -75 9 1 53 57 30 14 13 91 -69 85 77 9 -57 -60 24 -94 54 -27 -26 64 99 19 -2 42 67 95 -64 -96 -13 32 64 -51 38 50 -96 -40 -54 -56 -4 31 -28 -94 47 -16 -94 69 23 -33 -55 50 97 -99 79 -15 24 90 -87 -82 56 98 87 80 62 -44 -18 27 91 12 -29 5 12 53 67 89 -23 83 -43 -86 41 14 14 -83 58 -52 -82 69 52 1 71 -55 69 69 89 46 -63 0 -12 -59 59 -78 -94 -68 -13 -21 17 -32 -64 -4 41 -1 66 16 -36 51 39 -26 92 57 15 -24 -44 67 79 -87 34 87 21 -40 -61 79 23 -80 -15 16 0 4 55 -5 -10 38 49 85 -94 -72 -94 28 71 -64 -10 39 -94 -77 -28 -82 -93 -30 -98 16 1 87 -9 -2 45 -93 -86 -37 77 -55 1 48 60 80 -24 39 76 59 -98 55 100 -18 -100 44 58 10 -73 86 76 73 -18 3 -18 45 81 34 -40 54 -71 84 -87 -46 20 6 3 -41 -75 51 31 24 94 93 -14 -41 -34 -94 62
array nums3 -68 -49 6 -97 54 0 -21 -97 -80 -50 -28 82 -41 0 -79 38 -62 -81 -37 46 -37 -60 43 -79 56 53 -36 -57 66 -27 -28 -18 -72 18 5 0 55 -67 78 -94 -96 48 -49 -89 -71 34 -60 -32 2 -40 -7 -55 46 -37 -16 -10 -57 -34 97 12 -14 100 -61 -89 64 15 42 -28 -57 35 -76 -88 -78 91 -7 -20 -76 -17 -57 -90 39 -58 48 -50 61 -48 -18 31 -9 80 -1 -82 -24 99 34 -95 -29 -67 -20 -83 -13 46 -86 78 -36 68 -62 -94 44 -65 79 61 7 -14 0 -44 -51 64 4 12 -68 -61 -54 -56 53 -30 51 -56 -25 -100 -62 -30 70 -20 89 -46 -58 29 56 91 -95 40 72 0 3 -40 76 -82 -84 43 50 36 87 81 93 -73 1 -17 22 -22 -42 72 90 -92 93 24 -78 45 -99 -21 46 -88 -87 -64 -28 -21 70 64 69 -34 59 -52 -98 -95 -78 -38 -99 -56 17 93 -60 76 -5 -48 94 -12 -97 -73 -87 -29 -26 21 17 100 27 -33 -95 70 25 11 -40 -76 -52 62 -74 51 72 93 -52 -7 22 33 20 -35 73 28 -74 -35 97 45 -13 -75 -58 82 91 78 96 26 47 -50 -64 -27 -40 -14 -34 33 -80 -88 18 -12 -42 58 -17 -70 -75 -64 -87 -8 -52 21 15 59 87 -39 -5 -45 -79 10 -43 -90 -71 -2 6 47 85 85 -50 23 92 -84 -25 98 24 -62 -71 23 70 -40 17 89 -25 -100 7 -48 -54 9 92 -9 20 98 33 -77 11 18 73 41 -43 -26 -32 -3 -6 -9 72 97 33 -34 23 -97 -69 -39 -38 49 95 83 96 -54 26 -93 -76 -22 10 53 37 -66 -7 16 -79 -60 -98 -75 87 -2 -33 63 20 56 -20 -83 -25 45 -42 83 17 -85 6 74 93 8 -1 -53 37 -90 -93 -51 -95 47 33 -33 9 -56 -98 99 29 -80 100 16 -6 71 42 -89 23 30 -59 19 47 57 -66 31 -70 87 -4 -76 13 29 18 -64 -21 93 -84 57 91 -83 26 61 92 30 -43 88 -43 -81 -67 -60 97 0 -12 53 -78 -82 100 46 63 35 7 42 40 65 -84 -15 46 64 12 -2 88 -59 -57 -45 56 -64 53 62 -57 -48 -27 -1 66 -86 -76 -96 76 -22 -98 -75 -12 5 33 16 -35 37 -19 -56 91 -64 73 45 -95 39 76 12 52 -25 -27 2 9 -99 -84 -1 33 -63 -22 -57 -57 -84 71 -96 -47 59 40 -36 -4 -59 -54 95 -26 -64 -96 27 92 -21 40 -65 11 43 -60 -30 -92 10 35 60 -80 44 28 14 69 66 -90 -34 57 -41 23 -10 64 -82 -16 69 11 14 92 16 -47 -42 -25 14 5 -66 87 -55 44 -55 -61 98 75 -99 -42 8 54 -41 67 -38 -43 -57 -85 -54 -19 -30 -92 93 70 13 -46 56 60 -55 -29 48 7 -46 -26 -73 -50 -92 -15 -58 -78 -50 -45 -92 85 -18 56 53 74 29 -60 91 85 92 -20 1 -35 -30 13 -4 -90 55 37 48 -44 -66 -2 99 5 56 11 -58 -27 -30 25 -75 52 76 21 -46 -53 49 -38 3 15 -76 29 -29 49 29 65 47 34 54 97 40 7 -16 51 -41 -72 -52 -22 -86 -66 57 44 34 -89 25 -97 59 -24 35 -66 77 29 -97 -17 -65 -2 -40 -59 -18 -40 48 86 -47 -81 -34 -64 82 24 75 72 -99 64 13 -89 75 -43 29 6 -13 -96 2 -34 -38 6 -69 17 -18 16 -9 99 67 -63 85 38 55 -20 -95 61 93 -7 88 -7 70 55 59 82 99 88 -60 -93 22 -30 -79 71 -31 95 -39 -18 -35 31 -84 78 9 -87 21 38 -17 82 72 -6 -41 89 80 -9 92 -69 29 -1 -11 0 84 40 47 -84 12 -64 86 2 59 -56 83 -14 66 -89 74 17 30 -43 -68 -68 -9 -66 62 77 -98 8 23 -89 21 16 -83 7 33 83 60 -24 89 -40 -79 80 48 64 17 43 72 -96 -30 -57 -2 58 21 -35 78 -91 -54 32 14 -89 95 -90 -41 -44 85 -86 -3 -1 8 -28 -96 49 -48 93 48 19 -76 -90 -2 -24 -77 33 55 54 1 -62 -74 -75 -78 -38 74 -77 96 98 -1 -60 68 -9 -98 76 7 30 27 -48 -38 -18 76 47 9 100 -79 -70 33 -23 37 24 -18 35 67 47 -89 83 54 -26 -93 -8 29 -5 -21 36 66 87 31 -66 49 92 -58 16 69 51 9 45 94 -77 -2 57 -4 -61 48 47 31 -49 9 -25 86 -80 93 -70 74 34 -47 -55 63 -85 48 -66 -61 -36 -42 80 66 100 15 -57 -73 -79 79 -70 -28 30 -29 14 -88 37 93 60 26 -15 -2 -1 56 -66 -38 64 -40 58 -87 59 92 62 49 1 -70 55 -64 95 76 16 30 -14 -90 33 53 -86 -72 46 86 87 -62 36 44 -25 26 -4 49 91 -8 -19 19 -74 15 53 30 -29 -41 29 100 -26 -80 1 94 -76 -44 52 11 37 -8 -47 89 -18 0 66 69 94 61 51 -9 -57 -32 -48 -85 72 -53 -52 -80
array nums4 -78 21 70 -95 -19 99 83 -64 -100 81 39 88 80 23 -51 -46 -20 13 -64 -13 -53 -11 -81 -24 63 17 30 52 49 69 -41 63 -38 50 -76 -69 1 82 41 25 -53 -12 16 -50 -77 -61 -90 83 -62 39 10 0 15 -60 52 -43 -78 -70 73 -37 34 39 -13 74 -79 -92 -69 12 -28 -44 -28 -57 33 -8 25 -20 11 -43 65 -9 44 -43 78 -54 -22 24 -9 18 88 -79 98 -82 86 -46 31 -95 -66 9 -34 37 -85 -9 -23 -41 -62 -62 65 9 14 -97 -81 47 90 -2 58 -39 99 72 -65 -66 81 -47 -87 24 -19 75 -38 -49 -31 72 -52 -98 -16 -77 -53 93 -32 -88 -31 -16 25 49 22 7 -5 80 24 62 -4 -61 -74 -9 -83 -99 -49 86 -54 -25 4 46 -37 91 -78 60 57 -65 4 -41 46 -76 -15 -78 85 5 8 41 36 -76 95 18 3 -15 38 32 -12 77 -11 79 69 -1 90 56 55 84 -3 87 -18 58 -82 99 -19 -30 -98 20 -18 79 -24 13 14 -57 41 -43 18 50 67 58 91 -68 86 -86 99 21 60 -80 63 73 -5 41 86 11 -11 -96 8 -86 85 86 15 -73 -33 15 -67 20 -95 -27 88 55 -65 54 67 76 50 -85 16 -92 -98 -82 72 65 22 -21 36 27 -34 95 -41 -98 -36 -92 -29 -100 -20 -42 6 58 -57 64 -91 28 19 -99 99 -14 -41 26 -82 22 -85 50 -93 -82 7 -100 67 6 80 -98 24 -53 39 85 -71 82 -48 4 -13 74 -10 73 -84 -23 -37 -76 -16 -56 73 53 -10 86 -7 -53 -89 58 -91 26 0 -38 -59 -7 92 63 -2 -87 18 49 -62 37 -88 -77 45 -26 -2 -96 -67 -61 -14 34 7 -79 -60 51 91 -20 41 -87 52 22 18 27 95 -55 20 -16 -65 3 85 -57 -24 72 62 76 -7 -98 93 99 -3 30 -10 86 47 -16 -60 17 -46 50 -98 29 36 62 94 90 47 -11 86 -74 -30 -11 -57 -62 -55 -33 28 40 -25 21 66 -69 -83 -36 -26 57 -45 37 80 91 61 -64 -86 46 37 78 -81 -29 -90 55 -18 53 7 -18 74 -36 28 75 51 -40 -55 -54 24 25 21 -23 95 89 -71 -14 -68 54 81 -49 -70 62 -94 -51 28 -29 87 86 -49 -37 69 -2 -28 4 -57 51 -79 -90 10 -97 48 -38 -89 6 -80 77 -72 -95 23 -63 -43 -10 20 -32 -23 84 -65 -48 99 27 -52 -19 40 70 -65 98 56 42 61 -58 91 53 49 13 13 38 -37 -19 49 74 55 57 -57 88 -40 -45 5 -10 8 -63 -4 -46 95 42 13 -32 -60 -70 -25 73 -9 62 58 -67 40 29 -80 -35 56 62 -60 30 32 73 17 -38 -13 1 -31 97 -66 97 -33 97 -59 -94 -59 87 -35 -8 -82 76 96 -31 -66 61 10 100 23 98 56 47 7 -46 -33 -96 79 -77 -19 -23 -61 -44 64 36 1 6 66 88 -90 20 52 -42 94 -65 49 -92 58 3 20 38 92 23 -88 -22 97 -25 -30 -41 33 16 -11 -83 43 -6 -88 -58 -77 81 13 75 20 64 18 -16 -14 -57 98 27 -51 -41 15 -96 -14 -30 32 65 -57 0 61 -46 -89 38 37 37 -97 46 76 94 29 69 -42 57 33 -86 -54 27 67 42 13 11 -45 2 -65 89 -83 -55 -34 67 -75 -42 -1 -22 -92 -81 50 -18 -17 96 26 76 -63 81 -76 71 -77 39 81 99 -65 69 37 -78 -63 21 14 -80 17 43 -80 35 -4 -32 -81 -4 -94 32 72 -69 40 80 30 91 -55 54 -59 -94 68 -76 -48 -12 56 -6 -69 -23 -45 39 19 24 -36 -22 47 -79 -58 -90 56 18 -85 -62 75 -16 16 76 70 69 -81 -16 33 -99 66 -67 -48 -81 -28 20 -76 90 -47 37 35 33 -38 -37 27 -39 34 10 10 1 -88 -11 -12 -57 -95 -13 55 93 -94 -91 63 37 -9 -68 83 -69 -84 -73 92 -14 -54 73 11 -74 90 19 -99 63 -41 83 75 64 -39 -5 77 -82 -28 -50 78 -36 -1 -34 65 47 -16 11 26 99 -1 -64 90 37 -7 40 53 -34 91 27 59 73 41 -62 -41 14 -78 6 -56 88 -86 -85 -73 -61 -75 21 -41 87 69 -96 5 -14 37 -61 -16 69 -43 63 45 34 -14 15 57 -25 -59 -27 73 81 27 52 64 -46 -64 89 54 -75 48 -68 -91 8 22 -40 98 31 -78 -61 -47 -7 45 25 32 21 0 -68 76 -77 -19 18 -80 -56 98 -12 70 86 25 -45 55 -77 18 -46 32 -62 -48 -20 90 -12 -10 10 11 -38 61 4 -94 18 23 -80 30 -6 40 -22 -79 -17 -43 53 -20 -68 -37 15 11 88 -95 -56 -2 66 -64 17 95 63 82 -64 5 -21 -70 54 28 74 -55 99 -42 12 -75 81 11 -43 -58 -62 38 -32 56 -84 82 29 -57 59 39 -66 -7 32 -22 24 -21 10 -10 17 94 20 94 16 -86 -66 64 -77 69 -24 30 83 36 -19 98 15 92 67 63 -73 30 -23
array nums5 41 1 -17 29 94 37 9 -16 2 13 76 -100 -73 -83 10 -47 44 94 -34 -65 19 -22 6 97 -23 -8 49 49 65 53 71 87 43 -23 59 93 80 -64 -8 95 53 18 72 74 62 -97 44 34 -87 17 -6 -61 -99 -8 -42 26 -85 40 1 53 96 37 100 -10 89 -76 -11 26 -21 52 96 -34 30 -67 -97 8 87 -54 -96 51 49 -83 -52 -5 -41 -74 65 -90 -53 88 -17 76 75 18 -74 -89 5 83 74 -68 87 9 65 46 11 27 98 67 -26 -9 -72 -29 -70 41 65 75 -42 -37 3 34 -42 97 -48 -10 45 -24 -98 72 98 99 -38 99 -19 85 40 -83 6 -67 97 -37 -68 -2 -41 -21 -48 94 -52 53 89 96 -61 -5 -25 1 -79 62 95 -55 -99 -50 -11 99 83 -94 50 -22 -53 -49 -47 -74 -50 70 1 50 -42 34 83 -5 -15 -16 -82 -1 73 70 -40 70 60 -58 90 -37 -8 -46 -66 99 -94 59 75 28 21 100 -91 58 48 60 -21 -44 45 30 13 62 3 61 -33 35 -8 -65 10 -60 16 -82 -41 -33 63 -76 43 89 31 -60 47 -13 -17 15 25 98 39 41 -67 80 -12 -3 -76 -42 -65 86 -83 -5 -2 -72 -37 -7 52 -31 -34 44 23 -79 72 20 4 39 -71 -77 16 -16 -62 -14 46 -62 -33 87 73 -47 91 21 -77 47 55 -2 -9 59 -24 -54 -75 -94 -71 -100 76 -45 -86 -1 39 2 91 -67 -49 79 -6 86 24 -27 -58 -78 11 -90 11 27 24 -21 13 33 -16 82 -14 55 24 73 89 42 -49 37 31 82 73 -38 75 71 9 -97 20 -21 3 -2 -76 -75 71 -77 -65 27 69 -99 8 83 -96 -80 90 45 -57 -98 -49 64 13 -44 -63 -32 70 83 -77 22 -99 -56 2 80 36 -13 14 40 -32 19 -78 -94 25 -41 6 -55 6 -1 11 86 -96 -88 -56 -54 -14 -77 56 62 -4 51 -63 -80 -88 15 99 31 92 -6 99 86 -26 5 -30 73 -93 100 -22 -56 -33 7 96 -24 65 97 -26 -7 -76 -92 -24 89 23 26 17 -73 56 43 34 -77 -41 -88 -84 -27 -13 69 33 -19 -57 61 -1 3 80 33 -4 -48 -40 -46 16 -69 -61 66 -33 -70 -30 68 -76 75 94 56 -58 -85 -63 -84 -24 -67 -26 17 -52 52 -36 99 28 15 -39 87 -35 -7 58 7 -100 36 -20 -92 44 -69 60 -58 -89 10 -46 -2 -23 99 -56 -21 -66 79 -93 -15 94 -27 94 28 -50 89 35 23 41 28 -86 58 95 85 -22 37 2 87 98 -58 47 -27 -37 -51 -27 68 -3 13 16 -50 -75 -24 -1 39 42 -9 -73 70 -80 65 85 -16 -8 94 98 29 -25 -5 25 45 -38 -61 24 4 -38 2 -55 -65 -93 36 84 96 7 29 -84 75 -33 82 5 85 -80 -90 36 -87 94 -59 -96 50 89 39 51 87 -23 -82 69 53 43 49 47 12 86 81 80 -48 13 48 63 67 -57 71 -17 89 -26 -32 89 -36 77 -61 -58 0 37 -39 -21 -67 -53 -34 -71 -49 -91 82 72 -96 51 37 -11 -15 -27 -5 91 2 26 -23 22 -37 -80 -83 66 100 83 -91 88 -73 -33 -27 -31 96 -57 53 -64 49 -89 83 64 49 77 41 63 99 -32 -77 -45 40 -23 -25 -9 64 -19 87 -10 63 -30 -14 41 80 85 -49 16 97 -33 44 -77 -89 28 11 2 23 -70 -85 1 28 42 -22 -14 35 17 -15 -77 -12 -12 94 72 26 81 30 46 -2 -68 -7 -37 88 66 -16 -2 -49 56 -8 -82 94 0 -92 67 20 16 -8 -25 12 -28 0 -60 -42 60 88 98 -89 67 87 -95 -12 87 55 -84 91 85 85 -46 -67 -26 53 49 -47 31 -74 11 42 -79 61 49 -52 -82 21 16 94 47 -83 -24 47 29 13 66 -92 46 28 -93 -40 -76 -1 -17 49 97 20 -67 56 -4 50 -7 -65 32 -10 5 -11 -8 10 12 51 -49 93 -99 -75 39 8 47 -97 -54 -46 7 -37 62 96 -36 65 37 43 -94 -15 -46 -74 37 -26 -47 -47 -31 59 58 -43 -52 -7 90 32 -49 0 -3 59 -65 -77 65 15 -20 -66 75 94 -46 2 -47 36 96 -90 79 0 -43 10 81 66 -6 33 2 77 -11 71 -89 61 58 76 -57 57 76 41 -58 -7 -80 -1 47 5 -21 53 -17 60 -76 83 -78 37 99 7 -80 -55 42 -22 -80 56 78 20 27 -32 -9 -16 -17 78 22 40 23 41 -93 89 62 74 -98 -3 72 63 31 -32 -74 -36 17 70 -12 17 7 93 31 41 7 -21 24 25 -46 -95 19 -31 -71 43 34 -46 80 35 -25 78 87 -69 -71 52 96 -50 -77 -20 -44 -5 -1 26 -24 -100 70 76 -20 67 -90 -69 -30 33 63 71 -68 49 74 -10 -43 -68 -24 -40 -57 -39 -85 49 -40 -57 -90 82 24 99 79 78 -5 75 10 -91 -33 -30 26 35 -81 -90 5 -93 -46 -63 6 -72 46 15 92 65 79 99 91 29
swap:
LOADI arg1
STORE temp1
LOADI arg2
STOREI arg1
LOAD temp1
STOREI arg2
RET
entry:
loop:
LOAD n //while n > 0
BZERO endloop: //..
LOAD zero //newn = 0
STORE newn //..
ADDI 1 //i = 1
STORE i //..
loop2:
LOAD i //for i < n
SLT n //..
BZERO endloop2: //..
LOAD i //if data[i-1] > data[i]
ADDI nums5 //..
STORE arg2 //.. (arg2 = data address + offset i)
LOADI arg2 //.. (load data[i])
STORE temp1 //.. (store data[i] in temp1)
LOAD arg2 //..
ADDI -1 //..
STORE arg1 //.. (arg1 = arg2 - 1)
LOADI arg1 //.. (load data[i-1])
SGT temp1 //..
BZERO ifnot: //..
CALL swap: //swap the values
LOAD i //newn = i
STORE newn //..
ifnot:
LOAD i //++i
ADDI 1 //..
STORE i //..
JUMP loop2: //
endloop2:
LOAD newn //n = newn
STORE n //..
JUMP loop: //
endloop:
exit | 262.608696 | 3,456 | 0.560817 |
f88a910a4c69a9f8c335f4b0568a116c7c713f23 | 427 | asm | Assembly | oeis/283/A283428.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/283/A283428.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/283/A283428.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A283428: Starting with a(1)=3, a(2)=4, a(n)=sum of digits of a(n-1) + sum of digits of a(n-2).
; Submitted by Christian Krause
; 3,4,7,11,9,11,11,4,6,10,7,8,15,14,11,7,9,16,16,14,12,8,11,10,3,4,7,11,9,11,11,4,6,10,7,8,15,14,11,7,9,16,16,14,12,8,11,10,3,4,7,11,9,11,11,4,6,10,7,8,15,14,11,7,9,16,16,14,12,8,11,10,3,4
mov $2,2
lpb $0
sub $0,1
mod $2,9
mov $3,$4
mov $4,$2
add $2,$3
add $2,1
lpe
mov $0,$2
add $0,1
| 26.6875 | 188 | 0.58548 |
dd1759b9b0d81aa5d46693a4149953467c63afc2 | 261 | asm | Assembly | programs/oeis/217/A217628.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/217/A217628.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/217/A217628.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A217628: a(n) = 3^((n-1)*(n+2)/2).
; 1,9,243,19683,4782969,3486784401,7625597484987,50031545098999707,984770902183611232881,58149737003040059690390169,10301051460877537453973547267843
add $0,2
bin $0,2
mov $1,3
pow $1,$0
sub $1,3
div $1,3
add $1,1
mov $0,$1
| 21.75 | 148 | 0.731801 |
70323e5f46408a92ca90fa610826a5388ab100b8 | 830 | asm | Assembly | oeis/142/A142627.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/142/A142627.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/142/A142627.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A142627: Primes congruent to 37 mod 55.
; Submitted by Jon Maiga
; 37,257,367,587,1907,2017,2237,2347,2677,2897,3557,4217,4327,4547,4657,4877,4987,5647,5867,6197,6637,6857,6967,7187,7297,7517,8287,8837,9277,9497,10267,10487,10597,11257,11587,11807,12577,12907,13127,13457,13567,14447,14557,14887,15107,15217,15767,15877,16097,16427,17417,17747,18077,18517,19507,19727,20717,21157,21377,21487,21817,22037,22147,22367,22697,22807,23027,23357,23687,24677,25117,25447,25667,25997,26107,26437,26987,27427,27647,28087,28307,29077,29297,30727,31277,31387,31607,32377,32707
mov $1,18
mov $2,$0
add $2,2
pow $2,2
lpb $2
sub $2,2
mov $3,$1
mul $3,2
seq $3,10051 ; Characteristic function of primes: 1 if n is prime, else 0.
sub $0,$3
add $1,55
mov $4,$0
max $4,0
cmp $4,$0
mul $2,$4
lpe
mov $0,$1
mul $0,2
sub $0,109
| 34.583333 | 500 | 0.73012 |
43e6ba7e95b5a9ccf8ffe993d94483523c84221d | 12,060 | asm | Assembly | workshop.asm | FolkertVanVerseveld/c64 | a244b976cc650a86566b88066c0f7cb3a3915f09 | [
"MIT"
] | 1 | 2018-12-26T22:55:37.000Z | 2018-12-26T22:55:37.000Z | workshop.asm | FolkertVanVerseveld/c64 | a244b976cc650a86566b88066c0f7cb3a3915f09 | [
"MIT"
] | null | null | null | workshop.asm | FolkertVanVerseveld/c64 | a244b976cc650a86566b88066c0f7cb3a3915f09 | [
"MIT"
] | null | null | null | // Assembler: KickAssembler v4.19
BasicUpstart2(main)
.var brkFile = createFile("breakpoints.txt")
.macro break() {
.eval brkFile.writeln("break " + toHexString(*))
}
.var irq_line_top = 40
.var irq_line_middle = 200
.var irq_line_bottom = 250
.var roll_timer = 6
.var music = LoadSid("/home/methos/Music/HVSC69/MUSICIANS/0-9/20CC/van_Santen_Edwin/Greystorm_unused_hi-score.sid")
main:
lda #0
jsr music.init
// first loop
ldy #0
lda #$e0
!l:
!fetch:
lda logo
!put:
sta $0400 + 7 * 40
inc !fetch- + 1
bne !noinc+
inc !fetch- + 2
!noinc:
inc !put- + 1
bne !noinc+
inc !put- + 2
!noinc:
iny
bne !l-
// second loop
!l:
!fetch:
lda logo + $100
!put:
sta $0500 + 7 * 40
inc !fetch- + 1
bne !noinc+
inc !fetch- + 2
!noinc:
inc !put- + 1
bne !noinc+
inc !put- + 2
!noinc:
iny
cpy #184
bne !l-
ldx #0
!l:
lda txt_bottom, x
sta $0400 + 19 * 40, x
inx
cpx #4 * 40
bne !l-
// setup colram at bottom to white
lda #1
ldx #0
!l:
sta $d800 + 19 * 40, x
inx
bne !l-
// INLINE setup irq
sei
lda #$35 // Disable KERNAL and BASIC ROM
sta $01 // Enable all RAM
lda #<irq_top // Setup IRQ vector
sta $fffe
lda #>irq_top
sta $ffff
lda #<dummy
sta $fffa
sta $fffc
lda #>dummy
sta $fffb
sta $fffd
lda #%00011011 // Load screen control:
// Vertical scroll : 3
// Screen height : 25 rows
// Screen : ON
// Mode : TEXT
// Extended background: OFF
sta $d011 // Set screen control
lda #irq_line_top
sta $d012
lda #$01 // Enable mask
sta $d01a // IRQ interrupt ON
lda #%01111111 // Load interrupt control CIA 1:
// Timer A underflow : OFF
// Timer B underflow : OFF
// TOD : OFF
// Serial shift reg. : OFF
// Pos. edge FLAG pin: OFF
sta $dc0d // Set interrupt control CIA 1
sta $dd0d // Set interrupt control CIA 2
lda $dc0d // Clear pending interrupts CIA 1
lda $dd0d // Clear pending interrupts CIA 2
lda #$00
sta $dc0e
lda #$01
sta $d019 // Acknowledge pending interrupts
cli // Start firing interrupts
jmp *
irq_top:
pha
txa
pha
tya
pha
ldx #8
!l:
dex
bne !l-
// modify colors
!timer:
ldx #roll_timer
beq !roll+
jmp !ignore+
!roll:
ldx #roll_timer
stx !timer- + 1
!i0:
lda #14
sta $d800 + 7 * 40 + 5 * 40 + 19
sta $d800 + 7 * 40 + 5 * 40 + 20
inc !i0- + 1
!i1:
lda #13
sta $d800 + 7 * 40 + 4 * 40 + 19
sta $d800 + 7 * 40 + 4 * 40 + 20
sta $d800 + 7 * 40 + 6 * 40 + 19
sta $d800 + 7 * 40 + 6 * 40 + 20
inc !i1- + 1
!i2:
lda #12
sta $d800 + 7 * 40 + 3 * 40 + 19
sta $d800 + 7 * 40 + 3 * 40 + 20
sta $d800 + 7 * 40 + 7 * 40 + 19
sta $d800 + 7 * 40 + 7 * 40 + 20
inc !i2- + 1
!i3:
lda #11
sta $d800 + 7 * 40 + 2 * 40 + 19
sta $d800 + 7 * 40 + 2 * 40 + 20
sta $d800 + 7 * 40 + 8 * 40 + 19
sta $d800 + 7 * 40 + 8 * 40 + 20
inc !i3- + 1
!i4:
lda #10
sta $d800 + 7 * 40 + 1 * 40 + 16
sta $d800 + 7 * 40 + 1 * 40 + 17
sta $d800 + 7 * 40 + 1 * 40 + 18
sta $d800 + 7 * 40 + 1 * 40 + 19
sta $d800 + 7 * 40 + 1 * 40 + 20
sta $d800 + 7 * 40 + 1 * 40 + 21
sta $d800 + 7 * 40 + 1 * 40 + 22
sta $d800 + 7 * 40 + 1 * 40 + 23
sta $d800 + 7 * 40 + 9 * 40 + 16
sta $d800 + 7 * 40 + 9 * 40 + 17
sta $d800 + 7 * 40 + 9 * 40 + 18
sta $d800 + 7 * 40 + 9 * 40 + 19
sta $d800 + 7 * 40 + 9 * 40 + 20
sta $d800 + 7 * 40 + 9 * 40 + 21
sta $d800 + 7 * 40 + 9 * 40 + 22
sta $d800 + 7 * 40 + 9 * 40 + 23
inc !i4- + 1
!i5:
lda #9
sta $d800 + 7 * 40 + 0 * 40 + 16
sta $d800 + 7 * 40 + 0 * 40 + 17
sta $d800 + 7 * 40 + 0 * 40 + 18
sta $d800 + 7 * 40 + 0 * 40 + 19
sta $d800 + 7 * 40 + 0 * 40 + 20
sta $d800 + 7 * 40 + 0 * 40 + 21
sta $d800 + 7 * 40 + 0 * 40 + 22
sta $d800 + 7 * 40 + 0 * 40 + 23
sta $d800 + 7 * 40 + 10 * 40 + 16
sta $d800 + 7 * 40 + 10 * 40 + 17
sta $d800 + 7 * 40 + 10 * 40 + 18
sta $d800 + 7 * 40 + 10 * 40 + 19
sta $d800 + 7 * 40 + 10 * 40 + 20
sta $d800 + 7 * 40 + 10 * 40 + 21
sta $d800 + 7 * 40 + 10 * 40 + 22
sta $d800 + 7 * 40 + 10 * 40 + 23
inc !i5- + 1
!v0:
lda #0
sta $d800 + 7 * 40 + 0 * 40 + 4
sta $d800 + 7 * 40 + 0 * 40 + 5
sta $d800 + 7 * 40 + 0 * 40 + 12
sta $d800 + 7 * 40 + 0 * 40 + 13
inc !v0- + 1
!v1:
lda #1
sta $d800 + 7 * 40 + 1 * 40 + 4
sta $d800 + 7 * 40 + 1 * 40 + 5
sta $d800 + 7 * 40 + 1 * 40 + 12
sta $d800 + 7 * 40 + 1 * 40 + 13
inc !v1- + 1
!v2:
lda #2
sta $d800 + 7 * 40 + 2 * 40 + 4
sta $d800 + 7 * 40 + 2 * 40 + 5
sta $d800 + 7 * 40 + 2 * 40 + 6
sta $d800 + 7 * 40 + 2 * 40 + 11
sta $d800 + 7 * 40 + 2 * 40 + 12
sta $d800 + 7 * 40 + 2 * 40 + 13
inc !v2- + 1
!v3:
lda #3
sta $d800 + 7 * 40 + 3 * 40 + 5
sta $d800 + 7 * 40 + 3 * 40 + 6
sta $d800 + 7 * 40 + 3 * 40 + 11
sta $d800 + 7 * 40 + 3 * 40 + 12
inc !v3- + 1
!v4:
lda #4
sta $d800 + 7 * 40 + 4 * 40 + 5
sta $d800 + 7 * 40 + 4 * 40 + 6
sta $d800 + 7 * 40 + 4 * 40 + 11
sta $d800 + 7 * 40 + 4 * 40 + 12
inc !v4- + 1
!v5:
lda #5
sta $d800 + 7 * 40 + 5 * 40 + 5
sta $d800 + 7 * 40 + 5 * 40 + 6
sta $d800 + 7 * 40 + 5 * 40 + 7
sta $d800 + 7 * 40 + 5 * 40 + 10
sta $d800 + 7 * 40 + 5 * 40 + 11
sta $d800 + 7 * 40 + 5 * 40 + 12
inc !v5- + 1
!v6:
lda #6
sta $d800 + 7 * 40 + 6 * 40 + 6
sta $d800 + 7 * 40 + 6 * 40 + 7
sta $d800 + 7 * 40 + 6 * 40 + 10
sta $d800 + 7 * 40 + 6 * 40 + 11
inc !v6- + 1
!v7:
lda #7
sta $d800 + 7 * 40 + 7 * 40 + 6
sta $d800 + 7 * 40 + 7 * 40 + 7
sta $d800 + 7 * 40 + 7 * 40 + 8
sta $d800 + 7 * 40 + 7 * 40 + 9
sta $d800 + 7 * 40 + 7 * 40 + 10
sta $d800 + 7 * 40 + 7 * 40 + 11
inc !v7- + 1
!v8:
lda #8
sta $d800 + 7 * 40 + 8 * 40 + 6
sta $d800 + 7 * 40 + 8 * 40 + 7
sta $d800 + 7 * 40 + 8 * 40 + 8
sta $d800 + 7 * 40 + 8 * 40 + 9
sta $d800 + 7 * 40 + 8 * 40 + 10
sta $d800 + 7 * 40 + 8 * 40 + 11
inc !v8- + 1
!v9:
lda #9
sta $d800 + 7 * 40 + 9 * 40 + 7
sta $d800 + 7 * 40 + 9 * 40 + 8
sta $d800 + 7 * 40 + 9 * 40 + 9
sta $d800 + 7 * 40 + 9 * 40 + 10
inc !v9- + 1
!v10:
lda #10
sta $d800 + 7 * 40 + 10 * 40 + 7
sta $d800 + 7 * 40 + 10 * 40 + 8
sta $d800 + 7 * 40 + 10 * 40 + 9
sta $d800 + 7 * 40 + 10 * 40 + 10
inc !v10- + 1
!a0:
lda #15
sta $d800 + 7 * 40 + 0 * 40 + 28
sta $d800 + 7 * 40 + 0 * 40 + 29
sta $d800 + 7 * 40 + 0 * 40 + 30
sta $d800 + 7 * 40 + 0 * 40 + 31
sta $d800 + 7 * 40 + 0 * 40 + 32
sta $d800 + 7 * 40 + 0 * 40 + 33
inc !a0- + 1
!a1:
lda #14
sta $d800 + 7 * 40 + 1 * 40 + 27
sta $d800 + 7 * 40 + 1 * 40 + 28
sta $d800 + 7 * 40 + 1 * 40 + 29
sta $d800 + 7 * 40 + 1 * 40 + 30
sta $d800 + 7 * 40 + 1 * 40 + 31
sta $d800 + 7 * 40 + 1 * 40 + 32
sta $d800 + 7 * 40 + 1 * 40 + 33
sta $d800 + 7 * 40 + 1 * 40 + 34
inc !a1- + 1
!a2:
lda #13
sta $d800 + 7 * 40 + 2 * 40 + 27
sta $d800 + 7 * 40 + 2 * 40 + 28
sta $d800 + 7 * 40 + 2 * 40 + 29
sta $d800 + 7 * 40 + 2 * 40 + 32
sta $d800 + 7 * 40 + 2 * 40 + 33
sta $d800 + 7 * 40 + 2 * 40 + 34
inc !a2- + 1
!a3:
lda #12
sta $d800 + 7 * 40 + 3 * 40 + 27
sta $d800 + 7 * 40 + 3 * 40 + 28
sta $d800 + 7 * 40 + 3 * 40 + 33
sta $d800 + 7 * 40 + 3 * 40 + 34
inc !a3- + 1
!a4:
lda #11
sta $d800 + 7 * 40 + 4 * 40 + 27
sta $d800 + 7 * 40 + 4 * 40 + 28
sta $d800 + 7 * 40 + 4 * 40 + 33
sta $d800 + 7 * 40 + 4 * 40 + 34
inc !a4- + 1
!a5:
lda #10
sta $d800 + 7 * 40 + 5 * 40 + 27
sta $d800 + 7 * 40 + 5 * 40 + 28
sta $d800 + 7 * 40 + 5 * 40 + 29
sta $d800 + 7 * 40 + 5 * 40 + 30
sta $d800 + 7 * 40 + 5 * 40 + 31
sta $d800 + 7 * 40 + 5 * 40 + 32
sta $d800 + 7 * 40 + 5 * 40 + 33
sta $d800 + 7 * 40 + 5 * 40 + 34
inc !a5- + 1
!a5:
lda #9
sta $d800 + 7 * 40 + 6 * 40 + 27
sta $d800 + 7 * 40 + 6 * 40 + 28
sta $d800 + 7 * 40 + 6 * 40 + 29
sta $d800 + 7 * 40 + 6 * 40 + 30
sta $d800 + 7 * 40 + 6 * 40 + 31
sta $d800 + 7 * 40 + 6 * 40 + 32
sta $d800 + 7 * 40 + 6 * 40 + 33
sta $d800 + 7 * 40 + 6 * 40 + 34
inc !a5- + 1
!a6:
lda #8
sta $d800 + 7 * 40 + 7 * 40 + 27
sta $d800 + 7 * 40 + 7 * 40 + 28
sta $d800 + 7 * 40 + 7 * 40 + 29
sta $d800 + 7 * 40 + 7 * 40 + 32
sta $d800 + 7 * 40 + 7 * 40 + 33
sta $d800 + 7 * 40 + 7 * 40 + 34
inc !a6- + 1
!a7:
lda #7
sta $d800 + 7 * 40 + 8 * 40 + 27
sta $d800 + 7 * 40 + 8 * 40 + 28
sta $d800 + 7 * 40 + 8 * 40 + 33
sta $d800 + 7 * 40 + 8 * 40 + 34
inc !a7- + 1
!a8:
lda #6
sta $d800 + 7 * 40 + 9 * 40 + 27
sta $d800 + 7 * 40 + 9 * 40 + 28
sta $d800 + 7 * 40 + 9 * 40 + 33
sta $d800 + 7 * 40 + 9 * 40 + 34
inc !a8- + 1
!a9:
lda #5
sta $d800 + 7 * 40 + 10 * 40 + 27
sta $d800 + 7 * 40 + 10 * 40 + 28
sta $d800 + 7 * 40 + 10 * 40 + 33
sta $d800 + 7 * 40 + 10 * 40 + 34
inc !a9- + 1
!ignore:
dec !timer- + 1
lda #irq_line_middle
sta $d012
lda #<irq_middle
sta $fffe
lda #>irq_middle
sta $ffff
// acknowledge irq
asl $d019
pla
tay
pla
tax
pla
dummy:
rti
irq_middle:
pha
txa
pha
tya
pha
ldx #5
dex
bne *-1
lda #0
sta $d020
sta $d021
ldx sinus_pos
lda sinus, x
sta $d011
inx
txa
and #$1f
sta sinus_pos
lda #irq_line_bottom
sta $d012
lda #<irq_bottom
sta $fffe
lda #>irq_bottom
sta $ffff
asl $d019
pla
tay
pla
tax
pla
rti
sinus_pos:
.byte 0
sinus:
.fill $20, round($1b - $4 + $3 * sin(toRadians(i * 360 / $20)))
irq_bottom:
pha
txa
pha
tya
pha
ldx #6
dex
bne *-1
bit $ea
nop
lda #14
sta $d020
lda #6
sta $d021
jsr music.play
lda #$1b
sta $d011
lda #irq_line_top
sta $d012
lda #<irq_top
sta $fffe
lda #>irq_top
sta $ffff
asl $d019
pla
tay
pla
tax
pla
rti
txt_bottom:
.text " de commodore 64 workshop vindt plaats "
.text " op dinsdag 27 november 17:00-19:00 "
.text " "
.text "ga naar: https://svia.nl/activities/644/"
logo:
.byte $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $20, $20, $e0, $e0, $20, $20, $e0, $e0, $e0, $e0, $e0, $e0, $e0, $e0, $20, $20, $20, $20, $e9, $e0, $e0, $e0, $e0, $df, $20, $20, $20, $20, $20, $20
.byte $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $20, $20, $e0, $e0, $20, $20, $e0, $e0, $e0, $e0, $e0, $e0, $e0, $e0, $20, $20, $20, $e9, $e0, $e0, $e0, $e0, $e0, $e0, $df, $20, $20, $20, $20, $20
.byte $20, $20, $20, $20, $5f, $e0, $df, $20, $20, $20, $20, $e9, $e0, $69, $20, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $20, $20, $e0, $e0, $69, $20, $20, $5f, $e0, $e0, $20, $20, $20, $20, $20
.byte $20, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $20
.byte $20, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $20
.byte $20, $20, $20, $20, $20, $5f, $e0, $df, $20, $20, $e9, $e0, $69, $20, $20, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $20, $20, $e0, $e0, $e0, $e0, $e0, $e0, $e0, $e0, $20, $20, $20, $20, $20
.byte $20, $20, $20, $20, $20, $20, $e0, $e0, $20, $20, $e0, $e0, $20, $20, $20, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $20, $20, $e0, $e0, $e0, $e0, $e0, $e0, $e0, $e0, $20, $20, $20, $20, $20
.byte $20, $20, $20, $20, $20, $20, $e0, $e0, $e0, $e0, $e0, $e0, $20, $20, $20, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $20, $20, $e0, $e0, $69, $20, $20, $5f, $e0, $e0, $20, $20, $20, $20, $20
.byte $20, $20, $20, $20, $20, $20, $5f, $e0, $e0, $e0, $e0, $69, $20, $20, $20, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $20
.byte $20, $20, $20, $20, $20, $20, $20, $e0, $e0, $e0, $e0, $20, $20, $20, $20, $20, $e0, $e0, $e0, $e0, $e0, $e0, $e0, $e0, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $20
.byte $20, $20, $20, $20, $20, $20, $20, $5f, $e0, $e0, $69, $20, $20, $20, $20, $20, $e0, $e0, $e0, $e0, $e0, $e0, $e0, $e0, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $e0, $e0, $20, $20, $20, $20, $20
* = music.location "music"
.fill music.size, music.getData(i)
.print "music_init = $" + toHexString(music.init)
.print "music_play = $" + toHexString(music.play)
| 19.770492 | 205 | 0.482338 |
36c6a08a74abe73b9bdac7c05ca8bb698e045ce2 | 518 | asm | Assembly | oeis/085/A085057.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/085/A085057.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/085/A085057.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A085057: a(n) is the smallest integer of the form a*b*c.../p*q*r..., where the numerator and the denominator contain n numbers each and a,b,c,...p,q,r... are all the integers from 1 to 2n.
; Submitted by Simon Strandgaard
; 2,6,5,70,7,231,858,1430,12155,46189,176358,676039,104006,44574,1077205,66786710,64822395,90751353,353452638,3829070245,134564468610,526024740930,2287064091,35830670759,71661341518,281132955186
mul $0,2
add $0,1
seq $0,55204 ; Squarefree part of n!: n! divided by its largest square divisor.
| 64.75 | 194 | 0.762548 |
f64d409dfa0c8d4cfe270306ea539e4b4702bb86 | 7,800 | asm | Assembly | P6/data_P6_2/P6_1.asm | alxzzhou/BUAA_CO_2020 | b54bf367081a5a11701ebc3fc78a23494aecca9e | [
"Apache-2.0"
] | 1 | 2022-01-23T09:24:47.000Z | 2022-01-23T09:24:47.000Z | P6/data_P6_2/P6_1.asm | alxzzhou/BUAA_CO_2020 | b54bf367081a5a11701ebc3fc78a23494aecca9e | [
"Apache-2.0"
] | null | null | null | P6/data_P6_2/P6_1.asm | alxzzhou/BUAA_CO_2020 | b54bf367081a5a11701ebc3fc78a23494aecca9e | [
"Apache-2.0"
] | null | null | null |
.data
.space 64
arr1: .space 64
arr2: .space 64
.space 64
.text
N0: ori $t1, $t1, 1
divu $zero, $t1
N1: mthi $zero
N2: nor $t0, $t3, $t3
N3: add $t2, $t3, $t1
N4: srav $zero, $t1, $t3
N5: sra $t1, $t1, 28
andi $t1, $t1, 0xfffffffc
sw $t2, 64($t1)
N6: sra $t3, $t3, 28
lb $t3, 77($t3)
N7: multu $t2, $t0
N8: sllv $t1, $t2, $t3
N9: srl $t1, $t1, 28
addi $t1, $t1, 64
andi $t1, $t1, 0xfffffffc
lw $t3, 4($t1)
N10: slt $t3, $t2, $t3
N11: sll $t2, $t1, 5
N12: or $t0, $t0, $t2
N13: sra $zero, $zero, 28
andi $zero, $zero, 0xfffffffc
lw $t1, 72($zero)
N14: addi $t0, $zero, 28516
N15: slti $t2, $t0, -1568
N16: sra $t1, $t1, 28
andi $t1, $t1, 0xfffffffc
lw $zero, 72($t1)
N17: srl $t2, $t0, 15
N18: sra $zero, $zero, 28
sb $t0, 78($zero)
N19: subu $t0, $t1, $t0
N20: xori $t0, $t1, 46736
N21: sra $t1, $t1, 28
sb $zero, 78($t1)
N22: addiu $t1, $zero, 42365
N23: multu $zero, $t0
N24: sub $t3, $t3, $zero
N25: add $t3, $t1, $t1
N26: srl $zero, $zero, 28
addi $zero, $zero, 64
lb $t0, 13($zero)
N27: srl $t3, $t3, 28
addi $t3, $t3, 64
andi $t3, $t3, 0xfffffffc
lw $t2, 8($t3)
N28: srl $t1, $t1, 28
addi $t1, $t1, 64
andi $t1, $t1, 0xfffffffc
lw $t3, 0($t1)
N29: srl $t2, $t2, 28
addi $t2, $t2, 64
sb $zero, 9($t2)
N30: andi $t3, $t2, 47125
N31: sra $t0, $t0, 28
andi $t0, $t0, 0xfffffffc
lw $t2, 76($t0)
N32: sltu $zero, $t1, $t3
N33: mflo $t3
N34: addi $t0, $t0, 24147
N35: mult $t3, $t2
N36: nop
N37: mtlo $zero
N38: mfhi $t0
N39: sra $t0, $t0, 28
andi $t0, $t0, 0xfffffffe
lh $t3, 66($t0)
N40: subu $t0, $t0, $zero
N41: sra $t3, $t3, 28
andi $t3, $t3, 0xfffffffe
lhu $t0, 64($t3)
N42: srl $t2, $t2, 28
addi $t2, $t2, 64
andi $t2, $t2, 0xfffffffc
sw $t1, 0($t2)
N43: lui $t3, 27956
N44: slt $t1, $t1, $t3
N45: nor $t3, $t1, $t1
N46: or $t1, $t1, $t0
N47: srlv $t3, $t2, $t1
N48: srl $zero, $zero, 28
addi $zero, $zero, 64
andi $zero, $zero, 0xfffffffe
lhu $t2, 10($zero)
N49: sll $zero, $t0, 13
N50: ori $t0, $t0, 1
div $zero, $t0
N51: sltiu $t2, $t1, 13423
N52: srl $t3, $t1, 2
N53: mult $t0, $zero
N54: sltiu $zero, $t2, -4959
N55: srl $zero, $zero, 28
addi $zero, $zero, 64
andi $zero, $zero, 0xfffffffc
lw $t1, 8($zero)
N56: sra $zero, $zero, 28
andi $zero, $zero, 0xfffffffe
lh $zero, 78($zero)
N57: sra $t2, $t2, 28
andi $t2, $t2, 0xfffffffc
lw $t0, 68($t2)
N58: lui $t3, 51504
N59: srl $t0, $t0, 28
addi $t0, $t0, 64
andi $t0, $t0, 0xfffffffc
sw $t1, 0($t0)
N60: mflo $t1
N61: xori $zero, $t3, 12789
N62: sra $zero, $zero, 28
sb $t2, 64($zero)
N63: sra $zero, $zero, 28
andi $zero, $zero, 0xfffffffe
lh $t0, 78($zero)
N64: subu $zero, $t1, $t1
N65: srl $t2, $t2, 28
addi $t2, $t2, 64
sb $t1, 11($t2)
N66: and $zero, $t0, $zero
N67: nop
N68: multu $t0, $t1
N69: ori $t2, $t2, 1
div $zero, $t2
N70: srl $zero, $zero, 28
addi $zero, $zero, 64
andi $zero, $zero, 0xfffffffe
lhu $t1, 8($zero)
N71: mflo $t0
N72: mthi $t3
N73: sra $t1, $t1, 28
andi $t1, $t1, 0xfffffffe
sh $t3, 76($t1)
N74: srl $t0, $t0, 28
addi $t0, $t0, 64
andi $t0, $t0, 0xfffffffe
lh $t1, 2($t0)
N75: sll $t3, $t3, 16
N76: nor $t3, $t1, $t0
N77: ori $t3, $t3, 1
divu $zero, $t3
N78: sllv $t0, $t0, $t2
N79: srl $t0, $t0, 28
addi $t0, $t0, 64
andi $t0, $t0, 0xfffffffe
lh $t1, 4($t0)
N80: srl $t2, $t2, 28
addi $t2, $t2, 64
andi $t2, $t2, 0xfffffffc
lw $t0, 8($t2)
N81: lui $t3, 37138
N82: ori $t1, $t1, 19071
N83: ori $t0, $t3, 13061
N84: andi $t0, $t2, 57351
N85: slt $t1, $t1, $t1
N86: mflo $t3
N87: addu $t3, $t1, $t1
N88: and $t1, $t2, $t2
N89: sltiu $t0, $t1, 14782
N90: slti $t3, $t1, -25261
N91: srl $t0, $t0, 28
addi $t0, $t0, 64
andi $t0, $t0, 0xfffffffe
lhu $t2, 8($t0)
N92: and $zero, $t2, $t1
N93: sra $zero, $t0, 26
N94: mthi $t2
N95: srl $t1, $t1, 28
addi $t1, $t1, 64
sb $t1, 13($t1)
N96: sltu $t0, $zero, $t2
N97: srl $t1, $t1, 28
addi $t1, $t1, 64
lbu $t2, 4($t1)
N98: and $t0, $t3, $zero
N99: sra $zero, $t1, 8
N100: sra $t3, $t0, 30
N101: slti $t1, $t3, 2358
N102: srl $t2, $t2, 28
addi $t2, $t2, 64
andi $t2, $t2, 0xfffffffe
lhu $t3, 4($t2)
N103: sra $t3, $t3, 28
sb $t3, 70($t3)
N104: addiu $t0, $t2, 62722
N105: mtlo $t1
N106: mfhi $t2
N107: sltiu $t3, $zero, 25383
N108: addiu $t1, $t0, 14862
N109: srl $t1, $t1, 28
addi $t1, $t1, 64
lbu $t0, 4($t1)
N110: add $t2, $zero, $t1
N111: mthi $t1
N112: multu $t3, $t0
N113: sra $t0, $t0, 28
andi $t0, $t0, 0xfffffffc
lw $t3, 76($t0)
N114: srl $t2, $t2, 28
addi $t2, $t2, 64
andi $t2, $t2, 0xfffffffe
lhu $t0, 0($t2)
N115: mflo $t2
N116: ori $t0, $t0, 11106
N117: addiu $t3, $t1, 15799
N118: sra $t3, $zero, 13
N119: srl $t3, $t3, 28
addi $t3, $t3, 64
andi $t3, $t3, 0xfffffffe
lh $t2, 2($t3)
N120: srl $t0, $t0, 28
addi $t0, $t0, 64
andi $t0, $t0, 0xfffffffc
lw $t2, 4($t0)
N121: srl $zero, $zero, 28
addi $zero, $zero, 64
sb $t0, 4($zero)
N122: srl $t0, $t1, 16
N123: mtlo $t3
N124: xor $t0, $zero, $t2
N125: sub $t1, $t0, $t3
N126: xori $t2, $t1, 47753
N127: and $t0, $t2, $t1
N128: srlv $t2, $t2, $t1
N129: add $t1, $t2, $zero
N130: or $t3, $t1, $zero
N131: lui $zero, 58916
N132: srav $t2, $t0, $t2
N133: sra $t0, $t0, 28
andi $t0, $t0, 0xfffffffe
lhu $t0, 68($t0)
N134: slt $zero, $t0, $t0
N135: srl $t0, $t0, 28
addi $t0, $t0, 64
andi $t0, $t0, 0xfffffffe
sh $zero, 8($t0)
N136: sra $t1, $t1, 28
lbu $t2, 76($t1)
N137: srl $t3, $t3, 28
addi $t3, $t3, 64
andi $t3, $t3, 0xfffffffc
sw $zero, 0($t3)
N138: ori $t0, $t2, 22435
N139: srl $t0, $t0, 28
addi $t0, $t0, 64
sb $t0, 4($t0)
N140: nop
N141: srl $t1, $t1, 28
addi $t1, $t1, 64
lbu $t2, 6($t1)
N142: add $t2, $t3, $t2
N143: sub $zero, $t2, $t1
N144: srl $t0, $t2, 17
N145: nor $t0, $zero, $t0
N146: srlv $t0, $t2, $zero
N147: nop
N148: sltiu $t1, $t3, -30734
N149: srl $t0, $t0, 28
addi $t0, $t0, 64
andi $t0, $t0, 0xfffffffe
sh $zero, 12($t0)
N150: srl $t0, $t0, 28
addi $t0, $t0, 64
andi $t0, $t0, 0xfffffffe
lh $t3, 12($t0)
N151: sltiu $t2, $t0, -17694
N152: srl $t2, $t2, 28
addi $t2, $t2, 64
andi $t2, $t2, 0xfffffffc
lw $t0, 4($t2)
N153: andi $t1, $t1, 49324
N154: nor $t3, $t1, $t3
N155: srl $zero, $zero, 28
addi $zero, $zero, 64
andi $zero, $zero, 0xfffffffc
sw $zero, 8($zero)
N156: sll $t1, $zero, 10
N157: and $t2, $t3, $t3
N158: addi $zero, $t0, 13061
N159: srl $t1, $t1, 28
addi $t1, $t1, 64
andi $t1, $t1, 0xfffffffe
lh $zero, 8($t1)
N160: ori $t3, $t3, 1
divu $zero, $t3
N161: srl $t1, $t1, 28
addi $t1, $t1, 64
andi $t1, $t1, 0xfffffffe
sh $zero, 4($t1)
N162: nor $t1, $t3, $zero
N163: sub $t0, $t2, $zero
N164: srl $t0, $t0, 28
addi $t0, $t0, 64
lb $t0, 1($t0)
N165: srl $t3, $t3, 28
addi $t3, $t3, 64
andi $t3, $t3, 0xfffffffc
sw $t2, 12($t3)
N166: srl $t2, $t2, 28
addi $t2, $t2, 64
sb $zero, 7($t2)
N167: mflo $t0
N168: and $t3, $zero, $t2
N169: sra $t3, $t1, 3
N170: mthi $t2
N171: ori $t1, $t1, 1
div $t3, $t1
N172: addi $t1, $t3, 8320
N173: sllv $zero, $zero, $t1
N174: addiu $t1, $t0, 59556
N175: sra $t2, $t2, 28
andi $t2, $t2, 0xfffffffe
lhu $t1, 68($t2)
N176: srl $t0, $t0, 28
addi $t0, $t0, 64
lb $t2, 3($t0)
N177: mult $t2, $t3
N178: sltiu $t1, $t3, 19370
N179: slt $zero, $t3, $t0
N180: sltu $t2, $t1, $t1
N181: andi $t0, $t0, 44608
N182: nor $t2, $zero, $t3
N183: sra $zero, $zero, 28
lbu $t3, 69($zero)
N184: srav $t2, $t2, $t3
N185: srl $t2, $t2, 28
addi $t2, $t2, 64
sb $t0, 13($t2)
N186: add $t1, $t2, $t2
N187: srl $zero, $zero, 28
addi $zero, $zero, 64
andi $zero, $zero, 0xfffffffe
lhu $t3, 8($zero)
N188: srl $t3, $t3, 28
addi $t3, $t3, 64
andi $t3, $t3, 0xfffffffc
lw $zero, 8($t3)
N189: sra $zero, $zero, 28
lb $t0, 72($zero)
N190: sra $t2, $t2, 28
andi $t2, $t2, 0xfffffffc
sw $t1, 68($t2)
N191: xori $t3, $t3, 56820
N192: sra $t1, $t3, 9
N193: sllv $t3, $zero, $zero
N194: srl $t1, $t1, 28
addi $t1, $t1, 64
lb $t0, 1($t1)
N195: srl $t1, $t1, 28
addi $t1, $t1, 64
andi $t1, $t1, 0xfffffffc
lw $t3, 0($t1)
N196: sra $t1, $t1, 28
lbu $t1, 73($t1)
N197: add $t3, $t1, $t2
N198: sra $t1, $zero, 0
N199: sll $t0, $zero, 11
N200: nop
EXIT:
beq $zero, $zero, EXIT
nop
| 21.081081 | 29 | 0.591282 |
5f244d1bc3d0f2e93282c8b426a8ac1cbfe05bea | 257 | asm | Assembly | programs/oeis/132/A132397.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/132/A132397.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/132/A132397.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A132397: Second trisection of A024494.
; 2,10,86,682,5462,43690,349526,2796202,22369622,178956970,1431655766,11453246122,91625968982,733007751850,5864062014806,46912496118442,375299968947542,3002399751580330
mov $1,8
pow $1,$0
div $1,3
mul $1,4
add $1,2
| 28.555556 | 168 | 0.801556 |
ffe5fd9639b3a637a158869fc3d41d487b733a7a | 314 | asm | Assembly | ESEMPI/Es_outNum.asm | Porchetta/py-pdp8-tk | 5eba6bb2cf72b97602bfa2239e7bf44c454794e0 | [
"MIT"
] | 8 | 2019-06-07T10:38:41.000Z | 2022-03-24T13:05:12.000Z | ESEMPI/Es_outNum.asm | Porchetta/py-pdp8-tk | 5eba6bb2cf72b97602bfa2239e7bf44c454794e0 | [
"MIT"
] | 2 | 2015-07-14T12:22:33.000Z | 2018-05-11T08:35:24.000Z | ESEMPI/Es_outNum.asm | Porchetta/py-pdp8-tk | 5eba6bb2cf72b97602bfa2239e7bf44c454794e0 | [
"MIT"
] | 9 | 2015-05-06T14:35:08.000Z | 2021-03-23T14:27:21.000Z | ORG 100
LDA NUM
CMA
INC
STA NUM
CICLO, LDA HEAD I
ADD DIFF
ADD NUM
SZA
BUN AFT
BUN FINE
AFT, LDA HEAD
INC
STA HEAD
BUN CICLO
FINE, LDA HEAD I
OUT
HLT
NUM, DEC 5
DIFF, DEC -48
N0, DEC 48
N1, DEC 49
N2, DEC 50
N3, DEC 51
N4, DEC 52
N5, DEC 53
N6, DEC 54
N7, DEC 55
N8, DEC 56
N9, DEC 57
TOT, DEC -10
HEAD, N0
END | 8.486486 | 17 | 0.684713 |
fc181c94b452ce894dbc5f0158f89f9d53a2c787 | 420 | asm | Assembly | programs/oeis/123/A123357.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/123/A123357.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/123/A123357.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A123357: Kekulé numbers for certain benzenoids (see the Cyvin-Gutman book for details).
; 1,6,40,272,1856,12672,86528,590848,4034560,27549696,188121088,1284571136,8771600384,59896233984,408997068800,2792806678528,19070476877824,130221361594368,889207077732352,6071885729103872,41461429210972160
mov $1,1
lpb $0
sub $0,1
add $2,$1
mul $2,2
sub $2,2
trn $2,$1
mul $1,2
add $2,2
mul $2,2
add $1,$2
lpe
| 26.25 | 206 | 0.742857 |
f13f57b77ee01f816df3abb65b2b663e0af468d0 | 502 | asm | Assembly | oeis/279/A279136.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/279/A279136.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/279/A279136.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A279136: a(n) = n*Sum_{i=0..n-1} binomial(n,i)*binomial(i-1,n-i-1)/(n-i).
; Submitted by Jon Maiga
; 0,1,3,10,27,76,210,589,1659,4708,13428,38479,110682,319411,924339,2681410,7794939,22702396,66229212,193495279,566069052,1658026093,4861703289,14269842184,41922504570,123265254451,362719839225,1068105234304
mov $1,3
mov $2,2
mov $3,$0
mov $4,1
lpb $3
mul $1,$4
mul $1,$3
mul $1,2
mul $2,-2
add $5,$4
div $1,$5
div $2,2
add $2,$1
sub $3,1
add $4,2
lpe
mov $0,$2
div $0,2
sub $0,1
| 20.916667 | 207 | 0.661355 |
0867c5129296d883a95a6320ed2209aca266d532 | 1,295 | asm | Assembly | programs/oeis/036/A036100.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/036/A036100.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/036/A036100.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A036100: Centered cube numbers: (n+1)^22 + n^22.
; 1,4194305,31385253913,17623567104025,2401777977060041,134005889633282761,4041442752425255185,77696797343421194513,1058557878478449439345,10984770902183611232881,91402749386839761113321,633464188299276178706665,3763900316867291522750713,19610816941310676211030265,91217254490147965881263521,384303286248137213500171681,1484047886342493527698843745,5304991410633477787491772513,17700408952286420236319081785,55513020418174090907801371961,164637367386105632949003612841,464122204750325190345650336425,1249274312140215732803387284913,3223359936252183891464173673905,7999855387556989203026427253201,19155770539242362073950967566801,44374583035794172948902615229705,99685453669678186249567752987913,217634737830128876326985675761625,462663034633083302439338564577241,959401294285138073036733040138561,1943664912828844980169357122443585,3852578745478613650761070587256513,7480978302089065809697193537674945,14248213560689530810701467979989081,26646012711786851096551865332908121,48978953062000605648752625819773065,88571303287528388487788407055640713,157707530431474246256856285536118865,276712767727764984065901359914608721,478783903593903582494593171234930481,817479351282595983195130820588388145
sub $2,$0
add $0,1
pow $0,22
pow $2,22
add $0,$2
| 143.888889 | 1,193 | 0.934363 |
17f1a7318a91a39f6f7e4db073af5f1b180fab18 | 1,320 | asm | Assembly | projects/08/ProgramFlow/FibonacciSeries/FibonacciSeries.asm | ITFS777/n2t | 5e794244d83c0b31fd172c183b6101dff466d0ee | [
"MIT"
] | null | null | null | projects/08/ProgramFlow/FibonacciSeries/FibonacciSeries.asm | ITFS777/n2t | 5e794244d83c0b31fd172c183b6101dff466d0ee | [
"MIT"
] | null | null | null | projects/08/ProgramFlow/FibonacciSeries/FibonacciSeries.asm | ITFS777/n2t | 5e794244d83c0b31fd172c183b6101dff466d0ee | [
"MIT"
] | null | null | null | @256
D=A
@SP
M=D
@MAIN
0;JMP
(PUSH_TRUE)
@SP
A=M
M=0
M=M-1
@SP
M=M+1
@LCL
A=M
0;JMP
(MAIN)
@ARG
D=M
@1
A=A+D
D=M
@SP
A=M
M=D
@SP
M=M+1
@SP
M=M-1
A=M
D=M
@4
M=D
@0
D=A
@SP
A=M
M=D
@SP
M=M+1
@SP
M=M-1
A=M
D=M
@THAT
A=M
M=D
@1
D=A
@SP
A=M
M=D
@SP
M=M+1
@SP
M=M-1
A=M
D=M
@THAT
A=M
A=A+1
M=D
@ARG
D=M
@0
A=A+D
D=M
@SP
A=M
M=D
@SP
M=M+1
@2
D=A
@SP
A=M
M=D
@SP
M=M+1
@SP
M=M-1
A=M
D=M
@SP
M=M-1
A=M
M=M-D
@SP
M=M+1
@SP
M=M-1
A=M
D=M
@ARG
A=M
M=D
(MAIN_LOOP_START)
@ARG
D=M
@0
A=A+D
D=M
@SP
A=M
M=D
@SP
M=M+1
@SP
M=M-1
A=M
D=M
@COMPUTE_ELEMENT
D;JNE
@END_PROGRAM
0;JMP
(COMPUTE_ELEMENT)
@THAT
D=M
@0
A=A+D
D=M
@SP
A=M
M=D
@SP
M=M+1
@THAT
D=M
@1
A=A+D
D=M
@SP
A=M
M=D
@SP
M=M+1
@SP
M=M-1
A=M
D=M
@SP
M=M-1
A=M
M=M+D
@SP
M=M+1
@SP
M=M-1
A=M
D=M
@THAT
A=M
A=A+1
A=A+1
M=D
@3
D=A
@1
A=A+D
D=M
@SP
A=M
M=D
@SP
M=M+1
@1
D=A
@SP
A=M
M=D
@SP
M=M+1
@SP
M=M-1
A=M
D=M
@SP
M=M-1
A=M
M=M+D
@SP
M=M+1
@SP
M=M-1
A=M
D=M
@4
M=D
@ARG
D=M
@0
A=A+D
D=M
@SP
A=M
M=D
@SP
M=M+1
@1
D=A
@SP
A=M
M=D
@SP
M=M+1
@SP
M=M-1
A=M
D=M
@SP
M=M-1
A=M
M=M-D
@SP
M=M+1
@SP
M=M-1
A=M
D=M
@ARG
A=M
M=D
@MAIN_LOOP_START
0;JMP
(END_PROGRAM)
| 5.840708 | 18 | 0.448485 |
25c8252585038e6357e2cc146d30722705155411 | 814 | asm | Assembly | oeis/127/A127617.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/127/A127617.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/127/A127617.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A127617: Number of walks from (0,0) to (n,n) in the region 0 <= x-y <= 3 with the steps (1,0), (0, 1), (2,0) and (0,2).
; Submitted by Christian Krause
; 1,1,5,22,92,395,1684,7189,30685,130973,559038,2386160,10184931,43472696,185556025,792015257,3380586357,14429474710,61589830404,262886022219,1122085581740,4789437042413,20442921249973,87257234103245,372443097062686,1589711867161816,6785422633755395,28962456197097392,123621462397330097,527657801577826225,2252220206480568549,9613230095928399574,41032485460946363820,175140389473864400203,747557835711701250308,3190827195330390080005,13619519058036458928141,58132668432710865284861
mul $0,2
mov $2,1
lpb $0
sub $0,1
add $5,$1
mov $1,$3
mov $3,2
sub $4,$5
sub $3,$4
mov $4,$2
mov $2,$3
add $5,$4
mov $3,$5
sub $4,2
lpe
mov $0,$4
add $0,1
| 37 | 481 | 0.759214 |
e173ddc9b3a2ba74a539a0a0c5f5f627f3158e3b | 7,526 | asm | Assembly | Transynther/x86/_processed/NC/_zr_/i7-7700_9_0xca_notsx.log_21829_1594.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NC/_zr_/i7-7700_9_0xca_notsx.log_21829_1594.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NC/_zr_/i7-7700_9_0xca_notsx.log_21829_1594.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 %r15
push %r8
push %r9
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0xead, %r8
sub %r9, %r9
movw $0x6162, (%r8)
nop
nop
nop
nop
nop
and %r8, %r8
lea addresses_normal_ht+0xff5, %rsi
lea addresses_WT_ht+0x1a90d, %rdi
xor $8256, %rbp
mov $104, %rcx
rep movsw
nop
xor $32827, %r8
lea addresses_WC_ht+0x1ddf8, %r11
nop
add $34119, %rsi
movl $0x61626364, (%r11)
and $45887, %r9
lea addresses_D_ht+0x362d, %rsi
nop
nop
nop
nop
nop
add $63428, %rcx
vmovups (%rsi), %ymm1
vextracti128 $1, %ymm1, %xmm1
vpextrq $1, %xmm1, %rbp
nop
nop
nop
nop
nop
xor %r11, %r11
lea addresses_normal_ht+0x82fa, %rsi
lea addresses_normal_ht+0x3e2d, %rdi
xor %r15, %r15
mov $10, %rcx
rep movsb
nop
nop
nop
sub %rcx, %rcx
lea addresses_WC_ht+0x123a9, %r9
nop
cmp %rcx, %rcx
mov $0x6162636465666768, %rbp
movq %rbp, (%r9)
nop
nop
nop
nop
nop
inc %rbp
lea addresses_D_ht+0x18e7f, %rcx
nop
nop
nop
nop
lfence
mov (%rcx), %esi
nop
nop
nop
nop
dec %rbp
lea addresses_UC_ht+0x1482d, %r15
nop
add %rsi, %rsi
mov (%r15), %edi
nop
nop
nop
nop
sub %rdi, %rdi
lea addresses_WC_ht+0x16e25, %r8
nop
nop
inc %r9
mov (%r8), %cx
add $22630, %r11
lea addresses_WC_ht+0x1162d, %rsi
lea addresses_UC_ht+0x662d, %rdi
nop
nop
nop
nop
nop
sub %r9, %r9
mov $34, %rcx
rep movsw
nop
nop
nop
and %rdi, %rdi
lea addresses_normal_ht+0x1722d, %rdi
cmp $45094, %rsi
movups (%rdi), %xmm0
vpextrq $0, %xmm0, %rbp
nop
inc %rsi
lea addresses_normal_ht+0x19597, %rsi
lea addresses_UC_ht+0xe035, %rdi
nop
nop
nop
nop
nop
inc %r11
mov $104, %rcx
rep movsl
add %rdi, %rdi
lea addresses_A_ht+0x1e2dd, %rcx
clflush (%rcx)
nop
nop
nop
nop
dec %r9
mov $0x6162636465666768, %r11
movq %r11, %xmm2
and $0xffffffffffffffc0, %rcx
movaps %xmm2, (%rcx)
nop
nop
nop
nop
and $7891, %r15
lea addresses_UC_ht+0x7c2d, %r15
nop
nop
nop
dec %rcx
vmovups (%r15), %ymm1
vextracti128 $0, %ymm1, %xmm1
vpextrq $1, %xmm1, %rsi
nop
nop
nop
nop
nop
sub %r9, %r9
pop %rsi
pop %rdi
pop %rcx
pop %rbp
pop %r9
pop %r8
pop %r15
pop %r11
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r13
push %r14
push %r9
push %rcx
push %rsi
// Faulty Load
mov $0x30ff030000000e2d, %rsi
nop
nop
nop
and $57501, %r13
mov (%rsi), %rcx
lea oracles, %r11
and $0xff, %rcx
shlq $12, %rcx
mov (%r11,%rcx,1), %rcx
pop %rsi
pop %rcx
pop %r9
pop %r14
pop %r13
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'src': {'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 0, 'same': False, 'type': 'addresses_NC'}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 0, 'same': True, 'type': 'addresses_NC'}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'dst': {'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 1, 'same': False, 'type': 'addresses_D_ht'}, 'OP': 'STOR'}
{'src': {'congruent': 3, 'same': False, 'type': 'addresses_normal_ht'}, 'dst': {'congruent': 5, 'same': True, 'type': 'addresses_WT_ht'}, 'OP': 'REPM'}
{'dst': {'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 0, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'STOR'}
{'src': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 9, 'same': False, 'type': 'addresses_D_ht'}, 'OP': 'LOAD'}
{'src': {'congruent': 0, 'same': False, 'type': 'addresses_normal_ht'}, 'dst': {'congruent': 11, 'same': True, 'type': 'addresses_normal_ht'}, 'OP': 'REPM'}
{'dst': {'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 1, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'STOR'}
{'src': {'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 1, 'same': False, 'type': 'addresses_D_ht'}, 'OP': 'LOAD'}
{'src': {'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 9, 'same': True, 'type': 'addresses_UC_ht'}, 'OP': 'LOAD'}
{'src': {'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 3, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'LOAD'}
{'src': {'congruent': 11, 'same': False, 'type': 'addresses_WC_ht'}, 'dst': {'congruent': 9, 'same': False, 'type': 'addresses_UC_ht'}, 'OP': 'REPM'}
{'src': {'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 9, 'same': True, 'type': 'addresses_normal_ht'}, 'OP': 'LOAD'}
{'src': {'congruent': 1, 'same': False, 'type': 'addresses_normal_ht'}, 'dst': {'congruent': 3, 'same': False, 'type': 'addresses_UC_ht'}, 'OP': 'REPM'}
{'dst': {'NT': False, 'AVXalign': True, 'size': 16, 'congruent': 2, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'STOR'}
{'src': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 7, 'same': False, 'type': 'addresses_UC_ht'}, '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
*/
| 34.522936 | 2,999 | 0.658251 |
8b23239eb88e0b990def84a0d38fb792879c6a34 | 245 | asm | Assembly | ioctl/IodReadTrack.asm | osfree-project/FamilyAPI | 2119a95cb2bbe6716ecacff4171866f6ea51b8d7 | [
"BSD-3-Clause"
] | 1 | 2021-11-25T14:01:48.000Z | 2021-11-25T14:01:48.000Z | ioctl/IodReadTrack.asm | osfree-project/FamilyAPI | 2119a95cb2bbe6716ecacff4171866f6ea51b8d7 | [
"BSD-3-Clause"
] | null | null | null | ioctl/IodReadTrack.asm | osfree-project/FamilyAPI | 2119a95cb2bbe6716ecacff4171866f6ea51b8d7 | [
"BSD-3-Clause"
] | 2 | 2021-11-05T06:48:43.000Z | 2021-12-06T08:07:38.000Z | ;--------------------------------------------------------
; Category 8 Function 64H Read Track - not supported for DOS 2.X and DOS 3.X
;--------------------------------------------------------
;
;
;
IODREADTACK PROC NEAR
RET
IODREADTACK ENDP
| 22.272727 | 76 | 0.383673 |
5a910c5bc5459387b2553ce5c2ac625dbf5d65a5 | 487 | asm | Assembly | programs/oeis/068/A068636.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/068/A068636.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/068/A068636.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A068636: a(n) = Min(n, R(n)), where R(n) (A004086) = digit reversal of n.
; 1,2,3,4,5,6,7,8,9,1,11,12,13,14,15,16,17,18,19,2,12,22,23,24,25,26,27,28,29,3,13,23,33,34,35,36,37,38,39,4,14,24,34,44,45,46,47,48,49,5,15,25,35,45,55,56,57,58,59,6,16,26,36,46,56,66,67,68,69,7,17,27,37,47,57,67,77,78,79,8,18,28,38,48,58,68,78,88,89,9,19,29,39,49,59,69,79,89,99,1
mov $2,$0
add $0,1
lpb $0
mov $0,$2
add $0,1
seq $0,4086 ; Read n backwards (referred to as R(n) in many sequences).
lpe
| 44.272727 | 282 | 0.62423 |
50f079e2168d97512b8c76319dee54aab1d6a0e0 | 58 | asm | Assembly | src/test/resources/data/generationtests/tniasm-error.asm | cpcitor/mdlz80optimizer | 75070d984e1f08474e6d397c7e0eb66d8be0c432 | [
"Apache-2.0"
] | null | null | null | src/test/resources/data/generationtests/tniasm-error.asm | cpcitor/mdlz80optimizer | 75070d984e1f08474e6d397c7e0eb66d8be0c432 | [
"Apache-2.0"
] | null | null | null | src/test/resources/data/generationtests/tniasm-error.asm | cpcitor/mdlz80optimizer | 75070d984e1f08474e6d397c7e0eb66d8be0c432 | [
"Apache-2.0"
] | null | null | null | ; Test case:
%error "ips_cls offset address is too big!" | 19.333333 | 43 | 0.706897 |
2a17ba345d1730490deb27c2c14aa04ab23fa64e | 294 | asm | Assembly | ESEMPI/Es_MIN.asm | Porchetta/py-pdp8-tk | 5eba6bb2cf72b97602bfa2239e7bf44c454794e0 | [
"MIT"
] | 12 | 2016-04-12T15:13:40.000Z | 2021-05-14T09:29:12.000Z | ESEMPI/Es_MIN.asm | Porchetta/py-pdp8-tk | 5eba6bb2cf72b97602bfa2239e7bf44c454794e0 | [
"MIT"
] | 2 | 2015-07-14T12:22:33.000Z | 2018-05-11T08:35:24.000Z | ESEMPI/Es_MIN.asm | Porchetta/py-pdp8-tk | 5eba6bb2cf72b97602bfa2239e7bf44c454794e0 | [
"MIT"
] | 9 | 2015-05-06T14:35:08.000Z | 2021-03-23T14:27:21.000Z | ORG 100
BUN START
DEC 1
DEC 5
DEC 88
DEC -7
DEC -21
DEC 16
DEC 99
START, CLA
CLE
LDA HEAD I
CMA
INC
ADD MIN
SPA
BUN AFT
LDA HEAD I
STA MIN
AFT, SZE
BUN CHECK
BUN NEXT
CHECK, LDA HEAD I
STA MIN
NEXT, LDA HEAD
INC
STA HEAD
ISZ NUM
BUN START
HLT
HEAD, HEX 101
NUM, DEC -7
MIN, DEC 32767
END | 7.170732 | 17 | 0.710884 |
a74a0a9b05d7c183471dc6a7778d20deacae3242 | 428 | asm | Assembly | oeis/131/A131594.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/131/A131594.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/131/A131594.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A131594: Decimal expansion of sqrt(2)/3, the volume of a regular octahedron with edge length 1.
; Submitted by Jamie Morken(s4)
; 4,7,1,4,0,4,5,2,0,7,9,1,0,3,1,6,8,2,9,3,3,8,9,6,2,4,1,4,0,3,2,3,2,6,9,2,8,5,6,5,5,7,2,9,1,7,9,2,3,1,6,0,2,4,3,9,2,2,2,6,5,7,9,3,3,0,2,4,4,1,5,9,4,8,7,3,6,9,0,1,2,9,5,0,1,2,9,1,7,8,1,0,9,2,1,3,8,5,7,5
add $0,1
seq $0,11547 ; Decimal expansion of sqrt(2) truncated to n places.
div $0,3
mod $0,10
| 47.555556 | 201 | 0.619159 |
41ad06aa7119c8494051e5cb7ae7704b79940eca | 3,887 | asm | Assembly | project/testRoms/ppu/sprite_hit_timing/sprite_hit_timing.asm | zzqqqzzz/WebNES | 5b31fb44b3b6323cf4fe300a7050095f232de1ac | [
"MIT"
] | 719 | 2016-10-23T18:26:27.000Z | 2022-03-20T00:26:35.000Z | rustnes-dev/test_roms/sprite_hit_timing/sprite_hit_timing.asm | w1n5t0n99/rustnes | 2d03cc0c5dcc33d6f4ca35a009b2aee9c0d096d4 | [
"MIT"
] | 17 | 2016-10-30T12:46:35.000Z | 2020-01-31T11:34:38.000Z | rustnes-dev/test_roms/sprite_hit_timing/sprite_hit_timing.asm | w1n5t0n99/rustnes | 2d03cc0c5dcc33d6f4ca35a009b2aee9c0d096d4 | [
"MIT"
] | 47 | 2016-10-24T00:30:56.000Z | 2022-02-10T15:19:41.000Z | ; Tests sprite 0 hit timing to within 4 CPU clocks (12 PPU clocks).
; Tests time it's cleared each frame, time it's set at upper-left
; corner, time for each PPU pixel, and time for each PPU scanline.
; Depends on proper PPU frame length (less than 29781 CPU clocks).
;
; Result codes:
; 2) Sprite 0 hit was cleared too soon
; 3) Sprite 0 hit was cleared too late
; 4) Sprite 0 hit was set too soon
; 5) Sprite 0 hit was set too late
; 6) Scanlines take too few clocks
; 7) Scanlines take too many clocks
; 8) Pixels take too few clocks
; 9) Pixels take too many clocks
;
; Shay <hotpop.com@blargg> (swap to e-mail)
.include "prefix_ppu.a"
test_name:
.db "SPRITE 0 HIT TIMING",0
.code
palette:
.db $0f,$0f,$0f,$0f
.db $0f,$0f,$0f,$0f
.db $0f,$0f,$0f,$0f
.db $0f,$0f,$0f,$0f
.db $0f,$0f,$0f,$0f
.db $0f,$0f,$0f,$0f
.db $0f,$0f,$0f,$0f
.db $0f,$0f,$0f,$0f
.code
begin_test:
jsr sync_ppu_20
lda #$1e ; 6 enable obj & bg, no clipping
sta $2001
nop ; 8
nop
nop
nop
rts ; 6
reset:
jsr begin_ppu_test
jsr load_graphics
lda #1
jsr fill_nametable
; Setup sprite
jsr wait_vbl
lda #0 ; clear scroll pos
sta $2005
sta $2005
lda #0
sta $2003
lda #0
sta $2004
lda #1
sta $2004
lda #0
sta $2004
lda #0
sta $2004
lda #$1e ; enable obj & bg, no clipping
sta $2001
; Flag clear time
jsr begin_test
ldy #60 ; 29780 delay
lda #98
jsr delay_ya3
ldy #8 ; 2267 delay
lda #55
jsr delay_ya2
ldx $2002
ldy $2002
lda #2;) Sprite 0 hit was cleared too soon
sta result
txa
and #$40
jsr error_if_eq
lda #3;) Sprite 0 hit was cleared too late
sta result
tya
and #$40
jsr error_if_ne
; Scanline 0, left side
jsr wait_vbl
lda #0
sta $2003
lda #0
sta $2004
jsr begin_test
ldy #225 ; 2495 delay
lda #1
jsr delay_ya3
ldx $2002
ldy $2002
lda #4;) Sprite 0 hit was set too soon
sta result
txa
and #$40
jsr error_if_ne
lda #5;) Sprite 0 hit was set too late
sta result
tya
and #$40
jsr error_if_eq
; Scanline 100, left side
jsr wait_vbl
lda #0
sta $2003
lda #100
sta $2004
jsr begin_test
ldy #40 ; 13861 delay
lda #68
jsr delay_ya4
ldx $2002
ldy $2002
lda #6;) Scanlines take too few clocks
sta result
txa
and #$40
jsr error_if_ne
lda #7;) Scanlines take too many clocks
sta result
tya
and #$40
jsr error_if_eq
; Right edge of first scanline
jsr wait_vbl
lda #0
sta $2003
lda #0
sta $2004
lda #3
sta $2003
lda #254
sta $2004
jsr begin_test
ldy #10 ; 2578 delay
lda #50
jsr delay_ya2
ldx $2002
ldy $2002
lda #8;) Pixels take too few clocks
sta result
txa
and #$40
jsr error_if_ne
lda #9;) Pixels take too many clocks
sta result
tya
and #$40
jsr error_if_eq
jmp tests_passed
| 20.786096 | 67 | 0.466941 |
f411c974c098baa08c02d25429f70700590e6fed | 879 | asm | Assembly | libsrc/_DEVELOPMENT/arch/sms/SMSlib/z80/asm_SMSlib_reserveSprite.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/arch/sms/SMSlib/z80/asm_SMSlib_reserveSprite.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/arch/sms/SMSlib/z80/asm_SMSlib_reserveSprite.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z | ; **************************************************
; SMSlib - C programming library for the SMS/GG
; ( part of devkitSMS - github.com/sverx/devkitSMS )
; **************************************************
INCLUDE "SMSlib_private.inc"
SECTION code_clib
SECTION code_SMSlib
PUBLIC asm_SMSlib_reserveSprite
EXTERN error_mc
EXTERN __SMSlib_SpriteNextFree, __SMSlib_SpriteTableY
asm_SMSlib_reserveSprite:
; signed char SMS_reserveSprite (void)
;
; exit : success
;
; hl = sprite #
; carry reset
;
; fail
;
; hl = -1
; carry set
;
; uses : af, de, hl
ld a,(__SMSlib_SpriteNextFree)
cp MAXSPRITES
jp nc, error_mc
ld e,a
ld d,0
ld hl,__SMSlib_SpriteTableY
add hl,de
ld (hl),0xe0
inc a
ld (__SMSlib_SpriteNextFree),a
ex de,hl
ret
| 17.58 | 53 | 0.536974 |
e176110cbc5041d55805e592699f9838c1fa168c | 8,808 | asm | Assembly | Cameras/Injustice2/InjectableGenericCameraSystem/Interceptor.asm | ghostinthecamera/InjectableGenericCameraSystem | f4de55ab8fa58a479834b8b6586171f82b3d6b08 | [
"BSD-2-Clause"
] | 623 | 2016-12-02T16:01:05.000Z | 2022-03-29T19:59:10.000Z | Cameras/Injustice2/InjectableGenericCameraSystem/Interceptor.asm | AmyChocolates/InjectableGenericCameraSystem | 0b686603cdaf93184146e1b9e0c8400015e47137 | [
"BSD-2-Clause"
] | 113 | 2016-12-10T17:34:24.000Z | 2022-02-06T21:59:42.000Z | Cameras/Injustice2/InjectableGenericCameraSystem/Interceptor.asm | AmyChocolates/InjectableGenericCameraSystem | 0b686603cdaf93184146e1b9e0c8400015e47137 | [
"BSD-2-Clause"
] | 232 | 2016-12-17T06:32:08.000Z | 2022-03-27T16:51:29.000Z | ;////////////////////////////////////////////////////////////////////////////////////////////////////////
;// Part of Injectable Generic Camera System
;// Copyright(c) 2017, Frans Bouma
;// All rights reserved.
;// https://github.com/FransBouma/InjectableGenericCameraSystem
;//
;// Redistribution and use in source and binary forms, with or without
;// modification, are permitted provided that the following conditions are met :
;//
;// * Redistributions of source code must retain the above copyright notice, this
;// list of conditions and the following disclaimer.
;//
;// * Redistributions in binary form must reproduce the above copyright notice,
;// this list of conditions and the following disclaimer in the documentation
;// and / or other materials provided with the distribution.
;//
;// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
;// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
;// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
;// DISCLAIMED.IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
;// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
;// DAMAGES(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
;// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
;// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
;// OR TORT(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
;// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;////////////////////////////////////////////////////////////////////////////////////////////////////////
;---------------------------------------------------------------
; Game specific asm file to intercept execution flow to obtain addresses, prevent writes etc.
;---------------------------------------------------------------
;---------------------------------------------------------------
; Public definitions so the linker knows which names are present in this file
PUBLIC cameraStructInterceptor
PUBLIC cameraWrite1Interceptor
PUBLIC timeDilation1Interceptor
PUBLIC timeDilation2Interceptor
PUBLIC dofEnableInterceptor
;---------------------------------------------------------------
;---------------------------------------------------------------
; Externs which are used and set by the system. Read / write these
; values in asm to communicate with the system
EXTERN g_cameraEnabled: BYTE
EXTERN g_gamePaused: BYTE
EXTERN g_cameraStructAddress: qword
EXTERN g_dofStructAddress: qword
EXTERN g_timeDilationAddress: qword
;---------------------------------------------------------------
;---------------------------------------------------------------
; Own externs, defined in InterceptorHelper.cpp
EXTERN _cameraStructInterceptionContinue: qword
EXTERN _cameraWrite1InterceptionContinue: qword
EXTERN _timeDilation1InterceptionContinue: qword
EXTERN _timeDilation2InterceptionContinue: qword
EXTERN _dofEnableInterceptionContinue: qword
.data
;---------------------------------------------------------------
; Scratch pad
;---------------------------------------------------------------
.code
cameraStructInterceptor PROC
;000000014ACF1AB0 | F2:0F1081 84050000 | movsd xmm0,qword ptr ds:[rcx+584] <<< Camera in RCX << INTERCEPT HERE
;000000014ACF1AB8 | F2:0F1102 | movsd qword ptr ds:[rdx],xmm0
;000000014ACF1ABC | 8B81 8C050000 | mov eax,dword ptr ds:[rcx+58C]
;000000014ACF1AC2 | 8942 08 | mov dword ptr ds:[rdx+8],eax
;000000014ACF1AC5 | F2:0F1081 90050000 | movsd xmm0,qword ptr ds:[rcx+590]
;000000014ACF1ACD | F241:0F1100 | movsd qword ptr ds:[r8],xmm0
;000000014ACF1AD2 | 8B81 98050000 | mov eax,dword ptr ds:[rcx+598]
;000000014ACF1AD8 | 41:8940 08 | mov dword ptr ds:[r8+8],eax
;000000014ACF1ADC | C3 | ret << CONTINUE HERE
mov [g_cameraStructAddress], rcx
originalCode:
movsd xmm0,qword ptr [rcx+584h]
movsd qword ptr [rdx],xmm0
mov eax,dword ptr [rcx+58Ch]
mov dword ptr [rdx+8h],eax
movsd xmm0,qword ptr [rcx+590h]
movsd qword ptr [r8],xmm0
mov eax,dword ptr [rcx+598h]
mov dword ptr [r8+8h],eax
exit:
jmp qword ptr [_cameraStructInterceptionContinue] ; jmp back into the original game code, which is the location after the original statements above.
cameraStructInterceptor ENDP
cameraWrite1Interceptor PROC
;000000014AD1C585 | F2:0F114C24 40 | movsd qword ptr ss:[rsp+40],xmm1
;000000014AD1C58B | 8B88 94000000 | mov ecx,dword ptr [rax+94]
;000000014AD1C591 | 8B87 C8050000 | mov eax,dword ptr [rdi+5C8]
;000000014AD1C597 | 0F1187 84050000 | movups xmmword ptr [rdi+584],xmm0 << WRITE coords, pitch << INTERCEPT HERE
;000000014AD1C59E | 898F 80050000 | mov dword ptr [rdi+580],ecx
;000000014AD1C5A4 | 48:89F9 | mov rcx,rdi
;000000014AD1C5A7 | F2:0F118F 94050000 | movsd qword ptr [rdi+594],xmm1 << WRITE yaw,roll
;000000014AD1C5AF | 8987 9C050000 | mov dword ptr [rdi+59C],eax << WRITE Fov
;000000014AD1C5B5 | E8 864A1800 | call injustice2_dump.14AEA1040 << CONTINUE HERE
cmp byte ptr [g_cameraEnabled], 1
je exit
originalCode:
movups xmmword ptr [rdi+584h],xmm0
mov dword ptr [rdi+580h],ecx
movsd qword ptr [rdi+594h],xmm1
mov dword ptr [rdi+59Ch],eax
exit:
mov rcx, rdi
jmp qword ptr [_cameraWrite1InterceptionContinue] ; jmp back into the original game code, which is the location after the original statements above.
cameraWrite1Interceptor ENDP
timeDilation1Interceptor PROC
;000000014ABDAAFC | F3:0F11B1 88000000 | movss dword ptr [rcx+88],xmm6 << write of time dilation << INTERCEPT HERE
;000000014ABDAB04 | 0F287424 30 | movaps xmm6,xmmword ptr ss:[rsp+30]
;000000014ABDAB09 | 48:83C4 40 | add rsp,40
;000000014ABDAB0D | 5B | pop rbx << CONTINUE HERE
;000000014ABDAB0E | C3 | ret
cmp byte ptr [g_gamePaused], 1
jne originalCode
xorps xmm6, xmm6
originalCode:
movss dword ptr [rcx+88h],xmm6
movaps xmm6,xmmword ptr [rsp+30h]
add rsp,40h
exit:
jmp qword ptr [_timeDilation1InterceptionContinue] ; jmp back into the original game code, which is the location after the original statements above.
timeDilation1Interceptor ENDP
timeDilation2Interceptor PROC
;Injustice2.exe+8EB2850 - F7 81 B8000000 00000800 - test [rcx+000000B8],00080000
;Injustice2.exe+8EB285A - 48 8B 81 88010000 - mov rax,[rcx+00000188]
;Injustice2.exe+8EB2861 - F3 0F10 81 C0000000 - movss xmm0,[rcx+000000C0] << INTERCEPT HERE
;Injustice2.exe+8EB2869 - F3 0F59 80 8C000000 - mulss xmm0,[rax+0000008C] >> Grab RAX, which is time dilation value.
;Injustice2.exe+8EB2871 - 75 08 - jne Injustice2.exe+8EB287B
;Injustice2.exe+8EB2873 - F3 0F59 80 88000000 - mulss xmm0,[rax+00000088]
;Injustice2.exe+8EB287B - C3 - ret << CONTINUE HERE
mov [g_timeDilationAddress], rax
originalCode:
movss xmm0, dword ptr [rcx+000000C0h]
mulss xmm0, dword ptr [rax+0000008Ch]
jne exit
mulss xmm0, dword ptr [rax+00000088h]
exit:
jmp qword ptr [_timeDilation2InterceptionContinue] ; jmp back into the original game code, which is the location after the original statements above.
timeDilation2Interceptor ENDP
dofEnableInterceptor PROC
;000000014AB68D5B | 8843 68 | mov byte ptr [rbx+68],al << If 0, dof is OFF, 2 is ON << INTERCEPT HERE
;000000014AB68D5E | 41:8B46 6C | mov eax,dword ptr [r14+6C]
;000000014AB68D62 | 8943 6C | mov dword ptr [rbx+6C],eax
;000000014AB68D65 | 41:8B46 70 | mov eax,dword ptr [r14+70]
;000000014AB68D69 | 8943 70 | mov dword ptr [rbx+70],eax << CONTINUE HERE
;000000014AB68D6C | 41:8B46 74 | mov eax,dword ptr [r14+74]
;000000014AB68D70 | 8943 74 | mov dword ptr [rbx+74],eax
;000000014AB68D73 | 41:8B46 78 | mov eax,dword ptr [r14+78]
mov [g_dofStructAddress], rbx
cmp byte ptr [g_cameraEnabled], 1
jne originalCode
xor al, al ; 0 means dof is off
originalCode:
mov byte ptr [rbx+68h],al
mov eax,dword ptr [r14+6Ch]
mov dword ptr [rbx+6Ch],eax
mov eax,dword ptr [r14+70h]
exit:
jmp qword ptr [_dofEnableInterceptionContinue] ; jmp back into the original game code, which is the location after the original statements above.
dofEnableInterceptor ENDP
END | 50.62069 | 150 | 0.63272 |
d171d504d2ef4445a75b9e4b952255d6d3e5c0cd | 2,643 | asm | Assembly | Z80/Common/toolbxlt.asm | BleuLlama/LlamaVampireDrive | 63f5990f239afaf7a88373041bece0873eb7b67b | [
"MIT"
] | 4 | 2020-12-01T03:34:41.000Z | 2021-07-22T23:26:40.000Z | Z80/Common/toolbxlt.asm | BleuLlama/LlamaVampireDrive | 63f5990f239afaf7a88373041bece0873eb7b67b | [
"MIT"
] | null | null | null | Z80/Common/toolbxlt.asm | BleuLlama/LlamaVampireDrive | 63f5990f239afaf7a88373041bece0873eb7b67b | [
"MIT"
] | null | null | null | ; Toolbox
;
; helper functions for this project
; - Print to ACIA
; - delay routine
; - mini-Llama Vampire Drive interface
.include "../Common/hardware.asm"
.include "../Common/basicusr.asm"
.module TOOLBOX
.area .CODE (ABS)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; LLVD Group 2A (boot loader) interface
LLVD_M_START = 0x1C ; start of message
LLVD_M_CH0 = 0x30 ; channel 0 (ascii '0')
LLVD_M_END = 0x07 ; end of message
; commands supported:
; OP:0:<filename>:r open "filename" as handle 0 for read
; RH:0:16 read #bytes from file handle 0
; GT:VI get version info (only)
; LLVD_Open0
; open file handle 0 for read
; pass in the filename as a null-terminated string via hl
; preserves all registers
LLVD_Open0:
push hl
push hl
ld hl, #tl_OP0
call Print ; start of message
pop hl
call Print ; filename
ld hl, #tl_END
call Print ; end of message request
pop hl
ret
tl_OP0:
.byte LLVD_M_START ; Start of message
.asciz "0:OP:0:" ; Channel 0 : Open : handle 0
tl_END:
.ascii ":r" ; For read
.byte LLVD_M_END, 0x00 ; End of message
; LLVD_R0_16
; read 16 bytes from file handle 0
; pass in the location to store the data starting in hl
; returns:
; b number of bytes read
; all other registers preserved
LLVD_R0_16:
push hl
ld hl, #tl_R016
call Print ; send the read request
pop hl
; TODO: read the content
ld b, #0
ret
tl_R016:
.byte LLVD_M_START ; Start of message
.ascii "0:RH:0:16" ; Channel 0 : Read Hex : Handle 0 : 16 bytes
.byte LLVD_M_END, 0x00 ; End of message
; LLVD Group 2B (the rest) interface
; commands supported:
; ST, GT set, get
; OP, SK, CL open, seek, close
; RH, WH read, write
; RS, WS read sector, write sector
; LS directory list
; CA, CE capture to file, end capture
; EE echoback text
;
; set/Get keys:
; TM get time
; DT get date
; QM quiet mode
; VI version info
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; console text
; Print
; output the c-string pointed to by HL to the console
; string must be null terminated (asciz)
Print:
push af
to_loop:
;{
ld a, (hl) ; get the next character
cp #0x00 ; is it a NULL?
jr z, termz ; if yes, we're done here.
call PutCh
inc hl ; go to the next character
jr to_loop ; do it again!
; }
termz:
pop af
ret ; we're done, return!
PutCh:
push af
_OutWait:
; {
in a, (ACIA_Status)
and #0x02
jr z, _OutWait
; }
pop af
out (ACIA_Data), a ; echo
ret
| 20.175573 | 80 | 0.598562 |
783f1c645c43d14a9977af96f29edd00fe565815 | 1,199 | asm | Assembly | libsrc/_DEVELOPMENT/arch/sms/z80/asm_sms_outi.asm | grancier/z180 | e83f35e36c9b4d1457e40585019430e901c86ed9 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/arch/sms/z80/asm_sms_outi.asm | grancier/z180 | e83f35e36c9b4d1457e40585019430e901c86ed9 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/arch/sms/z80/asm_sms_outi.asm | grancier/z180 | e83f35e36c9b4d1457e40585019430e901c86ed9 | [
"ClArtistic"
] | 1 | 2019-12-03T23:57:48.000Z | 2019-12-03T23:57:48.000Z | SECTION code_clib
SECTION code_crt_common
PUBLIC asm_sms_outi
; call asm_sms_outi - 2*n
; n = number of outi <= 128
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
outi
asm_sms_outi:
ret
| 7.685897 | 30 | 0.514595 |
5435bc33976cb9cf64bbe86378e61dcc31070381 | 760 | asm | Assembly | programs/oeis/024/A024152.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/024/A024152.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/024/A024152.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A024152: a(n) = 12^n - n^12.
; 1,11,-3952,-529713,-16756480,-243891793,-2173796352,-13805455393,-68289495040,-277269756129,-938082635776,-2395420006033,0,83695120256591,1227224552173568,15277275236695743,184602783918325760,2218028484503207231,26622176449503817728,319477786055703860687,3833755896447475122176,46005112553542190079471,552061426057433786544128,6624737245034612579099807,79496847166870496697384960,953962166381085484825907807,11447545997192852598553899008,137370551967309284027289975087,1648446623609280325685954478080,19781359483313796712629318816911,237376313799769274887950291431424,2848515765597236888284619708627327,34182189187166850958447337359278080,410186270246002223668536588640515711
mov $1,12
pow $1,$0
pow $0,12
sub $1,$0
mov $0,$1
| 84.444444 | 677 | 0.886842 |
3c3d327bc39462b4910621daeb2880be39858ea0 | 3,644 | asm | Assembly | Firmware/Libraries/STM8_SelfTest_Library/src/stm8_stl_cpurun_IAR.asm | SergeiSOficial/AESTOUS_STM8 | 9f155667e2ad08dada069a89ee860aecad9fe6a0 | [
"CC0-1.0"
] | null | null | null | Firmware/Libraries/STM8_SelfTest_Library/src/stm8_stl_cpurun_IAR.asm | SergeiSOficial/AESTOUS_STM8 | 9f155667e2ad08dada069a89ee860aecad9fe6a0 | [
"CC0-1.0"
] | null | null | null | Firmware/Libraries/STM8_SelfTest_Library/src/stm8_stl_cpurun_IAR.asm | SergeiSOficial/AESTOUS_STM8 | 9f155667e2ad08dada069a89ee860aecad9fe6a0 | [
"CC0-1.0"
] | null | null | null | ;******************* (C) COPYRIGHT 2017 STMicroelectronics ********************
; File Name : stm8_stl_cpurun_IAR.s
; Author : MCD Application Team
; Author : STMicroelectronics - MCD Application Team
; Version : V2.0.0
; Date : Dec-2017
;*****************************************************************************
; Redistribution and use in source and binary forms, with or without modification,
; are permitted provided that the following conditions are met:
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the following disclaimer.
; 2. Redistributions in binary form must reproduce the above copyright notice,
; this list of conditions and the following disclaimer in the documentation
; and/or other materials provided with the distribution.
; 3. Neither the name of STMicroelectronics nor the names of its contributors
; may be used to endorse or promote products derived from this software
; without specific prior written permission.
;
; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
; DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
; FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
; SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
; CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
; OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;*****************************************************************************
;
name RunTimeCPUTestcode
public STL_RunTimeCPUTest
extern CtrlFlowCnt
extern CtrlFlowCntInv
extern FailSafe
section .text:code
;
;*******************************************************************************
; Function Name : STL_RunTimeCPUTest
; Description : Full STM8 CPU test to be executed during run-time
; Input : None.
; Output : jump directly to a Fail Safe routine in case of failure
; Return : SUCCESS (=1)
; WARNING : all registers become destroyed when exiting this function
; excluding stack pointer
;*******************************************************************************/
STL_RunTimeCPUTest:
LDW X,CtrlFlowCnt
ADDW X,#11 ; CtrlFlowCnt += CPU_RUN_CALLEE
LDW CtrlFlowCnt,x
; If X is not functional, corruption will be detected later
; Check CPU register: A, X, Y
LD A,#0AAH
CP A,#0AAH
JRNE ErrorCPU
LD A,#55H
CP A,#55H
JRNE ErrorCPU
LD A,#11H
LDW X,#0AAAAH
CPW X,#0AAAAH
JRNE ErrorCPU
LDW X,#5555H
CPW X,#5555H
JRNE ErrorCPU
LDW X,#1234H
LDW Y,#0AAAAH
CPW Y,#0AAAAH
JRNE ErrorCPU
LDW Y,#5555H
CPW Y,#5555H
JRNE ErrorCPU
LDW Y,#5678H
; Verify ramp pattern
CP A,#11H
JRNE ErrorCPU
CPW X,#1234H
JRNE ErrorCPU
CPW Y,#5678H
JRNE ErrorCPU
JP Exit
ErrorCPU:
LDW X,#12H ; Error Code if spurious return
JP FailSafe
Exit:
LDW X,CtrlFlowCntInv
SUBW X,#11 ; CtrlFlowCntInv -= CPU_RUN_CALLEE
LDW CtrlFlowCntInv,X
LD A,#1 ; Returns success
RET
END
;******************* (C) COPYRIGHT STMicroelectronics *****END OF FILE****
| 36.079208 | 82 | 0.624588 |
9aa28116cccf1ea31334cd71cf748fa95e62093e | 356 | asm | Assembly | programs/oeis/065/A065164.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/065/A065164.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/065/A065164.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A065164: Permutation t->t+1 of Z, folded to N.
; 2,4,1,6,3,8,5,10,7,12,9,14,11,16,13,18,15,20,17,22,19,24,21,26,23,28,25,30,27,32,29,34,31,36,33,38,35,40,37,42,39,44,41,46,43,48,45,50,47,52,49,54,51,56,53,58,55,60,57,62,59,64,61,66,63,68,65,70,67,72,69,74
add $0,1
lpb $0
sub $0,1
mul $0,2
lpe
seq $0,165754 ; a(n) = nimsum(n+(n+1)+(n+2)).
sub $0,1
| 32.363636 | 208 | 0.61236 |
4aa44eae328ea721f04a885577147b9700d0c3b2 | 844 | asm | Assembly | Problem1/Problem1.asm | DebugBSD/ProjectEuler | 766b806012f647cd5996208329658cba03bed1ec | [
"BSD-3-Clause"
] | 2 | 2021-01-25T07:38:54.000Z | 2021-01-30T13:32:16.000Z | Problem1/Problem1.asm | DebugBSD/ProjectEuler | 766b806012f647cd5996208329658cba03bed1ec | [
"BSD-3-Clause"
] | null | null | null | Problem1/Problem1.asm | DebugBSD/ProjectEuler | 766b806012f647cd5996208329658cba03bed1ec | [
"BSD-3-Clause"
] | 1 | 2021-01-25T07:38:55.000Z | 2021-01-25T07:38:55.000Z | .686
.model flat, stdcall
; Problem 1 - Multiples of 3 and 5
;
; Statement:
; If we list all the natural numbers below 10 that are multiples of 3 or 5, we
; get 3, 5, 6 and 9. The sum of these multiples is 23.
;
; Find the sum of all the multiples of 3 or 5 below 1000.
EXIT_SUCCESS = 0
EXIT_FAILURE = -1
ExitProcess PROTO exitValue:DWORD
.CONST
.DATA? ; BSS
.DATA
multiples DWORD 0
.CODE
IsMultiple proc uses ebx edx, number:DWORD, dividend:DWORD
mov eax, number
xor edx, edx
div dividend
.if !edx
mov eax, 1 ; Is Multiple
.else
mov eax, 0
.endif
ret
IsMultiple endp
main PROC
xor ebx, ebx
mov ecx, 1000
dec ecx
L1:
invoke IsMultiple,ecx,3
.if eax
add multiples, ecx
jmp J2
.endif
invoke IsMultiple,ecx,5
.if eax
add multiples, ecx
.endif
J2:
loop L1
nop
invoke ExitProcess, 0
main endp
end main | 13.396825 | 79 | 0.697867 |
89335ec737bc6836ee2053317a9ccfa6c728396c | 519 | asm | Assembly | oeis/197/A197733.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/197/A197733.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/197/A197733.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A197733: Decimal expansion of 2*Pi/(1+Pi).
; Submitted by Jamie Morken(l1)
; 1,5,1,7,0,9,3,9,8,5,9,8,9,5,5,2,2,9,0,6,8,8,8,6,1,3,7,8,0,8,9,7,8,5,7,2,8,2,7,6,8,5,2,7,3,1,2,8,1,0,6,1,9,9,3,3,3,7,9,7,6,4,2,7,5,6,5,0,9,6,2,7,4,2,0,1,9,1,4,7,5,2,6,4,1,2,6,6,3,4,8,0,3,0,7,1,1,5,4
add $0,1
mov $2,1
mov $3,$0
mul $3,5
lpb $3
mul $1,$3
mov $5,$3
mul $5,2
add $5,1
mul $2,$5
add $1,$2
div $1,$0
div $2,$0
sub $3,1
lpe
mul $1,2
add $2,$1
mul $2,5
mov $4,10
pow $4,$0
div $2,$4
div $1,$2
mov $0,$1
mod $0,10
| 17.896552 | 199 | 0.526012 |
350da2bfd1ae6794612fa4bc638a1fd5b7fd978e | 2,186 | asm | Assembly | Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2_notsx.log_56_1248.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_notsx.log_56_1248.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_notsx.log_56_1248.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 %r15
push %rbp
lea addresses_WT_ht+0x11f33, %r10
nop
nop
cmp %rbp, %rbp
mov $0x6162636465666768, %r15
movq %r15, (%r10)
nop
nop
nop
nop
sub %r14, %r14
pop %rbp
pop %r15
pop %r14
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r12
push %r13
push %r9
push %rbp
push %rcx
push %rdi
push %rsi
// REPMOV
lea addresses_A+0xf333, %rsi
lea addresses_WT+0x1bea3, %rdi
nop
sub %r13, %r13
mov $35, %rcx
rep movsw
and %rsi, %rsi
// Load
mov $0xb33, %rsi
xor %rbp, %rbp
mov (%rsi), %r12d
nop
nop
nop
nop
nop
dec %rcx
// Load
lea addresses_WC+0x88c3, %rcx
sub %rsi, %rsi
mov (%rcx), %r13
nop
nop
nop
xor %rbp, %rbp
// Store
lea addresses_UC+0x3a7b, %rcx
nop
nop
nop
sub %rbp, %rbp
movl $0x51525354, (%rcx)
// Exception!!!
mov (0), %rsi
nop
nop
nop
nop
nop
cmp $49155, %rdi
// Faulty Load
lea addresses_RW+0x1db33, %r12
nop
and %rcx, %rcx
movb (%r12), %r9b
lea oracles, %r12
and $0xff, %r9
shlq $12, %r9
mov (%r12,%r9,1), %r9
pop %rsi
pop %rdi
pop %rcx
pop %rbp
pop %r9
pop %r13
pop %r12
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_RW', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
{'OP': 'REPM', 'src': {'type': 'addresses_A', 'congruent': 10, 'same': False}, 'dst': {'type': 'addresses_WT', 'congruent': 4, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_P', 'size': 4, 'AVXalign': True, 'NT': False, 'congruent': 11, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_WC', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_UC', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 2, 'same': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_RW', 'size': 1, 'AVXalign': True, 'NT': False, 'congruent': 0, 'same': True}}
<gen_prepare_buffer>
{'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 10, 'same': False}}
{'32': 56}
32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32
*/
| 19.345133 | 167 | 0.635407 |
c2cdbaa8d3ba8d3ff077a90a2e2edb15b64d8902 | 23 | asm | Assembly | src/main/fragment/mos6502-common/_stackpushword_=vbuaa.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | 2 | 2022-03-01T02:21:14.000Z | 2022-03-01T04:33:35.000Z | src/main/fragment/mos6502-common/_stackpushword_=vbuaa.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | src/main/fragment/mos6502-common/_stackpushword_=vbuaa.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | tax
lda #0
pha
txa
pha
| 3.833333 | 6 | 0.695652 |
8a9a9a3f61a394a9424a71dbdb1f6fff3b800e05 | 316 | asm | Assembly | oeis/090/A090115.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/090/A090115.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/090/A090115.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A090115: a(n)=Product[p(n)-j, j=1..n]/n!=A090114(n)/n!.
; 1,1,4,15,252,924,11440,43758,497420,13123110,54627300,1251677700,12033222880,52860229080,511738760544,10363194502115,197548686920970,925029565741050,17302625882942400,161884603662657876
mov $2,$0
seq $0,40 ; The prime numbers.
sub $0,1
add $2,1
bin $0,$2
| 35.111111 | 187 | 0.756329 |
f1cf5df9a4f95ee5deeefcf1daff7655b82bfed7 | 5,519 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_150.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_150.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_150.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 %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x4484, %rbx
xor $5060, %rax
mov $0x6162636465666768, %r8
movq %r8, %xmm2
vmovups %ymm2, (%rbx)
nop
add $17440, %rcx
lea addresses_A_ht+0x15284, %rsi
lea addresses_WT_ht+0x19684, %rdi
clflush (%rdi)
nop
cmp $20937, %r12
mov $120, %rcx
rep movsq
nop
nop
sub %rdi, %rdi
lea addresses_UC_ht+0x10a84, %rsi
lea addresses_normal_ht+0x1716a, %rdi
cmp %r13, %r13
mov $90, %rcx
rep movsl
nop
nop
and %rdi, %rdi
lea addresses_WT_ht+0x1d584, %rsi
lea addresses_WT_ht+0x19e84, %rdi
clflush (%rdi)
nop
nop
nop
nop
nop
sub %rax, %rax
mov $113, %rcx
rep movsl
nop
add %rdi, %rdi
lea addresses_WC_ht+0xde84, %rax
add %rsi, %rsi
mov $0x6162636465666768, %rdi
movq %rdi, %xmm7
movups %xmm7, (%rax)
nop
nop
sub %rsi, %rsi
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %rax
pop %r8
pop %r13
pop %r12
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r14
push %r15
push %r8
push %r9
push %rcx
// Store
lea addresses_UC+0x3084, %r15
nop
nop
nop
dec %r10
movw $0x5152, (%r15)
nop
nop
nop
dec %r9
// Faulty Load
lea addresses_RW+0x13684, %r10
nop
add %r8, %r8
movups (%r10), %xmm0
vpextrq $1, %xmm0, %rcx
lea oracles, %r9
and $0xff, %rcx
shlq $12, %rcx
mov (%r9,%rcx,1), %rcx
pop %rcx
pop %r9
pop %r8
pop %r15
pop %r14
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'same': False, 'NT': True, 'AVXalign': False, 'size': 32, 'type': 'addresses_RW', 'congruent': 0}}
{'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 2, 'type': 'addresses_UC', 'congruent': 8}, 'OP': 'STOR'}
[Faulty Load]
{'OP': 'LOAD', 'src': {'same': True, 'NT': False, 'AVXalign': False, 'size': 16, 'type': 'addresses_RW', 'congruent': 0}}
<gen_prepare_buffer>
{'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 32, 'type': 'addresses_normal_ht', 'congruent': 9}, 'OP': 'STOR'}
{'dst': {'same': False, 'congruent': 10, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 10, 'type': 'addresses_A_ht'}}
{'dst': {'same': True, 'congruent': 0, 'type': 'addresses_normal_ht'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 9, 'type': 'addresses_UC_ht'}}
{'dst': {'same': False, 'congruent': 10, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 3, 'type': 'addresses_WT_ht'}}
{'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 16, 'type': 'addresses_WC_ht', 'congruent': 11}, 'OP': 'STOR'}
{'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
*/
| 45.237705 | 2,999 | 0.661714 |
4fd718085fc3ef4c0498d669ae33c627d643fcc4 | 956 | asm | Assembly | src/main.asm | stid/kick-c64-dead-test | faf7623d559f5009e38835944c6f7b946b0139e0 | [
"MIT"
] | 22 | 2020-03-30T01:39:01.000Z | 2022-01-12T10:56:19.000Z | src/main.asm | stid/kick-c64-dead-test | faf7623d559f5009e38835944c6f7b946b0139e0 | [
"MIT"
] | 2 | 2020-05-18T12:40:05.000Z | 2021-02-26T09:48:42.000Z | src/main.asm | stid/kick-c64-dead-test | faf7623d559f5009e38835944c6f7b946b0139e0 | [
"MIT"
] | 2 | 2020-05-10T10:13:48.000Z | 2020-05-27T13:37:53.000Z | #importonce
//-------------------------------------------
// c64 deadtest diagnostic 781220
// original disassembly by worldofjani.com
// Kickassembler porting by =stid=
// Revisited flow by =stid=
//-------------------------------------------
//
#import "./zeropage_map.asm"
* = $e000 "Main"
#import "./main_loop.asm"
#import "./data.asm"
#import "./zeropage_map.asm"
// This should be an Util (ROMHI) cartrige
// GAME = 0, EXROM = 1 - Ultimax Mode, ROMLOW should be ignored
// C64 Karnel $E000-$FFFF will be overwritten
// Vectors below will grant start control
prefill: .fill ($ffff-prefill-5), $aa
*=$fffa "Non-Maskable Interrupt Hardware Vector"
.word mainLoop
*=$fffc "System Reset (RES) Hardware Vector"
.word mainLoop
*=$fffe "Maskable Interrupt Request and Break Hardware Vectors"
.word mainLoop
//---------------------------------------
| 29.875 | 79 | 0.544979 |
3477bf2cad85619f466866d7b8bdfa6b8aae8a6c | 287 | asm | Assembly | programs/oeis/141/A141425.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/141/A141425.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/141/A141425.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A141425: Period 6: repeat [1, 2, 4, 5, 7, 8].
; 1,2,4,5,7,8,1,2,4,5,7,8,1,2,4,5,7,8,1,2,4,5,7,8,1,2,4,5,7,8,1,2,4,5,7,8,1,2,4,5,7,8,1,2,4,5,7,8,1,2,4,5,7,8,1,2,4,5,7,8,1,2,4,5,7,8,1,2,4,5,7,8,1,2,4,5,7,8,1,2,4,5,7,8,1,2,4,5,7,8,1,2,4,5,7,8,1,2,4,5
mod $0,6
mul $0,3
div $0,2
add $0,1
| 35.875 | 201 | 0.508711 |
a78db79096de8ad296cdf6e259d64f0c38d543c5 | 2,107 | asm | Assembly | src/native/third_party/isa-l/igzip/igzip_deflate_hash.asm | eshelmarc/noobaa-core | a1db60038170f253ebc7049860b652999bea9d25 | [
"Apache-2.0"
] | 178 | 2019-05-07T21:09:12.000Z | 2022-03-24T06:17:51.000Z | src/native/third_party/isa-l/igzip/igzip_deflate_hash.asm | eshelmarc/noobaa-core | a1db60038170f253ebc7049860b652999bea9d25 | [
"Apache-2.0"
] | 761 | 2019-05-13T09:35:59.000Z | 2022-03-31T18:18:06.000Z | src/native/third_party/isa-l/igzip/igzip_deflate_hash.asm | eshelmarc/noobaa-core | a1db60038170f253ebc7049860b652999bea9d25 | [
"Apache-2.0"
] | 57 | 2019-05-30T13:41:29.000Z | 2022-02-20T17:13:01.000Z | %include "options.asm"
%include "lz0a_const.asm"
%include "data_struct2.asm"
%include "huffman.asm"
%include "reg_sizes.asm"
%define DICT_SLOP 8
%define DICT_END_SLOP 4
%ifidn __OUTPUT_FORMAT__, win64
%define arg1 rcx
%define arg2 rdx
%define arg3 r8
%define swap1 rdi
%define swap2 rsi
%else
%define arg1 rdi
%define arg2 rsi
%define arg3 rdx
%define swap1 r8
%define swap2 rcx
%endif
%define stream arg1
%define dict_offset arg2
%define dict_len arg3
%define f_i arg3
%define f_i_tmp swap1
%define hash swap2
%define hash2 r9
%define hash3 r10
%define hash4 r11
%define f_i_end rax
%macro FUNC_SAVE 0
%ifidn __OUTPUT_FORMAT__, win64
push rsi
push rdi
%endif
%endm
%macro FUNC_RESTORE 0
%ifidn __OUTPUT_FORMAT__, win64
pop rdi
pop rsi
%endif
%endm
global isal_deflate_hash_lvl0_01
isal_deflate_hash_lvl0_01:
FUNC_SAVE
%ifnidn (arg1, stream)
mov stream, arg1
%endif
%ifnidn (arg2, dict_next)
mov dict_offset, arg2
%endif
mov f_i_end %+ d, dword [stream + _total_in]
neg f_i
add f_i, f_i_end
sub dict_offset, f_i
sub f_i_end, DICT_SLOP
cmp f_i, f_i_end
jg end_main
main_loop:
lea f_i_tmp, [f_i + 2]
xor hash, hash
crc32 hash %+ d, dword [f_i + dict_offset]
xor hash2, hash2
crc32 hash2 %+ d, dword [f_i + dict_offset + 1]
xor hash3, hash3
crc32 hash3 %+ d, dword [f_i_tmp + dict_offset]
xor hash4, hash4
crc32 hash4 %+ d, dword [f_i_tmp + dict_offset + 1]
and hash, HASH_MASK
and hash2, HASH_MASK
and hash3, HASH_MASK
and hash4, HASH_MASK
mov [stream + _internal_state_head + 2 * hash], f_i %+ w
add f_i, 1
mov [stream + _internal_state_head + 2 * hash2], f_i %+ w
add f_i, 3
mov [stream + _internal_state_head + 2 * hash3], f_i_tmp %+ w
add f_i_tmp, 1
mov [stream + _internal_state_head + 2 * hash4], f_i_tmp %+ w
cmp f_i, f_i_end
jle main_loop
end_main:
add f_i_end, DICT_SLOP - DICT_END_SLOP
cmp f_i, f_i_end
jg end
end_loop:
xor hash, hash
crc32 hash %+ d, dword [f_i + dict_offset]
and hash, HASH_MASK
mov [stream + _internal_state_head + 2 * hash], f_i %+ w
add f_i, 1
cmp f_i, f_i_end
jle end_loop
end:
FUNC_RESTORE
ret
| 16.207692 | 62 | 0.725676 |
3e617292664b712744306f02a781c766513b1b01 | 482 | asm | Assembly | oeis/023/A023834.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/023/A023834.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/023/A023834.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A023834: Sum of exponents in prime-power factorization of C(4n,2n).
; Submitted by Jon Maiga
; 2,3,5,6,6,7,11,9,11,12,12,13,15,14,15,15,16,15,18,17,20,22,22,22,23,22,23,22,23,25,28,25,25,29,28,28,32,30,32,31,30,31,34,34,34,34,36,35,37,34,36,38,38,38,40,38,41,42,42,40,44,46,44,43,43,44,46,42,46,47,47,46,48,47,50,51,50,49,53,50,49,52,52,53,53,54,56,55,56,56,59,58,60,62,60,57,62,60,61,61
mul $0,2
add $0,1
seq $0,23816 ; Sum of exponents in prime-power factorization of C(2n,n).
| 60.25 | 294 | 0.682573 |
939b8655a4a6319d3e04a49a12ddbdd51f54286d | 1,481 | asm | Assembly | engine/phone/scripts/tully.asm | Trap-Master/spacworld97-thingy | a144827abecacdfec6cdc3baa32098e9290adf70 | [
"blessing"
] | null | null | null | engine/phone/scripts/tully.asm | Trap-Master/spacworld97-thingy | a144827abecacdfec6cdc3baa32098e9290adf70 | [
"blessing"
] | null | null | null | engine/phone/scripts/tully.asm | Trap-Master/spacworld97-thingy | a144827abecacdfec6cdc3baa32098e9290adf70 | [
"blessing"
] | null | null | null | TullyPhoneCalleeScript:
gettrainername STRING_BUFFER_3, FISHER, TULLY1
checkflag ENGINE_TULLY
iftrue .WantsBattle
farscall PhoneScript_AnswerPhone_Male
checkflag ENGINE_TULLY_SUNDAY_NIGHT
iftrue .NotSunday
checkflag ENGINE_TULLY_HAS_WATER_STONE
iftrue .WaterStone
readvar VAR_WEEKDAY
ifnotequal SUNDAY, .NotSunday
checktime NITE
iftrue TullySundayNight
.NotSunday:
farsjump UnknownScript_0xa0990
.WantsBattle:
getlandmarkname STRING_BUFFER_5, ROUTE_101
farsjump UnknownScript_0xa0a82
.WaterStone:
getlandmarkname STRING_BUFFER_5, ROUTE_101
farsjump UnknownScript_0xa0add
TullyPhoneCallerScript:
gettrainername STRING_BUFFER_3, FISHER, TULLY1
farscall PhoneScript_GreetPhone_Male
checkflag ENGINE_TULLY
iftrue .Generic
checkflag ENGINE_TULLY_SUNDAY_NIGHT
iftrue .Generic
checkflag ENGINE_TULLY_HAS_WATER_STONE
iftrue .Generic
farscall PhoneScript_Random3
ifequal 0, TullyWantsBattle
checkevent EVENT_TULLY_GAVE_WATER_STONE
iftrue .WaterStone
farscall PhoneScript_Random2
ifequal 0, TullyFoundWaterStone
.WaterStone:
farscall PhoneScript_Random11
ifequal 0, TullyFoundWaterStone
.Generic:
farsjump Phone_GenericCall_Male
TullySundayNight:
setflag ENGINE_TULLY_SUNDAY_NIGHT
TullyWantsBattle:
getlandmarkname STRING_BUFFER_5, ROUTE_101
setflag ENGINE_TULLY
farsjump PhoneScript_WantsToBattle_Male
TullyFoundWaterStone:
setflag ENGINE_TULLY_HAS_WATER_STONE
getlandmarkname STRING_BUFFER_5, ROUTE_101
farsjump PhoneScript_FoundItem_Male
| 24.278689 | 47 | 0.872384 |
aab04008997806a7fcef18e61903c76c7f3244ad | 5,679 | asm | Assembly | audio.asm | unlink2/nesrpg | be08966cb171d8e54287bf0e59ec6262be7e8463 | [
"MIT"
] | 5 | 2020-01-23T14:58:55.000Z | 2021-06-27T15:00:29.000Z | audio.asm | unlink2/nano_dungeons | be08966cb171d8e54287bf0e59ec6262be7e8463 | [
"MIT"
] | null | null | null | audio.asm | unlink2/nano_dungeons | be08966cb171d8e54287bf0e59ec6262be7e8463 | [
"MIT"
] | null | null | null | ; this sub routine inits audio
; side effects:
; overwrites a register
init_audio_channels:
; Init $4000-4013
ldy #$13
@loop: lda @regs,y
sta $4000,y
dey
bpl @loop
; We have to skip over $4014 (OAMDMA)
; enable Square 1, Square 2, Triangle and Noise channels. Disable DMC.
lda #$0F
sta $4015
lda #$40
sta $4017
jsr stop_audio
rts
@regs:
.db $30,$08,$00,$00
.db $30,$08,$00,$00
.db $80,$00,$00,$00
.db $30,$00,$00,$00
.db $00,$00,$00,$00
; stops all sounds on all channels
stop_audio:
; set up audio pointers
lda #<no_audio
sta pulse_ptr_1
sta pulse_ptr_2
sta triangle_ptr
sta noise_ptr
lda #>no_audio
sta pulse_ptr_1+1
sta pulse_ptr_2+1
sta triangle_ptr+1
sta noise_ptr+1
rts
; this sub routine update all audio playback
; inputs:
; pulse, triangle and noise_ptrs
; side effects:
; updates audio timer and registers
; user register a, x, y
update_audio:
; pulse 1 code
ldy #$00
lda (pulse_ptr_1), y
cmp #$FF
beq @not_pulse_1 ; no update
ldx pulse_timer_1
dex
stx pulse_timer_1
bne @not_pulse_1 ; if timer is not 0 do not play yet
ldx pulse_periode_1
stx pulse_timer_1 ; store periode again
; skip update
cmp #$FE
beq @skip_note_pulse1
sta $4000 ; store channel settings
iny
lda (pulse_ptr_1), y
tax ; note offset
lda period_table_hi, x
sta $4003
lda period_table_lo, x
sta $4002
lda pulse_sweep_1
sta $4001
@skip_note_pulse1:
lda pulse_ptr_1
clc
adc #$02 ; add 2 for next pair
sta pulse_ptr_1
lda pulse_ptr_1+1
adc #$00
sta pulse_ptr_1+1
@not_pulse_1:
; pulse 2 code
ldy #$00
lda (pulse_ptr_2), y
cmp #$FF
beq @not_pulse_2 ; no update
ldx pulse_timer_2
dex
stx pulse_timer_2
bne @not_pulse_2 ; if timer is not 0 do not play yet
ldx pulse_periode_2
stx pulse_timer_2 ; store periode again
; skip update
cmp #$FE
beq @skip_note_pulse2:
sta $4004 ; store channel settings
iny
lda (pulse_ptr_2), y
tax ; note offset
lda period_table_hi, x
sta $4007
lda period_table_lo, x
sta $4006
lda pulse_sweep_2
sta $4005
@skip_note_pulse2:
lda pulse_ptr_2
clc
adc #$02 ; add 2 for next pair
sta pulse_ptr_2
lda pulse_ptr_2+1
adc #$00
sta pulse_ptr_2+1
@not_pulse_2:
; triangle code
ldy #$00
lda (triangle_ptr), y
cmp #$FF
beq @not_triangle ; no update
ldx triangle_timer
dex
stx triangle_timer
bne @not_triangle ; if timer is not 0 do not play yet
ldx triangle_periode
stx triangle_timer ; store periode again
cmp #$FE
beq @skip_note_triangle:
sta $4008 ; store channel settings
sta $4017
iny
lda (triangle_ptr), y
tax ; note offset
lda period_table_hi+12, x
sta $400B
lda period_table_lo+12, x
sta $400A
@skip_note_triangle:
lda triangle_ptr
clc
adc #$02 ; add 2 for next pair
sta triangle_ptr
lda triangle_ptr+1
adc #$00
sta triangle_ptr+1
@not_triangle:
; triangle code
ldy #$00
lda (noise_ptr), y
cmp #$FF
beq @not_noise ; no update
ldx noise_timer
dex
stx noise_timer
bne @not_noise ; if timer is not 0 do not play yet
ldx noise_periode
stx noise_timer ; store periode again
cmp #$FE
beq @skip_note_noise ; skip note if FE
sta $400C ; store channel settings
iny
lda (noise_ptr), y
sta $400E
iny
lda (noise_ptr), y
sta $400F
@skip_note_noise:
lda noise_ptr
clc
adc #$03 ; add 3 for next pair
sta noise_ptr
lda noise_ptr+1
adc #$00
sta noise_ptr+1
@not_noise:
rts
; this sub routine plays a cursor beep
; noise
; side effects:
; uses a register
; loads sound into noise channel
init_cursor_beep:
lda #<cursor_noise
sta noise_ptr
lda #>cursor_noise
sta noise_ptr+1
lda #10
sta noise_periode ; 10 frames per periode
lda #$01
sta noise_timer
rts
; this sub routine sets up
; the jump sound
; side effects:
; uses A register
; loads sound into noise channel
init_sword_noise:
init_jump_noise:
lda #<jump_noise
sta noise_ptr
lda #>jump_noise
sta noise_ptr+1
lda #$30
sta noise_periode
lda #$01
sta noise_timer
rts
init_hit_noise:
lda #<hit_noise
sta noise_ptr
lda #>hit_noise
sta noise_ptr+1
lda #$30
sta noise_periode
lda #$01
sta noise_timer
rts
init_push_noise:
lda #<push_noise
sta noise_ptr
lda #>push_noise
sta noise_ptr+1
lda #$20
sta noise_periode
lda #$01
sta noise_timer
rts
init_coin_noise:
lda #<coin_noise
sta noise_ptr
lda #>coin_noise
sta noise_ptr+1
lda #$20
sta noise_periode
lda #$01
sta noise_timer
rts
; this sub routine inits the test song
; side effects:
; uses A register
; loads sound into both square wave channels
; and the triangle channel
init_test_song:
lda #$1F ; periode
sta pulse_periode_1
sta pulse_periode_2
sta triangle_periode
lda #$01
sta pulse_timer_1
sta pulse_timer_2
sta triangle_timer
lda #<test_song_square_1
sta pulse_ptr_1
lda #>test_song_square_1
sta pulse_ptr_1+1
lda #<test_song_square_2
sta pulse_ptr_2
lda #>test_song_square_2
sta pulse_ptr_2+1
lda #<test_song_triangle
sta triangle_ptr
lda #>test_song_triangle
sta triangle_ptr+1
lda #%1000000
sta pulse_sweep_1
sta pulse_sweep_2
rts
| 16.508721 | 75 | 0.641486 |
09bc4db41c65d36f1d402da6f28cc4e36f37ffc9 | 7,923 | asm | Assembly | exampl01/listbox/listbox.asm | AlexRogalskiy/Masm | d39498878f140696b299c76436f209156961429e | [
"MIT"
] | null | null | null | exampl01/listbox/listbox.asm | AlexRogalskiy/Masm | d39498878f140696b299c76436f209156961429e | [
"MIT"
] | null | null | null | exampl01/listbox/listbox.asm | AlexRogalskiy/Masm | d39498878f140696b299c76436f209156961429e | [
"MIT"
] | null | null | null | ; #########################################################################
.386
.model flat, stdcall
option casemap :none ; case sensitive
; #########################################################################
include \masm32\include\windows.inc
include \masm32\include\user32.inc
include \masm32\include\kernel32.inc
includelib \masm32\lib\user32.lib
includelib \masm32\lib\kernel32.lib
; #########################################################################
;=============
; Local macros
;=============
szText MACRO Name, Text:VARARG
LOCAL lbl
jmp lbl
Name db Text,0
lbl:
ENDM
m2m MACRO M1, M2
push M2
pop M1
ENDM
return MACRO arg
mov eax, arg
ret
ENDM
;=================
; Local prototypes
;=================
WinMain PROTO :DWORD,:DWORD,:DWORD,:DWORD
WndProc PROTO :DWORD,:DWORD,:DWORD,:DWORD
TopXY PROTO :DWORD,:DWORD
ListBox PROTO :DWORD,:DWORD,:DWORD,:DWORD,:DWORD,:DWORD
ListBoxProc PROTO :DWORD,:DWORD,:DWORD,:DWORD
.data
szDisplayName db "List Box Demo",0
CommandLine dd 0
hWnd dd 0
hInstance dd 0
hList1 dd 0
hList2 dd 0
lpLstBox1 dd 0
.code
start:
invoke GetModuleHandle, NULL
mov hInstance, eax
invoke GetCommandLine
mov CommandLine, eax
invoke WinMain,hInstance,NULL,CommandLine,SW_SHOWDEFAULT
invoke ExitProcess,eax
; #########################################################################
WinMain proc hInst :DWORD,
hPrevInst :DWORD,
CmdLine :DWORD,
CmdShow :DWORD
;====================
; Put LOCALs on stack
;====================
LOCAL wc :WNDCLASSEX
LOCAL msg :MSG
LOCAL Wwd :DWORD
LOCAL Wht :DWORD
LOCAL Wtx :DWORD
LOCAL Wty :DWORD
;==================================================
; Fill WNDCLASSEX structure with required variables
;==================================================
mov wc.cbSize, sizeof WNDCLASSEX
mov wc.style, CS_HREDRAW or CS_VREDRAW \
or CS_BYTEALIGNWINDOW
mov wc.lpfnWndProc, offset WndProc
mov wc.cbClsExtra, NULL
mov wc.cbWndExtra, NULL
m2m wc.hInstance, hInst ;<< NOTE: macro not mnemonic
mov wc.hbrBackground, COLOR_BTNFACE+1
mov wc.lpszMenuName, NULL
mov wc.lpszClassName, offset szClassName
invoke LoadIcon,hInst,500 ; icon ID
mov wc.hIcon, eax
invoke LoadCursor,NULL,IDC_ARROW
mov wc.hCursor, eax
mov wc.hIconSm, 0
invoke RegisterClassEx, ADDR wc
;================================
; Centre window at following size
;================================
mov Wwd, 470
mov Wht, 285
invoke GetSystemMetrics,SM_CXSCREEN
invoke TopXY,Wwd,eax
mov Wtx, eax
invoke GetSystemMetrics,SM_CYSCREEN
invoke TopXY,Wht,eax
mov Wty, eax
szText szClassName,"Template_Class"
invoke CreateWindowEx,WS_EX_OVERLAPPEDWINDOW,
ADDR szClassName,
ADDR szDisplayName,
WS_OVERLAPPEDWINDOW,
Wtx,Wty,Wwd,Wht,
NULL,NULL,
hInst,NULL
mov hWnd,eax
invoke LoadMenu,hInst,600 ; menu ID
invoke SetMenu,hWnd,eax
invoke ShowWindow,hWnd,SW_SHOWNORMAL
invoke UpdateWindow,hWnd
;===================================
; Loop until PostQuitMessage is sent
;===================================
StartLoop:
invoke GetMessage,ADDR msg,NULL,0,0
cmp eax, 0
je ExitLoop
invoke TranslateMessage, ADDR msg
invoke DispatchMessage, ADDR msg
jmp StartLoop
ExitLoop:
return msg.wParam
WinMain endp
; #########################################################################
WndProc proc hWin :DWORD,
uMsg :DWORD,
wParam :DWORD,
lParam :DWORD
.if uMsg == WM_COMMAND
;======== menu commands ========
.if wParam == 1000
invoke SendMessage,hWin,WM_SYSCOMMAND,SC_CLOSE,NULL
.elseif wParam == 1900
szText TheMsg,"Assembler, Pure & Simple"
invoke MessageBox,hWin,ADDR TheMsg,ADDR szDisplayName,MB_OK
.endif
;====== end menu commands ======
.elseif uMsg == WM_CREATE
invoke ListBox,20,20,200,200,hWin,500
mov hList1, eax
szText Patn,"*.*"
invoke SendMessage,hList1,LB_DIR,DDL_ARCHIVE or DDL_DRIVES or \
DDL_DIRECTORY,ADDR Patn
invoke SetWindowLong,hList1,GWL_WNDPROC,ListBoxProc
mov lpLstBox1, eax
invoke ListBox,240,20,200,200,hWin,501
mov hList2, eax
invoke SetWindowLong,hList2,GWL_WNDPROC,ListBoxProc
mov lpLstBox1, eax
jmp @@@1
lItem1 db "Roses are red,",0
lItem2 db "Violets are blue.",0
lItem3 db "If sugar is sweet,",0
lItem4 db "What happened to you ?",0
@@@1:
invoke SendMessage,hList2,LB_ADDSTRING,0,ADDR lItem1
invoke SendMessage,hList2,LB_ADDSTRING,0,ADDR lItem2
invoke SendMessage,hList2,LB_ADDSTRING,0,ADDR lItem3
invoke SendMessage,hList2,LB_ADDSTRING,0,ADDR lItem4
.elseif uMsg == WM_CLOSE
.elseif uMsg == WM_DESTROY
invoke PostQuitMessage,NULL
return 0
.endif
invoke DefWindowProc,hWin,uMsg,wParam,lParam
ret
WndProc endp
; ########################################################################
TopXY proc wDim:DWORD, sDim:DWORD
shr sDim, 1 ; divide screen dimension by 2
shr wDim, 1 ; divide window dimension by 2
mov eax, wDim ; copy window dimension into eax
sub sDim, eax ; sub half win dimension from half screen dimension
return sDim
TopXY endp
; ########################################################################
ListBox proc a:DWORD,b:DWORD,wd:DWORD,ht:DWORD,hParent:DWORD,ID:DWORD
szText lstBox,"LISTBOX"
invoke CreateWindowEx,WS_EX_CLIENTEDGE,ADDR lstBox,0,
WS_VSCROLL or WS_VISIBLE or \
WS_BORDER or WS_CHILD or \
LBS_HASSTRINGS or LBS_NOINTEGRALHEIGHT or \
LBS_DISABLENOSCROLL,
a,b,wd,ht,hParent,ID,hInstance,NULL
ret
ListBox endp
; #########################################################################
ListBoxProc proc hCtl :DWORD,
uMsg :DWORD,
wParam :DWORD,
lParam :DWORD
LOCAL IndexItem :DWORD
LOCAL Buffer[32] :BYTE
.if uMsg == WM_LBUTTONDBLCLK
jmp DoIt
.elseif uMsg == WM_CHAR
.if wParam == 13
jmp DoIt
.endif
.endif
jmp EndDo
DoIt:
invoke SendMessage,hCtl,LB_GETCURSEL,0,0
mov IndexItem, eax
invoke SendMessage,hCtl,LB_GETTEXT,IndexItem,ADDR Buffer
mov eax, hList1
.if hCtl == eax
szText CurSel1,"You selected from hList1"
invoke MessageBox,hWnd,ADDR Buffer,ADDR CurSel1,MB_OK
.else
szText CurSel2,"You selected from hList2"
invoke MessageBox,hWnd,ADDR Buffer,ADDR CurSel2,MB_OK
.endif
EndDo:
invoke CallWindowProc,lpLstBox1,hCtl,uMsg,wParam,lParam
ret
ListBoxProc endp
; #########################################################################
end start
| 26.857627 | 75 | 0.498801 |
60121e784baea1744c398a7cf02971811cdc7efa | 5,504 | asm | Assembly | Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_737.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_737.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_737.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 %r13
push %r14
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x18960, %rsi
lea addresses_WT_ht+0xd8a0, %rdi
nop
nop
nop
nop
cmp %r10, %r10
mov $48, %rcx
rep movsq
nop
nop
nop
cmp $40914, %r14
lea addresses_normal_ht+0x960, %r9
nop
nop
nop
nop
cmp $57291, %r8
vmovups (%r9), %ymm3
vextracti128 $1, %ymm3, %xmm3
vpextrq $0, %xmm3, %r14
nop
nop
nop
nop
cmp %rdi, %rdi
lea addresses_UC_ht+0xe15a, %rsi
lea addresses_UC_ht+0x19e40, %rdi
nop
sub %r13, %r13
mov $80, %rcx
rep movsw
nop
nop
nop
nop
and $40749, %r13
lea addresses_WC_ht+0x12358, %rsi
lea addresses_WT_ht+0x9150, %rdi
clflush (%rsi)
nop
nop
nop
nop
sub %r9, %r9
mov $72, %rcx
rep movsw
nop
lfence
lea addresses_normal_ht+0x18350, %r14
nop
nop
nop
nop
nop
and %r10, %r10
movw $0x6162, (%r14)
nop
nop
nop
nop
nop
xor %r10, %r10
pop %rsi
pop %rdi
pop %rcx
pop %r9
pop %r8
pop %r14
pop %r13
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r14
push %r15
push %r8
push %rbp
push %rsi
// Store
lea addresses_D+0x6fe0, %r15
add %rbp, %rbp
movw $0x5152, (%r15)
nop
nop
nop
nop
nop
and %r8, %r8
// Faulty Load
lea addresses_A+0x6e60, %r8
nop
cmp %rbp, %rbp
mov (%r8), %r15
lea oracles, %r14
and $0xff, %r15
shlq $12, %r15
mov (%r14,%r15,1), %r15
pop %rsi
pop %rbp
pop %r8
pop %r15
pop %r14
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'src': {'congruent': 0, 'AVXalign': False, 'same': False, 'size': 1, 'NT': False, 'type': 'addresses_A'}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'congruent': 7, 'AVXalign': False, 'same': False, 'size': 2, 'NT': False, 'type': 'addresses_D'}}
[Faulty Load]
{'src': {'congruent': 0, 'AVXalign': False, 'same': True, 'size': 8, 'NT': False, 'type': 'addresses_A'}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'congruent': 7, 'same': True, 'type': 'addresses_UC_ht'}, 'OP': 'REPM', 'dst': {'congruent': 5, 'same': False, 'type': 'addresses_WT_ht'}}
{'src': {'congruent': 7, 'AVXalign': False, 'same': False, 'size': 32, 'NT': False, 'type': 'addresses_normal_ht'}, 'OP': 'LOAD'}
{'src': {'congruent': 1, 'same': False, 'type': 'addresses_UC_ht'}, 'OP': 'REPM', 'dst': {'congruent': 3, 'same': False, 'type': 'addresses_UC_ht'}}
{'src': {'congruent': 2, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'REPM', 'dst': {'congruent': 1, 'same': False, 'type': 'addresses_WT_ht'}}
{'OP': 'STOR', 'dst': {'congruent': 1, 'AVXalign': False, 'same': False, 'size': 2, 'NT': False, 'type': 'addresses_normal_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
*/
| 39.884058 | 2,999 | 0.66061 |
b9c7716b181d86d3349ad24cd66ba44ea69cdbbf | 871 | asm | Assembly | programs/oeis/062/A062318.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/062/A062318.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/062/A062318.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A062318: Numbers of the form 3^m - 1 or 2*3^m - 1; i.e., the union of sequences A048473 and A024023.
; 0,1,2,5,8,17,26,53,80,161,242,485,728,1457,2186,4373,6560,13121,19682,39365,59048,118097,177146,354293,531440,1062881,1594322,3188645,4782968,9565937,14348906,28697813,43046720,86093441,129140162,258280325,387420488,774840977,1162261466,2324522933,3486784400,6973568801,10460353202,20920706405,31381059608,62762119217,94143178826,188286357653,282429536480,564859072961,847288609442,1694577218885,2541865828328,5083731656657,7625597484986,15251194969973,22876792454960,45753584909921,68630377364882,137260754729765,205891132094648,411782264189297,617673396283946,1235346792567893,1853020188851840,3706040377703681,5559060566555522
mov $2,$0
mod $0,2
mul $2,2
add $2,2
mov $3,$0
mov $0,$2
add $0,17
lpb $0,1
sub $0,4
mov $1,$3
mul $3,3
add $3,2
lpe
div $1,81
| 48.388889 | 631 | 0.807118 |
80cee98164028a33c1c60c632a351a1d3967a2e5 | 4,672 | asm | Assembly | Transynther/x86/_processed/NC/_zr_/i3-7100_9_0x84_notsx.log_21829_2254.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NC/_zr_/i3-7100_9_0x84_notsx.log_21829_2254.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NC/_zr_/i3-7100_9_0x84_notsx.log_21829_2254.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 %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x13323, %r8
and $15131, %rsi
vmovups (%r8), %ymm2
vextracti128 $1, %ymm2, %xmm2
vpextrq $0, %xmm2, %r12
nop
nop
nop
sub %r8, %r8
lea addresses_D_ht+0x1c80b, %rsi
lea addresses_WT_ht+0x3e8b, %rdi
nop
nop
nop
nop
nop
add %r9, %r9
mov $38, %rcx
rep movsw
xor $51159, %r12
lea addresses_A_ht+0x1758b, %r9
clflush (%r9)
nop
nop
nop
nop
nop
cmp $45720, %r11
vmovups (%r9), %ymm4
vextracti128 $1, %ymm4, %xmm4
vpextrq $1, %xmm4, %r12
nop
sub %rsi, %rsi
pop %rsi
pop %rdi
pop %rcx
pop %r9
pop %r8
pop %r12
pop %r11
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r13
push %rax
push %rcx
push %rsi
// Faulty Load
mov $0x6402210000000f0b, %rcx
inc %rsi
movb (%rcx), %al
lea oracles, %r13
and $0xff, %rax
shlq $12, %rax
mov (%r13,%rax,1), %rax
pop %rsi
pop %rcx
pop %rax
pop %r13
pop %r11
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_NC', 'same': False, 'size': 4, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'type': 'addresses_NC', 'same': True, 'size': 1, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'type': 'addresses_WT_ht', 'same': False, 'size': 32, 'congruent': 2, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_D_ht', 'congruent': 4, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 6, 'same': False}, 'OP': 'REPM'}
{'src': {'type': 'addresses_A_ht', 'same': False, 'size': 32, 'congruent': 5, '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
*/
| 51.911111 | 2,999 | 0.660745 |
4490f9a9da414b43ace77e72d92351ffa96d18d4 | 6,075 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1258.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_1258.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_1258.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 %r14
push %r15
push %r8
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x10c3b, %r15
nop
sub %r12, %r12
mov $0x6162636465666768, %rsi
movq %rsi, %xmm7
vmovups %ymm7, (%r15)
nop
nop
nop
nop
xor $55549, %r8
lea addresses_normal_ht+0x1be3b, %rcx
nop
nop
nop
nop
xor $5121, %r13
mov $0x6162636465666768, %r14
movq %r14, %xmm6
vmovups %ymm6, (%rcx)
dec %rsi
lea addresses_normal_ht+0x459b, %rsi
lea addresses_A_ht+0x1224b, %rdi
nop
nop
nop
mfence
mov $97, %rcx
rep movsl
nop
sub %r8, %r8
lea addresses_WT_ht+0x108d3, %rsi
nop
nop
xor $19834, %r14
vmovups (%rsi), %ymm6
vextracti128 $0, %ymm6, %xmm6
vpextrq $1, %xmm6, %r8
nop
nop
nop
inc %r14
lea addresses_UC_ht+0x4f9b, %rsi
nop
nop
add %r13, %r13
movups (%rsi), %xmm2
vpextrq $1, %xmm2, %rdi
nop
nop
nop
nop
nop
sub $5327, %r14
lea addresses_normal_ht+0x1bb3, %rsi
lea addresses_UC_ht+0xff9b, %rdi
nop
nop
sub %r15, %r15
mov $125, %rcx
rep movsb
nop
nop
nop
nop
inc %r14
lea addresses_normal_ht+0x11f9b, %rsi
lea addresses_WC_ht+0x651b, %rdi
nop
nop
nop
and %r15, %r15
mov $66, %rcx
rep movsq
nop
nop
nop
nop
lfence
pop %rsi
pop %rdi
pop %rcx
pop %r8
pop %r15
pop %r14
pop %r13
pop %r12
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r13
push %r8
push %rbp
push %rdx
// Load
lea addresses_WT+0x1006b, %r10
nop
nop
nop
nop
nop
sub %r8, %r8
mov (%r10), %r11
nop
nop
add %r10, %r10
// Faulty Load
lea addresses_RW+0x18f9b, %r10
nop
xor $53853, %rbp
movups (%r10), %xmm6
vpextrq $0, %xmm6, %r11
lea oracles, %r8
and $0xff, %r11
shlq $12, %r11
mov (%r8,%r11,1), %r11
pop %rdx
pop %rbp
pop %r8
pop %r13
pop %r11
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'same': False, 'NT': False, 'AVXalign': True, 'size': 4, 'type': 'addresses_RW', 'congruent': 0}}
{'OP': 'LOAD', 'src': {'same': False, 'NT': False, 'AVXalign': False, 'size': 8, 'type': 'addresses_WT', 'congruent': 1}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'same': True, 'NT': False, 'AVXalign': False, 'size': 16, 'type': 'addresses_RW', 'congruent': 0}}
<gen_prepare_buffer>
{'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 32, 'type': 'addresses_A_ht', 'congruent': 1}, 'OP': 'STOR'}
{'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 32, 'type': 'addresses_normal_ht', 'congruent': 4}, 'OP': 'STOR'}
{'dst': {'same': False, 'congruent': 4, 'type': 'addresses_A_ht'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 9, 'type': 'addresses_normal_ht'}}
{'OP': 'LOAD', 'src': {'same': True, 'NT': False, 'AVXalign': False, 'size': 32, 'type': 'addresses_WT_ht', 'congruent': 3}}
{'OP': 'LOAD', 'src': {'same': False, 'NT': False, 'AVXalign': False, 'size': 16, 'type': 'addresses_UC_ht', 'congruent': 11}}
{'dst': {'same': False, 'congruent': 11, 'type': 'addresses_UC_ht'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 3, 'type': 'addresses_normal_ht'}}
{'dst': {'same': False, 'congruent': 3, 'type': 'addresses_WC_ht'}, 'OP': 'REPM', 'src': {'same': True, 'congruent': 9, 'type': 'addresses_normal_ht'}}
{'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
*/
| 38.449367 | 2,999 | 0.661893 |
6c3c069affb5c34c8fb626f80f07b06a3cf157db | 1,858 | asm | Assembly | kernel/cpu/int.asm | richard-hgs/InfinityOS | 7f185f88836a0f34e3e264735034a5ffde075168 | [
"BSL-1.0"
] | null | null | null | kernel/cpu/int.asm | richard-hgs/InfinityOS | 7f185f88836a0f34e3e264735034a5ffde075168 | [
"BSL-1.0"
] | null | null | null | kernel/cpu/int.asm | richard-hgs/InfinityOS | 7f185f88836a0f34e3e264735034a5ffde075168 | [
"BSL-1.0"
] | null | null | null | ; ================================================
; Interrupt handler and interrupt server routines.
; Written by Infinity Technology
; ================================================
[section .text]
[bits 32]
%macro isr_return 1
[global isr%1]
isr%1:
push byte %1
jmp isr_common_stub
%endmacro
%macro isr_noret 1
[global isr%1]
isr%1:
push byte 0
push byte %1
jmp isr_common_stub
%endmacro
%macro irq_stub 2
[global irq%1]
irq%1:
push byte %1
push byte %2
jmp irq_common_stub
%endmacro
[extern isr_handler]
[extern irq_handler]
; Common ISR code
isr_common_stub:
pusha
mov ax, ds
push eax
mov ax, 0x10
mov ds, ax
mov es, ax
mov fs, ax
mov gs, ax
push esp
cld
call isr_handler
pop eax
pop eax
mov ds, ax
mov es, ax
mov fs, ax
mov gs, ax
popa
add esp, 8
iret
; Common IRQ code
irq_common_stub:
pusha
mov ax, ds
push eax
mov ax, 0x10
mov ds, ax
mov es, ax
mov fs, ax
mov gs, ax
push esp
cld
call irq_handler
pop ebx
pop ebx
mov ds, bx
mov es, bx
mov fs, bx
mov gs, bx
popa
add esp, 8
iret
; =========================
; ISRs Below
; =========================
isr_noret 0
isr_noret 1
isr_noret 2
isr_noret 3
isr_noret 4
isr_noret 5
isr_noret 6
isr_noret 7
isr_return 8
isr_noret 9
isr_return 10
isr_return 11
isr_return 12
isr_return 13
isr_return 14
isr_noret 15
isr_noret 16
isr_noret 17
isr_noret 18
isr_noret 19
isr_noret 20
isr_noret 21
isr_noret 22
isr_noret 23
isr_noret 24
isr_noret 25
isr_noret 26
isr_noret 27
isr_noret 28
isr_noret 29
isr_noret 30
isr_noret 31
; =========================
; IRQs Below
; =========================
irq_stub 0, 32
irq_stub 1, 33
irq_stub 2, 34
irq_stub 3, 35
irq_stub 4, 36
irq_stub 5, 37
irq_stub 6, 38
irq_stub 7, 39
irq_stub 8, 40
irq_stub 9, 41
irq_stub 10, 42
irq_stub 11, 43
irq_stub 12, 44
irq_stub 13, 45
irq_stub 14, 46
irq_stub 15, 47
| 13.463768 | 50 | 0.649085 |
f3cacd84af86dfa78ca3ba0d7c3844c17c3687a3 | 182 | asm | Assembly | tests/disasm/ret-conditional.asm | arpruss/z80 | 0729e01a4531515f837ca4f4c985225b8a22239e | [
"MIT"
] | 46 | 2019-05-04T12:32:27.000Z | 2022-03-17T10:04:16.000Z | Libs/Z80/tests/disasm/ret-conditional.asm | drunkfly/retrotoolkit | 38fc08ce931339948d697a4dcf6f2441bccef7d6 | [
"MIT",
"Unlicense"
] | 44 | 2020-08-19T21:13:30.000Z | 2022-03-15T15:45:46.000Z | Libs/Z80/tests/disasm/ret-conditional.asm | drunkfly/retrotoolkit | 38fc08ce931339948d697a4dcf6f2441bccef7d6 | [
"MIT",
"Unlicense"
] | 8 | 2020-09-29T01:22:55.000Z | 2022-02-20T17:03:43.000Z | cp 0x82 ; @@ 0x0c32 fe 82 .instr
ret c ; @@ 0x0c34 d8
ld a, d ; @@ 0x0c35 7a
| 45.5 | 71 | 0.247253 |
88b808889f4068df6a48365d6963e907cf3225d6 | 3,614 | asm | Assembly | programs/oeis/101/A101092.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/101/A101092.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/101/A101092.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A101092: Second partial sums of fifth powers (A000584).
; 1,34,310,1610,6035,18236,47244,109020,229845,450670,832546,1463254,2465255,4005080,6304280,9652056,14419689,21076890,30210190,42543490,58960891,80531924,108539300,144509300,190244925,247861926,319827834,409004110,518691535,652678960,815295536,1011466544,1246772945,1527514770,1860778470,2254508346,2717582179,3259891180,3892424380,4627357580,5478146981,6459627614,7588116690,8881521990,10359455415,12043351816,13956593224,16124638600,18575159225,21338179850,24446225726,27934475634,31840921035,36206531460,41075426260,46495052836,52516371469,59194046870,66586646570,74756846270,83771642271,93702571104,104625936480,116623043680,129780441505,144190171906,159950027414,177163816490,195941636915,216400157340,238662907116,262860574524,289131313525,317621059150,348483851650,381882169526,417987271559,456979547960,499048880760,544395013560,593227930761,645768246394,702247602670,762909078370,828007607195,897810406196,972597414404,1052661741780,1138310128605,1229863415430,1327657023706,1432041447214,1543382754415,1662063101840,1788481258640,1923053142416,2066212366449,2218410798450,2380119130950,2551827463450,2734045896451,2927305137484,3132157119260,3349175630060,3578956956485,3822120538686,4079309638194,4351192018470,4638460638295,4941834358120,5262058659496,5599906377704,5956178447705,6331704663530,6727344451230,7143987655506,7582555340139,8044000602340,8529309401140,9039501399940,9575630823341,10138787328374,10730096890250,11350722702750,12001866093375,12684767453376,13400707182784,14151006650560,14937029169985,15760180989410,16621912298486,17523718249994,18467139997395,19453765748220,20485231833420,21563223792796,22689477476629,23865780163630,25093971695330,26375945627030,27713650395431,29109090503064,30564327719640,32081482300440,33662734221865,35310324434266,37026556132174,38813796042050,40674475727675,42611092913300,44626212824676,46722469548084,48902567407485,51169282359910,53525463409210,55974034038286,58517993659919,61160419086320,63904466017520,66753370548720,69710450696721,72779107945554,75962828811430,79265186427130,82689842145955,86240547165356,89921144170364,93735568996940,97687852315365,101782121333790,106022601522066,110413618355974,114959599081975,119665074502600,124534680782600,129573161275976,134785368374009,140176265374410,145750928371710,151514548169010,157472432211211,163630006539844,169992817769620,176566535086820,183356952269645,190369989730646,197611696581354,205088252719230,212805970937055,220771299054880,228990822074656,237471264357664,246219491824865,255242514180290,264547487157590,274141714789866,284032651702899,294227905431900,304735238761900,315562572091900,326717985822901,338209722769934,350046190598210,362235964283510,374787788596935,387710580614136,401013432249144,414705612812920,428796571596745,443295940480570,458213536566446,473559364837154,489343620840155,505576693396980,522269167338180,539431826263956,557075655330589,575211844062790,593851789192090,613007097521390,632689588815791,652911298719824,673684481701200,695021614021200,716935396731825,739438758699826,762544859657734,786267093282010,810619090298435,835614721614860,861268101481436,887593590678444,914605799731845,942319592156670,970750087728370,999912665782246,1029822968541079,1060496904471080,1091950651666280,1124200661261480,1157263660873881,1191156658073514,1225896943882590,1261502096303890,1297989983878315,1335378769271716,1373686912891124,1412933176530500,1453136627046125,1494316640061750
add $0,1
lpb $0,1
mov $2,$0
cal $2,539 ; Sum of 5th powers: 0^5 + 1^5 + 2^5 + ... + n^5.
sub $0,1
add $1,$2
lpe
| 328.545455 | 3,434 | 0.908688 |
2b411653d3dc490117049bcaa25c5dc9c533fb19 | 2,151 | asm | Assembly | Borland/CBuilder5/Source/RTL/source/memory/_stkavl.asm | TrevorDArcyEvans/DivingMagpieSoftware | 7ffcfef653b110e514d5db735d11be0aae9953ec | [
"MIT"
] | 1 | 2021-05-27T10:27:25.000Z | 2021-05-27T10:27:25.000Z | Borland/CBuilder5/Source/RTL/source/memory/_stkavl.asm | TrevorDArcyEvans/Diving-Magpie-Software | 7ffcfef653b110e514d5db735d11be0aae9953ec | [
"MIT"
] | null | null | null | Borland/CBuilder5/Source/RTL/source/memory/_stkavl.asm | TrevorDArcyEvans/Diving-Magpie-Software | 7ffcfef653b110e514d5db735d11be0aae9953ec | [
"MIT"
] | null | null | null | ;[]-----------------------------------------------------------------[]
;| _STKAVL.ASM -- available stack space |
;[]-----------------------------------------------------------------[]
;
; C/C++ Run Time Library - Version 10.0
;
; Copyright (c) 1992, 2000 by Inprise Corporation
; All Rights Reserved.
;
; $Revision: 9.1 $
include RULES.ASI
; Segments Definitions
Header@
; REGSTACK contains the number of bytes taken up in the stack
; by registers saved in the normal function prologue. This includes
; space for EBX, ESI, and EDI.
REGSTACK equ 12
;-----------------------------------------------------------------------
;
;Name _stackavail - get available stack size
;
;Usage #include <malloc.h>
; size_t _stackavail(void);
;
;Prototype in _malloc.h
;
;Description This function returns the approximate number of bytes
; available in the stack for allocation by alloca().
;
; This is the internal function that corresponds to
; the user-visible function stackavail(). The prototype
; for stackavail() appears in malloc.h.
;
;Return value The number of available stack bytes.
;
;------------------------------------------------------------------------
Code_seg@
;ExtFunc@ TlsGetValue, APIENTRY, 4 ; API function
extrn ___GetStkIndex:proc ; Gets the _stkindex value (in TLS.C)
Func@ _stackavail, public, _RTLENTRY
call ___GetStkIndex ; Get the stack base value (in TLS.C)
pop ecx ; get return address
add eax, REGSTACK ; adjust for saved register variables
cmp eax, esp ; is the stack pointer below base?
ja nospace ; yes - no space available
neg eax ; no - calculate available space
add eax, esp
return:
jmp ecx ; return, EAX = available space
nospace:
xor eax,eax
jmp return
EndFunc@ _stackavail
Code_EndS@
end
| 30.728571 | 77 | 0.499768 |
a83ca32c0721eab62b9d10b3ee230caff09f69e4 | 301 | asm | Assembly | programs/oeis/040/A040309.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/040/A040309.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/040/A040309.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A040309: Continued fraction for sqrt(328).
; 18,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36,9,36
add $0,1
mov $1,$0
mul $1,$0
trn $1,3
sub $1,2
gcd $1,8
mul $1,9
| 27.363636 | 189 | 0.604651 |
6d6c7a907689021e5bfb50d25b109cb045a44c0b | 7,121 | asm | Assembly | Transynther/x86/_processed/US/_zr_/i3-7100_9_0x84_notsx.log_3233_800.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/US/_zr_/i3-7100_9_0x84_notsx.log_3233_800.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/US/_zr_/i3-7100_9_0x84_notsx.log_3233_800.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 %r13
push %r8
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x9aae, %r9
nop
nop
nop
nop
add %r8, %r8
mov (%r9), %di
nop
nop
nop
xor $59154, %rsi
lea addresses_D_ht+0xac2e, %rsi
lea addresses_normal_ht+0x3b3e, %rdi
clflush (%rdi)
nop
nop
nop
xor $2823, %r13
mov $0, %rcx
rep movsl
cmp $18432, %r8
lea addresses_UC_ht+0x16c0c, %rsi
lea addresses_normal_ht+0x1317e, %rdi
clflush (%rdi)
nop
and $63825, %rbx
mov $59, %rcx
rep movsb
nop
nop
nop
nop
nop
dec %rbx
lea addresses_WT_ht+0x2f5e, %rsi
lea addresses_A_ht+0xff5e, %rdi
nop
nop
nop
nop
inc %r10
mov $120, %rcx
rep movsb
nop
nop
sub %r9, %r9
lea addresses_normal_ht+0x10b1, %r8
nop
nop
sub %rbx, %rbx
movw $0x6162, (%r8)
nop
nop
nop
nop
nop
and %r9, %r9
lea addresses_D_ht+0x1b65e, %rbx
nop
nop
xor %r8, %r8
mov (%rbx), %r13
nop
add $44697, %r9
lea addresses_UC_ht+0x1575e, %rsi
nop
sub %rbx, %rbx
movl $0x61626364, (%rsi)
nop
and %rdi, %rdi
lea addresses_normal_ht+0x4440, %rbx
nop
sub $23014, %rcx
vmovups (%rbx), %ymm7
vextracti128 $1, %ymm7, %xmm7
vpextrq $1, %xmm7, %rdi
nop
cmp %r10, %r10
lea addresses_normal_ht+0xc35e, %rsi
lea addresses_WT_ht+0x1035e, %rdi
nop
nop
nop
inc %r9
mov $27, %rcx
rep movsl
nop
add %r13, %r13
lea addresses_D_ht+0x154de, %rsi
lea addresses_UC_ht+0x329e, %rdi
nop
nop
nop
nop
nop
mfence
mov $11, %rcx
rep movsw
nop
nop
nop
nop
nop
dec %rbx
lea addresses_UC_ht+0x1757d, %rsi
nop
nop
nop
nop
nop
add $10113, %r13
and $0xffffffffffffffc0, %rsi
vmovntdqa (%rsi), %ymm4
vextracti128 $1, %ymm4, %xmm4
vpextrq $1, %xmm4, %rdi
nop
nop
nop
nop
and %rcx, %rcx
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %r9
pop %r8
pop %r13
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r13
push %r14
push %r9
push %rax
push %rsi
// Store
mov $0x151b40000000079e, %rax
and $52009, %rsi
mov $0x5152535455565758, %r10
movq %r10, %xmm7
vmovups %ymm7, (%rax)
nop
sub $34233, %rax
// Faulty Load
lea addresses_US+0x1b35e, %rax
nop
nop
nop
nop
nop
cmp %r14, %r14
mov (%rax), %r9
lea oracles, %r13
and $0xff, %r9
shlq $12, %r9
mov (%r13,%r9,1), %r9
pop %rsi
pop %rax
pop %r9
pop %r14
pop %r13
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_US', 'same': True, 'size': 4, 'congruent': 0, 'NT': True, 'AVXalign': False}, 'OP': 'LOAD'}
{'dst': {'type': 'addresses_NC', 'same': False, 'size': 32, 'congruent': 6, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
[Faulty Load]
{'src': {'type': 'addresses_US', 'same': True, 'size': 8, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'type': 'addresses_WT_ht', 'same': False, 'size': 2, 'congruent': 4, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_D_ht', 'congruent': 4, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 2, 'same': False}, 'OP': 'REPM'}
{'src': {'type': 'addresses_UC_ht', 'congruent': 0, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 4, 'same': False}, 'OP': 'REPM'}
{'src': {'type': 'addresses_WT_ht', 'congruent': 8, 'same': False}, 'dst': {'type': 'addresses_A_ht', 'congruent': 10, 'same': False}, 'OP': 'REPM'}
{'dst': {'type': 'addresses_normal_ht', 'same': False, 'size': 2, 'congruent': 0, 'NT': False, 'AVXalign': True}, 'OP': 'STOR'}
{'src': {'type': 'addresses_D_ht', 'same': False, 'size': 8, 'congruent': 8, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'dst': {'type': 'addresses_UC_ht', 'same': False, 'size': 4, 'congruent': 8, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'src': {'type': 'addresses_normal_ht', 'same': False, 'size': 32, 'congruent': 1, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_normal_ht', 'congruent': 11, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 11, 'same': True}, 'OP': 'REPM'}
{'src': {'type': 'addresses_D_ht', 'congruent': 6, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 4, 'same': False}, 'OP': 'REPM'}
{'src': {'type': 'addresses_UC_ht', 'same': False, 'size': 32, 'congruent': 0, 'NT': True, 'AVXalign': False}, 'OP': 'LOAD'}
{'00': 3233}
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
*/
| 35.252475 | 2,999 | 0.659739 |
4e0e7d3b02200844c961faf7b38a681ba78efd59 | 1,723 | asm | Assembly | programs/oeis/173/A173196.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/173/A173196.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/173/A173196.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A173196: Partial sums of A002620.
; 0,0,1,3,7,13,22,34,50,70,95,125,161,203,252,308,372,444,525,615,715,825,946,1078,1222,1378,1547,1729,1925,2135,2360,2600,2856,3128,3417,3723,4047,4389,4750,5130,5530,5950,6391,6853,7337,7843,8372,8924,9500,10100,10725,11375,12051,12753,13482,14238,15022,15834,16675,17545,18445,19375,20336,21328,22352,23408,24497,25619,26775,27965,29190,30450,31746,33078,34447,35853,37297,38779,40300,41860,43460,45100,46781,48503,50267,52073,53922,55814,57750,59730,61755,63825,65941,68103,70312,72568,74872,77224,79625,82075,84575,87125,89726,92378,95082,97838,100647,103509,106425,109395,112420,115500,118636,121828,125077,128383,131747,135169,138650,142190,145790,149450,153171,156953,160797,164703,168672,172704,176800,180960,185185,189475,193831,198253,202742,207298,211922,216614,221375,226205,231105,236075,241116,246228,251412,256668,261997,267399,272875,278425,284050,289750,295526,301378,307307,313313,319397,325559,331800,338120,344520,351000,357561,364203,370927,377733,384622,391594,398650,405790,413015,420325,427721,435203,442772,450428,458172,466004,473925,481935,490035,498225,506506,514878,523342,531898,540547,549289,558125,567055,576080,585200,594416,603728,613137,622643,632247,641949,651750,661650,671650,681750,691951,702253,712657,723163,733772,744484,755300,766220,777245,788375,799611,810953,822402,833958,845622,857394,869275,881265,893365,905575,917896,930328,942872,955528,968297,981179,994175,1007285,1020510,1033850,1047306,1060878,1074567,1088373,1102297,1116339,1130500,1144780,1159180,1173700,1188341,1203103,1217987,1232993,1248122,1263374,1278750,1294250
mov $3,$0
pow $0,2
trn $1,$3
add $1,$3
mul $1,2
mov $2,$3
add $2,$0
sub $2,1
mul $1,$2
add $1,$0
div $1,24
| 114.866667 | 1,578 | 0.81834 |
91453b16c05796ad69f1f1cc6bf503b7f99a30f0 | 1,135 | asm | Assembly | programs/oeis/064/A064223.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/064/A064223.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/064/A064223.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A064223: a(1) = 1; a(n+1) = a(n) + number of decimal digits of a(n) for n > 0.
; 1,2,3,4,5,6,7,8,9,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,103,106,109,112,115,118,121,124,127,130,133,136,139,142,145,148,151,154,157,160,163,166,169,172,175,178,181,184,187,190,193,196,199,202,205,208,211,214,217,220,223,226,229,232,235,238,241,244,247,250,253,256,259,262,265,268,271,274,277,280,283,286,289,292,295,298,301,304,307,310,313,316,319,322,325,328,331,334,337,340,343,346,349,352,355,358,361,364,367,370,373,376,379,382,385,388,391,394,397,400,403,406,409,412,415,418,421,424,427,430,433,436,439,442,445,448,451,454,457,460,463,466,469,472,475,478,481,484,487,490,493,496,499,502,505,508,511,514,517,520,523,526,529,532,535,538,541,544,547,550,553,556,559,562,565,568,571,574,577,580,583,586,589,592,595,598,601,604,607,610,613,616,619,622,625,628,631,634,637,640,643,646,649,652,655,658,661,664,667,670,673,676,679,682,685
lpb $0,1
sub $0,1
add $1,$0
add $1,1
add $3,2
mul $3,2
add $2,$3
add $3,$2
trn $0,$3
lpe
add $1,1
| 75.666667 | 938 | 0.69163 |
0507290d4e6f70cf7e9681e4c4c951824a299f27 | 181 | asm | Assembly | Working Disassembly/Levels/Pachinko/Misc Object Data/Anim - Triangle Bumper.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 7e8a2c5df02271615ff4cae529521e6b1560d6b1 | [
"Apache-2.0"
] | 5 | 2021-07-09T08:17:56.000Z | 2022-02-27T19:57:47.000Z | Working Disassembly/Levels/Pachinko/Misc Object Data/Anim - Triangle Bumper.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 7e8a2c5df02271615ff4cae529521e6b1560d6b1 | [
"Apache-2.0"
] | null | null | null | Working Disassembly/Levels/Pachinko/Misc Object Data/Anim - Triangle Bumper.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 7e8a2c5df02271615ff4cae529521e6b1560d6b1 | [
"Apache-2.0"
] | null | null | null | Ani_49BF6: dc.w byte_49BFA-Ani_49BF6
dc.w byte_49BFD-Ani_49BF6
byte_49BFA: dc.b $1F, 0, $FF
byte_49BFD: dc.b 0, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, $FD, 0
| 30.166667 | 75 | 0.541436 |
f3f120bee6e0ee615410536a84e3209f9528aa41 | 1,562 | asm | Assembly | src/display-fx.asm | kieranhj/funky-fresh | 739962d911ba7a3719878b3bd593d3c79e9e52b8 | [
"MIT"
] | null | null | null | src/display-fx.asm | kieranhj/funky-fresh | 739962d911ba7a3719878b3bd593d3c79e9e52b8 | [
"MIT"
] | null | null | null | src/display-fx.asm | kieranhj/funky-fresh | 739962d911ba7a3719878b3bd593d3c79e9e52b8 | [
"MIT"
] | null | null | null | \ -*- mode:beebasm -*-
\ ******************************************************************
\ * DISPLAY FX
\ ******************************************************************
\\ TODO: Support Display FX code in SWRAM banks.
.display_fx_table
{
equw do_nothing, fx_static_image_draw, SLOT_BANK2 ; &00
equw fx_static_image_main_update, fx_static_image_draw, SLOT_BANK2 ; &01
equw fx_static_image_shadow_update, fx_static_image_draw, SLOT_BANK2 ; &02
equw fx_vertical_stretch_update, fx_vertical_stretch_draw, SLOT_BANK2 ; &03
equw fx_chunky_twister_update, fx_chunky_twister_draw, SLOT_BANK2 ; &04
equw fx_frequency_update, fx_frequency_draw, SLOT_BANK2 ; &05
equw fx_stretch_grid_update, fx_stretch_grid_draw, SLOT_BANK2 ; &06
equw fx_frak_zoomer_update, fx_frak_zoomer_draw, SLOT_BANK2 ; &07
; v---------------------------------------------------------------------------- ; update DISPLAY_FX_MAX!
}
DISPLAY_FX_MAX = 8
.display_fx_update
{
lda rocket_track_display_fx+1
cmp display_fx
beq return
IF _DEBUG
cmp #DISPLAY_FX_MAX ; protect against live editing errors!
bcs return
ENDIF
\\ Set Display FX callbacks in IRQ.
sta display_fx
asl a:asl a
clc
adc display_fx:adc display_fx
tax
lda display_fx_table+0, X
sta call_fx_update_fn+1
lda display_fx_table+1, X
sta call_fx_update_fn+2
lda display_fx_table+2, X
sta call_fx_draw_fn+1
lda display_fx_table+3, X
sta call_fx_draw_fn+2
lda display_fx_table+4, X
sta call_fx_update_slot+1
sta call_fx_draw_slot+1
.return
rts
}
| 27.892857 | 108 | 0.658771 |
9b6d49a23efc93f98c11a929d972bcfa2eee2ff2 | 3,183 | asm | Assembly | source/interaction/warm.asm | paulscottrobson/6502-basic | d4c360041bfa49427a506465e58bb0ef94beaa44 | [
"MIT"
] | 3 | 2021-09-30T19:34:11.000Z | 2021-10-31T06:55:50.000Z | source/interaction/warm.asm | paulscottrobson/6502-Basic | d4c360041bfa49427a506465e58bb0ef94beaa44 | [
"MIT"
] | null | null | null | source/interaction/warm.asm | paulscottrobson/6502-Basic | d4c360041bfa49427a506465e58bb0ef94beaa44 | [
"MIT"
] | 1 | 2021-12-07T21:58:44.000Z | 2021-12-07T21:58:44.000Z | ; ************************************************************************************************
; ************************************************************************************************
;
; Name: warm.asm
; Purpose: Warm start
; Created: 10th March 2021
; Reviewed: 16th March 2021
; Author: Paul Robson (paul@robsons.org.uk)
;
; ************************************************************************************************
; ************************************************************************************************
.section code
; ************************************************************************************************
;
; Interactive warm start comes here
;
; ************************************************************************************************
WarmStartEntry: ;; <warmstart>
ldx #$FF
txs
jsr ForceStandardMode
lda #2 ; green text.
.device_ink
.device_inputline ; input line, put address in temp0
;
lda temp0 ; copy temp0 to codePtr
sta codePtr
lda temp0+1
sta codePtr+1
;
.device_crlf
;
.tokeniser_tokenise ; tokenise the line.
cmp #0
beq WSEError ; failed (tokenise can fail if it doesn't know a character e.g. |)
;
set16 codePtr,tokenHeader ; set the exec pointer to the token buffer.
;
lda tokenBuffer ; is it a blank line, go get another line.
cmp #$80
beq WarmStartEntry
and #$C0 ; does it start with a number
cmp #$40 ; e.g. is it 01xx xxxx
beq HasLineNumber
;
lda #0 ; zero the token header, so it will look like a
sta tokenHeader ; fake program line.
sta tokenHeader+1
sta tokenHeader+2
.main_runfrom ; run code at (codePtr), which will end because
; it will have an offset $00, causing END
; and then a new warm start.
WSEError:
.throw Tokenise
;
; Line Number prefixes the line.
;
HasLineNumber:
ldy #3 ; get line number
lda #0
.main_evaluateint
lda esInt2 ; check in range (only 2 bytes)
ora esInt3
bne WSEError
;
tya ; make codePtr point to code after the line number.
clc ; by skipping over the tokenised number.
adc codePtr
sta codePtr
bcc _HLNNoCarry
inc codePtr+1
_HLNNoCarry:
tya ; subtract that offset from the code buffer index
sec
eor #$FF
adc tokenBufferIndex
clc ; add space allowing for header & $80 trailer
adc #4
sta tokenBufferIndex ; this is the number of bytes occupied.
;
jsr DeleteLine ; always delete the line, it's deleted and reinserted.
_HLNNoDelete:
lda tokenBufferIndex ; if line was empty, then don't insert
cmp #1 ; (the one character is the EOL marker)
beq _HLMEditDone
;
lda lowMemory+1 ; is there space, if we allow a little bit of
clc ; workspace (1k)
adc #4 ; e.g. 4 x 256
cmp highMemory+1
bcs _HLMMemory ; nope, won't allowit.
;
jsr InsertLine ; insert the line in
_HLMEditDone:
.main_clear ; clear all variables etc.
jmp WarmStartEntry
_HLMMemory:
.throw Memory
.send code
| 29.472222 | 98 | 0.511781 |
cd12936f1e3632c5df1c7f6ac3d9906134b71c6c | 40,431 | asm | Assembly | user/prog2.asm | airaShrestha/xv6Modification | bb2e2799da71b0e66e6a390fa147fd964c460efd | [
"MIT-0"
] | null | null | null | user/prog2.asm | airaShrestha/xv6Modification | bb2e2799da71b0e66e6a390fa147fd964c460efd | [
"MIT-0"
] | null | null | null | user/prog2.asm | airaShrestha/xv6Modification | bb2e2799da71b0e66e6a390fa147fd964c460efd | [
"MIT-0"
] | null | null | null |
user/_prog2: file format elf64-littleriscv
Disassembly of section .text:
0000000000000000 <main>:
#include "kernel/types.h"
#include "kernel/stat.h"
#include "user/user.h"
int main(int argc, char *argv[])
{
0: 1141 addi sp,sp,-16
2: e406 sd ra,8(sp)
4: e022 sd s0,0(sp)
6: 0800 addi s0,sp,16
//FUNCTION_SETS_NUMBER_OF_TICKETS(30); // write your own function here
set_tickets(20);
8: 4551 li a0,20
a: 00000097 auipc ra,0x0
e: 34a080e7 jalr 842(ra) # 354 <set_tickets>
12: 06400713 li a4,100
int i,k;
const int loop=100; // adjust this parameter depending on your system speed
for(i=0;i<loop;i++)
{
asm("nop"); // to prevent the compiler from optimizing the for-loop
16: 06400693 li a3,100
1a: a019 j 20 <main+0x20>
for(i=0;i<loop;i++)
1c: 377d addiw a4,a4,-1
1e: c719 beqz a4,2c <main+0x2c>
asm("nop"); // to prevent the compiler from optimizing the for-loop
20: 0001 nop
22: 87b6 mv a5,a3
for(k=0;k<loop;k++)
{
asm("nop");
24: 0001 nop
for(k=0;k<loop;k++)
26: 37fd addiw a5,a5,-1
28: fff5 bnez a5,24 <main+0x24>
2a: bfcd j 1c <main+0x1c>
}
}
sched_statistics(); // syscall
2c: 00000097 auipc ra,0x0
30: 330080e7 jalr 816(ra) # 35c <sched_statistics>
exit(0);
34: 4501 li a0,0
36: 00000097 auipc ra,0x0
3a: 27e080e7 jalr 638(ra) # 2b4 <exit>
000000000000003e <strcpy>:
#include "kernel/fcntl.h"
#include "user/user.h"
char*
strcpy(char *s, const char *t)
{
3e: 1141 addi sp,sp,-16
40: e422 sd s0,8(sp)
42: 0800 addi s0,sp,16
char *os;
os = s;
while((*s++ = *t++) != 0)
44: 87aa mv a5,a0
46: 0585 addi a1,a1,1
48: 0785 addi a5,a5,1
4a: fff5c703 lbu a4,-1(a1)
4e: fee78fa3 sb a4,-1(a5)
52: fb75 bnez a4,46 <strcpy+0x8>
;
return os;
}
54: 6422 ld s0,8(sp)
56: 0141 addi sp,sp,16
58: 8082 ret
000000000000005a <strcmp>:
int
strcmp(const char *p, const char *q)
{
5a: 1141 addi sp,sp,-16
5c: e422 sd s0,8(sp)
5e: 0800 addi s0,sp,16
while(*p && *p == *q)
60: 00054783 lbu a5,0(a0)
64: cb91 beqz a5,78 <strcmp+0x1e>
66: 0005c703 lbu a4,0(a1)
6a: 00f71763 bne a4,a5,78 <strcmp+0x1e>
p++, q++;
6e: 0505 addi a0,a0,1
70: 0585 addi a1,a1,1
while(*p && *p == *q)
72: 00054783 lbu a5,0(a0)
76: fbe5 bnez a5,66 <strcmp+0xc>
return (uchar)*p - (uchar)*q;
78: 0005c503 lbu a0,0(a1)
}
7c: 40a7853b subw a0,a5,a0
80: 6422 ld s0,8(sp)
82: 0141 addi sp,sp,16
84: 8082 ret
0000000000000086 <strlen>:
uint
strlen(const char *s)
{
86: 1141 addi sp,sp,-16
88: e422 sd s0,8(sp)
8a: 0800 addi s0,sp,16
int n;
for(n = 0; s[n]; n++)
8c: 00054783 lbu a5,0(a0)
90: cf91 beqz a5,ac <strlen+0x26>
92: 0505 addi a0,a0,1
94: 87aa mv a5,a0
96: 4685 li a3,1
98: 9e89 subw a3,a3,a0
9a: 00f6853b addw a0,a3,a5
9e: 0785 addi a5,a5,1
a0: fff7c703 lbu a4,-1(a5)
a4: fb7d bnez a4,9a <strlen+0x14>
;
return n;
}
a6: 6422 ld s0,8(sp)
a8: 0141 addi sp,sp,16
aa: 8082 ret
for(n = 0; s[n]; n++)
ac: 4501 li a0,0
ae: bfe5 j a6 <strlen+0x20>
00000000000000b0 <memset>:
void*
memset(void *dst, int c, uint n)
{
b0: 1141 addi sp,sp,-16
b2: e422 sd s0,8(sp)
b4: 0800 addi s0,sp,16
char *cdst = (char *) dst;
int i;
for(i = 0; i < n; i++){
b6: ce09 beqz a2,d0 <memset+0x20>
b8: 87aa mv a5,a0
ba: fff6071b addiw a4,a2,-1
be: 1702 slli a4,a4,0x20
c0: 9301 srli a4,a4,0x20
c2: 0705 addi a4,a4,1
c4: 972a add a4,a4,a0
cdst[i] = c;
c6: 00b78023 sb a1,0(a5)
for(i = 0; i < n; i++){
ca: 0785 addi a5,a5,1
cc: fee79de3 bne a5,a4,c6 <memset+0x16>
}
return dst;
}
d0: 6422 ld s0,8(sp)
d2: 0141 addi sp,sp,16
d4: 8082 ret
00000000000000d6 <strchr>:
char*
strchr(const char *s, char c)
{
d6: 1141 addi sp,sp,-16
d8: e422 sd s0,8(sp)
da: 0800 addi s0,sp,16
for(; *s; s++)
dc: 00054783 lbu a5,0(a0)
e0: cb99 beqz a5,f6 <strchr+0x20>
if(*s == c)
e2: 00f58763 beq a1,a5,f0 <strchr+0x1a>
for(; *s; s++)
e6: 0505 addi a0,a0,1
e8: 00054783 lbu a5,0(a0)
ec: fbfd bnez a5,e2 <strchr+0xc>
return (char*)s;
return 0;
ee: 4501 li a0,0
}
f0: 6422 ld s0,8(sp)
f2: 0141 addi sp,sp,16
f4: 8082 ret
return 0;
f6: 4501 li a0,0
f8: bfe5 j f0 <strchr+0x1a>
00000000000000fa <gets>:
char*
gets(char *buf, int max)
{
fa: 711d addi sp,sp,-96
fc: ec86 sd ra,88(sp)
fe: e8a2 sd s0,80(sp)
100: e4a6 sd s1,72(sp)
102: e0ca sd s2,64(sp)
104: fc4e sd s3,56(sp)
106: f852 sd s4,48(sp)
108: f456 sd s5,40(sp)
10a: f05a sd s6,32(sp)
10c: ec5e sd s7,24(sp)
10e: 1080 addi s0,sp,96
110: 8baa mv s7,a0
112: 8a2e mv s4,a1
int i, cc;
char c;
for(i=0; i+1 < max; ){
114: 892a mv s2,a0
116: 4481 li s1,0
cc = read(0, &c, 1);
if(cc < 1)
break;
buf[i++] = c;
if(c == '\n' || c == '\r')
118: 4aa9 li s5,10
11a: 4b35 li s6,13
for(i=0; i+1 < max; ){
11c: 89a6 mv s3,s1
11e: 2485 addiw s1,s1,1
120: 0344d863 bge s1,s4,150 <gets+0x56>
cc = read(0, &c, 1);
124: 4605 li a2,1
126: faf40593 addi a1,s0,-81
12a: 4501 li a0,0
12c: 00000097 auipc ra,0x0
130: 1a0080e7 jalr 416(ra) # 2cc <read>
if(cc < 1)
134: 00a05e63 blez a0,150 <gets+0x56>
buf[i++] = c;
138: faf44783 lbu a5,-81(s0)
13c: 00f90023 sb a5,0(s2)
if(c == '\n' || c == '\r')
140: 01578763 beq a5,s5,14e <gets+0x54>
144: 0905 addi s2,s2,1
146: fd679be3 bne a5,s6,11c <gets+0x22>
for(i=0; i+1 < max; ){
14a: 89a6 mv s3,s1
14c: a011 j 150 <gets+0x56>
14e: 89a6 mv s3,s1
break;
}
buf[i] = '\0';
150: 99de add s3,s3,s7
152: 00098023 sb zero,0(s3)
return buf;
}
156: 855e mv a0,s7
158: 60e6 ld ra,88(sp)
15a: 6446 ld s0,80(sp)
15c: 64a6 ld s1,72(sp)
15e: 6906 ld s2,64(sp)
160: 79e2 ld s3,56(sp)
162: 7a42 ld s4,48(sp)
164: 7aa2 ld s5,40(sp)
166: 7b02 ld s6,32(sp)
168: 6be2 ld s7,24(sp)
16a: 6125 addi sp,sp,96
16c: 8082 ret
000000000000016e <stat>:
int
stat(const char *n, struct stat *st)
{
16e: 1101 addi sp,sp,-32
170: ec06 sd ra,24(sp)
172: e822 sd s0,16(sp)
174: e426 sd s1,8(sp)
176: e04a sd s2,0(sp)
178: 1000 addi s0,sp,32
17a: 892e mv s2,a1
int fd;
int r;
fd = open(n, O_RDONLY);
17c: 4581 li a1,0
17e: 00000097 auipc ra,0x0
182: 176080e7 jalr 374(ra) # 2f4 <open>
if(fd < 0)
186: 02054563 bltz a0,1b0 <stat+0x42>
18a: 84aa mv s1,a0
return -1;
r = fstat(fd, st);
18c: 85ca mv a1,s2
18e: 00000097 auipc ra,0x0
192: 17e080e7 jalr 382(ra) # 30c <fstat>
196: 892a mv s2,a0
close(fd);
198: 8526 mv a0,s1
19a: 00000097 auipc ra,0x0
19e: 142080e7 jalr 322(ra) # 2dc <close>
return r;
}
1a2: 854a mv a0,s2
1a4: 60e2 ld ra,24(sp)
1a6: 6442 ld s0,16(sp)
1a8: 64a2 ld s1,8(sp)
1aa: 6902 ld s2,0(sp)
1ac: 6105 addi sp,sp,32
1ae: 8082 ret
return -1;
1b0: 597d li s2,-1
1b2: bfc5 j 1a2 <stat+0x34>
00000000000001b4 <atoi>:
int
atoi(const char *s)
{
1b4: 1141 addi sp,sp,-16
1b6: e422 sd s0,8(sp)
1b8: 0800 addi s0,sp,16
int n;
n = 0;
while('0' <= *s && *s <= '9')
1ba: 00054603 lbu a2,0(a0)
1be: fd06079b addiw a5,a2,-48
1c2: 0ff7f793 andi a5,a5,255
1c6: 4725 li a4,9
1c8: 02f76963 bltu a4,a5,1fa <atoi+0x46>
1cc: 86aa mv a3,a0
n = 0;
1ce: 4501 li a0,0
while('0' <= *s && *s <= '9')
1d0: 45a5 li a1,9
n = n*10 + *s++ - '0';
1d2: 0685 addi a3,a3,1
1d4: 0025179b slliw a5,a0,0x2
1d8: 9fa9 addw a5,a5,a0
1da: 0017979b slliw a5,a5,0x1
1de: 9fb1 addw a5,a5,a2
1e0: fd07851b addiw a0,a5,-48
while('0' <= *s && *s <= '9')
1e4: 0006c603 lbu a2,0(a3)
1e8: fd06071b addiw a4,a2,-48
1ec: 0ff77713 andi a4,a4,255
1f0: fee5f1e3 bgeu a1,a4,1d2 <atoi+0x1e>
return n;
}
1f4: 6422 ld s0,8(sp)
1f6: 0141 addi sp,sp,16
1f8: 8082 ret
n = 0;
1fa: 4501 li a0,0
1fc: bfe5 j 1f4 <atoi+0x40>
00000000000001fe <memmove>:
void*
memmove(void *vdst, const void *vsrc, int n)
{
1fe: 1141 addi sp,sp,-16
200: e422 sd s0,8(sp)
202: 0800 addi s0,sp,16
char *dst;
const char *src;
dst = vdst;
src = vsrc;
if (src > dst) {
204: 02b57663 bgeu a0,a1,230 <memmove+0x32>
while(n-- > 0)
208: 02c05163 blez a2,22a <memmove+0x2c>
20c: fff6079b addiw a5,a2,-1
210: 1782 slli a5,a5,0x20
212: 9381 srli a5,a5,0x20
214: 0785 addi a5,a5,1
216: 97aa add a5,a5,a0
dst = vdst;
218: 872a mv a4,a0
*dst++ = *src++;
21a: 0585 addi a1,a1,1
21c: 0705 addi a4,a4,1
21e: fff5c683 lbu a3,-1(a1)
222: fed70fa3 sb a3,-1(a4)
while(n-- > 0)
226: fee79ae3 bne a5,a4,21a <memmove+0x1c>
src += n;
while(n-- > 0)
*--dst = *--src;
}
return vdst;
}
22a: 6422 ld s0,8(sp)
22c: 0141 addi sp,sp,16
22e: 8082 ret
dst += n;
230: 00c50733 add a4,a0,a2
src += n;
234: 95b2 add a1,a1,a2
while(n-- > 0)
236: fec05ae3 blez a2,22a <memmove+0x2c>
23a: fff6079b addiw a5,a2,-1
23e: 1782 slli a5,a5,0x20
240: 9381 srli a5,a5,0x20
242: fff7c793 not a5,a5
246: 97ba add a5,a5,a4
*--dst = *--src;
248: 15fd addi a1,a1,-1
24a: 177d addi a4,a4,-1
24c: 0005c683 lbu a3,0(a1)
250: 00d70023 sb a3,0(a4)
while(n-- > 0)
254: fee79ae3 bne a5,a4,248 <memmove+0x4a>
258: bfc9 j 22a <memmove+0x2c>
000000000000025a <memcmp>:
int
memcmp(const void *s1, const void *s2, uint n)
{
25a: 1141 addi sp,sp,-16
25c: e422 sd s0,8(sp)
25e: 0800 addi s0,sp,16
const char *p1 = s1, *p2 = s2;
while (n-- > 0) {
260: ca05 beqz a2,290 <memcmp+0x36>
262: fff6069b addiw a3,a2,-1
266: 1682 slli a3,a3,0x20
268: 9281 srli a3,a3,0x20
26a: 0685 addi a3,a3,1
26c: 96aa add a3,a3,a0
if (*p1 != *p2) {
26e: 00054783 lbu a5,0(a0)
272: 0005c703 lbu a4,0(a1)
276: 00e79863 bne a5,a4,286 <memcmp+0x2c>
return *p1 - *p2;
}
p1++;
27a: 0505 addi a0,a0,1
p2++;
27c: 0585 addi a1,a1,1
while (n-- > 0) {
27e: fed518e3 bne a0,a3,26e <memcmp+0x14>
}
return 0;
282: 4501 li a0,0
284: a019 j 28a <memcmp+0x30>
return *p1 - *p2;
286: 40e7853b subw a0,a5,a4
}
28a: 6422 ld s0,8(sp)
28c: 0141 addi sp,sp,16
28e: 8082 ret
return 0;
290: 4501 li a0,0
292: bfe5 j 28a <memcmp+0x30>
0000000000000294 <memcpy>:
void *
memcpy(void *dst, const void *src, uint n)
{
294: 1141 addi sp,sp,-16
296: e406 sd ra,8(sp)
298: e022 sd s0,0(sp)
29a: 0800 addi s0,sp,16
return memmove(dst, src, n);
29c: 00000097 auipc ra,0x0
2a0: f62080e7 jalr -158(ra) # 1fe <memmove>
}
2a4: 60a2 ld ra,8(sp)
2a6: 6402 ld s0,0(sp)
2a8: 0141 addi sp,sp,16
2aa: 8082 ret
00000000000002ac <fork>:
# generated by usys.pl - do not edit
#include "kernel/syscall.h"
.global fork
fork:
li a7, SYS_fork
2ac: 4885 li a7,1
ecall
2ae: 00000073 ecall
ret
2b2: 8082 ret
00000000000002b4 <exit>:
.global exit
exit:
li a7, SYS_exit
2b4: 4889 li a7,2
ecall
2b6: 00000073 ecall
ret
2ba: 8082 ret
00000000000002bc <wait>:
.global wait
wait:
li a7, SYS_wait
2bc: 488d li a7,3
ecall
2be: 00000073 ecall
ret
2c2: 8082 ret
00000000000002c4 <pipe>:
.global pipe
pipe:
li a7, SYS_pipe
2c4: 4891 li a7,4
ecall
2c6: 00000073 ecall
ret
2ca: 8082 ret
00000000000002cc <read>:
.global read
read:
li a7, SYS_read
2cc: 4895 li a7,5
ecall
2ce: 00000073 ecall
ret
2d2: 8082 ret
00000000000002d4 <write>:
.global write
write:
li a7, SYS_write
2d4: 48c1 li a7,16
ecall
2d6: 00000073 ecall
ret
2da: 8082 ret
00000000000002dc <close>:
.global close
close:
li a7, SYS_close
2dc: 48d5 li a7,21
ecall
2de: 00000073 ecall
ret
2e2: 8082 ret
00000000000002e4 <kill>:
.global kill
kill:
li a7, SYS_kill
2e4: 4899 li a7,6
ecall
2e6: 00000073 ecall
ret
2ea: 8082 ret
00000000000002ec <exec>:
.global exec
exec:
li a7, SYS_exec
2ec: 489d li a7,7
ecall
2ee: 00000073 ecall
ret
2f2: 8082 ret
00000000000002f4 <open>:
.global open
open:
li a7, SYS_open
2f4: 48bd li a7,15
ecall
2f6: 00000073 ecall
ret
2fa: 8082 ret
00000000000002fc <mknod>:
.global mknod
mknod:
li a7, SYS_mknod
2fc: 48c5 li a7,17
ecall
2fe: 00000073 ecall
ret
302: 8082 ret
0000000000000304 <unlink>:
.global unlink
unlink:
li a7, SYS_unlink
304: 48c9 li a7,18
ecall
306: 00000073 ecall
ret
30a: 8082 ret
000000000000030c <fstat>:
.global fstat
fstat:
li a7, SYS_fstat
30c: 48a1 li a7,8
ecall
30e: 00000073 ecall
ret
312: 8082 ret
0000000000000314 <link>:
.global link
link:
li a7, SYS_link
314: 48cd li a7,19
ecall
316: 00000073 ecall
ret
31a: 8082 ret
000000000000031c <mkdir>:
.global mkdir
mkdir:
li a7, SYS_mkdir
31c: 48d1 li a7,20
ecall
31e: 00000073 ecall
ret
322: 8082 ret
0000000000000324 <chdir>:
.global chdir
chdir:
li a7, SYS_chdir
324: 48a5 li a7,9
ecall
326: 00000073 ecall
ret
32a: 8082 ret
000000000000032c <dup>:
.global dup
dup:
li a7, SYS_dup
32c: 48a9 li a7,10
ecall
32e: 00000073 ecall
ret
332: 8082 ret
0000000000000334 <getpid>:
.global getpid
getpid:
li a7, SYS_getpid
334: 48ad li a7,11
ecall
336: 00000073 ecall
ret
33a: 8082 ret
000000000000033c <sbrk>:
.global sbrk
sbrk:
li a7, SYS_sbrk
33c: 48b1 li a7,12
ecall
33e: 00000073 ecall
ret
342: 8082 ret
0000000000000344 <sleep>:
.global sleep
sleep:
li a7, SYS_sleep
344: 48b5 li a7,13
ecall
346: 00000073 ecall
ret
34a: 8082 ret
000000000000034c <uptime>:
.global uptime
uptime:
li a7, SYS_uptime
34c: 48b9 li a7,14
ecall
34e: 00000073 ecall
ret
352: 8082 ret
0000000000000354 <set_tickets>:
.global set_tickets
set_tickets:
li a7, SYS_set_tickets
354: 48dd li a7,23
ecall
356: 00000073 ecall
ret
35a: 8082 ret
000000000000035c <sched_statistics>:
.global sched_statistics
sched_statistics:
li a7, SYS_sched_statistics
35c: 48e1 li a7,24
ecall
35e: 00000073 ecall
ret
362: 8082 ret
0000000000000364 <hello>:
.global hello
hello:
li a7, SYS_hello
364: 48e5 li a7,25
ecall
366: 00000073 ecall
ret
36a: 8082 ret
000000000000036c <info>:
.global info
info:
li a7, SYS_info
36c: 48d9 li a7,22
ecall
36e: 00000073 ecall
ret
372: 8082 ret
0000000000000374 <putc>:
static char digits[] = "0123456789ABCDEF";
static void
putc(int fd, char c)
{
374: 1101 addi sp,sp,-32
376: ec06 sd ra,24(sp)
378: e822 sd s0,16(sp)
37a: 1000 addi s0,sp,32
37c: feb407a3 sb a1,-17(s0)
write(fd, &c, 1);
380: 4605 li a2,1
382: fef40593 addi a1,s0,-17
386: 00000097 auipc ra,0x0
38a: f4e080e7 jalr -178(ra) # 2d4 <write>
}
38e: 60e2 ld ra,24(sp)
390: 6442 ld s0,16(sp)
392: 6105 addi sp,sp,32
394: 8082 ret
0000000000000396 <printint>:
static void
printint(int fd, int xx, int base, int sgn)
{
396: 7139 addi sp,sp,-64
398: fc06 sd ra,56(sp)
39a: f822 sd s0,48(sp)
39c: f426 sd s1,40(sp)
39e: f04a sd s2,32(sp)
3a0: ec4e sd s3,24(sp)
3a2: 0080 addi s0,sp,64
3a4: 84aa mv s1,a0
char buf[16];
int i, neg;
uint x;
neg = 0;
if(sgn && xx < 0){
3a6: c299 beqz a3,3ac <printint+0x16>
3a8: 0805c863 bltz a1,438 <printint+0xa2>
neg = 1;
x = -xx;
} else {
x = xx;
3ac: 2581 sext.w a1,a1
neg = 0;
3ae: 4881 li a7,0
3b0: fc040693 addi a3,s0,-64
}
i = 0;
3b4: 4701 li a4,0
do{
buf[i++] = digits[x % base];
3b6: 2601 sext.w a2,a2
3b8: 00000517 auipc a0,0x0
3bc: 44050513 addi a0,a0,1088 # 7f8 <digits>
3c0: 883a mv a6,a4
3c2: 2705 addiw a4,a4,1
3c4: 02c5f7bb remuw a5,a1,a2
3c8: 1782 slli a5,a5,0x20
3ca: 9381 srli a5,a5,0x20
3cc: 97aa add a5,a5,a0
3ce: 0007c783 lbu a5,0(a5)
3d2: 00f68023 sb a5,0(a3)
}while((x /= base) != 0);
3d6: 0005879b sext.w a5,a1
3da: 02c5d5bb divuw a1,a1,a2
3de: 0685 addi a3,a3,1
3e0: fec7f0e3 bgeu a5,a2,3c0 <printint+0x2a>
if(neg)
3e4: 00088b63 beqz a7,3fa <printint+0x64>
buf[i++] = '-';
3e8: fd040793 addi a5,s0,-48
3ec: 973e add a4,a4,a5
3ee: 02d00793 li a5,45
3f2: fef70823 sb a5,-16(a4)
3f6: 0028071b addiw a4,a6,2
while(--i >= 0)
3fa: 02e05863 blez a4,42a <printint+0x94>
3fe: fc040793 addi a5,s0,-64
402: 00e78933 add s2,a5,a4
406: fff78993 addi s3,a5,-1
40a: 99ba add s3,s3,a4
40c: 377d addiw a4,a4,-1
40e: 1702 slli a4,a4,0x20
410: 9301 srli a4,a4,0x20
412: 40e989b3 sub s3,s3,a4
putc(fd, buf[i]);
416: fff94583 lbu a1,-1(s2)
41a: 8526 mv a0,s1
41c: 00000097 auipc ra,0x0
420: f58080e7 jalr -168(ra) # 374 <putc>
while(--i >= 0)
424: 197d addi s2,s2,-1
426: ff3918e3 bne s2,s3,416 <printint+0x80>
}
42a: 70e2 ld ra,56(sp)
42c: 7442 ld s0,48(sp)
42e: 74a2 ld s1,40(sp)
430: 7902 ld s2,32(sp)
432: 69e2 ld s3,24(sp)
434: 6121 addi sp,sp,64
436: 8082 ret
x = -xx;
438: 40b005bb negw a1,a1
neg = 1;
43c: 4885 li a7,1
x = -xx;
43e: bf8d j 3b0 <printint+0x1a>
0000000000000440 <vprintf>:
}
// Print to the given fd. Only understands %d, %x, %p, %s.
void
vprintf(int fd, const char *fmt, va_list ap)
{
440: 7119 addi sp,sp,-128
442: fc86 sd ra,120(sp)
444: f8a2 sd s0,112(sp)
446: f4a6 sd s1,104(sp)
448: f0ca sd s2,96(sp)
44a: ecce sd s3,88(sp)
44c: e8d2 sd s4,80(sp)
44e: e4d6 sd s5,72(sp)
450: e0da sd s6,64(sp)
452: fc5e sd s7,56(sp)
454: f862 sd s8,48(sp)
456: f466 sd s9,40(sp)
458: f06a sd s10,32(sp)
45a: ec6e sd s11,24(sp)
45c: 0100 addi s0,sp,128
char *s;
int c, i, state;
state = 0;
for(i = 0; fmt[i]; i++){
45e: 0005c903 lbu s2,0(a1)
462: 18090f63 beqz s2,600 <vprintf+0x1c0>
466: 8aaa mv s5,a0
468: 8b32 mv s6,a2
46a: 00158493 addi s1,a1,1
state = 0;
46e: 4981 li s3,0
if(c == '%'){
state = '%';
} else {
putc(fd, c);
}
} else if(state == '%'){
470: 02500a13 li s4,37
if(c == 'd'){
474: 06400c13 li s8,100
printint(fd, va_arg(ap, int), 10, 1);
} else if(c == 'l') {
478: 06c00c93 li s9,108
printint(fd, va_arg(ap, uint64), 10, 0);
} else if(c == 'x') {
47c: 07800d13 li s10,120
printint(fd, va_arg(ap, int), 16, 0);
} else if(c == 'p') {
480: 07000d93 li s11,112
putc(fd, digits[x >> (sizeof(uint64) * 8 - 4)]);
484: 00000b97 auipc s7,0x0
488: 374b8b93 addi s7,s7,884 # 7f8 <digits>
48c: a839 j 4aa <vprintf+0x6a>
putc(fd, c);
48e: 85ca mv a1,s2
490: 8556 mv a0,s5
492: 00000097 auipc ra,0x0
496: ee2080e7 jalr -286(ra) # 374 <putc>
49a: a019 j 4a0 <vprintf+0x60>
} else if(state == '%'){
49c: 01498f63 beq s3,s4,4ba <vprintf+0x7a>
for(i = 0; fmt[i]; i++){
4a0: 0485 addi s1,s1,1
4a2: fff4c903 lbu s2,-1(s1)
4a6: 14090d63 beqz s2,600 <vprintf+0x1c0>
c = fmt[i] & 0xff;
4aa: 0009079b sext.w a5,s2
if(state == 0){
4ae: fe0997e3 bnez s3,49c <vprintf+0x5c>
if(c == '%'){
4b2: fd479ee3 bne a5,s4,48e <vprintf+0x4e>
state = '%';
4b6: 89be mv s3,a5
4b8: b7e5 j 4a0 <vprintf+0x60>
if(c == 'd'){
4ba: 05878063 beq a5,s8,4fa <vprintf+0xba>
} else if(c == 'l') {
4be: 05978c63 beq a5,s9,516 <vprintf+0xd6>
} else if(c == 'x') {
4c2: 07a78863 beq a5,s10,532 <vprintf+0xf2>
} else if(c == 'p') {
4c6: 09b78463 beq a5,s11,54e <vprintf+0x10e>
printptr(fd, va_arg(ap, uint64));
} else if(c == 's'){
4ca: 07300713 li a4,115
4ce: 0ce78663 beq a5,a4,59a <vprintf+0x15a>
s = "(null)";
while(*s != 0){
putc(fd, *s);
s++;
}
} else if(c == 'c'){
4d2: 06300713 li a4,99
4d6: 0ee78e63 beq a5,a4,5d2 <vprintf+0x192>
putc(fd, va_arg(ap, uint));
} else if(c == '%'){
4da: 11478863 beq a5,s4,5ea <vprintf+0x1aa>
putc(fd, c);
} else {
// Unknown % sequence. Print it to draw attention.
putc(fd, '%');
4de: 85d2 mv a1,s4
4e0: 8556 mv a0,s5
4e2: 00000097 auipc ra,0x0
4e6: e92080e7 jalr -366(ra) # 374 <putc>
putc(fd, c);
4ea: 85ca mv a1,s2
4ec: 8556 mv a0,s5
4ee: 00000097 auipc ra,0x0
4f2: e86080e7 jalr -378(ra) # 374 <putc>
}
state = 0;
4f6: 4981 li s3,0
4f8: b765 j 4a0 <vprintf+0x60>
printint(fd, va_arg(ap, int), 10, 1);
4fa: 008b0913 addi s2,s6,8
4fe: 4685 li a3,1
500: 4629 li a2,10
502: 000b2583 lw a1,0(s6)
506: 8556 mv a0,s5
508: 00000097 auipc ra,0x0
50c: e8e080e7 jalr -370(ra) # 396 <printint>
510: 8b4a mv s6,s2
state = 0;
512: 4981 li s3,0
514: b771 j 4a0 <vprintf+0x60>
printint(fd, va_arg(ap, uint64), 10, 0);
516: 008b0913 addi s2,s6,8
51a: 4681 li a3,0
51c: 4629 li a2,10
51e: 000b2583 lw a1,0(s6)
522: 8556 mv a0,s5
524: 00000097 auipc ra,0x0
528: e72080e7 jalr -398(ra) # 396 <printint>
52c: 8b4a mv s6,s2
state = 0;
52e: 4981 li s3,0
530: bf85 j 4a0 <vprintf+0x60>
printint(fd, va_arg(ap, int), 16, 0);
532: 008b0913 addi s2,s6,8
536: 4681 li a3,0
538: 4641 li a2,16
53a: 000b2583 lw a1,0(s6)
53e: 8556 mv a0,s5
540: 00000097 auipc ra,0x0
544: e56080e7 jalr -426(ra) # 396 <printint>
548: 8b4a mv s6,s2
state = 0;
54a: 4981 li s3,0
54c: bf91 j 4a0 <vprintf+0x60>
printptr(fd, va_arg(ap, uint64));
54e: 008b0793 addi a5,s6,8
552: f8f43423 sd a5,-120(s0)
556: 000b3983 ld s3,0(s6)
putc(fd, '0');
55a: 03000593 li a1,48
55e: 8556 mv a0,s5
560: 00000097 auipc ra,0x0
564: e14080e7 jalr -492(ra) # 374 <putc>
putc(fd, 'x');
568: 85ea mv a1,s10
56a: 8556 mv a0,s5
56c: 00000097 auipc ra,0x0
570: e08080e7 jalr -504(ra) # 374 <putc>
574: 4941 li s2,16
putc(fd, digits[x >> (sizeof(uint64) * 8 - 4)]);
576: 03c9d793 srli a5,s3,0x3c
57a: 97de add a5,a5,s7
57c: 0007c583 lbu a1,0(a5)
580: 8556 mv a0,s5
582: 00000097 auipc ra,0x0
586: df2080e7 jalr -526(ra) # 374 <putc>
for (i = 0; i < (sizeof(uint64) * 2); i++, x <<= 4)
58a: 0992 slli s3,s3,0x4
58c: 397d addiw s2,s2,-1
58e: fe0914e3 bnez s2,576 <vprintf+0x136>
printptr(fd, va_arg(ap, uint64));
592: f8843b03 ld s6,-120(s0)
state = 0;
596: 4981 li s3,0
598: b721 j 4a0 <vprintf+0x60>
s = va_arg(ap, char*);
59a: 008b0993 addi s3,s6,8
59e: 000b3903 ld s2,0(s6)
if(s == 0)
5a2: 02090163 beqz s2,5c4 <vprintf+0x184>
while(*s != 0){
5a6: 00094583 lbu a1,0(s2)
5aa: c9a1 beqz a1,5fa <vprintf+0x1ba>
putc(fd, *s);
5ac: 8556 mv a0,s5
5ae: 00000097 auipc ra,0x0
5b2: dc6080e7 jalr -570(ra) # 374 <putc>
s++;
5b6: 0905 addi s2,s2,1
while(*s != 0){
5b8: 00094583 lbu a1,0(s2)
5bc: f9e5 bnez a1,5ac <vprintf+0x16c>
s = va_arg(ap, char*);
5be: 8b4e mv s6,s3
state = 0;
5c0: 4981 li s3,0
5c2: bdf9 j 4a0 <vprintf+0x60>
s = "(null)";
5c4: 00000917 auipc s2,0x0
5c8: 22c90913 addi s2,s2,556 # 7f0 <malloc+0xe6>
while(*s != 0){
5cc: 02800593 li a1,40
5d0: bff1 j 5ac <vprintf+0x16c>
putc(fd, va_arg(ap, uint));
5d2: 008b0913 addi s2,s6,8
5d6: 000b4583 lbu a1,0(s6)
5da: 8556 mv a0,s5
5dc: 00000097 auipc ra,0x0
5e0: d98080e7 jalr -616(ra) # 374 <putc>
5e4: 8b4a mv s6,s2
state = 0;
5e6: 4981 li s3,0
5e8: bd65 j 4a0 <vprintf+0x60>
putc(fd, c);
5ea: 85d2 mv a1,s4
5ec: 8556 mv a0,s5
5ee: 00000097 auipc ra,0x0
5f2: d86080e7 jalr -634(ra) # 374 <putc>
state = 0;
5f6: 4981 li s3,0
5f8: b565 j 4a0 <vprintf+0x60>
s = va_arg(ap, char*);
5fa: 8b4e mv s6,s3
state = 0;
5fc: 4981 li s3,0
5fe: b54d j 4a0 <vprintf+0x60>
}
}
}
600: 70e6 ld ra,120(sp)
602: 7446 ld s0,112(sp)
604: 74a6 ld s1,104(sp)
606: 7906 ld s2,96(sp)
608: 69e6 ld s3,88(sp)
60a: 6a46 ld s4,80(sp)
60c: 6aa6 ld s5,72(sp)
60e: 6b06 ld s6,64(sp)
610: 7be2 ld s7,56(sp)
612: 7c42 ld s8,48(sp)
614: 7ca2 ld s9,40(sp)
616: 7d02 ld s10,32(sp)
618: 6de2 ld s11,24(sp)
61a: 6109 addi sp,sp,128
61c: 8082 ret
000000000000061e <fprintf>:
void
fprintf(int fd, const char *fmt, ...)
{
61e: 715d addi sp,sp,-80
620: ec06 sd ra,24(sp)
622: e822 sd s0,16(sp)
624: 1000 addi s0,sp,32
626: e010 sd a2,0(s0)
628: e414 sd a3,8(s0)
62a: e818 sd a4,16(s0)
62c: ec1c sd a5,24(s0)
62e: 03043023 sd a6,32(s0)
632: 03143423 sd a7,40(s0)
va_list ap;
va_start(ap, fmt);
636: fe843423 sd s0,-24(s0)
vprintf(fd, fmt, ap);
63a: 8622 mv a2,s0
63c: 00000097 auipc ra,0x0
640: e04080e7 jalr -508(ra) # 440 <vprintf>
}
644: 60e2 ld ra,24(sp)
646: 6442 ld s0,16(sp)
648: 6161 addi sp,sp,80
64a: 8082 ret
000000000000064c <printf>:
void
printf(const char *fmt, ...)
{
64c: 711d addi sp,sp,-96
64e: ec06 sd ra,24(sp)
650: e822 sd s0,16(sp)
652: 1000 addi s0,sp,32
654: e40c sd a1,8(s0)
656: e810 sd a2,16(s0)
658: ec14 sd a3,24(s0)
65a: f018 sd a4,32(s0)
65c: f41c sd a5,40(s0)
65e: 03043823 sd a6,48(s0)
662: 03143c23 sd a7,56(s0)
va_list ap;
va_start(ap, fmt);
666: 00840613 addi a2,s0,8
66a: fec43423 sd a2,-24(s0)
vprintf(1, fmt, ap);
66e: 85aa mv a1,a0
670: 4505 li a0,1
672: 00000097 auipc ra,0x0
676: dce080e7 jalr -562(ra) # 440 <vprintf>
}
67a: 60e2 ld ra,24(sp)
67c: 6442 ld s0,16(sp)
67e: 6125 addi sp,sp,96
680: 8082 ret
0000000000000682 <free>:
static Header base;
static Header *freep;
void
free(void *ap)
{
682: 1141 addi sp,sp,-16
684: e422 sd s0,8(sp)
686: 0800 addi s0,sp,16
Header *bp, *p;
bp = (Header*)ap - 1;
688: ff050693 addi a3,a0,-16
for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr)
68c: 00000797 auipc a5,0x0
690: 1847b783 ld a5,388(a5) # 810 <freep>
694: a805 j 6c4 <free+0x42>
if(p >= p->s.ptr && (bp > p || bp < p->s.ptr))
break;
if(bp + bp->s.size == p->s.ptr){
bp->s.size += p->s.ptr->s.size;
696: 4618 lw a4,8(a2)
698: 9db9 addw a1,a1,a4
69a: feb52c23 sw a1,-8(a0)
bp->s.ptr = p->s.ptr->s.ptr;
69e: 6398 ld a4,0(a5)
6a0: 6318 ld a4,0(a4)
6a2: fee53823 sd a4,-16(a0)
6a6: a091 j 6ea <free+0x68>
} else
bp->s.ptr = p->s.ptr;
if(p + p->s.size == bp){
p->s.size += bp->s.size;
6a8: ff852703 lw a4,-8(a0)
6ac: 9e39 addw a2,a2,a4
6ae: c790 sw a2,8(a5)
p->s.ptr = bp->s.ptr;
6b0: ff053703 ld a4,-16(a0)
6b4: e398 sd a4,0(a5)
6b6: a099 j 6fc <free+0x7a>
if(p >= p->s.ptr && (bp > p || bp < p->s.ptr))
6b8: 6398 ld a4,0(a5)
6ba: 00e7e463 bltu a5,a4,6c2 <free+0x40>
6be: 00e6ea63 bltu a3,a4,6d2 <free+0x50>
{
6c2: 87ba mv a5,a4
for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr)
6c4: fed7fae3 bgeu a5,a3,6b8 <free+0x36>
6c8: 6398 ld a4,0(a5)
6ca: 00e6e463 bltu a3,a4,6d2 <free+0x50>
if(p >= p->s.ptr && (bp > p || bp < p->s.ptr))
6ce: fee7eae3 bltu a5,a4,6c2 <free+0x40>
if(bp + bp->s.size == p->s.ptr){
6d2: ff852583 lw a1,-8(a0)
6d6: 6390 ld a2,0(a5)
6d8: 02059713 slli a4,a1,0x20
6dc: 9301 srli a4,a4,0x20
6de: 0712 slli a4,a4,0x4
6e0: 9736 add a4,a4,a3
6e2: fae60ae3 beq a2,a4,696 <free+0x14>
bp->s.ptr = p->s.ptr;
6e6: fec53823 sd a2,-16(a0)
if(p + p->s.size == bp){
6ea: 4790 lw a2,8(a5)
6ec: 02061713 slli a4,a2,0x20
6f0: 9301 srli a4,a4,0x20
6f2: 0712 slli a4,a4,0x4
6f4: 973e add a4,a4,a5
6f6: fae689e3 beq a3,a4,6a8 <free+0x26>
} else
p->s.ptr = bp;
6fa: e394 sd a3,0(a5)
freep = p;
6fc: 00000717 auipc a4,0x0
700: 10f73a23 sd a5,276(a4) # 810 <freep>
}
704: 6422 ld s0,8(sp)
706: 0141 addi sp,sp,16
708: 8082 ret
000000000000070a <malloc>:
return freep;
}
void*
malloc(uint nbytes)
{
70a: 7139 addi sp,sp,-64
70c: fc06 sd ra,56(sp)
70e: f822 sd s0,48(sp)
710: f426 sd s1,40(sp)
712: f04a sd s2,32(sp)
714: ec4e sd s3,24(sp)
716: e852 sd s4,16(sp)
718: e456 sd s5,8(sp)
71a: e05a sd s6,0(sp)
71c: 0080 addi s0,sp,64
Header *p, *prevp;
uint nunits;
nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1;
71e: 02051493 slli s1,a0,0x20
722: 9081 srli s1,s1,0x20
724: 04bd addi s1,s1,15
726: 8091 srli s1,s1,0x4
728: 0014899b addiw s3,s1,1
72c: 0485 addi s1,s1,1
if((prevp = freep) == 0){
72e: 00000517 auipc a0,0x0
732: 0e253503 ld a0,226(a0) # 810 <freep>
736: c515 beqz a0,762 <malloc+0x58>
base.s.ptr = freep = prevp = &base;
base.s.size = 0;
}
for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){
738: 611c ld a5,0(a0)
if(p->s.size >= nunits){
73a: 4798 lw a4,8(a5)
73c: 02977f63 bgeu a4,s1,77a <malloc+0x70>
740: 8a4e mv s4,s3
742: 0009871b sext.w a4,s3
746: 6685 lui a3,0x1
748: 00d77363 bgeu a4,a3,74e <malloc+0x44>
74c: 6a05 lui s4,0x1
74e: 000a0b1b sext.w s6,s4
p = sbrk(nu * sizeof(Header));
752: 004a1a1b slliw s4,s4,0x4
p->s.size = nunits;
}
freep = prevp;
return (void*)(p + 1);
}
if(p == freep)
756: 00000917 auipc s2,0x0
75a: 0ba90913 addi s2,s2,186 # 810 <freep>
if(p == (char*)-1)
75e: 5afd li s5,-1
760: a88d j 7d2 <malloc+0xc8>
base.s.ptr = freep = prevp = &base;
762: 00000797 auipc a5,0x0
766: 0b678793 addi a5,a5,182 # 818 <base>
76a: 00000717 auipc a4,0x0
76e: 0af73323 sd a5,166(a4) # 810 <freep>
772: e39c sd a5,0(a5)
base.s.size = 0;
774: 0007a423 sw zero,8(a5)
if(p->s.size >= nunits){
778: b7e1 j 740 <malloc+0x36>
if(p->s.size == nunits)
77a: 02e48b63 beq s1,a4,7b0 <malloc+0xa6>
p->s.size -= nunits;
77e: 4137073b subw a4,a4,s3
782: c798 sw a4,8(a5)
p += p->s.size;
784: 1702 slli a4,a4,0x20
786: 9301 srli a4,a4,0x20
788: 0712 slli a4,a4,0x4
78a: 97ba add a5,a5,a4
p->s.size = nunits;
78c: 0137a423 sw s3,8(a5)
freep = prevp;
790: 00000717 auipc a4,0x0
794: 08a73023 sd a0,128(a4) # 810 <freep>
return (void*)(p + 1);
798: 01078513 addi a0,a5,16
if((p = morecore(nunits)) == 0)
return 0;
}
}
79c: 70e2 ld ra,56(sp)
79e: 7442 ld s0,48(sp)
7a0: 74a2 ld s1,40(sp)
7a2: 7902 ld s2,32(sp)
7a4: 69e2 ld s3,24(sp)
7a6: 6a42 ld s4,16(sp)
7a8: 6aa2 ld s5,8(sp)
7aa: 6b02 ld s6,0(sp)
7ac: 6121 addi sp,sp,64
7ae: 8082 ret
prevp->s.ptr = p->s.ptr;
7b0: 6398 ld a4,0(a5)
7b2: e118 sd a4,0(a0)
7b4: bff1 j 790 <malloc+0x86>
hp->s.size = nu;
7b6: 01652423 sw s6,8(a0)
free((void*)(hp + 1));
7ba: 0541 addi a0,a0,16
7bc: 00000097 auipc ra,0x0
7c0: ec6080e7 jalr -314(ra) # 682 <free>
return freep;
7c4: 00093503 ld a0,0(s2)
if((p = morecore(nunits)) == 0)
7c8: d971 beqz a0,79c <malloc+0x92>
for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){
7ca: 611c ld a5,0(a0)
if(p->s.size >= nunits){
7cc: 4798 lw a4,8(a5)
7ce: fa9776e3 bgeu a4,s1,77a <malloc+0x70>
if(p == freep)
7d2: 00093703 ld a4,0(s2)
7d6: 853e mv a0,a5
7d8: fef719e3 bne a4,a5,7ca <malloc+0xc0>
p = sbrk(nu * sizeof(Header));
7dc: 8552 mv a0,s4
7de: 00000097 auipc ra,0x0
7e2: b5e080e7 jalr -1186(ra) # 33c <sbrk>
if(p == (char*)-1)
7e6: fd5518e3 bne a0,s5,7b6 <malloc+0xac>
return 0;
7ea: 4501 li a0,0
7ec: bf45 j 79c <malloc+0x92>
| 29.425764 | 80 | 0.461948 |
9b2a8e42345edc25ddbef367d6c0c4b986340283 | 1,829 | asm | Assembly | install/ientry.asm | DigitalMars/optlink | 493de158282046641ef2a3a60a88e25e26d88ec4 | [
"BSL-1.0"
] | 28 | 2015-02-03T01:38:24.000Z | 2022-03-23T05:48:24.000Z | install/ientry.asm | DigitalMars/optlink | 493de158282046641ef2a3a60a88e25e26d88ec4 | [
"BSL-1.0"
] | 20 | 2015-01-02T14:51:20.000Z | 2021-01-09T21:37:19.000Z | install/ientry.asm | DigitalMars/optlink | 493de158282046641ef2a3a60a88e25e26d88ec4 | [
"BSL-1.0"
] | 9 | 2015-02-11T17:43:56.000Z | 2019-09-05T11:07:02.000Z | TITLE ENTRY - Copyright (C) 1994 SLR Systems
INCLUDE MACROS
INCLUDE SEGMSYMS
if fg_segm
PUBLIC INSTALL_ENTRY
.DATA
EXTERNDEF ENTRY_STUFF:ALLOCS_STRUCT,ENTRY_GARRAY:STD_PTR_S
.CODE PASS2_TEXT
EXTERNDEF COMMON_INST_INIT:PROC,ENTRY_POOL_GET:PROC
INIT_ENTRY PROC
;
;
;
MOV EAX,OFF ENTRY_STUFF
CALL COMMON_INST_INIT
MOV EBX,ENTRY_STUFF.ALLO_HASH_TABLE_PTR
MOV EAX,EDI
JMP IE_1
INIT_ENTRY ENDP
INSTALL_ENTRY PROC
;
;DL:AX IS ITEM TO STORE... SEGMENT:OFFSET
;CX IS ORDINAL #
;
;NOW TRASHES SI...
;
PUSHM EDI,ESI
PUSHM EBX,ECX
AND EDX,0FFH
MOV EDI,EAX ;DI=OFFSET
MOV ECX,EDX ;CX=SEGMENT
MOV EBX,ENTRY_STUFF.ALLO_HASH_TABLE_PTR
TEST EBX,EBX
JZ INIT_ENTRY
IE_1::
HASHDIV ENTRY_STUFF.ALLO_HASH
MOV EAX,DPTR [EBX+EDX*4]
LEA EBX,[EBX+EDX*4 - ENTRY_STRUCT._ENTRY_NEXT_HASH_GINDEX]
NAME_NEXT:
TEST EAX,EAX
JZ DO1
MOV EDX,EAX
CONVERT EAX,EAX,ENTRY_GARRAY
ASSUME EAX:PTR ENTRY_STRUCT
MOV EBX,EAX
ASSUME EBX:PTR ENTRY_STRUCT
;
;IS IT A MATCH?
;
MOV ESI,[EAX]._ENTRY_OFFSET
MOV EAX,[EAX]._ENTRY_NEXT_HASH_GINDEX
CMP ESI,EDI
JNZ NAME_NEXT
CMP [EBX]._ENTRY_SEGMENT,ECX
JNZ NAME_NEXT
POP EAX
MOV ECX,[EBX]._ENTRY_ORD
TEST ECX,ECX
JNZ L8$
MOV [EBX]._ENTRY_ORD,EAX
L8$:
CMP ESP,-1
MOV EAX,EDX
POP EBX
POPM ESI,EDI
RET
DO1:
;
;DS:BX GETS POINTER
;
;DI:CX...
;
MOV EDX,EDI
MOV EAX,SIZE ENTRY_STRUCT
CALL ENTRY_POOL_GET
MOV EDI,EBX
MOV EBX,EAX
INSTALL_POINTER_GINDEX ENTRY_GARRAY
MOV [EDI].ENTRY_STRUCT._ENTRY_NEXT_HASH_GINDEX,EAX
XOR EDI,EDI
MOV [EBX]._ENTRY_OFFSET,EDX
MOV [EBX]._ENTRY_NEXT_HASH_GINDEX,EDI
POP EDX
MOV [EBX]._ENTRY_SEGMENT,ECX
MOV [EBX]._ENTRY_ORD,EDX
POP EBX
POPM ESI,EDI
RET ;CARRY MUST BE CLEAR
INSTALL_ENTRY ENDP
endif
END
| 13.548148 | 60 | 0.704757 |
00dd6e1b0ddbbd1f87f4320c8a8c4abcb4a6dd59 | 2,342 | asm | Assembly | programs/oeis/236/A236770.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/236/A236770.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/236/A236770.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A236770: a(n) = n*(n + 1)*(3*n^2 + 3*n - 2)/8.
; 0,1,12,51,145,330,651,1162,1926,3015,4510,6501,9087,12376,16485,21540,27676,35037,43776,54055,66045,79926,95887,114126,134850,158275,184626,214137,247051,283620,324105,368776,417912,471801,530740,595035,665001,740962,823251,912210,1008190,1111551,1222662,1341901,1469655,1606320,1752301,1908012,2073876,2250325,2437800,2636751,2847637,3070926,3307095,3556630,3820026,4097787,4390426,4698465,5022435,5362876,5720337,6095376,6488560,6900465,7331676,7782787,8254401,8747130,9261595,9798426,10358262,10941751,11549550,12182325,12840751,13525512,14237301,14976820,15744780,16541901,17368912,18226551,19115565,20036710,20990751,21978462,23000626,24058035,25151490,26281801,27449787,28656276,29902105,31188120,32515176,33884137,35295876,36751275,38251225,39796626,41388387,43027426,44714670,46451055,48237526,50075037,51964551,53907040,55903485,57954876,60062212,62226501,64448760,66730015,69071301,71473662,73938151,76465830,79057770,81715051,84438762,87230001,90089875,93019500,96020001,99092512,102238176,105458145,108753580,112125651,115575537,119104426,122713515,126404010,130177126,134034087,137976126,142004485,146120415,150325176,154620037,159006276,163485180,168058045,172726176,177490887,182353501,187315350,192377775,197542126,202809762,208182051,213660370,219246105,224940651,230745412,236661801,242691240,248835160,255095001,261472212,267968251,274584585,281322690,288184051,295170162,302282526,309522655,316892070,324392301,332024887,339791376,347693325,355732300,363909876,372227637,380687176,389290095,398038005,406932526,415975287,425167926,434512090,444009435,453661626,463470337,473437251,483564060,493852465,504304176,514920912,525704401,536656380,547778595,559072801,570540762,582184251,594005050,606004950,618185751,630549262,643097301,655831695,668754280,681866901,695171412,708669676,722363565,736254960,750345751,764637837,779133126,793833535,808740990,823857426,839184787,854725026,870480105,886451995,902642676,919054137,935688376,952547400,969633225,986947876,1004493387,1022271801,1040285170,1058535555,1077025026,1095755662,1114729551,1133948790,1153415485,1173131751,1193099712,1213321501,1233799260,1254535140,1275531301,1296789912,1318313151,1340103205,1362162270,1384492551,1407096262,1429975626,1453132875
mov $1,$0
bin $0,2
add $1,$0
mul $1,3
bin $1,2
div $1,3
| 234.2 | 2,235 | 0.868061 |
cf77ae30a83a7d72d6dd5d90d0f3d93bb8dd3493 | 1,663 | asm | Assembly | programs/oeis/135/A135704.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/135/A135704.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/135/A135704.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A135704: a(n) = 7*n^2 + 4*n + 1.
; 4,1,12,37,76,129,196,277,372,481,604,741,892,1057,1236,1429,1636,1857,2092,2341,2604,2881,3172,3477,3796,4129,4476,4837,5212,5601,6004,6421,6852,7297,7756,8229,8716,9217,9732,10261,10804,11361,11932,12517,13116,13729,14356,14997,15652,16321,17004,17701,18412,19137,19876,20629,21396,22177,22972,23781,24604,25441,26292,27157,28036,28929,29836,30757,31692,32641,33604,34581,35572,36577,37596,38629,39676,40737,41812,42901,44004,45121,46252,47397,48556,49729,50916,52117,53332,54561,55804,57061,58332,59617,60916,62229,63556,64897,66252,67621,69004,70401,71812,73237,74676,76129,77596,79077,80572,82081,83604,85141,86692,88257,89836,91429,93036,94657,96292,97941,99604,101281,102972,104677,106396,108129,109876,111637,113412,115201,117004,118821,120652,122497,124356,126229,128116,130017,131932,133861,135804,137761,139732,141717,143716,145729,147756,149797,151852,153921,156004,158101,160212,162337,164476,166629,168796,170977,173172,175381,177604,179841,182092,184357,186636,188929,191236,193557,195892,198241,200604,202981,205372,207777,210196,212629,215076,217537,220012,222501,225004,227521,230052,232597,235156,237729,240316,242917,245532,248161,250804,253461,256132,258817,261516,264229,266956,269697,272452,275221,278004,280801,283612,286437,289276,292129,294996,297877,300772,303681,306604,309541,312492,315457,318436,321429,324436,327457,330492,333541,336604,339681,342772,345877,348996,352129,355276,358437,361612,364801,368004,371221,374452,377697,380956,384229,387516,390817,394132,397461,400804,404161,407532,410917,414316,417729,421156,424597,428052,431521
mul $0,7
sub $0,5
pow $0,2
mov $1,$0
div $1,7
add $1,1
| 166.3 | 1,571 | 0.820806 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.