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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
09a1dabb020b0ee8dfeb51659b2eee207fb2e122 | 11,735 | asm | Assembly | Library/Kernel/Disk/diskTable.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Library/Kernel/Disk/diskTable.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Library/Kernel/Disk/diskTable.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 73 | 2018-11-19T20:46:53.000Z | 2022-03-29T00:59:26.000Z | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1990 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Disk tracking -- Table Management
FILE: diskTable.asm
AUTHOR: Adam de Boor, Feb 19, 1990
ROUTINES:
Name Description
---- -----------
DiskTblSearch Look for a handle by disk id and do something
to it when it's found, returning the handle
itself
DiskTblSearchByName Look for a handle by volume name and return it
DiskTblAddEntry Add a handle to the disk table
DiskTblEnum Enumerate all known disk volumes
DiskTblEntryToFront Callback routine for DiskTblSearch if entry
should be brought to the front when it's been
found
REVISION HISTORY:
Name Date Description
---- ---- -----------
Adam 2/19/90 Initial revision
DESCRIPTION:
Functions for manipulating/maintaining the disk handle table
REGISTER USAGE:
ds - idata segment
es - seg addr of table
di - offset to a disk handle entry
$Id: diskTable.asm,v 1.1 97/04/05 01:11:05 newdeal Exp $
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
COMMENT @-----------------------------------------------------------------------
FUNCTION: DiskTblEntryToFront
DESCRIPTION: Makes the given disk handle entry the first in the table.
This has the benefit of reducing search times for often-used
handles.
CALLED BY: INTERNAL (DiskRegister via DiskTblSearch, DiskTblAddEntry)
PASS: es - seg addr of table
di - offset of handle to move to the front
RETURN: di - offset to first entry where target now resides
DESTROYED: nothing
REGISTER/STACK USAGE:
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/CAVEATS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
Cheng 9/89 Initial version
-------------------------------------------------------------------------------@
DiskTblEntryToFront proc near uses cx, ds, si
.enter
EC< call CheckTblAddr >
EC< call CheckTblOffset >
EC< call CheckTblStruct >
;-----------------------------------------------------------------------
;Shift handles that precede target handle down.
;Handles that follow target handle remain in place.
mov cx, di ;init num bytes to move
sub cx, DT_entries
je done ;done if target already the first entry
EC< ERROR_S DISK_ASSERTION_FAILED >
EC< test cx, 1 >
EC< ERROR_NZ DISK_ASSERTION_FAILED >
segmov ds, es
push ds:[di] ;save target handle
lea si, ds:[di-2] ;set up source to overwrite target
shr cx, 1 ;convert to num words
std ;get rep instr to decrement
rep movsw
cld ;reset direction flag
pop ds:[di] ;put target at first entry location
done:
EC< call CheckTblAddr >
EC< call CheckTblStruct >
.leave
ret
DiskTblEntryToFront endp
COMMENT @-----------------------------------------------------------------------
FUNCTION: DiskTblAddEntry
DESCRIPTION: Add the given disk handle to the disk-handle table.
The disk handle is made the first entry as part of LRU
maintenance.
If the table runs out of space, more memory is
allocated.
CALLED BY: INTERNAL (DiskRegister)
PASS: bx - disk handle
RETURN: di - table offset to handle entry
DESTROYED: nothing
REGISTER/STACK USAGE:
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/CAVEATS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
Cheng 9/89 Initial version
-------------------------------------------------------------------------------@
DiskTblAddEntry proc near uses si, ax, cx, ds, es
.enter
EC< call AssertDiskHandle >
;
; Lock down the handle table
;
LoadVarSeg ds
mov si, ds:diskTblHan
xchg bx, si
call NearLockES
xchg bx, si
;
; Make sure there's enough room in the table to hold this new entry.
;
mov ax, es:[TH_size]
mov di, es:[TH_nextAvail]
cmp di, ax
jb enoughSpace
EC< ERROR_NZ BAD_DISK_HAN_TBL >
;
; Not enough room. Enlarge the table by the requisite amount.
;
add ax, DISK_TBL_NUM_INC * size hptr
mov es:[TH_size], ax
xchg bx, si
mov ch, mask HAF_ZERO_INIT or mask HAF_NO_ERR
call MemReAlloc ; returns ax = segment since block
; already locked.
mov es, ax
xchg bx, si
enoughSpace:
;
; Store the handle at the end (easiest)
;
xchg ax, bx
stosw
mov es:[TH_nextAvail], di
xchg ax, bx ; (1-byte inst)
;
; Point di back at the handle's entry and move it to the front of
; the whole thing.
;
dec di
dec di
call DiskTblEntryToFront
EC< call CheckTblStruct >
xchg bx, si
call NearUnlock
xchg bx, si
.leave
ret
DiskTblAddEntry endp
COMMENT @-----------------------------------------------------------------------
FUNCTION: DiskTblSearch
DESCRIPTION: Searches the disk handle table to see if any of the
disk handles contain the given disk identifier,
optionally calling a routine in this file once the entry
is found (usually DiskTblEntryToFront).
CALLED BY: INTERNAL (DiskRegister)
PASS: ds - idata seg
dx:di - disk id
ax - offset of routine to call if entry found (0 if none)
RETURN: carry clear if successful:
bx - disk handle
di - offset from table to disk handle entry
else
dx:di = disk id
DESTROYED: nothing
REGISTER/STACK USAGE:
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/CAVEATS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
Cheng 9/89 Initial version
-------------------------------------------------------------------------------@
DiskTblSearch proc near uses dx, si, bp, es
.enter
EC< call AssertDSKdata >
push ax ; save routine to call
mov bx, ds:diskTblHan
call NearLockES
EC< call CheckTblStruct >
andnf dx, mask DIDH_ID_HIGH or mask DIDH_DRIVE;isolate disk id an
; drive bits
push bx ; save table handle
mov bp, es:[TH_nextAvail] ; bp <- address for search termination
mov si, offset DT_entries
scanLoop:
lodsw es: ;fetch next handle and advance pointer
cmp bp, si ;hit the end?
jb notFound ;yes -- carry already set
xchg ax, bx ;bx <- handle (1-byte inst)
cmp di, ds:[bx].HD_idLow ; low bits match?
jne scanLoop
mov al, ds:[bx].HD_idHigh
andnf al, not mask DIDH_WRITABLE
cmp dl, al
jne scanLoop
lea di, [si-2] ;return entry in di. si has gone
; beyond the one we want, however
notFound:
pop si ;recover table handle
pop ax ; and routine to call
jc unlock ;not found => don't call
tst ax
jz unlock ;0 => don't call
call ax ;call routine before unlocking
unlock:
FastUnLock ds, si, ax, NO_NULL_SEG
.leave
ret
DiskTblSearch endp
COMMENT @-----------------------------------------------------------------------
FUNCTION: DiskTblEnum
DESCRIPTION: Enumerate all the entries for removable disks in the disk table
into a single buffer of DiskEnumStrucs.
CALLED BY: INTERNAL (DiskEnum)
PASS: cx - number of entries available in DiskEnumStruct buffer
es:di - addr of next available DiskEnumStruct entry
ds - idata
RETURN: bx - number of entries stored
DESTROYED: ax, si
REGISTER/STACK USAGE:
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/CAVEATS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
Cheng 2/90 Initial version
-------------------------------------------------------------------------------@
DiskTblEnum proc near
uses ds, cx, si, ax, bp, di
.enter
;
; Lock down the disk handle for our perusal
;
mov bx, ds:diskTblHan
call NearLockDS
push bx ;save block handle
;
; Figure how many of the entries we've got will fit in the
; caller's buffer.
;
mov ax, ds:[TH_nextAvail]
sub ax, size TableHeader ;ax <- offset from nextAvail
shr ax
sub cx, ax
jge ok ;all will fit
add ax, cx ;reduce number to store to
; match number that fit
ok:
xchg ax, cx ;(1-byte inst)
clr bp ; none processed yet
jcxz done ;weirdo
mov si, size TableHeader
processLoop:
lodsw
stosw ;DES_diskHandle
xchg ax, bx ;bx <- handle (1-byte inst)
call DiskGetDrive ;al <- drive number
stosb ;DES_driveNum
call DriveGetStatus
andnf ah, mask DS_TYPE
mov al, ah
stosb ;DES_driveType
call DiskHandleGetVolumeName
add di, size DES_volumeName
clr al
stosb ;DES_flags
inc bp ;another one bites the dust
loop processLoop
done:
pop bx ;retrieve handle
call NearUnlock
mov bx, bp ;return number processed
.leave
ret
DiskTblEnum endp
COMMENT @-----------------------------------------------------------------------
FUNCTION: DiskTblSearchByName
DESCRIPTION: Tries to find a volume name match in a disk handle
given a handle to a disk handle table.
CALLED BY: INTERNAL (DiskVolumeNameGetDiskHandle)
PASS: di - offset into table from which to start searching
ds:si - null terminated volume name to match
RETURN: carry clear if found
bx - handle found
di - offset into table beyond matching entry so another
call to this function to find the next match can
yield a resonable result
DESTROYED: ax
REGISTER/STACK USAGE:
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/CAVEATS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
Cheng 2/90 Initial version
-------------------------------------------------------------------------------@
DiskTblSearchByName proc near uses ax,bp,es
.enter
push ds
LoadVarSeg ds, bp ;bp <- idata
mov bx, ds:diskTblHan
FastLock1 ds, bx, ax, DTSBN1, DTSBN2
pop ds
mov es, ax ;es <- seg addr of table
scanLoop:
inc di ; Advance past the entry
inc di
cmp es:[TH_nextAvail], di
jb done
call CheckVolumeNameMatch
jc scanLoop
done:
push es:[di-2] ; save the disk handle to return
push ds
mov ds, bp ;ds <- idata
FastUnLock ds, bx, ax, NO_NULL_SEG
pop ds
pop bx
.leave
ret
FastLock2 ds, bx, ax, DTSBN1, DTSBN2
DiskTblSearchByName endp
COMMENT @-----------------------------------------------------------------------
FUNCTION: CheckVolumeNameMatch
DESCRIPTION: Utility routine used by DiskTblSearchByName to compare the
sought volume name against that for the handle, dealing with
space-padding and so forth.
CALLED BY: INTERNAL (DiskTblSearchByName)
PASS: es:[di-2] - address containing disk handle
ds:si - null-terminated string against which to compare it
bp - idata seg
RETURN: carry clear if match
set if not
DESTROYED: nothing
REGISTER/STACK USAGE:
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/CAVEATS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
Cheng 2/90 Initial version
-------------------------------------------------------------------------------@
CheckVolumeNameMatch proc near
call PushAll
mov di, es:[di-2] ;di <- disk handle
mov es, bp ;es <- idata
add di, HD_volumeLabel ;es:di <- volume name for this disk
mov cx, MSDOS_VOLUME_LABEL_LENGTH
repe cmpsb
je done ; yup -- matched the whole way through
; (carry cleared by = comparison)
tst {byte}ds:[si-1] ; make sure source mismatched due to
; null-terminator
jz confirm ; yes -- go make sure rest is padding
noMatch:
stc
done:
call PopAll
ret
confirm:
;
; Make sure the rest of the chars in the disk handle's volumeLabel are
; just padding spaces.
;
mov al, ' '
repe scasb
je done ; made it to the end, so yes...
jmp noMatch
CheckVolumeNameMatch endp
| 23.94898 | 81 | 0.611589 |
93f562927435afcb0cdd723a12585cd473ca505f | 388 | asm | Assembly | oeis/185/A185059.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/185/A185059.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/185/A185059.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A185059: a(n) = A010815(7*n).
; Submitted by Jamie Morken(w2)
; 1,1,0,0,0,-1,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,0,0,0
mul $0,7
seq $0,116916 ; Expansion of q^(-1/8) * (eta(q)^3 + 3 * eta(q^9)^3) in powers of q^3.
mod $0,3
dif $0,-2
| 43.111111 | 208 | 0.528351 |
f265847d26f10dda4cf232e8d949c5f48d57efa8 | 1,369 | asm | Assembly | uw1/eop-toggleMouseLook.asm | JohnGlassmyer/UltimaHacks | f9a114e00c4a1edf1ac7792b465feff2c9b88ced | [
"MIT"
] | 68 | 2018-03-04T22:34:22.000Z | 2022-03-10T15:18:32.000Z | uw1/eop-toggleMouseLook.asm | ptrie/UltimaHacks | 2c3557a86d94ad8b54b26bc395b9aed1604f8be1 | [
"MIT"
] | 19 | 2018-11-20T04:06:49.000Z | 2021-11-08T16:37:10.000Z | uw1/eop-toggleMouseLook.asm | ptrie/UltimaHacks | 2c3557a86d94ad8b54b26bc395b9aed1604f8be1 | [
"MIT"
] | 4 | 2020-09-01T17:57:36.000Z | 2022-01-04T20:51:11.000Z | %ifndef EXE_LENGTH
%include "../UltimaPatcher.asm"
%include "include/uw1.asm"
%include "include/uw1-eop.asm"
%endif
[bits 16]
startPatch EXE_LENGTH, \
expanded overlay procedure: toggleMouseLook
startBlockAt addr_eop_toggleMouseLook
push bp
mov bp, sp
; bp-based stack frame:
%assign ____callerIp 0x02
%assign ____callerBp 0x00
%assign var_string -0x20
add sp, var_string
push si
push di
cmp byte [dseg_isMouseLookEnabled], 0
jz enableMouseLook
disableMouseLook:
push 0
call calcJump(off_eop_setMouseLookState)
add sp, 2
mov ax, offsetInCodeSegment(mouseLookDisabledString)
jmp printString
enableMouseLook:
push 1
call calcJump(off_eop_setMouseLookState)
add sp, 2
mov ax, offsetInCodeSegment(mouseLookEnabledString)
printString:
mov byte [bp+var_string], 0
push cs
push ax
push ss
lea ax, [bp+var_string]
push ax
callFromOverlay strcat_far
add sp, 8
push ss
lea ax, [bp+var_string]
push ax
callFromOverlay printStringToScroll
add sp, 4
endProc:
pop di
pop si
mov sp, bp
pop bp
retn
mouseLookEnabledString:
db "Mouse look enabled.", `\n`, 0
mouseLookDisabledString:
db "Mouse look disabled.", `\n`, 0
endBlockAt off_eop_toggleMouseLook_end
endPatch
| 17.779221 | 55 | 0.677137 |
3b36cdafff15c1004b810118e3fe59f3f544dee6 | 3,987 | asm | Assembly | Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_2406_1792.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_2406_1792.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_2406_1792.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %r14
push %r15
push %rbp
push %rdx
push %rsi
// Store
mov $0x161dce0000000081, %rbp
nop
nop
nop
sub %rdx, %rdx
mov $0x5152535455565758, %rsi
movq %rsi, %xmm1
movups %xmm1, (%rbp)
dec %r10
// Faulty Load
lea addresses_WC+0x18a81, %r15
nop
nop
nop
nop
add $47714, %r12
mov (%r15), %bp
lea oracles, %r12
and $0xff, %rbp
shlq $12, %rbp
mov (%r12,%rbp,1), %rbp
pop %rsi
pop %rdx
pop %rbp
pop %r15
pop %r14
pop %r12
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'congruent': 0, 'AVXalign': False, 'same': False, 'size': 16, 'NT': False, 'type': 'addresses_WC'}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'congruent': 9, 'AVXalign': False, 'same': False, 'size': 16, 'NT': False, 'type': 'addresses_NC'}}
[Faulty Load]
{'src': {'congruent': 0, 'AVXalign': False, 'same': True, 'size': 2, 'NT': False, 'type': 'addresses_WC'}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'00': 2406}
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
*/
| 68.741379 | 2,999 | 0.662403 |
48753cf2ccc510c35694877094c24859c945d5d2 | 1,702 | asm | Assembly | programs/oeis/175/A175822.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/175/A175822.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/175/A175822.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A175822: Partial sums of ceiling(n^2/7).
; 0,1,2,4,7,11,17,24,34,46,61,79,100,125,153,186,223,265,312,364,422,485,555,631,714,804,901,1006,1118,1239,1368,1506,1653,1809,1975,2150,2336,2532,2739,2957,3186,3427,3679,3944,4221,4511,4814,5130,5460,5803,6161,6533,6920,7322,7739,8172,8620,9085,9566,10064,10579,11111,11661,12228,12814,13418,14041,14683,15344,16025,16725,17446,18187,18949,19732,20536,21362,22209,23079,23971,24886,25824,26785,27770,28778,29811,30868,31950,33057,34189,35347,36530,37740,38976,40239,41529,42846,44191,45563,46964,48393,49851,51338,52854,54400,55975,57581,59217,60884,62582,64311,66072,67864,69689,71546,73436,75359,77315,79305,81328,83386,85478,87605,89767,91964,94197,96465,98770,101111,103489,105904,108356,110846,113373,115939,118543,121186,123868,126589,129350,132150,134991,137872,140794,143757,146761,149807,152894,156024,159196,162411,165669,168970,172315,175703,179136,182613,186135,189702,193314,196972,200675,204425,208221,212064,215954,219891,223876,227908,231989,236118,240296,244523,248799,253125,257500,261926,266402,270929,275507,280136,284817,289549,294334,299171,304061,309004,314000,319050,324153,329311,334523,339790,345112,350489,355922,361410,366955,372556,378214,383929,389701,395531,401418,407364,413368,419431,425553,431734,437975,444275,450636,457057,463539,470082,476686,483352,490079,496869,503721,510636,517614,524655,531760,538928,546161,553458,560820,568247,575739,583297,590920,598610,606366,614189,622079,630036,638061,646153,654314,662543,670841,679208,687644,696150,704725,713371,722087,730874,739732
mov $2,$0
mov $3,$0
lpb $2,1
mov $0,$3
sub $2,1
sub $0,$2
mov $5,$0
pow $5,2
mov $4,$5
add $4,6
div $4,7
add $1,$4
lpe
| 100.117647 | 1,520 | 0.800235 |
5bb5177dcfe651f0d02f05845e7e42989823ff27 | 2,956 | asm | Assembly | programs/oeis/269/A269777.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/269/A269777.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/269/A269777.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A269777: Number of length-5 0..n arrays with every repeated value unequal to the previous repeated value plus one mod n+1.
; 24,222,984,3060,7680,16674,32592,58824,99720,160710,248424,370812,537264,758730,1047840,1419024,1888632,2475054,3198840,4082820,5152224,6434802,7960944,9763800,11879400,14346774,17208072,20508684,24297360,28626330,33551424,39132192,45432024,52518270,60462360,69339924,79230912,90219714,102395280,115851240,130686024,147002982,164910504,184522140,205956720,229338474,254797152,282468144,312492600,345017550,380196024,418187172,459156384,503275410,550722480,601682424,656346792,714913974,777589320,844585260,916121424,992424762,1073729664,1160278080,1252319640,1350111774,1453919832,1564017204,1680685440,1804214370,1934902224,2073055752,2218990344,2373030150,2535508200,2706766524,2887156272,3077037834,3276780960,3486764880,3707378424,3939020142,4182098424,4437031620,4704248160,4984186674,5277296112,5584035864,5904875880,6240296790,6590790024,6956857932,7339013904,7737782490,8153699520,8587312224,9039179352,9509871294,9999970200,10510070100,11040777024,11592709122,12166496784,12762782760,13382222280,14025483174,14693245992,15386204124,16105063920,16850544810,17623379424,18424313712,19254107064,20113532430,21003376440,21924439524,22877536032,23863494354,24883157040,25937380920,27027037224,28153011702,29316204744,30517531500,31757922000,33038321274,34359689472,35723001984,37129249560,38579438430,40074590424,41615743092,43203949824,44840279970,46525818960,48261668424,50048946312,51888787014,53782341480,55730777340,57735279024,59797047882,61917302304,64097277840,66338227320,68641420974,71008146552,73439709444,75937432800,78502657650,81136743024,83841066072,86617022184,89466025110,92389507080,95388918924,98465730192,101621429274,104857523520,108175539360,111577022424,115063537662,118636669464,122298021780,126049218240,129891902274,133827737232,137858406504,141985613640,146211082470,150536557224,154963802652,159494604144,164130767850,168874120800,173726511024,178689807672,183765901134,188956703160,194264146980,199690187424,205236801042,210905986224,216699763320,222620174760,228669285174,234849181512,241161973164,247609792080,254194792890,260919153024,267785072832,274794775704,281950508190,289254540120,296709164724,304316698752,312079482594,319999880400,328080280200,336323094024,344730758022,353305732584,362050502460,370967576880,380059489674,389328799392,398778089424,408409968120,418227068910
mov $1,24
mov $2,70
mov $5,$0
mov $6,$0
lpb $2,1
add $1,$5
sub $2,1
lpe
mov $3,$6
lpb $3,1
sub $3,1
add $4,$5
lpe
mov $2,77
mov $5,$4
lpb $2,1
add $1,$5
sub $2,1
lpe
mov $3,$6
mov $4,0
lpb $3,1
sub $3,1
add $4,$5
lpe
mov $2,40
mov $5,$4
lpb $2,1
add $1,$5
sub $2,1
lpe
mov $3,$6
mov $4,0
lpb $3,1
sub $3,1
add $4,$5
lpe
mov $2,10
mov $5,$4
lpb $2,1
add $1,$5
sub $2,1
lpe
mov $3,$6
mov $4,0
lpb $3,1
sub $3,1
add $4,$5
lpe
mov $2,1
mov $5,$4
lpb $2,1
add $1,$5
sub $2,1
lpe
| 50.101695 | 2,319 | 0.834574 |
3049617127a1ac472ddd5917a2a89e3e9eef7ff0 | 181 | asm | Assembly | programs/oeis/092/A092596.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/092/A092596.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/092/A092596.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A092596: Natural numbers n for which sum of decimal digits is greater than n/2.
; 1,2,3,4,5,6,7,8,9,19
mov $1,$0
lpb $1
mov $1,$0
mul $0,2
div $1,3
sub $1,3
lpe
add $0,1
| 15.083333 | 81 | 0.61326 |
94c208c177e74eeb5245d16962785e79dd0434e2 | 4,574 | asm | Assembly | M328_ADC_Recorder.asm | harrimand/M328_PCI_FUNselect | 9aa57717d43aa365613aeffc84ddc8839c0c4891 | [
"MIT"
] | null | null | null | M328_ADC_Recorder.asm | harrimand/M328_PCI_FUNselect | 9aa57717d43aa365613aeffc84ddc8839c0c4891 | [
"MIT"
] | null | null | null | M328_ADC_Recorder.asm | harrimand/M328_PCI_FUNselect | 9aa57717d43aa365613aeffc84ddc8839c0c4891 | [
"MIT"
] | null | null | null | ;M328 ADC Recorder
.nolist
.include "m328pdef.inc"
.list
.def TEMP = R16
.def ADCin = R24
.def ButtonInput = R18
.def DBcount = R17
.equ SamplePer = 48
.equ ADCwriteAdd = SRAM_START + $10
.equ ADCreadAdd = SRAM_START + $12
.equ ADCtable = SRAM_START + $20
.equ ADCtableEnd = $07FF
.equ PWmin = 800
.ORG $0000
rjmp RESET
.ORG INT0addr
rjmp Record
.ORG INT1addr
rjmp Play
.ORG OC0Aaddr
reti
.ORG OVF0addr
rjmp PlayNextValue
.ORG ADCCaddr
rjmp ADCcomplete
.ORG INT_VECTORS_SIZE
RESET:
ldi TEMP, high(RAMEND)
out SPH, TEMP
ldi TEMP, low(RAMEND)
out SPL, TEMP
ldi YH, high(ADCwriteAdd)
ldi YL, low(ADCwriteAdd)
ldi TEMP, low(ADCtable)
st Y+, TEMP
ldi TEMP, high(ADCtable)
st Y, TEMP
sbi DDRB, PB0 ;Record Indicator
sbi PORTD, PD2 ;INT0 Record Start/Stop
sbi PORTD, PD3 ;INT1 Play Start/Stop
ldi TEMP, (1<<ISC11)|(1<<ISC01)
sts EICRA, TEMP
sbi EIMSK, INT0
sbi EIMSK, INT1
ldi TEMP, (1<<REFS1)|(1<<ADLAR)
sts ADMUX, TEMP
ldi TEMP, (1<<ADTS1)|(1<<ADTS0)
sts ADCSRB, TEMP
; ldi TEMP, (1<<ADEN)|(1<<ADATE)|(1<<ADIE)|(1<<ADPS1)|(1<<ADPS0)
; sts ADCSRA, TEMP
ldi TEMP, SamplePer
out OCR0A, TEMP
ldi TEMP, (1<<WGM02)|(1<<WGM01)|(1<<WGM00)
out TCCR0A, TEMP
ldi TEMP, (1<<OCIE0A)|(0<<TOIE0)
sts TIMSK0, TEMP
; ldi TEMP, (1<<WGM02)|(1<<CS02)|(0<<CS01)|(1<<CS00)
; out TCCR0B, TEMP
sei
MAIN:
nop
nop
nop
nop
rjmp MAIN
;------------------------------------------------------------------------------
ADCcomplete: ;ADC Start triggered by TO Overflow OCR0A = TOP
lds ADCin, ADCH
ldi YH, high(ADCwriteAdd)
ldi YL, low(ADCwriteAdd)
ld XL, Y+
ld XH, Y
ldi TEMP, low(ADCtableEnd)
cp XL, TEMP
ldi TEMP, high(ADCtableEnd)
cpc XH, TEMP
breq RecordFull
andi XH, $07
st X+, ADCin
st Y, XH
st -Y, XL
nop
reti
RecordFull:
clr TEMP
out TCCR0B, TEMP ;Stop T0
ldi TEMP, (0<<ADEN)|(0<<ADATE)|(0<<ADIE)|(1<<ADPS1)|(1<<ADPS0)
sts ADCSRA, TEMP ;Stop ADC
ldi YH, high(ADCwriteAdd)
ldi YL, low(ADCwriteAdd)
ldi TEMP, low(ADCtable)
st Y+, TEMP
ldi TEMP, high(ADCtable)
st Y, TEMP ;Reset ADCwriteAdd to ADCtable begin
reti
;------------------------------------------------------------------------------
Record: ;INT0 isr Enable ADC and start T0
rcall DBint
sbic GPIOR0, 0
rjmp StopRecord
ldi TEMP, (1<<ADEN)|(1<<ADATE)|(1<<ADIE)|(1<<ADPS1)|(1<<ADPS0)
sts ADCSRA, TEMP
ldi TEMP, (1<<WGM02)|(1<<CS02)|(0<<CS01)|(1<<CS00)
out TCCR0B, TEMP
sbi PORTB, PB0 ;Record Indicator On
sbi GPIOR0, 0
reti
StopRecord:
clr TEMP
out TCCR0B, TEMP ;Stop T0
cbi PORTB, PB0 ;Record Indicator Off
cbi GPIOR0, 0
reti
;------------------------------------------------------------------------------
;Get ADC data table index stored in SRAM at ADCreadAdd
;Enable OVF0 interrupt and Start T0
Play: ;INT1 isr
rcall DBint
sbic GPIOR0, 1
rjmp StopPlay
lds XH, high(ADCreadAdd)
lds XL, low(ADCreadAdd)
lds YH, high(ADCwriteAdd)
lds YL, low(ADCwriteAdd)
cp YL, XL
cpc YH, XH
breq StopPlay
ldi TEMP, low(ADCtableEnd)
cp XL, TEMP
ldi TEMP, high(ADCtableEnd)
cpc XH, TEMP
breq StopPlay
cbi EIMSK, INT0
ldi TEMP, (1<<TOIE0)
sts TIMSK0, TEMP
ldi TEMP, (1<<WGM02)|(1<<CS02)|(0<<CS01)|(1<<CS00)
out TCCR0B, TEMP
sbi GPIOR0, 1
reti
StopPlay:
;Enable OCIE1A OCIE1A function stops T1 clock after OC1A Pin goes Low
; and disables OCIE1A for one time event.
;Stop T0 clock
lds YH, high(ADCreadAdd)
lds YL, low(ADCreadAdd)
sbi EIMSK, INT0
reti
;------------------------------------------------------------------------------
;Check if at end of written data or end of table
;Read ADC Data, Multiply by 6 and output to OCR1A
PlayNextValue:
;TODO Read values and write to OCR1A
ld ADCin, X+
ldi TEMP, $06
mul ADCin, TEMP
ldi TEMP, low(PWmin)
add R0, TEMP
ldi TEMP, high(PWmin)
adc R1, TEMP
sts OCR1AH, R1
sts OCR1AL, R0
reti
;------------------------------------------------------------------------------
DBint:
ldi DBcount, $50
in ButtonInput, PIND
andi ButtonInput, $C0
NextRead:
in TEMP, PIND
andi TEMP, $C0
cp TEMP, ButtonInput
brne DBint
dec DBcount
brne NextRead
sbi EIFR, INTF0
ret
| 20.981651 | 80 | 0.55422 |
efa020b89767ff755b81583c9d039ce87b4e6584 | 5,846 | asm | Assembly | Transynther/x86/_processed/AVXALIGN/_zr_/i7-8650U_0xd2_notsx.log_7136_1176.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/AVXALIGN/_zr_/i7-8650U_0xd2_notsx.log_7136_1176.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/AVXALIGN/_zr_/i7-8650U_0xd2_notsx.log_7136_1176.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 %r13
push %r14
push %r15
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x19ac3, %r15
nop
nop
nop
add %r14, %r14
mov $0x6162636465666768, %r11
movq %r11, %xmm1
vmovups %ymm1, (%r15)
nop
nop
cmp %r12, %r12
lea addresses_A_ht+0x19cb1, %rsi
lea addresses_D_ht+0x181b1, %rdi
clflush (%rdi)
add $29345, %r11
mov $13, %rcx
rep movsb
cmp $37612, %rdi
lea addresses_WC_ht+0x17ca5, %r12
nop
nop
nop
nop
add %rdi, %rdi
mov $0x6162636465666768, %r15
movq %r15, %xmm6
vmovups %ymm6, (%r12)
nop
nop
nop
nop
and %r15, %r15
lea addresses_D_ht+0x9881, %rsi
lea addresses_WC_ht+0x5c99, %rdi
cmp $36893, %r13
mov $71, %rcx
rep movsb
xor $50184, %rcx
pop %rsi
pop %rdi
pop %rcx
pop %r15
pop %r14
pop %r13
pop %r12
pop %r11
ret
.global s_faulty_load
s_faulty_load:
push %r13
push %r14
push %r8
push %rbx
push %rcx
push %rdi
push %rsi
// REPMOV
lea addresses_US+0x14031, %rsi
lea addresses_WT+0x17b6f, %rdi
nop
nop
nop
nop
nop
cmp $54764, %r13
mov $11, %rcx
rep movsw
nop
nop
and %r8, %r8
// Store
lea addresses_US+0x14031, %rsi
nop
and %rbx, %rbx
mov $0x5152535455565758, %r14
movq %r14, %xmm2
vmovups %ymm2, (%rsi)
nop
nop
nop
nop
nop
inc %r13
// Store
lea addresses_D+0x18ed1, %r8
nop
nop
nop
nop
nop
sub %r13, %r13
mov $0x5152535455565758, %rbx
movq %rbx, (%r8)
nop
add %r13, %r13
// Faulty Load
lea addresses_US+0x14031, %r13
nop
add %r8, %r8
movaps (%r13), %xmm1
vpextrq $1, %xmm1, %rsi
lea oracles, %rbx
and $0xff, %rsi
shlq $12, %rsi
mov (%rbx,%rsi,1), %rsi
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %r8
pop %r14
pop %r13
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_US', 'size': 2, 'AVXalign': True, 'NT': False, 'congruent': 0, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_US', 'congruent': 0, 'same': True}, 'dst': {'type': 'addresses_WT', 'congruent': 1, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_US', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
{'OP': 'STOR', 'dst': {'type': 'addresses_D', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 5, 'same': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_US', 'size': 16, 'AVXalign': True, 'NT': False, 'congruent': 0, 'same': True}}
<gen_prepare_buffer>
{'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_A_ht', 'congruent': 6, 'same': False}, 'dst': {'type': 'addresses_D_ht', 'congruent': 7, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 1, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_D_ht', 'congruent': 4, 'same': False}, 'dst': {'type': 'addresses_WC_ht', 'congruent': 3, 'same': False}}
{'00': 7136}
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 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.768707 | 2,999 | 0.659596 |
c289a666d1c41af523cee08e08aa1ab859e552e8 | 292 | asm | Assembly | test/test_alu.asm | kjkszpj/arch8 | de693867721c5b3a2093c29d359b41065099e321 | [
"MIT"
] | 1 | 2018-07-10T08:21:29.000Z | 2018-07-10T08:21:29.000Z | test/test_alu.asm | kjkszpj/arch8 | de693867721c5b3a2093c29d359b41065099e321 | [
"MIT"
] | null | null | null | test/test_alu.asm | kjkszpj/arch8 | de693867721c5b3a2093c29d359b41065099e321 | [
"MIT"
] | null | null | null | nop
nop
mov a0, #42
mov a1, #33
mov a2, #0
add a2, a0
add a2, a1
mov a2, #0
add a2, a0
sub a2, a1
mov a2, #0
add a2, a0
mov @a1, a1
mov a2, @a1
adc a2, @a1
mov a2, #0
add a2, a0
asr a2
mov a2, #0
add a2, a0
or a2, #10
st a2, 7E20h
inc 7E20h
ld a2, 7E20h
| 9.125 | 13 | 0.537671 |
51329aca744eee5bc85074c6c3ab3dab28a2a119 | 693 | asm | Assembly | oeis/024/A024495.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/024/A024495.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/024/A024495.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A024495: a(n) = C(n,2) + C(n,5) + ... + C(n, 3*floor(n/3)+2).
; Submitted by Jon Maiga
; 0,0,1,3,6,11,21,42,85,171,342,683,1365,2730,5461,10923,21846,43691,87381,174762,349525,699051,1398102,2796203,5592405,11184810,22369621,44739243,89478486,178956971,357913941,715827882,1431655765,2863311531,5726623062,11453246123,22906492245,45812984490,91625968981,183251937963,366503875926,733007751851,1466015503701,2932031007402,5864062014805,11728124029611,23456248059222,46912496118443,93824992236885,187649984473770,375299968947541,750599937895083,1501199875790166,3002399751580331
mov $2,1
lpb $0
sub $0,1
add $3,$1
mov $4,$2
add $2,$1
mov $1,$3
add $5,$4
mov $3,$5
lpe
mov $0,$1
| 43.3125 | 489 | 0.766234 |
6958b79b74c5013d39b8a63d24e037f4d6df3f3a | 577 | asm | Assembly | oeis/188/A188938.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/188/A188938.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/188/A188938.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A188938: Decimal expansion of (7-sqrt(33))/4.
; Submitted by Jamie Morken
; 3,1,3,8,5,9,3,3,8,3,6,5,4,9,2,8,3,5,0,3,7,3,4,7,1,3,2,9,4,5,2,6,7,6,7,0,4,4,4,9,3,3,8,8,5,5,0,4,3,0,1,9,0,8,0,7,5,0,3,0,6,3,2,3,5,8,5,2,4,8,1,9,6,3,5,6,4,8,8,4,3,2,4,3,2,1,8,6,5,8,6,0,0,8,0,2,9,6,9,3
add $0,1
mov $2,1
mov $3,$0
mul $3,4
lpb $3
mul $1,$3
mul $2,$3
add $1,$2
mov $7,$5
cmp $7,0
add $5,$7
div $1,$5
mul $1,2
div $2,$5
add $2,$1
mul $1,2
sub $3,1
add $5,1
lpe
mov $4,10
pow $4,$0
div $2,$4
div $1,$2
sub $6,$1
mov $0,$6
sub $0,1
mod $0,10
add $0,10
mod $0,10
| 16.970588 | 201 | 0.521664 |
8f8328427b194e9326c26e66f68d04b4602f54c6 | 1,689 | asm | Assembly | programs/oeis/182/A182428.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/182/A182428.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/182/A182428.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A182428: a(n) = 2n(19-n).
; 0,36,68,96,120,140,156,168,176,180,180,176,168,156,140,120,96,68,36,0,-40,-84,-132,-184,-240,-300,-364,-432,-504,-580,-660,-744,-832,-924,-1020,-1120,-1224,-1332,-1444,-1560,-1680,-1804,-1932,-2064,-2200,-2340,-2484,-2632,-2784,-2940,-3100,-3264,-3432,-3604,-3780,-3960,-4144,-4332,-4524,-4720,-4920,-5124,-5332,-5544,-5760,-5980,-6204,-6432,-6664,-6900,-7140,-7384,-7632,-7884,-8140,-8400,-8664,-8932,-9204,-9480,-9760,-10044,-10332,-10624,-10920,-11220,-11524,-11832,-12144,-12460,-12780,-13104,-13432,-13764,-14100,-14440,-14784,-15132,-15484,-15840,-16200,-16564,-16932,-17304,-17680,-18060,-18444,-18832,-19224,-19620,-20020,-20424,-20832,-21244,-21660,-22080,-22504,-22932,-23364,-23800,-24240,-24684,-25132,-25584,-26040,-26500,-26964,-27432,-27904,-28380,-28860,-29344,-29832,-30324,-30820,-31320,-31824,-32332,-32844,-33360,-33880,-34404,-34932,-35464,-36000,-36540,-37084,-37632,-38184,-38740,-39300,-39864,-40432,-41004,-41580,-42160,-42744,-43332,-43924,-44520,-45120,-45724,-46332,-46944,-47560,-48180,-48804,-49432,-50064,-50700,-51340,-51984,-52632,-53284,-53940,-54600,-55264,-55932,-56604,-57280,-57960,-58644,-59332,-60024,-60720,-61420,-62124,-62832,-63544,-64260,-64980,-65704,-66432,-67164,-67900,-68640,-69384,-70132,-70884,-71640,-72400,-73164,-73932,-74704,-75480,-76260,-77044,-77832,-78624,-79420,-80220,-81024,-81832,-82644,-83460,-84280,-85104,-85932,-86764,-87600,-88440,-89284,-90132,-90984,-91840,-92700,-93564,-94432,-95304,-96180,-97060,-97944,-98832,-99724,-100620,-101520,-102424,-103332,-104244,-105160,-106080,-107004,-107932,-108864,-109800,-110740,-111684,-112632,-113584,-114540
mov $1,19
sub $1,$0
mul $1,$0
mul $1,2
| 211.125 | 1,620 | 0.695086 |
ff184228777c0c2b678509360cbf6107fccd4067 | 96 | asm | Assembly | src/vectors.asm | munshkr/nes-snake | f46910798e453edc17b274d6bd65f8665addea61 | [
"Apache-2.0"
] | null | null | null | src/vectors.asm | munshkr/nes-snake | f46910798e453edc17b274d6bd65f8665addea61 | [
"Apache-2.0"
] | null | null | null | src/vectors.asm | munshkr/nes-snake | f46910798e453edc17b274d6bd65f8665addea61 | [
"Apache-2.0"
] | null | null | null | ;;;;;;;;;;;;;;;;;;;
;;; VECTORS ;;;
;;;;;;;;;;;;;;;;;;;
.pad $fffa
.dw nmi
.dw reset
.dw 0 | 10.666667 | 19 | 0.302083 |
a53defc5539b6dda3d905ba79c1af848c2f4f267 | 1,364 | asm | Assembly | project4/Fill.asm | CoderYihaoWang/Nand2Tetris | e6b80ea62dfbf0084ae761f42b9ad5a3e5d53ef7 | [
"MIT"
] | 1 | 2019-12-07T03:44:02.000Z | 2019-12-07T03:44:02.000Z | project4/Fill.asm | CoderYihaoWang/Nand2Tetris | e6b80ea62dfbf0084ae761f42b9ad5a3e5d53ef7 | [
"MIT"
] | null | null | null | project4/Fill.asm | CoderYihaoWang/Nand2Tetris | e6b80ea62dfbf0084ae761f42b9ad5a3e5d53ef7 | [
"MIT"
] | 1 | 2022-03-08T02:52:57.000Z | 2022-03-08T02:52:57.000Z | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/04/Fill.asm
// Runs an infinite loop that listens to the keyboard input.
// When a key is pressed (any key), the program blackens the screen,
// i.e. writes "black" in every pixel;
// the screen should remain fully black as long as the key is pressed.
// When no key is pressed, the program clears the screen, i.e. writes
// "white" in every pixel;
// the screen should remain fully clear as long as no key is pressed.
// Put your code here.
@KBD
D=A
@n
M=D
@SCREEN
D=A
@n
M=M-D // get the number of RAMs to be manipulated
(LOOP)
@i
M=0
@SCREEN
D=A
@pixel
M=D // set i and use pixel as a pointer to the RAM being manipulated
// initially pixel equals SCREEN
@KBD
D=M
@BLACK
D;JGT // listen to the keybourd, when a key is pressed, jump to the BLACK branch
// otherwise enter to the WHITE branch
(WHITE)
@i
D=M
@n
D=D-M
@LOOP
D;JEQ // if i==n, break
@pixel
D=M
@i
A=D+M
M=0 //set the RAM unit to 0, which is all white
@i
M=M+1 //i++
@WHITE
0;JMP
(BLACK)
@i
D=M
@n
D=D-M
@LOOP
D;JEQ
@pixel
D=M
@i
A=D+M
M=-1 // -1 == 1111 1111 1111 1111, all black
@i
M=M+1
@BLACK
0;JMP
@LOOP
0;JMP
| 15.678161 | 81 | 0.6239 |
d5e83f43ab370099373311da5381cb7a025aad26 | 629 | asm | Assembly | oeis/005/A005945.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/005/A005945.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/005/A005945.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A005945: Number of n-step mappings with 4 inputs.
; 0,1,15,60,154,315,561,910,1380,1989,2755,3696,4830,6175,7749,9570,11656,14025,16695,19684,23010,26691,30745,35190,40044,45325,51051,57240,63910,71079,78765,86986,95760,105105,115039,125580,136746,148555,161025,174174,188020,202581,217875,233920,250734,268335,286741,305970,326040,346969,368775,391476,415090,439635,465129,491590,519036,547485,576955,607464,639030,671671,705405,740250,776224,813345,851631,891100,931770,973659,1016785,1061166,1106820,1153765,1202019,1251600,1302526,1354815,1408485
mul $0,2
mov $1,2
mul $1,$0
sub $1,2
add $1,$0
bin $0,2
mul $0,$1
div $0,4
| 52.416667 | 500 | 0.793323 |
15258eb97fe93c7c6b0f2d74576c616c6a524a09 | 827 | asm | Assembly | oeis/233/A233123.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/233/A233123.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/233/A233123.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A233123: Number of n X 2 0..5 arrays with no element x(i,j) adjacent to itself or value 5-x(i,j) horizontally or vertically, top left element zero, and 1 appearing before 2 3 and 4, and 2 appearing before 3 in row major order (unlabelled 6-colorings with no clashing color pairs).
; 1,8,80,896,10496,124928,1495040,17924096,215023616,2580021248,30959206400,371506282496,4458058612736,53496636243968,641959366492160,7703511324164096,92442131595001856,1109305561960153088,13311666674802360320,159739999822750416896,1916879996773493374976,23002559956883873988608,276030719465014301818880,3312368633509802877648896,39748423601836159555076096,476981083220908014754070528,5723772998646392577421475840,68685275983738696530548228096,824223311804792300772540809216
mov $1,4
pow $1,$0
mov $2,12
pow $2,$0
add $1,$2
mov $0,$1
div $0,2
| 75.181818 | 474 | 0.840387 |
6c18d48a85cddd1400a20bb0fc88c0f915b46502 | 345 | asm | Assembly | programs/oeis/039/A039207.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/039/A039207.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/039/A039207.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A039207: Numbers whose base-11 representation has the same number of 8's and 9's.
; 0,1,2,3,4,5,6,7,10,11,12,13,14,15,16,17,18,21,22,23,24,25,26,27,28,29,32,33,34,35,36,37,38,39,40,43,44,45,46,47,48,49,50,51,54,55,56,57,58,59,60,61,62,65,66,67,68,69,70,71,72,73,76,77,78,79,80,81,82,83
add $0,1
mov $1,$0
div $1,9
mul $1,2
add $0,$1
sub $0,1
| 34.5 | 203 | 0.655072 |
0ed2fa6bbe8701f8b23b402e80e98c6929b83311 | 408 | asm | Assembly | programs/oeis/218/A218442.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/218/A218442.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/218/A218442.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A218442: a(n) = Sum_{k=0..n} floor(n/(3*k + 1)).
; 0,1,2,3,5,6,7,9,11,12,14,15,17,19,21,22,25,26,27,29,32,34,36,37,39,41,43,44,48,49,51,53,56,57,59,61,63,65,67,69,73,74,76,78,81,82,84,85,88,91,94,95,99,100,101,103,107,109,111,112,115,117,119,121,125,127,129,131,134,135,139,140,142,144,146,148,152
mov $2,$0
lpb $2
add $3,3
mov $4,$2
lpb $4
add $1,1
trn $4,$3
lpe
sub $2,1
lpe
mov $0,$1
| 27.2 | 248 | 0.598039 |
f450e6440018f1cf5f4721b30de7ff25e36c3701 | 3,250 | asm | Assembly | programs/oeis/017/A017056.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/017/A017056.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/017/A017056.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A017056: a(n) = (7*n + 6)^4.
; 1296,28561,160000,531441,1336336,2825761,5308416,9150625,14776336,22667121,33362176,47458321,65610000,88529281,116985856,151807041,193877776,244140625,303595776,373301041,454371856,547981281,655360000,777796321,916636176,1073283121,1249198336,1445900625,1664966416,1908029761,2176782336,2472973441,2798410000,3154956561,3544535296,3969126001,4430766096,4931550625,5473632256,6059221281,6690585616,7370050801,8100000000,8882874001,9721171216,10617447681,11574317056,12594450625,13680577296,14835483601,16062013696,17363069361,18741610000,20200652641,21743271936,23372600161,25091827216,26904200625,28813025536,30821664721,32933538576,35152125121,37480960000,39923636481,42483805456,45165175441,47971512576,50906640625,53974440976,57178852641,60523872256,64013554081,67652010000,71443409521,75391979776,79502005521,83777829136,88223850625,92844527616,97644375361,102627966736,107799932241,113164960000,118727795761,124493242896,130466162401,136651472896,143054150625,149679229456,156531800881,163617014016,170940075601,178506250000,186320859201,194389282816,202716958081,211309379856,220172100625,229310730496,238730937201,248438446096,258439040161,268738560000,279342903841,290258027536,301489944561,313044726016,324928500625,337147454736,349707832321,362615934976,375878121921,389500810000,403490473681,417853645056,432596913841,447726927376,463250390625,479174066176,495504774241,512249392656,529414856881,547008160000,565036352721,583506543376,602425897921,621801639936,641641050625,661951468816,682740290961,704014971136,725783021041,748052010000,770829564961,794123370496,817941168801,842290759696,867180000625,892616806656,918609150481,945165062416,972292630401,1000000000000,1028295374401,1057187014416,1086683238481,1116792422656,1147523000625,1178883463696,1210882360801,1243528298496,1276829940961,1310796010000,1345435285041,1380756603136,1416768858961,1453481004816,1490902050625,1529041063936,1567907169921,1607509551376,1647857448721,1688960160000,1730827040881,1773467504656,1816891022241,1861107122176,1906125390625,1951955471376,1998607065841,2046089933056,2094413889681,2143588810000,2193624625921,2244531326976,2296318960321,2348997630736,2402577500625,2457068790016,2512481776561,2568826795536,2626114239841,2684354560000,2743558264161,2803735918096,2864898145201,2927055626496,2990219100625,3054399363856,3119607270081,3185853730816,3253149715201,3321506250000,3390934419601,3461445366016,3533050288881,3605760445456,3679587150625,3754541776896,3830635754401,3907880570896,3986287771761,4065868960000,4146635796241,4228599998736,4311773343361,4396167663616,4481794850625,4568666853136,4656795677521,4746193387776,4836872105521,4928844010000,5022121338081,5116716384256,5212641500641,5309909096976,5408531640625,5508521656576,5609891727441,5712654493456,5816822652481,5922408960000,6029426229121,6137887330576,6247805192721,6359192801536,6472063200625,6586429491216,6702304832161,6819702439936,6938635588641,7059117610000,7181161893361,7304781885696,7429991091601,7556803073296,7685231450625,7815289901056,7946992159681,8080352019216,8215383330001,8352100000000,8490515994801,8630645337616,8772502109281,8916100448256,9061454550625,9208578670096,9357487118001
mul $0,7
add $0,6
pow $0,4
mov $1,$0
| 406.25 | 3,180 | 0.911385 |
af8ed08736f161a2def43043b71d9fe792fa0aed | 1,068 | asm | Assembly | sound/sfxasm/62.asm | NatsumiFox/Sonic-3-93-Nov-03 | 032e4fc25f243636d458639c4a4311caca898f96 | [
"MIT"
] | 7 | 2019-12-05T00:35:57.000Z | 2022-02-27T20:00:33.000Z | sound/sfxasm/62.asm | NatsumiFox/Sonic-3-93-Nov-03 | 032e4fc25f243636d458639c4a4311caca898f96 | [
"MIT"
] | null | null | null | sound/sfxasm/62.asm | NatsumiFox/Sonic-3-93-Nov-03 | 032e4fc25f243636d458639c4a4311caca898f96 | [
"MIT"
] | null | null | null | 62_Header:
sHeaderInit ; Z80 offset is $C7F6
sHeaderPatch 62_Patches
sHeaderTick $01
sHeaderCh $04
sHeaderSFX $80, $02, 62_FM3, $10, $00
sHeaderSFX $80, $04, 62_FM4, $00, $00
sHeaderSFX $80, $05, 62_FM5, $10, $00
sHeaderSFX $80, $C0, 62_PSG3, $0C, $00
62_FM3:
sPan spRight
dc.b nRst, $02
sJump 62_FM4
62_FM5:
sPan spLeft
dc.b nRst, $01
62_FM4:
sPatFM $00
ssModZ80 $03, $01, $20, $04
dc.b nC0, $10
sStop
62_PSG3:
ssModZ80 $01, $01, $0F, $05
sNoisePSG $E7
62_Loop1:
dc.b nB3, $18, sHold
saVolPSG $03
sLoop $00, $05, 62_Loop1
sStop
62_Patches:
; Patch $00
; $F9
; $21, $30, $10, $32, $1F, $1F, $1F, $1F
; $05, $18, $09, $02, $0B, $1F, $10, $05
; $1F, $2F, $4F, $2F, $0E, $07, $04, $80
spAlgorithm $01
spFeedback $07
spDetune $02, $01, $03, $03
spMultiple $01, $00, $00, $02
spRateScale $00, $00, $00, $00
spAttackRt $1F, $1F, $1F, $1F
spAmpMod $00, $00, $00, $00
spSustainRt $05, $09, $18, $02
spSustainLv $01, $04, $02, $02
spDecayRt $0B, $10, $1F, $05
spReleaseRt $0F, $0F, $0F, $0F
spTotalLv $0E, $04, $07, $00
| 19.418182 | 41 | 0.599251 |
e4d6a9ff8ec012edf9fd834594dc618ec03a171e | 384 | asm | Assembly | programs/oeis/064/A064806.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/064/A064806.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/064/A064806.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A064806: a(n) = n + digital root of n.
; 2,4,6,8,10,12,14,16,18,11,13,15,17,19,21,23,25,27,20,22,24,26,28,30,32,34,36,29,31,33,35,37,39,41,43,45,38,40,42,44,46,48,50,52,54,47,49,51,53,55,57,59,61,63,56,58,60,62,64,66,68,70,72,65,67,69,71,73,75,77,79,81,74,76,78,80,82,84,86,88,90,83,85,87,89,91,93,95,97,99,92,94,96,98,100,102,104,106,108,101
mov $1,$0
mod $0,9
add $0,$1
add $0,2
| 48 | 303 | 0.640625 |
85ee78a244f72455ca8819a2b5c6ce903cb7558d | 869 | asm | Assembly | programs/oeis/282/A282124.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/282/A282124.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/282/A282124.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A282124: Decimal representation of the x-axis, from the origin to the right edge, of the n-th stage of growth of the two-dimensional cellular automaton defined by "Rule 430", based on the 5-celled von Neumann neighborhood.
; 1,3,3,15,11,63,43,255,171,1023,683,4095,2731,16383,10923,65535,43691,262143,174763,1048575,699051,4194303,2796203,16777215,11184811,67108863,44739243,268435455,178956971,1073741823,715827883,4294967295,2863311531,17179869183,11453246123,68719476735,45812984491,274877906943,183251937963,1099511627775,733007751851,4398046511103,2932031007403,17592186044415,11728124029611,70368744177663,46912496118443,281474976710655,187649984473771,1125899906842623,750599937895083,4503599627370495,3002399751580331
mov $2,2
pow $2,$0
mul $2,2
mov $3,$2
mov $2,0
sub $3,2
add $2,$3
mov $1,$2
add $1,1
mod $1,6
div $2,2
mul $1,$2
div $1,3
mul $1,2
add $1,1
| 45.736842 | 502 | 0.805524 |
fff00700286586559682a3158c4a8fea79ed484b | 2,743 | asm | Assembly | smsq/sbas/cmpstt.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | smsq/sbas/cmpstt.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | smsq/sbas/cmpstt.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | ; SBAS_CMPSTT - Compile Statement Table V2.00 1994 Tony Tebby
;
; 2003-02-03 2.01 Fixed bug in the handling of dynamically sized compiler
; tokens (i.e. only bo.formp).
; In this case a PROCedure with 358 parameters (sic! I'm not
; kidding, this was real life code!) crashed SBasic (MK)
section sbas
xdef sb_cmpstt
xdef sb_cmpdst
xref sb_alwrk
xref sb_ixtable
include 'dev8_keys_sbasic'
;+++
; SBASIC Compile Data Statement Table.
; This also copies the program, eliminating the statement and newlines
;
; a6 c p pointer to SuperBASIC variables
;
; All other registers smashed
; Status return standard
;---
sb_cmpdst
lea sb_dttbe(a6),a1 ; statement table estimated work area
move.l sb_dtstb(a6),a3 ; program token
move.l sb_dtstp(a6),a4 ; and top
bsr.s sbcs_do
move.l a3,sb_dtstp(a6) ; and where it is
move.l a0,sb_dttbp(a6) ; set running pointers
move.l (a0)+,(a0) ; set top address = -1
moveq #0,d0
rts
;+++
; SBASIC Compile Statement Table.
; This also copies the program, eliminating the statement and newlines
;
; a5 c p pointer to compiler token base
; a6 c p pointer to SuperBASIC variables
;
; All other registers smashed
; Status return standard
;---
sb_cmpstt
lea sb_sttbe-sb_ptokb(a5),a1 ; statement table estimated work area
move.l sb_progb-sb_ptokb(a5),a3 ; program token
move.l sb_progp-sb_ptokb(a5),a4 ; and top
bsr.s sbcs_do
move.l a3,sb_progp-sb_ptokb(a5) ; and where it is
move.l a0,sb_sttbp-sb_ptokb(a5) ; set running pointers
subq.l #2,a3
move.l a3,4(a0) ; set top address = end - 2
moveq #0,d0
rts
sbcs_do
moveq #st.len*2,d0 ; start and end sentinals
add.l (a1)+,d0 ; + estimated work area
jsr sb_alwrk ; allocate it
move.l a3,a1 ; where to copy it to
lea sb_ixtable,a2 ; extension table
addq.l #st_addr,a0 ; line 0
move.l a3,(a0)+ ; is start sentinal
scs_loop
cmp.l a4,a1 ; all processed?
beq.s scs_done ; ... yes
move.w (a1)+,d0 ; next token
ble.s scs_statement
move.w d0,(a3)+
scs_exten
move.w (a2,d0.w),d0 ; flag + number of extension words
beq.s scs_loop
ext.w d0 ; fixed?
bgt.s scs_copy
move.w (a1)+,d0 ; count
move.w d0,(a3)+
beq.s scs_loop ; ... none
add.w d0,d0 ; in words
scs_copy
move.w (a1)+,(a3)+ ; 2 byte
subq.w #2,d0 ; ** in 2.01
bgt.s scs_copy
bra.s scs_loop
scs_statement
beq.s scs_nstmt ; next statement
moveq #0,d1 ; statement on line
move.w d0,d1
not.w d1 ; line number
swap d1
scs_nstmt
addq.w #1,d1
tst.w (a1) ; is next token another end of stt
ble.s scs_loop ; ... yes, do not creat dummy entry
move.l d1,(a0)+ ; set statement
move.l a3,(a0)+ ; and where it is
bra.s scs_loop
scs_done
not.l (a0) ; top sentinal
rts
end
| 24.274336 | 75 | 0.679548 |
3014814334c19e6bc1de3a48009ede51cfbd5b8b | 16,984 | asm | Assembly | console_win32_snake.asm | mov-rax-rbx/snake | 4310e79c22aa79e471dd052e02a3fa9d1c427e3a | [
"MIT"
] | 1 | 2021-01-08T19:04:13.000Z | 2021-01-08T19:04:13.000Z | console_win32_snake.asm | mov-rax-rbx/snake | 4310e79c22aa79e471dd052e02a3fa9d1c427e3a | [
"MIT"
] | null | null | null | console_win32_snake.asm | mov-rax-rbx/snake | 4310e79c22aa79e471dd052e02a3fa9d1c427e3a | [
"MIT"
] | null | null | null | extern ExitProcess
extern WriteConsoleA
extern ReadConsoleInputA
extern SetConsoleTitleA
extern SetConsoleCursorInfo
extern SetConsoleWindowInfo
extern SetCurrentConsoleFontEx
extern SetConsoleCursorPosition
extern SetConsoleScreenBufferSize
extern GetStdHandle
extern GetCurrentConsoleFontEx
extern GetTickCount
extern GetNumberOfConsoleInputEvents
; win32 console input/output
STD_OUTPUT_HANDLE equ -11
STD_INPUT_HANDLE equ -10
; key code
KEY_EVENT equ 0x0001
VK_LEFT equ 0x25
VK_UP equ 0x26
VK_RIGHT equ 0x27
VK_DOWN equ 0x28
VK_ESCAPE equ 0x1B
KEY_CODE equ PINPUT_RECORD + INPUT_RECORD.Event + KEY_EVENT_RECORD.wVirtualKeyCode
KEY_DOWN equ PINPUT_RECORD + INPUT_RECORD.Event + KEY_EVENT_RECORD.bKeyDown
; border constants
; window_length - border_length
BORDER_WIDTH equ 150
BORDER_HEIGHT equ 60
BORDER_RIGHT_DOWN equ border + RECT.RightDown
SIZE_COORD equ 4 ; 16bit + 16bit = 32bit = 4B
FRAME_TIME equ 17 ; 1_000/60 = 16.666666(7) milliseconds
SIZE_FONT equ 10
; snake consts
TAIL_LENGTH equ 128
DEAD_TAIL_LENGTH equ 64
; xxxxxxxxxxxoooooooo
; ^ ^
; begin DEAD_TAIL_LENGTH + begin
SPAWN_TAIL equ 4
STATE_LEFT equ 0
STATE_UP equ 1
STATE_RIGHT equ 2
STATE_DOWN equ 3
SPAWN_Y equ 4
; ooooooooooooo H
; ^ ^ ^
; begin end head
BEGIN_SNAKE_TAIL equ snake + SNAKE.tail
END_SNAKE_TAIL equ BEGIN_SNAKE_TAIL + TAIL_LENGTH * SIZE_COORD
SNAKE_STATE equ snake + SNAKE.state
HEAD equ snake + SNAKE.head
; eat constants
EAT_LENGTH equ 100
BEGIN_EAT equ ECOORD
END_EAT equ ECOORD + EAT_LENGTH * SIZE_COORD
; rand constants "MMIX by Donald Knuth"
A equ 6364136223846793005
C equ 1442695040888963407
global start
section .bss
struc KEY_EVENT_RECORD
.bKeyDown resd 1 ; win32 BOOL 32 bit
.wRepeatCount resw 1
.wVirtualKeyCode resw 1
.wVirtualScanCode resw 1
.uChar resb 1
.dwControlKeyState resd 1
endstruc
struc INPUT_RECORD
.EventType resw 1
.Padding resw 1 ; Padding
.Event reso 1 ; MOUSE_EVENT_RECORD 128 bit
endstruc
struc COORD
.X resw 1
.Y resw 1
endstruc
struc RECT
.LeftUp resd 1
.RightDown resd 1
endstruc
struc SNAKE
.state resb 1
.head resd 1
.tail resd TAIL_LENGTH
endstruc
struc CONSOLE_FONT_INFOEX
.cbSize resd 1
.nFont resd 1
.dwFontSize resd 1
.FontFamily resd 1
.FontWeight resd 1
.FaceName times 32 resw 1 ; LF_FACESIZE = 32
endstruc
section .data
head db 254, 0
empty db 176, 0
eat db 35, 0
title db 'Snake!', 0
stdOut dq 0
stdIn dq 0
buffer dq 0
next_rand dq 1
offset_dead_tail dq DEAD_TAIL_LENGTH * SIZE_COORD ; len_dead_tail * SIZE_COORD < TAIL_LENGTH
PINPUT_RECORD istruc INPUT_RECORD
at INPUT_RECORD.EventType, dw 0
at INPUT_RECORD.Padding, dw 0
at INPUT_RECORD.Event, dw 0
iend
ECOORD times EAT_LENGTH dd 0
snake istruc SNAKE
at SNAKE.state, db STATE_RIGHT
at SNAKE.head, dw TAIL_LENGTH - DEAD_TAIL_LENGTH + 1, SPAWN_Y
at SNAKE.tail, times TAIL_LENGTH dd 0
iend
border istruc RECT
at RECT.LeftUp, dw 0, 0
at RECT.RightDown, dw BORDER_WIDTH, BORDER_HEIGHT
iend
border_buffer dw BORDER_WIDTH + 1, BORDER_HEIGHT + 1
section text USE64
start:
%define shadow_space 28h
sub rsp, shadow_space ; Microsoft x64 calling convention "shadow space"
mov rcx, STD_OUTPUT_HANDLE
call GetStdHandle
mov [stdOut], rax ; get console output handle
mov rcx, STD_INPUT_HANDLE ; get console input handle
call GetStdHandle
mov [stdIn], rax
mov rcx, title
call SetConsoleTitleA ; set title
sub rsp, 84
mov dword [rsp + CONSOLE_FONT_INFOEX.cbSize], 84 ; sizeof(CONSOLE_FONT_INFOEX)
mov rcx, [stdOut]
mov rdx, 0 ; false, font information is retrieved for the current window size
mov r8, rsp
call GetCurrentConsoleFontEx ; get current font
mov word [rsp + CONSOLE_FONT_INFOEX.dwFontSize + COORD.X], SIZE_FONT ; set font size
mov word [rsp + CONSOLE_FONT_INFOEX.dwFontSize + COORD.Y], SIZE_FONT ; set font size
mov rcx, [stdOut]
mov rdx, 0
mov r8, rsp
call SetCurrentConsoleFontEx ; set font
add rsp, 84
mov rcx, [stdOut]
mov rdx, [border_buffer]
call SetConsoleScreenBufferSize ; set screen buffer >= BORDER_RIGHT_DOWN coord
; cmp rax, 0
; je quit
mov rcx, [stdOut]
mov edx, 1 ; true - coordinates specify the new upper-left and lower-right corners
mov r8, border
call SetConsoleWindowInfo ; BOOL SetConsoleWindowInfo(HANDLE hConsoleOutput, BOOL bAbsolute, const SMALL_RECT *lpConsoleWindow);
; cmp rax, 0
; je quit
push dword 0 ; push CONSOLE_CURSOR_INFO visible = false
push dword 64 ; push size CONSOLE_CURSOR_INFO
mov rcx, [stdOut]
mov rdx, rsp
call SetConsoleCursorInfo ; BOOL SetConsoleCursorInfo(HANDLE hConsoleOutput, const CONSOLE_CURSOR_INFO *lpConsoleCursorInfo);
add rsp, 8
call time
mov rcx, rax
call srand
call init_eat
call init_snake
; stack:
; start_t
; t
call time
push rax ; start_t
push qword 0 ; t
.app_loop:
call time ; end_t in rax
pop rdx ; t
pop rcx ; start_t
mov r8, rax
cmp rax, rcx
jl quit
sub rax, rcx
add rdx, rax
push r8 ; start_t = end_t
push rdx ; t
call input
.inner_app_loop:
mov rax, [rsp]
cmp rax, FRAME_TIME
jl .end_inner_app_loop
pop rax
sub rax, FRAME_TIME
push rax
call update_eat
call update_tail
call update_head
jmp .inner_app_loop
.end_inner_app_loop:
jmp .app_loop
quit:
xor rcx, rcx ; UINT uExitCode = 0
call ExitProcess ; ExitProcess(uExitCode)
input: ; void -> pollute: rcx, rdx, r8, r9
sub rsp, shadow_space ; Microsoft x64 calling convention "shadow space"
mov rcx, [stdIn]
mov rdx, buffer
call GetNumberOfConsoleInputEvents
cmp qword [buffer], 0 ; ReadConsoleInputA waiting function -> if input buffer clear ignore ReadConsoleInputA
je .end
mov rcx, [stdIn]
mov rdx, PINPUT_RECORD
mov r8, 1
mov r9, buffer
call ReadConsoleInputA ; waiting function
cmp word [PINPUT_RECORD + INPUT_RECORD.EventType], KEY_EVENT
jne .end
.key_input:
cmp dword [KEY_DOWN], 1
jne .end
cmp word [KEY_CODE], VK_LEFT
je .left_key_input
cmp word [KEY_CODE], VK_UP
je .up_key_input
cmp word [KEY_CODE], VK_RIGHT
je .right_key_input
cmp word [KEY_CODE], VK_DOWN
je .down_key_input
cmp word [KEY_CODE], VK_ESCAPE
je quit
jmp .end
.left_key_input:
cmp byte [SNAKE_STATE], STATE_RIGHT
je .end
mov byte [SNAKE_STATE], STATE_LEFT
jmp .end
.up_key_input:
cmp byte [SNAKE_STATE], STATE_DOWN
je .end
mov byte [SNAKE_STATE], STATE_UP
jmp .end
.right_key_input:
cmp byte [SNAKE_STATE], STATE_LEFT
je .end
mov byte [SNAKE_STATE], STATE_RIGHT
jmp .end
.down_key_input:
cmp byte [SNAKE_STATE], STATE_UP
je .end
mov byte [SNAKE_STATE], STATE_DOWN
jmp .end
.end:
add rsp, shadow_space ; Microsoft x64 calling convention "shadow space"
ret
update_head: ; void -> pollute: rcx, rdx
; draw head
mov r8, HEAD
mov r9, head
call put_char
xor rcx, rcx
xor rdx, rdx
cmp byte [SNAKE_STATE], STATE_LEFT
je .state_left
cmp byte [SNAKE_STATE], STATE_UP
je .state_up
cmp byte [SNAKE_STATE], STATE_RIGHT
je .state_right
cmp byte [SNAKE_STATE], STATE_DOWN
je .state_down
.state_left:
mov cx, [HEAD + COORD.X]
mov dx, [border + RECT.LeftUp + COORD.X]
cmp dx, cx
jge .to_right_side
dec word [HEAD + COORD.X]
jmp .end
.to_right_side:
mov cx, word [BORDER_RIGHT_DOWN + COORD.X]
mov word [HEAD + COORD.X], cx
jmp .end
.state_up:
mov cx, [HEAD + COORD.Y]
mov dx, [border + RECT.LeftUp + COORD.Y]
cmp dx, cx
jge .to_down_side
dec word [HEAD + COORD.Y]
jmp .end
.to_down_side:
mov cx, word [BORDER_RIGHT_DOWN + COORD.Y]
mov word [HEAD + COORD.Y], cx
jmp .end
.state_right:
mov cx, [HEAD + COORD.X]
mov dx, [BORDER_RIGHT_DOWN + COORD.X]
cmp dx, cx
jle .to_left_side
inc word [HEAD + COORD.X]
jmp .end
.to_left_side:
mov cx, word [border + RECT.LeftUp + COORD.X]
mov word [HEAD + COORD.X], cx
jmp .end
.state_down:
mov cx, [HEAD + COORD.Y]
mov dx, [BORDER_RIGHT_DOWN + COORD.Y]
cmp dx, cx
jle .to_up_side
inc word [HEAD + COORD.Y]
jmp .end
.to_up_side:
mov cx, word [border + RECT.LeftUp + COORD.Y]
mov word [HEAD + COORD.Y], cx
jmp .end
.end:
ret
update_tail: ; void -> pollute: rcx, rdx, r8, r9 + pollute intersect_tail, put_char
; draw snake trace
mov r8, BEGIN_SNAKE_TAIL
add r8, [offset_dead_tail]
mov r9, empty
call put_char
call intersect_tail ; rax: true/false, rcx: address intersect block
cmp rax, 0
je .update
mov rdx, BEGIN_SNAKE_TAIL
mov rax, rcx
sub rax, rdx
add rdx, [offset_dead_tail]
mov [offset_dead_tail], rax
.delete:
cmp rcx, rdx
je .update
; draw snake trace where dead snake
push rcx
push rdx
mov r8, rdx
mov r9, empty
call put_char
pop rdx
pop rcx
add rdx, SIZE_COORD
jmp .delete
.update:
mov rcx, BEGIN_SNAKE_TAIL
.loop:
cmp rcx, END_SNAKE_TAIL - SIZE_COORD
je .end
mov rdx, [rcx + SIZE_COORD]
mov [rcx], rdx
add rcx, SIZE_COORD
jmp .loop
.end:
mov edx, [HEAD]
mov [rcx], edx
ret
update_eat: ; void -> pollute: rcx, rdx, r8, r9 + pollute generate_eat
mov r8, BEGIN_EAT
.loop:
cmp r8, END_EAT
je .end
mov r9, r8
add r8, SIZE_COORD
xor rcx, rcx
mov ecx, [r9]
cmp ecx, [HEAD]
jne .loop
mov rdx, r9
push r8
call generate_eat
pop r8
mov rax, [offset_dead_tail]
cmp rax, SPAWN_TAIL * SIZE_COORD
jle .loop
sub rax, SPAWN_TAIL * SIZE_COORD
mov [offset_dead_tail], rax
jmp .loop
.end:
ret
put_char: ; r8: &COORD, r9: &char -> pollute: rcx, rdx, r8, r9 + ?pollute SetConsoleCursorPosition, WriteConsoleA
push r9
mov rcx, [stdOut]
mov rdx, [r8]
call SetConsoleCursorPosition
pop r9
mov rcx, [stdOut]
mov rdx, r9
mov r8, 1
mov r9, buffer
call WriteConsoleA
ret
intersect_tail: ; void -> rax: bool, rcx: &intersect_block
mov rcx, BEGIN_SNAKE_TAIL
add rcx, [offset_dead_tail]
.loop:
cmp rcx, END_SNAKE_TAIL
je .end
mov rax, [rcx]
cmp eax, [HEAD]
je .intersect
add rcx, SIZE_COORD
jmp .loop
.intersect:
mov rax, 1
ret
.end:
mov rax, 0
ret
generate_eat: ; rdx: &ECOORD -> pollute: rcx, r8, r9 + pollute rand, put_char
; random x
xor rcx, rcx
mov cx, [BORDER_RIGHT_DOWN + COORD.X]
sub cx, [border + RECT.LeftUp + COORD.X]
push rdx
call rand
pop rdx
add ax, [border + RECT.LeftUp + COORD.X]
mov word [rdx + COORD.X], ax
; random y
xor rcx, rcx
mov cx, [BORDER_RIGHT_DOWN + COORD.Y]
sub cx, [border + RECT.LeftUp + COORD.Y]
push rdx
call rand
pop rdx
add ax, [border + RECT.LeftUp + COORD.Y]
mov word [rdx + COORD.Y], ax
; draw eat
mov r8, rdx
mov r9, eat
call put_char
ret
srand: ; rcx: u64
mov qword [next_rand], rcx
ret
rand: ; rcx: mod -> rax: random; pollute: rdx, r8
mov rax, [next_rand] ; rax = next_rand
mov r8, A
mul r8 ; rax = next_rand * A
mov r8, C
add rax, r8 ; rax = next_rand * A + C
mov [next_rand], rax ; next_rand = next_rand * A + C
xor rdx, rdx
div rcx ; rax = rax / rcx, rdx = rax % rcx
mov rax, rdx ; rax = rax % rcx
ret
time: ; void -> rax: time in milliseconds; pollute: ?pollute GetTickCount
call GetTickCount
ret
init_snake: ; void -> pollute: rax, rcx
movsxd rcx, [border + RECT.LeftUp + COORD.X]
mov rax, BEGIN_SNAKE_TAIL
add rax, [offset_dead_tail]
.loop:
cmp rax, END_SNAKE_TAIL
je .end
mov word [rax + COORD.X], cx
mov word [rax + COORD.Y], SPAWN_Y
push rcx
push rax
mov r8, rax
mov r9, head
call put_char
pop rax
pop rcx
add rax, SIZE_COORD
inc rcx
jmp .loop
.end:
ret
init_eat: ; void -> pollute: rdx + pollute generate_eat
mov rdx, BEGIN_EAT
.loop:
cmp rdx, END_EAT
je .end
push rdx
call generate_eat
pop rdx
add rdx, SIZE_COORD
jmp .loop
.end:
ret | 30.768116 | 160 | 0.487164 |
e47c93d1827c4fdc4e581ca141086154a526f77e | 6,607 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_506_546.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_506_546.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_506_546.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r14
push %r8
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x7461, %r10
clflush (%r10)
nop
nop
nop
xor $7086, %r14
mov $0x6162636465666768, %rbx
movq %rbx, %xmm7
movups %xmm7, (%r10)
nop
nop
sub $49968, %r8
lea addresses_UC_ht+0x11eda, %rsi
lea addresses_D_ht+0x595a, %rdi
nop
nop
nop
nop
add $24803, %rax
mov $9, %rcx
rep movsw
nop
nop
nop
nop
nop
add $18779, %r14
lea addresses_WC_ht+0x7daa, %rcx
nop
nop
xor %rsi, %rsi
mov $0x6162636465666768, %rdi
movq %rdi, %xmm2
movups %xmm2, (%rcx)
nop
and %r14, %r14
lea addresses_WC_ht+0xe99e, %rsi
nop
nop
sub $38824, %rdi
movb $0x61, (%rsi)
nop
nop
nop
nop
sub %rax, %rax
lea addresses_WC_ht+0x8c5a, %rsi
nop
nop
nop
nop
nop
add %rdi, %rdi
movl $0x61626364, (%rsi)
nop
nop
xor %rax, %rax
lea addresses_A_ht+0x95a, %rcx
nop
nop
nop
nop
and $40002, %r14
mov (%rcx), %rax
nop
dec %rcx
lea addresses_WT_ht+0xa3be, %r10
nop
inc %r8
vmovups (%r10), %ymm5
vextracti128 $1, %ymm5, %xmm5
vpextrq $1, %xmm5, %rcx
nop
nop
nop
nop
add %r10, %r10
lea addresses_UC_ht+0xb1a2, %rsi
lea addresses_WT_ht+0x13dfa, %rdi
xor %r14, %r14
mov $92, %rcx
rep movsq
nop
nop
nop
inc %rbx
lea addresses_D_ht+0x755a, %rax
nop
nop
nop
nop
nop
sub %r14, %r14
movw $0x6162, (%rax)
nop
nop
cmp %rbx, %rbx
lea addresses_normal_ht+0x1369a, %rsi
lea addresses_UC_ht+0x435a, %rdi
nop
nop
sub %r10, %r10
mov $55, %rcx
rep movsw
nop
nop
cmp %rax, %rax
lea addresses_A_ht+0x1715a, %r14
xor %rcx, %rcx
mov $0x6162636465666768, %rbx
movq %rbx, %xmm5
vmovups %ymm5, (%r14)
nop
sub $11316, %rsi
lea addresses_UC_ht+0x815a, %r10
nop
nop
nop
nop
nop
sub $34654, %rcx
movw $0x6162, (%r10)
nop
nop
nop
nop
nop
xor %r10, %r10
lea addresses_normal_ht+0x19e1e, %rsi
lea addresses_WC_ht+0x13f3c, %rdi
nop
nop
and %r14, %r14
mov $107, %rcx
rep movsl
nop
nop
sub %rdi, %rdi
lea addresses_D_ht+0x7f7a, %rdi
nop
nop
nop
nop
nop
and %r14, %r14
and $0xffffffffffffffc0, %rdi
vmovntdqa (%rdi), %ymm5
vextracti128 $0, %ymm5, %xmm5
vpextrq $0, %xmm5, %r8
nop
nop
nop
nop
nop
sub $60452, %rbx
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %rax
pop %r8
pop %r14
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r13
push %r14
push %r9
push %rcx
push %rdx
push %rsi
// Store
mov $0x7b903c0000000b7a, %r9
nop
add $11457, %rdx
movb $0x51, (%r9)
nop
nop
nop
inc %r9
// Load
lea addresses_WT+0x13d5a, %r13
nop
nop
sub %rcx, %rcx
mov (%r13), %esi
and $50619, %rsi
// Faulty Load
lea addresses_PSE+0x895a, %rsi
nop
nop
dec %r14
movups (%rsi), %xmm4
vpextrq $0, %xmm4, %r9
lea oracles, %rcx
and $0xff, %r9
shlq $12, %r9
mov (%rcx,%r9,1), %r9
pop %rsi
pop %rdx
pop %rcx
pop %r9
pop %r14
pop %r13
ret
/*
<gen_faulty_load>
[REF]
{'src': {'same': False, 'congruent': 0, 'NT': False, 'type': 'addresses_PSE', 'size': 4, 'AVXalign': False}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 2, 'NT': False, 'type': 'addresses_NC', 'size': 1, 'AVXalign': False}}
{'src': {'same': False, 'congruent': 9, 'NT': False, 'type': 'addresses_WT', 'size': 4, 'AVXalign': False}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'same': True, 'congruent': 0, 'NT': False, 'type': 'addresses_PSE', 'size': 16, 'AVXalign': False}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 0, 'NT': False, 'type': 'addresses_WC_ht', 'size': 16, 'AVXalign': False}}
{'src': {'type': 'addresses_UC_ht', 'congruent': 7, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_D_ht', 'congruent': 7, 'same': False}}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 4, 'NT': False, 'type': 'addresses_WC_ht', 'size': 16, 'AVXalign': False}}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 2, 'NT': False, 'type': 'addresses_WC_ht', 'size': 1, 'AVXalign': False}}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 5, 'NT': False, 'type': 'addresses_WC_ht', 'size': 4, 'AVXalign': False}}
{'src': {'same': False, 'congruent': 10, 'NT': False, 'type': 'addresses_A_ht', 'size': 8, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'same': False, 'congruent': 2, 'NT': False, 'type': 'addresses_WT_ht', 'size': 32, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_UC_ht', 'congruent': 3, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_WT_ht', 'congruent': 3, 'same': False}}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 5, 'NT': False, 'type': 'addresses_D_ht', 'size': 2, 'AVXalign': False}}
{'src': {'type': 'addresses_normal_ht', 'congruent': 6, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_UC_ht', 'congruent': 8, 'same': False}}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 11, 'NT': False, 'type': 'addresses_A_ht', 'size': 32, 'AVXalign': False}}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 9, 'NT': False, 'type': 'addresses_UC_ht', 'size': 2, 'AVXalign': False}}
{'src': {'type': 'addresses_normal_ht', 'congruent': 1, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_WC_ht', 'congruent': 1, 'same': False}}
{'src': {'same': False, 'congruent': 5, 'NT': True, 'type': 'addresses_D_ht', 'size': 32, 'AVXalign': False}, 'OP': 'LOAD'}
{'33': 506}
33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33
*/
| 26.641129 | 1,517 | 0.653701 |
d030281b5052f987906a4052f317d1dcdd2f3557 | 129 | asm | Assembly | libsrc/_DEVELOPMENT/error/z80/error_oc.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/error/z80/error_oc.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/error/z80/error_oc.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null |
SECTION code_error
PUBLIC error_oc
pop hl
error_oc:
; set hl = 1
; set carry flag
ld hl,1
scf
ret
| 7.588235 | 19 | 0.565891 |
8e409e44e04cec8e89183d19e5e55473968c0a10 | 2,473 | asm | Assembly | MATASANO/Problem5.asm | hwreverse/PC-G850V | 53a4dca7b31f940412e0ebddba395f2b8deda895 | [
"MIT"
] | 7 | 2020-09-30T19:56:39.000Z | 2021-09-30T12:05:18.000Z | MATASANO/Problem5.asm | hwreverse/PC-G850V | 53a4dca7b31f940412e0ebddba395f2b8deda895 | [
"MIT"
] | 1 | 2021-09-04T02:52:33.000Z | 2021-09-04T02:52:33.000Z | MATASANO/Problem5.asm | hwreverse/PC-G850V | 53a4dca7b31f940412e0ebddba395f2b8deda895 | [
"MIT"
] | 2 | 2021-09-03T12:28:16.000Z | 2021-09-30T13:47:01.000Z | 10 ORG 100H
20 JP MAIN
30WRASR EQU 0BFAFH
40PUTSTR EQU 0BFF1H
50INKEY EQU 089BEH
60PUTCHR EQU 0BE62H
70INITSR EQU 0871AH
80AOUT EQU 0BD09H
90OPENSR EQU 0BCE8H
100CLOSSR EQU 0BCEBH
110LRDSR EQU 0BD15H
120WAITK EQU 0BFCDH
130WCHRSR EQU 0BFAFH
140WSTSR EQU 0BFB2H
150A2HEX EQU 0F9BDH
160RPTCHR EQU 0BFEEH
170REGOUT EQU 0BD03H
200MAIN: CALL CLS
210 LD HL,GREET
220 CALL STRLN
230 LD DE,00000H
240 CALL PUTSTR
250 LD HL,SAMPLE
260 CALL STRLN
270 LD A,B
280 LD (LENGTH),A
290 LD DE,KEY
300MAIN00: LD A,(HL)
310 CP 0 ; end of the text
320 JP Z,THEEND
330 LD A,(DE) ; end of KEY
340 CP 0
350 JP NZ,MAIN01
360 LD DE,KEY ; Rotate back to start
370 LD A,(DE)
380MAIN01: LD B,(HL)
390 XOR B
400 LD (HL),A
410 INC HL
420 INC DE
430 JP MAIN00 ; loop
440THEEND: LD A,(LENGTH)
450 LD B,A
460 LD HL,BUFFER
470 LD DE,SAMPLE
480END00: LD A,(DE)
490 INC DE
500 CALL HEXIFY
510 DJNZ END00
520 LD (HL),0
530 LD HL,BUFFER
540 LD B,74
550 LD DE,0100H
560 CALL PUTSTR
570 CALL WAIT
580 INC HL
590 LD B,74
600 LD DE,0100H
610 CALL PUTSTR
620 LD HL,FINALM
630 CALL STRLN
640 LD DE,0500H
650 CALL PUTSTR
660 CALL WAIT
670 CALL CLS
999 RET
3000DEHEX: LD A,(DE)
3010 INC DE
3020 CALL HALF
3030 SLA A
3040 SLA A
3050 SLA A
3060 SLA A
3070 PUSH BC
3080 LD B,A
3090 LD A,(DE)
3100 INC DE
3110 CALL HALF
3120 ADD A,B
3130 LD (HL),A
3140 INC HL
3150 POP BC
3160 DJNZ DEHEX
3170 LD (HL),0
3180 RET
3190WAIT: CALL WAITK
3200 CP 0
3210 JP Z,WAIT
3220 RET
3230CLS: LD B,144
3240 LD DE,0
3250CLS0: LD A,32
3260 CALL RPTCHR
3270 RET
3280CLLN: LD B,24
3290 LD E,0
3300 JP CLS0
3310HEXIFY: PUSH AF
3320 AND 0F0H
3330 RRCA
3340 RRCA
3350 RRCA
3360 RRCA
3370 CALL NIBBLE
3380 INC HL
3390 POP AF
3400 AND 15
3410 CALL NIBBLE
3420 INC HL
3430 RET
3440NIBBLE: SUB 10
3450 JP M,ZERO9
3460 ADD A,7
3470ZERO9: ADD A,58
3480 LD (HL),A
3490 RET
3500STRLN: LD B,0
3510 PUSH HL
3520STRLN0: LD A,(HL)
3530 CP 0
3540 JP Z,STRLN1
3550 INC HL
3560 INC B
3570 JP STRLN0
3580STRLN1: POP HL
3590 RET
3600HALF: SUB 48
3610 CP 10
3620 JP M,HALF9
3630 SUB 7
3640HALF9: RET
5000GREET: DB 'Matasano Challenge 5'
5010 DB 0
5020BUFFER: DEFS 180
5030LENGTH: DB 0
5040POSB: DB 0,0
5050POSS: DB 0,0
5060KEY: DB 'ICE'
5070KEYT: DB 0
5080SAMPLE:DB 'Burning '
5090 DB 39,'em, if you ain'
5100 DB 39
5110 DB 't quick and nimble'
5120 DB 10
5130 DB 'I go crazy '
5140 DB 'when I hear a cymbal'
5150SAMPLX: DB 0
5160MSG00: DB 0,0,' ['
5170MSG01: DB 0,'] ^ '
5180MSG03: DB 0,0,' --> '
5190MSG02: DB 0,0,0
5200FINALM: DB '[correct answer!]',0
| 15.265432 | 36 | 0.738374 |
63ffb1d2b5159f630c8d194278b6af76d8cdfb0b | 4,657 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_1221.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_1221.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_1221.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 %r14
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x1d54b, %r9
clflush (%r9)
nop
nop
nop
nop
nop
add $7936, %rdi
movb (%r9), %r12b
nop
nop
nop
add $10578, %rcx
lea addresses_WC_ht+0xe20, %rcx
nop
nop
nop
add $11979, %rsi
mov $0x6162636465666768, %r14
movq %r14, %xmm0
and $0xffffffffffffffc0, %rcx
movntdq %xmm0, (%rcx)
and $44179, %r14
lea addresses_A_ht+0x189f0, %r14
clflush (%r14)
nop
nop
nop
nop
nop
cmp %rbx, %rbx
movups (%r14), %xmm6
vpextrq $1, %xmm6, %rdi
nop
inc %r14
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %r9
pop %r14
pop %r12
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r15
push %r9
push %rax
push %rbp
push %rsi
// Faulty Load
lea addresses_RW+0x28b0, %rbp
nop
nop
nop
nop
nop
cmp $39902, %r11
movb (%rbp), %al
lea oracles, %rsi
and $0xff, %rax
shlq $12, %rax
mov (%rsi,%rax,1), %rax
pop %rsi
pop %rbp
pop %rax
pop %r9
pop %r15
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'size': 8, 'NT': False, 'type': 'addresses_RW', 'same': False, 'AVXalign': False, 'congruent': 0}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'size': 1, 'NT': False, 'type': 'addresses_RW', 'same': True, 'AVXalign': False, 'congruent': 0}}
<gen_prepare_buffer>
{'OP': 'LOAD', 'src': {'size': 1, 'NT': False, 'type': 'addresses_WT_ht', 'same': False, 'AVXalign': False, 'congruent': 0}}
{'OP': 'STOR', 'dst': {'size': 16, 'NT': True, 'type': 'addresses_WC_ht', 'same': False, 'AVXalign': False, 'congruent': 4}}
{'OP': 'LOAD', 'src': {'size': 16, 'NT': False, 'type': 'addresses_A_ht', 'same': False, 'AVXalign': False, 'congruent': 3}}
{'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
*/
| 48.010309 | 2,999 | 0.661799 |
031731dc7d0c17260f8e87bc72ba7ef4b4b48fcb | 13,484 | asm | Assembly | software/pcx86/bdsrc/dos/dosints.asm | fatman2021/basicdos | d5de65300632632dd0f5a4d9335d38b4aa39d268 | [
"MIT"
] | 59 | 2020-12-22T21:02:32.000Z | 2022-02-16T05:53:49.000Z | software/pcx86/bdsrc/dos/dosints.asm | fatman2021/basicdos | d5de65300632632dd0f5a4d9335d38b4aa39d268 | [
"MIT"
] | null | null | null | software/pcx86/bdsrc/dos/dosints.asm | fatman2021/basicdos | d5de65300632632dd0f5a4d9335d38b4aa39d268 | [
"MIT"
] | 5 | 2020-12-24T03:07:40.000Z | 2022-02-03T18:40:55.000Z | ;
; BASIC-DOS Driver/Application Interface Entry Points
;
; @author Jeff Parsons <Jeff@pcjs.org>
; @copyright (c) 2020-2021 Jeff Parsons
; @license MIT <https://basicdos.com/LICENSE.txt>
;
; This file is part of PCjs, a computer emulation software project at pcjs.org
;
include macros.inc
include 8086.inc
include bios.inc
include dos.inc
include dosapi.inc
DOS segment word public 'CODE'
EXTWORD <FUNCTBL>
EXTABS <FUNCTBL_SIZE,UTILTBL_SIZE>
EXTWORD <scb_active>
EXTBYTE <scb_locked,int_level>
EXTNEAR <msc_readctrlc,msc_sigerr>
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; dos_dverr (INT 00h)
;
; If a "divide exception" occurs, this default handler reports it and then
; aborts the current program.
;
DEFPROC dos_dverr,DOSFAR
IFDEF MAXDEBUG
DBGBRK
ENDIF
push ax
IFNDEF DEBUG
PRINTF <"Division error",13,10>
ELSE
;
; Print the 32-bit return address on the stack, and since it's already on
; the stack, we don't have to push it, which means PRINTF won't try to pop it
; either. However, since we had to push AX (the only register that PRINTF
; modifies), we must include a special PRINTF formatter (%U) that skips one
; 16-bit value on the stack.
;
PRINTF <"Division error @%U%08lx",13,10>
ENDIF
call msc_sigerr
pop ax
IFDEF DEBUG
iret
ELSE
mov ah,EXTYPE_DVERR
jmp dos_abort
ENDIF
ENDPROC dos_dverr
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; dos_sstep (INT 01h)
;
; If a trace interrupt (or an explicit INT 10h) occurs, and no debugger
; is currently running, we catch it here and ignore it.
;
DEFPROC dos_sstep,DOSFAR
iret
ENDPROC dos_sstep
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; dos_brkpt (INT 03h)
;
; If a breakpoint interrupt occurs, and no debugger is currently running,
; we catch it here and ignore it.
;
DEFPROC dos_brkpt,DOSFAR
iret
ENDPROC dos_brkpt
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; dos_oferr (INT 04h)
;
; If an "overflow exception" occurs, this default handler reports it and
; signals the error.
;
DEFPROC dos_oferr,DOSFAR
IFDEF MAXDEBUG
DBGBRK
ENDIF
push ax
IFNDEF DEBUG
PRINTF <"Overflow error",13,10>
ELSE
;
; Print the 32-bit return address on the stack, and since it's already on
; the stack, we don't have to push it, which means PRINTF won't try to pop it
; either. However, since we had to push AX (the only register that PRINTF
; modifies), we must include a special PRINTF formatter (%U) that skips one
; 16-bit value on the stack.
;
PRINTF <"Overflow error @%U%08lx",13,10>
ENDIF
call msc_sigerr
pop ax
IFDEF DEBUG
iret
ELSE
mov ah,EXTYPE_OVERR
jmp dos_abort
ENDIF
ENDPROC dos_oferr
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; dos_opchk (INT 06h)
;
; This interrupt is used by DEBUG builds to perform "operation checks",
; based on the byte that follows the INT 06h instruction; eg:
;
; CCh: breakpoint
; F9h: assertion failure
; FBh: 32-bit multiply check
; FCh: 32-bit division check
;
; If the 8086 emulation environment isn't set up to intercept INT 06h and
; perform these checks, this handler ensures the checks are harmless.
;
DEFPROC dos_opchk,DOSFAR
IFDEF DEBUG
push bp
mov bp,sp
push ax
push si
push ds
lds si,dword ptr [bp+2] ; DS:SI = CS:IP from stack
cld
lodsb
mov [bp+2],si ; update CS:IP to skip OPCHECK byte
cmp al,OP_ASSERT ; OP_ASSERT?
jnz oc9 ; no
sub si,3 ; display the address of the INT 06h
; PRINTF <"Assertion failure @%08lx",13,10>,si,ds
DBGBRK
oc9: pop ds
pop si
pop ax
pop bp
ENDIF
;
; Even if you mistakenly run a DEBUG binary on a non-DEBUG system (which
; means all that's here is this IRET), any operation check should still be
; innocuous (but that's neither guaranteed nor recommended).
;
iret
ENDPROC dos_opchk
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; dos_term (INT 20h)
;
; NOTE: In PC DOS, this interrupt, as well as INT 21h AH=00h, apparently
; requires the call to be made from the segment containing the PSP (CS == PSP).
; We do not. Also, the underlying function here (DOS_PSP_TERM) sets a default
; exit code (we use zero), whereas DOS_PSP_RETURN (4Ch) allows any exit code
; to be returned.
;
DEFPROC dos_term,DOSFAR
mov ah,DOS_PSP_TERM
int 21h
iret
ENDPROC dos_term
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; dos_restart
;
; Default CTRLC response handler; if carry is set, call DOS_PSP_RETURN with
; (arbitrary) exit code -1.
;
; Inputs:
; Carry determines whether we exit the process or restart the DOS call
;
; Outputs:
; None
;
DEFPROC dos_restart,DOSFAR
jnc dos_func
mov ah,EXTYPE_CTRLC
DEFLBL dos_abort,near
mov al,0FFh ; AL = exit code
xchg dx,ax ; DL = exit code, DH = exit type
DOSUTIL TERM
ASSERT NEVER ; assert that we never get here
ENDPROC dos_restart
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; dos_func (INT 21h)
;
; Inputs:
; Varies
;
; Outputs:
; Varies
;
DEFPROC dos_func,DOSFAR
cld ; we assume CLD everywhere
sub sp,size WS_TEMP
push ax ; order of pushes must match REG_FRAME
push bx
push cx
push dx
DEFLBL dos_enter,near
push ds
push si
push es
push di
push bp
mov bp,sp
dc0: IF REG_CHECK ; in DEBUG builds, use CALL to push
call dos_check ; a marker ("dos_check") onto the stack
ENDIF ; which REG_CHECK checks will verify
DEFLBL dos_check,near
;
; While we assign DS and ES to the DOS segment on DOS function entry, we
; do NOT assume they will still be set that way when the FUNCTBL call returns.
;
mov bx,cs
mov ds,bx
ASSUME DS:DOS
mov es,bx
ASSUME ES:DOS
mov bx,[scb_active]
ASSERT STRUCT,[bx],SCB
inc [bx].SCB_INDOS
;
; Utility functions don't automatically re-enable interrupts, clear carry,
; or check for CTRLC, since some of them are called from interrupt handlers.
;
cmp ah,80h ; utility function?
jb dc1 ; no
sub ah,80h
cmp ah,UTILTBL_SIZE ; utility function within range?
jae dos_leave ; no
mov bl,ah
add bl,FUNCTBL_SIZE ; the utility function table
jmp short dc2 ; follows the DOS function table
dc1: sti
and [bp].REG_FL,NOT FL_CARRY
cmp ah,FUNCTBL_SIZE
cmc
jb dc3
IFDEF MAXDEBUG
push ax
mov al,ah
;
; %P is a special formatter that prints the caller's REG_CS:REG_IP-2 in hex;
; "#010" ensures it's printed with "0x" and 8 digits with leading zeroes.
;
DPRINTF 'd',<"%#010P: DOS function %02bxh\r\n">,ax
pop ax
ENDIF ; MAXDEBUG
;
; If CTRLC checking is enabled for all (non-utility) functions and a CTRLC
; was detected (two conditions that we check with a single compare), signal it.
;
cmp word ptr [bx].SCB_CTRLC_ALL,0101h
je dc4 ; signal CTRLC
mov bl,ah
dc2: mov bh,0 ; BX = function #
add bx,bx ; convert function # to word offset
;
; For convenience, general-purpose registers AX, CX, DX, SI, DI, and SS
; contain their original values.
;
call FUNCTBL[bx]
ASSUME DS:NOTHING, ES:NOTHING
;
; We'd just as soon IRET to the caller (which also restores their D flag),
; so we now update FL_CARRY on the stack (which we already cleared on entry).
;
dc3: adc [bp].REG_FL,0
DEFLBL dos_leave,near
IF REG_CHECK ; in DEBUG builds, check the "marker"
pop bx ; that we pushed on entry
ASSERT Z,<cmp bx,offset dos_check>
ENDIF
;
; Whenever the session's INDOS count returns to zero, check for a pending
; SCSTAT_ABORT; if set AND we're not in the middle of a hardware interrupt,
; clear the ABORT condition and simulate a DOSUTIL TERM session abort.
;
mov bx,[scb_active]
ASSERT STRUCT,cs:[bx],SCB
dec cs:[bx].SCB_INDOS
ASSERT GE
jnz dos_leave2
test cs:[bx].SCB_STATUS,SCSTAT_ABORT
jz dos_leave2
cmp word ptr [scb_locked],-1; do NOT abort if session or driver
jne dos_leave2 ; lock levels are >= 0
and cs:[bx].SCB_STATUS,NOT SCSTAT_ABORT
;
; WARNING: This simulation of DOSUTIL TERM takes a shortcut by not updating
; REG_AH or REG_DX in REG_FRAME, but neither utl_term nor psp_termcode rely
; on REG_FRAME for their inputs, so while this is not completely kosher, we'll
; be fine. The same is true for the termination code in int_leave.
;
mov dx,(EXTYPE_ABORT SHL 8) OR 0FFh
mov ah,DOS_UTL_TERM + 80h
jmp dc0
dc4: jmp msc_readctrlc
DEFLBL dos_leave2,near
pop bp
pop di
pop es
ASSUME ES:NOTHING
pop si
pop ds
ASSUME DS:NOTHING
pop dx
pop cx
pop bx
pop ax
add sp,size WS_TEMP
iret
ENDPROC dos_func
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; dos_exit (INT 22h handler)
;
DEFPROC dos_exit,DOSFAR
ASSERT NEVER ; assert that we never get here
jmp near ptr dos_term
ENDPROC dos_exit
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; dos_ctrlc (INT 23h handler)
;
DEFPROC dos_ctrlc,DOSFAR
push ax
mov ah,DOS_DSK_RESET
int 21h
pop ax
stc ; set carry to indicate termination
ret
ENDPROC dos_ctrlc
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; dos_error (INT 24h handler)
;
; Outputs:
; AL = 0: ignore error
; AL = 1: retry operation
; AL = 2: abort program via INT 23h
; AL = 3: fail system call in progress
;
DEFPROC dos_error,DOSFAR
mov al,CRERR_ABORT ; default to 2 (abort via INT 23h)
iret
ENDPROC dos_error
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; dos_default (currently used for INT 28h and INT 2Ah-2Fh)
;
DEFPROC dos_default,DOSFAR
iret
ENDPROC dos_default
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; disk_read (INT 25h)
;
; TODO
;
DEFPROC disk_read,DOSFAR
iret
ENDPROC disk_read
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; disk_write (INT 26h)
;
; TODO
;
DEFPROC disk_write,DOSFAR
iret
ENDPROC disk_write
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; dos_tsr (INT 27h)
;
; TODO
;
DEFPROC dos_tsr,DOSFAR
iret
ENDPROC dos_tsr
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; dos_call5 (INT 30h)
;
; We typically arrive here via NEAR CALL 0005h to FAR CALL to FAR JMP in
; vector 30h. We should be able to transform that into an INT 21h by "simply"
; moving the NEAR CALL return address into the FAR CALL return address, then
; replacing the NEAR CALL return address with the current flags, and finally
; moving the DOS function # from CL to AH.
;
; Not being familiar with the CALL 0005h interface, whether that's actually
; sufficient remains to be seen.
;
DEFPROC dos_call5,DOSFAR
push bp
mov bp,sp
mov ax,[bp+6]
mov [bp+2],ax
pushf ; since we didn't arrive here via INT,
pop [bp+6] ; these flags should have interrupts on
pop bp
mov ah,cl
jmp near ptr dos_func
ENDPROC dos_call5
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; dos_util (INT 32h)
;
; We could jump straight to dos_func after adjusting the function number,
; but if a breakpoint has been set on dos_func, we'd rather not have dos_util
; calls triggering it as well; hence the redundant CLD and jmp + 1.
;
DEFPROC dos_util,DOSFAR
cld
add ah,80h
jmp near ptr dos_func + 1 ; avoid the same entry point as INT 21h
ENDPROC dos_util
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; int_enter
;
; DDINT_ENTER is "revectored" here by sysinit.
;
; Inputs:
; None
;
; Outputs:
; Carry clear (DOS interrupt processing enabled)
;
DEFPROC int_enter,DOSFAR
inc [int_level]
clc
ret
ENDPROC int_enter
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; int_leave
;
; DDINT_LEAVE is "revectored" here by sysinit.
;
; Inputs:
; Carry set to reschedule, assuming int_level has dropped below zero
;
; Outputs:
; None
;
DEFPROC int_leave,DOSFAR
cli
dec [int_level]
jge ddl9
jnc ddl9
;
; Enter DOS to perform a reschedule.
;
; However, we first take a peek at the current SCB's INDOS count and
; ABORT flag; if the count is zero and the flag is set, force termination.
;
cld
sub sp,size WS_TEMP
push ax
push bx
push cx
push dx
mov ah,DOS_UTL_YIELD + 80h
mov bx,cs:[scb_active]
cmp cs:[bx].SCB_INDOS,0
jne ddl8
test cs:[bx].SCB_STATUS,SCSTAT_ABORT
jz ddl8
and cs:[bx].SCB_STATUS,NOT SCSTAT_ABORT
mov dx,(EXTYPE_ABORT SHL 8) OR 0FFh
mov ah,DOS_UTL_TERM + 80h
ddl8: jmp dos_enter
ddl9: iret
ENDPROC int_leave
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; func_none (handler for unimplemented DOS functions)
;
; Inputs:
; Varies
;
; Outputs:
; REG_AX = ERR_INVALID, carry set
;
DEFPROC func_none,DOS
IFDEF DEBUG
mov al,ah
;
; %P is a special formatter that prints the caller's REG_CS:REG_IP-2 in hex;
; "#010" ensures it's printed with "0x" and 8 digits with leading zeroes.
;
DPRINTF 'd',<"%#010P: unsupported DOS function %02bxh\r\n">,ax
ENDIF ; DEBUG
mov [bp].REG_AX,ERR_INVALID
stc
ret
ENDPROC func_none
DOS ends
end
| 25.016698 | 80 | 0.616286 |
0c037f69282df2bf2df3e6aded0adcbdc98191c3 | 631 | asm | Assembly | oeis/036/A036085.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/036/A036085.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/036/A036085.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A036085: Centered cube numbers: (n+1)^7 + n^7.
; 1,129,2315,18571,94509,358061,1103479,2920695,6880121,14782969,29487171,55318979,98580325,168162021,276272879,439294831,678774129,1022558705,1506091771,2173871739,3081088541,4295446429,5899183335,7991296871,10689987049,14135325801,18492163379,23953281715,30742804821,39119876309,49382614111,61872352479,76978181345,95141793121,116862647019,142703460971,173296041229,209347459725,251646589271,301071006679,358594273881,425293607129,502357944355,591096420771,692947262789,809487110341,942440777679
mov $1,$0
pow $0,7
add $1,1
pow $1,7
add $0,$1
mul $0,2
div $0,4
mul $0,2
add $0,1
| 48.538462 | 497 | 0.832013 |
d6a9d213afdae9a1807828109cd72d86dd369776 | 732 | asm | Assembly | kernel/amd64/src/atomic.asm | betopp/pathetix | a18a1211f6f3ca3c9ebd0e3de6784ae0591d1265 | [
"MIT"
] | null | null | null | kernel/amd64/src/atomic.asm | betopp/pathetix | a18a1211f6f3ca3c9ebd0e3de6784ae0591d1265 | [
"MIT"
] | null | null | null | kernel/amd64/src/atomic.asm | betopp/pathetix | a18a1211f6f3ca3c9ebd0e3de6784ae0591d1265 | [
"MIT"
] | null | null | null | ;atomic.asm
;Atomic counters for amd64
;Bryan E. Topp <betopp@betopp.com> 2021
section .text
bits 64
global hal_atomic_inc ;uint64_t hal_atomic_inc(hal_atomic_t *atom);
hal_atomic_inc:
mov EAX, [RDI] ;Get old value
mov ECX, EAX
inc ECX ;Make incremented value aside from old value
lock cmpxchg [RDI], ECX ;Compares value in memory with EAX (old value), if eq, replaces with ECX (incremented)
jnz hal_atomic_inc ;Try again if somebody else got there first
mov EAX, ECX ;Return the value written
ret
global hal_atomic_dec ;uint64_t hal_atomic_dec(hal_atomic_t *atom);
hal_atomic_dec:
mov EAX, [RDI]
mov ECX, EAX
dec ECX ;Only difference from hal_atomic_inc
lock cmpxchg [RDI], ECX
jnz hal_atomic_dec
mov EAX, ECX
ret
| 27.111111 | 111 | 0.769126 |
3187d41e42b5ea5fa8cb81d639dccefcb3e1494f | 10,892 | asm | Assembly | RFID-emulator/Common/RFID_Emulator_rf.asm | kbembedded/DC21-darknet-RFID | 54e42b534671cf00e4a834b4785633a038a8a38f | [
"MIT"
] | 5 | 2015-08-10T03:44:46.000Z | 2017-11-29T15:04:33.000Z | RFID-emulator/Common/RFID_Emulator_rf.asm | kbembedded/DC21-darknet-RFID | 54e42b534671cf00e4a834b4785633a038a8a38f | [
"MIT"
] | null | null | null | RFID-emulator/Common/RFID_Emulator_rf.asm | kbembedded/DC21-darknet-RFID | 54e42b534671cf00e4a834b4785633a038a8a38f | [
"MIT"
] | 2 | 2015-12-07T01:10:58.000Z | 2020-06-12T04:07:47.000Z | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; ;;
; RFID Emulator - RF LIBRARY ;
;; ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
#INCLUDE "p12f683.inc"
#INCLUDE "RFID_Emulator_rf.inc"
GLOBAL _initRF, _ISRTimer1RF
GLOBAL _txManchester1, _txManchester0, _txBiphase1, _txBiphase0
GLOBAL _drive0, _drive1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; ;;;
;; VARIABLES ;;
;;; ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
UDATA
RF_FLAGS RES 1
TMP_CLOCKS_PER_BIT RES 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; ;;;
;; CODE ;;
;;; ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
CODE
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; ;;;
;; ;;
; Function: _initRF ;
; Desc.: Initialize the RF ;
; Params.: W -> CARRIER CLOCKS PER BIT ;
; Vars: TMP ;
; ;
; Notes: The TMR1 interruption is activated. ;
;; ;;
;;; ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
_initRF
MOVWF TMP_CLOCKS_PER_BIT ; Backup of the CLOCK_PER_BIT value stored in W
;MOVLW b'00010100' ; Comparator Output Inverted. CIN- == GP1 ; CIN+ == CVref
MOVLW b'00000011' ; Comparator Output NOT Inverted. CIN- == GP1 ; CIN+ == CVref; COUT PIN enabled
MOVWF CMCON0
BANKSEL TRISIO ; Bank 1
MOVLW b'00000010' ; GP1 as analog input. Rest as digital
MOVWF ANSEL
;MOVLW b'10100011' ; Voltage Regulator ON; Low range; 0.625 volts (Vdd=5V)
MOVLW b'10100000' ; Voltage Regulator ON; Low range; 0.04 Vdd
;MOVLW b'10000000' ; Voltage Regulator ON; HIGH range; 0.750 Vdd
MOVWF VRCON
BSF DEMODULATOR_TRIS ; Demodulator pin as input
;BANKSEL PIE1 ; Bank 1
BSF COIL1_TRIS ; Coil pins as input
BSF COIL2_TRIS
CLRF PIE1 ; Activate the Timer1 Interruption
BSF PIE1, TMR1IE
BANKSEL PIR1 ; Bank 0
BCF COIL1 ; COIL1 connected to GND (if COIL1_TRIS = 0)
BCF PIR1, TMR1IF ; Clear the TMR1IF flag
MOVLW b'11000000' ; Activate GIE and PEIE
MOVWF INTCON
MOVLW 0xFF ; Write the Timer1 upper byte
MOVWF TMR1H
; Write the Timer1 lower byte. TMR1L = 0 - CLOCKS_PER_BIT/2
BCF STATUS, C
RRF TMP_CLOCKS_PER_BIT, W ; CLOCKS_PER_BIT / 2 -> W
ADDLW -2 ; Tuning.
CLRF TMR1L ; TMR1L = 0
SUBWF TMR1L, F
IFDEF DEBUG
MOVLW b'00110001' ; Timer1: internal clock source, synchronous, prescalerx8.
ELSE
MOVLW b'00000111' ; Timer1: external clock source, synchronous, no prescaler.
ENDIF
MOVWF T1CON ; Timer1 config
CLRF RF_FLAGS ; Clear the RF flags
RETURN
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; ;;;
;; ;;
; Function: _ISRTimer1RF ;
; Desc.: Timer1 Interruption Service Routine ;
; Vars: ;
; ;
; Notes: ;
;; ;;
;;; ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
_ISRTimer1RF
BCF PIR1, TMR1IF ; Cleart the TMR1F flag
BANKSEL PIE1 ; Bank 1
BTFSS PIE1, TMR1IE ; Check for ghost interrupts
RETURN ; WARNING! Return with the Bank 1 selected
BANKSEL TMR1H ; Bank 0
MOVLW 0xFF ; Write the Timer1 upper byte
MOVWF TMR1H
; Write the Timer1 lower byte. TMR1L = 0 - CLOCKS_PER_BIT/2
BCF STATUS, C
RRF TMP_CLOCKS_PER_BIT, W ; CLOCKS_PER_BIT / 2 -> W
ADDLW -2 ; Tuning.
CLRF TMR1L ; TMR1L = 0
SUBWF TMR1L, F
BSF RF_FLAGS, FLAG_OUTPUT_READY
RETURN
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; ;;;
;; ;;
; Function: _txManchester1 ;
; Desc.: Transmit a Manchester encoded 1 bit ;
; Vars: ;
; ;
; Notes: ;
;; ;;
;;; ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
_txManchester1
WAIT_RF_IS_READY
RF_0
WAIT_RF_IS_READY
RF_1
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; ;;;
;; ;;
; Function: _txManchester0 ;
; Desc.: Transmit a Manchester encoded 0 bit ;
; Vars: ;
; ;
; Notes: ;
;; ;;
;;; ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
_txManchester0
WAIT_RF_IS_READY
RF_1
WAIT_RF_IS_READY
RF_0
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; ;;;
;; ;;
; Function: _txBiphase1 ;
; Desc.: Transmit a Manchester encoded 1 bit ;
; Vars: ;
; ;
; Notes: ;
;; ;;
;;; ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
_txBiphase1
WAIT_RF_IS_READY
RF_TOGGLE
WAIT_RF_IS_READY
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; ;;;
;; ;;
; Function: _txBiphase0 ;
; Desc.: Transmit a Manchester encoded 0 bit ;
; Vars: ;
; ;
; Notes: ;
;; ;;
;;; ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
_txBiphase0
WAIT_RF_IS_READY
RF_TOGGLE
WAIT_RF_IS_READY
RF_TOGGLE
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; ;;;
;; ;;
; Functions: _drive0 and _drive1 ;
; Desc.: Transmit a 1/2 bit time 0 or 1 ;
; Vars: ;
; ;
; Notes: ;
;; ;;
;;; ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
_drive0
WAIT_RF_IS_READY
RF_0
RETURN
_drive1
WAIT_RF_IS_READY
RF_1
RETURN
END | 37.174061 | 112 | 0.224936 |
eefacd4f059adf26e55f1628a61483c590506d5a | 5,115 | asm | Assembly | Driver/Net/Comm/commInit.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Driver/Net/Comm/commInit.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Driver/Net/Comm/commInit.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 73 | 2018-11-19T20:46:53.000Z | 2022-03-29T00:59:26.000Z | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: Comm
FILE: commInit.asm
AUTHOR: Andrew Wilson, May 20, 1993
REVISION HISTORY:
Name Date Description
---- ---- -----------
atw 5/20/93 Initial revision
DESCRIPTION:
Holds init code
$Id: commInit.asm,v 1.1 97/04/18 11:48:47 newdeal Exp $
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
InitExitCode segment resource
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CommInit
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: driver init routine for Comm driver
CALLED BY: CommInitStub()
PASS: none
RETURN: carry - set if error
DESTROYED: ds
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
gene 4/28/93 broke out from CommInit
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
CommInit proc far
uses ax,bx,cx,dx,si
.enter
;
; Allocate a block & init for the port chunk array
;
mov bx, handle 0 ; COMMDRV owns it
mov ax, 128 ;initial block size
mov cx, (((mask HAF_LOCK)) shl 8) or \
mask HF_SWAPABLE or mask HF_SHARABLE
call MemAllocSetOwner
jc quit ;branch if error
mov ds, ax
mov ax, LMEM_TYPE_GENERAL
mov dx, size LMemBlockHeader
mov cx, 2 ;2 initial handles
mov si, 64 ;initial heap size
call LMemInitHeap
push bx ;save block handle
mov bx, size PortStruct ;bx <- element size
clr cx ;cx <- no extra space
clr al ;al <- ObjChunkFlags
clr si ;si <- allocate chunk
call ChunkArrayCreate ; *ds:si - array
pop bx ;bx <- handle of port array
;
; Save the chunk and block handle for later access
;
segmov ds,dgroup, ax
mov ds:[portArrayOffset], si ;save chunk of port array
mov ds:[lmemBlockHandle], bx ;save block handle of array
call MemUnlock
;
; Register the Comm driver with the net library as a new domain
;
call RegisterCommDriver
clc ;carry <- no error
quit:
.leave
ret
CommInit endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
RegisterCommDriver
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Registers the COMM domain
CALLED BY: CommInit()
PASS: none
RETURN: nothing
DESTROYED: ax, bx, cx, dx
PSEUDO CODE/STRATEGY:
REVISION HISTORY:
Name Date Description
---- ---- -----------
ISR 10/21/92 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
RegisterCommDriver proc near
uses dx, si
.enter
mov cx, segment CommStrategy
mov dx, offset CommStrategy ;cx:dx <- strategy to register
segmov ds, cs
mov si, offset commDomainName ;ds:si <- ptr to domain name
mov bx, handle 0 ;bx <- handle of Comm driver
call NetRegisterDomain
.leave
ret
RegisterCommDriver endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CommExit
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: driver exit routine for Comm driver
CALLED BY: CommExitStub
PASS: none
RETURN: none
DESTROYED: none
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
gene 4/28/93 broke out from CommExit
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
CommExit proc far
uses ax, bx, cx, dx, di
.enter
; This can be called twice in the event of a dirty shutdown, so we
; just exit if the lmemBlockHandle has already been freed.
segmov es,dgroup,si
clr bx
xchg bx, es:[lmemBlockHandle]
tst bx
jz exit
push bx
call MemLockExcl
mov ds,ax
mov si, es:[portArrayOffset] ;*ds:si - ChunkArray
mov bx, cs
mov di, offset cs:ClosePortCallBack
call ChunkArrayEnum
pop bx
call MemFree ; free LMem Block
exit:
.leave
ret
CommExit endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ClosePortCallBack
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Close all ports being enumerated
CALLED BY: CommExitFar() via ChunkArrayEnum()
PASS: *ds:si - array
ds:di - element (PortStruct)
RETURN: carry - set to abort
DESTROYED: nothing
PSEUDO CODE/STRATEGY:
close stream for the port (thus sending a message to the callback
routine)
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
ISR 7/31/92 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
ClosePortCallBack proc far
uses es,ds
.enter
;
; Is this a deleted port?
;
cmp ds:[di].PS_number, DELETED_PORT_NUMBER
je exit
call ClosePortAndAwaitAck
clc ;carry <- don't abort
exit:
.leave
ret
ClosePortCallBack endp
InitExitCode ends
| 24.127358 | 79 | 0.53392 |
d1ad17568c4781b47ee33f4a01e7a791e8a19f03 | 4,546 | asm | Assembly | Driver/Printer/PrintCom/Stream/DMA/dmaDataOutRedwood.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Driver/Printer/PrintCom/Stream/DMA/dmaDataOutRedwood.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Driver/Printer/PrintCom/Stream/DMA/dmaDataOutRedwood.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 73 | 2018-11-19T20:46:53.000Z | 2022-03-29T00:59:26.000Z | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1993 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Printer Drivers
FILE: dmaDataOutRedwood.asm
AUTHOR: Dave Durran
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:
Name Date Description
---- ---- -----------
Dave 4/93 Initial version
DESCRIPTION:
contains the routines to write DMA Data out in
the Redwood devices
$Id: dmaDataOutRedwood.asm,v 1.1 97/04/18 11:49:30 newdeal Exp $
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
PrintDMADataOut
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Initialize the DMA controller for printing
CALLED BY: INTERNAL
PASS: es - PState segment
ds:si - data
cx - length in bytes.
RETURN: carry set on error.
DESTROYED: nothing
PSEUDO CODE/STRATEGY:
DMA some data out using channel 1 in demand transfer mode.
KNOWN BUGS/SIDE EFFECTS/IDEAS:
none
REVISION HISTORY:
Name Date Description
---- ---- -----------
Dave 04/93 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
PrintDMADataOut proc near
uses ax,bx,cx,dx,di
.enter
dec cx ;cx = number of bytes - 1
push cx
mov bx,ds
mov cl,4 ; number of shifting: 4 times.
rol bx,cl ; ds = sssszzzzxxxxyyyy
pop cx ; --> bx = zzzzxxxxyyyyssss
mov ah,bl ; get upper 4 bit of ds, page address.
and bl,11110000b
add bx,si ; add offset
; bx = start offset of the real address.
jnc pageAddOK ; if no carry, page address OK
inc ah ; adjust page address.
pageAddOK:
and ah,00001111b ; AH = page address of the real address.
mov dx,bx
add dx,cx ; DX = end offset of the real address.
cmp dx,bx ; Is the end offset correct?
jb error ; no, it is illegal, exit.
INT_OFF ;no interrupts, please.
;first we disable -DREQs while programming the chip.
mov dx,ax ;save ax
mov al,REDWOOD_DMA_SET_MASK
out PC_SINGLE_REQUEST_MASK,al ; set request mask flag on DMA.
call PrintDMADataOutWaitLoop
mov ax,dx ;recover ax
;reset the byte order flip flop on the chip
out PC_CLEAR_FLIP_FLOP,al ; clear byte flip-flop.
call PrintDMADataOutWaitLoop
;set demand transfer, increment, read, and no auto-init.
mov al,REDWOOD_DMA_MODE ;assume forward
cmp es:[PS_redwoodSpecific].RS_direction,PRINT_DIRECTION_REVERSE
jne modeForDMAOK
mov al,REDWOOD_DMA_DEC_MODE ; ok load the backwards direction.
modeForDMAOK:
out PC_CHANNEL_MODE,al ; set mode register on DMA.
call PrintDMADataOutWaitLoop
mov al,ah
out CHANNEL_ONE_PAGE,al ; set page register for DMA.
call PrintDMADataOutWaitLoop
cmp es:[PS_redwoodSpecific].RS_direction,PRINT_DIRECTION_REVERSE
jne offsetOK
add bx,cx ; add the count to get to end.
offsetOK:
mov al,bl
out CHANNEL_ONE_OFFSET,al ; set low byte of starting address
call PrintDMADataOutWaitLoop
mov al,bh
out CHANNEL_ONE_OFFSET,al ; set high byte of starting address
call PrintDMADataOutWaitLoop
mov al,cl
out CHANNEL_ONE_COUNT,al ; set low byte of transmiting count
call PrintDMADataOutWaitLoop
mov al,ch
out CHANNEL_ONE_COUNT,al ; set high byte of transmiting count
call PrintDMADataOutWaitLoop
;now we enable -DREQs again
mov al,REDWOOD_DMA_CHANNEL_NUMBER
out PC_SINGLE_REQUEST_MASK,al ; clear request mask flag on DMA.
call PrintDMADataOutWaitLoop
INT_ON ;let interrupts happen again.
clc
exit:
.leave
ret
error:
stc
jmp exit
PrintDMADataOut endp
PrintDMADataOutWaitLoop proc near
push cx
mov cx, 10
loophere:
nop
loop loophere
pop cx
ret
PrintDMADataOutWaitLoop endp
| 27.719512 | 81 | 0.545315 |
4e8d39131f0ad8384507c7a10f58f61435731569 | 143 | asm | Assembly | spectranet/libspectranet/expectnum.asm | speccytools/spectranet-gdbserver | c76acd970e5e8bbf793d8514bf64c32a180c26a4 | [
"MIT"
] | 40 | 2021-07-23T21:33:59.000Z | 2022-02-07T19:07:46.000Z | spectranet/libspectranet/expectnum.asm | speccytools/spectranet-gdbserver | c76acd970e5e8bbf793d8514bf64c32a180c26a4 | [
"MIT"
] | null | null | null | spectranet/libspectranet/expectnum.asm | speccytools/spectranet-gdbserver | c76acd970e5e8bbf793d8514bf64c32a180c26a4 | [
"MIT"
] | 2 | 2021-08-02T17:49:03.000Z | 2021-10-09T21:53:41.000Z | ; int expectnum
PUBLIC expectNum
EXTERN libspectranet
include "zxromdefs.asm"
.expectNum
rst 16
defw ZX_EXPT_1NUM
ld h, 0
ld l, a
ret
| 11 | 24 | 0.741259 |
2d192382efc40a5eb587cb0bcee5b82b21851afb | 148 | asm | Assembly | other.7z/NEWS.7z/NEWS/テープリストア/NEWS_05/NEWS_05.tar/home/kimura/kart/mak.lzh/mak/kart-apu-j.asm | prismotizm/gigaleak | d082854866186a05fec4e2fdf1def0199e7f3098 | [
"MIT"
] | null | null | null | other.7z/NEWS.7z/NEWS/テープリストア/NEWS_05/NEWS_05.tar/home/kimura/kart/mak.lzh/mak/kart-apu-j.asm | prismotizm/gigaleak | d082854866186a05fec4e2fdf1def0199e7f3098 | [
"MIT"
] | null | null | null | other.7z/NEWS.7z/NEWS/テープリストア/NEWS_05/NEWS_05.tar/home/kimura/kart/mak.lzh/mak/kart-apu-j.asm | prismotizm/gigaleak | d082854866186a05fec4e2fdf1def0199e7f3098 | [
"MIT"
] | null | null | null | Name: kart-apu-j.asm
Type: file
Size: 33825
Last-Modified: '1993-04-13T08:06:59Z'
SHA-1: 51BE152C871C014D36AD708242749C815DC0E02C
Description: null
| 21.142857 | 47 | 0.804054 |
8de66cfeba268d0fb53243e4d10385091394f21b | 216 | asm | Assembly | ex10.asm | JLJL0308/x86_Assembly | 7df1e30d236339d244c44f8a41879ad45b2e4912 | [
"MIT"
] | null | null | null | ex10.asm | JLJL0308/x86_Assembly | 7df1e30d236339d244c44f8a41879ad45b2e4912 | [
"MIT"
] | null | null | null | ex10.asm | JLJL0308/x86_Assembly | 7df1e30d236339d244c44f8a41879ad45b2e4912 | [
"MIT"
] | null | null | null | ;Interact with C using Assembly.
global main
extern printf
section .data
msg db "Testing %i...", 0x0a, 0x00
main:
push ebp
mov ebp, esp
push 123
push msg
call printf
mov eax, 0
mov esp, ebp
pop ebp
ret
| 12 | 35 | 0.689815 |
97c694dbd0b487eb4890b25251e148a9fa342e87 | 271 | asm | Assembly | programs/oeis/180/A180596.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/180/A180596.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/180/A180596.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A180596: Digital root of 6n.
; 0,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9
mul $0,15
sub $0,1
mod $0,9
add $0,1
| 33.875 | 201 | 0.527675 |
26a575e474288dc9278ff4297815fa0c0c82ccb5 | 2,211 | asm | Assembly | programs/oeis/128/A128960.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/128/A128960.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/128/A128960.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A128960: a(n) = (n^3 - n)*2^n.
; 0,24,192,960,3840,13440,43008,129024,368640,1013760,2703360,7028736,17891328,44728320,110100480,267386880,641728512,1524105216,3586129920,8367636480,19377684480,44568674304,101871255552,231525580800,523449139200,1177760563200,2638183661568,5885178937344,13078175416320,28958816993280,63909113364480,140600049401856,308413011591168,674653462855680,1471971191685120,3203702005432320,6956610068938752,15072655149367296,32589524647280640,70324763712552960,151468721842421760,325657751961206784,698972735916736512,1497798719821578240,3204592609850818560,6846175121044930560,14605173591562518528,31115369825502756864,66202914522346291200,140681193359985868800,298588655294663884800,633007949224687435776,1340487421887573393408,2835646469377559101440,5992309520194087157760,12650431209298628444160,26680909459611652718592,56220487789895982514176,118358921662938910556160,248961869704802535997440,523241895650771431587840,1098807980866620006334464,2305695435261104275587072,4834522686837799287521280,10129476105755388983377920,21208590596425345683947520,44374897247905338661797888,92783876063802071747395584,193876755954213284248289280,404860284492621858283192320,844925811115036921634488320,1762273834611362722266218496,3673472218626502575991554048,7653067122138547033315737600,15935153459795330809095782400,33162346389303796548658790400,68977680489751896821210284032,143400967333957890759884537856,297976036018613798981578260480,618873305577120967115585617920,1284749647020858716543747358720,2665855517568281836828275769344,5529181814215695661569757151232,11462937907520344664229984337920,23754521928837340749970569953280,49205795424020205839224752046080,101884941113265367384747721883648,210878133932107388307966215061504,436299587445739424085447341506560,902346874035506536176720638115840,1865526121601496659061984240599040,3855420651309759762061434097238016,7965044862046536651291753959129088,16449549171617847432015578828636160,33960359580114265666096678872023040,70088401686618803608752720225239040,144603439269234584287531928043651072,298244593492796330093034601590030336,614937306170714082666050724927897600
add $0,2
mov $2,2
pow $2,$0
bin $0,3
mul $0,$2
div $0,8
mul $0,24
| 201 | 2,110 | 0.931705 |
c0e7bc5d488191336424e1ff59f74c4b68797cc7 | 310 | asm | Assembly | programs/oeis/021/A021934.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/021/A021934.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/021/A021934.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A021934: Decimal expansion of 1/930.
; 0,0,1,0,7,5,2,6,8,8,1,7,2,0,4,3,0,1,0,7,5,2,6,8,8,1,7,2,0,4,3,0,1,0,7,5,2,6,8,8,1,7,2,0,4,3,0,1,0,7,5,2,6,8,8,1,7,2,0,4,3,0,1,0,7,5,2,6,8,8,1,7,2,0,4,3,0,1,0,7,5,2,6,8,8,1,7,2,0,4,3,0,1,0,7,5,2,6,8
add $0,1
mov $1,10
pow $1,$0
mul $1,4
div $1,3720
mod $1,10
mov $0,$1
| 28.181818 | 199 | 0.541935 |
37e76009c8ba1a5776a28f2bc748aa32a87631e0 | 467 | asm | Assembly | oeis/204/A204217.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/204/A204217.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/204/A204217.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A204217: G.f.: Sum_{n>=1} n * x^(n*(n+1)/2) / (1 - x^n).
; 1,1,3,1,3,4,3,1,6,5,3,4,3,5,11,1,3,8,3,6,12,5,3,4,8,5,12,8,3,13,3,1,12,5,15,12,3,5,12,6,3,15,3,9,26,5,3,4,10,10,12,9,3,17,18,8,12,5,3,17,3,5,28,1,18,19,3,9,12,17,3,13,3,5,27,9,21,20,3,6,21,5,3,19,18,5,12,12,3,34,23,9,12,5,18,4,3,12,32,14
add $0,1
mov $2,$0
lpb $0
add $4,1
min $0,$4
mov $3,$2
dif $3,$0
cmp $3,$2
sub $2,$4
cmp $3,0
mul $3,$0
mov $0,$2
add $1,$3
lpe
add $1,1
mov $0,$1
| 23.35 | 239 | 0.511777 |
c4dcf445acdd4f1a2b6797354e40f09291129e99 | 478,418 | asm | Assembly | pru0_mcp3208_rpmsg/gen/pru0_mcp3208_rpmsg.asm | christianprado911/pru-mcp3208-6ch | 9540ab21da1a65f62b2c98fd520a218776089066 | [
"MIT"
] | null | null | null | pru0_mcp3208_rpmsg/gen/pru0_mcp3208_rpmsg.asm | christianprado911/pru-mcp3208-6ch | 9540ab21da1a65f62b2c98fd520a218776089066 | [
"MIT"
] | null | null | null | pru0_mcp3208_rpmsg/gen/pru0_mcp3208_rpmsg.asm | christianprado911/pru-mcp3208-6ch | 9540ab21da1a65f62b2c98fd520a218776089066 | [
"MIT"
] | null | null | null | ;******************************************************************************
;* PRU C/C++ Codegen Unix v2.3.3 *
;* Date/Time created: Wed Aug 12 00:15:04 2020 *
;******************************************************************************
.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("pru0_mcp3208_rpmsg.c")
.dwattr $C$DW$CU, DW_AT_producer("TI PRU C/C++ Codegen Unix v2.3.3 Copyright (c) 2012-2018 Texas Instruments Incorporated")
.dwattr $C$DW$CU, DW_AT_TI_version(0x01)
.dwattr $C$DW$CU, DW_AT_comp_dir("/home/debian/pru-mcp3208-6ch/pru0_mcp3208_rpmsg")
.global __PRU_CREG_PRU_CFG
.global __PRU_CREG_PRU_INTC
.weak ||CT_CFG||
||CT_CFG||: .usect ".creg.PRU_CFG.noload.near",68,1
$C$DW$1 .dwtag DW_TAG_variable
.dwattr $C$DW$1, DW_AT_name("CT_CFG")
.dwattr $C$DW$1, DW_AT_TI_symbol_name("CT_CFG")
.dwattr $C$DW$1, DW_AT_location[DW_OP_addr ||CT_CFG||]
.dwattr $C$DW$1, DW_AT_type(*$C$DW$T$295)
.dwattr $C$DW$1, DW_AT_external
.dwattr $C$DW$1, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$1, DW_AT_decl_line(0xf2)
.dwattr $C$DW$1, DW_AT_decl_column(0x17)
.weak ||CT_INTC||
||CT_INTC||: .usect ".creg.PRU_INTC.noload.far",5380,1
$C$DW$2 .dwtag DW_TAG_variable
.dwattr $C$DW$2, DW_AT_name("CT_INTC")
.dwattr $C$DW$2, DW_AT_TI_symbol_name("CT_INTC")
.dwattr $C$DW$2, DW_AT_location[DW_OP_addr ||CT_INTC||]
.dwattr $C$DW$2, DW_AT_type(*$C$DW$T$300)
.dwattr $C$DW$2, DW_AT_external
.dwattr $C$DW$2, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$2, DW_AT_decl_line(0x389)
.dwattr $C$DW$2, DW_AT_decl_column(0x18)
.global ||pru_intc_map||
.sect ".data:pru_intc_map", RW
.align 1
.elfsym ||pru_intc_map||,SYM_SIZE(4)
||pru_intc_map||:
.bits 0x10,8
; pru_intc_map[0].evt @ 0
.bits 0x2,8
; pru_intc_map[0].ch @ 8
.bits 0x11,8
; pru_intc_map[1].evt @ 16
.bits 0,8
; pru_intc_map[1].ch @ 24
$C$DW$3 .dwtag DW_TAG_variable
.dwattr $C$DW$3, DW_AT_name("pru_intc_map")
.dwattr $C$DW$3, DW_AT_TI_symbol_name("pru_intc_map")
.dwattr $C$DW$3, DW_AT_location[DW_OP_addr ||pru_intc_map||]
.dwattr $C$DW$3, DW_AT_type(*$C$DW$T$345)
.dwattr $C$DW$3, DW_AT_external
.dwattr $C$DW$3, DW_AT_decl_file("resource_table_0.h")
.dwattr $C$DW$3, DW_AT_decl_line(0x3c)
.dwattr $C$DW$3, DW_AT_decl_column(0x0f)
.global ||resourceTable||
.sect ".resource_table:retain", RW
.retain
.align 1
.elfsym ||resourceTable||,SYM_SIZE(124)
||resourceTable||:
.bits 0x1,32
; resourceTable.base.ver @ 0
.bits 0x2,32
; resourceTable.base.num @ 32
.bits 0,32
; resourceTable.base.reserved[0] @ 64
.bits 0,32
; resourceTable.base.reserved[1] @ 96
.bits 0x18,32
; resourceTable.offset[0] @ 128
.bits 0x5c,32
; resourceTable.offset[1] @ 160
.bits 0x3,32
; resourceTable.rpmsg_vdev.type @ 192
.bits 0x7,32
; resourceTable.rpmsg_vdev.id @ 224
.bits 0,32
; resourceTable.rpmsg_vdev.notifyid @ 256
.bits 0x1,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 0x2,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 0xffffffff,32
; resourceTable.rpmsg_vring0.da @ 416
.bits 0x10,32
; resourceTable.rpmsg_vring0.align @ 448
.bits 0x10,32
; resourceTable.rpmsg_vring0.num @ 480
.bits 0,32
; resourceTable.rpmsg_vring0.notifyid @ 512
.bits 0,32
; resourceTable.rpmsg_vring0.reserved @ 544
.bits 0xffffffff,32
; resourceTable.rpmsg_vring1.da @ 576
.bits 0x10,32
; resourceTable.rpmsg_vring1.align @ 608
.bits 0x10,32
; resourceTable.rpmsg_vring1.num @ 640
.bits 0,32
; resourceTable.rpmsg_vring1.notifyid @ 672
.bits 0,32
; resourceTable.rpmsg_vring1.reserved @ 704
.bits 0x5,32
; resourceTable.pru_ints.type @ 736
.bits 0x1,32
; resourceTable.pru_ints.u.sub_type @ 768
.bits 0x14,32
; resourceTable.pru_ints.rsc_size @ 800
.bits 0,16
; resourceTable.pru_ints.rsc.pru_ints.reserved @ 832
.bits 0,8
; resourceTable.pru_ints.rsc.pru_ints.channel_host[0] @ 848
.bits 0xff,8
; resourceTable.pru_ints.rsc.pru_ints.channel_host[1] @ 856
.bits 0x2,8
; resourceTable.pru_ints.rsc.pru_ints.channel_host[2] @ 864
.bits 0xff,8
; resourceTable.pru_ints.rsc.pru_ints.channel_host[3] @ 872
.bits 0xff,8
; resourceTable.pru_ints.rsc.pru_ints.channel_host[4] @ 880
.bits 0xff,8
; resourceTable.pru_ints.rsc.pru_ints.channel_host[5] @ 888
.bits 0xff,8
; resourceTable.pru_ints.rsc.pru_ints.channel_host[6] @ 896
.bits 0xff,8
; resourceTable.pru_ints.rsc.pru_ints.channel_host[7] @ 904
.bits 0xff,8
; resourceTable.pru_ints.rsc.pru_ints.channel_host[8] @ 912
.bits 0xff,8
; resourceTable.pru_ints.rsc.pru_ints.channel_host[9] @ 920
.bits 0x2,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$4 .dwtag DW_TAG_variable
.dwattr $C$DW$4, DW_AT_name("resourceTable")
.dwattr $C$DW$4, DW_AT_TI_symbol_name("resourceTable")
.dwattr $C$DW$4, DW_AT_location[DW_OP_addr ||resourceTable||]
.dwattr $C$DW$4, DW_AT_type(*$C$DW$T$277)
.dwattr $C$DW$4, DW_AT_external
.dwattr $C$DW$4, DW_AT_decl_file("resource_table_0.h")
.dwattr $C$DW$4, DW_AT_decl_line(0x50)
.dwattr $C$DW$4, DW_AT_decl_column(0x1a)
.sect ".rodata"
.align 1
.elfsym ||buffer_index||,SYM_SIZE(4)
||buffer_index||:
.bits 0x10000,32
; buffer_index @ 0
$C$DW$5 .dwtag DW_TAG_variable
.dwattr $C$DW$5, DW_AT_name("buffer_index")
.dwattr $C$DW$5, DW_AT_TI_symbol_name("buffer_index")
.dwattr $C$DW$5, DW_AT_type(*$C$DW$T$321)
.dwattr $C$DW$5, DW_AT_location[DW_OP_addr ||buffer_index||]
.dwattr $C$DW$5, DW_AT_decl_file("../pru_common/shared_buffer.h")
.dwattr $C$DW$5, DW_AT_decl_line(0x13)
.dwattr $C$DW$5, DW_AT_decl_column(0x1a)
.sect ".rodata"
.align 1
.elfsym ||buffer||,SYM_SIZE(4)
||buffer||:
.bits 0x10001,32
; buffer @ 0
$C$DW$6 .dwtag DW_TAG_variable
.dwattr $C$DW$6, DW_AT_name("buffer")
.dwattr $C$DW$6, DW_AT_TI_symbol_name("buffer")
.dwattr $C$DW$6, DW_AT_type(*$C$DW$T$307)
.dwattr $C$DW$6, DW_AT_location[DW_OP_addr ||buffer||]
.dwattr $C$DW$6, DW_AT_decl_file("../pru_common/shared_buffer.h")
.dwattr $C$DW$6, DW_AT_decl_line(0x14)
.dwattr $C$DW$6, DW_AT_decl_column(0x19)
.global ||queue||
.common ||queue||,1952,1
$C$DW$7 .dwtag DW_TAG_variable
.dwattr $C$DW$7, DW_AT_name("queue")
.dwattr $C$DW$7, DW_AT_TI_symbol_name("queue")
.dwattr $C$DW$7, DW_AT_location[DW_OP_addr ||queue||]
.dwattr $C$DW$7, DW_AT_type(*$C$DW$T$308)
.dwattr $C$DW$7, DW_AT_external
.dwattr $C$DW$7, DW_AT_decl_file("pru0_mcp3208_rpmsg.c")
.dwattr $C$DW$7, DW_AT_decl_line(0x2f)
.dwattr $C$DW$7, DW_AT_decl_column(0x08)
.global ||queue_head||
.common ||queue_head||,1,1
$C$DW$8 .dwtag DW_TAG_variable
.dwattr $C$DW$8, DW_AT_name("queue_head")
.dwattr $C$DW$8, DW_AT_TI_symbol_name("queue_head")
.dwattr $C$DW$8, DW_AT_location[DW_OP_addr ||queue_head||]
.dwattr $C$DW$8, DW_AT_type(*$C$DW$T$266)
.dwattr $C$DW$8, DW_AT_external
.dwattr $C$DW$8, DW_AT_decl_file("pru0_mcp3208_rpmsg.c")
.dwattr $C$DW$8, DW_AT_decl_line(0x30)
.dwattr $C$DW$8, DW_AT_decl_column(0x09)
.global ||queue_size||
.common ||queue_size||,1,1
$C$DW$9 .dwtag DW_TAG_variable
.dwattr $C$DW$9, DW_AT_name("queue_size")
.dwattr $C$DW$9, DW_AT_TI_symbol_name("queue_size")
.dwattr $C$DW$9, DW_AT_location[DW_OP_addr ||queue_size||]
.dwattr $C$DW$9, DW_AT_type(*$C$DW$T$266)
.dwattr $C$DW$9, DW_AT_external
.dwattr $C$DW$9, DW_AT_decl_file("pru0_mcp3208_rpmsg.c")
.dwattr $C$DW$9, DW_AT_decl_line(0x31)
.dwattr $C$DW$9, DW_AT_decl_column(0x09)
.global ||in_payload||
.common ||in_payload||,496,1
$C$DW$10 .dwtag DW_TAG_variable
.dwattr $C$DW$10, DW_AT_name("in_payload")
.dwattr $C$DW$10, DW_AT_TI_symbol_name("in_payload")
.dwattr $C$DW$10, DW_AT_location[DW_OP_addr ||in_payload||]
.dwattr $C$DW$10, DW_AT_type(*$C$DW$T$318)
.dwattr $C$DW$10, DW_AT_external
.dwattr $C$DW$10, DW_AT_decl_file("pru0_mcp3208_rpmsg.c")
.dwattr $C$DW$10, DW_AT_decl_line(0x34)
.dwattr $C$DW$10, DW_AT_decl_column(0x09)
$C$DW$11 .dwtag DW_TAG_subprogram
.dwattr $C$DW$11, DW_AT_name("pru_rpmsg_init")
.dwattr $C$DW$11, DW_AT_TI_symbol_name("pru_rpmsg_init")
.dwattr $C$DW$11, DW_AT_type(*$C$DW$T$337)
.dwattr $C$DW$11, DW_AT_declaration
.dwattr $C$DW$11, DW_AT_external
.dwattr $C$DW$11, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$11, DW_AT_decl_line(0x90)
.dwattr $C$DW$11, DW_AT_decl_column(0x09)
$C$DW$12 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$12, DW_AT_type(*$C$DW$T$322)
$C$DW$13 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$13, DW_AT_type(*$C$DW$T$323)
$C$DW$14 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$14, DW_AT_type(*$C$DW$T$323)
$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)
.dwendtag $C$DW$11
$C$DW$17 .dwtag DW_TAG_subprogram
.dwattr $C$DW$17, DW_AT_name("pru_rpmsg_channel")
.dwattr $C$DW$17, DW_AT_TI_symbol_name("pru_rpmsg_channel")
.dwattr $C$DW$17, DW_AT_type(*$C$DW$T$337)
.dwattr $C$DW$17, DW_AT_declaration
.dwattr $C$DW$17, DW_AT_external
.dwattr $C$DW$17, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$17, DW_AT_decl_line(0x108)
.dwattr $C$DW$17, DW_AT_decl_column(0x09)
$C$DW$18 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$18, DW_AT_type(*$C$DW$T$326)
$C$DW$19 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$19, DW_AT_type(*$C$DW$T$322)
$C$DW$20 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$20, DW_AT_type(*$C$DW$T$328)
$C$DW$21 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$21, DW_AT_type(*$C$DW$T$328)
$C$DW$22 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$22, DW_AT_type(*$C$DW$T$329)
.dwendtag $C$DW$17
$C$DW$23 .dwtag DW_TAG_subprogram
.dwattr $C$DW$23, DW_AT_name("pru_rpmsg_receive")
.dwattr $C$DW$23, DW_AT_TI_symbol_name("pru_rpmsg_receive")
.dwattr $C$DW$23, DW_AT_type(*$C$DW$T$337)
.dwattr $C$DW$23, DW_AT_declaration
.dwattr $C$DW$23, DW_AT_external
.dwattr $C$DW$23, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$23, DW_AT_decl_line(0xb6)
.dwattr $C$DW$23, DW_AT_decl_column(0x09)
$C$DW$24 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$24, DW_AT_type(*$C$DW$T$322)
$C$DW$25 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$25, DW_AT_type(*$C$DW$T$332)
$C$DW$26 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$26, DW_AT_type(*$C$DW$T$332)
$C$DW$27 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$27, DW_AT_type(*$C$DW$T$3)
$C$DW$28 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$28, DW_AT_type(*$C$DW$T$332)
.dwendtag $C$DW$23
$C$DW$29 .dwtag DW_TAG_subprogram
.dwattr $C$DW$29, DW_AT_name("pru_rpmsg_send")
.dwattr $C$DW$29, DW_AT_TI_symbol_name("pru_rpmsg_send")
.dwattr $C$DW$29, DW_AT_type(*$C$DW$T$337)
.dwattr $C$DW$29, DW_AT_declaration
.dwattr $C$DW$29, DW_AT_external
.dwattr $C$DW$29, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$29, DW_AT_decl_line(0xdc)
.dwattr $C$DW$29, DW_AT_decl_column(0x09)
$C$DW$30 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$30, DW_AT_type(*$C$DW$T$322)
$C$DW$31 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$31, DW_AT_type(*$C$DW$T$32)
$C$DW$32 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$32, DW_AT_type(*$C$DW$T$32)
$C$DW$33 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$33, DW_AT_type(*$C$DW$T$3)
$C$DW$34 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$34, DW_AT_type(*$C$DW$T$107)
.dwendtag $C$DW$29
; /usr/share/ti/cgt-pru/bin/optpru /tmp/TI1DqSWvGdt /tmp/TI1Dqg5RMfM
; /usr/share/ti/cgt-pru/bin/acpiapru -@/tmp/TI1DqopKdap
.sect ".text:main"
.clink
.global ||main||
$C$DW$35 .dwtag DW_TAG_subprogram
.dwattr $C$DW$35, DW_AT_name("main")
.dwattr $C$DW$35, DW_AT_low_pc(||main||)
.dwattr $C$DW$35, DW_AT_high_pc(0x00)
.dwattr $C$DW$35, DW_AT_TI_symbol_name("main")
.dwattr $C$DW$35, DW_AT_external
.dwattr $C$DW$35, DW_AT_TI_begin_file("pru0_mcp3208_rpmsg.c")
.dwattr $C$DW$35, DW_AT_TI_begin_line(0x36)
.dwattr $C$DW$35, DW_AT_TI_begin_column(0x06)
.dwattr $C$DW$35, DW_AT_decl_file("pru0_mcp3208_rpmsg.c")
.dwattr $C$DW$35, DW_AT_decl_line(0x36)
.dwattr $C$DW$35, DW_AT_decl_column(0x06)
.dwattr $C$DW$35, DW_AT_TI_max_frame_size(0x5d)
.dwpsn file "pru0_mcp3208_rpmsg.c",line 54,column 17,is_stmt,address ||main||,isa 0
.dwfde $C$DW$CIE, ||main||
;----------------------------------------------------------------------
; 54 | void main(void) {
; 55 | struct pru_rpmsg_transport transport;
; 56 | uint16_t src, dst, len;
; 57 | volatile uint8_t *status;
;----------------------------------------------------------------------
;***************************************************************
;* FNAME: main FR SIZE: 93 *
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* 66 Auto, 27 SOE *
;***************************************************************
||main||:
;* --------------------------------------------------------------------------*
$C$DW$36 .dwtag DW_TAG_variable
.dwattr $C$DW$36, DW_AT_name("transport")
.dwattr $C$DW$36, DW_AT_TI_symbol_name("transport")
.dwattr $C$DW$36, DW_AT_type(*$C$DW$T$278)
.dwattr $C$DW$36, DW_AT_location[DW_OP_breg8 0]
$C$DW$37 .dwtag DW_TAG_variable
.dwattr $C$DW$37, DW_AT_name("src")
.dwattr $C$DW$37, DW_AT_TI_symbol_name("src")
.dwattr $C$DW$37, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$37, DW_AT_location[DW_OP_breg8 60]
$C$DW$38 .dwtag DW_TAG_variable
.dwattr $C$DW$38, DW_AT_name("dst")
.dwattr $C$DW$38, DW_AT_TI_symbol_name("dst")
.dwattr $C$DW$38, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$38, DW_AT_location[DW_OP_breg8 62]
$C$DW$39 .dwtag DW_TAG_variable
.dwattr $C$DW$39, DW_AT_name("len")
.dwattr $C$DW$39, DW_AT_TI_symbol_name("len")
.dwattr $C$DW$39, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$39, DW_AT_location[DW_OP_breg8 64]
;* r0_0 assigned to $O$C3
$C$DW$40 .dwtag DW_TAG_variable
.dwattr $C$DW$40, DW_AT_name("$O$C3")
.dwattr $C$DW$40, DW_AT_TI_symbol_name("$O$C3")
.dwattr $C$DW$40, DW_AT_type(*$C$DW$T$344)
.dwattr $C$DW$40, DW_AT_location[DW_OP_reg0]
;* r6_0 assigned to $O$C4
$C$DW$41 .dwtag DW_TAG_variable
.dwattr $C$DW$41, DW_AT_name("$O$C4")
.dwattr $C$DW$41, DW_AT_TI_symbol_name("$O$C4")
.dwattr $C$DW$41, DW_AT_type(*$C$DW$T$6)
.dwattr $C$DW$41, DW_AT_location[DW_OP_reg24]
;* r4_0 assigned to $O$C5
$C$DW$42 .dwtag DW_TAG_variable
.dwattr $C$DW$42, DW_AT_name("$O$C5")
.dwattr $C$DW$42, DW_AT_TI_symbol_name("$O$C5")
.dwattr $C$DW$42, DW_AT_type(*$C$DW$T$317)
.dwattr $C$DW$42, DW_AT_location[DW_OP_reg16]
;* r0_0 assigned to $O$C6
$C$DW$43 .dwtag DW_TAG_variable
.dwattr $C$DW$43, DW_AT_name("$O$C6")
.dwattr $C$DW$43, DW_AT_TI_symbol_name("$O$C6")
.dwattr $C$DW$43, DW_AT_type(*$C$DW$T$344)
.dwattr $C$DW$43, DW_AT_location[DW_OP_reg0]
;* r14_0 assigned to $O$T7
$C$DW$44 .dwtag DW_TAG_variable
.dwattr $C$DW$44, DW_AT_name("$O$T7")
.dwattr $C$DW$44, DW_AT_TI_symbol_name("$O$T7")
.dwattr $C$DW$44, DW_AT_type(*$C$DW$T$3)
.dwattr $C$DW$44, DW_AT_location[DW_OP_regx 0x38]
;* r0_0 assigned to $O$K12
$C$DW$45 .dwtag DW_TAG_variable
.dwattr $C$DW$45, DW_AT_name("$O$K12")
.dwattr $C$DW$45, DW_AT_TI_symbol_name("$O$K12")
.dwattr $C$DW$45, DW_AT_type(*$C$DW$T$317)
.dwattr $C$DW$45, DW_AT_location[DW_OP_reg0]
;* r10_0 assigned to $O$K37
$C$DW$46 .dwtag DW_TAG_variable
.dwattr $C$DW$46, DW_AT_name("$O$K37")
.dwattr $C$DW$46, DW_AT_TI_symbol_name("$O$K37")
.dwattr $C$DW$46, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$46, DW_AT_location[DW_OP_regx 0x28]
;* r9_0 assigned to $O$K4
$C$DW$47 .dwtag DW_TAG_variable
.dwattr $C$DW$47, DW_AT_name("$O$K4")
.dwattr $C$DW$47, DW_AT_TI_symbol_name("$O$K4")
.dwattr $C$DW$47, DW_AT_type(*$C$DW$T$298)
.dwattr $C$DW$47, DW_AT_location[DW_OP_regx 0x24]
;* r8_0 assigned to $O$K58
$C$DW$48 .dwtag DW_TAG_variable
.dwattr $C$DW$48, DW_AT_name("$O$K58")
.dwattr $C$DW$48, DW_AT_TI_symbol_name("$O$K58")
.dwattr $C$DW$48, DW_AT_type(*$C$DW$T$310)
.dwattr $C$DW$48, DW_AT_location[DW_OP_regx 0x20]
;* r7_0 assigned to $O$K50
$C$DW$49 .dwtag DW_TAG_variable
.dwattr $C$DW$49, DW_AT_name("$O$K50")
.dwattr $C$DW$49, DW_AT_TI_symbol_name("$O$K50")
.dwattr $C$DW$49, DW_AT_type(*$C$DW$T$317)
.dwattr $C$DW$49, DW_AT_location[DW_OP_reg28]
;* r4_0 assigned to $O$K31
$C$DW$50 .dwtag DW_TAG_variable
.dwattr $C$DW$50, DW_AT_name("$O$K31")
.dwattr $C$DW$50, DW_AT_TI_symbol_name("$O$K31")
.dwattr $C$DW$50, DW_AT_type(*$C$DW$T$317)
.dwattr $C$DW$50, DW_AT_location[DW_OP_reg16]
;* r6_0 assigned to $O$U51
$C$DW$51 .dwtag DW_TAG_variable
.dwattr $C$DW$51, DW_AT_name("$O$U51")
.dwattr $C$DW$51, DW_AT_TI_symbol_name("$O$U51")
.dwattr $C$DW$51, DW_AT_type(*$C$DW$T$6)
.dwattr $C$DW$51, DW_AT_location[DW_OP_reg24]
;* r0_0 assigned to $O$T1
$C$DW$52 .dwtag DW_TAG_variable
.dwattr $C$DW$52, DW_AT_name("$O$T1")
.dwattr $C$DW$52, DW_AT_TI_symbol_name("$O$T1")
.dwattr $C$DW$52, DW_AT_type(*$C$DW$T$10)
.dwattr $C$DW$52, DW_AT_location[DW_OP_reg0]
;* r1_0 assigned to $O$v2
$C$DW$53 .dwtag DW_TAG_variable
.dwattr $C$DW$53, DW_AT_name("$O$v2")
.dwattr $C$DW$53, DW_AT_TI_symbol_name("$O$v2")
.dwattr $C$DW$53, DW_AT_type(*$C$DW$T$10)
.dwattr $C$DW$53, DW_AT_location[DW_OP_reg4]
;* r1_0 assigned to $O$v1
$C$DW$54 .dwtag DW_TAG_variable
.dwattr $C$DW$54, DW_AT_name("$O$v1")
.dwattr $C$DW$54, DW_AT_TI_symbol_name("$O$v1")
.dwattr $C$DW$54, DW_AT_type(*$C$DW$T$10)
.dwattr $C$DW$54, DW_AT_location[DW_OP_reg4]
;* r0_0 assigned to completed_buffer_index
$C$DW$55 .dwtag DW_TAG_variable
.dwattr $C$DW$55, DW_AT_name("completed_buffer_index")
.dwattr $C$DW$55, DW_AT_TI_symbol_name("completed_buffer_index")
.dwattr $C$DW$55, DW_AT_type(*$C$DW$T$266)
.dwattr $C$DW$55, DW_AT_location[DW_OP_reg0]
;* r14_0 assigned to status
$C$DW$56 .dwtag DW_TAG_variable
.dwattr $C$DW$56, DW_AT_name("status")
.dwattr $C$DW$56, DW_AT_TI_symbol_name("status")
.dwattr $C$DW$56, DW_AT_type(*$C$DW$T$337)
.dwattr $C$DW$56, DW_AT_location[DW_OP_regx 0x38]
.dwcfi cfa_offset, 0
;*** 63 ----------------------- *(&CT_CFG+4) &= 0xffffffefu;
;*** 66 ----------------------- C$6 = &CT_INTC+36;
;*** 66 ----------------------- *C$6 = *C$6&0xfffffc00u|0x11u;
;*** ----------------------- #pragma LOOP_FLAGS(4096u)
;*** ----------------------- K$12 = &resourceTable;
SUB r2, r2, 0x5d ; [ALU_PRU]
.dwcfi cfa_offset, 93
.dwpsn file "pru0_mcp3208_rpmsg.c",line 63,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 63 | CT_CFG.SYSCFG_bit.STANDBY_INIT = 0;
;----------------------------------------------------------------------
LBCO &r0, __PRU_CREG_PRU_CFG, $CSBREL(||CT_CFG||+4), 4 ; [ALU_PRU] |63| CT_CFG
SBBO &r3.b2, r2, 66, 11 ; [ALU_PRU]
.dwcfi save_reg_to_mem, 14, -27
.dwcfi save_reg_to_mem, 15, -26
.dwcfi save_reg_to_mem, 16, -25
.dwcfi save_reg_to_mem, 17, -24
.dwcfi save_reg_to_mem, 18, -23
.dwcfi save_reg_to_mem, 19, -22
.dwcfi save_reg_to_mem, 20, -21
.dwcfi save_reg_to_mem, 21, -20
.dwcfi save_reg_to_mem, 22, -19
.dwcfi save_reg_to_mem, 23, -18
.dwcfi save_reg_to_mem, 24, -17
.dwpsn file "pru0_mcp3208_rpmsg.c",line 66,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 66 | CT_INTC.SICR_bit.STS_CLR_IDX = FROM_ARM_HOST;
;----------------------------------------------------------------------
LDI32 r5, 0xfffffc00 ; [ALU_PRU] |66|
.dwpsn file "pru0_mcp3208_rpmsg.c",line 63,column 3,is_stmt,isa 0
CLR r0, r0, 0x00000004 ; [ALU_PRU] |63|
SBBO &r7.b0, r2, 77, 16 ; [ALU_PRU]
.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
SBCO &r0, __PRU_CREG_PRU_CFG, $CSBREL(||CT_CFG||+4), 4 ; [ALU_PRU] |63| CT_CFG
.dwpsn file "pru0_mcp3208_rpmsg.c",line 66,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 69 | status = &resourceTable.rpmsg_vdev.status;
;----------------------------------------------------------------------
LDI32 r0, ||CT_INTC||+36 ; [ALU_PRU] |66| $O$C6,CT_INTC
LBBO &r1, r0, 0, 4 ; [ALU_PRU] |66| $O$C6
AND r1, r1, r5 ; [ALU_PRU] |66|
OR r1, r1, 0x11 ; [ALU_PRU] |66|
SBBO &r1, r0, 0, 4 ; [ALU_PRU] |66| $O$C6
LDI r0, ||resourceTable|| ; [ALU_PRU] $O$K12,resourceTable
;* --------------------------------------------------------------------------*
;* BEGIN LOOP ||$C$L1||
;*
;* Loop source line : 70
;* Loop closing brace source line : 70
;* Known Minimum Trip Count : 1
;* Known Maximum Trip Count : 4294967295
;* Known Max Trip Count Factor : 1
;* --------------------------------------------------------------------------*
||$C$L1||:
;*** -----------------------g2:
;*** 70 ----------------------- if ( !(K$12[48]&4) ) goto g2;
.dwpsn file "pru0_mcp3208_rpmsg.c",line 70,column 10,is_stmt,isa 0
;----------------------------------------------------------------------
; 70 | while (!(*status & VIRTIO_CONFIG_S_DRIVER_OK));
;----------------------------------------------------------------------
LBBO &r1.b0, r0, 48, 1 ; [ALU_PRU] |70| $O$K12
QBBC ||$C$L1||, r1.b0, 0x02 ; [ALU_PRU] |70|
;* --------------------------------------------------------------------------*
;*** 73 ----------------------- pru_rpmsg_init(&transport, (struct fw_rsc_vdev_vring *)K$12+52, (struct fw_rsc_vdev_vring *)K$12+72, 16u, 17u);
;*** ----------------------- #pragma LOOP_FLAGS(5120u)
.dwpsn file "pru0_mcp3208_rpmsg.c",line 73,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 73 | pru_rpmsg_init(&transport, &resourceTable.rpmsg_vring0,
; 74 | &resourceTable.rpmsg_vring1, TO_ARM_HOST, FROM_ARM_HOST)
; | ;
;----------------------------------------------------------------------
ADD r15, r0, 0x34 ; [ALU_PRU] |73| $O$K12
ADD r14, r2, 0 ; [ALU_PRU] |73| transport,transport
LDI r17, 0x0010 ; [ALU_PRU] |73|
LDI r18, 0x0011 ; [ALU_PRU] |73|
ADD r16, r0, 0x48 ; [ALU_PRU] |73| $O$K12
$C$DW$57 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$57, DW_AT_low_pc(0x00)
.dwattr $C$DW$57, DW_AT_name("pru_rpmsg_init")
.dwattr $C$DW$57, DW_AT_TI_call
JAL r3.w2, ||pru_rpmsg_init|| ; [ALU_PRU] |73| pru_rpmsg_init
;* --------------------------------------------------------------------------*
;* BEGIN LOOP ||$C$L2||
;*
;* Loop source line : 78
;* Loop closing brace source line : 79
;* Known Minimum Trip Count : 1
;* Known Maximum Trip Count : 4294967295
;* Known Max Trip Count Factor : 1
;* --------------------------------------------------------------------------*
||$C$L2||:
;*** -----------------------g4:
;*** 78 ----------------------- if ( pru_rpmsg_channel(0u, &transport, "rpmsg-pru", "Channel 1", 1) ) goto g4;
.dwpsn file "pru0_mcp3208_rpmsg.c",line 78,column 10,is_stmt,isa 0
;----------------------------------------------------------------------
; 78 | while (pru_rpmsg_channel(RPMSG_NS_CREATE, &transport, CHAN_NAME,
; 79 | CHAN_DESC, CHAN_PORT) != PRU_RPMSG_SUCCESS);
; 81 | for (;;) {
; 82 | // Check for new data from PRU1
; 83 | if (__R31 & HOST1_INT) {
; 84 | // Clear the event status
; 85 | CT_INTC.SICR = PRU0_PRU1_EVT;
; 87 | uint8_t completed_buffer_index = *buffer_index ? 0 : 1;
; 88 | void *completed_buffer = buffer + completed_buffer_index;
; 90 | uint8_t queue_tail = (queue_head + queue_size) % MAX_QUEUE_SIZE;
; 91 | memcpy(queue + queue_tail, completed_buffer, sizeof(Buffer));
; 92 | if (queue_size < MAX_QUEUE_SIZE)
; 93 | queue_size++;
; 94 | else
; 95 | queue_head = (queue_head + 1) % MAX_QUEUE_SIZE;
; 98 | // Check for a data request from the ARM host, and if it can be fulfi
; | lled
; 99 | if (__R31 & HOST0_INT && queue_size) {
; 100 | // Get the message
; 101 | int16_t status;
; 102 | status = pru_rpmsg_receive(&transport, &src, &dst, in_payload, &len
; | );
; 104 | // If there are no more messages, then clear the interrupt event st
; | atus
; 105 | if (status == PRU_RPMSG_NO_BUF_AVAILABLE)
; 106 | CT_INTC.SICR_bit.STS_CLR_IDX = FROM_ARM_HOST;
; 108 | // If a message was received, then send the data from the queue
; 109 | if (status == PRU_RPMSG_SUCCESS) {
; 110 | // Send the data back
; 111 | void *out_buffer = queue + queue_head;
;----------------------------------------------------------------------
LDI r14.b0, 0x00 ; [ALU_PRU] |78|
ADD r15, r2, 0 ; [ALU_PRU] |78| transport,transport
LDI32 r16, $C$SL1 ; [ALU_PRU] |78|
LDI32 r17, $C$SL2 ; [ALU_PRU] |78|
LDI r18, 0x0001 ; [ALU_PRU] |78|
$C$DW$58 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$58, DW_AT_low_pc(0x00)
.dwattr $C$DW$58, DW_AT_name("pru_rpmsg_channel")
.dwattr $C$DW$58, DW_AT_TI_call
JAL r3.w2, ||pru_rpmsg_channel|| ; [ALU_PRU] |78| pru_rpmsg_channel
QBNE ||$C$L2||, r14.w0, 0x00 ; [ALU_PRU] |78|
;* --------------------------------------------------------------------------*
;*** ----------------------- v$2 = (int)*(C$5 = &queue_size);
;*** ----------------------- #pragma LOOP_FLAGS(5120u)
;*** ----------------------- K$37 = 20u;
;*** ----------------------- K$58 = &queue[0];
;*** ----------------------- K$50 = &queue_head;
;*** ----------------------- K$31 = C$5;
;*** 66 ----------------------- K$4 = &CT_INTC;
;*** ----------------------- goto g7;
LDI r4, ||queue_size|| ; [ALU_PRU] $O$C5,queue_size
LDI r10, 0x0014 ; [ALU_PRU] $O$K37
LDI r8, ||queue|| ; [ALU_PRU] $O$K58,queue
LDI r7, ||queue_head|| ; [ALU_PRU] $O$K50,queue_head
.dwpsn file "pru0_mcp3208_rpmsg.c",line 66,column 3,is_stmt,isa 0
LDI32 r9, ||CT_INTC|| ; [ALU_PRU] |66| $O$K4,CT_INTC
LBBO &r0.b0, r4, 0, 1 ; [ALU_PRU] $O$C5
MOV r1, r0.b0 ; [ALU_PRU] $O$v2
JMP ||$C$L5|| ; [ALU_PRU]
;* --------------------------------------------------------------------------*
||$C$L3||:
;*** -----------------------g6:
;*** 112 ----------------------- pru_rpmsg_send(&transport, (unsigned)dst, (unsigned)src, *K$50*488+K$58, 488u);
;*** 115 ----------------------- T$1 = *K$31-1;
;*** 115 ----------------------- *K$31 = T$1;
;*** 115 ----------------------- v$2 = (unsigned char)T$1;
;*** 116 ----------------------- *K$50 = *K$50+1&3;
.dwpsn file "pru0_mcp3208_rpmsg.c",line 112,column 9,is_stmt,isa 0
;----------------------------------------------------------------------
; 112 | pru_rpmsg_send(&transport, dst, src, out_buffer, sizeof(Buffer));
; 114 | // Update the queue
;----------------------------------------------------------------------
LBBO &r0.w0, r2, 62, 2 ; [ALU_PRU] |112| dst
MOV r15, r0.w0 ; [ALU_PRU] |112|
LDI r28, 0x01e8 ; [ALU_PRU] |112|
ADD r14, r2, 0 ; [ALU_PRU] |112| transport,transport
LBBO &r0.w0, r2, 60, 2 ; [ALU_PRU] |112| src
MOV r16, r0.w0 ; [ALU_PRU] |112|
LBBO &r0.b0, r7, 0, 1 ; [ALU_PRU] |112| $O$K50
MOV r29, r0.b0 ; [ALU_PRU] |112|
LDI r18.w0, 0x01e8 ; [ALU_PRU] |112|
XIN 0, &r26, 4 ; [ALU_PRU] |112|
ADD r17, r26, r8 ; [ALU_PRU] |112| $O$K58
$C$DW$59 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$59, DW_AT_low_pc(0x00)
.dwattr $C$DW$59, DW_AT_name("pru_rpmsg_send")
.dwattr $C$DW$59, DW_AT_TI_call
JAL r3.w2, ||pru_rpmsg_send|| ; [ALU_PRU] |112| pru_rpmsg_send
.dwpsn file "pru0_mcp3208_rpmsg.c",line 115,column 9,is_stmt,isa 0
;----------------------------------------------------------------------
; 115 | queue_size--;
;----------------------------------------------------------------------
LBBO &r0.b0, r4, 0, 1 ; [ALU_PRU] |115| $O$K31
SUB r0, r0.b0, 0x01 ; [ALU_PRU] |115| $O$T1
SBBO &r0.b0, r4, 0, 1 ; [ALU_PRU] |115| $O$K31,$O$T1
.dwpsn file "pru0_mcp3208_rpmsg.c",line 116,column 9,is_stmt,isa 0
;----------------------------------------------------------------------
; 116 | queue_head = (queue_head + 1) % MAX_QUEUE_SIZE;
;----------------------------------------------------------------------
LBBO &r0.b1, r7, 0, 1 ; [ALU_PRU] |116| $O$K50
ADD r0.b1, r0.b1, 0x01 ; [ALU_PRU] |116|
AND r0.b1, r0.b1, 0x03 ; [ALU_PRU] |116|
SBBO &r0.b1, r7, 0, 1 ; [ALU_PRU] |116| $O$K50
;* --------------------------------------------------------------------------*
||$C$L4||:
.dwpsn file "pru0_mcp3208_rpmsg.c",line 115,column 9,is_stmt,isa 0
MOV r1, r0.b0 ; [ALU_PRU] |115| $O$v2,$O$T1
;* --------------------------------------------------------------------------*
;* BEGIN LOOP ||$C$L5||
;* --------------------------------------------------------------------------*
||$C$L5||:
;*** -----------------------g7:
;*** -----------------------g7:
;*** 83 ----------------------- if ( !(__R31&0x80000000u) ) goto g11;
.dwpsn file "pru0_mcp3208_rpmsg.c",line 83,column 5,is_stmt,isa 0
QBBC ||$C$L8||, r31, 0x1f ; [ALU_PRU] |83|
;* --------------------------------------------------------------------------*
;*** 85 ----------------------- (*K$4).$P$T18.SICR = K$37;
;*** 87 ----------------------- completed_buffer_index = *(volatile unsigned char * const)0x10000u == 0;
.dwpsn file "pru0_mcp3208_rpmsg.c",line 85,column 7,is_stmt,isa 0
SBBO &r10, r9, 36, 4 ; [ALU_PRU] |85| $O$K4,$O$K37
.dwpsn file "pru0_mcp3208_rpmsg.c",line 87,column 38,is_stmt,isa 0
LDI32 r14, 0x00010000 ; [ALU_PRU] |87|
LDI r0.b0, 0x00 ; [ALU_PRU] |87|
LBBO &r0.b1, r14, 0, 1 ; [ALU_PRU] |87|
QBNE ||$C$L6||, r0.b1, 0x00 ; [ALU_PRU] |87|
;* --------------------------------------------------------------------------*
LDI r0.b0, 0x01 ; [ALU_PRU] |87|
;* --------------------------------------------------------------------------*
||$C$L6||:
;*** 91 ----------------------- U$51 = C$4 = *K$50;
;*** 91 ----------------------- T$7 = (C$4+v$2&3)*488+K$58;
;*** 91 ----------------------- *T$7 = *(completed_buffer_index*488+(volatile struct $$fake79 * const)0x10001u);
;*** 92 ----------------------- v$2 = (int)*K$31;
;*** 92 ----------------------- if ( (v$1 = v$2) < 4 ) goto g10;
.dwpsn file "pru0_mcp3208_rpmsg.c",line 91,column 7,is_stmt,isa 0
LBBO &r6.b0, r7, 0, 1 ; [ALU_PRU] |91| $O$C4,$O$K50
LDI r28, 0x01e8 ; [ALU_PRU] |91|
ADD r1, r6.b0, r1 ; [ALU_PRU] |91| $O$C4,$O$v2
LDI32 r15, 0x00010001 ; [ALU_PRU] |91|
AND r29, r1, 0x03 ; [ALU_PRU] |91|
MOV r16, r28 ; [ALU_PRU] |91|
XIN 0, &r26, 4 ; [ALU_PRU] |91|
MOV r29, r0.b0 ; [ALU_PRU] |91| completed_buffer_index
ADD r14, r26, r8 ; [ALU_PRU] |91| $O$T7,$O$K58
XIN 0, &r26, 4 ; [ALU_PRU] |91|
ADD r15, r15, r26 ; [ALU_PRU] |91|
$C$DW$60 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$60, DW_AT_low_pc(0x00)
.dwattr $C$DW$60, DW_AT_name("memcpy")
.dwattr $C$DW$60, DW_AT_TI_call
JAL r3.w2, ||memcpy|| ; [ALU_PRU] |91| memcpy
.dwpsn file "pru0_mcp3208_rpmsg.c",line 92,column 7,is_stmt,isa 0
LBBO &r0.b0, r4, 0, 1 ; [ALU_PRU] |92| $O$K31
LDI32 r14, 0x80000004 ; [ALU_PRU] |92|
MOV r1, r0.b0 ; [ALU_PRU] |92| $O$v2
MOV r0, r1 ; [ALU_PRU] |92| $O$v1
XOR r0.b3, r0.b3, 0x80 ; [ALU_PRU] |92|
QBLT ||$C$L7||, r14, r0 ; [ALU_PRU] |92|
;* --------------------------------------------------------------------------*
;*** 95 ----------------------- *K$50 = U$51+1&3;
;*** 95 ----------------------- goto g11;
.dwpsn file "pru0_mcp3208_rpmsg.c",line 95,column 9,is_stmt,isa 0
ADD r0.b0, r6.b0, 0x01 ; [ALU_PRU] |95| $O$U51
AND r0.b0, r0.b0, 0x03 ; [ALU_PRU] |95|
SBBO &r0.b0, r7, 0, 1 ; [ALU_PRU] |95| $O$K50
JMP ||$C$L8|| ; [ALU_PRU] |95|
;* --------------------------------------------------------------------------*
||$C$L7||:
;*** -----------------------g10:
;*** 93 ----------------------- v$1 = (unsigned char)(v$1+1);
;*** 93 ----------------------- v$2 = v$1;
;*** 93 ----------------------- *K$31 = v$2;
.dwpsn file "pru0_mcp3208_rpmsg.c",line 93,column 9,is_stmt,isa 0
ADD r0.b0, r1.b0, 0x01 ; [ALU_PRU] |93| $O$v1
MOV r1, r0.b0 ; [ALU_PRU] |93| $O$v1
SBBO &r1.b0, r4, 0, 1 ; [ALU_PRU] |93| $O$K31,$O$v2
;* --------------------------------------------------------------------------*
||$C$L8||:
;*** -----------------------g11:
;*** 99 ----------------------- if ( !(__R31&0x40000000 && v$2) ) goto g7;
.dwpsn file "pru0_mcp3208_rpmsg.c",line 99,column 5,is_stmt,isa 0
QBBC ||$C$L5||, r31, 0x1e ; [ALU_PRU] |99|
;* --------------------------------------------------------------------------*
QBEQ ||$C$L5||, r1, 0x00 ; [ALU_PRU] |99| $O$v2
;* --------------------------------------------------------------------------*
;*** 102 ----------------------- if ( (status = pru_rpmsg_receive(&transport, &src, &dst, &in_payload, &len)) != (-1) ) goto g14;
.dwpsn file "pru0_mcp3208_rpmsg.c",line 102,column 7,is_stmt,isa 0
ADD r14, r2, 0 ; [ALU_PRU] |102| transport,transport
ADD r15, r2, 60 ; [ALU_PRU] |102| src,src
ADD r16, r2, 62 ; [ALU_PRU] |102| dst,dst
LDI r17, ||in_payload|| ; [ALU_PRU] |102| in_payload
ADD r18, r2, 64 ; [ALU_PRU] |102| len,len
$C$DW$61 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$61, DW_AT_low_pc(0x00)
.dwattr $C$DW$61, DW_AT_name("pru_rpmsg_receive")
.dwattr $C$DW$61, DW_AT_TI_call
JAL r3.w2, ||pru_rpmsg_receive|| ; [ALU_PRU] |102| pru_rpmsg_receive
LDI r0.w0, 0xffff ; [ALU_PRU] |102|
QBNE ||$C$L9||, r0.w0, r14.w0 ; [ALU_PRU] |102| status
;* --------------------------------------------------------------------------*
;*** 106 ----------------------- C$3 = (volatile struct $$fake19 *)K$4+36;
;*** 106 ----------------------- *C$3 = *C$3&0xfffffc00u|0x11u;
.dwpsn file "pru0_mcp3208_rpmsg.c",line 106,column 9,is_stmt,isa 0
ADD r0, r9, 0x24 ; [ALU_PRU] |106| $O$C3,$O$K4
LBBO &r1, r0, 0, 4 ; [ALU_PRU] |106| $O$C3
AND r1, r1, r5 ; [ALU_PRU] |106|
OR r1, r1, 0x11 ; [ALU_PRU] |106|
SBBO &r1, r0, 0, 4 ; [ALU_PRU] |106| $O$C3
;* --------------------------------------------------------------------------*
||$C$L9||:
;*** -----------------------g14:
;*** 109 ----------------------- if ( !status ) goto g6;
.dwpsn file "pru0_mcp3208_rpmsg.c",line 109,column 7,is_stmt,isa 0
QBEQ ||$C$L3||, r14.w0, 0x00 ; [ALU_PRU] |109| status
;* --------------------------------------------------------------------------*
;*** ----------------------- v$2 = (int)*K$31;
LBBO &r0.b0, r4, 0, 1 ; [ALU_PRU] $O$K31
JMP ||$C$L4|| ; [ALU_PRU]
;* --------------------------------------------------------------------------*
.dwattr $C$DW$35, DW_AT_TI_end_file("pru0_mcp3208_rpmsg.c")
.dwattr $C$DW$35, DW_AT_TI_end_line(0x78)
.dwattr $C$DW$35, DW_AT_TI_end_column(0x01)
.dwendentry
.dwendtag $C$DW$35
;******************************************************************************
;* STRINGS *
;******************************************************************************
.sect ".rodata:.string"
||$C$SL1||: .string "rpmsg-pru",0
||$C$SL2||: .string "Channel 1",0
;*****************************************************************************
;* UNDEFINED EXTERNAL REFERENCES *
;*****************************************************************************
.global ||pru_rpmsg_init||
.global ||pru_rpmsg_channel||
.global ||pru_rpmsg_receive||
.global ||pru_rpmsg_send||
.global ||memcpy||
;******************************************************************************
;* TYPE INFORMATION *
;******************************************************************************
$C$DW$T$19 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$19, 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("REVID")
.dwattr $C$DW$62, DW_AT_TI_symbol_name("REVID")
.dwattr $C$DW$62, DW_AT_bit_offset(0x00)
.dwattr $C$DW$62, DW_AT_bit_size(0x20)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$62, DW_AT_decl_line(0x2d)
.dwattr $C$DW$62, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$19, DW_AT_decl_file("/usr/share/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)
.dwendtag $C$DW$T$19
$C$DW$T$113 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$113, 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$63 .dwtag DW_TAG_member
.dwattr $C$DW$63, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$63, DW_AT_name("IDLE_MODE")
.dwattr $C$DW$63, DW_AT_TI_symbol_name("IDLE_MODE")
.dwattr $C$DW$63, DW_AT_bit_offset(0x1e)
.dwattr $C$DW$63, DW_AT_bit_size(0x02)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$63, DW_AT_decl_line(0x37)
.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("STANDBY_MODE")
.dwattr $C$DW$64, DW_AT_TI_symbol_name("STANDBY_MODE")
.dwattr $C$DW$64, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$64, DW_AT_bit_size(0x02)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$64, DW_AT_decl_line(0x38)
.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("STANDBY_INIT")
.dwattr $C$DW$65, DW_AT_TI_symbol_name("STANDBY_INIT")
.dwattr $C$DW$65, DW_AT_bit_offset(0x1b)
.dwattr $C$DW$65, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$65, DW_AT_decl_line(0x39)
.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("SUB_MWAIT")
.dwattr $C$DW$66, DW_AT_TI_symbol_name("SUB_MWAIT")
.dwattr $C$DW$66, DW_AT_bit_offset(0x1a)
.dwattr $C$DW$66, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$66, DW_AT_decl_line(0x3a)
.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("rsvd6")
.dwattr $C$DW$67, DW_AT_TI_symbol_name("rsvd6")
.dwattr $C$DW$67, DW_AT_bit_offset(0x00)
.dwattr $C$DW$67, DW_AT_bit_size(0x1a)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$67, DW_AT_decl_line(0x3b)
.dwattr $C$DW$67, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$20, DW_AT_decl_file("/usr/share/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)
.dwendtag $C$DW$T$20
$C$DW$T$115 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$115, 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$68 .dwtag DW_TAG_member
.dwattr $C$DW$68, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$68, DW_AT_name("PRU0_GPI_MODE")
.dwattr $C$DW$68, DW_AT_TI_symbol_name("PRU0_GPI_MODE")
.dwattr $C$DW$68, DW_AT_bit_offset(0x1e)
.dwattr $C$DW$68, DW_AT_bit_size(0x02)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$68, DW_AT_decl_line(0x45)
.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_GPI_CLK_MODE")
.dwattr $C$DW$69, DW_AT_TI_symbol_name("PRU0_GPI_CLK_MODE")
.dwattr $C$DW$69, DW_AT_bit_offset(0x1d)
.dwattr $C$DW$69, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$69, DW_AT_decl_line(0x46)
.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_GPI_DIV0")
.dwattr $C$DW$70, DW_AT_TI_symbol_name("PRU0_GPI_DIV0")
.dwattr $C$DW$70, DW_AT_bit_offset(0x18)
.dwattr $C$DW$70, DW_AT_bit_size(0x05)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$70, DW_AT_decl_line(0x47)
.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("PRU0_GPI_DIV1")
.dwattr $C$DW$71, DW_AT_TI_symbol_name("PRU0_GPI_DIV1")
.dwattr $C$DW$71, DW_AT_bit_offset(0x13)
.dwattr $C$DW$71, DW_AT_bit_size(0x05)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$71, DW_AT_decl_line(0x48)
.dwattr $C$DW$71, DW_AT_decl_column(0x0d)
$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("PRU0_GPI_SB")
.dwattr $C$DW$72, DW_AT_TI_symbol_name("PRU0_GPI_SB")
.dwattr $C$DW$72, DW_AT_bit_offset(0x12)
.dwattr $C$DW$72, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$72, DW_AT_decl_line(0x49)
.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("PRU0_GPO_MODE")
.dwattr $C$DW$73, DW_AT_TI_symbol_name("PRU0_GPO_MODE")
.dwattr $C$DW$73, DW_AT_bit_offset(0x11)
.dwattr $C$DW$73, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$73, DW_AT_decl_line(0x4a)
.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("PRU0_GPO_DIV0")
.dwattr $C$DW$74, DW_AT_TI_symbol_name("PRU0_GPO_DIV0")
.dwattr $C$DW$74, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$74, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$74, DW_AT_decl_line(0x4b)
.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("PRU0_GPO_DIV1")
.dwattr $C$DW$75, DW_AT_TI_symbol_name("PRU0_GPO_DIV1")
.dwattr $C$DW$75, DW_AT_bit_offset(0x07)
.dwattr $C$DW$75, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$75, DW_AT_decl_line(0x4c)
.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("PRU0_GPO_SH_SEL")
.dwattr $C$DW$76, DW_AT_TI_symbol_name("PRU0_GPO_SH_SEL")
.dwattr $C$DW$76, DW_AT_bit_offset(0x06)
.dwattr $C$DW$76, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$76, DW_AT_decl_line(0x4d)
.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("rsvd26")
.dwattr $C$DW$77, DW_AT_TI_symbol_name("rsvd26")
.dwattr $C$DW$77, DW_AT_bit_offset(0x00)
.dwattr $C$DW$77, DW_AT_bit_size(0x06)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$77, DW_AT_decl_line(0x4e)
.dwattr $C$DW$77, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$21, DW_AT_decl_file("/usr/share/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)
.dwendtag $C$DW$T$21
$C$DW$T$117 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$117, 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$78 .dwtag DW_TAG_member
.dwattr $C$DW$78, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$78, DW_AT_name("PRU1_GPI_MODE")
.dwattr $C$DW$78, DW_AT_TI_symbol_name("PRU1_GPI_MODE")
.dwattr $C$DW$78, DW_AT_bit_offset(0x1e)
.dwattr $C$DW$78, DW_AT_bit_size(0x02)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$78, DW_AT_decl_line(0x58)
.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_GPI_CLK_MODE")
.dwattr $C$DW$79, DW_AT_TI_symbol_name("PRU1_GPI_CLK_MODE")
.dwattr $C$DW$79, DW_AT_bit_offset(0x1d)
.dwattr $C$DW$79, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$79, DW_AT_decl_line(0x59)
.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_GPI_DIV0")
.dwattr $C$DW$80, DW_AT_TI_symbol_name("PRU1_GPI_DIV0")
.dwattr $C$DW$80, DW_AT_bit_offset(0x18)
.dwattr $C$DW$80, DW_AT_bit_size(0x05)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$80, DW_AT_decl_line(0x5a)
.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("PRU1_GPI_DIV1")
.dwattr $C$DW$81, DW_AT_TI_symbol_name("PRU1_GPI_DIV1")
.dwattr $C$DW$81, DW_AT_bit_offset(0x13)
.dwattr $C$DW$81, DW_AT_bit_size(0x05)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$81, DW_AT_decl_line(0x5b)
.dwattr $C$DW$81, DW_AT_decl_column(0x0d)
$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("PRU1_GPI_SB")
.dwattr $C$DW$82, DW_AT_TI_symbol_name("PRU1_GPI_SB")
.dwattr $C$DW$82, DW_AT_bit_offset(0x12)
.dwattr $C$DW$82, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$82, DW_AT_decl_line(0x5c)
.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("PRU1_GPO_MODE")
.dwattr $C$DW$83, DW_AT_TI_symbol_name("PRU1_GPO_MODE")
.dwattr $C$DW$83, DW_AT_bit_offset(0x11)
.dwattr $C$DW$83, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$83, DW_AT_decl_line(0x5d)
.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("PRU1_GPO_DIV0")
.dwattr $C$DW$84, DW_AT_TI_symbol_name("PRU1_GPO_DIV0")
.dwattr $C$DW$84, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$84, DW_AT_bit_size(0x05)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$84, DW_AT_decl_line(0x5e)
.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_GPO_DIV1")
.dwattr $C$DW$85, DW_AT_TI_symbol_name("PRU1_GPO_DIV1")
.dwattr $C$DW$85, DW_AT_bit_offset(0x07)
.dwattr $C$DW$85, DW_AT_bit_size(0x05)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$85, DW_AT_decl_line(0x5f)
.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_GPO_SH_SEL")
.dwattr $C$DW$86, DW_AT_TI_symbol_name("PRU1_GPO_SH_SEL")
.dwattr $C$DW$86, DW_AT_bit_offset(0x06)
.dwattr $C$DW$86, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$86, DW_AT_decl_line(0x60)
.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("rsvd26")
.dwattr $C$DW$87, DW_AT_TI_symbol_name("rsvd26")
.dwattr $C$DW$87, DW_AT_bit_offset(0x00)
.dwattr $C$DW$87, DW_AT_bit_size(0x06)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$87, DW_AT_decl_line(0x61)
.dwattr $C$DW$87, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$22, DW_AT_decl_file("/usr/share/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)
.dwendtag $C$DW$T$22
$C$DW$T$119 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$119, 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$88 .dwtag DW_TAG_member
.dwattr $C$DW$88, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$88, DW_AT_name("PRU0_CLK_STOP_REQ")
.dwattr $C$DW$88, DW_AT_TI_symbol_name("PRU0_CLK_STOP_REQ")
.dwattr $C$DW$88, DW_AT_bit_offset(0x1f)
.dwattr $C$DW$88, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$88, DW_AT_decl_line(0x6b)
.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("PRU0_CLK_STOP_ACK")
.dwattr $C$DW$89, DW_AT_TI_symbol_name("PRU0_CLK_STOP_ACK")
.dwattr $C$DW$89, DW_AT_bit_offset(0x1e)
.dwattr $C$DW$89, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$89, DW_AT_decl_line(0x6c)
.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("PRU0_CLK_EN")
.dwattr $C$DW$90, DW_AT_TI_symbol_name("PRU0_CLK_EN")
.dwattr $C$DW$90, DW_AT_bit_offset(0x1d)
.dwattr $C$DW$90, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$90, DW_AT_decl_line(0x6d)
.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("PRU1_CLK_STOP_REQ")
.dwattr $C$DW$91, DW_AT_TI_symbol_name("PRU1_CLK_STOP_REQ")
.dwattr $C$DW$91, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$91, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$91, DW_AT_decl_line(0x6e)
.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("PRU1_CLK_STOP_ACK")
.dwattr $C$DW$92, DW_AT_TI_symbol_name("PRU1_CLK_STOP_ACK")
.dwattr $C$DW$92, DW_AT_bit_offset(0x1b)
.dwattr $C$DW$92, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$92, DW_AT_decl_line(0x6f)
.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("PRU1_CLK_EN")
.dwattr $C$DW$93, DW_AT_TI_symbol_name("PRU1_CLK_EN")
.dwattr $C$DW$93, DW_AT_bit_offset(0x1a)
.dwattr $C$DW$93, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$93, DW_AT_decl_line(0x70)
.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("INTC_CLK_STOP_REQ")
.dwattr $C$DW$94, DW_AT_TI_symbol_name("INTC_CLK_STOP_REQ")
.dwattr $C$DW$94, DW_AT_bit_offset(0x19)
.dwattr $C$DW$94, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$94, DW_AT_decl_line(0x71)
.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("INTC_CLK_STOP_ACK")
.dwattr $C$DW$95, DW_AT_TI_symbol_name("INTC_CLK_STOP_ACK")
.dwattr $C$DW$95, DW_AT_bit_offset(0x18)
.dwattr $C$DW$95, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$95, DW_AT_decl_line(0x72)
.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("INTC_CLK_EN")
.dwattr $C$DW$96, DW_AT_TI_symbol_name("INTC_CLK_EN")
.dwattr $C$DW$96, DW_AT_bit_offset(0x17)
.dwattr $C$DW$96, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$96, DW_AT_decl_line(0x73)
.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("UART_CLK_STOP_REQ")
.dwattr $C$DW$97, DW_AT_TI_symbol_name("UART_CLK_STOP_REQ")
.dwattr $C$DW$97, DW_AT_bit_offset(0x16)
.dwattr $C$DW$97, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$97, DW_AT_decl_line(0x74)
.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("UART_CLK_STOP_ACK")
.dwattr $C$DW$98, DW_AT_TI_symbol_name("UART_CLK_STOP_ACK")
.dwattr $C$DW$98, DW_AT_bit_offset(0x15)
.dwattr $C$DW$98, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$98, DW_AT_decl_line(0x75)
.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("UART_CLK_EN")
.dwattr $C$DW$99, DW_AT_TI_symbol_name("UART_CLK_EN")
.dwattr $C$DW$99, DW_AT_bit_offset(0x14)
.dwattr $C$DW$99, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$99, DW_AT_decl_line(0x76)
.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("ECAP_CLK_STOP_REQ")
.dwattr $C$DW$100, DW_AT_TI_symbol_name("ECAP_CLK_STOP_REQ")
.dwattr $C$DW$100, DW_AT_bit_offset(0x13)
.dwattr $C$DW$100, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$100, DW_AT_decl_line(0x77)
.dwattr $C$DW$100, DW_AT_decl_column(0x0d)
$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("ECAP_CLK_STOP_ACK")
.dwattr $C$DW$101, DW_AT_TI_symbol_name("ECAP_CLK_STOP_ACK")
.dwattr $C$DW$101, DW_AT_bit_offset(0x12)
.dwattr $C$DW$101, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$101, DW_AT_decl_line(0x78)
.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("ECAP_CLK_EN")
.dwattr $C$DW$102, DW_AT_TI_symbol_name("ECAP_CLK_EN")
.dwattr $C$DW$102, DW_AT_bit_offset(0x11)
.dwattr $C$DW$102, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$102, DW_AT_decl_line(0x79)
.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("IEP_CLK_STOP_REQ")
.dwattr $C$DW$103, DW_AT_TI_symbol_name("IEP_CLK_STOP_REQ")
.dwattr $C$DW$103, DW_AT_bit_offset(0x10)
.dwattr $C$DW$103, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$103, DW_AT_decl_line(0x7a)
.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("IEP_CLK_STOP_ACK")
.dwattr $C$DW$104, DW_AT_TI_symbol_name("IEP_CLK_STOP_ACK")
.dwattr $C$DW$104, DW_AT_bit_offset(0x0f)
.dwattr $C$DW$104, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$104, DW_AT_decl_line(0x7b)
.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("IEP_CLK_EN")
.dwattr $C$DW$105, DW_AT_TI_symbol_name("IEP_CLK_EN")
.dwattr $C$DW$105, DW_AT_bit_offset(0x0e)
.dwattr $C$DW$105, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$105, DW_AT_decl_line(0x7c)
.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("rsvd18")
.dwattr $C$DW$106, DW_AT_TI_symbol_name("rsvd18")
.dwattr $C$DW$106, DW_AT_bit_offset(0x00)
.dwattr $C$DW$106, DW_AT_bit_size(0x0e)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$106, DW_AT_decl_line(0x7d)
.dwattr $C$DW$106, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$23, DW_AT_decl_file("/usr/share/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)
.dwendtag $C$DW$T$23
$C$DW$T$121 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$121, 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$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_RAW")
.dwattr $C$DW$107, DW_AT_TI_symbol_name("PRU0_IMEM_PE_RAW")
.dwattr $C$DW$107, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$107, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$107, DW_AT_decl_line(0x87)
.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_RAW")
.dwattr $C$DW$108, DW_AT_TI_symbol_name("PRU0_DMEM_PE_RAW")
.dwattr $C$DW$108, DW_AT_bit_offset(0x18)
.dwattr $C$DW$108, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$108, DW_AT_decl_line(0x88)
.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_RAW")
.dwattr $C$DW$109, DW_AT_TI_symbol_name("PRU1_IMEM_PE_RAW")
.dwattr $C$DW$109, DW_AT_bit_offset(0x14)
.dwattr $C$DW$109, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$109, DW_AT_decl_line(0x89)
.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_RAW")
.dwattr $C$DW$110, DW_AT_TI_symbol_name("PRU1_DMEM_PE_RAW")
.dwattr $C$DW$110, DW_AT_bit_offset(0x10)
.dwattr $C$DW$110, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$110, DW_AT_decl_line(0x8a)
.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_RAW")
.dwattr $C$DW$111, DW_AT_TI_symbol_name("RAM_PE_RAW")
.dwattr $C$DW$111, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$111, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$111, DW_AT_decl_line(0x8b)
.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)
.dwattr $C$DW$112, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$112, DW_AT_decl_line(0x8c)
.dwattr $C$DW$112, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$24, DW_AT_decl_file("/usr/share/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)
.dwendtag $C$DW$T$24
$C$DW$T$123 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$123, 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$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")
.dwattr $C$DW$113, DW_AT_TI_symbol_name("PRU0_IMEM_PE")
.dwattr $C$DW$113, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$113, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$113, DW_AT_decl_line(0x96)
.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")
.dwattr $C$DW$114, DW_AT_TI_symbol_name("PRU0_DMEM_PE")
.dwattr $C$DW$114, DW_AT_bit_offset(0x18)
.dwattr $C$DW$114, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$114, DW_AT_decl_line(0x97)
.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")
.dwattr $C$DW$115, DW_AT_TI_symbol_name("PRU1_IMEM_PE")
.dwattr $C$DW$115, DW_AT_bit_offset(0x14)
.dwattr $C$DW$115, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$115, DW_AT_decl_line(0x98)
.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")
.dwattr $C$DW$116, DW_AT_TI_symbol_name("PRU1_DMEM_PE")
.dwattr $C$DW$116, DW_AT_bit_offset(0x10)
.dwattr $C$DW$116, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$116, DW_AT_decl_line(0x99)
.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")
.dwattr $C$DW$117, DW_AT_TI_symbol_name("RAM_PE")
.dwattr $C$DW$117, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$117, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$117, DW_AT_decl_line(0x9a)
.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)
.dwattr $C$DW$118, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$118, DW_AT_decl_line(0x9b)
.dwattr $C$DW$118, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$25, DW_AT_decl_file("/usr/share/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)
.dwendtag $C$DW$T$25
$C$DW$T$125 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$125, 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$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_SET")
.dwattr $C$DW$119, DW_AT_TI_symbol_name("PRU0_IMEM_PE_SET")
.dwattr $C$DW$119, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$119, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$119, DW_AT_decl_line(0xa4)
.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_SET")
.dwattr $C$DW$120, DW_AT_TI_symbol_name("PRU0_DMEM_PE_SET")
.dwattr $C$DW$120, DW_AT_bit_offset(0x18)
.dwattr $C$DW$120, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$120, DW_AT_decl_line(0xa5)
.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_SET")
.dwattr $C$DW$121, DW_AT_TI_symbol_name("PRU1_IMEM_PE_SET")
.dwattr $C$DW$121, DW_AT_bit_offset(0x14)
.dwattr $C$DW$121, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$121, DW_AT_decl_line(0xa6)
.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_SET")
.dwattr $C$DW$122, DW_AT_TI_symbol_name("PRU1_DMEM_PE_SET")
.dwattr $C$DW$122, DW_AT_bit_offset(0x10)
.dwattr $C$DW$122, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$122, DW_AT_decl_line(0xa7)
.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("RAM_PE_SET")
.dwattr $C$DW$123, DW_AT_TI_symbol_name("RAM_PE_SET")
.dwattr $C$DW$123, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$123, DW_AT_bit_size(0x04)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$123, DW_AT_decl_line(0xa8)
.dwattr $C$DW$123, DW_AT_decl_column(0x0d)
$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("rsvd20")
.dwattr $C$DW$124, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$124, DW_AT_bit_offset(0x00)
.dwattr $C$DW$124, DW_AT_bit_size(0x0c)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$124, DW_AT_decl_line(0xa9)
.dwattr $C$DW$124, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$26, DW_AT_decl_file("/usr/share/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)
.dwendtag $C$DW$T$26
$C$DW$T$127 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$127, 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$125 .dwtag DW_TAG_member
.dwattr $C$DW$125, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$125, DW_AT_name("PRU0_IMEM_PE_CLR")
.dwattr $C$DW$125, DW_AT_TI_symbol_name("PRU0_IMEM_PE_CLR")
.dwattr $C$DW$125, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$125, DW_AT_bit_size(0x04)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$125, DW_AT_decl_line(0xb3)
.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("PRU0_DMEM_PE_CLR")
.dwattr $C$DW$126, DW_AT_TI_symbol_name("PRU0_DMEM_PE_CLR")
.dwattr $C$DW$126, DW_AT_bit_offset(0x18)
.dwattr $C$DW$126, DW_AT_bit_size(0x04)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$126, DW_AT_decl_line(0xb4)
.dwattr $C$DW$126, DW_AT_decl_column(0x0d)
$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("PRU1_IMEM_PE_CLR")
.dwattr $C$DW$127, DW_AT_TI_symbol_name("PRU1_IMEM_PE_CLR")
.dwattr $C$DW$127, DW_AT_bit_offset(0x14)
.dwattr $C$DW$127, DW_AT_bit_size(0x04)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$127, DW_AT_decl_line(0xb5)
.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("PRU1_DMEM_PE_CLR")
.dwattr $C$DW$128, DW_AT_TI_symbol_name("PRU1_DMEM_PE_CLR")
.dwattr $C$DW$128, DW_AT_bit_offset(0x10)
.dwattr $C$DW$128, DW_AT_bit_size(0x04)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$128, DW_AT_decl_line(0xb6)
.dwattr $C$DW$128, DW_AT_decl_column(0x0d)
$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("rsvd16")
.dwattr $C$DW$129, DW_AT_TI_symbol_name("rsvd16")
.dwattr $C$DW$129, DW_AT_bit_offset(0x00)
.dwattr $C$DW$129, DW_AT_bit_size(0x10)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$129, DW_AT_decl_line(0xb7)
.dwattr $C$DW$129, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$27, DW_AT_decl_file("/usr/share/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)
.dwendtag $C$DW$T$27
$C$DW$T$129 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$129, 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$130 .dwtag DW_TAG_member
.dwattr $C$DW$130, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$130, DW_AT_name("PMAO_PRU0")
.dwattr $C$DW$130, DW_AT_TI_symbol_name("PMAO_PRU0")
.dwattr $C$DW$130, DW_AT_bit_offset(0x1f)
.dwattr $C$DW$130, 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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$130, DW_AT_decl_line(0xc4)
.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("PMAO_PRU1")
.dwattr $C$DW$131, DW_AT_TI_symbol_name("PMAO_PRU1")
.dwattr $C$DW$131, DW_AT_bit_offset(0x1e)
.dwattr $C$DW$131, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$131, DW_AT_decl_line(0xc5)
.dwattr $C$DW$131, DW_AT_decl_column(0x0d)
$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("rsvd2")
.dwattr $C$DW$132, DW_AT_TI_symbol_name("rsvd2")
.dwattr $C$DW$132, DW_AT_bit_offset(0x00)
.dwattr $C$DW$132, DW_AT_bit_size(0x1e)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$132, DW_AT_decl_line(0xc6)
.dwattr $C$DW$132, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$28, DW_AT_decl_file("/usr/share/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)
.dwendtag $C$DW$T$28
$C$DW$T$131 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$131, 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$133 .dwtag DW_TAG_member
.dwattr $C$DW$133, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$133, DW_AT_name("OCP_EN")
.dwattr $C$DW$133, DW_AT_TI_symbol_name("OCP_EN")
.dwattr $C$DW$133, DW_AT_bit_offset(0x1f)
.dwattr $C$DW$133, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$133, DW_AT_decl_line(0xd3)
.dwattr $C$DW$133, DW_AT_decl_column(0x0d)
$C$DW$134 .dwtag DW_TAG_member
.dwattr $C$DW$134, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$134, DW_AT_name("rsvd1")
.dwattr $C$DW$134, DW_AT_TI_symbol_name("rsvd1")
.dwattr $C$DW$134, DW_AT_bit_offset(0x00)
.dwattr $C$DW$134, DW_AT_bit_size(0x1f)
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$134, DW_AT_decl_line(0xd4)
.dwattr $C$DW$134, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$29, DW_AT_decl_file("/usr/share/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)
.dwendtag $C$DW$T$29
$C$DW$T$133 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$133, 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$135 .dwtag DW_TAG_member
.dwattr $C$DW$135, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$135, DW_AT_name("PRU1_PAD_HP_EN")
.dwattr $C$DW$135, DW_AT_TI_symbol_name("PRU1_PAD_HP_EN")
.dwattr $C$DW$135, DW_AT_bit_offset(0x1f)
.dwattr $C$DW$135, DW_AT_bit_size(0x01)
.dwattr $C$DW$135, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$135, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$135, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$135, DW_AT_decl_line(0xde)
.dwattr $C$DW$135, DW_AT_decl_column(0x0d)
$C$DW$136 .dwtag DW_TAG_member
.dwattr $C$DW$136, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$136, DW_AT_name("XFR_SHIFT_EN")
.dwattr $C$DW$136, DW_AT_TI_symbol_name("XFR_SHIFT_EN")
.dwattr $C$DW$136, DW_AT_bit_offset(0x1e)
.dwattr $C$DW$136, DW_AT_bit_size(0x01)
.dwattr $C$DW$136, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$136, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$136, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$136, DW_AT_decl_line(0xdf)
.dwattr $C$DW$136, DW_AT_decl_column(0x0d)
$C$DW$137 .dwtag DW_TAG_member
.dwattr $C$DW$137, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$137, DW_AT_name("rsvd2")
.dwattr $C$DW$137, DW_AT_TI_symbol_name("rsvd2")
.dwattr $C$DW$137, DW_AT_bit_offset(0x00)
.dwattr $C$DW$137, DW_AT_bit_size(0x1e)
.dwattr $C$DW$137, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$137, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$137, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$137, DW_AT_decl_line(0xe0)
.dwattr $C$DW$137, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$30, DW_AT_decl_file("/usr/share/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)
.dwendtag $C$DW$T$30
$C$DW$T$135 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$135, 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$138 .dwtag DW_TAG_member
.dwattr $C$DW$138, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$138, DW_AT_name("PIN_MUX_SEL")
.dwattr $C$DW$138, DW_AT_TI_symbol_name("PIN_MUX_SEL")
.dwattr $C$DW$138, DW_AT_bit_offset(0x18)
.dwattr $C$DW$138, DW_AT_bit_size(0x08)
.dwattr $C$DW$138, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$138, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$138, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$138, DW_AT_decl_line(0xec)
.dwattr $C$DW$138, DW_AT_decl_column(0x0d)
$C$DW$139 .dwtag DW_TAG_member
.dwattr $C$DW$139, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$139, DW_AT_name("rsvd2")
.dwattr $C$DW$139, DW_AT_TI_symbol_name("rsvd2")
.dwattr $C$DW$139, DW_AT_bit_offset(0x00)
.dwattr $C$DW$139, DW_AT_bit_size(0x18)
.dwattr $C$DW$139, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$139, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$139, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$139, DW_AT_decl_line(0xed)
.dwattr $C$DW$139, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$31, DW_AT_decl_file("/usr/share/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)
.dwendtag $C$DW$T$31
$C$DW$T$137 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$137, 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$140 .dwtag DW_TAG_member
.dwattr $C$DW$140, DW_AT_type(*$C$DW$T$114)
.dwattr $C$DW$140, DW_AT_name("$P$T0")
.dwattr $C$DW$140, DW_AT_TI_symbol_name("$P$T0")
.dwattr $C$DW$140, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$140, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$140, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$140, DW_AT_decl_line(0x29)
.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$116)
.dwattr $C$DW$141, DW_AT_name("$P$T1")
.dwattr $C$DW$141, DW_AT_TI_symbol_name("$P$T1")
.dwattr $C$DW$141, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$141, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$141, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$141, DW_AT_decl_line(0x33)
.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$118)
.dwattr $C$DW$142, DW_AT_name("$P$T2")
.dwattr $C$DW$142, DW_AT_TI_symbol_name("$P$T2")
.dwattr $C$DW$142, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$142, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$142, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$142, DW_AT_decl_line(0x41)
.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$120)
.dwattr $C$DW$143, DW_AT_name("$P$T3")
.dwattr $C$DW$143, DW_AT_TI_symbol_name("$P$T3")
.dwattr $C$DW$143, DW_AT_data_member_location[DW_OP_plus_uconst 0xc]
.dwattr $C$DW$143, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$143, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$143, DW_AT_decl_line(0x54)
.dwattr $C$DW$143, DW_AT_decl_column(0x02)
$C$DW$144 .dwtag DW_TAG_member
.dwattr $C$DW$144, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$144, DW_AT_name("$P$T4")
.dwattr $C$DW$144, DW_AT_TI_symbol_name("$P$T4")
.dwattr $C$DW$144, DW_AT_data_member_location[DW_OP_plus_uconst 0x10]
.dwattr $C$DW$144, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$144, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$144, DW_AT_decl_line(0x67)
.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$124)
.dwattr $C$DW$145, DW_AT_name("$P$T5")
.dwattr $C$DW$145, DW_AT_TI_symbol_name("$P$T5")
.dwattr $C$DW$145, DW_AT_data_member_location[DW_OP_plus_uconst 0x14]
.dwattr $C$DW$145, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$145, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$145, DW_AT_decl_line(0x83)
.dwattr $C$DW$145, DW_AT_decl_column(0x02)
$C$DW$146 .dwtag DW_TAG_member
.dwattr $C$DW$146, DW_AT_type(*$C$DW$T$126)
.dwattr $C$DW$146, DW_AT_name("$P$T6")
.dwattr $C$DW$146, DW_AT_TI_symbol_name("$P$T6")
.dwattr $C$DW$146, DW_AT_data_member_location[DW_OP_plus_uconst 0x18]
.dwattr $C$DW$146, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$146, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$146, DW_AT_decl_line(0x92)
.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$128)
.dwattr $C$DW$147, DW_AT_name("$P$T7")
.dwattr $C$DW$147, DW_AT_TI_symbol_name("$P$T7")
.dwattr $C$DW$147, DW_AT_data_member_location[DW_OP_plus_uconst 0x1c]
.dwattr $C$DW$147, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$147, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$147, DW_AT_decl_line(0xa0)
.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$130)
.dwattr $C$DW$148, DW_AT_name("$P$T8")
.dwattr $C$DW$148, DW_AT_TI_symbol_name("$P$T8")
.dwattr $C$DW$148, DW_AT_data_member_location[DW_OP_plus_uconst 0x20]
.dwattr $C$DW$148, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$148, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$148, DW_AT_decl_line(0xaf)
.dwattr $C$DW$148, DW_AT_decl_column(0x02)
$C$DW$149 .dwtag DW_TAG_member
.dwattr $C$DW$149, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$149, DW_AT_name("rsvd24")
.dwattr $C$DW$149, DW_AT_TI_symbol_name("rsvd24")
.dwattr $C$DW$149, DW_AT_data_member_location[DW_OP_plus_uconst 0x24]
.dwattr $C$DW$149, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$149, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$149, DW_AT_decl_line(0xbc)
.dwattr $C$DW$149, DW_AT_decl_column(0x0b)
$C$DW$150 .dwtag DW_TAG_member
.dwattr $C$DW$150, DW_AT_type(*$C$DW$T$132)
.dwattr $C$DW$150, DW_AT_name("$P$T9")
.dwattr $C$DW$150, DW_AT_TI_symbol_name("$P$T9")
.dwattr $C$DW$150, DW_AT_data_member_location[DW_OP_plus_uconst 0x28]
.dwattr $C$DW$150, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$150, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$150, DW_AT_decl_line(0xc0)
.dwattr $C$DW$150, DW_AT_decl_column(0x02)
$C$DW$151 .dwtag DW_TAG_member
.dwattr $C$DW$151, DW_AT_type(*$C$DW$T$33)
.dwattr $C$DW$151, DW_AT_name("rsvd2c")
.dwattr $C$DW$151, DW_AT_TI_symbol_name("rsvd2c")
.dwattr $C$DW$151, DW_AT_data_member_location[DW_OP_plus_uconst 0x2c]
.dwattr $C$DW$151, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$151, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$151, DW_AT_decl_line(0xcb)
.dwattr $C$DW$151, DW_AT_decl_column(0x0b)
$C$DW$152 .dwtag DW_TAG_member
.dwattr $C$DW$152, DW_AT_type(*$C$DW$T$134)
.dwattr $C$DW$152, DW_AT_name("$P$T10")
.dwattr $C$DW$152, DW_AT_TI_symbol_name("$P$T10")
.dwattr $C$DW$152, DW_AT_data_member_location[DW_OP_plus_uconst 0x30]
.dwattr $C$DW$152, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$152, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$152, DW_AT_decl_line(0xcf)
.dwattr $C$DW$152, DW_AT_decl_column(0x02)
$C$DW$153 .dwtag DW_TAG_member
.dwattr $C$DW$153, DW_AT_type(*$C$DW$T$136)
.dwattr $C$DW$153, DW_AT_name("$P$T11")
.dwattr $C$DW$153, DW_AT_TI_symbol_name("$P$T11")
.dwattr $C$DW$153, DW_AT_data_member_location[DW_OP_plus_uconst 0x34]
.dwattr $C$DW$153, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$153, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$153, DW_AT_decl_line(0xda)
.dwattr $C$DW$153, DW_AT_decl_column(0x02)
$C$DW$154 .dwtag DW_TAG_member
.dwattr $C$DW$154, DW_AT_type(*$C$DW$T$34)
.dwattr $C$DW$154, DW_AT_name("rsvd38")
.dwattr $C$DW$154, DW_AT_TI_symbol_name("rsvd38")
.dwattr $C$DW$154, DW_AT_data_member_location[DW_OP_plus_uconst 0x38]
.dwattr $C$DW$154, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$154, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$154, DW_AT_decl_line(0xe5)
.dwattr $C$DW$154, DW_AT_decl_column(0x0b)
$C$DW$155 .dwtag DW_TAG_member
.dwattr $C$DW$155, DW_AT_type(*$C$DW$T$138)
.dwattr $C$DW$155, DW_AT_name("$P$T12")
.dwattr $C$DW$155, DW_AT_TI_symbol_name("$P$T12")
.dwattr $C$DW$155, DW_AT_data_member_location[DW_OP_plus_uconst 0x40]
.dwattr $C$DW$155, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$155, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$155, DW_AT_decl_line(0xe8)
.dwattr $C$DW$155, DW_AT_decl_column(0x02)
.dwattr $C$DW$T$35, DW_AT_decl_file("/usr/share/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)
.dwendtag $C$DW$T$35
$C$DW$T$294 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$294, DW_AT_name("pruCfg")
.dwattr $C$DW$T$294, DW_AT_type(*$C$DW$T$35)
.dwattr $C$DW$T$294, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$294, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$294, DW_AT_decl_line(0xf0)
.dwattr $C$DW$T$294, DW_AT_decl_column(0x03)
$C$DW$T$295 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$295, DW_AT_type(*$C$DW$T$294)
$C$DW$T$36 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$36, DW_AT_byte_size(0x04)
$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_MINOR")
.dwattr $C$DW$156, DW_AT_TI_symbol_name("REV_MINOR")
.dwattr $C$DW$156, DW_AT_bit_offset(0x1a)
.dwattr $C$DW$156, DW_AT_bit_size(0x06)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$156, DW_AT_decl_line(0x2d)
.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("REV_CUSTOM")
.dwattr $C$DW$157, DW_AT_TI_symbol_name("REV_CUSTOM")
.dwattr $C$DW$157, DW_AT_bit_offset(0x18)
.dwattr $C$DW$157, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$157, DW_AT_decl_line(0x2e)
.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_MAJOR")
.dwattr $C$DW$158, DW_AT_TI_symbol_name("REV_MAJOR")
.dwattr $C$DW$158, DW_AT_bit_offset(0x15)
.dwattr $C$DW$158, DW_AT_bit_size(0x03)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$158, DW_AT_decl_line(0x2f)
.dwattr $C$DW$158, DW_AT_decl_column(0x0d)
$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("REV_RTL")
.dwattr $C$DW$159, DW_AT_TI_symbol_name("REV_RTL")
.dwattr $C$DW$159, DW_AT_bit_offset(0x10)
.dwattr $C$DW$159, DW_AT_bit_size(0x05)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$159, DW_AT_decl_line(0x30)
.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("REV_MODULE")
.dwattr $C$DW$160, DW_AT_TI_symbol_name("REV_MODULE")
.dwattr $C$DW$160, DW_AT_bit_offset(0x04)
.dwattr $C$DW$160, DW_AT_bit_size(0x0c)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$160, DW_AT_decl_line(0x31)
.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("rsvd28")
.dwattr $C$DW$161, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$161, DW_AT_bit_offset(0x02)
.dwattr $C$DW$161, DW_AT_bit_size(0x02)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$161, DW_AT_decl_line(0x32)
.dwattr $C$DW$161, DW_AT_decl_column(0x0d)
$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("REV_SCHEME")
.dwattr $C$DW$162, DW_AT_TI_symbol_name("REV_SCHEME")
.dwattr $C$DW$162, DW_AT_bit_offset(0x00)
.dwattr $C$DW$162, DW_AT_bit_size(0x02)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$162, DW_AT_decl_line(0x33)
.dwattr $C$DW$162, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$36, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$36, DW_AT_decl_line(0x2c)
.dwattr $C$DW$T$36, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$36
$C$DW$T$139 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$139, DW_AT_type(*$C$DW$T$36)
$C$DW$T$37 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$37, DW_AT_byte_size(0x04)
$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("rsvd0")
.dwattr $C$DW$163, DW_AT_TI_symbol_name("rsvd0")
.dwattr $C$DW$163, DW_AT_bit_offset(0x1e)
.dwattr $C$DW$163, DW_AT_bit_size(0x02)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$163, DW_AT_decl_line(0x3d)
.dwattr $C$DW$163, DW_AT_decl_column(0x0d)
$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("NEST_MODE")
.dwattr $C$DW$164, DW_AT_TI_symbol_name("NEST_MODE")
.dwattr $C$DW$164, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$164, DW_AT_bit_size(0x02)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$164, DW_AT_decl_line(0x3e)
.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("rsvd4")
.dwattr $C$DW$165, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$165, DW_AT_bit_offset(0x00)
.dwattr $C$DW$165, DW_AT_bit_size(0x1c)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$165, DW_AT_decl_line(0x3f)
.dwattr $C$DW$165, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$37, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$37, DW_AT_decl_line(0x3c)
.dwattr $C$DW$T$37, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$37
$C$DW$T$141 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$141, DW_AT_type(*$C$DW$T$37)
$C$DW$T$38 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$38, DW_AT_byte_size(0x04)
$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("EN_HINT_ANY")
.dwattr $C$DW$166, DW_AT_TI_symbol_name("EN_HINT_ANY")
.dwattr $C$DW$166, DW_AT_bit_offset(0x1f)
.dwattr $C$DW$166, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$166, DW_AT_decl_line(0x4c)
.dwattr $C$DW$166, DW_AT_decl_column(0x0d)
$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("rsvd1")
.dwattr $C$DW$167, DW_AT_TI_symbol_name("rsvd1")
.dwattr $C$DW$167, DW_AT_bit_offset(0x00)
.dwattr $C$DW$167, DW_AT_bit_size(0x1f)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$167, DW_AT_decl_line(0x4d)
.dwattr $C$DW$167, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$38, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$38, DW_AT_decl_line(0x4b)
.dwattr $C$DW$T$38, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$38
$C$DW$T$143 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$143, 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$168 .dwtag DW_TAG_member
.dwattr $C$DW$168, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$168, DW_AT_name("GLB_NEST_LEVEL")
.dwattr $C$DW$168, DW_AT_TI_symbol_name("GLB_NEST_LEVEL")
.dwattr $C$DW$168, DW_AT_bit_offset(0x17)
.dwattr $C$DW$168, DW_AT_bit_size(0x09)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$168, DW_AT_decl_line(0x5a)
.dwattr $C$DW$168, DW_AT_decl_column(0x0d)
$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("rsvd9")
.dwattr $C$DW$169, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$169, DW_AT_bit_offset(0x01)
.dwattr $C$DW$169, DW_AT_bit_size(0x16)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$169, DW_AT_decl_line(0x5b)
.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("AUTO_OVERRIDE")
.dwattr $C$DW$170, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$170, DW_AT_bit_offset(0x00)
.dwattr $C$DW$170, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$170, DW_AT_decl_line(0x5c)
.dwattr $C$DW$170, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$39, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$39, DW_AT_decl_line(0x59)
.dwattr $C$DW$T$39, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$39
$C$DW$T$145 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$145, 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$171 .dwtag DW_TAG_member
.dwattr $C$DW$171, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$171, DW_AT_name("STS_SET_IDX")
.dwattr $C$DW$171, DW_AT_TI_symbol_name("STS_SET_IDX")
.dwattr $C$DW$171, DW_AT_bit_offset(0x16)
.dwattr $C$DW$171, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$171, DW_AT_decl_line(0x66)
.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)
.dwattr $C$DW$172, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$172, DW_AT_decl_line(0x67)
.dwattr $C$DW$172, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$40, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$40, DW_AT_decl_line(0x65)
.dwattr $C$DW$T$40, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$40
$C$DW$T$147 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$147, 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$173 .dwtag DW_TAG_member
.dwattr $C$DW$173, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$173, DW_AT_name("STS_CLR_IDX")
.dwattr $C$DW$173, DW_AT_TI_symbol_name("STS_CLR_IDX")
.dwattr $C$DW$173, DW_AT_bit_offset(0x16)
.dwattr $C$DW$173, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$173, DW_AT_decl_line(0x71)
.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)
.dwattr $C$DW$174, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$174, DW_AT_decl_line(0x72)
.dwattr $C$DW$174, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$41, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$41, DW_AT_decl_line(0x70)
.dwattr $C$DW$T$41, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$41
$C$DW$T$149 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$149, 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$175 .dwtag DW_TAG_member
.dwattr $C$DW$175, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$175, DW_AT_name("EN_SET_IDX")
.dwattr $C$DW$175, DW_AT_TI_symbol_name("EN_SET_IDX")
.dwattr $C$DW$175, DW_AT_bit_offset(0x16)
.dwattr $C$DW$175, DW_AT_bit_size(0x0a)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$175, DW_AT_decl_line(0x7c)
.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("rsvd10")
.dwattr $C$DW$176, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$176, DW_AT_bit_offset(0x00)
.dwattr $C$DW$176, DW_AT_bit_size(0x16)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$176, DW_AT_decl_line(0x7d)
.dwattr $C$DW$176, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$42, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$42, DW_AT_decl_line(0x7b)
.dwattr $C$DW$T$42, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$42
$C$DW$T$151 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$151, 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$177 .dwtag DW_TAG_member
.dwattr $C$DW$177, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$177, DW_AT_name("EN_CLR_IDX")
.dwattr $C$DW$177, DW_AT_TI_symbol_name("EN_CLR_IDX")
.dwattr $C$DW$177, DW_AT_bit_offset(0x16)
.dwattr $C$DW$177, DW_AT_bit_size(0x0a)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$177, DW_AT_decl_line(0x87)
.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("rsvd10")
.dwattr $C$DW$178, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$178, DW_AT_bit_offset(0x00)
.dwattr $C$DW$178, DW_AT_bit_size(0x16)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$178, DW_AT_decl_line(0x88)
.dwattr $C$DW$178, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$43, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$43, DW_AT_decl_line(0x86)
.dwattr $C$DW$T$43, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$43
$C$DW$T$153 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$153, 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$179 .dwtag DW_TAG_member
.dwattr $C$DW$179, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$179, DW_AT_name("HINT_EN_SET_IDX")
.dwattr $C$DW$179, DW_AT_TI_symbol_name("HINT_EN_SET_IDX")
.dwattr $C$DW$179, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$179, DW_AT_bit_size(0x04)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$179, DW_AT_decl_line(0x95)
.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("rsvd4")
.dwattr $C$DW$180, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$180, DW_AT_bit_offset(0x00)
.dwattr $C$DW$180, DW_AT_bit_size(0x1c)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$180, DW_AT_decl_line(0x96)
.dwattr $C$DW$180, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$44, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$44, DW_AT_decl_line(0x94)
.dwattr $C$DW$T$44, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$44
$C$DW$T$155 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$155, 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$181 .dwtag DW_TAG_member
.dwattr $C$DW$181, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$181, DW_AT_name("HINT_EN_CLR_IDX")
.dwattr $C$DW$181, DW_AT_TI_symbol_name("HINT_EN_CLR_IDX")
.dwattr $C$DW$181, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$181, DW_AT_bit_size(0x04)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$181, DW_AT_decl_line(0xa0)
.dwattr $C$DW$181, DW_AT_decl_column(0x0d)
$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("rsvd4")
.dwattr $C$DW$182, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$182, DW_AT_bit_offset(0x00)
.dwattr $C$DW$182, DW_AT_bit_size(0x1c)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$182, DW_AT_decl_line(0xa1)
.dwattr $C$DW$182, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$45, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$45, DW_AT_decl_line(0x9f)
.dwattr $C$DW$T$45, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$45
$C$DW$T$157 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$157, 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$183 .dwtag DW_TAG_member
.dwattr $C$DW$183, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$183, DW_AT_name("GLB_PRI_INTR")
.dwattr $C$DW$183, DW_AT_TI_symbol_name("GLB_PRI_INTR")
.dwattr $C$DW$183, DW_AT_bit_offset(0x16)
.dwattr $C$DW$183, DW_AT_bit_size(0x0a)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$183, DW_AT_decl_line(0xae)
.dwattr $C$DW$183, DW_AT_decl_column(0x0d)
$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("rsvd10")
.dwattr $C$DW$184, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$184, DW_AT_bit_offset(0x01)
.dwattr $C$DW$184, DW_AT_bit_size(0x15)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$184, DW_AT_decl_line(0xaf)
.dwattr $C$DW$184, DW_AT_decl_column(0x0d)
$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("GLB_NONE")
.dwattr $C$DW$185, DW_AT_TI_symbol_name("GLB_NONE")
.dwattr $C$DW$185, DW_AT_bit_offset(0x00)
.dwattr $C$DW$185, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$185, DW_AT_decl_line(0xb0)
.dwattr $C$DW$185, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$46, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$46, DW_AT_decl_line(0xad)
.dwattr $C$DW$T$46, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$46
$C$DW$T$159 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$159, 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$186 .dwtag DW_TAG_member
.dwattr $C$DW$186, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$186, DW_AT_name("RAW_STS_31_0")
.dwattr $C$DW$186, DW_AT_TI_symbol_name("RAW_STS_31_0")
.dwattr $C$DW$186, DW_AT_bit_offset(0x00)
.dwattr $C$DW$186, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$186, DW_AT_decl_line(0xbd)
.dwattr $C$DW$186, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$47, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$47, DW_AT_decl_line(0xbc)
.dwattr $C$DW$T$47, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$47
$C$DW$T$161 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$161, 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$187 .dwtag DW_TAG_member
.dwattr $C$DW$187, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$187, DW_AT_name("RAW_STS_63_32")
.dwattr $C$DW$187, DW_AT_TI_symbol_name("RAW_STS_63_32")
.dwattr $C$DW$187, DW_AT_bit_offset(0x00)
.dwattr $C$DW$187, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$187, DW_AT_decl_line(0xc7)
.dwattr $C$DW$187, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$48, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$48, DW_AT_decl_line(0xc6)
.dwattr $C$DW$T$48, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$48
$C$DW$T$163 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$163, 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$188 .dwtag DW_TAG_member
.dwattr $C$DW$188, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$188, DW_AT_name("ENA_STS_31_0")
.dwattr $C$DW$188, DW_AT_TI_symbol_name("ENA_STS_31_0")
.dwattr $C$DW$188, DW_AT_bit_offset(0x00)
.dwattr $C$DW$188, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$188, DW_AT_decl_line(0xd4)
.dwattr $C$DW$188, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$49, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$49, DW_AT_decl_line(0xd3)
.dwattr $C$DW$T$49, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$49
$C$DW$T$165 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$165, 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$189 .dwtag DW_TAG_member
.dwattr $C$DW$189, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$189, DW_AT_name("ENA_STS_63_32")
.dwattr $C$DW$189, DW_AT_TI_symbol_name("ENA_STS_63_32")
.dwattr $C$DW$189, DW_AT_bit_offset(0x00)
.dwattr $C$DW$189, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$189, DW_AT_decl_line(0xde)
.dwattr $C$DW$189, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$50, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$50, DW_AT_decl_line(0xdd)
.dwattr $C$DW$T$50, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$50
$C$DW$T$167 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$167, 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$190 .dwtag DW_TAG_member
.dwattr $C$DW$190, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$190, DW_AT_name("EN_SET_31_0")
.dwattr $C$DW$190, DW_AT_TI_symbol_name("EN_SET_31_0")
.dwattr $C$DW$190, DW_AT_bit_offset(0x00)
.dwattr $C$DW$190, DW_AT_bit_size(0x20)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$190, DW_AT_decl_line(0xeb)
.dwattr $C$DW$190, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$51, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$51, DW_AT_decl_line(0xea)
.dwattr $C$DW$T$51, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$51
$C$DW$T$169 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$169, 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$191 .dwtag DW_TAG_member
.dwattr $C$DW$191, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$191, DW_AT_name("EN_SET_63_32")
.dwattr $C$DW$191, DW_AT_TI_symbol_name("EN_SET_63_32")
.dwattr $C$DW$191, DW_AT_bit_offset(0x00)
.dwattr $C$DW$191, DW_AT_bit_size(0x20)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$191, DW_AT_decl_line(0xf5)
.dwattr $C$DW$191, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$52, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$52, DW_AT_decl_line(0xf4)
.dwattr $C$DW$T$52, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$52
$C$DW$T$171 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$171, 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$192 .dwtag DW_TAG_member
.dwattr $C$DW$192, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$192, DW_AT_name("EN_CLR_31_0")
.dwattr $C$DW$192, DW_AT_TI_symbol_name("EN_CLR_31_0")
.dwattr $C$DW$192, DW_AT_bit_offset(0x00)
.dwattr $C$DW$192, DW_AT_bit_size(0x20)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$192, DW_AT_decl_line(0x102)
.dwattr $C$DW$192, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$53, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$53, DW_AT_decl_line(0x101)
.dwattr $C$DW$T$53, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$53
$C$DW$T$173 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$173, 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$193 .dwtag DW_TAG_member
.dwattr $C$DW$193, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$193, DW_AT_name("EN_CLR_63_32")
.dwattr $C$DW$193, DW_AT_TI_symbol_name("EN_CLR_63_32")
.dwattr $C$DW$193, DW_AT_bit_offset(0x00)
.dwattr $C$DW$193, DW_AT_bit_size(0x20)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$193, DW_AT_decl_line(0x10c)
.dwattr $C$DW$193, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$54, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$54, DW_AT_decl_line(0x10b)
.dwattr $C$DW$T$54, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$54
$C$DW$T$175 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$175, 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$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_0")
.dwattr $C$DW$194, DW_AT_TI_symbol_name("CH_MAP_0")
.dwattr $C$DW$194, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$194, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$194, DW_AT_decl_line(0x119)
.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("rsvd4")
.dwattr $C$DW$195, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$195, DW_AT_bit_offset(0x18)
.dwattr $C$DW$195, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$195, DW_AT_decl_line(0x11a)
.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_1")
.dwattr $C$DW$196, DW_AT_TI_symbol_name("CH_MAP_1")
.dwattr $C$DW$196, DW_AT_bit_offset(0x14)
.dwattr $C$DW$196, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$196, DW_AT_decl_line(0x11b)
.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("rsvd12")
.dwattr $C$DW$197, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$197, DW_AT_bit_offset(0x10)
.dwattr $C$DW$197, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$197, DW_AT_decl_line(0x11c)
.dwattr $C$DW$197, DW_AT_decl_column(0x0d)
$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_2")
.dwattr $C$DW$198, DW_AT_TI_symbol_name("CH_MAP_2")
.dwattr $C$DW$198, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$198, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$198, DW_AT_decl_line(0x11d)
.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("rsvd20")
.dwattr $C$DW$199, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$199, DW_AT_bit_offset(0x08)
.dwattr $C$DW$199, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$199, DW_AT_decl_line(0x11e)
.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_3")
.dwattr $C$DW$200, DW_AT_TI_symbol_name("CH_MAP_3")
.dwattr $C$DW$200, DW_AT_bit_offset(0x04)
.dwattr $C$DW$200, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$200, DW_AT_decl_line(0x11f)
.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("rsvd28")
.dwattr $C$DW$201, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$201, DW_AT_bit_offset(0x00)
.dwattr $C$DW$201, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$201, DW_AT_decl_line(0x120)
.dwattr $C$DW$201, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$55, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$55, DW_AT_decl_line(0x118)
.dwattr $C$DW$T$55, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$55
$C$DW$T$177 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$177, 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$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_4")
.dwattr $C$DW$202, DW_AT_TI_symbol_name("CH_MAP_4")
.dwattr $C$DW$202, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$202, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$202, DW_AT_decl_line(0x12a)
.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("rsvd4")
.dwattr $C$DW$203, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$203, DW_AT_bit_offset(0x18)
.dwattr $C$DW$203, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$203, DW_AT_decl_line(0x12b)
.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_5")
.dwattr $C$DW$204, DW_AT_TI_symbol_name("CH_MAP_5")
.dwattr $C$DW$204, DW_AT_bit_offset(0x14)
.dwattr $C$DW$204, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$204, DW_AT_decl_line(0x12c)
.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("rsvd12")
.dwattr $C$DW$205, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$205, DW_AT_bit_offset(0x10)
.dwattr $C$DW$205, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$205, DW_AT_decl_line(0x12d)
.dwattr $C$DW$205, DW_AT_decl_column(0x0d)
$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_6")
.dwattr $C$DW$206, DW_AT_TI_symbol_name("CH_MAP_6")
.dwattr $C$DW$206, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$206, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$206, DW_AT_decl_line(0x12e)
.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("rsvd20")
.dwattr $C$DW$207, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$207, DW_AT_bit_offset(0x08)
.dwattr $C$DW$207, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$207, DW_AT_decl_line(0x12f)
.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_7")
.dwattr $C$DW$208, DW_AT_TI_symbol_name("CH_MAP_7")
.dwattr $C$DW$208, DW_AT_bit_offset(0x04)
.dwattr $C$DW$208, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$208, DW_AT_decl_line(0x130)
.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("rsvd28")
.dwattr $C$DW$209, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$209, DW_AT_bit_offset(0x00)
.dwattr $C$DW$209, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$209, DW_AT_decl_line(0x131)
.dwattr $C$DW$209, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$56, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$56, DW_AT_decl_line(0x129)
.dwattr $C$DW$T$56, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$56
$C$DW$T$179 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$179, 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$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_8")
.dwattr $C$DW$210, DW_AT_TI_symbol_name("CH_MAP_8")
.dwattr $C$DW$210, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$210, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$210, DW_AT_decl_line(0x13b)
.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("rsvd4")
.dwattr $C$DW$211, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$211, DW_AT_bit_offset(0x18)
.dwattr $C$DW$211, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$211, DW_AT_decl_line(0x13c)
.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_9")
.dwattr $C$DW$212, DW_AT_TI_symbol_name("CH_MAP_9")
.dwattr $C$DW$212, DW_AT_bit_offset(0x14)
.dwattr $C$DW$212, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$212, DW_AT_decl_line(0x13d)
.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("rsvd12")
.dwattr $C$DW$213, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$213, DW_AT_bit_offset(0x10)
.dwattr $C$DW$213, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$213, DW_AT_decl_line(0x13e)
.dwattr $C$DW$213, DW_AT_decl_column(0x0d)
$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_10")
.dwattr $C$DW$214, DW_AT_TI_symbol_name("CH_MAP_10")
.dwattr $C$DW$214, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$214, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$214, DW_AT_decl_line(0x13f)
.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("rsvd20")
.dwattr $C$DW$215, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$215, DW_AT_bit_offset(0x08)
.dwattr $C$DW$215, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$215, DW_AT_decl_line(0x140)
.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_11")
.dwattr $C$DW$216, DW_AT_TI_symbol_name("CH_MAP_11")
.dwattr $C$DW$216, DW_AT_bit_offset(0x04)
.dwattr $C$DW$216, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$216, DW_AT_decl_line(0x141)
.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("rsvd28")
.dwattr $C$DW$217, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$217, DW_AT_bit_offset(0x00)
.dwattr $C$DW$217, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$217, DW_AT_decl_line(0x142)
.dwattr $C$DW$217, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$57, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$57, DW_AT_decl_line(0x13a)
.dwattr $C$DW$T$57, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$57
$C$DW$T$181 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$181, 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$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_12")
.dwattr $C$DW$218, DW_AT_TI_symbol_name("CH_MAP_12")
.dwattr $C$DW$218, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$218, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$218, DW_AT_decl_line(0x14c)
.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("rsvd4")
.dwattr $C$DW$219, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$219, DW_AT_bit_offset(0x18)
.dwattr $C$DW$219, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$219, DW_AT_decl_line(0x14d)
.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_13")
.dwattr $C$DW$220, DW_AT_TI_symbol_name("CH_MAP_13")
.dwattr $C$DW$220, DW_AT_bit_offset(0x14)
.dwattr $C$DW$220, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$220, DW_AT_decl_line(0x14e)
.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("rsvd12")
.dwattr $C$DW$221, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$221, DW_AT_bit_offset(0x10)
.dwattr $C$DW$221, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$221, DW_AT_decl_line(0x14f)
.dwattr $C$DW$221, DW_AT_decl_column(0x0d)
$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_14")
.dwattr $C$DW$222, DW_AT_TI_symbol_name("CH_MAP_14")
.dwattr $C$DW$222, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$222, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$222, DW_AT_decl_line(0x150)
.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("rsvd20")
.dwattr $C$DW$223, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$223, DW_AT_bit_offset(0x08)
.dwattr $C$DW$223, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$223, DW_AT_decl_line(0x151)
.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_15")
.dwattr $C$DW$224, DW_AT_TI_symbol_name("CH_MAP_15")
.dwattr $C$DW$224, DW_AT_bit_offset(0x04)
.dwattr $C$DW$224, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$224, DW_AT_decl_line(0x152)
.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("rsvd28")
.dwattr $C$DW$225, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$225, DW_AT_bit_offset(0x00)
.dwattr $C$DW$225, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$225, DW_AT_decl_line(0x153)
.dwattr $C$DW$225, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$58, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$58, DW_AT_decl_line(0x14b)
.dwattr $C$DW$T$58, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$58
$C$DW$T$183 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$183, 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$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_16")
.dwattr $C$DW$226, DW_AT_TI_symbol_name("CH_MAP_16")
.dwattr $C$DW$226, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$226, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$226, DW_AT_decl_line(0x15d)
.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("rsvd4")
.dwattr $C$DW$227, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$227, DW_AT_bit_offset(0x18)
.dwattr $C$DW$227, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$227, DW_AT_decl_line(0x15e)
.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_17")
.dwattr $C$DW$228, DW_AT_TI_symbol_name("CH_MAP_17")
.dwattr $C$DW$228, DW_AT_bit_offset(0x14)
.dwattr $C$DW$228, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$228, DW_AT_decl_line(0x15f)
.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("rsvd12")
.dwattr $C$DW$229, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$229, DW_AT_bit_offset(0x10)
.dwattr $C$DW$229, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$229, DW_AT_decl_line(0x160)
.dwattr $C$DW$229, DW_AT_decl_column(0x0d)
$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_18")
.dwattr $C$DW$230, DW_AT_TI_symbol_name("CH_MAP_18")
.dwattr $C$DW$230, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$230, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$230, DW_AT_decl_line(0x161)
.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("rsvd20")
.dwattr $C$DW$231, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$231, DW_AT_bit_offset(0x08)
.dwattr $C$DW$231, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$231, DW_AT_decl_line(0x162)
.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_19")
.dwattr $C$DW$232, DW_AT_TI_symbol_name("CH_MAP_19")
.dwattr $C$DW$232, DW_AT_bit_offset(0x04)
.dwattr $C$DW$232, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$232, DW_AT_decl_line(0x163)
.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("rsvd28")
.dwattr $C$DW$233, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$233, DW_AT_bit_offset(0x00)
.dwattr $C$DW$233, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$233, DW_AT_decl_line(0x164)
.dwattr $C$DW$233, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$59, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$59, DW_AT_decl_line(0x15c)
.dwattr $C$DW$T$59, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$59
$C$DW$T$185 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$185, 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$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_20")
.dwattr $C$DW$234, DW_AT_TI_symbol_name("CH_MAP_20")
.dwattr $C$DW$234, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$234, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$234, DW_AT_decl_line(0x16e)
.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("rsvd4")
.dwattr $C$DW$235, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$235, DW_AT_bit_offset(0x18)
.dwattr $C$DW$235, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$235, DW_AT_decl_line(0x16f)
.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_21")
.dwattr $C$DW$236, DW_AT_TI_symbol_name("CH_MAP_21")
.dwattr $C$DW$236, DW_AT_bit_offset(0x14)
.dwattr $C$DW$236, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$236, DW_AT_decl_line(0x170)
.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("rsvd12")
.dwattr $C$DW$237, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$237, DW_AT_bit_offset(0x10)
.dwattr $C$DW$237, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$237, DW_AT_decl_line(0x171)
.dwattr $C$DW$237, DW_AT_decl_column(0x0d)
$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_22")
.dwattr $C$DW$238, DW_AT_TI_symbol_name("CH_MAP_22")
.dwattr $C$DW$238, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$238, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$238, DW_AT_decl_line(0x172)
.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("rsvd20")
.dwattr $C$DW$239, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$239, DW_AT_bit_offset(0x08)
.dwattr $C$DW$239, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$239, DW_AT_decl_line(0x173)
.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_23")
.dwattr $C$DW$240, DW_AT_TI_symbol_name("CH_MAP_23")
.dwattr $C$DW$240, DW_AT_bit_offset(0x04)
.dwattr $C$DW$240, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$240, DW_AT_decl_line(0x174)
.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("rsvd28")
.dwattr $C$DW$241, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$241, DW_AT_bit_offset(0x00)
.dwattr $C$DW$241, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$241, DW_AT_decl_line(0x175)
.dwattr $C$DW$241, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$60, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$60, DW_AT_decl_line(0x16d)
.dwattr $C$DW$T$60, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$60
$C$DW$T$187 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$187, 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$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_24")
.dwattr $C$DW$242, DW_AT_TI_symbol_name("CH_MAP_24")
.dwattr $C$DW$242, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$242, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$242, DW_AT_decl_line(0x17f)
.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("rsvd4")
.dwattr $C$DW$243, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$243, DW_AT_bit_offset(0x18)
.dwattr $C$DW$243, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$243, DW_AT_decl_line(0x180)
.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_25")
.dwattr $C$DW$244, DW_AT_TI_symbol_name("CH_MAP_25")
.dwattr $C$DW$244, DW_AT_bit_offset(0x14)
.dwattr $C$DW$244, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$244, DW_AT_decl_line(0x181)
.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("rsvd12")
.dwattr $C$DW$245, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$245, DW_AT_bit_offset(0x10)
.dwattr $C$DW$245, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$245, DW_AT_decl_line(0x182)
.dwattr $C$DW$245, DW_AT_decl_column(0x0d)
$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_26")
.dwattr $C$DW$246, DW_AT_TI_symbol_name("CH_MAP_26")
.dwattr $C$DW$246, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$246, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$246, DW_AT_decl_line(0x183)
.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("rsvd20")
.dwattr $C$DW$247, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$247, DW_AT_bit_offset(0x08)
.dwattr $C$DW$247, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$247, DW_AT_decl_line(0x184)
.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_27")
.dwattr $C$DW$248, DW_AT_TI_symbol_name("CH_MAP_27")
.dwattr $C$DW$248, DW_AT_bit_offset(0x04)
.dwattr $C$DW$248, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$248, DW_AT_decl_line(0x185)
.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("rsvd28")
.dwattr $C$DW$249, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$249, DW_AT_bit_offset(0x00)
.dwattr $C$DW$249, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$249, DW_AT_decl_line(0x186)
.dwattr $C$DW$249, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$61, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$61, DW_AT_decl_line(0x17e)
.dwattr $C$DW$T$61, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$61
$C$DW$T$189 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$189, 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$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_28")
.dwattr $C$DW$250, DW_AT_TI_symbol_name("CH_MAP_28")
.dwattr $C$DW$250, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$250, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$250, DW_AT_decl_line(0x190)
.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("rsvd4")
.dwattr $C$DW$251, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$251, DW_AT_bit_offset(0x18)
.dwattr $C$DW$251, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$251, DW_AT_decl_line(0x191)
.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_29")
.dwattr $C$DW$252, DW_AT_TI_symbol_name("CH_MAP_29")
.dwattr $C$DW$252, DW_AT_bit_offset(0x14)
.dwattr $C$DW$252, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$252, DW_AT_decl_line(0x192)
.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("rsvd12")
.dwattr $C$DW$253, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$253, DW_AT_bit_offset(0x10)
.dwattr $C$DW$253, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$253, DW_AT_decl_line(0x193)
.dwattr $C$DW$253, DW_AT_decl_column(0x0d)
$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_30")
.dwattr $C$DW$254, DW_AT_TI_symbol_name("CH_MAP_30")
.dwattr $C$DW$254, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$254, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$254, DW_AT_decl_line(0x194)
.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("rsvd20")
.dwattr $C$DW$255, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$255, DW_AT_bit_offset(0x08)
.dwattr $C$DW$255, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$255, DW_AT_decl_line(0x195)
.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_31")
.dwattr $C$DW$256, DW_AT_TI_symbol_name("CH_MAP_31")
.dwattr $C$DW$256, DW_AT_bit_offset(0x04)
.dwattr $C$DW$256, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$256, DW_AT_decl_line(0x196)
.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("rsvd28")
.dwattr $C$DW$257, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$257, DW_AT_bit_offset(0x00)
.dwattr $C$DW$257, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$257, DW_AT_decl_line(0x197)
.dwattr $C$DW$257, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$62, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$62, DW_AT_decl_line(0x18f)
.dwattr $C$DW$T$62, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$62
$C$DW$T$191 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$191, 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$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_32")
.dwattr $C$DW$258, DW_AT_TI_symbol_name("CH_MAP_32")
.dwattr $C$DW$258, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$258, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$258, DW_AT_decl_line(0x1a1)
.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("rsvd4")
.dwattr $C$DW$259, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$259, DW_AT_bit_offset(0x18)
.dwattr $C$DW$259, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$259, DW_AT_decl_line(0x1a2)
.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_33")
.dwattr $C$DW$260, DW_AT_TI_symbol_name("CH_MAP_33")
.dwattr $C$DW$260, DW_AT_bit_offset(0x14)
.dwattr $C$DW$260, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$260, DW_AT_decl_line(0x1a3)
.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("rsvd12")
.dwattr $C$DW$261, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$261, DW_AT_bit_offset(0x10)
.dwattr $C$DW$261, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$261, DW_AT_decl_line(0x1a4)
.dwattr $C$DW$261, DW_AT_decl_column(0x0d)
$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_34")
.dwattr $C$DW$262, DW_AT_TI_symbol_name("CH_MAP_34")
.dwattr $C$DW$262, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$262, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$262, DW_AT_decl_line(0x1a5)
.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("rsvd20")
.dwattr $C$DW$263, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$263, DW_AT_bit_offset(0x08)
.dwattr $C$DW$263, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$263, DW_AT_decl_line(0x1a6)
.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_35")
.dwattr $C$DW$264, DW_AT_TI_symbol_name("CH_MAP_35")
.dwattr $C$DW$264, DW_AT_bit_offset(0x04)
.dwattr $C$DW$264, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$264, DW_AT_decl_line(0x1a7)
.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("rsvd28")
.dwattr $C$DW$265, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$265, DW_AT_bit_offset(0x00)
.dwattr $C$DW$265, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$265, DW_AT_decl_line(0x1a8)
.dwattr $C$DW$265, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$63, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$63, DW_AT_decl_line(0x1a0)
.dwattr $C$DW$T$63, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$63
$C$DW$T$193 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$193, 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$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_36")
.dwattr $C$DW$266, DW_AT_TI_symbol_name("CH_MAP_36")
.dwattr $C$DW$266, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$266, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$266, DW_AT_decl_line(0x1b2)
.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("rsvd4")
.dwattr $C$DW$267, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$267, DW_AT_bit_offset(0x18)
.dwattr $C$DW$267, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$267, DW_AT_decl_line(0x1b3)
.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_37")
.dwattr $C$DW$268, DW_AT_TI_symbol_name("CH_MAP_37")
.dwattr $C$DW$268, DW_AT_bit_offset(0x14)
.dwattr $C$DW$268, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$268, DW_AT_decl_line(0x1b4)
.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("rsvd12")
.dwattr $C$DW$269, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$269, DW_AT_bit_offset(0x10)
.dwattr $C$DW$269, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$269, DW_AT_decl_line(0x1b5)
.dwattr $C$DW$269, DW_AT_decl_column(0x0d)
$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_38")
.dwattr $C$DW$270, DW_AT_TI_symbol_name("CH_MAP_38")
.dwattr $C$DW$270, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$270, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$270, DW_AT_decl_line(0x1b6)
.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("rsvd20")
.dwattr $C$DW$271, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$271, DW_AT_bit_offset(0x08)
.dwattr $C$DW$271, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$271, DW_AT_decl_line(0x1b7)
.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_39")
.dwattr $C$DW$272, DW_AT_TI_symbol_name("CH_MAP_39")
.dwattr $C$DW$272, DW_AT_bit_offset(0x04)
.dwattr $C$DW$272, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$272, DW_AT_decl_line(0x1b8)
.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("rsvd28")
.dwattr $C$DW$273, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$273, DW_AT_bit_offset(0x00)
.dwattr $C$DW$273, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$273, DW_AT_decl_line(0x1b9)
.dwattr $C$DW$273, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$64, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$64, DW_AT_decl_line(0x1b1)
.dwattr $C$DW$T$64, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$64
$C$DW$T$195 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$195, 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$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_40")
.dwattr $C$DW$274, DW_AT_TI_symbol_name("CH_MAP_40")
.dwattr $C$DW$274, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$274, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$274, DW_AT_decl_line(0x1c3)
.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("rsvd4")
.dwattr $C$DW$275, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$275, DW_AT_bit_offset(0x18)
.dwattr $C$DW$275, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$275, DW_AT_decl_line(0x1c4)
.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_41")
.dwattr $C$DW$276, DW_AT_TI_symbol_name("CH_MAP_41")
.dwattr $C$DW$276, DW_AT_bit_offset(0x14)
.dwattr $C$DW$276, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$276, DW_AT_decl_line(0x1c5)
.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("rsvd12")
.dwattr $C$DW$277, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$277, DW_AT_bit_offset(0x10)
.dwattr $C$DW$277, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$277, DW_AT_decl_line(0x1c6)
.dwattr $C$DW$277, DW_AT_decl_column(0x0d)
$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_42")
.dwattr $C$DW$278, DW_AT_TI_symbol_name("CH_MAP_42")
.dwattr $C$DW$278, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$278, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$278, DW_AT_decl_line(0x1c7)
.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("rsvd20")
.dwattr $C$DW$279, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$279, DW_AT_bit_offset(0x08)
.dwattr $C$DW$279, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$279, DW_AT_decl_line(0x1c8)
.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_43")
.dwattr $C$DW$280, DW_AT_TI_symbol_name("CH_MAP_43")
.dwattr $C$DW$280, DW_AT_bit_offset(0x04)
.dwattr $C$DW$280, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$280, DW_AT_decl_line(0x1c9)
.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("rsvd28")
.dwattr $C$DW$281, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$281, DW_AT_bit_offset(0x00)
.dwattr $C$DW$281, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$281, DW_AT_decl_line(0x1ca)
.dwattr $C$DW$281, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$65, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$65, DW_AT_decl_line(0x1c2)
.dwattr $C$DW$T$65, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$65
$C$DW$T$197 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$197, 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$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_44")
.dwattr $C$DW$282, DW_AT_TI_symbol_name("CH_MAP_44")
.dwattr $C$DW$282, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$282, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$282, DW_AT_decl_line(0x1d4)
.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("rsvd4")
.dwattr $C$DW$283, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$283, DW_AT_bit_offset(0x18)
.dwattr $C$DW$283, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$283, DW_AT_decl_line(0x1d5)
.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_45")
.dwattr $C$DW$284, DW_AT_TI_symbol_name("CH_MAP_45")
.dwattr $C$DW$284, DW_AT_bit_offset(0x14)
.dwattr $C$DW$284, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$284, DW_AT_decl_line(0x1d6)
.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("rsvd12")
.dwattr $C$DW$285, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$285, DW_AT_bit_offset(0x10)
.dwattr $C$DW$285, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$285, DW_AT_decl_line(0x1d7)
.dwattr $C$DW$285, DW_AT_decl_column(0x0d)
$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_46")
.dwattr $C$DW$286, DW_AT_TI_symbol_name("CH_MAP_46")
.dwattr $C$DW$286, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$286, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$286, DW_AT_decl_line(0x1d8)
.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("rsvd20")
.dwattr $C$DW$287, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$287, DW_AT_bit_offset(0x08)
.dwattr $C$DW$287, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$287, DW_AT_decl_line(0x1d9)
.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_47")
.dwattr $C$DW$288, DW_AT_TI_symbol_name("CH_MAP_47")
.dwattr $C$DW$288, DW_AT_bit_offset(0x04)
.dwattr $C$DW$288, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$288, DW_AT_decl_line(0x1da)
.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("rsvd28")
.dwattr $C$DW$289, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$289, DW_AT_bit_offset(0x00)
.dwattr $C$DW$289, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$289, DW_AT_decl_line(0x1db)
.dwattr $C$DW$289, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$66, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$66, DW_AT_decl_line(0x1d3)
.dwattr $C$DW$T$66, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$66
$C$DW$T$199 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$199, 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$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_48")
.dwattr $C$DW$290, DW_AT_TI_symbol_name("CH_MAP_48")
.dwattr $C$DW$290, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$290, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$290, DW_AT_decl_line(0x1e5)
.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("rsvd4")
.dwattr $C$DW$291, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$291, DW_AT_bit_offset(0x18)
.dwattr $C$DW$291, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$291, DW_AT_decl_line(0x1e6)
.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_49")
.dwattr $C$DW$292, DW_AT_TI_symbol_name("CH_MAP_49")
.dwattr $C$DW$292, DW_AT_bit_offset(0x14)
.dwattr $C$DW$292, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$292, DW_AT_decl_line(0x1e7)
.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("rsvd12")
.dwattr $C$DW$293, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$293, DW_AT_bit_offset(0x10)
.dwattr $C$DW$293, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$293, DW_AT_decl_line(0x1e8)
.dwattr $C$DW$293, DW_AT_decl_column(0x0d)
$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_50")
.dwattr $C$DW$294, DW_AT_TI_symbol_name("CH_MAP_50")
.dwattr $C$DW$294, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$294, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$294, DW_AT_decl_line(0x1e9)
.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("rsvd20")
.dwattr $C$DW$295, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$295, DW_AT_bit_offset(0x08)
.dwattr $C$DW$295, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$295, DW_AT_decl_line(0x1ea)
.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_51")
.dwattr $C$DW$296, DW_AT_TI_symbol_name("CH_MAP_51")
.dwattr $C$DW$296, DW_AT_bit_offset(0x04)
.dwattr $C$DW$296, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$296, DW_AT_decl_line(0x1eb)
.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("rsvd28")
.dwattr $C$DW$297, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$297, DW_AT_bit_offset(0x00)
.dwattr $C$DW$297, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$297, DW_AT_decl_line(0x1ec)
.dwattr $C$DW$297, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$67, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$67, DW_AT_decl_line(0x1e4)
.dwattr $C$DW$T$67, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$67
$C$DW$T$201 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$201, 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$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_52")
.dwattr $C$DW$298, DW_AT_TI_symbol_name("CH_MAP_52")
.dwattr $C$DW$298, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$298, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$298, DW_AT_decl_line(0x1f6)
.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("rsvd4")
.dwattr $C$DW$299, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$299, DW_AT_bit_offset(0x18)
.dwattr $C$DW$299, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$299, DW_AT_decl_line(0x1f7)
.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_53")
.dwattr $C$DW$300, DW_AT_TI_symbol_name("CH_MAP_53")
.dwattr $C$DW$300, DW_AT_bit_offset(0x14)
.dwattr $C$DW$300, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$300, DW_AT_decl_line(0x1f8)
.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("rsvd12")
.dwattr $C$DW$301, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$301, DW_AT_bit_offset(0x10)
.dwattr $C$DW$301, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$301, DW_AT_decl_line(0x1f9)
.dwattr $C$DW$301, DW_AT_decl_column(0x0d)
$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_54")
.dwattr $C$DW$302, DW_AT_TI_symbol_name("CH_MAP_54")
.dwattr $C$DW$302, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$302, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$302, DW_AT_decl_line(0x1fa)
.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("rsvd20")
.dwattr $C$DW$303, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$303, DW_AT_bit_offset(0x08)
.dwattr $C$DW$303, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$303, DW_AT_decl_line(0x1fb)
.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_55")
.dwattr $C$DW$304, DW_AT_TI_symbol_name("CH_MAP_55")
.dwattr $C$DW$304, DW_AT_bit_offset(0x04)
.dwattr $C$DW$304, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$304, DW_AT_decl_line(0x1fc)
.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("rsvd28")
.dwattr $C$DW$305, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$305, DW_AT_bit_offset(0x00)
.dwattr $C$DW$305, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$305, DW_AT_decl_line(0x1fd)
.dwattr $C$DW$305, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$68, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$68, DW_AT_decl_line(0x1f5)
.dwattr $C$DW$T$68, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$68
$C$DW$T$203 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$203, 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$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_56")
.dwattr $C$DW$306, DW_AT_TI_symbol_name("CH_MAP_56")
.dwattr $C$DW$306, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$306, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$306, DW_AT_decl_line(0x207)
.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("rsvd4")
.dwattr $C$DW$307, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$307, DW_AT_bit_offset(0x18)
.dwattr $C$DW$307, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$307, DW_AT_decl_line(0x208)
.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_57")
.dwattr $C$DW$308, DW_AT_TI_symbol_name("CH_MAP_57")
.dwattr $C$DW$308, DW_AT_bit_offset(0x14)
.dwattr $C$DW$308, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$308, DW_AT_decl_line(0x209)
.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("rsvd12")
.dwattr $C$DW$309, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$309, DW_AT_bit_offset(0x10)
.dwattr $C$DW$309, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$309, DW_AT_decl_line(0x20a)
.dwattr $C$DW$309, DW_AT_decl_column(0x0d)
$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_58")
.dwattr $C$DW$310, DW_AT_TI_symbol_name("CH_MAP_58")
.dwattr $C$DW$310, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$310, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$310, DW_AT_decl_line(0x20b)
.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("rsvd20")
.dwattr $C$DW$311, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$311, DW_AT_bit_offset(0x08)
.dwattr $C$DW$311, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$311, DW_AT_decl_line(0x20c)
.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_59")
.dwattr $C$DW$312, DW_AT_TI_symbol_name("CH_MAP_59")
.dwattr $C$DW$312, DW_AT_bit_offset(0x04)
.dwattr $C$DW$312, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$312, DW_AT_decl_line(0x20d)
.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("rsvd28")
.dwattr $C$DW$313, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$313, DW_AT_bit_offset(0x00)
.dwattr $C$DW$313, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$313, DW_AT_decl_line(0x20e)
.dwattr $C$DW$313, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$69, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$69, DW_AT_decl_line(0x206)
.dwattr $C$DW$T$69, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$69
$C$DW$T$205 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$205, 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$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_60")
.dwattr $C$DW$314, DW_AT_TI_symbol_name("CH_MAP_60")
.dwattr $C$DW$314, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$314, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$314, DW_AT_decl_line(0x218)
.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("rsvd4")
.dwattr $C$DW$315, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$315, DW_AT_bit_offset(0x18)
.dwattr $C$DW$315, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$315, DW_AT_decl_line(0x219)
.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_61")
.dwattr $C$DW$316, DW_AT_TI_symbol_name("CH_MAP_61")
.dwattr $C$DW$316, DW_AT_bit_offset(0x14)
.dwattr $C$DW$316, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$316, DW_AT_decl_line(0x21a)
.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("rsvd12")
.dwattr $C$DW$317, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$317, DW_AT_bit_offset(0x10)
.dwattr $C$DW$317, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$317, DW_AT_decl_line(0x21b)
.dwattr $C$DW$317, DW_AT_decl_column(0x0d)
$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("CH_MAP_62")
.dwattr $C$DW$318, DW_AT_TI_symbol_name("CH_MAP_62")
.dwattr $C$DW$318, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$318, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$318, DW_AT_decl_line(0x21c)
.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("rsvd20")
.dwattr $C$DW$319, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$319, DW_AT_bit_offset(0x08)
.dwattr $C$DW$319, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$319, DW_AT_decl_line(0x21d)
.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("CH_MAP_63")
.dwattr $C$DW$320, DW_AT_TI_symbol_name("CH_MAP_63")
.dwattr $C$DW$320, DW_AT_bit_offset(0x04)
.dwattr $C$DW$320, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$320, DW_AT_decl_line(0x21e)
.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("rsvd28")
.dwattr $C$DW$321, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$321, DW_AT_bit_offset(0x00)
.dwattr $C$DW$321, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$321, DW_AT_decl_line(0x21f)
.dwattr $C$DW$321, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$70, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$70, DW_AT_decl_line(0x217)
.dwattr $C$DW$T$70, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$70
$C$DW$T$207 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$207, 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$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_0")
.dwattr $C$DW$322, DW_AT_TI_symbol_name("HINT_MAP_0")
.dwattr $C$DW$322, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$322, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$322, DW_AT_decl_line(0x22c)
.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("rsvd4")
.dwattr $C$DW$323, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$323, DW_AT_bit_offset(0x18)
.dwattr $C$DW$323, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$323, DW_AT_decl_line(0x22d)
.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_1")
.dwattr $C$DW$324, DW_AT_TI_symbol_name("HINT_MAP_1")
.dwattr $C$DW$324, DW_AT_bit_offset(0x14)
.dwattr $C$DW$324, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$324, DW_AT_decl_line(0x22e)
.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("rsvd12")
.dwattr $C$DW$325, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$325, DW_AT_bit_offset(0x10)
.dwattr $C$DW$325, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$325, DW_AT_decl_line(0x22f)
.dwattr $C$DW$325, DW_AT_decl_column(0x0d)
$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_2")
.dwattr $C$DW$326, DW_AT_TI_symbol_name("HINT_MAP_2")
.dwattr $C$DW$326, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$326, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$326, DW_AT_decl_line(0x230)
.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("rsvd20")
.dwattr $C$DW$327, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$327, DW_AT_bit_offset(0x08)
.dwattr $C$DW$327, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$327, DW_AT_decl_line(0x231)
.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_3")
.dwattr $C$DW$328, DW_AT_TI_symbol_name("HINT_MAP_3")
.dwattr $C$DW$328, DW_AT_bit_offset(0x04)
.dwattr $C$DW$328, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$328, DW_AT_decl_line(0x232)
.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("rsvd28")
.dwattr $C$DW$329, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$329, DW_AT_bit_offset(0x00)
.dwattr $C$DW$329, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$329, DW_AT_decl_line(0x233)
.dwattr $C$DW$329, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$71, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$71, DW_AT_decl_line(0x22b)
.dwattr $C$DW$T$71, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$71
$C$DW$T$209 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$209, 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$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_4")
.dwattr $C$DW$330, DW_AT_TI_symbol_name("HINT_MAP_4")
.dwattr $C$DW$330, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$330, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$330, DW_AT_decl_line(0x23d)
.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("rsvd4")
.dwattr $C$DW$331, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$331, DW_AT_bit_offset(0x18)
.dwattr $C$DW$331, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$331, DW_AT_decl_line(0x23e)
.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_5")
.dwattr $C$DW$332, DW_AT_TI_symbol_name("HINT_MAP_5")
.dwattr $C$DW$332, DW_AT_bit_offset(0x14)
.dwattr $C$DW$332, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$332, DW_AT_decl_line(0x23f)
.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("rsvd12")
.dwattr $C$DW$333, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$333, DW_AT_bit_offset(0x10)
.dwattr $C$DW$333, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$333, DW_AT_decl_line(0x240)
.dwattr $C$DW$333, DW_AT_decl_column(0x0d)
$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_6")
.dwattr $C$DW$334, DW_AT_TI_symbol_name("HINT_MAP_6")
.dwattr $C$DW$334, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$334, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$334, DW_AT_decl_line(0x241)
.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("rsvd20")
.dwattr $C$DW$335, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$335, DW_AT_bit_offset(0x08)
.dwattr $C$DW$335, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$335, DW_AT_decl_line(0x242)
.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_7")
.dwattr $C$DW$336, DW_AT_TI_symbol_name("HINT_MAP_7")
.dwattr $C$DW$336, DW_AT_bit_offset(0x04)
.dwattr $C$DW$336, 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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$336, DW_AT_decl_line(0x243)
.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("rsvd28")
.dwattr $C$DW$337, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$337, DW_AT_bit_offset(0x00)
.dwattr $C$DW$337, DW_AT_bit_size(0x04)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$337, DW_AT_decl_line(0x244)
.dwattr $C$DW$337, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$72, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$72, DW_AT_decl_line(0x23c)
.dwattr $C$DW$T$72, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$72
$C$DW$T$211 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$211, 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$338 .dwtag DW_TAG_member
.dwattr $C$DW$338, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$338, DW_AT_name("HINT_MAP_8")
.dwattr $C$DW$338, DW_AT_TI_symbol_name("HINT_MAP_8")
.dwattr $C$DW$338, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$338, DW_AT_bit_size(0x04)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$338, DW_AT_decl_line(0x24e)
.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("rsvd4")
.dwattr $C$DW$339, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$339, DW_AT_bit_offset(0x18)
.dwattr $C$DW$339, DW_AT_bit_size(0x04)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$339, DW_AT_decl_line(0x24f)
.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("HINT_MAP_9")
.dwattr $C$DW$340, DW_AT_TI_symbol_name("HINT_MAP_9")
.dwattr $C$DW$340, DW_AT_bit_offset(0x14)
.dwattr $C$DW$340, DW_AT_bit_size(0x04)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$340, DW_AT_decl_line(0x250)
.dwattr $C$DW$340, DW_AT_decl_column(0x0d)
$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("rsvd12")
.dwattr $C$DW$341, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$341, DW_AT_bit_offset(0x00)
.dwattr $C$DW$341, DW_AT_bit_size(0x14)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$341, DW_AT_decl_line(0x251)
.dwattr $C$DW$341, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$73, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$73, DW_AT_decl_line(0x24d)
.dwattr $C$DW$T$73, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$73
$C$DW$T$213 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$213, 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$342 .dwtag DW_TAG_member
.dwattr $C$DW$342, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$342, DW_AT_name("PRI_HINT_0")
.dwattr $C$DW$342, DW_AT_TI_symbol_name("PRI_HINT_0")
.dwattr $C$DW$342, DW_AT_bit_offset(0x16)
.dwattr $C$DW$342, DW_AT_bit_size(0x0a)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$342, DW_AT_decl_line(0x25e)
.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("rsvd10")
.dwattr $C$DW$343, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$343, DW_AT_bit_offset(0x01)
.dwattr $C$DW$343, DW_AT_bit_size(0x15)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$343, DW_AT_decl_line(0x25f)
.dwattr $C$DW$343, DW_AT_decl_column(0x0d)
$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("NONE_HINT_0")
.dwattr $C$DW$344, DW_AT_TI_symbol_name("NONE_HINT_0")
.dwattr $C$DW$344, DW_AT_bit_offset(0x00)
.dwattr $C$DW$344, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$344, DW_AT_decl_line(0x260)
.dwattr $C$DW$344, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$74, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$74, DW_AT_decl_line(0x25d)
.dwattr $C$DW$T$74, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$74
$C$DW$T$215 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$215, 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$345 .dwtag DW_TAG_member
.dwattr $C$DW$345, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$345, DW_AT_name("PRI_HINT_1")
.dwattr $C$DW$345, DW_AT_TI_symbol_name("PRI_HINT_1")
.dwattr $C$DW$345, DW_AT_bit_offset(0x16)
.dwattr $C$DW$345, DW_AT_bit_size(0x0a)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$345, DW_AT_decl_line(0x26a)
.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("rsvd10")
.dwattr $C$DW$346, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$346, DW_AT_bit_offset(0x01)
.dwattr $C$DW$346, DW_AT_bit_size(0x15)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$346, DW_AT_decl_line(0x26b)
.dwattr $C$DW$346, DW_AT_decl_column(0x0d)
$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("NONE_HINT_1")
.dwattr $C$DW$347, DW_AT_TI_symbol_name("NONE_HINT_1")
.dwattr $C$DW$347, DW_AT_bit_offset(0x00)
.dwattr $C$DW$347, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$347, DW_AT_decl_line(0x26c)
.dwattr $C$DW$347, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$75, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$75, DW_AT_decl_line(0x269)
.dwattr $C$DW$T$75, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$75
$C$DW$T$217 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$217, 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$348 .dwtag DW_TAG_member
.dwattr $C$DW$348, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$348, DW_AT_name("PRI_HINT_2")
.dwattr $C$DW$348, DW_AT_TI_symbol_name("PRI_HINT_2")
.dwattr $C$DW$348, DW_AT_bit_offset(0x16)
.dwattr $C$DW$348, DW_AT_bit_size(0x0a)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$348, DW_AT_decl_line(0x276)
.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("rsvd10")
.dwattr $C$DW$349, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$349, DW_AT_bit_offset(0x01)
.dwattr $C$DW$349, DW_AT_bit_size(0x15)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$349, DW_AT_decl_line(0x277)
.dwattr $C$DW$349, DW_AT_decl_column(0x0d)
$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("NONE_HINT_2")
.dwattr $C$DW$350, DW_AT_TI_symbol_name("NONE_HINT_2")
.dwattr $C$DW$350, DW_AT_bit_offset(0x00)
.dwattr $C$DW$350, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$350, DW_AT_decl_line(0x278)
.dwattr $C$DW$350, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$76, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$76, DW_AT_decl_line(0x275)
.dwattr $C$DW$T$76, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$76
$C$DW$T$219 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$219, 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$351 .dwtag DW_TAG_member
.dwattr $C$DW$351, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$351, DW_AT_name("PRI_HINT_3")
.dwattr $C$DW$351, DW_AT_TI_symbol_name("PRI_HINT_3")
.dwattr $C$DW$351, DW_AT_bit_offset(0x16)
.dwattr $C$DW$351, DW_AT_bit_size(0x0a)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$351, DW_AT_decl_line(0x282)
.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("rsvd10")
.dwattr $C$DW$352, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$352, DW_AT_bit_offset(0x01)
.dwattr $C$DW$352, DW_AT_bit_size(0x15)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$352, DW_AT_decl_line(0x283)
.dwattr $C$DW$352, DW_AT_decl_column(0x0d)
$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("NONE_HINT_3")
.dwattr $C$DW$353, DW_AT_TI_symbol_name("NONE_HINT_3")
.dwattr $C$DW$353, DW_AT_bit_offset(0x00)
.dwattr $C$DW$353, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$353, DW_AT_decl_line(0x284)
.dwattr $C$DW$353, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$77, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$77, DW_AT_decl_line(0x281)
.dwattr $C$DW$T$77, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$77
$C$DW$T$221 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$221, 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$354 .dwtag DW_TAG_member
.dwattr $C$DW$354, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$354, DW_AT_name("PRI_HINT_4")
.dwattr $C$DW$354, DW_AT_TI_symbol_name("PRI_HINT_4")
.dwattr $C$DW$354, DW_AT_bit_offset(0x16)
.dwattr $C$DW$354, DW_AT_bit_size(0x0a)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$354, DW_AT_decl_line(0x28e)
.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("rsvd10")
.dwattr $C$DW$355, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$355, DW_AT_bit_offset(0x01)
.dwattr $C$DW$355, DW_AT_bit_size(0x15)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$355, DW_AT_decl_line(0x28f)
.dwattr $C$DW$355, DW_AT_decl_column(0x0d)
$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("NONE_HINT_4")
.dwattr $C$DW$356, DW_AT_TI_symbol_name("NONE_HINT_4")
.dwattr $C$DW$356, DW_AT_bit_offset(0x00)
.dwattr $C$DW$356, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$356, DW_AT_decl_line(0x290)
.dwattr $C$DW$356, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$78, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$78, DW_AT_decl_line(0x28d)
.dwattr $C$DW$T$78, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$78
$C$DW$T$223 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$223, 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$357 .dwtag DW_TAG_member
.dwattr $C$DW$357, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$357, DW_AT_name("PRI_HINT_5")
.dwattr $C$DW$357, DW_AT_TI_symbol_name("PRI_HINT_5")
.dwattr $C$DW$357, DW_AT_bit_offset(0x16)
.dwattr $C$DW$357, DW_AT_bit_size(0x0a)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$357, DW_AT_decl_line(0x29a)
.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("rsvd10")
.dwattr $C$DW$358, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$358, DW_AT_bit_offset(0x01)
.dwattr $C$DW$358, DW_AT_bit_size(0x15)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$358, DW_AT_decl_line(0x29b)
.dwattr $C$DW$358, DW_AT_decl_column(0x0d)
$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("NONE_HINT_5")
.dwattr $C$DW$359, DW_AT_TI_symbol_name("NONE_HINT_5")
.dwattr $C$DW$359, DW_AT_bit_offset(0x00)
.dwattr $C$DW$359, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$359, DW_AT_decl_line(0x29c)
.dwattr $C$DW$359, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$79, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$79, DW_AT_decl_line(0x299)
.dwattr $C$DW$T$79, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$79
$C$DW$T$225 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$225, 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$360 .dwtag DW_TAG_member
.dwattr $C$DW$360, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$360, DW_AT_name("PRI_HINT_6")
.dwattr $C$DW$360, DW_AT_TI_symbol_name("PRI_HINT_6")
.dwattr $C$DW$360, DW_AT_bit_offset(0x16)
.dwattr $C$DW$360, DW_AT_bit_size(0x0a)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$360, DW_AT_decl_line(0x2a6)
.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("rsvd10")
.dwattr $C$DW$361, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$361, DW_AT_bit_offset(0x01)
.dwattr $C$DW$361, DW_AT_bit_size(0x15)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$361, DW_AT_decl_line(0x2a7)
.dwattr $C$DW$361, DW_AT_decl_column(0x0d)
$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("NONE_HINT_6")
.dwattr $C$DW$362, DW_AT_TI_symbol_name("NONE_HINT_6")
.dwattr $C$DW$362, DW_AT_bit_offset(0x00)
.dwattr $C$DW$362, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$362, DW_AT_decl_line(0x2a8)
.dwattr $C$DW$362, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$80, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$80, DW_AT_decl_line(0x2a5)
.dwattr $C$DW$T$80, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$80
$C$DW$T$227 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$227, 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$363 .dwtag DW_TAG_member
.dwattr $C$DW$363, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$363, DW_AT_name("PRI_HINT_7")
.dwattr $C$DW$363, DW_AT_TI_symbol_name("PRI_HINT_7")
.dwattr $C$DW$363, DW_AT_bit_offset(0x16)
.dwattr $C$DW$363, DW_AT_bit_size(0x0a)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$363, DW_AT_decl_line(0x2b2)
.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("rsvd10")
.dwattr $C$DW$364, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$364, DW_AT_bit_offset(0x01)
.dwattr $C$DW$364, DW_AT_bit_size(0x15)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$364, DW_AT_decl_line(0x2b3)
.dwattr $C$DW$364, DW_AT_decl_column(0x0d)
$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("NONE_HINT_7")
.dwattr $C$DW$365, DW_AT_TI_symbol_name("NONE_HINT_7")
.dwattr $C$DW$365, DW_AT_bit_offset(0x00)
.dwattr $C$DW$365, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$365, DW_AT_decl_line(0x2b4)
.dwattr $C$DW$365, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$81, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$81, DW_AT_decl_line(0x2b1)
.dwattr $C$DW$T$81, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$81
$C$DW$T$229 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$229, 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$366 .dwtag DW_TAG_member
.dwattr $C$DW$366, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$366, DW_AT_name("PRI_HINT_8")
.dwattr $C$DW$366, DW_AT_TI_symbol_name("PRI_HINT_8")
.dwattr $C$DW$366, DW_AT_bit_offset(0x16)
.dwattr $C$DW$366, DW_AT_bit_size(0x0a)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$366, DW_AT_decl_line(0x2be)
.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("rsvd10")
.dwattr $C$DW$367, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$367, DW_AT_bit_offset(0x01)
.dwattr $C$DW$367, DW_AT_bit_size(0x15)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$367, DW_AT_decl_line(0x2bf)
.dwattr $C$DW$367, DW_AT_decl_column(0x0d)
$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("NONE_HINT_8")
.dwattr $C$DW$368, DW_AT_TI_symbol_name("NONE_HINT_8")
.dwattr $C$DW$368, DW_AT_bit_offset(0x00)
.dwattr $C$DW$368, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$368, DW_AT_decl_line(0x2c0)
.dwattr $C$DW$368, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$82, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$82, DW_AT_decl_line(0x2bd)
.dwattr $C$DW$T$82, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$82
$C$DW$T$231 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$231, 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$369 .dwtag DW_TAG_member
.dwattr $C$DW$369, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$369, DW_AT_name("PRI_HINT_9")
.dwattr $C$DW$369, DW_AT_TI_symbol_name("PRI_HINT_9")
.dwattr $C$DW$369, DW_AT_bit_offset(0x16)
.dwattr $C$DW$369, DW_AT_bit_size(0x0a)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$369, DW_AT_decl_line(0x2ca)
.dwattr $C$DW$369, DW_AT_decl_column(0x0d)
$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("rsvd10")
.dwattr $C$DW$370, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$370, DW_AT_bit_offset(0x01)
.dwattr $C$DW$370, DW_AT_bit_size(0x15)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$370, DW_AT_decl_line(0x2cb)
.dwattr $C$DW$370, DW_AT_decl_column(0x0d)
$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("NONE_HINT_9")
.dwattr $C$DW$371, DW_AT_TI_symbol_name("NONE_HINT_9")
.dwattr $C$DW$371, DW_AT_bit_offset(0x00)
.dwattr $C$DW$371, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$371, DW_AT_decl_line(0x2cc)
.dwattr $C$DW$371, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$83, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$83, DW_AT_decl_line(0x2c9)
.dwattr $C$DW$T$83, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$83
$C$DW$T$233 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$233, 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$372 .dwtag DW_TAG_member
.dwattr $C$DW$372, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$372, DW_AT_name("POLARITY_31_0")
.dwattr $C$DW$372, DW_AT_TI_symbol_name("POLARITY_31_0")
.dwattr $C$DW$372, DW_AT_bit_offset(0x00)
.dwattr $C$DW$372, DW_AT_bit_size(0x20)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$372, DW_AT_decl_line(0x2d9)
.dwattr $C$DW$372, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$84, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$84, DW_AT_decl_line(0x2d8)
.dwattr $C$DW$T$84, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$84
$C$DW$T$235 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$235, 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$373 .dwtag DW_TAG_member
.dwattr $C$DW$373, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$373, DW_AT_name("POLARITY_63_32")
.dwattr $C$DW$373, DW_AT_TI_symbol_name("POLARITY_63_32")
.dwattr $C$DW$373, DW_AT_bit_offset(0x00)
.dwattr $C$DW$373, DW_AT_bit_size(0x20)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$373, DW_AT_decl_line(0x2e3)
.dwattr $C$DW$373, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$85, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$85, DW_AT_decl_line(0x2e2)
.dwattr $C$DW$T$85, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$85
$C$DW$T$237 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$237, 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$374 .dwtag DW_TAG_member
.dwattr $C$DW$374, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$374, DW_AT_name("TYPE_31_0")
.dwattr $C$DW$374, DW_AT_TI_symbol_name("TYPE_31_0")
.dwattr $C$DW$374, DW_AT_bit_offset(0x00)
.dwattr $C$DW$374, DW_AT_bit_size(0x20)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$374, DW_AT_decl_line(0x2f0)
.dwattr $C$DW$374, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$86, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$86, DW_AT_decl_line(0x2ef)
.dwattr $C$DW$T$86, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$86
$C$DW$T$239 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$239, 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$375 .dwtag DW_TAG_member
.dwattr $C$DW$375, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$375, DW_AT_name("TYPE_63_32")
.dwattr $C$DW$375, DW_AT_TI_symbol_name("TYPE_63_32")
.dwattr $C$DW$375, DW_AT_bit_offset(0x00)
.dwattr $C$DW$375, DW_AT_bit_size(0x20)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$375, DW_AT_decl_line(0x2fa)
.dwattr $C$DW$375, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$87, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$87, DW_AT_decl_line(0x2f9)
.dwattr $C$DW$T$87, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$87
$C$DW$T$241 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$241, 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$376 .dwtag DW_TAG_member
.dwattr $C$DW$376, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$376, DW_AT_name("NEST_HINT_0")
.dwattr $C$DW$376, DW_AT_TI_symbol_name("NEST_HINT_0")
.dwattr $C$DW$376, DW_AT_bit_offset(0x17)
.dwattr $C$DW$376, DW_AT_bit_size(0x09)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$376, DW_AT_decl_line(0x307)
.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("rsvd9")
.dwattr $C$DW$377, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$377, DW_AT_bit_offset(0x01)
.dwattr $C$DW$377, DW_AT_bit_size(0x16)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$377, DW_AT_decl_line(0x308)
.dwattr $C$DW$377, DW_AT_decl_column(0x0d)
$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("AUTO_OVERRIDE")
.dwattr $C$DW$378, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$378, DW_AT_bit_offset(0x00)
.dwattr $C$DW$378, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$378, DW_AT_decl_line(0x309)
.dwattr $C$DW$378, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$88, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$88, DW_AT_decl_line(0x306)
.dwattr $C$DW$T$88, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$88
$C$DW$T$243 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$243, 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$379 .dwtag DW_TAG_member
.dwattr $C$DW$379, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$379, DW_AT_name("NEST_HINT_1")
.dwattr $C$DW$379, DW_AT_TI_symbol_name("NEST_HINT_1")
.dwattr $C$DW$379, DW_AT_bit_offset(0x17)
.dwattr $C$DW$379, DW_AT_bit_size(0x09)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$379, DW_AT_decl_line(0x313)
.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("rsvd9")
.dwattr $C$DW$380, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$380, DW_AT_bit_offset(0x01)
.dwattr $C$DW$380, DW_AT_bit_size(0x16)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$380, DW_AT_decl_line(0x314)
.dwattr $C$DW$380, DW_AT_decl_column(0x0d)
$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("AUTO_OVERRIDE")
.dwattr $C$DW$381, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$381, DW_AT_bit_offset(0x00)
.dwattr $C$DW$381, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$381, DW_AT_decl_line(0x315)
.dwattr $C$DW$381, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$89, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$89, DW_AT_decl_line(0x312)
.dwattr $C$DW$T$89, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$89
$C$DW$T$245 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$245, 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$382 .dwtag DW_TAG_member
.dwattr $C$DW$382, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$382, DW_AT_name("NEST_HINT_2")
.dwattr $C$DW$382, DW_AT_TI_symbol_name("NEST_HINT_2")
.dwattr $C$DW$382, DW_AT_bit_offset(0x17)
.dwattr $C$DW$382, DW_AT_bit_size(0x09)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$382, DW_AT_decl_line(0x31f)
.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("rsvd9")
.dwattr $C$DW$383, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$383, DW_AT_bit_offset(0x01)
.dwattr $C$DW$383, DW_AT_bit_size(0x16)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$383, DW_AT_decl_line(0x320)
.dwattr $C$DW$383, DW_AT_decl_column(0x0d)
$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("AUTO_OVERRIDE")
.dwattr $C$DW$384, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$384, DW_AT_bit_offset(0x00)
.dwattr $C$DW$384, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$384, DW_AT_decl_line(0x321)
.dwattr $C$DW$384, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$90, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$90, DW_AT_decl_line(0x31e)
.dwattr $C$DW$T$90, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$90
$C$DW$T$247 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$247, 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$385 .dwtag DW_TAG_member
.dwattr $C$DW$385, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$385, DW_AT_name("NEST_HINT_3")
.dwattr $C$DW$385, DW_AT_TI_symbol_name("NEST_HINT_3")
.dwattr $C$DW$385, DW_AT_bit_offset(0x17)
.dwattr $C$DW$385, DW_AT_bit_size(0x09)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$385, DW_AT_decl_line(0x32b)
.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("rsvd9")
.dwattr $C$DW$386, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$386, DW_AT_bit_offset(0x01)
.dwattr $C$DW$386, DW_AT_bit_size(0x16)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$386, DW_AT_decl_line(0x32c)
.dwattr $C$DW$386, DW_AT_decl_column(0x0d)
$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("AUTO_OVERRIDE")
.dwattr $C$DW$387, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$387, DW_AT_bit_offset(0x00)
.dwattr $C$DW$387, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$387, DW_AT_decl_line(0x32d)
.dwattr $C$DW$387, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$91, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$91, DW_AT_decl_line(0x32a)
.dwattr $C$DW$T$91, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$91
$C$DW$T$249 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$249, 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$388 .dwtag DW_TAG_member
.dwattr $C$DW$388, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$388, DW_AT_name("NEST_HINT_4")
.dwattr $C$DW$388, DW_AT_TI_symbol_name("NEST_HINT_4")
.dwattr $C$DW$388, DW_AT_bit_offset(0x17)
.dwattr $C$DW$388, DW_AT_bit_size(0x09)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$388, DW_AT_decl_line(0x337)
.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("rsvd9")
.dwattr $C$DW$389, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$389, DW_AT_bit_offset(0x01)
.dwattr $C$DW$389, DW_AT_bit_size(0x16)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$389, DW_AT_decl_line(0x338)
.dwattr $C$DW$389, DW_AT_decl_column(0x0d)
$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("AUTO_OVERRIDE")
.dwattr $C$DW$390, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$390, DW_AT_bit_offset(0x00)
.dwattr $C$DW$390, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$390, DW_AT_decl_line(0x339)
.dwattr $C$DW$390, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$92, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$92, DW_AT_decl_line(0x336)
.dwattr $C$DW$T$92, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$92
$C$DW$T$251 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$251, 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$391 .dwtag DW_TAG_member
.dwattr $C$DW$391, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$391, DW_AT_name("NEST_HINT_5")
.dwattr $C$DW$391, DW_AT_TI_symbol_name("NEST_HINT_5")
.dwattr $C$DW$391, DW_AT_bit_offset(0x17)
.dwattr $C$DW$391, DW_AT_bit_size(0x09)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$391, DW_AT_decl_line(0x343)
.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("rsvd9")
.dwattr $C$DW$392, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$392, DW_AT_bit_offset(0x01)
.dwattr $C$DW$392, DW_AT_bit_size(0x16)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$392, DW_AT_decl_line(0x344)
.dwattr $C$DW$392, DW_AT_decl_column(0x0d)
$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("AUTO_OVERRIDE")
.dwattr $C$DW$393, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$393, DW_AT_bit_offset(0x00)
.dwattr $C$DW$393, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$393, DW_AT_decl_line(0x345)
.dwattr $C$DW$393, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$93, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$93, DW_AT_decl_line(0x342)
.dwattr $C$DW$T$93, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$93
$C$DW$T$253 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$253, 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$394 .dwtag DW_TAG_member
.dwattr $C$DW$394, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$394, DW_AT_name("NEST_HINT_6")
.dwattr $C$DW$394, DW_AT_TI_symbol_name("NEST_HINT_6")
.dwattr $C$DW$394, DW_AT_bit_offset(0x17)
.dwattr $C$DW$394, DW_AT_bit_size(0x09)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$394, DW_AT_decl_line(0x34f)
.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("rsvd9")
.dwattr $C$DW$395, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$395, DW_AT_bit_offset(0x01)
.dwattr $C$DW$395, DW_AT_bit_size(0x16)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$395, DW_AT_decl_line(0x350)
.dwattr $C$DW$395, DW_AT_decl_column(0x0d)
$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("AUTO_OVERRIDE")
.dwattr $C$DW$396, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$396, DW_AT_bit_offset(0x00)
.dwattr $C$DW$396, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$396, DW_AT_decl_line(0x351)
.dwattr $C$DW$396, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$94, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$94, DW_AT_decl_line(0x34e)
.dwattr $C$DW$T$94, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$94
$C$DW$T$255 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$255, 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$397 .dwtag DW_TAG_member
.dwattr $C$DW$397, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$397, DW_AT_name("NEST_HINT_7")
.dwattr $C$DW$397, DW_AT_TI_symbol_name("NEST_HINT_7")
.dwattr $C$DW$397, DW_AT_bit_offset(0x17)
.dwattr $C$DW$397, DW_AT_bit_size(0x09)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$397, DW_AT_decl_line(0x35b)
.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("rsvd9")
.dwattr $C$DW$398, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$398, DW_AT_bit_offset(0x01)
.dwattr $C$DW$398, DW_AT_bit_size(0x16)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$398, DW_AT_decl_line(0x35c)
.dwattr $C$DW$398, DW_AT_decl_column(0x0d)
$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("AUTO_OVERRIDE")
.dwattr $C$DW$399, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$399, DW_AT_bit_offset(0x00)
.dwattr $C$DW$399, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$399, DW_AT_decl_line(0x35d)
.dwattr $C$DW$399, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$95, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$95, DW_AT_decl_line(0x35a)
.dwattr $C$DW$T$95, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$95
$C$DW$T$257 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$257, 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$400 .dwtag DW_TAG_member
.dwattr $C$DW$400, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$400, DW_AT_name("NEST_HINT_8")
.dwattr $C$DW$400, DW_AT_TI_symbol_name("NEST_HINT_8")
.dwattr $C$DW$400, DW_AT_bit_offset(0x17)
.dwattr $C$DW$400, DW_AT_bit_size(0x09)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$400, DW_AT_decl_line(0x367)
.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("rsvd9")
.dwattr $C$DW$401, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$401, DW_AT_bit_offset(0x01)
.dwattr $C$DW$401, DW_AT_bit_size(0x16)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$401, DW_AT_decl_line(0x368)
.dwattr $C$DW$401, DW_AT_decl_column(0x0d)
$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("AUTO_OVERRIDE")
.dwattr $C$DW$402, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$402, DW_AT_bit_offset(0x00)
.dwattr $C$DW$402, DW_AT_bit_size(0x01)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$402, DW_AT_decl_line(0x369)
.dwattr $C$DW$402, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$96, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$96, DW_AT_decl_line(0x366)
.dwattr $C$DW$T$96, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$96
$C$DW$T$259 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$259, 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$403 .dwtag DW_TAG_member
.dwattr $C$DW$403, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$403, DW_AT_name("NEST_HINT_9")
.dwattr $C$DW$403, DW_AT_TI_symbol_name("NEST_HINT_9")
.dwattr $C$DW$403, DW_AT_bit_offset(0x17)
.dwattr $C$DW$403, DW_AT_bit_size(0x09)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$403, DW_AT_decl_line(0x373)
.dwattr $C$DW$403, DW_AT_decl_column(0x0d)
$C$DW$404 .dwtag DW_TAG_member
.dwattr $C$DW$404, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$404, DW_AT_name("rsvd9")
.dwattr $C$DW$404, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$404, DW_AT_bit_offset(0x01)
.dwattr $C$DW$404, DW_AT_bit_size(0x16)
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$404, DW_AT_decl_line(0x374)
.dwattr $C$DW$404, DW_AT_decl_column(0x0d)
$C$DW$405 .dwtag DW_TAG_member
.dwattr $C$DW$405, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$405, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$405, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$405, DW_AT_bit_offset(0x00)
.dwattr $C$DW$405, DW_AT_bit_size(0x01)
.dwattr $C$DW$405, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$405, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$405, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$405, DW_AT_decl_line(0x375)
.dwattr $C$DW$405, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$97, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$97, DW_AT_decl_line(0x372)
.dwattr $C$DW$T$97, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$97
$C$DW$T$261 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$261, 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$406 .dwtag DW_TAG_member
.dwattr $C$DW$406, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$406, DW_AT_name("EN_HINT")
.dwattr $C$DW$406, DW_AT_TI_symbol_name("EN_HINT")
.dwattr $C$DW$406, DW_AT_bit_offset(0x16)
.dwattr $C$DW$406, DW_AT_bit_size(0x0a)
.dwattr $C$DW$406, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$406, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$406, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$406, DW_AT_decl_line(0x382)
.dwattr $C$DW$406, DW_AT_decl_column(0x0d)
$C$DW$407 .dwtag DW_TAG_member
.dwattr $C$DW$407, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$407, DW_AT_name("rsvd9")
.dwattr $C$DW$407, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$407, DW_AT_bit_offset(0x00)
.dwattr $C$DW$407, DW_AT_bit_size(0x16)
.dwattr $C$DW$407, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$407, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$407, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$407, DW_AT_decl_line(0x383)
.dwattr $C$DW$407, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$98, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$98, DW_AT_decl_line(0x381)
.dwattr $C$DW$T$98, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$98
$C$DW$T$263 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$263, DW_AT_type(*$C$DW$T$98)
$C$DW$T$106 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$106, DW_AT_byte_size(0x1504)
$C$DW$408 .dwtag DW_TAG_member
.dwattr $C$DW$408, DW_AT_type(*$C$DW$T$140)
.dwattr $C$DW$408, DW_AT_name("$P$T13")
.dwattr $C$DW$408, DW_AT_TI_symbol_name("$P$T13")
.dwattr $C$DW$408, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$408, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$408, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$408, DW_AT_decl_line(0x29)
.dwattr $C$DW$408, DW_AT_decl_column(0x02)
$C$DW$409 .dwtag DW_TAG_member
.dwattr $C$DW$409, DW_AT_type(*$C$DW$T$142)
.dwattr $C$DW$409, DW_AT_name("$P$T14")
.dwattr $C$DW$409, DW_AT_TI_symbol_name("$P$T14")
.dwattr $C$DW$409, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$409, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$409, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$409, DW_AT_decl_line(0x39)
.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$34)
.dwattr $C$DW$410, DW_AT_name("rsvd8")
.dwattr $C$DW$410, DW_AT_TI_symbol_name("rsvd8")
.dwattr $C$DW$410, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$410, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$410, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$410, DW_AT_decl_line(0x44)
.dwattr $C$DW$410, DW_AT_decl_column(0x0b)
$C$DW$411 .dwtag DW_TAG_member
.dwattr $C$DW$411, DW_AT_type(*$C$DW$T$144)
.dwattr $C$DW$411, DW_AT_name("$P$T15")
.dwattr $C$DW$411, DW_AT_TI_symbol_name("$P$T15")
.dwattr $C$DW$411, DW_AT_data_member_location[DW_OP_plus_uconst 0x10]
.dwattr $C$DW$411, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$411, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$411, DW_AT_decl_line(0x48)
.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$34)
.dwattr $C$DW$412, DW_AT_name("rsvd14")
.dwattr $C$DW$412, DW_AT_TI_symbol_name("rsvd14")
.dwattr $C$DW$412, DW_AT_data_member_location[DW_OP_plus_uconst 0x14]
.dwattr $C$DW$412, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$412, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$412, DW_AT_decl_line(0x52)
.dwattr $C$DW$412, DW_AT_decl_column(0x0b)
$C$DW$413 .dwtag DW_TAG_member
.dwattr $C$DW$413, DW_AT_type(*$C$DW$T$146)
.dwattr $C$DW$413, DW_AT_name("$P$T16")
.dwattr $C$DW$413, DW_AT_TI_symbol_name("$P$T16")
.dwattr $C$DW$413, DW_AT_data_member_location[DW_OP_plus_uconst 0x1c]
.dwattr $C$DW$413, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$413, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$413, DW_AT_decl_line(0x56)
.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$148)
.dwattr $C$DW$414, DW_AT_name("$P$T17")
.dwattr $C$DW$414, DW_AT_TI_symbol_name("$P$T17")
.dwattr $C$DW$414, DW_AT_data_member_location[DW_OP_plus_uconst 0x20]
.dwattr $C$DW$414, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$414, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$414, DW_AT_decl_line(0x62)
.dwattr $C$DW$414, DW_AT_decl_column(0x02)
$C$DW$415 .dwtag DW_TAG_member
.dwattr $C$DW$415, DW_AT_type(*$C$DW$T$150)
.dwattr $C$DW$415, DW_AT_name("$P$T18")
.dwattr $C$DW$415, DW_AT_TI_symbol_name("$P$T18")
.dwattr $C$DW$415, DW_AT_data_member_location[DW_OP_plus_uconst 0x24]
.dwattr $C$DW$415, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$415, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$415, DW_AT_decl_line(0x6d)
.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$152)
.dwattr $C$DW$416, DW_AT_name("$P$T19")
.dwattr $C$DW$416, DW_AT_TI_symbol_name("$P$T19")
.dwattr $C$DW$416, DW_AT_data_member_location[DW_OP_plus_uconst 0x28]
.dwattr $C$DW$416, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$416, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$416, DW_AT_decl_line(0x78)
.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$154)
.dwattr $C$DW$417, DW_AT_name("$P$T20")
.dwattr $C$DW$417, DW_AT_TI_symbol_name("$P$T20")
.dwattr $C$DW$417, DW_AT_data_member_location[DW_OP_plus_uconst 0x2c]
.dwattr $C$DW$417, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$417, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$417, DW_AT_decl_line(0x83)
.dwattr $C$DW$417, DW_AT_decl_column(0x02)
$C$DW$418 .dwtag DW_TAG_member
.dwattr $C$DW$418, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$418, DW_AT_name("rsvd30")
.dwattr $C$DW$418, DW_AT_TI_symbol_name("rsvd30")
.dwattr $C$DW$418, DW_AT_data_member_location[DW_OP_plus_uconst 0x30]
.dwattr $C$DW$418, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$418, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$418, DW_AT_decl_line(0x8d)
.dwattr $C$DW$418, DW_AT_decl_column(0x0b)
$C$DW$419 .dwtag DW_TAG_member
.dwattr $C$DW$419, DW_AT_type(*$C$DW$T$156)
.dwattr $C$DW$419, DW_AT_name("$P$T21")
.dwattr $C$DW$419, DW_AT_TI_symbol_name("$P$T21")
.dwattr $C$DW$419, DW_AT_data_member_location[DW_OP_plus_uconst 0x34]
.dwattr $C$DW$419, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$419, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$419, DW_AT_decl_line(0x91)
.dwattr $C$DW$419, DW_AT_decl_column(0x02)
$C$DW$420 .dwtag DW_TAG_member
.dwattr $C$DW$420, DW_AT_type(*$C$DW$T$158)
.dwattr $C$DW$420, DW_AT_name("$P$T22")
.dwattr $C$DW$420, DW_AT_TI_symbol_name("$P$T22")
.dwattr $C$DW$420, DW_AT_data_member_location[DW_OP_plus_uconst 0x38]
.dwattr $C$DW$420, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$420, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$420, DW_AT_decl_line(0x9c)
.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$99)
.dwattr $C$DW$421, DW_AT_name("rsvd3C")
.dwattr $C$DW$421, DW_AT_TI_symbol_name("rsvd3C")
.dwattr $C$DW$421, DW_AT_data_member_location[DW_OP_plus_uconst 0x3c]
.dwattr $C$DW$421, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$421, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$421, DW_AT_decl_line(0xa6)
.dwattr $C$DW$421, DW_AT_decl_column(0x0b)
$C$DW$422 .dwtag DW_TAG_member
.dwattr $C$DW$422, DW_AT_type(*$C$DW$T$160)
.dwattr $C$DW$422, DW_AT_name("$P$T23")
.dwattr $C$DW$422, DW_AT_TI_symbol_name("$P$T23")
.dwattr $C$DW$422, DW_AT_data_member_location[DW_OP_plus_uconst 0x80]
.dwattr $C$DW$422, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$422, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$422, DW_AT_decl_line(0xaa)
.dwattr $C$DW$422, DW_AT_decl_column(0x02)
$C$DW$423 .dwtag DW_TAG_member
.dwattr $C$DW$423, DW_AT_type(*$C$DW$T$100)
.dwattr $C$DW$423, DW_AT_name("rsvd84")
.dwattr $C$DW$423, DW_AT_TI_symbol_name("rsvd84")
.dwattr $C$DW$423, DW_AT_data_member_location[DW_OP_plus_uconst 0x84]
.dwattr $C$DW$423, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$423, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$423, DW_AT_decl_line(0xb5)
.dwattr $C$DW$423, DW_AT_decl_column(0x0b)
$C$DW$424 .dwtag DW_TAG_member
.dwattr $C$DW$424, DW_AT_type(*$C$DW$T$162)
.dwattr $C$DW$424, DW_AT_name("$P$T24")
.dwattr $C$DW$424, DW_AT_TI_symbol_name("$P$T24")
.dwattr $C$DW$424, DW_AT_data_member_location[DW_OP_plus_uconst 0x200]
.dwattr $C$DW$424, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$424, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$424, DW_AT_decl_line(0xb9)
.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$164)
.dwattr $C$DW$425, DW_AT_name("$P$T25")
.dwattr $C$DW$425, DW_AT_TI_symbol_name("$P$T25")
.dwattr $C$DW$425, DW_AT_data_member_location[DW_OP_plus_uconst 0x204]
.dwattr $C$DW$425, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$425, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$425, DW_AT_decl_line(0xc3)
.dwattr $C$DW$425, DW_AT_decl_column(0x02)
$C$DW$426 .dwtag DW_TAG_member
.dwattr $C$DW$426, DW_AT_type(*$C$DW$T$101)
.dwattr $C$DW$426, DW_AT_name("rsvd208")
.dwattr $C$DW$426, DW_AT_TI_symbol_name("rsvd208")
.dwattr $C$DW$426, DW_AT_data_member_location[DW_OP_plus_uconst 0x208]
.dwattr $C$DW$426, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$426, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$426, DW_AT_decl_line(0xcc)
.dwattr $C$DW$426, DW_AT_decl_column(0x0b)
$C$DW$427 .dwtag DW_TAG_member
.dwattr $C$DW$427, DW_AT_type(*$C$DW$T$166)
.dwattr $C$DW$427, DW_AT_name("$P$T26")
.dwattr $C$DW$427, DW_AT_TI_symbol_name("$P$T26")
.dwattr $C$DW$427, DW_AT_data_member_location[DW_OP_plus_uconst 0x280]
.dwattr $C$DW$427, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$427, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$427, DW_AT_decl_line(0xd0)
.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$168)
.dwattr $C$DW$428, DW_AT_name("$P$T27")
.dwattr $C$DW$428, DW_AT_TI_symbol_name("$P$T27")
.dwattr $C$DW$428, DW_AT_data_member_location[DW_OP_plus_uconst 0x284]
.dwattr $C$DW$428, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$428, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$428, DW_AT_decl_line(0xda)
.dwattr $C$DW$428, DW_AT_decl_column(0x02)
$C$DW$429 .dwtag DW_TAG_member
.dwattr $C$DW$429, DW_AT_type(*$C$DW$T$101)
.dwattr $C$DW$429, DW_AT_name("rsvd288")
.dwattr $C$DW$429, DW_AT_TI_symbol_name("rsvd288")
.dwattr $C$DW$429, DW_AT_data_member_location[DW_OP_plus_uconst 0x288]
.dwattr $C$DW$429, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$429, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$429, DW_AT_decl_line(0xe3)
.dwattr $C$DW$429, DW_AT_decl_column(0x0b)
$C$DW$430 .dwtag DW_TAG_member
.dwattr $C$DW$430, DW_AT_type(*$C$DW$T$170)
.dwattr $C$DW$430, DW_AT_name("$P$T28")
.dwattr $C$DW$430, DW_AT_TI_symbol_name("$P$T28")
.dwattr $C$DW$430, DW_AT_data_member_location[DW_OP_plus_uconst 0x300]
.dwattr $C$DW$430, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$430, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$430, DW_AT_decl_line(0xe7)
.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$172)
.dwattr $C$DW$431, DW_AT_name("$P$T29")
.dwattr $C$DW$431, DW_AT_TI_symbol_name("$P$T29")
.dwattr $C$DW$431, DW_AT_data_member_location[DW_OP_plus_uconst 0x304]
.dwattr $C$DW$431, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$431, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$431, DW_AT_decl_line(0xf1)
.dwattr $C$DW$431, DW_AT_decl_column(0x02)
$C$DW$432 .dwtag DW_TAG_member
.dwattr $C$DW$432, DW_AT_type(*$C$DW$T$101)
.dwattr $C$DW$432, DW_AT_name("rsvd308")
.dwattr $C$DW$432, DW_AT_TI_symbol_name("rsvd308")
.dwattr $C$DW$432, DW_AT_data_member_location[DW_OP_plus_uconst 0x308]
.dwattr $C$DW$432, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$432, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$432, DW_AT_decl_line(0xfa)
.dwattr $C$DW$432, DW_AT_decl_column(0x0b)
$C$DW$433 .dwtag DW_TAG_member
.dwattr $C$DW$433, DW_AT_type(*$C$DW$T$174)
.dwattr $C$DW$433, DW_AT_name("$P$T30")
.dwattr $C$DW$433, DW_AT_TI_symbol_name("$P$T30")
.dwattr $C$DW$433, DW_AT_data_member_location[DW_OP_plus_uconst 0x380]
.dwattr $C$DW$433, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$433, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$433, DW_AT_decl_line(0xfe)
.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$176)
.dwattr $C$DW$434, DW_AT_name("$P$T31")
.dwattr $C$DW$434, DW_AT_TI_symbol_name("$P$T31")
.dwattr $C$DW$434, DW_AT_data_member_location[DW_OP_plus_uconst 0x384]
.dwattr $C$DW$434, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$434, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$434, DW_AT_decl_line(0x108)
.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$101)
.dwattr $C$DW$435, DW_AT_name("rsvd388")
.dwattr $C$DW$435, DW_AT_TI_symbol_name("rsvd388")
.dwattr $C$DW$435, DW_AT_data_member_location[DW_OP_plus_uconst 0x388]
.dwattr $C$DW$435, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$435, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$435, DW_AT_decl_line(0x111)
.dwattr $C$DW$435, DW_AT_decl_column(0x0b)
$C$DW$436 .dwtag DW_TAG_member
.dwattr $C$DW$436, DW_AT_type(*$C$DW$T$178)
.dwattr $C$DW$436, DW_AT_name("$P$T32")
.dwattr $C$DW$436, DW_AT_TI_symbol_name("$P$T32")
.dwattr $C$DW$436, DW_AT_data_member_location[DW_OP_plus_uconst 0x400]
.dwattr $C$DW$436, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$436, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$436, DW_AT_decl_line(0x115)
.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$180)
.dwattr $C$DW$437, DW_AT_name("$P$T33")
.dwattr $C$DW$437, DW_AT_TI_symbol_name("$P$T33")
.dwattr $C$DW$437, DW_AT_data_member_location[DW_OP_plus_uconst 0x404]
.dwattr $C$DW$437, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$437, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$437, DW_AT_decl_line(0x126)
.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$182)
.dwattr $C$DW$438, DW_AT_name("$P$T34")
.dwattr $C$DW$438, DW_AT_TI_symbol_name("$P$T34")
.dwattr $C$DW$438, DW_AT_data_member_location[DW_OP_plus_uconst 0x408]
.dwattr $C$DW$438, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$438, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$438, DW_AT_decl_line(0x137)
.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$184)
.dwattr $C$DW$439, DW_AT_name("$P$T35")
.dwattr $C$DW$439, DW_AT_TI_symbol_name("$P$T35")
.dwattr $C$DW$439, DW_AT_data_member_location[DW_OP_plus_uconst 0x40c]
.dwattr $C$DW$439, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$439, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$439, DW_AT_decl_line(0x148)
.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$186)
.dwattr $C$DW$440, DW_AT_name("$P$T36")
.dwattr $C$DW$440, DW_AT_TI_symbol_name("$P$T36")
.dwattr $C$DW$440, DW_AT_data_member_location[DW_OP_plus_uconst 0x410]
.dwattr $C$DW$440, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$440, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$440, DW_AT_decl_line(0x159)
.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$188)
.dwattr $C$DW$441, DW_AT_name("$P$T37")
.dwattr $C$DW$441, DW_AT_TI_symbol_name("$P$T37")
.dwattr $C$DW$441, DW_AT_data_member_location[DW_OP_plus_uconst 0x414]
.dwattr $C$DW$441, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$441, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$441, DW_AT_decl_line(0x16a)
.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$190)
.dwattr $C$DW$442, DW_AT_name("$P$T38")
.dwattr $C$DW$442, DW_AT_TI_symbol_name("$P$T38")
.dwattr $C$DW$442, DW_AT_data_member_location[DW_OP_plus_uconst 0x418]
.dwattr $C$DW$442, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$442, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$442, DW_AT_decl_line(0x17b)
.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$192)
.dwattr $C$DW$443, DW_AT_name("$P$T39")
.dwattr $C$DW$443, DW_AT_TI_symbol_name("$P$T39")
.dwattr $C$DW$443, DW_AT_data_member_location[DW_OP_plus_uconst 0x41c]
.dwattr $C$DW$443, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$443, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$443, DW_AT_decl_line(0x18c)
.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$194)
.dwattr $C$DW$444, DW_AT_name("$P$T40")
.dwattr $C$DW$444, DW_AT_TI_symbol_name("$P$T40")
.dwattr $C$DW$444, DW_AT_data_member_location[DW_OP_plus_uconst 0x420]
.dwattr $C$DW$444, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$444, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$444, DW_AT_decl_line(0x19d)
.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$196)
.dwattr $C$DW$445, DW_AT_name("$P$T41")
.dwattr $C$DW$445, DW_AT_TI_symbol_name("$P$T41")
.dwattr $C$DW$445, DW_AT_data_member_location[DW_OP_plus_uconst 0x424]
.dwattr $C$DW$445, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$445, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$445, DW_AT_decl_line(0x1ae)
.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$198)
.dwattr $C$DW$446, DW_AT_name("$P$T42")
.dwattr $C$DW$446, DW_AT_TI_symbol_name("$P$T42")
.dwattr $C$DW$446, DW_AT_data_member_location[DW_OP_plus_uconst 0x428]
.dwattr $C$DW$446, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$446, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$446, DW_AT_decl_line(0x1bf)
.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$200)
.dwattr $C$DW$447, DW_AT_name("$P$T43")
.dwattr $C$DW$447, DW_AT_TI_symbol_name("$P$T43")
.dwattr $C$DW$447, DW_AT_data_member_location[DW_OP_plus_uconst 0x42c]
.dwattr $C$DW$447, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$447, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$447, DW_AT_decl_line(0x1d0)
.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$202)
.dwattr $C$DW$448, DW_AT_name("$P$T44")
.dwattr $C$DW$448, DW_AT_TI_symbol_name("$P$T44")
.dwattr $C$DW$448, DW_AT_data_member_location[DW_OP_plus_uconst 0x430]
.dwattr $C$DW$448, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$448, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$448, DW_AT_decl_line(0x1e1)
.dwattr $C$DW$448, DW_AT_decl_column(0x02)
$C$DW$449 .dwtag DW_TAG_member
.dwattr $C$DW$449, DW_AT_type(*$C$DW$T$204)
.dwattr $C$DW$449, DW_AT_name("$P$T45")
.dwattr $C$DW$449, DW_AT_TI_symbol_name("$P$T45")
.dwattr $C$DW$449, DW_AT_data_member_location[DW_OP_plus_uconst 0x434]
.dwattr $C$DW$449, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$449, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$449, DW_AT_decl_line(0x1f2)
.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$206)
.dwattr $C$DW$450, DW_AT_name("$P$T46")
.dwattr $C$DW$450, DW_AT_TI_symbol_name("$P$T46")
.dwattr $C$DW$450, DW_AT_data_member_location[DW_OP_plus_uconst 0x438]
.dwattr $C$DW$450, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$450, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$450, DW_AT_decl_line(0x203)
.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$208)
.dwattr $C$DW$451, DW_AT_name("$P$T47")
.dwattr $C$DW$451, DW_AT_TI_symbol_name("$P$T47")
.dwattr $C$DW$451, DW_AT_data_member_location[DW_OP_plus_uconst 0x43c]
.dwattr $C$DW$451, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$451, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$451, DW_AT_decl_line(0x214)
.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$102)
.dwattr $C$DW$452, DW_AT_name("rsvd440")
.dwattr $C$DW$452, DW_AT_TI_symbol_name("rsvd440")
.dwattr $C$DW$452, DW_AT_data_member_location[DW_OP_plus_uconst 0x440]
.dwattr $C$DW$452, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$452, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$452, DW_AT_decl_line(0x224)
.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$210)
.dwattr $C$DW$453, DW_AT_name("$P$T48")
.dwattr $C$DW$453, DW_AT_TI_symbol_name("$P$T48")
.dwattr $C$DW$453, DW_AT_data_member_location[DW_OP_plus_uconst 0x800]
.dwattr $C$DW$453, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$453, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$453, DW_AT_decl_line(0x228)
.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$212)
.dwattr $C$DW$454, DW_AT_name("$P$T49")
.dwattr $C$DW$454, DW_AT_TI_symbol_name("$P$T49")
.dwattr $C$DW$454, DW_AT_data_member_location[DW_OP_plus_uconst 0x804]
.dwattr $C$DW$454, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$454, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$454, DW_AT_decl_line(0x239)
.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$214)
.dwattr $C$DW$455, DW_AT_name("$P$T50")
.dwattr $C$DW$455, DW_AT_TI_symbol_name("$P$T50")
.dwattr $C$DW$455, DW_AT_data_member_location[DW_OP_plus_uconst 0x808]
.dwattr $C$DW$455, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$455, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$455, DW_AT_decl_line(0x24a)
.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$103)
.dwattr $C$DW$456, DW_AT_name("rsvd80C")
.dwattr $C$DW$456, DW_AT_TI_symbol_name("rsvd80C")
.dwattr $C$DW$456, DW_AT_data_member_location[DW_OP_plus_uconst 0x80c]
.dwattr $C$DW$456, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$456, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$456, DW_AT_decl_line(0x256)
.dwattr $C$DW$456, DW_AT_decl_column(0x0b)
$C$DW$457 .dwtag DW_TAG_member
.dwattr $C$DW$457, DW_AT_type(*$C$DW$T$216)
.dwattr $C$DW$457, DW_AT_name("$P$T51")
.dwattr $C$DW$457, DW_AT_TI_symbol_name("$P$T51")
.dwattr $C$DW$457, DW_AT_data_member_location[DW_OP_plus_uconst 0x900]
.dwattr $C$DW$457, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$457, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$457, DW_AT_decl_line(0x25a)
.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$218)
.dwattr $C$DW$458, DW_AT_name("$P$T52")
.dwattr $C$DW$458, DW_AT_TI_symbol_name("$P$T52")
.dwattr $C$DW$458, DW_AT_data_member_location[DW_OP_plus_uconst 0x904]
.dwattr $C$DW$458, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$458, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$458, DW_AT_decl_line(0x266)
.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$220)
.dwattr $C$DW$459, DW_AT_name("$P$T53")
.dwattr $C$DW$459, DW_AT_TI_symbol_name("$P$T53")
.dwattr $C$DW$459, DW_AT_data_member_location[DW_OP_plus_uconst 0x908]
.dwattr $C$DW$459, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$459, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$459, DW_AT_decl_line(0x272)
.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$222)
.dwattr $C$DW$460, DW_AT_name("$P$T54")
.dwattr $C$DW$460, DW_AT_TI_symbol_name("$P$T54")
.dwattr $C$DW$460, DW_AT_data_member_location[DW_OP_plus_uconst 0x90c]
.dwattr $C$DW$460, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$460, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$460, DW_AT_decl_line(0x27e)
.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$224)
.dwattr $C$DW$461, DW_AT_name("$P$T55")
.dwattr $C$DW$461, DW_AT_TI_symbol_name("$P$T55")
.dwattr $C$DW$461, DW_AT_data_member_location[DW_OP_plus_uconst 0x910]
.dwattr $C$DW$461, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$461, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$461, DW_AT_decl_line(0x28a)
.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$226)
.dwattr $C$DW$462, DW_AT_name("$P$T56")
.dwattr $C$DW$462, DW_AT_TI_symbol_name("$P$T56")
.dwattr $C$DW$462, DW_AT_data_member_location[DW_OP_plus_uconst 0x914]
.dwattr $C$DW$462, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$462, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$462, DW_AT_decl_line(0x296)
.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$228)
.dwattr $C$DW$463, DW_AT_name("$P$T57")
.dwattr $C$DW$463, DW_AT_TI_symbol_name("$P$T57")
.dwattr $C$DW$463, DW_AT_data_member_location[DW_OP_plus_uconst 0x918]
.dwattr $C$DW$463, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$463, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$463, DW_AT_decl_line(0x2a2)
.dwattr $C$DW$463, DW_AT_decl_column(0x02)
$C$DW$464 .dwtag DW_TAG_member
.dwattr $C$DW$464, DW_AT_type(*$C$DW$T$230)
.dwattr $C$DW$464, DW_AT_name("$P$T58")
.dwattr $C$DW$464, DW_AT_TI_symbol_name("$P$T58")
.dwattr $C$DW$464, DW_AT_data_member_location[DW_OP_plus_uconst 0x91c]
.dwattr $C$DW$464, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$464, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$464, DW_AT_decl_line(0x2ae)
.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$232)
.dwattr $C$DW$465, DW_AT_name("$P$T59")
.dwattr $C$DW$465, DW_AT_TI_symbol_name("$P$T59")
.dwattr $C$DW$465, DW_AT_data_member_location[DW_OP_plus_uconst 0x920]
.dwattr $C$DW$465, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$465, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$465, DW_AT_decl_line(0x2ba)
.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$234)
.dwattr $C$DW$466, DW_AT_name("$P$T60")
.dwattr $C$DW$466, DW_AT_TI_symbol_name("$P$T60")
.dwattr $C$DW$466, DW_AT_data_member_location[DW_OP_plus_uconst 0x924]
.dwattr $C$DW$466, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$466, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$466, DW_AT_decl_line(0x2c6)
.dwattr $C$DW$466, DW_AT_decl_column(0x02)
$C$DW$467 .dwtag DW_TAG_member
.dwattr $C$DW$467, DW_AT_type(*$C$DW$T$104)
.dwattr $C$DW$467, DW_AT_name("rsvd928")
.dwattr $C$DW$467, DW_AT_TI_symbol_name("rsvd928")
.dwattr $C$DW$467, DW_AT_data_member_location[DW_OP_plus_uconst 0x928]
.dwattr $C$DW$467, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$467, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$467, DW_AT_decl_line(0x2d1)
.dwattr $C$DW$467, DW_AT_decl_column(0x0b)
$C$DW$468 .dwtag DW_TAG_member
.dwattr $C$DW$468, DW_AT_type(*$C$DW$T$236)
.dwattr $C$DW$468, DW_AT_name("$P$T61")
.dwattr $C$DW$468, DW_AT_TI_symbol_name("$P$T61")
.dwattr $C$DW$468, DW_AT_data_member_location[DW_OP_plus_uconst 0xd00]
.dwattr $C$DW$468, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$468, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$468, DW_AT_decl_line(0x2d5)
.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$238)
.dwattr $C$DW$469, DW_AT_name("$P$T62")
.dwattr $C$DW$469, DW_AT_TI_symbol_name("$P$T62")
.dwattr $C$DW$469, DW_AT_data_member_location[DW_OP_plus_uconst 0xd04]
.dwattr $C$DW$469, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$469, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$469, DW_AT_decl_line(0x2df)
.dwattr $C$DW$469, DW_AT_decl_column(0x02)
$C$DW$470 .dwtag DW_TAG_member
.dwattr $C$DW$470, DW_AT_type(*$C$DW$T$101)
.dwattr $C$DW$470, DW_AT_name("rsvdD08")
.dwattr $C$DW$470, DW_AT_TI_symbol_name("rsvdD08")
.dwattr $C$DW$470, DW_AT_data_member_location[DW_OP_plus_uconst 0xd08]
.dwattr $C$DW$470, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$470, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$470, DW_AT_decl_line(0x2e8)
.dwattr $C$DW$470, DW_AT_decl_column(0x0b)
$C$DW$471 .dwtag DW_TAG_member
.dwattr $C$DW$471, DW_AT_type(*$C$DW$T$240)
.dwattr $C$DW$471, DW_AT_name("$P$T63")
.dwattr $C$DW$471, DW_AT_TI_symbol_name("$P$T63")
.dwattr $C$DW$471, DW_AT_data_member_location[DW_OP_plus_uconst 0xd80]
.dwattr $C$DW$471, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$471, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$471, DW_AT_decl_line(0x2ec)
.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$242)
.dwattr $C$DW$472, DW_AT_name("$P$T64")
.dwattr $C$DW$472, DW_AT_TI_symbol_name("$P$T64")
.dwattr $C$DW$472, DW_AT_data_member_location[DW_OP_plus_uconst 0xd84]
.dwattr $C$DW$472, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$472, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$472, DW_AT_decl_line(0x2f6)
.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$105)
.dwattr $C$DW$473, DW_AT_name("rsvdD84")
.dwattr $C$DW$473, DW_AT_TI_symbol_name("rsvdD84")
.dwattr $C$DW$473, DW_AT_data_member_location[DW_OP_plus_uconst 0xd88]
.dwattr $C$DW$473, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$473, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$473, DW_AT_decl_line(0x2ff)
.dwattr $C$DW$473, DW_AT_decl_column(0x0b)
$C$DW$474 .dwtag DW_TAG_member
.dwattr $C$DW$474, DW_AT_type(*$C$DW$T$244)
.dwattr $C$DW$474, DW_AT_name("$P$T65")
.dwattr $C$DW$474, DW_AT_TI_symbol_name("$P$T65")
.dwattr $C$DW$474, DW_AT_data_member_location[DW_OP_plus_uconst 0x1100]
.dwattr $C$DW$474, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$474, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$474, DW_AT_decl_line(0x303)
.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$246)
.dwattr $C$DW$475, DW_AT_name("$P$T66")
.dwattr $C$DW$475, DW_AT_TI_symbol_name("$P$T66")
.dwattr $C$DW$475, DW_AT_data_member_location[DW_OP_plus_uconst 0x1104]
.dwattr $C$DW$475, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$475, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$475, DW_AT_decl_line(0x30f)
.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$248)
.dwattr $C$DW$476, DW_AT_name("$P$T67")
.dwattr $C$DW$476, DW_AT_TI_symbol_name("$P$T67")
.dwattr $C$DW$476, DW_AT_data_member_location[DW_OP_plus_uconst 0x1108]
.dwattr $C$DW$476, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$476, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$476, DW_AT_decl_line(0x31b)
.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$250)
.dwattr $C$DW$477, DW_AT_name("$P$T68")
.dwattr $C$DW$477, DW_AT_TI_symbol_name("$P$T68")
.dwattr $C$DW$477, DW_AT_data_member_location[DW_OP_plus_uconst 0x110c]
.dwattr $C$DW$477, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$477, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$477, DW_AT_decl_line(0x327)
.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$252)
.dwattr $C$DW$478, DW_AT_name("$P$T69")
.dwattr $C$DW$478, DW_AT_TI_symbol_name("$P$T69")
.dwattr $C$DW$478, DW_AT_data_member_location[DW_OP_plus_uconst 0x1110]
.dwattr $C$DW$478, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$478, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$478, DW_AT_decl_line(0x333)
.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$254)
.dwattr $C$DW$479, DW_AT_name("$P$T70")
.dwattr $C$DW$479, DW_AT_TI_symbol_name("$P$T70")
.dwattr $C$DW$479, DW_AT_data_member_location[DW_OP_plus_uconst 0x1114]
.dwattr $C$DW$479, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$479, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$479, DW_AT_decl_line(0x33f)
.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$256)
.dwattr $C$DW$480, DW_AT_name("$P$T71")
.dwattr $C$DW$480, DW_AT_TI_symbol_name("$P$T71")
.dwattr $C$DW$480, DW_AT_data_member_location[DW_OP_plus_uconst 0x1118]
.dwattr $C$DW$480, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$480, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$480, DW_AT_decl_line(0x34b)
.dwattr $C$DW$480, DW_AT_decl_column(0x02)
$C$DW$481 .dwtag DW_TAG_member
.dwattr $C$DW$481, DW_AT_type(*$C$DW$T$258)
.dwattr $C$DW$481, DW_AT_name("$P$T72")
.dwattr $C$DW$481, DW_AT_TI_symbol_name("$P$T72")
.dwattr $C$DW$481, DW_AT_data_member_location[DW_OP_plus_uconst 0x111c]
.dwattr $C$DW$481, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$481, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$481, DW_AT_decl_line(0x357)
.dwattr $C$DW$481, DW_AT_decl_column(0x02)
$C$DW$482 .dwtag DW_TAG_member
.dwattr $C$DW$482, DW_AT_type(*$C$DW$T$260)
.dwattr $C$DW$482, DW_AT_name("$P$T73")
.dwattr $C$DW$482, DW_AT_TI_symbol_name("$P$T73")
.dwattr $C$DW$482, DW_AT_data_member_location[DW_OP_plus_uconst 0x1120]
.dwattr $C$DW$482, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$482, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$482, DW_AT_decl_line(0x363)
.dwattr $C$DW$482, DW_AT_decl_column(0x02)
$C$DW$483 .dwtag DW_TAG_member
.dwattr $C$DW$483, DW_AT_type(*$C$DW$T$262)
.dwattr $C$DW$483, DW_AT_name("$P$T74")
.dwattr $C$DW$483, DW_AT_TI_symbol_name("$P$T74")
.dwattr $C$DW$483, DW_AT_data_member_location[DW_OP_plus_uconst 0x1124]
.dwattr $C$DW$483, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$483, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$483, DW_AT_decl_line(0x36f)
.dwattr $C$DW$483, DW_AT_decl_column(0x02)
$C$DW$484 .dwtag DW_TAG_member
.dwattr $C$DW$484, DW_AT_type(*$C$DW$T$104)
.dwattr $C$DW$484, DW_AT_name("rsvd1128")
.dwattr $C$DW$484, DW_AT_TI_symbol_name("rsvd1128")
.dwattr $C$DW$484, DW_AT_data_member_location[DW_OP_plus_uconst 0x1128]
.dwattr $C$DW$484, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$484, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$484, DW_AT_decl_line(0x37a)
.dwattr $C$DW$484, DW_AT_decl_column(0x0b)
$C$DW$485 .dwtag DW_TAG_member
.dwattr $C$DW$485, DW_AT_type(*$C$DW$T$264)
.dwattr $C$DW$485, DW_AT_name("$P$T75")
.dwattr $C$DW$485, DW_AT_TI_symbol_name("$P$T75")
.dwattr $C$DW$485, DW_AT_data_member_location[DW_OP_plus_uconst 0x1500]
.dwattr $C$DW$485, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$485, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$485, DW_AT_decl_line(0x37e)
.dwattr $C$DW$485, DW_AT_decl_column(0x02)
.dwattr $C$DW$T$106, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$106, DW_AT_decl_line(0x26)
.dwattr $C$DW$T$106, DW_AT_decl_column(0x10)
.dwendtag $C$DW$T$106
$C$DW$T$297 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$297, DW_AT_type(*$C$DW$T$106)
$C$DW$T$298 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$298, DW_AT_type(*$C$DW$T$297)
.dwattr $C$DW$T$298, DW_AT_address_class(0x20)
$C$DW$T$299 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$299, DW_AT_name("pruIntc")
.dwattr $C$DW$T$299, DW_AT_type(*$C$DW$T$106)
.dwattr $C$DW$T$299, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$299, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$299, DW_AT_decl_line(0x387)
.dwattr $C$DW$T$299, DW_AT_decl_column(0x03)
$C$DW$T$300 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$300, DW_AT_type(*$C$DW$T$299)
$C$DW$T$108 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$108, DW_AT_byte_size(0x04)
$C$DW$486 .dwtag DW_TAG_member
.dwattr $C$DW$486, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$486, DW_AT_name("type")
.dwattr $C$DW$486, DW_AT_TI_symbol_name("type")
.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/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$486, DW_AT_decl_line(0x17a)
.dwattr $C$DW$486, DW_AT_decl_column(0x0d)
$C$DW$487 .dwtag DW_TAG_member
.dwattr $C$DW$487, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$487, DW_AT_name("ver")
.dwattr $C$DW$487, DW_AT_TI_symbol_name("ver")
.dwattr $C$DW$487, DW_AT_data_member_location[DW_OP_plus_uconst 0x2]
.dwattr $C$DW$487, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$487, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$487, DW_AT_decl_line(0x17b)
.dwattr $C$DW$487, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$108, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$T$108, DW_AT_decl_line(0x179)
.dwattr $C$DW$T$108, DW_AT_decl_column(0x0a)
.dwendtag $C$DW$T$108
$C$DW$T$111 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$111, DW_AT_byte_size(0x1e8)
$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("timestamp_ns")
.dwattr $C$DW$488, DW_AT_TI_symbol_name("timestamp_ns")
.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("../pru_common/shared_buffer.h")
.dwattr $C$DW$488, DW_AT_decl_line(0x0e)
.dwattr $C$DW$488, DW_AT_decl_column(0x0c)
$C$DW$489 .dwtag DW_TAG_member
.dwattr $C$DW$489, DW_AT_type(*$C$DW$T$110)
.dwattr $C$DW$489, DW_AT_name("data")
.dwattr $C$DW$489, DW_AT_TI_symbol_name("data")
.dwattr $C$DW$489, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$489, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$489, DW_AT_decl_file("../pru_common/shared_buffer.h")
.dwattr $C$DW$489, DW_AT_decl_line(0x0f)
.dwattr $C$DW$489, DW_AT_decl_column(0x0c)
.dwattr $C$DW$T$111, DW_AT_decl_file("../pru_common/shared_buffer.h")
.dwattr $C$DW$T$111, DW_AT_decl_line(0x0d)
.dwattr $C$DW$T$111, DW_AT_decl_column(0x2c)
.dwendtag $C$DW$T$111
$C$DW$T$304 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$304, DW_AT_name("Buffer")
.dwattr $C$DW$T$304, DW_AT_type(*$C$DW$T$111)
.dwattr $C$DW$T$304, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$304, DW_AT_decl_file("../pru_common/shared_buffer.h")
.dwattr $C$DW$T$304, DW_AT_decl_line(0x10)
.dwattr $C$DW$T$304, DW_AT_decl_column(0x03)
$C$DW$T$305 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$305, DW_AT_type(*$C$DW$T$304)
$C$DW$T$306 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$306, DW_AT_type(*$C$DW$T$305)
.dwattr $C$DW$T$306, DW_AT_address_class(0x20)
$C$DW$T$307 .dwtag DW_TAG_const_type
.dwattr $C$DW$T$307, DW_AT_type(*$C$DW$T$306)
$C$DW$T$308 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$308, DW_AT_type(*$C$DW$T$304)
.dwattr $C$DW$T$308, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$308, DW_AT_byte_size(0x7a0)
$C$DW$490 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$490, DW_AT_upper_bound(0x03)
.dwendtag $C$DW$T$308
$C$DW$T$310 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$310, DW_AT_type(*$C$DW$T$111)
.dwattr $C$DW$T$310, DW_AT_address_class(0x20)
$C$DW$T$114 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$114, DW_AT_byte_size(0x04)
$C$DW$491 .dwtag DW_TAG_member
.dwattr $C$DW$491, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$491, DW_AT_name("REVID")
.dwattr $C$DW$491, DW_AT_TI_symbol_name("REVID")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$491, DW_AT_decl_line(0x2a)
.dwattr $C$DW$491, DW_AT_decl_column(0x15)
$C$DW$492 .dwtag DW_TAG_member
.dwattr $C$DW$492, DW_AT_type(*$C$DW$T$113)
.dwattr $C$DW$492, DW_AT_name("REVID_bit")
.dwattr $C$DW$492, DW_AT_TI_symbol_name("REVID_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$492, DW_AT_decl_line(0x2e)
.dwattr $C$DW$492, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$114, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$114, DW_AT_decl_line(0x29)
.dwattr $C$DW$T$114, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$114
$C$DW$T$116 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$116, DW_AT_byte_size(0x04)
$C$DW$493 .dwtag DW_TAG_member
.dwattr $C$DW$493, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$493, DW_AT_name("SYSCFG")
.dwattr $C$DW$493, DW_AT_TI_symbol_name("SYSCFG")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$493, DW_AT_decl_line(0x34)
.dwattr $C$DW$493, DW_AT_decl_column(0x15)
$C$DW$494 .dwtag DW_TAG_member
.dwattr $C$DW$494, DW_AT_type(*$C$DW$T$115)
.dwattr $C$DW$494, DW_AT_name("SYSCFG_bit")
.dwattr $C$DW$494, DW_AT_TI_symbol_name("SYSCFG_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$494, DW_AT_decl_line(0x3c)
.dwattr $C$DW$494, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$116, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$116, DW_AT_decl_line(0x33)
.dwattr $C$DW$T$116, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$116
$C$DW$T$118 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$118, DW_AT_byte_size(0x04)
$C$DW$495 .dwtag DW_TAG_member
.dwattr $C$DW$495, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$495, DW_AT_name("GPCFG0")
.dwattr $C$DW$495, DW_AT_TI_symbol_name("GPCFG0")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$495, DW_AT_decl_line(0x42)
.dwattr $C$DW$495, DW_AT_decl_column(0x15)
$C$DW$496 .dwtag DW_TAG_member
.dwattr $C$DW$496, DW_AT_type(*$C$DW$T$117)
.dwattr $C$DW$496, DW_AT_name("GPCFG0_bit")
.dwattr $C$DW$496, DW_AT_TI_symbol_name("GPCFG0_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$496, DW_AT_decl_line(0x4f)
.dwattr $C$DW$496, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$118, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$118, DW_AT_decl_line(0x41)
.dwattr $C$DW$T$118, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$118
$C$DW$T$120 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$120, DW_AT_byte_size(0x04)
$C$DW$497 .dwtag DW_TAG_member
.dwattr $C$DW$497, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$497, DW_AT_name("GPCFG1")
.dwattr $C$DW$497, DW_AT_TI_symbol_name("GPCFG1")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$497, DW_AT_decl_line(0x55)
.dwattr $C$DW$497, DW_AT_decl_column(0x15)
$C$DW$498 .dwtag DW_TAG_member
.dwattr $C$DW$498, DW_AT_type(*$C$DW$T$119)
.dwattr $C$DW$498, DW_AT_name("GPCFG1_bit")
.dwattr $C$DW$498, DW_AT_TI_symbol_name("GPCFG1_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$498, DW_AT_decl_line(0x62)
.dwattr $C$DW$498, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$120, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$120, DW_AT_decl_line(0x54)
.dwattr $C$DW$T$120, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$120
$C$DW$T$122 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$122, DW_AT_byte_size(0x04)
$C$DW$499 .dwtag DW_TAG_member
.dwattr $C$DW$499, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$499, DW_AT_name("CGR")
.dwattr $C$DW$499, DW_AT_TI_symbol_name("CGR")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$499, DW_AT_decl_line(0x68)
.dwattr $C$DW$499, DW_AT_decl_column(0x15)
$C$DW$500 .dwtag DW_TAG_member
.dwattr $C$DW$500, DW_AT_type(*$C$DW$T$121)
.dwattr $C$DW$500, DW_AT_name("CGR_bit")
.dwattr $C$DW$500, DW_AT_TI_symbol_name("CGR_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$500, DW_AT_decl_line(0x7e)
.dwattr $C$DW$500, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$122, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$122, DW_AT_decl_line(0x67)
.dwattr $C$DW$T$122, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$122
$C$DW$T$124 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$124, DW_AT_byte_size(0x04)
$C$DW$501 .dwtag DW_TAG_member
.dwattr $C$DW$501, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$501, DW_AT_name("ISRP")
.dwattr $C$DW$501, DW_AT_TI_symbol_name("ISRP")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$501, DW_AT_decl_line(0x84)
.dwattr $C$DW$501, DW_AT_decl_column(0x15)
$C$DW$502 .dwtag DW_TAG_member
.dwattr $C$DW$502, DW_AT_type(*$C$DW$T$123)
.dwattr $C$DW$502, DW_AT_name("ISRP_bit")
.dwattr $C$DW$502, DW_AT_TI_symbol_name("ISRP_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$502, DW_AT_decl_line(0x8d)
.dwattr $C$DW$502, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$124, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$124, DW_AT_decl_line(0x83)
.dwattr $C$DW$T$124, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$124
$C$DW$T$126 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$126, DW_AT_byte_size(0x04)
$C$DW$503 .dwtag DW_TAG_member
.dwattr $C$DW$503, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$503, DW_AT_name("ISP")
.dwattr $C$DW$503, DW_AT_TI_symbol_name("ISP")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$503, DW_AT_decl_line(0x93)
.dwattr $C$DW$503, DW_AT_decl_column(0x15)
$C$DW$504 .dwtag DW_TAG_member
.dwattr $C$DW$504, DW_AT_type(*$C$DW$T$125)
.dwattr $C$DW$504, DW_AT_name("ISP_bit")
.dwattr $C$DW$504, DW_AT_TI_symbol_name("ISP_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$504, DW_AT_decl_line(0x9c)
.dwattr $C$DW$504, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$126, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$126, DW_AT_decl_line(0x92)
.dwattr $C$DW$T$126, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$126
$C$DW$T$128 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$128, DW_AT_byte_size(0x04)
$C$DW$505 .dwtag DW_TAG_member
.dwattr $C$DW$505, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$505, DW_AT_name("IESP")
.dwattr $C$DW$505, DW_AT_TI_symbol_name("IESP")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$505, DW_AT_decl_line(0xa1)
.dwattr $C$DW$505, DW_AT_decl_column(0x15)
$C$DW$506 .dwtag DW_TAG_member
.dwattr $C$DW$506, DW_AT_type(*$C$DW$T$127)
.dwattr $C$DW$506, DW_AT_name("IESP_bit")
.dwattr $C$DW$506, DW_AT_TI_symbol_name("IESP_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$506, DW_AT_decl_line(0xaa)
.dwattr $C$DW$506, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$128, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$128, DW_AT_decl_line(0xa0)
.dwattr $C$DW$T$128, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$128
$C$DW$T$130 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$130, DW_AT_byte_size(0x04)
$C$DW$507 .dwtag DW_TAG_member
.dwattr $C$DW$507, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$507, DW_AT_name("IECP")
.dwattr $C$DW$507, DW_AT_TI_symbol_name("IECP")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$507, DW_AT_decl_line(0xb0)
.dwattr $C$DW$507, DW_AT_decl_column(0x15)
$C$DW$508 .dwtag DW_TAG_member
.dwattr $C$DW$508, DW_AT_type(*$C$DW$T$129)
.dwattr $C$DW$508, DW_AT_name("IECP_bit")
.dwattr $C$DW$508, DW_AT_TI_symbol_name("IECP_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$508, DW_AT_decl_line(0xb8)
.dwattr $C$DW$508, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$130, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$130, DW_AT_decl_line(0xaf)
.dwattr $C$DW$T$130, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$130
$C$DW$T$132 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$132, DW_AT_byte_size(0x04)
$C$DW$509 .dwtag DW_TAG_member
.dwattr $C$DW$509, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$509, DW_AT_name("PMAO")
.dwattr $C$DW$509, DW_AT_TI_symbol_name("PMAO")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$509, DW_AT_decl_line(0xc1)
.dwattr $C$DW$509, DW_AT_decl_column(0x15)
$C$DW$510 .dwtag DW_TAG_member
.dwattr $C$DW$510, DW_AT_type(*$C$DW$T$131)
.dwattr $C$DW$510, DW_AT_name("PMAO_bit")
.dwattr $C$DW$510, DW_AT_TI_symbol_name("PMAO_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$510, DW_AT_decl_line(0xc7)
.dwattr $C$DW$510, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$132, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$132, DW_AT_decl_line(0xc0)
.dwattr $C$DW$T$132, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$132
$C$DW$T$134 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$134, DW_AT_byte_size(0x04)
$C$DW$511 .dwtag DW_TAG_member
.dwattr $C$DW$511, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$511, DW_AT_name("IEPCLK")
.dwattr $C$DW$511, DW_AT_TI_symbol_name("IEPCLK")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$511, DW_AT_decl_line(0xd0)
.dwattr $C$DW$511, DW_AT_decl_column(0x15)
$C$DW$512 .dwtag DW_TAG_member
.dwattr $C$DW$512, DW_AT_type(*$C$DW$T$133)
.dwattr $C$DW$512, DW_AT_name("IEPCLK_bit")
.dwattr $C$DW$512, DW_AT_TI_symbol_name("IEPCLK_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$512, DW_AT_decl_line(0xd5)
.dwattr $C$DW$512, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$134, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$134, DW_AT_decl_line(0xcf)
.dwattr $C$DW$T$134, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$134
$C$DW$T$136 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$136, DW_AT_byte_size(0x04)
$C$DW$513 .dwtag DW_TAG_member
.dwattr $C$DW$513, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$513, DW_AT_name("SPP")
.dwattr $C$DW$513, DW_AT_TI_symbol_name("SPP")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$513, DW_AT_decl_line(0xdb)
.dwattr $C$DW$513, DW_AT_decl_column(0x15)
$C$DW$514 .dwtag DW_TAG_member
.dwattr $C$DW$514, DW_AT_type(*$C$DW$T$135)
.dwattr $C$DW$514, DW_AT_name("SPP_bit")
.dwattr $C$DW$514, DW_AT_TI_symbol_name("SPP_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$514, DW_AT_decl_line(0xe1)
.dwattr $C$DW$514, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$136, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$136, DW_AT_decl_line(0xda)
.dwattr $C$DW$T$136, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$136
$C$DW$T$138 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$138, DW_AT_byte_size(0x04)
$C$DW$515 .dwtag DW_TAG_member
.dwattr $C$DW$515, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$515, DW_AT_name("PIN_MX")
.dwattr $C$DW$515, DW_AT_TI_symbol_name("PIN_MX")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$515, DW_AT_decl_line(0xe9)
.dwattr $C$DW$515, DW_AT_decl_column(0x15)
$C$DW$516 .dwtag DW_TAG_member
.dwattr $C$DW$516, DW_AT_type(*$C$DW$T$137)
.dwattr $C$DW$516, DW_AT_name("PIN_MX_bit")
.dwattr $C$DW$516, DW_AT_TI_symbol_name("PIN_MX_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$516, DW_AT_decl_line(0xee)
.dwattr $C$DW$516, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$138, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$138, DW_AT_decl_line(0xe8)
.dwattr $C$DW$T$138, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$138
$C$DW$T$140 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$140, DW_AT_byte_size(0x04)
$C$DW$517 .dwtag DW_TAG_member
.dwattr $C$DW$517, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$517, DW_AT_name("REVID")
.dwattr $C$DW$517, DW_AT_TI_symbol_name("REVID")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$517, DW_AT_decl_line(0x2a)
.dwattr $C$DW$517, DW_AT_decl_column(0x15)
$C$DW$518 .dwtag DW_TAG_member
.dwattr $C$DW$518, DW_AT_type(*$C$DW$T$139)
.dwattr $C$DW$518, DW_AT_name("REVID_bit")
.dwattr $C$DW$518, DW_AT_TI_symbol_name("REVID_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$518, DW_AT_decl_line(0x34)
.dwattr $C$DW$518, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$140, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$140, DW_AT_decl_line(0x29)
.dwattr $C$DW$T$140, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$140
$C$DW$T$142 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$142, DW_AT_byte_size(0x04)
$C$DW$519 .dwtag DW_TAG_member
.dwattr $C$DW$519, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$519, DW_AT_name("CR")
.dwattr $C$DW$519, DW_AT_TI_symbol_name("CR")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$519, DW_AT_decl_line(0x3a)
.dwattr $C$DW$519, DW_AT_decl_column(0x15)
$C$DW$520 .dwtag DW_TAG_member
.dwattr $C$DW$520, DW_AT_type(*$C$DW$T$141)
.dwattr $C$DW$520, DW_AT_name("CR_bit")
.dwattr $C$DW$520, DW_AT_TI_symbol_name("CR_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$520, DW_AT_decl_line(0x40)
.dwattr $C$DW$520, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$142, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$142, DW_AT_decl_line(0x39)
.dwattr $C$DW$T$142, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$142
$C$DW$T$144 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$144, DW_AT_byte_size(0x04)
$C$DW$521 .dwtag DW_TAG_member
.dwattr $C$DW$521, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$521, DW_AT_name("GER")
.dwattr $C$DW$521, DW_AT_TI_symbol_name("GER")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$521, DW_AT_decl_line(0x49)
.dwattr $C$DW$521, DW_AT_decl_column(0x15)
$C$DW$522 .dwtag DW_TAG_member
.dwattr $C$DW$522, DW_AT_type(*$C$DW$T$143)
.dwattr $C$DW$522, DW_AT_name("GER_bit")
.dwattr $C$DW$522, DW_AT_TI_symbol_name("GER_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$522, DW_AT_decl_line(0x4e)
.dwattr $C$DW$522, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$144, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$144, DW_AT_decl_line(0x48)
.dwattr $C$DW$T$144, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$144
$C$DW$T$146 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$146, DW_AT_byte_size(0x04)
$C$DW$523 .dwtag DW_TAG_member
.dwattr $C$DW$523, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$523, DW_AT_name("GNLR")
.dwattr $C$DW$523, DW_AT_TI_symbol_name("GNLR")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$523, DW_AT_decl_line(0x57)
.dwattr $C$DW$523, DW_AT_decl_column(0x15)
$C$DW$524 .dwtag DW_TAG_member
.dwattr $C$DW$524, DW_AT_type(*$C$DW$T$145)
.dwattr $C$DW$524, DW_AT_name("GNLR_bit")
.dwattr $C$DW$524, DW_AT_TI_symbol_name("GNLR_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$524, DW_AT_decl_line(0x5d)
.dwattr $C$DW$524, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$146, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$146, DW_AT_decl_line(0x56)
.dwattr $C$DW$T$146, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$146
$C$DW$T$148 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$148, DW_AT_byte_size(0x04)
$C$DW$525 .dwtag DW_TAG_member
.dwattr $C$DW$525, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$525, DW_AT_name("SISR")
.dwattr $C$DW$525, DW_AT_TI_symbol_name("SISR")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$525, DW_AT_decl_line(0x63)
.dwattr $C$DW$525, DW_AT_decl_column(0x15)
$C$DW$526 .dwtag DW_TAG_member
.dwattr $C$DW$526, DW_AT_type(*$C$DW$T$147)
.dwattr $C$DW$526, DW_AT_name("SISR_bit")
.dwattr $C$DW$526, DW_AT_TI_symbol_name("SISR_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$526, DW_AT_decl_line(0x68)
.dwattr $C$DW$526, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$148, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$148, DW_AT_decl_line(0x62)
.dwattr $C$DW$T$148, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$148
$C$DW$T$150 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$150, DW_AT_byte_size(0x04)
$C$DW$527 .dwtag DW_TAG_member
.dwattr $C$DW$527, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$527, DW_AT_name("SICR")
.dwattr $C$DW$527, DW_AT_TI_symbol_name("SICR")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$527, DW_AT_decl_line(0x6e)
.dwattr $C$DW$527, DW_AT_decl_column(0x15)
$C$DW$528 .dwtag DW_TAG_member
.dwattr $C$DW$528, DW_AT_type(*$C$DW$T$149)
.dwattr $C$DW$528, DW_AT_name("SICR_bit")
.dwattr $C$DW$528, DW_AT_TI_symbol_name("SICR_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$528, DW_AT_decl_line(0x73)
.dwattr $C$DW$528, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$150, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$150, DW_AT_decl_line(0x6d)
.dwattr $C$DW$T$150, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$150
$C$DW$T$152 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$152, DW_AT_byte_size(0x04)
$C$DW$529 .dwtag DW_TAG_member
.dwattr $C$DW$529, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$529, DW_AT_name("EISR")
.dwattr $C$DW$529, DW_AT_TI_symbol_name("EISR")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$529, DW_AT_decl_line(0x79)
.dwattr $C$DW$529, DW_AT_decl_column(0x15)
$C$DW$530 .dwtag DW_TAG_member
.dwattr $C$DW$530, DW_AT_type(*$C$DW$T$151)
.dwattr $C$DW$530, DW_AT_name("EISR_bit")
.dwattr $C$DW$530, DW_AT_TI_symbol_name("EISR_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$530, DW_AT_decl_line(0x7e)
.dwattr $C$DW$530, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$152, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$152, DW_AT_decl_line(0x78)
.dwattr $C$DW$T$152, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$152
$C$DW$T$154 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$154, DW_AT_byte_size(0x04)
$C$DW$531 .dwtag DW_TAG_member
.dwattr $C$DW$531, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$531, DW_AT_name("EICR")
.dwattr $C$DW$531, DW_AT_TI_symbol_name("EICR")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$531, DW_AT_decl_line(0x84)
.dwattr $C$DW$531, DW_AT_decl_column(0x15)
$C$DW$532 .dwtag DW_TAG_member
.dwattr $C$DW$532, DW_AT_type(*$C$DW$T$153)
.dwattr $C$DW$532, DW_AT_name("EICR_bit")
.dwattr $C$DW$532, DW_AT_TI_symbol_name("EICR_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$532, DW_AT_decl_line(0x89)
.dwattr $C$DW$532, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$154, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$154, DW_AT_decl_line(0x83)
.dwattr $C$DW$T$154, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$154
$C$DW$T$156 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$156, DW_AT_byte_size(0x04)
$C$DW$533 .dwtag DW_TAG_member
.dwattr $C$DW$533, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$533, DW_AT_name("HIEISR")
.dwattr $C$DW$533, DW_AT_TI_symbol_name("HIEISR")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$533, DW_AT_decl_line(0x92)
.dwattr $C$DW$533, DW_AT_decl_column(0x15)
$C$DW$534 .dwtag DW_TAG_member
.dwattr $C$DW$534, DW_AT_type(*$C$DW$T$155)
.dwattr $C$DW$534, DW_AT_name("HIEISR_bit")
.dwattr $C$DW$534, DW_AT_TI_symbol_name("HIEISR_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$534, DW_AT_decl_line(0x97)
.dwattr $C$DW$534, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$156, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$156, DW_AT_decl_line(0x91)
.dwattr $C$DW$T$156, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$156
$C$DW$T$158 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$158, DW_AT_byte_size(0x04)
$C$DW$535 .dwtag DW_TAG_member
.dwattr $C$DW$535, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$535, DW_AT_name("HIDISR")
.dwattr $C$DW$535, DW_AT_TI_symbol_name("HIDISR")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$535, DW_AT_decl_line(0x9d)
.dwattr $C$DW$535, DW_AT_decl_column(0x15)
$C$DW$536 .dwtag DW_TAG_member
.dwattr $C$DW$536, DW_AT_type(*$C$DW$T$157)
.dwattr $C$DW$536, DW_AT_name("HIDISR_bit")
.dwattr $C$DW$536, DW_AT_TI_symbol_name("HIDISR_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$536, DW_AT_decl_line(0xa2)
.dwattr $C$DW$536, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$158, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$158, DW_AT_decl_line(0x9c)
.dwattr $C$DW$T$158, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$158
$C$DW$T$160 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$160, DW_AT_byte_size(0x04)
$C$DW$537 .dwtag DW_TAG_member
.dwattr $C$DW$537, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$537, DW_AT_name("GPIR")
.dwattr $C$DW$537, DW_AT_TI_symbol_name("GPIR")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$537, DW_AT_decl_line(0xab)
.dwattr $C$DW$537, DW_AT_decl_column(0x15)
$C$DW$538 .dwtag DW_TAG_member
.dwattr $C$DW$538, DW_AT_type(*$C$DW$T$159)
.dwattr $C$DW$538, DW_AT_name("GPIR_bit")
.dwattr $C$DW$538, DW_AT_TI_symbol_name("GPIR_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$538, DW_AT_decl_line(0xb1)
.dwattr $C$DW$538, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$160, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$160, DW_AT_decl_line(0xaa)
.dwattr $C$DW$T$160, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$160
$C$DW$T$162 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$162, DW_AT_byte_size(0x04)
$C$DW$539 .dwtag DW_TAG_member
.dwattr $C$DW$539, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$539, DW_AT_name("SRSR0")
.dwattr $C$DW$539, DW_AT_TI_symbol_name("SRSR0")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$539, DW_AT_decl_line(0xba)
.dwattr $C$DW$539, DW_AT_decl_column(0x15)
$C$DW$540 .dwtag DW_TAG_member
.dwattr $C$DW$540, DW_AT_type(*$C$DW$T$161)
.dwattr $C$DW$540, DW_AT_name("SRSR0_bit")
.dwattr $C$DW$540, DW_AT_TI_symbol_name("SRSR0_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$540, DW_AT_decl_line(0xbe)
.dwattr $C$DW$540, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$162, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$162, DW_AT_decl_line(0xb9)
.dwattr $C$DW$T$162, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$162
$C$DW$T$164 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$164, DW_AT_byte_size(0x04)
$C$DW$541 .dwtag DW_TAG_member
.dwattr $C$DW$541, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$541, DW_AT_name("SRSR1")
.dwattr $C$DW$541, DW_AT_TI_symbol_name("SRSR1")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$541, DW_AT_decl_line(0xc4)
.dwattr $C$DW$541, DW_AT_decl_column(0x15)
$C$DW$542 .dwtag DW_TAG_member
.dwattr $C$DW$542, DW_AT_type(*$C$DW$T$163)
.dwattr $C$DW$542, DW_AT_name("SRSR1_bit")
.dwattr $C$DW$542, DW_AT_TI_symbol_name("SRSR1_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$542, DW_AT_decl_line(0xc8)
.dwattr $C$DW$542, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$164, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$164, DW_AT_decl_line(0xc3)
.dwattr $C$DW$T$164, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$164
$C$DW$T$166 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$166, DW_AT_byte_size(0x04)
$C$DW$543 .dwtag DW_TAG_member
.dwattr $C$DW$543, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$543, DW_AT_name("SECR0")
.dwattr $C$DW$543, DW_AT_TI_symbol_name("SECR0")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$543, DW_AT_decl_line(0xd1)
.dwattr $C$DW$543, DW_AT_decl_column(0x15)
$C$DW$544 .dwtag DW_TAG_member
.dwattr $C$DW$544, DW_AT_type(*$C$DW$T$165)
.dwattr $C$DW$544, DW_AT_name("SECR0_bit")
.dwattr $C$DW$544, DW_AT_TI_symbol_name("SECR0_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$544, DW_AT_decl_line(0xd5)
.dwattr $C$DW$544, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$166, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$166, DW_AT_decl_line(0xd0)
.dwattr $C$DW$T$166, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$166
$C$DW$T$168 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$168, DW_AT_byte_size(0x04)
$C$DW$545 .dwtag DW_TAG_member
.dwattr $C$DW$545, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$545, DW_AT_name("SECR1")
.dwattr $C$DW$545, DW_AT_TI_symbol_name("SECR1")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$545, DW_AT_decl_line(0xdb)
.dwattr $C$DW$545, DW_AT_decl_column(0x15)
$C$DW$546 .dwtag DW_TAG_member
.dwattr $C$DW$546, DW_AT_type(*$C$DW$T$167)
.dwattr $C$DW$546, DW_AT_name("SECR1_bit")
.dwattr $C$DW$546, DW_AT_TI_symbol_name("SECR1_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$546, DW_AT_decl_line(0xdf)
.dwattr $C$DW$546, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$168, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$168, DW_AT_decl_line(0xda)
.dwattr $C$DW$T$168, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$168
$C$DW$T$170 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$170, DW_AT_byte_size(0x04)
$C$DW$547 .dwtag DW_TAG_member
.dwattr $C$DW$547, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$547, DW_AT_name("ESR0")
.dwattr $C$DW$547, DW_AT_TI_symbol_name("ESR0")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$547, DW_AT_decl_line(0xe8)
.dwattr $C$DW$547, DW_AT_decl_column(0x15)
$C$DW$548 .dwtag DW_TAG_member
.dwattr $C$DW$548, DW_AT_type(*$C$DW$T$169)
.dwattr $C$DW$548, DW_AT_name("ESR0_bit")
.dwattr $C$DW$548, DW_AT_TI_symbol_name("ESR0_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$548, DW_AT_decl_line(0xec)
.dwattr $C$DW$548, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$170, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$170, DW_AT_decl_line(0xe7)
.dwattr $C$DW$T$170, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$170
$C$DW$T$172 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$172, DW_AT_byte_size(0x04)
$C$DW$549 .dwtag DW_TAG_member
.dwattr $C$DW$549, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$549, DW_AT_name("ESR1")
.dwattr $C$DW$549, DW_AT_TI_symbol_name("ESR1")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$549, DW_AT_decl_line(0xf2)
.dwattr $C$DW$549, DW_AT_decl_column(0x15)
$C$DW$550 .dwtag DW_TAG_member
.dwattr $C$DW$550, DW_AT_type(*$C$DW$T$171)
.dwattr $C$DW$550, DW_AT_name("ESR1_bit")
.dwattr $C$DW$550, DW_AT_TI_symbol_name("ESR1_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$550, DW_AT_decl_line(0xf6)
.dwattr $C$DW$550, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$172, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$172, DW_AT_decl_line(0xf1)
.dwattr $C$DW$T$172, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$172
$C$DW$T$174 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$174, DW_AT_byte_size(0x04)
$C$DW$551 .dwtag DW_TAG_member
.dwattr $C$DW$551, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$551, DW_AT_name("ECR0")
.dwattr $C$DW$551, DW_AT_TI_symbol_name("ECR0")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$551, DW_AT_decl_line(0xff)
.dwattr $C$DW$551, DW_AT_decl_column(0x15)
$C$DW$552 .dwtag DW_TAG_member
.dwattr $C$DW$552, DW_AT_type(*$C$DW$T$173)
.dwattr $C$DW$552, DW_AT_name("ECR0_bit")
.dwattr $C$DW$552, DW_AT_TI_symbol_name("ECR0_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$552, DW_AT_decl_line(0x103)
.dwattr $C$DW$552, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$174, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$174, DW_AT_decl_line(0xfe)
.dwattr $C$DW$T$174, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$174
$C$DW$T$176 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$176, DW_AT_byte_size(0x04)
$C$DW$553 .dwtag DW_TAG_member
.dwattr $C$DW$553, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$553, DW_AT_name("ECR1")
.dwattr $C$DW$553, DW_AT_TI_symbol_name("ECR1")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$553, DW_AT_decl_line(0x109)
.dwattr $C$DW$553, DW_AT_decl_column(0x15)
$C$DW$554 .dwtag DW_TAG_member
.dwattr $C$DW$554, DW_AT_type(*$C$DW$T$175)
.dwattr $C$DW$554, DW_AT_name("ECR1_bit")
.dwattr $C$DW$554, DW_AT_TI_symbol_name("ECR1_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$554, DW_AT_decl_line(0x10d)
.dwattr $C$DW$554, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$176, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$176, DW_AT_decl_line(0x108)
.dwattr $C$DW$T$176, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$176
$C$DW$T$178 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$178, DW_AT_byte_size(0x04)
$C$DW$555 .dwtag DW_TAG_member
.dwattr $C$DW$555, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$555, DW_AT_name("CMR0")
.dwattr $C$DW$555, DW_AT_TI_symbol_name("CMR0")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$555, DW_AT_decl_line(0x116)
.dwattr $C$DW$555, DW_AT_decl_column(0x15)
$C$DW$556 .dwtag DW_TAG_member
.dwattr $C$DW$556, DW_AT_type(*$C$DW$T$177)
.dwattr $C$DW$556, DW_AT_name("CMR0_bit")
.dwattr $C$DW$556, DW_AT_TI_symbol_name("CMR0_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$556, DW_AT_decl_line(0x121)
.dwattr $C$DW$556, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$178, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$178, DW_AT_decl_line(0x115)
.dwattr $C$DW$T$178, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$178
$C$DW$T$180 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$180, DW_AT_byte_size(0x04)
$C$DW$557 .dwtag DW_TAG_member
.dwattr $C$DW$557, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$557, DW_AT_name("CMR1")
.dwattr $C$DW$557, DW_AT_TI_symbol_name("CMR1")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$557, DW_AT_decl_line(0x127)
.dwattr $C$DW$557, DW_AT_decl_column(0x15)
$C$DW$558 .dwtag DW_TAG_member
.dwattr $C$DW$558, DW_AT_type(*$C$DW$T$179)
.dwattr $C$DW$558, DW_AT_name("CMR1_bit")
.dwattr $C$DW$558, DW_AT_TI_symbol_name("CMR1_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$558, DW_AT_decl_line(0x132)
.dwattr $C$DW$558, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$180, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$180, DW_AT_decl_line(0x126)
.dwattr $C$DW$T$180, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$180
$C$DW$T$182 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$182, DW_AT_byte_size(0x04)
$C$DW$559 .dwtag DW_TAG_member
.dwattr $C$DW$559, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$559, DW_AT_name("CMR2")
.dwattr $C$DW$559, DW_AT_TI_symbol_name("CMR2")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$559, DW_AT_decl_line(0x138)
.dwattr $C$DW$559, DW_AT_decl_column(0x15)
$C$DW$560 .dwtag DW_TAG_member
.dwattr $C$DW$560, DW_AT_type(*$C$DW$T$181)
.dwattr $C$DW$560, DW_AT_name("CMR2_bit")
.dwattr $C$DW$560, DW_AT_TI_symbol_name("CMR2_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$560, DW_AT_decl_line(0x143)
.dwattr $C$DW$560, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$182, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$182, DW_AT_decl_line(0x137)
.dwattr $C$DW$T$182, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$182
$C$DW$T$184 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$184, DW_AT_byte_size(0x04)
$C$DW$561 .dwtag DW_TAG_member
.dwattr $C$DW$561, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$561, DW_AT_name("CMR3")
.dwattr $C$DW$561, DW_AT_TI_symbol_name("CMR3")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$561, DW_AT_decl_line(0x149)
.dwattr $C$DW$561, DW_AT_decl_column(0x15)
$C$DW$562 .dwtag DW_TAG_member
.dwattr $C$DW$562, DW_AT_type(*$C$DW$T$183)
.dwattr $C$DW$562, DW_AT_name("CMR3_bit")
.dwattr $C$DW$562, DW_AT_TI_symbol_name("CMR3_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$562, DW_AT_decl_line(0x154)
.dwattr $C$DW$562, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$184, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$184, DW_AT_decl_line(0x148)
.dwattr $C$DW$T$184, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$184
$C$DW$T$186 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$186, DW_AT_byte_size(0x04)
$C$DW$563 .dwtag DW_TAG_member
.dwattr $C$DW$563, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$563, DW_AT_name("CMR4")
.dwattr $C$DW$563, DW_AT_TI_symbol_name("CMR4")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$563, DW_AT_decl_line(0x15a)
.dwattr $C$DW$563, DW_AT_decl_column(0x15)
$C$DW$564 .dwtag DW_TAG_member
.dwattr $C$DW$564, DW_AT_type(*$C$DW$T$185)
.dwattr $C$DW$564, DW_AT_name("CMR4_bit")
.dwattr $C$DW$564, DW_AT_TI_symbol_name("CMR4_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$564, DW_AT_decl_line(0x165)
.dwattr $C$DW$564, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$186, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$186, DW_AT_decl_line(0x159)
.dwattr $C$DW$T$186, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$186
$C$DW$T$188 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$188, DW_AT_byte_size(0x04)
$C$DW$565 .dwtag DW_TAG_member
.dwattr $C$DW$565, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$565, DW_AT_name("CMR5")
.dwattr $C$DW$565, DW_AT_TI_symbol_name("CMR5")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$565, DW_AT_decl_line(0x16b)
.dwattr $C$DW$565, DW_AT_decl_column(0x15)
$C$DW$566 .dwtag DW_TAG_member
.dwattr $C$DW$566, DW_AT_type(*$C$DW$T$187)
.dwattr $C$DW$566, DW_AT_name("CMR5_bit")
.dwattr $C$DW$566, DW_AT_TI_symbol_name("CMR5_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$566, DW_AT_decl_line(0x176)
.dwattr $C$DW$566, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$188, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$188, DW_AT_decl_line(0x16a)
.dwattr $C$DW$T$188, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$188
$C$DW$T$190 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$190, DW_AT_byte_size(0x04)
$C$DW$567 .dwtag DW_TAG_member
.dwattr $C$DW$567, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$567, DW_AT_name("CMR6")
.dwattr $C$DW$567, DW_AT_TI_symbol_name("CMR6")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$567, DW_AT_decl_line(0x17c)
.dwattr $C$DW$567, DW_AT_decl_column(0x15)
$C$DW$568 .dwtag DW_TAG_member
.dwattr $C$DW$568, DW_AT_type(*$C$DW$T$189)
.dwattr $C$DW$568, DW_AT_name("CMR6_bit")
.dwattr $C$DW$568, DW_AT_TI_symbol_name("CMR6_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$568, DW_AT_decl_line(0x187)
.dwattr $C$DW$568, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$190, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$190, DW_AT_decl_line(0x17b)
.dwattr $C$DW$T$190, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$190
$C$DW$T$192 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$192, DW_AT_byte_size(0x04)
$C$DW$569 .dwtag DW_TAG_member
.dwattr $C$DW$569, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$569, DW_AT_name("CMR7")
.dwattr $C$DW$569, DW_AT_TI_symbol_name("CMR7")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$569, DW_AT_decl_line(0x18d)
.dwattr $C$DW$569, DW_AT_decl_column(0x15)
$C$DW$570 .dwtag DW_TAG_member
.dwattr $C$DW$570, DW_AT_type(*$C$DW$T$191)
.dwattr $C$DW$570, DW_AT_name("CMR7_bit")
.dwattr $C$DW$570, DW_AT_TI_symbol_name("CMR7_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$570, DW_AT_decl_line(0x198)
.dwattr $C$DW$570, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$192, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$192, DW_AT_decl_line(0x18c)
.dwattr $C$DW$T$192, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$192
$C$DW$T$194 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$194, DW_AT_byte_size(0x04)
$C$DW$571 .dwtag DW_TAG_member
.dwattr $C$DW$571, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$571, DW_AT_name("CMR8")
.dwattr $C$DW$571, DW_AT_TI_symbol_name("CMR8")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$571, DW_AT_decl_line(0x19e)
.dwattr $C$DW$571, DW_AT_decl_column(0x15)
$C$DW$572 .dwtag DW_TAG_member
.dwattr $C$DW$572, DW_AT_type(*$C$DW$T$193)
.dwattr $C$DW$572, DW_AT_name("CMR8_bit")
.dwattr $C$DW$572, DW_AT_TI_symbol_name("CMR8_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$572, DW_AT_decl_line(0x1a9)
.dwattr $C$DW$572, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$194, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$194, DW_AT_decl_line(0x19d)
.dwattr $C$DW$T$194, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$194
$C$DW$T$196 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$196, DW_AT_byte_size(0x04)
$C$DW$573 .dwtag DW_TAG_member
.dwattr $C$DW$573, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$573, DW_AT_name("CMR9")
.dwattr $C$DW$573, DW_AT_TI_symbol_name("CMR9")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$573, DW_AT_decl_line(0x1af)
.dwattr $C$DW$573, DW_AT_decl_column(0x15)
$C$DW$574 .dwtag DW_TAG_member
.dwattr $C$DW$574, DW_AT_type(*$C$DW$T$195)
.dwattr $C$DW$574, DW_AT_name("CMR9_bit")
.dwattr $C$DW$574, DW_AT_TI_symbol_name("CMR9_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$574, DW_AT_decl_line(0x1ba)
.dwattr $C$DW$574, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$196, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$196, DW_AT_decl_line(0x1ae)
.dwattr $C$DW$T$196, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$196
$C$DW$T$198 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$198, DW_AT_byte_size(0x04)
$C$DW$575 .dwtag DW_TAG_member
.dwattr $C$DW$575, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$575, DW_AT_name("CMR10")
.dwattr $C$DW$575, DW_AT_TI_symbol_name("CMR10")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$575, DW_AT_decl_line(0x1c0)
.dwattr $C$DW$575, DW_AT_decl_column(0x15)
$C$DW$576 .dwtag DW_TAG_member
.dwattr $C$DW$576, DW_AT_type(*$C$DW$T$197)
.dwattr $C$DW$576, DW_AT_name("CMR10_bit")
.dwattr $C$DW$576, DW_AT_TI_symbol_name("CMR10_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$576, DW_AT_decl_line(0x1cb)
.dwattr $C$DW$576, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$198, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$198, DW_AT_decl_line(0x1bf)
.dwattr $C$DW$T$198, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$198
$C$DW$T$200 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$200, DW_AT_byte_size(0x04)
$C$DW$577 .dwtag DW_TAG_member
.dwattr $C$DW$577, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$577, DW_AT_name("CMR11")
.dwattr $C$DW$577, DW_AT_TI_symbol_name("CMR11")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$577, DW_AT_decl_line(0x1d1)
.dwattr $C$DW$577, DW_AT_decl_column(0x15)
$C$DW$578 .dwtag DW_TAG_member
.dwattr $C$DW$578, DW_AT_type(*$C$DW$T$199)
.dwattr $C$DW$578, DW_AT_name("CMR11_bit")
.dwattr $C$DW$578, DW_AT_TI_symbol_name("CMR11_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$578, DW_AT_decl_line(0x1dc)
.dwattr $C$DW$578, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$200, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$200, DW_AT_decl_line(0x1d0)
.dwattr $C$DW$T$200, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$200
$C$DW$T$202 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$202, DW_AT_byte_size(0x04)
$C$DW$579 .dwtag DW_TAG_member
.dwattr $C$DW$579, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$579, DW_AT_name("CMR12")
.dwattr $C$DW$579, DW_AT_TI_symbol_name("CMR12")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$579, DW_AT_decl_line(0x1e2)
.dwattr $C$DW$579, DW_AT_decl_column(0x15)
$C$DW$580 .dwtag DW_TAG_member
.dwattr $C$DW$580, DW_AT_type(*$C$DW$T$201)
.dwattr $C$DW$580, DW_AT_name("CMR12_bit")
.dwattr $C$DW$580, DW_AT_TI_symbol_name("CMR12_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$580, DW_AT_decl_line(0x1ed)
.dwattr $C$DW$580, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$202, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$202, DW_AT_decl_line(0x1e1)
.dwattr $C$DW$T$202, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$202
$C$DW$T$204 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$204, DW_AT_byte_size(0x04)
$C$DW$581 .dwtag DW_TAG_member
.dwattr $C$DW$581, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$581, DW_AT_name("CMR13")
.dwattr $C$DW$581, DW_AT_TI_symbol_name("CMR13")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$581, DW_AT_decl_line(0x1f3)
.dwattr $C$DW$581, DW_AT_decl_column(0x15)
$C$DW$582 .dwtag DW_TAG_member
.dwattr $C$DW$582, DW_AT_type(*$C$DW$T$203)
.dwattr $C$DW$582, DW_AT_name("CMR13_bit")
.dwattr $C$DW$582, DW_AT_TI_symbol_name("CMR13_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$582, DW_AT_decl_line(0x1fe)
.dwattr $C$DW$582, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$204, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$204, DW_AT_decl_line(0x1f2)
.dwattr $C$DW$T$204, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$204
$C$DW$T$206 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$206, DW_AT_byte_size(0x04)
$C$DW$583 .dwtag DW_TAG_member
.dwattr $C$DW$583, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$583, DW_AT_name("CMR14")
.dwattr $C$DW$583, DW_AT_TI_symbol_name("CMR14")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$583, DW_AT_decl_line(0x204)
.dwattr $C$DW$583, DW_AT_decl_column(0x15)
$C$DW$584 .dwtag DW_TAG_member
.dwattr $C$DW$584, DW_AT_type(*$C$DW$T$205)
.dwattr $C$DW$584, DW_AT_name("CMR14_bit")
.dwattr $C$DW$584, DW_AT_TI_symbol_name("CMR14_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$584, DW_AT_decl_line(0x20f)
.dwattr $C$DW$584, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$206, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$206, DW_AT_decl_line(0x203)
.dwattr $C$DW$T$206, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$206
$C$DW$T$208 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$208, DW_AT_byte_size(0x04)
$C$DW$585 .dwtag DW_TAG_member
.dwattr $C$DW$585, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$585, DW_AT_name("CMR15")
.dwattr $C$DW$585, DW_AT_TI_symbol_name("CMR15")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$585, DW_AT_decl_line(0x215)
.dwattr $C$DW$585, DW_AT_decl_column(0x15)
$C$DW$586 .dwtag DW_TAG_member
.dwattr $C$DW$586, DW_AT_type(*$C$DW$T$207)
.dwattr $C$DW$586, DW_AT_name("CMR15_bit")
.dwattr $C$DW$586, DW_AT_TI_symbol_name("CMR15_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$586, DW_AT_decl_line(0x220)
.dwattr $C$DW$586, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$208, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$208, DW_AT_decl_line(0x214)
.dwattr $C$DW$T$208, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$208
$C$DW$T$210 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$210, DW_AT_byte_size(0x04)
$C$DW$587 .dwtag DW_TAG_member
.dwattr $C$DW$587, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$587, DW_AT_name("HMR0")
.dwattr $C$DW$587, DW_AT_TI_symbol_name("HMR0")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$587, DW_AT_decl_line(0x229)
.dwattr $C$DW$587, DW_AT_decl_column(0x15)
$C$DW$588 .dwtag DW_TAG_member
.dwattr $C$DW$588, DW_AT_type(*$C$DW$T$209)
.dwattr $C$DW$588, DW_AT_name("HMR0_bit")
.dwattr $C$DW$588, DW_AT_TI_symbol_name("HMR0_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$588, DW_AT_decl_line(0x234)
.dwattr $C$DW$588, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$210, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$210, DW_AT_decl_line(0x228)
.dwattr $C$DW$T$210, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$210
$C$DW$T$212 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$212, DW_AT_byte_size(0x04)
$C$DW$589 .dwtag DW_TAG_member
.dwattr $C$DW$589, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$589, DW_AT_name("HMR1")
.dwattr $C$DW$589, DW_AT_TI_symbol_name("HMR1")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$589, DW_AT_decl_line(0x23a)
.dwattr $C$DW$589, DW_AT_decl_column(0x15)
$C$DW$590 .dwtag DW_TAG_member
.dwattr $C$DW$590, DW_AT_type(*$C$DW$T$211)
.dwattr $C$DW$590, DW_AT_name("HMR1_bit")
.dwattr $C$DW$590, DW_AT_TI_symbol_name("HMR1_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$590, DW_AT_decl_line(0x245)
.dwattr $C$DW$590, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$212, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$212, DW_AT_decl_line(0x239)
.dwattr $C$DW$T$212, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$212
$C$DW$T$214 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$214, DW_AT_byte_size(0x04)
$C$DW$591 .dwtag DW_TAG_member
.dwattr $C$DW$591, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$591, DW_AT_name("HMR2")
.dwattr $C$DW$591, DW_AT_TI_symbol_name("HMR2")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$591, DW_AT_decl_line(0x24b)
.dwattr $C$DW$591, DW_AT_decl_column(0x15)
$C$DW$592 .dwtag DW_TAG_member
.dwattr $C$DW$592, DW_AT_type(*$C$DW$T$213)
.dwattr $C$DW$592, DW_AT_name("HMR2_bit")
.dwattr $C$DW$592, DW_AT_TI_symbol_name("HMR2_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$592, DW_AT_decl_line(0x252)
.dwattr $C$DW$592, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$214, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$214, DW_AT_decl_line(0x24a)
.dwattr $C$DW$T$214, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$214
$C$DW$T$216 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$216, DW_AT_byte_size(0x04)
$C$DW$593 .dwtag DW_TAG_member
.dwattr $C$DW$593, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$593, DW_AT_name("HIPIR0")
.dwattr $C$DW$593, DW_AT_TI_symbol_name("HIPIR0")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$593, DW_AT_decl_line(0x25b)
.dwattr $C$DW$593, DW_AT_decl_column(0x15)
$C$DW$594 .dwtag DW_TAG_member
.dwattr $C$DW$594, DW_AT_type(*$C$DW$T$215)
.dwattr $C$DW$594, DW_AT_name("HIPIR0_bit")
.dwattr $C$DW$594, DW_AT_TI_symbol_name("HIPIR0_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$594, DW_AT_decl_line(0x261)
.dwattr $C$DW$594, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$216, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$216, DW_AT_decl_line(0x25a)
.dwattr $C$DW$T$216, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$216
$C$DW$T$218 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$218, DW_AT_byte_size(0x04)
$C$DW$595 .dwtag DW_TAG_member
.dwattr $C$DW$595, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$595, DW_AT_name("HIPIR1")
.dwattr $C$DW$595, DW_AT_TI_symbol_name("HIPIR1")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$595, DW_AT_decl_line(0x267)
.dwattr $C$DW$595, DW_AT_decl_column(0x15)
$C$DW$596 .dwtag DW_TAG_member
.dwattr $C$DW$596, DW_AT_type(*$C$DW$T$217)
.dwattr $C$DW$596, DW_AT_name("HIPIR1_bit")
.dwattr $C$DW$596, DW_AT_TI_symbol_name("HIPIR1_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$596, DW_AT_decl_line(0x26d)
.dwattr $C$DW$596, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$218, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$218, DW_AT_decl_line(0x266)
.dwattr $C$DW$T$218, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$218
$C$DW$T$220 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$220, DW_AT_byte_size(0x04)
$C$DW$597 .dwtag DW_TAG_member
.dwattr $C$DW$597, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$597, DW_AT_name("HIPIR2")
.dwattr $C$DW$597, DW_AT_TI_symbol_name("HIPIR2")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$597, DW_AT_decl_line(0x273)
.dwattr $C$DW$597, DW_AT_decl_column(0x15)
$C$DW$598 .dwtag DW_TAG_member
.dwattr $C$DW$598, DW_AT_type(*$C$DW$T$219)
.dwattr $C$DW$598, DW_AT_name("HIPIR2_bit")
.dwattr $C$DW$598, DW_AT_TI_symbol_name("HIPIR2_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$598, DW_AT_decl_line(0x279)
.dwattr $C$DW$598, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$220, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$220, DW_AT_decl_line(0x272)
.dwattr $C$DW$T$220, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$220
$C$DW$T$222 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$222, DW_AT_byte_size(0x04)
$C$DW$599 .dwtag DW_TAG_member
.dwattr $C$DW$599, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$599, DW_AT_name("HIPIR3")
.dwattr $C$DW$599, DW_AT_TI_symbol_name("HIPIR3")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$599, DW_AT_decl_line(0x27f)
.dwattr $C$DW$599, DW_AT_decl_column(0x15)
$C$DW$600 .dwtag DW_TAG_member
.dwattr $C$DW$600, DW_AT_type(*$C$DW$T$221)
.dwattr $C$DW$600, DW_AT_name("HIPIR3_bit")
.dwattr $C$DW$600, DW_AT_TI_symbol_name("HIPIR3_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$600, DW_AT_decl_line(0x285)
.dwattr $C$DW$600, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$222, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$222, DW_AT_decl_line(0x27e)
.dwattr $C$DW$T$222, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$222
$C$DW$T$224 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$224, DW_AT_byte_size(0x04)
$C$DW$601 .dwtag DW_TAG_member
.dwattr $C$DW$601, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$601, DW_AT_name("HIPIR4")
.dwattr $C$DW$601, DW_AT_TI_symbol_name("HIPIR4")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$601, DW_AT_decl_line(0x28b)
.dwattr $C$DW$601, DW_AT_decl_column(0x15)
$C$DW$602 .dwtag DW_TAG_member
.dwattr $C$DW$602, DW_AT_type(*$C$DW$T$223)
.dwattr $C$DW$602, DW_AT_name("HIPIR4_bit")
.dwattr $C$DW$602, DW_AT_TI_symbol_name("HIPIR4_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$602, DW_AT_decl_line(0x291)
.dwattr $C$DW$602, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$224, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$224, DW_AT_decl_line(0x28a)
.dwattr $C$DW$T$224, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$224
$C$DW$T$226 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$226, DW_AT_byte_size(0x04)
$C$DW$603 .dwtag DW_TAG_member
.dwattr $C$DW$603, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$603, DW_AT_name("HIPIR5")
.dwattr $C$DW$603, DW_AT_TI_symbol_name("HIPIR5")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$603, DW_AT_decl_line(0x297)
.dwattr $C$DW$603, DW_AT_decl_column(0x15)
$C$DW$604 .dwtag DW_TAG_member
.dwattr $C$DW$604, DW_AT_type(*$C$DW$T$225)
.dwattr $C$DW$604, DW_AT_name("HIPIR5_bit")
.dwattr $C$DW$604, DW_AT_TI_symbol_name("HIPIR5_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$604, DW_AT_decl_line(0x29d)
.dwattr $C$DW$604, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$226, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$226, DW_AT_decl_line(0x296)
.dwattr $C$DW$T$226, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$226
$C$DW$T$228 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$228, DW_AT_byte_size(0x04)
$C$DW$605 .dwtag DW_TAG_member
.dwattr $C$DW$605, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$605, DW_AT_name("HIPIR6")
.dwattr $C$DW$605, DW_AT_TI_symbol_name("HIPIR6")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$605, DW_AT_decl_line(0x2a3)
.dwattr $C$DW$605, DW_AT_decl_column(0x15)
$C$DW$606 .dwtag DW_TAG_member
.dwattr $C$DW$606, DW_AT_type(*$C$DW$T$227)
.dwattr $C$DW$606, DW_AT_name("HIPIR6_bit")
.dwattr $C$DW$606, DW_AT_TI_symbol_name("HIPIR6_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$606, DW_AT_decl_line(0x2a9)
.dwattr $C$DW$606, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$228, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$228, DW_AT_decl_line(0x2a2)
.dwattr $C$DW$T$228, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$228
$C$DW$T$230 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$230, DW_AT_byte_size(0x04)
$C$DW$607 .dwtag DW_TAG_member
.dwattr $C$DW$607, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$607, DW_AT_name("HIPIR7")
.dwattr $C$DW$607, DW_AT_TI_symbol_name("HIPIR7")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$607, DW_AT_decl_line(0x2af)
.dwattr $C$DW$607, DW_AT_decl_column(0x15)
$C$DW$608 .dwtag DW_TAG_member
.dwattr $C$DW$608, DW_AT_type(*$C$DW$T$229)
.dwattr $C$DW$608, DW_AT_name("HIPIR7_bit")
.dwattr $C$DW$608, DW_AT_TI_symbol_name("HIPIR7_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$608, DW_AT_decl_line(0x2b5)
.dwattr $C$DW$608, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$230, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$230, DW_AT_decl_line(0x2ae)
.dwattr $C$DW$T$230, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$230
$C$DW$T$232 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$232, DW_AT_byte_size(0x04)
$C$DW$609 .dwtag DW_TAG_member
.dwattr $C$DW$609, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$609, DW_AT_name("HIPIR8")
.dwattr $C$DW$609, DW_AT_TI_symbol_name("HIPIR8")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$609, DW_AT_decl_line(0x2bb)
.dwattr $C$DW$609, DW_AT_decl_column(0x15)
$C$DW$610 .dwtag DW_TAG_member
.dwattr $C$DW$610, DW_AT_type(*$C$DW$T$231)
.dwattr $C$DW$610, DW_AT_name("HIPIR8_bit")
.dwattr $C$DW$610, DW_AT_TI_symbol_name("HIPIR8_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$610, DW_AT_decl_line(0x2c1)
.dwattr $C$DW$610, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$232, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$232, DW_AT_decl_line(0x2ba)
.dwattr $C$DW$T$232, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$232
$C$DW$T$234 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$234, DW_AT_byte_size(0x04)
$C$DW$611 .dwtag DW_TAG_member
.dwattr $C$DW$611, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$611, DW_AT_name("HIPIR9")
.dwattr $C$DW$611, DW_AT_TI_symbol_name("HIPIR9")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$611, DW_AT_decl_line(0x2c7)
.dwattr $C$DW$611, DW_AT_decl_column(0x15)
$C$DW$612 .dwtag DW_TAG_member
.dwattr $C$DW$612, DW_AT_type(*$C$DW$T$233)
.dwattr $C$DW$612, DW_AT_name("HIPIR9_bit")
.dwattr $C$DW$612, DW_AT_TI_symbol_name("HIPIR9_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$612, DW_AT_decl_line(0x2cd)
.dwattr $C$DW$612, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$234, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$234, DW_AT_decl_line(0x2c6)
.dwattr $C$DW$T$234, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$234
$C$DW$T$236 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$236, DW_AT_byte_size(0x04)
$C$DW$613 .dwtag DW_TAG_member
.dwattr $C$DW$613, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$613, DW_AT_name("SIPR0")
.dwattr $C$DW$613, DW_AT_TI_symbol_name("SIPR0")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$613, DW_AT_decl_line(0x2d6)
.dwattr $C$DW$613, DW_AT_decl_column(0x15)
$C$DW$614 .dwtag DW_TAG_member
.dwattr $C$DW$614, DW_AT_type(*$C$DW$T$235)
.dwattr $C$DW$614, DW_AT_name("SIPR0_bit")
.dwattr $C$DW$614, DW_AT_TI_symbol_name("SIPR0_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$614, DW_AT_decl_line(0x2da)
.dwattr $C$DW$614, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$236, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$236, DW_AT_decl_line(0x2d5)
.dwattr $C$DW$T$236, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$236
$C$DW$T$238 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$238, DW_AT_byte_size(0x04)
$C$DW$615 .dwtag DW_TAG_member
.dwattr $C$DW$615, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$615, DW_AT_name("SIPR1")
.dwattr $C$DW$615, DW_AT_TI_symbol_name("SIPR1")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$615, DW_AT_decl_line(0x2e0)
.dwattr $C$DW$615, DW_AT_decl_column(0x15)
$C$DW$616 .dwtag DW_TAG_member
.dwattr $C$DW$616, DW_AT_type(*$C$DW$T$237)
.dwattr $C$DW$616, DW_AT_name("SIPR1_bit")
.dwattr $C$DW$616, DW_AT_TI_symbol_name("SIPR1_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$616, DW_AT_decl_line(0x2e4)
.dwattr $C$DW$616, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$238, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$238, DW_AT_decl_line(0x2df)
.dwattr $C$DW$T$238, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$238
$C$DW$T$240 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$240, DW_AT_byte_size(0x04)
$C$DW$617 .dwtag DW_TAG_member
.dwattr $C$DW$617, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$617, DW_AT_name("SITR0")
.dwattr $C$DW$617, DW_AT_TI_symbol_name("SITR0")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$617, DW_AT_decl_line(0x2ed)
.dwattr $C$DW$617, DW_AT_decl_column(0x15)
$C$DW$618 .dwtag DW_TAG_member
.dwattr $C$DW$618, DW_AT_type(*$C$DW$T$239)
.dwattr $C$DW$618, DW_AT_name("SITR0_bit")
.dwattr $C$DW$618, DW_AT_TI_symbol_name("SITR0_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$618, DW_AT_decl_line(0x2f1)
.dwattr $C$DW$618, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$240, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$240, DW_AT_decl_line(0x2ec)
.dwattr $C$DW$T$240, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$240
$C$DW$T$242 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$242, DW_AT_byte_size(0x04)
$C$DW$619 .dwtag DW_TAG_member
.dwattr $C$DW$619, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$619, DW_AT_name("SITR1")
.dwattr $C$DW$619, DW_AT_TI_symbol_name("SITR1")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$619, DW_AT_decl_line(0x2f7)
.dwattr $C$DW$619, DW_AT_decl_column(0x15)
$C$DW$620 .dwtag DW_TAG_member
.dwattr $C$DW$620, DW_AT_type(*$C$DW$T$241)
.dwattr $C$DW$620, DW_AT_name("SITR1_bit")
.dwattr $C$DW$620, DW_AT_TI_symbol_name("SITR1_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$620, DW_AT_decl_line(0x2fb)
.dwattr $C$DW$620, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$242, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$242, DW_AT_decl_line(0x2f6)
.dwattr $C$DW$T$242, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$242
$C$DW$T$244 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$244, DW_AT_byte_size(0x04)
$C$DW$621 .dwtag DW_TAG_member
.dwattr $C$DW$621, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$621, DW_AT_name("HINLR0")
.dwattr $C$DW$621, DW_AT_TI_symbol_name("HINLR0")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$621, DW_AT_decl_line(0x304)
.dwattr $C$DW$621, DW_AT_decl_column(0x15)
$C$DW$622 .dwtag DW_TAG_member
.dwattr $C$DW$622, DW_AT_type(*$C$DW$T$243)
.dwattr $C$DW$622, DW_AT_name("HINLR0_bit")
.dwattr $C$DW$622, DW_AT_TI_symbol_name("HINLR0_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$622, DW_AT_decl_line(0x30a)
.dwattr $C$DW$622, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$244, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$244, DW_AT_decl_line(0x303)
.dwattr $C$DW$T$244, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$244
$C$DW$T$246 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$246, DW_AT_byte_size(0x04)
$C$DW$623 .dwtag DW_TAG_member
.dwattr $C$DW$623, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$623, DW_AT_name("HINLR1")
.dwattr $C$DW$623, DW_AT_TI_symbol_name("HINLR1")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$623, DW_AT_decl_line(0x310)
.dwattr $C$DW$623, DW_AT_decl_column(0x15)
$C$DW$624 .dwtag DW_TAG_member
.dwattr $C$DW$624, DW_AT_type(*$C$DW$T$245)
.dwattr $C$DW$624, DW_AT_name("HINLR1_bit")
.dwattr $C$DW$624, DW_AT_TI_symbol_name("HINLR1_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$624, DW_AT_decl_line(0x316)
.dwattr $C$DW$624, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$246, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$246, DW_AT_decl_line(0x30f)
.dwattr $C$DW$T$246, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$246
$C$DW$T$248 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$248, DW_AT_byte_size(0x04)
$C$DW$625 .dwtag DW_TAG_member
.dwattr $C$DW$625, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$625, DW_AT_name("HINLR2")
.dwattr $C$DW$625, DW_AT_TI_symbol_name("HINLR2")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$625, DW_AT_decl_line(0x31c)
.dwattr $C$DW$625, DW_AT_decl_column(0x15)
$C$DW$626 .dwtag DW_TAG_member
.dwattr $C$DW$626, DW_AT_type(*$C$DW$T$247)
.dwattr $C$DW$626, DW_AT_name("HINLR2_bit")
.dwattr $C$DW$626, DW_AT_TI_symbol_name("HINLR2_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$626, DW_AT_decl_line(0x322)
.dwattr $C$DW$626, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$248, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$248, DW_AT_decl_line(0x31b)
.dwattr $C$DW$T$248, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$248
$C$DW$T$250 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$250, DW_AT_byte_size(0x04)
$C$DW$627 .dwtag DW_TAG_member
.dwattr $C$DW$627, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$627, DW_AT_name("HINLR3")
.dwattr $C$DW$627, DW_AT_TI_symbol_name("HINLR3")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$627, DW_AT_decl_line(0x328)
.dwattr $C$DW$627, DW_AT_decl_column(0x15)
$C$DW$628 .dwtag DW_TAG_member
.dwattr $C$DW$628, DW_AT_type(*$C$DW$T$249)
.dwattr $C$DW$628, DW_AT_name("HINLR3_bit")
.dwattr $C$DW$628, DW_AT_TI_symbol_name("HINLR3_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$628, DW_AT_decl_line(0x32e)
.dwattr $C$DW$628, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$250, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$250, DW_AT_decl_line(0x327)
.dwattr $C$DW$T$250, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$250
$C$DW$T$252 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$252, DW_AT_byte_size(0x04)
$C$DW$629 .dwtag DW_TAG_member
.dwattr $C$DW$629, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$629, DW_AT_name("HINLR4")
.dwattr $C$DW$629, DW_AT_TI_symbol_name("HINLR4")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$629, DW_AT_decl_line(0x334)
.dwattr $C$DW$629, DW_AT_decl_column(0x15)
$C$DW$630 .dwtag DW_TAG_member
.dwattr $C$DW$630, DW_AT_type(*$C$DW$T$251)
.dwattr $C$DW$630, DW_AT_name("HINLR4_bit")
.dwattr $C$DW$630, DW_AT_TI_symbol_name("HINLR4_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$630, DW_AT_decl_line(0x33a)
.dwattr $C$DW$630, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$252, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$252, DW_AT_decl_line(0x333)
.dwattr $C$DW$T$252, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$252
$C$DW$T$254 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$254, DW_AT_byte_size(0x04)
$C$DW$631 .dwtag DW_TAG_member
.dwattr $C$DW$631, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$631, DW_AT_name("HINLR5")
.dwattr $C$DW$631, DW_AT_TI_symbol_name("HINLR5")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$631, DW_AT_decl_line(0x340)
.dwattr $C$DW$631, DW_AT_decl_column(0x15)
$C$DW$632 .dwtag DW_TAG_member
.dwattr $C$DW$632, DW_AT_type(*$C$DW$T$253)
.dwattr $C$DW$632, DW_AT_name("HINLR5_bit")
.dwattr $C$DW$632, DW_AT_TI_symbol_name("HINLR5_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$632, DW_AT_decl_line(0x346)
.dwattr $C$DW$632, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$254, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$254, DW_AT_decl_line(0x33f)
.dwattr $C$DW$T$254, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$254
$C$DW$T$256 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$256, DW_AT_byte_size(0x04)
$C$DW$633 .dwtag DW_TAG_member
.dwattr $C$DW$633, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$633, DW_AT_name("HINLR6")
.dwattr $C$DW$633, DW_AT_TI_symbol_name("HINLR6")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$633, DW_AT_decl_line(0x34c)
.dwattr $C$DW$633, DW_AT_decl_column(0x15)
$C$DW$634 .dwtag DW_TAG_member
.dwattr $C$DW$634, DW_AT_type(*$C$DW$T$255)
.dwattr $C$DW$634, DW_AT_name("HINLR6_bit")
.dwattr $C$DW$634, DW_AT_TI_symbol_name("HINLR6_bit")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$634, DW_AT_decl_line(0x352)
.dwattr $C$DW$634, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$256, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$256, DW_AT_decl_line(0x34b)
.dwattr $C$DW$T$256, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$256
$C$DW$T$258 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$258, DW_AT_byte_size(0x04)
$C$DW$635 .dwtag DW_TAG_member
.dwattr $C$DW$635, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$635, DW_AT_name("HINLR7")
.dwattr $C$DW$635, DW_AT_TI_symbol_name("HINLR7")
.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/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$635, DW_AT_decl_line(0x358)
.dwattr $C$DW$635, DW_AT_decl_column(0x15)
$C$DW$636 .dwtag DW_TAG_member
.dwattr $C$DW$636, DW_AT_type(*$C$DW$T$257)
.dwattr $C$DW$636, DW_AT_name("HINLR7_bit")
.dwattr $C$DW$636, DW_AT_TI_symbol_name("HINLR7_bit")
.dwattr $C$DW$636, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$636, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$636, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$636, DW_AT_decl_line(0x35e)
.dwattr $C$DW$636, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$258, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$258, DW_AT_decl_line(0x357)
.dwattr $C$DW$T$258, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$258
$C$DW$T$260 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$260, DW_AT_byte_size(0x04)
$C$DW$637 .dwtag DW_TAG_member
.dwattr $C$DW$637, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$637, DW_AT_name("HINLR8")
.dwattr $C$DW$637, DW_AT_TI_symbol_name("HINLR8")
.dwattr $C$DW$637, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$637, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$637, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$637, DW_AT_decl_line(0x364)
.dwattr $C$DW$637, DW_AT_decl_column(0x15)
$C$DW$638 .dwtag DW_TAG_member
.dwattr $C$DW$638, DW_AT_type(*$C$DW$T$259)
.dwattr $C$DW$638, DW_AT_name("HINLR8_bit")
.dwattr $C$DW$638, DW_AT_TI_symbol_name("HINLR8_bit")
.dwattr $C$DW$638, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$638, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$638, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$638, DW_AT_decl_line(0x36a)
.dwattr $C$DW$638, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$260, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$260, DW_AT_decl_line(0x363)
.dwattr $C$DW$T$260, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$260
$C$DW$T$262 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$262, DW_AT_byte_size(0x04)
$C$DW$639 .dwtag DW_TAG_member
.dwattr $C$DW$639, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$639, DW_AT_name("HINLR9")
.dwattr $C$DW$639, DW_AT_TI_symbol_name("HINLR9")
.dwattr $C$DW$639, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$639, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$639, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$639, DW_AT_decl_line(0x370)
.dwattr $C$DW$639, DW_AT_decl_column(0x15)
$C$DW$640 .dwtag DW_TAG_member
.dwattr $C$DW$640, DW_AT_type(*$C$DW$T$261)
.dwattr $C$DW$640, DW_AT_name("HINLR9_bit")
.dwattr $C$DW$640, DW_AT_TI_symbol_name("HINLR9_bit")
.dwattr $C$DW$640, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$640, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$640, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$640, DW_AT_decl_line(0x376)
.dwattr $C$DW$640, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$262, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$262, DW_AT_decl_line(0x36f)
.dwattr $C$DW$T$262, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$262
$C$DW$T$264 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$264, DW_AT_byte_size(0x04)
$C$DW$641 .dwtag DW_TAG_member
.dwattr $C$DW$641, DW_AT_type(*$C$DW$T$112)
.dwattr $C$DW$641, DW_AT_name("HIER")
.dwattr $C$DW$641, DW_AT_TI_symbol_name("HIER")
.dwattr $C$DW$641, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$641, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$641, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$641, DW_AT_decl_line(0x37f)
.dwattr $C$DW$641, DW_AT_decl_column(0x15)
$C$DW$642 .dwtag DW_TAG_member
.dwattr $C$DW$642, DW_AT_type(*$C$DW$T$263)
.dwattr $C$DW$642, DW_AT_name("HIER_bit")
.dwattr $C$DW$642, DW_AT_TI_symbol_name("HIER_bit")
.dwattr $C$DW$642, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$642, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$642, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$642, DW_AT_decl_line(0x384)
.dwattr $C$DW$642, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$264, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$264, DW_AT_decl_line(0x37e)
.dwattr $C$DW$T$264, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$264
$C$DW$T$265 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$265, DW_AT_byte_size(0x04)
$C$DW$643 .dwtag DW_TAG_member
.dwattr $C$DW$643, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$643, DW_AT_name("sub_type")
.dwattr $C$DW$643, DW_AT_TI_symbol_name("sub_type")
.dwattr $C$DW$643, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$643, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$643, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$643, DW_AT_decl_line(0x178)
.dwattr $C$DW$643, DW_AT_decl_column(0x0c)
$C$DW$644 .dwtag DW_TAG_member
.dwattr $C$DW$644, DW_AT_type(*$C$DW$T$108)
.dwattr $C$DW$644, DW_AT_name("st")
.dwattr $C$DW$644, DW_AT_TI_symbol_name("st")
.dwattr $C$DW$644, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$644, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$644, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$644, DW_AT_decl_line(0x17c)
.dwattr $C$DW$644, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$265, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$T$265, DW_AT_decl_line(0x177)
.dwattr $C$DW$T$265, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$265
$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$317 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$317, DW_AT_type(*$C$DW$T$6)
.dwattr $C$DW$T$317, DW_AT_address_class(0x20)
$C$DW$T$266 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$266, DW_AT_name("uint8_t")
.dwattr $C$DW$T$266, DW_AT_type(*$C$DW$T$6)
.dwattr $C$DW$T$266, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$266, DW_AT_decl_file("/usr/share/ti/cgt-pru/include/stdint.h")
.dwattr $C$DW$T$266, DW_AT_decl_line(0x3d)
.dwattr $C$DW$T$266, DW_AT_decl_column(0x1c)
$C$DW$T$270 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$270, DW_AT_type(*$C$DW$T$266)
.dwattr $C$DW$T$270, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$270, DW_AT_byte_size(0x0a)
$C$DW$645 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$645, DW_AT_upper_bound(0x09)
.dwendtag $C$DW$T$270
$C$DW$T$273 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$273, DW_AT_type(*$C$DW$T$266)
.dwattr $C$DW$T$273, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$273, DW_AT_byte_size(0x02)
$C$DW$646 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$646, DW_AT_upper_bound(0x01)
.dwendtag $C$DW$T$273
$C$DW$T$318 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$318, DW_AT_type(*$C$DW$T$266)
.dwattr $C$DW$T$318, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$318, DW_AT_byte_size(0x1f0)
$C$DW$647 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$647, DW_AT_upper_bound(0x1ef)
.dwendtag $C$DW$T$318
$C$DW$T$319 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$319, DW_AT_type(*$C$DW$T$266)
$C$DW$T$320 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$320, DW_AT_type(*$C$DW$T$319)
.dwattr $C$DW$T$320, DW_AT_address_class(0x20)
$C$DW$T$321 .dwtag DW_TAG_const_type
.dwattr $C$DW$T$321, DW_AT_type(*$C$DW$T$320)
$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$337 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$337, DW_AT_name("int16_t")
.dwattr $C$DW$T$337, DW_AT_type(*$C$DW$T$8)
.dwattr $C$DW$T$337, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$337, DW_AT_decl_file("/usr/share/ti/cgt-pru/include/stdint.h")
.dwattr $C$DW$T$337, DW_AT_decl_line(0x3e)
.dwattr $C$DW$T$337, 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$107 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$107, DW_AT_name("uint16_t")
.dwattr $C$DW$T$107, DW_AT_type(*$C$DW$T$9)
.dwattr $C$DW$T$107, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$107, DW_AT_decl_file("/usr/share/ti/cgt-pru/include/stdint.h")
.dwattr $C$DW$T$107, DW_AT_decl_line(0x3f)
.dwattr $C$DW$T$107, DW_AT_decl_column(0x1c)
$C$DW$T$110 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$110, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$T$110, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$110, DW_AT_byte_size(0x1e0)
$C$DW$648 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$648, DW_AT_upper_bound(0xef)
.dwendtag $C$DW$T$110
$C$DW$T$285 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$285, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$T$285, DW_AT_language(DW_LANG_C)
$C$DW$649 .dwtag DW_TAG_subrange_type
.dwendtag $C$DW$T$285
$C$DW$T$332 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$332, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$T$332, 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$329 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$329, DW_AT_name("int32_t")
.dwattr $C$DW$T$329, DW_AT_type(*$C$DW$T$10)
.dwattr $C$DW$T$329, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$329, DW_AT_decl_file("/usr/share/ti/cgt-pru/include/stdint.h")
.dwattr $C$DW$T$329, DW_AT_decl_line(0x40)
.dwattr $C$DW$T$329, 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$343 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$343, DW_AT_type(*$C$DW$T$11)
$C$DW$T$344 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$344, DW_AT_type(*$C$DW$T$343)
.dwattr $C$DW$T$344, DW_AT_address_class(0x20)
$C$DW$T$32 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$32, 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(0x41)
.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$650 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$650, 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$651 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$651, DW_AT_upper_bound(0x01)
.dwendtag $C$DW$T$34
$C$DW$T$99 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$99, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$99, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$99, DW_AT_byte_size(0x44)
$C$DW$652 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$652, DW_AT_upper_bound(0x10)
.dwendtag $C$DW$T$99
$C$DW$T$100 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$100, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$100, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$100, DW_AT_byte_size(0x17c)
$C$DW$653 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$653, DW_AT_upper_bound(0x5e)
.dwendtag $C$DW$T$100
$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(0x78)
$C$DW$654 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$654, DW_AT_upper_bound(0x1d)
.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(0x3c0)
$C$DW$655 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$655, DW_AT_upper_bound(0xef)
.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(0xf4)
$C$DW$656 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$656, DW_AT_upper_bound(0x3c)
.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(0x3d8)
$C$DW$657 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$657, DW_AT_upper_bound(0xf5)
.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(0x378)
$C$DW$658 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$658, DW_AT_upper_bound(0xdd)
.dwendtag $C$DW$T$105
$C$DW$T$112 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$112, DW_AT_type(*$C$DW$T$32)
$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$109 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$109, DW_AT_name("uint64_t")
.dwattr $C$DW$T$109, DW_AT_type(*$C$DW$T$15)
.dwattr $C$DW$T$109, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$109, DW_AT_decl_file("/usr/share/ti/cgt-pru/include/stdint.h")
.dwattr $C$DW$T$109, DW_AT_decl_line(0x53)
.dwattr $C$DW$T$109, 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$328 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$328, DW_AT_type(*$C$DW$T$6)
.dwattr $C$DW$T$328, DW_AT_address_class(0x20)
$C$DW$T$267 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$267, DW_AT_name("ch_map")
.dwattr $C$DW$T$267, DW_AT_byte_size(0x02)
$C$DW$659 .dwtag DW_TAG_member
.dwattr $C$DW$659, DW_AT_type(*$C$DW$T$266)
.dwattr $C$DW$659, DW_AT_name("evt")
.dwattr $C$DW$659, DW_AT_TI_symbol_name("evt")
.dwattr $C$DW$659, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$659, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$659, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_types.h")
.dwattr $C$DW$659, DW_AT_decl_line(0x3a)
.dwattr $C$DW$659, DW_AT_decl_column(0x0a)
$C$DW$660 .dwtag DW_TAG_member
.dwattr $C$DW$660, DW_AT_type(*$C$DW$T$266)
.dwattr $C$DW$660, DW_AT_name("ch")
.dwattr $C$DW$660, DW_AT_TI_symbol_name("ch")
.dwattr $C$DW$660, DW_AT_data_member_location[DW_OP_plus_uconst 0x1]
.dwattr $C$DW$660, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$660, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_types.h")
.dwattr $C$DW$660, DW_AT_decl_line(0x3b)
.dwattr $C$DW$660, DW_AT_decl_column(0x0a)
.dwattr $C$DW$T$267, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_types.h")
.dwattr $C$DW$T$267, DW_AT_decl_line(0x39)
.dwattr $C$DW$T$267, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$267
$C$DW$T$271 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$271, DW_AT_type(*$C$DW$T$267)
.dwattr $C$DW$T$271, DW_AT_address_class(0x20)
$C$DW$T$345 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$345, DW_AT_type(*$C$DW$T$267)
.dwattr $C$DW$T$345, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$345, DW_AT_byte_size(0x04)
$C$DW$661 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$661, DW_AT_upper_bound(0x01)
.dwendtag $C$DW$T$345
$C$DW$T$268 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$268, DW_AT_name("fw_custom")
.dwattr $C$DW$T$268, DW_AT_byte_size(0x14)
$C$DW$662 .dwtag DW_TAG_member
.dwattr $C$DW$662, DW_AT_type(*$C$DW$T$272)
.dwattr $C$DW$662, DW_AT_name("pru_ints")
.dwattr $C$DW$662, DW_AT_TI_symbol_name("pru_ints")
.dwattr $C$DW$662, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$662, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$662, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$662, DW_AT_decl_line(0x3a)
.dwattr $C$DW$662, DW_AT_decl_column(0x1c)
$C$DW$663 .dwtag DW_TAG_member
.dwattr $C$DW$663, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$663, DW_AT_name("reserved")
.dwattr $C$DW$663, DW_AT_TI_symbol_name("reserved")
.dwattr $C$DW$663, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$663, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$663, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$663, DW_AT_decl_line(0x3c)
.dwattr $C$DW$663, DW_AT_decl_column(0x0b)
.dwattr $C$DW$T$268, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$T$268, DW_AT_decl_line(0x38)
.dwattr $C$DW$T$268, DW_AT_decl_column(0x07)
.dwendtag $C$DW$T$268
$C$DW$T$269 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$269, DW_AT_name("fw_rsc_custom")
.dwattr $C$DW$T$269, DW_AT_byte_size(0x20)
$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/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$664, DW_AT_decl_line(0x176)
.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$265)
.dwattr $C$DW$665, DW_AT_name("u")
.dwattr $C$DW$665, DW_AT_TI_symbol_name("u")
.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/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$665, DW_AT_decl_line(0x17d)
.dwattr $C$DW$665, DW_AT_decl_column(0x04)
$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("rsc_size")
.dwattr $C$DW$666, DW_AT_TI_symbol_name("rsc_size")
.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/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$666, DW_AT_decl_line(0x17e)
.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$268)
.dwattr $C$DW$667, DW_AT_name("rsc")
.dwattr $C$DW$667, DW_AT_TI_symbol_name("rsc")
.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/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$667, DW_AT_decl_line(0x17f)
.dwattr $C$DW$667, DW_AT_decl_column(0x12)
.dwattr $C$DW$T$269, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$T$269, DW_AT_decl_line(0x175)
.dwattr $C$DW$T$269, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$269
$C$DW$T$272 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$272, DW_AT_name("fw_rsc_custom_ints")
.dwattr $C$DW$T$272, DW_AT_byte_size(0x14)
$C$DW$668 .dwtag DW_TAG_member
.dwattr $C$DW$668, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$668, DW_AT_name("reserved")
.dwattr $C$DW$668, DW_AT_TI_symbol_name("reserved")
.dwattr $C$DW$668, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$668, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$668, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_types.h")
.dwattr $C$DW$668, DW_AT_decl_line(0x4f)
.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$270)
.dwattr $C$DW$669, DW_AT_name("channel_host")
.dwattr $C$DW$669, DW_AT_TI_symbol_name("channel_host")
.dwattr $C$DW$669, DW_AT_data_member_location[DW_OP_plus_uconst 0x2]
.dwattr $C$DW$669, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$669, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_types.h")
.dwattr $C$DW$669, DW_AT_decl_line(0x50)
.dwattr $C$DW$669, DW_AT_decl_column(0x0a)
$C$DW$670 .dwtag DW_TAG_member
.dwattr $C$DW$670, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$670, DW_AT_name("num_evts")
.dwattr $C$DW$670, DW_AT_TI_symbol_name("num_evts")
.dwattr $C$DW$670, DW_AT_data_member_location[DW_OP_plus_uconst 0xc]
.dwattr $C$DW$670, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$670, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_types.h")
.dwattr $C$DW$670, DW_AT_decl_line(0x51)
.dwattr $C$DW$670, DW_AT_decl_column(0x0b)
$C$DW$671 .dwtag DW_TAG_member
.dwattr $C$DW$671, DW_AT_type(*$C$DW$T$271)
.dwattr $C$DW$671, DW_AT_name("event_channel")
.dwattr $C$DW$671, DW_AT_TI_symbol_name("event_channel")
.dwattr $C$DW$671, DW_AT_data_member_location[DW_OP_plus_uconst 0x10]
.dwattr $C$DW$671, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$671, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_types.h")
.dwattr $C$DW$671, DW_AT_decl_line(0x52)
.dwattr $C$DW$671, DW_AT_decl_column(0x11)
.dwattr $C$DW$T$272, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_types.h")
.dwattr $C$DW$T$272, DW_AT_decl_line(0x4e)
.dwattr $C$DW$T$272, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$272
$C$DW$T$275 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$275, DW_AT_name("fw_rsc_vdev")
.dwattr $C$DW$T$275, DW_AT_byte_size(0x1c)
$C$DW$672 .dwtag DW_TAG_member
.dwattr $C$DW$672, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$672, DW_AT_name("type")
.dwattr $C$DW$672, DW_AT_TI_symbol_name("type")
.dwattr $C$DW$672, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$672, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$672, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$672, DW_AT_decl_line(0x116)
.dwattr $C$DW$672, DW_AT_decl_column(0x0b)
$C$DW$673 .dwtag DW_TAG_member
.dwattr $C$DW$673, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$673, DW_AT_name("id")
.dwattr $C$DW$673, DW_AT_TI_symbol_name("id")
.dwattr $C$DW$673, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$673, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$673, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$673, DW_AT_decl_line(0x117)
.dwattr $C$DW$673, DW_AT_decl_column(0x0b)
$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("notifyid")
.dwattr $C$DW$674, DW_AT_TI_symbol_name("notifyid")
.dwattr $C$DW$674, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$674, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$674, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$674, DW_AT_decl_line(0x118)
.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("dfeatures")
.dwattr $C$DW$675, DW_AT_TI_symbol_name("dfeatures")
.dwattr $C$DW$675, DW_AT_data_member_location[DW_OP_plus_uconst 0xc]
.dwattr $C$DW$675, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$675, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$675, DW_AT_decl_line(0x119)
.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("gfeatures")
.dwattr $C$DW$676, DW_AT_TI_symbol_name("gfeatures")
.dwattr $C$DW$676, DW_AT_data_member_location[DW_OP_plus_uconst 0x10]
.dwattr $C$DW$676, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$676, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$676, DW_AT_decl_line(0x11a)
.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("config_len")
.dwattr $C$DW$677, DW_AT_TI_symbol_name("config_len")
.dwattr $C$DW$677, DW_AT_data_member_location[DW_OP_plus_uconst 0x14]
.dwattr $C$DW$677, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$677, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$677, DW_AT_decl_line(0x11b)
.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$266)
.dwattr $C$DW$678, DW_AT_name("status")
.dwattr $C$DW$678, DW_AT_TI_symbol_name("status")
.dwattr $C$DW$678, DW_AT_data_member_location[DW_OP_plus_uconst 0x18]
.dwattr $C$DW$678, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$678, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$678, DW_AT_decl_line(0x11c)
.dwattr $C$DW$678, DW_AT_decl_column(0x0a)
$C$DW$679 .dwtag DW_TAG_member
.dwattr $C$DW$679, DW_AT_type(*$C$DW$T$266)
.dwattr $C$DW$679, DW_AT_name("num_of_vrings")
.dwattr $C$DW$679, DW_AT_TI_symbol_name("num_of_vrings")
.dwattr $C$DW$679, DW_AT_data_member_location[DW_OP_plus_uconst 0x19]
.dwattr $C$DW$679, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$679, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$679, DW_AT_decl_line(0x11d)
.dwattr $C$DW$679, DW_AT_decl_column(0x0a)
$C$DW$680 .dwtag DW_TAG_member
.dwattr $C$DW$680, DW_AT_type(*$C$DW$T$273)
.dwattr $C$DW$680, DW_AT_name("reserved")
.dwattr $C$DW$680, DW_AT_TI_symbol_name("reserved")
.dwattr $C$DW$680, DW_AT_data_member_location[DW_OP_plus_uconst 0x1a]
.dwattr $C$DW$680, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$680, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$680, DW_AT_decl_line(0x11e)
.dwattr $C$DW$680, DW_AT_decl_column(0x0a)
$C$DW$681 .dwtag DW_TAG_member
.dwattr $C$DW$681, DW_AT_type(*$C$DW$T$274)
.dwattr $C$DW$681, DW_AT_name("vring")
.dwattr $C$DW$681, DW_AT_TI_symbol_name("vring")
.dwattr $C$DW$681, DW_AT_data_member_location[DW_OP_plus_uconst 0x1c]
.dwattr $C$DW$681, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$681, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$681, DW_AT_decl_line(0x11f)
.dwattr $C$DW$681, DW_AT_decl_column(0x1b)
.dwattr $C$DW$T$275, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$T$275, DW_AT_decl_line(0x115)
.dwattr $C$DW$T$275, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$275
$C$DW$T$276 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$276, DW_AT_name("fw_rsc_vdev_vring")
.dwattr $C$DW$T$276, DW_AT_byte_size(0x14)
$C$DW$682 .dwtag DW_TAG_member
.dwattr $C$DW$682, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$682, DW_AT_name("da")
.dwattr $C$DW$682, DW_AT_TI_symbol_name("da")
.dwattr $C$DW$682, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$682, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$682, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$682, DW_AT_decl_line(0xea)
.dwattr $C$DW$682, DW_AT_decl_column(0x0b)
$C$DW$683 .dwtag DW_TAG_member
.dwattr $C$DW$683, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$683, DW_AT_name("align")
.dwattr $C$DW$683, DW_AT_TI_symbol_name("align")
.dwattr $C$DW$683, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$683, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$683, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$683, DW_AT_decl_line(0xeb)
.dwattr $C$DW$683, DW_AT_decl_column(0x0b)
$C$DW$684 .dwtag DW_TAG_member
.dwattr $C$DW$684, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$684, DW_AT_name("num")
.dwattr $C$DW$684, DW_AT_TI_symbol_name("num")
.dwattr $C$DW$684, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$684, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$684, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$684, DW_AT_decl_line(0xec)
.dwattr $C$DW$684, DW_AT_decl_column(0x0b)
$C$DW$685 .dwtag DW_TAG_member
.dwattr $C$DW$685, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$685, DW_AT_name("notifyid")
.dwattr $C$DW$685, DW_AT_TI_symbol_name("notifyid")
.dwattr $C$DW$685, DW_AT_data_member_location[DW_OP_plus_uconst 0xc]
.dwattr $C$DW$685, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$685, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$685, DW_AT_decl_line(0xed)
.dwattr $C$DW$685, DW_AT_decl_column(0x0b)
$C$DW$686 .dwtag DW_TAG_member
.dwattr $C$DW$686, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$686, DW_AT_name("reserved")
.dwattr $C$DW$686, DW_AT_TI_symbol_name("reserved")
.dwattr $C$DW$686, DW_AT_data_member_location[DW_OP_plus_uconst 0x10]
.dwattr $C$DW$686, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$686, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$686, DW_AT_decl_line(0xee)
.dwattr $C$DW$686, DW_AT_decl_column(0x0b)
.dwattr $C$DW$T$276, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$T$276, DW_AT_decl_line(0xe9)
.dwattr $C$DW$T$276, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$276
$C$DW$T$274 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$274, DW_AT_type(*$C$DW$T$276)
.dwattr $C$DW$T$274, DW_AT_language(DW_LANG_C)
$C$DW$687 .dwtag DW_TAG_subrange_type
.dwendtag $C$DW$T$274
$C$DW$T$323 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$323, DW_AT_type(*$C$DW$T$276)
.dwattr $C$DW$T$323, DW_AT_address_class(0x20)
$C$DW$T$277 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$277, DW_AT_name("my_resource_table")
.dwattr $C$DW$T$277, DW_AT_byte_size(0x7c)
$C$DW$688 .dwtag DW_TAG_member
.dwattr $C$DW$688, DW_AT_type(*$C$DW$T$280)
.dwattr $C$DW$688, DW_AT_name("base")
.dwattr $C$DW$688, DW_AT_TI_symbol_name("base")
.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("resource_table_0.h")
.dwattr $C$DW$688, DW_AT_decl_line(0x41)
.dwattr $C$DW$688, DW_AT_decl_column(0x18)
$C$DW$689 .dwtag DW_TAG_member
.dwattr $C$DW$689, DW_AT_type(*$C$DW$T$34)
.dwattr $C$DW$689, DW_AT_name("offset")
.dwattr $C$DW$689, DW_AT_TI_symbol_name("offset")
.dwattr $C$DW$689, DW_AT_data_member_location[DW_OP_plus_uconst 0x10]
.dwattr $C$DW$689, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$689, DW_AT_decl_file("resource_table_0.h")
.dwattr $C$DW$689, DW_AT_decl_line(0x43)
.dwattr $C$DW$689, DW_AT_decl_column(0x0b)
$C$DW$690 .dwtag DW_TAG_member
.dwattr $C$DW$690, DW_AT_type(*$C$DW$T$275)
.dwattr $C$DW$690, DW_AT_name("rpmsg_vdev")
.dwattr $C$DW$690, DW_AT_TI_symbol_name("rpmsg_vdev")
.dwattr $C$DW$690, DW_AT_data_member_location[DW_OP_plus_uconst 0x18]
.dwattr $C$DW$690, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$690, DW_AT_decl_file("resource_table_0.h")
.dwattr $C$DW$690, DW_AT_decl_line(0x46)
.dwattr $C$DW$690, DW_AT_decl_column(0x15)
$C$DW$691 .dwtag DW_TAG_member
.dwattr $C$DW$691, DW_AT_type(*$C$DW$T$276)
.dwattr $C$DW$691, DW_AT_name("rpmsg_vring0")
.dwattr $C$DW$691, DW_AT_TI_symbol_name("rpmsg_vring0")
.dwattr $C$DW$691, DW_AT_data_member_location[DW_OP_plus_uconst 0x34]
.dwattr $C$DW$691, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$691, DW_AT_decl_file("resource_table_0.h")
.dwattr $C$DW$691, DW_AT_decl_line(0x47)
.dwattr $C$DW$691, DW_AT_decl_column(0x1b)
$C$DW$692 .dwtag DW_TAG_member
.dwattr $C$DW$692, DW_AT_type(*$C$DW$T$276)
.dwattr $C$DW$692, DW_AT_name("rpmsg_vring1")
.dwattr $C$DW$692, DW_AT_TI_symbol_name("rpmsg_vring1")
.dwattr $C$DW$692, DW_AT_data_member_location[DW_OP_plus_uconst 0x48]
.dwattr $C$DW$692, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$692, DW_AT_decl_file("resource_table_0.h")
.dwattr $C$DW$692, DW_AT_decl_line(0x48)
.dwattr $C$DW$692, DW_AT_decl_column(0x1b)
$C$DW$693 .dwtag DW_TAG_member
.dwattr $C$DW$693, DW_AT_type(*$C$DW$T$269)
.dwattr $C$DW$693, DW_AT_name("pru_ints")
.dwattr $C$DW$693, DW_AT_TI_symbol_name("pru_ints")
.dwattr $C$DW$693, DW_AT_data_member_location[DW_OP_plus_uconst 0x5c]
.dwattr $C$DW$693, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$693, DW_AT_decl_file("resource_table_0.h")
.dwattr $C$DW$693, DW_AT_decl_line(0x4b)
.dwattr $C$DW$693, DW_AT_decl_column(0x17)
.dwattr $C$DW$T$277, DW_AT_decl_file("resource_table_0.h")
.dwattr $C$DW$T$277, DW_AT_decl_line(0x40)
.dwattr $C$DW$T$277, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$277
$C$DW$T$326 .dwtag DW_TAG_enumeration_type
.dwattr $C$DW$T$326, DW_AT_name("pru_rpmsg_ns_flags")
.dwattr $C$DW$T$326, DW_AT_byte_size(0x01)
$C$DW$694 .dwtag DW_TAG_enumerator
.dwattr $C$DW$694, DW_AT_name("RPMSG_NS_CREATE")
.dwattr $C$DW$694, DW_AT_const_value(0x00)
.dwattr $C$DW$694, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$694, DW_AT_decl_line(0x5d)
.dwattr $C$DW$694, DW_AT_decl_column(0x05)
$C$DW$695 .dwtag DW_TAG_enumerator
.dwattr $C$DW$695, DW_AT_name("RPMSG_NS_DESTROY")
.dwattr $C$DW$695, DW_AT_const_value(0x01)
.dwattr $C$DW$695, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$695, DW_AT_decl_line(0x5e)
.dwattr $C$DW$695, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$326, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$T$326, DW_AT_decl_line(0x5c)
.dwattr $C$DW$T$326, DW_AT_decl_column(0x06)
.dwendtag $C$DW$T$326
$C$DW$T$278 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$278, DW_AT_name("pru_rpmsg_transport")
.dwattr $C$DW$T$278, DW_AT_byte_size(0x3c)
$C$DW$696 .dwtag DW_TAG_member
.dwattr $C$DW$696, DW_AT_type(*$C$DW$T$279)
.dwattr $C$DW$696, DW_AT_name("virtqueue0")
.dwattr $C$DW$696, DW_AT_TI_symbol_name("virtqueue0")
.dwattr $C$DW$696, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$696, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$696, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$696, DW_AT_decl_line(0x6f)
.dwattr $C$DW$696, DW_AT_decl_column(0x17)
$C$DW$697 .dwtag DW_TAG_member
.dwattr $C$DW$697, DW_AT_type(*$C$DW$T$279)
.dwattr $C$DW$697, DW_AT_name("virtqueue1")
.dwattr $C$DW$697, DW_AT_TI_symbol_name("virtqueue1")
.dwattr $C$DW$697, DW_AT_data_member_location[DW_OP_plus_uconst 0x1e]
.dwattr $C$DW$697, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$697, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$697, DW_AT_decl_line(0x70)
.dwattr $C$DW$697, DW_AT_decl_column(0x17)
.dwattr $C$DW$T$278, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_rpmsg.h")
.dwattr $C$DW$T$278, DW_AT_decl_line(0x6e)
.dwattr $C$DW$T$278, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$278
$C$DW$T$322 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$322, DW_AT_type(*$C$DW$T$278)
.dwattr $C$DW$T$322, DW_AT_address_class(0x20)
$C$DW$T$279 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$279, DW_AT_name("pru_virtqueue")
.dwattr $C$DW$T$279, DW_AT_byte_size(0x1e)
$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("id")
.dwattr $C$DW$698, DW_AT_TI_symbol_name("id")
.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/share/ti/pru-software-support-package/include/pru_virtqueue.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$32)
.dwattr $C$DW$699, DW_AT_name("to_arm_event")
.dwattr $C$DW$699, DW_AT_TI_symbol_name("to_arm_event")
.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/share/ti/pru-software-support-package/include/pru_virtqueue.h")
.dwattr $C$DW$699, DW_AT_decl_line(0x5f)
.dwattr $C$DW$699, DW_AT_decl_column(0x0b)
$C$DW$700 .dwtag DW_TAG_member
.dwattr $C$DW$700, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$700, DW_AT_name("from_arm_event")
.dwattr $C$DW$700, DW_AT_TI_symbol_name("from_arm_event")
.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/share/ti/pru-software-support-package/include/pru_virtqueue.h")
.dwattr $C$DW$700, DW_AT_decl_line(0x60)
.dwattr $C$DW$700, DW_AT_decl_column(0x0b)
$C$DW$701 .dwtag DW_TAG_member
.dwattr $C$DW$701, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$701, DW_AT_name("last_avail_idx")
.dwattr $C$DW$701, DW_AT_TI_symbol_name("last_avail_idx")
.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/share/ti/pru-software-support-package/include/pru_virtqueue.h")
.dwattr $C$DW$701, DW_AT_decl_line(0x61)
.dwattr $C$DW$701, DW_AT_decl_column(0x0c)
$C$DW$702 .dwtag DW_TAG_member
.dwattr $C$DW$702, DW_AT_type(*$C$DW$T$284)
.dwattr $C$DW$702, DW_AT_name("vring")
.dwattr $C$DW$702, DW_AT_TI_symbol_name("vring")
.dwattr $C$DW$702, DW_AT_data_member_location[DW_OP_plus_uconst 0xe]
.dwattr $C$DW$702, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$702, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtqueue.h")
.dwattr $C$DW$702, DW_AT_decl_line(0x62)
.dwattr $C$DW$702, DW_AT_decl_column(0x10)
.dwattr $C$DW$T$279, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtqueue.h")
.dwattr $C$DW$T$279, DW_AT_decl_line(0x5d)
.dwattr $C$DW$T$279, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$279
$C$DW$T$280 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$280, DW_AT_name("resource_table")
.dwattr $C$DW$T$280, DW_AT_byte_size(0x10)
$C$DW$703 .dwtag DW_TAG_member
.dwattr $C$DW$703, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$703, DW_AT_name("ver")
.dwattr $C$DW$703, DW_AT_TI_symbol_name("ver")
.dwattr $C$DW$703, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$703, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$703, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$703, DW_AT_decl_line(0x5c)
.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$32)
.dwattr $C$DW$704, DW_AT_name("num")
.dwattr $C$DW$704, DW_AT_TI_symbol_name("num")
.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/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$704, DW_AT_decl_line(0x5d)
.dwattr $C$DW$704, DW_AT_decl_column(0x0b)
$C$DW$705 .dwtag DW_TAG_member
.dwattr $C$DW$705, DW_AT_type(*$C$DW$T$34)
.dwattr $C$DW$705, DW_AT_name("reserved")
.dwattr $C$DW$705, DW_AT_TI_symbol_name("reserved")
.dwattr $C$DW$705, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$705, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$705, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$705, DW_AT_decl_line(0x5e)
.dwattr $C$DW$705, DW_AT_decl_column(0x0b)
.dwattr $C$DW$T$280, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$T$280, DW_AT_decl_line(0x5b)
.dwattr $C$DW$T$280, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$280
$C$DW$T$284 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$284, DW_AT_name("vring")
.dwattr $C$DW$T$284, DW_AT_byte_size(0x10)
$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("num")
.dwattr $C$DW$706, DW_AT_TI_symbol_name("num")
.dwattr $C$DW$706, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$706, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$706, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$706, DW_AT_decl_line(0x5e)
.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$281)
.dwattr $C$DW$707, DW_AT_name("desc")
.dwattr $C$DW$707, DW_AT_TI_symbol_name("desc")
.dwattr $C$DW$707, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$707, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$707, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$707, DW_AT_decl_line(0x60)
.dwattr $C$DW$707, DW_AT_decl_column(0x15)
$C$DW$708 .dwtag DW_TAG_member
.dwattr $C$DW$708, DW_AT_type(*$C$DW$T$282)
.dwattr $C$DW$708, DW_AT_name("avail")
.dwattr $C$DW$708, DW_AT_TI_symbol_name("avail")
.dwattr $C$DW$708, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$708, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$708, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$708, DW_AT_decl_line(0x62)
.dwattr $C$DW$708, DW_AT_decl_column(0x16)
$C$DW$709 .dwtag DW_TAG_member
.dwattr $C$DW$709, DW_AT_type(*$C$DW$T$283)
.dwattr $C$DW$709, DW_AT_name("used")
.dwattr $C$DW$709, DW_AT_TI_symbol_name("used")
.dwattr $C$DW$709, DW_AT_data_member_location[DW_OP_plus_uconst 0xc]
.dwattr $C$DW$709, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$709, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$709, DW_AT_decl_line(0x64)
.dwattr $C$DW$709, DW_AT_decl_column(0x15)
.dwattr $C$DW$T$284, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$T$284, DW_AT_decl_line(0x5d)
.dwattr $C$DW$T$284, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$284
$C$DW$T$286 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$286, DW_AT_name("vring_avail")
.dwattr $C$DW$T$286, DW_AT_byte_size(0x04)
$C$DW$710 .dwtag DW_TAG_member
.dwattr $C$DW$710, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$710, DW_AT_name("flags")
.dwattr $C$DW$710, DW_AT_TI_symbol_name("flags")
.dwattr $C$DW$710, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$710, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$710, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$710, DW_AT_decl_line(0x4a)
.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$107)
.dwattr $C$DW$711, DW_AT_name("idx")
.dwattr $C$DW$711, DW_AT_TI_symbol_name("idx")
.dwattr $C$DW$711, DW_AT_data_member_location[DW_OP_plus_uconst 0x2]
.dwattr $C$DW$711, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$711, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$711, DW_AT_decl_line(0x4b)
.dwattr $C$DW$711, DW_AT_decl_column(0x0b)
$C$DW$712 .dwtag DW_TAG_member
.dwattr $C$DW$712, DW_AT_type(*$C$DW$T$285)
.dwattr $C$DW$712, DW_AT_name("ring")
.dwattr $C$DW$712, DW_AT_TI_symbol_name("ring")
.dwattr $C$DW$712, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$712, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$712, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$712, DW_AT_decl_line(0x4c)
.dwattr $C$DW$712, DW_AT_decl_column(0x0b)
.dwattr $C$DW$T$286, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$T$286, DW_AT_decl_line(0x49)
.dwattr $C$DW$T$286, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$286
$C$DW$T$282 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$282, DW_AT_type(*$C$DW$T$286)
.dwattr $C$DW$T$282, DW_AT_address_class(0x20)
$C$DW$T$287 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$287, DW_AT_name("vring_desc")
.dwattr $C$DW$T$287, DW_AT_byte_size(0x10)
$C$DW$713 .dwtag DW_TAG_member
.dwattr $C$DW$713, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$713, DW_AT_name("addr")
.dwattr $C$DW$713, DW_AT_TI_symbol_name("addr")
.dwattr $C$DW$713, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$713, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$713, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$713, DW_AT_decl_line(0x40)
.dwattr $C$DW$713, DW_AT_decl_column(0x0b)
$C$DW$714 .dwtag DW_TAG_member
.dwattr $C$DW$714, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$714, DW_AT_name("len")
.dwattr $C$DW$714, DW_AT_TI_symbol_name("len")
.dwattr $C$DW$714, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$714, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$714, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$714, DW_AT_decl_line(0x42)
.dwattr $C$DW$714, DW_AT_decl_column(0x0b)
$C$DW$715 .dwtag DW_TAG_member
.dwattr $C$DW$715, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$715, DW_AT_name("flags")
.dwattr $C$DW$715, DW_AT_TI_symbol_name("flags")
.dwattr $C$DW$715, DW_AT_data_member_location[DW_OP_plus_uconst 0xc]
.dwattr $C$DW$715, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$715, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$715, DW_AT_decl_line(0x44)
.dwattr $C$DW$715, DW_AT_decl_column(0x0b)
$C$DW$716 .dwtag DW_TAG_member
.dwattr $C$DW$716, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$716, DW_AT_name("next")
.dwattr $C$DW$716, DW_AT_TI_symbol_name("next")
.dwattr $C$DW$716, DW_AT_data_member_location[DW_OP_plus_uconst 0xe]
.dwattr $C$DW$716, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$716, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$716, DW_AT_decl_line(0x46)
.dwattr $C$DW$716, DW_AT_decl_column(0x0b)
.dwattr $C$DW$T$287, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$T$287, DW_AT_decl_line(0x3e)
.dwattr $C$DW$T$287, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$287
$C$DW$T$281 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$281, DW_AT_type(*$C$DW$T$287)
.dwattr $C$DW$T$281, DW_AT_address_class(0x20)
$C$DW$T$289 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$289, DW_AT_name("vring_used")
.dwattr $C$DW$T$289, DW_AT_byte_size(0x04)
$C$DW$717 .dwtag DW_TAG_member
.dwattr $C$DW$717, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$717, DW_AT_name("flags")
.dwattr $C$DW$717, DW_AT_TI_symbol_name("flags")
.dwattr $C$DW$717, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$717, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$717, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$717, DW_AT_decl_line(0x58)
.dwattr $C$DW$717, DW_AT_decl_column(0x0b)
$C$DW$718 .dwtag DW_TAG_member
.dwattr $C$DW$718, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$718, DW_AT_name("idx")
.dwattr $C$DW$718, DW_AT_TI_symbol_name("idx")
.dwattr $C$DW$718, DW_AT_data_member_location[DW_OP_plus_uconst 0x2]
.dwattr $C$DW$718, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$718, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$718, DW_AT_decl_line(0x59)
.dwattr $C$DW$718, DW_AT_decl_column(0x0b)
$C$DW$719 .dwtag DW_TAG_member
.dwattr $C$DW$719, DW_AT_type(*$C$DW$T$288)
.dwattr $C$DW$719, DW_AT_name("ring")
.dwattr $C$DW$719, DW_AT_TI_symbol_name("ring")
.dwattr $C$DW$719, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$719, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$719, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$719, DW_AT_decl_line(0x5a)
.dwattr $C$DW$719, DW_AT_decl_column(0x19)
.dwattr $C$DW$T$289, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$T$289, DW_AT_decl_line(0x57)
.dwattr $C$DW$T$289, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$289
$C$DW$T$283 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$283, DW_AT_type(*$C$DW$T$289)
.dwattr $C$DW$T$283, DW_AT_address_class(0x20)
$C$DW$T$290 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$290, DW_AT_name("vring_used_elem")
.dwattr $C$DW$T$290, DW_AT_byte_size(0x08)
$C$DW$720 .dwtag DW_TAG_member
.dwattr $C$DW$720, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$720, DW_AT_name("id")
.dwattr $C$DW$720, DW_AT_TI_symbol_name("id")
.dwattr $C$DW$720, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$720, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$720, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$720, DW_AT_decl_line(0x52)
.dwattr $C$DW$720, DW_AT_decl_column(0x0b)
$C$DW$721 .dwtag DW_TAG_member
.dwattr $C$DW$721, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$721, DW_AT_name("len")
.dwattr $C$DW$721, DW_AT_TI_symbol_name("len")
.dwattr $C$DW$721, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$721, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$721, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$721, DW_AT_decl_line(0x54)
.dwattr $C$DW$721, DW_AT_decl_column(0x0b)
.dwattr $C$DW$T$290, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/pru_virtio_ring.h")
.dwattr $C$DW$T$290, DW_AT_decl_line(0x50)
.dwattr $C$DW$T$290, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$290
$C$DW$T$288 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$288, DW_AT_type(*$C$DW$T$290)
.dwattr $C$DW$T$288, DW_AT_language(DW_LANG_C)
$C$DW$722 .dwtag DW_TAG_subrange_type
.dwendtag $C$DW$T$288
.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 same_value, 8
.dwcfi same_value, 9
.dwcfi same_value, 10
.dwcfi same_value, 11
.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
.dwendentry
;***************************************************************
;* DWARF REGISTER MAP *
;***************************************************************
$C$DW$723 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$723, DW_AT_name("R0_b0")
.dwattr $C$DW$723, DW_AT_location[DW_OP_reg0]
$C$DW$724 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$724, DW_AT_name("R0_b1")
.dwattr $C$DW$724, DW_AT_location[DW_OP_reg1]
$C$DW$725 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$725, DW_AT_name("R0_b2")
.dwattr $C$DW$725, DW_AT_location[DW_OP_reg2]
$C$DW$726 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$726, DW_AT_name("R0_b3")
.dwattr $C$DW$726, DW_AT_location[DW_OP_reg3]
$C$DW$727 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$727, DW_AT_name("R1_b0")
.dwattr $C$DW$727, DW_AT_location[DW_OP_reg4]
$C$DW$728 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$728, DW_AT_name("R1_b1")
.dwattr $C$DW$728, DW_AT_location[DW_OP_reg5]
$C$DW$729 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$729, DW_AT_name("R1_b2")
.dwattr $C$DW$729, DW_AT_location[DW_OP_reg6]
$C$DW$730 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$730, DW_AT_name("R1_b3")
.dwattr $C$DW$730, DW_AT_location[DW_OP_reg7]
$C$DW$731 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$731, DW_AT_name("R2_b0")
.dwattr $C$DW$731, DW_AT_location[DW_OP_reg8]
$C$DW$732 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$732, DW_AT_name("R2_b1")
.dwattr $C$DW$732, DW_AT_location[DW_OP_reg9]
$C$DW$733 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$733, DW_AT_name("R2_b2")
.dwattr $C$DW$733, DW_AT_location[DW_OP_reg10]
$C$DW$734 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$734, DW_AT_name("R2_b3")
.dwattr $C$DW$734, DW_AT_location[DW_OP_reg11]
$C$DW$735 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$735, DW_AT_name("R3_b0")
.dwattr $C$DW$735, DW_AT_location[DW_OP_reg12]
$C$DW$736 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$736, DW_AT_name("R3_b1")
.dwattr $C$DW$736, DW_AT_location[DW_OP_reg13]
$C$DW$737 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$737, DW_AT_name("R3_b2")
.dwattr $C$DW$737, DW_AT_location[DW_OP_reg14]
$C$DW$738 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$738, DW_AT_name("R3_b3")
.dwattr $C$DW$738, DW_AT_location[DW_OP_reg15]
$C$DW$739 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$739, DW_AT_name("R4_b0")
.dwattr $C$DW$739, DW_AT_location[DW_OP_reg16]
$C$DW$740 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$740, DW_AT_name("R4_b1")
.dwattr $C$DW$740, DW_AT_location[DW_OP_reg17]
$C$DW$741 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$741, DW_AT_name("R4_b2")
.dwattr $C$DW$741, DW_AT_location[DW_OP_reg18]
$C$DW$742 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$742, DW_AT_name("R4_b3")
.dwattr $C$DW$742, DW_AT_location[DW_OP_reg19]
$C$DW$743 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$743, DW_AT_name("R5_b0")
.dwattr $C$DW$743, DW_AT_location[DW_OP_reg20]
$C$DW$744 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$744, DW_AT_name("R5_b1")
.dwattr $C$DW$744, DW_AT_location[DW_OP_reg21]
$C$DW$745 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$745, DW_AT_name("R5_b2")
.dwattr $C$DW$745, DW_AT_location[DW_OP_reg22]
$C$DW$746 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$746, DW_AT_name("R5_b3")
.dwattr $C$DW$746, DW_AT_location[DW_OP_reg23]
$C$DW$747 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$747, DW_AT_name("R6_b0")
.dwattr $C$DW$747, DW_AT_location[DW_OP_reg24]
$C$DW$748 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$748, DW_AT_name("R6_b1")
.dwattr $C$DW$748, DW_AT_location[DW_OP_reg25]
$C$DW$749 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$749, DW_AT_name("R6_b2")
.dwattr $C$DW$749, DW_AT_location[DW_OP_reg26]
$C$DW$750 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$750, DW_AT_name("R6_b3")
.dwattr $C$DW$750, DW_AT_location[DW_OP_reg27]
$C$DW$751 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$751, DW_AT_name("R7_b0")
.dwattr $C$DW$751, DW_AT_location[DW_OP_reg28]
$C$DW$752 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$752, DW_AT_name("R7_b1")
.dwattr $C$DW$752, DW_AT_location[DW_OP_reg29]
$C$DW$753 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$753, DW_AT_name("R7_b2")
.dwattr $C$DW$753, DW_AT_location[DW_OP_reg30]
$C$DW$754 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$754, DW_AT_name("R7_b3")
.dwattr $C$DW$754, DW_AT_location[DW_OP_reg31]
$C$DW$755 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$755, DW_AT_name("R8_b0")
.dwattr $C$DW$755, DW_AT_location[DW_OP_regx 0x20]
$C$DW$756 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$756, DW_AT_name("R8_b1")
.dwattr $C$DW$756, DW_AT_location[DW_OP_regx 0x21]
$C$DW$757 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$757, DW_AT_name("R8_b2")
.dwattr $C$DW$757, DW_AT_location[DW_OP_regx 0x22]
$C$DW$758 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$758, DW_AT_name("R8_b3")
.dwattr $C$DW$758, DW_AT_location[DW_OP_regx 0x23]
$C$DW$759 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$759, DW_AT_name("R9_b0")
.dwattr $C$DW$759, DW_AT_location[DW_OP_regx 0x24]
$C$DW$760 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$760, DW_AT_name("R9_b1")
.dwattr $C$DW$760, DW_AT_location[DW_OP_regx 0x25]
$C$DW$761 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$761, DW_AT_name("R9_b2")
.dwattr $C$DW$761, DW_AT_location[DW_OP_regx 0x26]
$C$DW$762 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$762, DW_AT_name("R9_b3")
.dwattr $C$DW$762, DW_AT_location[DW_OP_regx 0x27]
$C$DW$763 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$763, DW_AT_name("R10_b0")
.dwattr $C$DW$763, DW_AT_location[DW_OP_regx 0x28]
$C$DW$764 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$764, DW_AT_name("R10_b1")
.dwattr $C$DW$764, DW_AT_location[DW_OP_regx 0x29]
$C$DW$765 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$765, DW_AT_name("R10_b2")
.dwattr $C$DW$765, DW_AT_location[DW_OP_regx 0x2a]
$C$DW$766 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$766, DW_AT_name("R10_b3")
.dwattr $C$DW$766, DW_AT_location[DW_OP_regx 0x2b]
$C$DW$767 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$767, DW_AT_name("R11_b0")
.dwattr $C$DW$767, DW_AT_location[DW_OP_regx 0x2c]
$C$DW$768 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$768, DW_AT_name("R11_b1")
.dwattr $C$DW$768, DW_AT_location[DW_OP_regx 0x2d]
$C$DW$769 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$769, DW_AT_name("R11_b2")
.dwattr $C$DW$769, DW_AT_location[DW_OP_regx 0x2e]
$C$DW$770 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$770, DW_AT_name("R11_b3")
.dwattr $C$DW$770, DW_AT_location[DW_OP_regx 0x2f]
$C$DW$771 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$771, DW_AT_name("R12_b0")
.dwattr $C$DW$771, DW_AT_location[DW_OP_regx 0x30]
$C$DW$772 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$772, DW_AT_name("R12_b1")
.dwattr $C$DW$772, DW_AT_location[DW_OP_regx 0x31]
$C$DW$773 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$773, DW_AT_name("R12_b2")
.dwattr $C$DW$773, DW_AT_location[DW_OP_regx 0x32]
$C$DW$774 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$774, DW_AT_name("R12_b3")
.dwattr $C$DW$774, DW_AT_location[DW_OP_regx 0x33]
$C$DW$775 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$775, DW_AT_name("R13_b0")
.dwattr $C$DW$775, DW_AT_location[DW_OP_regx 0x34]
$C$DW$776 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$776, DW_AT_name("R13_b1")
.dwattr $C$DW$776, DW_AT_location[DW_OP_regx 0x35]
$C$DW$777 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$777, DW_AT_name("R13_b2")
.dwattr $C$DW$777, DW_AT_location[DW_OP_regx 0x36]
$C$DW$778 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$778, DW_AT_name("R13_b3")
.dwattr $C$DW$778, DW_AT_location[DW_OP_regx 0x37]
$C$DW$779 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$779, DW_AT_name("R14_b0")
.dwattr $C$DW$779, DW_AT_location[DW_OP_regx 0x38]
$C$DW$780 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$780, DW_AT_name("R14_b1")
.dwattr $C$DW$780, DW_AT_location[DW_OP_regx 0x39]
$C$DW$781 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$781, DW_AT_name("R14_b2")
.dwattr $C$DW$781, DW_AT_location[DW_OP_regx 0x3a]
$C$DW$782 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$782, DW_AT_name("R14_b3")
.dwattr $C$DW$782, DW_AT_location[DW_OP_regx 0x3b]
$C$DW$783 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$783, DW_AT_name("R15_b0")
.dwattr $C$DW$783, DW_AT_location[DW_OP_regx 0x3c]
$C$DW$784 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$784, DW_AT_name("R15_b1")
.dwattr $C$DW$784, DW_AT_location[DW_OP_regx 0x3d]
$C$DW$785 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$785, DW_AT_name("R15_b2")
.dwattr $C$DW$785, DW_AT_location[DW_OP_regx 0x3e]
$C$DW$786 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$786, DW_AT_name("R15_b3")
.dwattr $C$DW$786, DW_AT_location[DW_OP_regx 0x3f]
$C$DW$787 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$787, DW_AT_name("R16_b0")
.dwattr $C$DW$787, DW_AT_location[DW_OP_regx 0x40]
$C$DW$788 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$788, DW_AT_name("R16_b1")
.dwattr $C$DW$788, DW_AT_location[DW_OP_regx 0x41]
$C$DW$789 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$789, DW_AT_name("R16_b2")
.dwattr $C$DW$789, DW_AT_location[DW_OP_regx 0x42]
$C$DW$790 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$790, DW_AT_name("R16_b3")
.dwattr $C$DW$790, DW_AT_location[DW_OP_regx 0x43]
$C$DW$791 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$791, DW_AT_name("R17_b0")
.dwattr $C$DW$791, DW_AT_location[DW_OP_regx 0x44]
$C$DW$792 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$792, DW_AT_name("R17_b1")
.dwattr $C$DW$792, DW_AT_location[DW_OP_regx 0x45]
$C$DW$793 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$793, DW_AT_name("R17_b2")
.dwattr $C$DW$793, DW_AT_location[DW_OP_regx 0x46]
$C$DW$794 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$794, DW_AT_name("R17_b3")
.dwattr $C$DW$794, DW_AT_location[DW_OP_regx 0x47]
$C$DW$795 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$795, DW_AT_name("R18_b0")
.dwattr $C$DW$795, DW_AT_location[DW_OP_regx 0x48]
$C$DW$796 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$796, DW_AT_name("R18_b1")
.dwattr $C$DW$796, DW_AT_location[DW_OP_regx 0x49]
$C$DW$797 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$797, DW_AT_name("R18_b2")
.dwattr $C$DW$797, DW_AT_location[DW_OP_regx 0x4a]
$C$DW$798 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$798, DW_AT_name("R18_b3")
.dwattr $C$DW$798, DW_AT_location[DW_OP_regx 0x4b]
$C$DW$799 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$799, DW_AT_name("R19_b0")
.dwattr $C$DW$799, DW_AT_location[DW_OP_regx 0x4c]
$C$DW$800 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$800, DW_AT_name("R19_b1")
.dwattr $C$DW$800, DW_AT_location[DW_OP_regx 0x4d]
$C$DW$801 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$801, DW_AT_name("R19_b2")
.dwattr $C$DW$801, DW_AT_location[DW_OP_regx 0x4e]
$C$DW$802 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$802, DW_AT_name("R19_b3")
.dwattr $C$DW$802, DW_AT_location[DW_OP_regx 0x4f]
$C$DW$803 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$803, DW_AT_name("R20_b0")
.dwattr $C$DW$803, DW_AT_location[DW_OP_regx 0x50]
$C$DW$804 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$804, DW_AT_name("R20_b1")
.dwattr $C$DW$804, DW_AT_location[DW_OP_regx 0x51]
$C$DW$805 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$805, DW_AT_name("R20_b2")
.dwattr $C$DW$805, DW_AT_location[DW_OP_regx 0x52]
$C$DW$806 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$806, DW_AT_name("R20_b3")
.dwattr $C$DW$806, DW_AT_location[DW_OP_regx 0x53]
$C$DW$807 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$807, DW_AT_name("R21_b0")
.dwattr $C$DW$807, DW_AT_location[DW_OP_regx 0x54]
$C$DW$808 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$808, DW_AT_name("R21_b1")
.dwattr $C$DW$808, DW_AT_location[DW_OP_regx 0x55]
$C$DW$809 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$809, DW_AT_name("R21_b2")
.dwattr $C$DW$809, DW_AT_location[DW_OP_regx 0x56]
$C$DW$810 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$810, DW_AT_name("R21_b3")
.dwattr $C$DW$810, DW_AT_location[DW_OP_regx 0x57]
$C$DW$811 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$811, DW_AT_name("R22_b0")
.dwattr $C$DW$811, DW_AT_location[DW_OP_regx 0x58]
$C$DW$812 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$812, DW_AT_name("R22_b1")
.dwattr $C$DW$812, DW_AT_location[DW_OP_regx 0x59]
$C$DW$813 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$813, DW_AT_name("R22_b2")
.dwattr $C$DW$813, DW_AT_location[DW_OP_regx 0x5a]
$C$DW$814 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$814, DW_AT_name("R22_b3")
.dwattr $C$DW$814, DW_AT_location[DW_OP_regx 0x5b]
$C$DW$815 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$815, DW_AT_name("R23_b0")
.dwattr $C$DW$815, DW_AT_location[DW_OP_regx 0x5c]
$C$DW$816 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$816, DW_AT_name("R23_b1")
.dwattr $C$DW$816, DW_AT_location[DW_OP_regx 0x5d]
$C$DW$817 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$817, DW_AT_name("R23_b2")
.dwattr $C$DW$817, DW_AT_location[DW_OP_regx 0x5e]
$C$DW$818 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$818, DW_AT_name("R23_b3")
.dwattr $C$DW$818, DW_AT_location[DW_OP_regx 0x5f]
$C$DW$819 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$819, DW_AT_name("R24_b0")
.dwattr $C$DW$819, DW_AT_location[DW_OP_regx 0x60]
$C$DW$820 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$820, DW_AT_name("R24_b1")
.dwattr $C$DW$820, DW_AT_location[DW_OP_regx 0x61]
$C$DW$821 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$821, DW_AT_name("R24_b2")
.dwattr $C$DW$821, DW_AT_location[DW_OP_regx 0x62]
$C$DW$822 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$822, DW_AT_name("R24_b3")
.dwattr $C$DW$822, DW_AT_location[DW_OP_regx 0x63]
$C$DW$823 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$823, DW_AT_name("R25_b0")
.dwattr $C$DW$823, DW_AT_location[DW_OP_regx 0x64]
$C$DW$824 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$824, DW_AT_name("R25_b1")
.dwattr $C$DW$824, DW_AT_location[DW_OP_regx 0x65]
$C$DW$825 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$825, DW_AT_name("R25_b2")
.dwattr $C$DW$825, DW_AT_location[DW_OP_regx 0x66]
$C$DW$826 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$826, DW_AT_name("R25_b3")
.dwattr $C$DW$826, DW_AT_location[DW_OP_regx 0x67]
$C$DW$827 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$827, DW_AT_name("R26_b0")
.dwattr $C$DW$827, DW_AT_location[DW_OP_regx 0x68]
$C$DW$828 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$828, DW_AT_name("R26_b1")
.dwattr $C$DW$828, DW_AT_location[DW_OP_regx 0x69]
$C$DW$829 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$829, DW_AT_name("R26_b2")
.dwattr $C$DW$829, DW_AT_location[DW_OP_regx 0x6a]
$C$DW$830 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$830, DW_AT_name("R26_b3")
.dwattr $C$DW$830, DW_AT_location[DW_OP_regx 0x6b]
$C$DW$831 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$831, DW_AT_name("R27_b0")
.dwattr $C$DW$831, DW_AT_location[DW_OP_regx 0x6c]
$C$DW$832 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$832, DW_AT_name("R27_b1")
.dwattr $C$DW$832, DW_AT_location[DW_OP_regx 0x6d]
$C$DW$833 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$833, DW_AT_name("R27_b2")
.dwattr $C$DW$833, DW_AT_location[DW_OP_regx 0x6e]
$C$DW$834 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$834, DW_AT_name("R27_b3")
.dwattr $C$DW$834, DW_AT_location[DW_OP_regx 0x6f]
$C$DW$835 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$835, DW_AT_name("R28_b0")
.dwattr $C$DW$835, DW_AT_location[DW_OP_regx 0x70]
$C$DW$836 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$836, DW_AT_name("R28_b1")
.dwattr $C$DW$836, DW_AT_location[DW_OP_regx 0x71]
$C$DW$837 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$837, DW_AT_name("R28_b2")
.dwattr $C$DW$837, DW_AT_location[DW_OP_regx 0x72]
$C$DW$838 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$838, DW_AT_name("R28_b3")
.dwattr $C$DW$838, DW_AT_location[DW_OP_regx 0x73]
$C$DW$839 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$839, DW_AT_name("R29_b0")
.dwattr $C$DW$839, DW_AT_location[DW_OP_regx 0x74]
$C$DW$840 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$840, DW_AT_name("R29_b1")
.dwattr $C$DW$840, DW_AT_location[DW_OP_regx 0x75]
$C$DW$841 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$841, DW_AT_name("R29_b2")
.dwattr $C$DW$841, DW_AT_location[DW_OP_regx 0x76]
$C$DW$842 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$842, DW_AT_name("R29_b3")
.dwattr $C$DW$842, DW_AT_location[DW_OP_regx 0x77]
$C$DW$843 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$843, DW_AT_name("R30_b0")
.dwattr $C$DW$843, DW_AT_location[DW_OP_regx 0x78]
$C$DW$844 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$844, DW_AT_name("R30_b1")
.dwattr $C$DW$844, DW_AT_location[DW_OP_regx 0x79]
$C$DW$845 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$845, DW_AT_name("R30_b2")
.dwattr $C$DW$845, DW_AT_location[DW_OP_regx 0x7a]
$C$DW$846 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$846, DW_AT_name("R30_b3")
.dwattr $C$DW$846, DW_AT_location[DW_OP_regx 0x7b]
$C$DW$847 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$847, DW_AT_name("R31_b0")
.dwattr $C$DW$847, DW_AT_location[DW_OP_regx 0x7c]
$C$DW$848 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$848, DW_AT_name("R31_b1")
.dwattr $C$DW$848, DW_AT_location[DW_OP_regx 0x7d]
$C$DW$849 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$849, DW_AT_name("R31_b2")
.dwattr $C$DW$849, DW_AT_location[DW_OP_regx 0x7e]
$C$DW$850 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$850, DW_AT_name("R31_b3")
.dwattr $C$DW$850, DW_AT_location[DW_OP_regx 0x7f]
.dwendtag $C$DW$CU
| 45.176393 | 146 | 0.730719 |
3fb353c257bed3cccbefb7efba542542ba375c03 | 80 | asm | Assembly | src/main/fragment/mos6502-common/_deref_(qbuc1_derefidx_vbuyy)=pbuc2_derefidx_(pbuc3_derefidx_vbuxx).asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | 2 | 2022-03-01T02:21:14.000Z | 2022-03-01T04:33:35.000Z | src/main/fragment/mos6502-common/_deref_(qbuc1_derefidx_vbuyy)=pbuc2_derefidx_(pbuc3_derefidx_vbuxx).asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | src/main/fragment/mos6502-common/_deref_(qbuc1_derefidx_vbuyy)=pbuc2_derefidx_(pbuc3_derefidx_vbuxx).asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | lda {c1},y
sta $fe
lda {c1}+1,y
sta $ff
ldy {c3},x
lda {c2},y
ldy #0
sta ($fe),y | 10 | 12 | 0.5625 |
aa80acc1068e01a2dce520b1164de75ed0b91272 | 86 | asm | Assembly | public/wintab/wintabx/datapeek.asm | DannyParker0001/Kisak-Strike | 99ed85927336fe3aff2efd9b9382b2b32eb1d05d | [
"Unlicense"
] | 252 | 2020-12-16T15:34:43.000Z | 2022-03-31T23:21:37.000Z | cstrike15_src/public/wintab/wintabx/datapeek.asm | bahadiraraz/Counter-Strike-Global-Offensive | 9a0534100cb98ffa1cf0c32e138f0e7971e910d3 | [
"MIT"
] | 23 | 2020-12-20T18:02:54.000Z | 2022-03-28T16:58:32.000Z | cstrike15_src/public/wintab/wintabx/datapeek.asm | bahadiraraz/Counter-Strike-Global-Offensive | 9a0534100cb98ffa1cf0c32e138f0e7971e910d3 | [
"MIT"
] | 42 | 2020-12-19T04:32:33.000Z | 2022-03-30T06:00:28.000Z | include xlibproc.inc
include Wintab.inc
PROC_TEMPLATE WTDataPeek, 8, Wintab, -, 82
| 21.5 | 43 | 0.767442 |
ab1fc7e38c2f3104a7d4bdc133be59a46eb0707c | 448 | asm | Assembly | oeis/332/A332154.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/332/A332154.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/332/A332154.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A332154: a(n) = 5*(10^(2*n+1)-1)/9 - 10^n.
; Submitted by Jamie Morken(s3.)
; 4,545,55455,5554555,555545555,55555455555,5555554555555,555555545555555,55555555455555555,5555555554555555555,555555555545555555555,55555555555455555555555,5555555555554555555555555,555555555555545555555555555,55555555555555455555555555555,5555555555555554555555555555555
add $0,1
mov $1,10
pow $1,$0
mul $1,5
sub $1,4
bin $1,2
div $1,45
mov $0,$1
mul $0,3
div $0,15
| 29.866667 | 273 | 0.787946 |
c1369fcdfec285ecc350d2e0fd0d5c9d872de970 | 1,849 | asm | Assembly | programs/oeis/183/A183984.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/183/A183984.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/183/A183984.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A183984: 1/4 the number of (n+1) X 8 binary arrays with all 2 X 2 subblock sums the same.
; 81,83,86,92,102,122,158,230,366,638,1166,2222,4302,8462,16718,33230,66126,131918,263246,525902,1050702,2100302,4198478,8394830,16785486,33566798,67125326,134242382,268468302,536920142,1073807438,2147582030,4295098446,8590131278,17180131406,34360131662,68720001102,137439739982,274878955598,549757386830,1099513725006,2199026401358,4398050705486,8796099313742,17592194433102,35184384671822,70368760954958,140737513521230,281475010265166,562950003753038,1125899973951566,2251799914348622,4503599761588302,9007199456067662,18014398777917518,36028797421617230,72057594574798926,144115188881162318,288230377225453646,576460753914036302,1152921506754330702,2305843012434919502,4611686022722355278,9223372043297226830,18446744082299486286,36893488160304005198,73786976312018075726,147573952615446216782,295147905213712564302,590295810410245259342,1180591620786130780238,2361183241537901822030,4722366483007084167246,9444732965945448857678,18889465931753458761806,37778931863369478570062,75557863726464079233102,151115727452653280559182,302231454904756805304398,604462909808963854794830,1208925819616828197961806,2417851639232556884295758,4835703278462914745335886,9671406556923630467416142,19342813113842862888321102,38685626227681327730131022,77371252455353859367239758,154742504910698922641457230,309485009821380253096869966,618970019642742914007695438,1237940039285450643643301966,2475880078570866102914515022,4951760157141661837084852302,9903520314283253305425526862,19807040628566365873362698318,39614081257132591009237041230,79228162514264900543497371726,158456325028529519612018032718,316912650057058476274082644046,633825300114116389598211866702
mov $1,2
mov $2,$0
lpb $0
mul $1,2
add $1,$2
sub $1,$0
sub $0,1
trn $2,2
lpe
add $1,79
mov $0,$1
| 123.266667 | 1,648 | 0.900487 |
147d3129cfcab062927839fdf48e05100bc3a513 | 106 | asm | Assembly | libsrc/_DEVELOPMENT/math/float/math48/lm/c/sdcc_ix/scalbln.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/math/float/math48/lm/c/sdcc_ix/scalbln.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/math/float/math48/lm/c/sdcc_ix/scalbln.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null |
SECTION code_fp_math48
PUBLIC _scalbln
EXTERN cm48_sdccix_scalbln
defc _scalbln = cm48_sdccix_scalbln
| 11.777778 | 35 | 0.858491 |
cba43619190839af4ca4b4a009b6d08d9df55267 | 2,402 | asm | Assembly | src/m2-flyover.asm | John-Enigma/Mother2GbaTranslation | 14f8e9ba0972c112a80403480bccfc06199eefaf | [
"MIT"
] | null | null | null | src/m2-flyover.asm | John-Enigma/Mother2GbaTranslation | 14f8e9ba0972c112a80403480bccfc06199eefaf | [
"MIT"
] | null | null | null | src/m2-flyover.asm | John-Enigma/Mother2GbaTranslation | 14f8e9ba0972c112a80403480bccfc06199eefaf | [
"MIT"
] | null | null | null | //==============================================================================
//Writes the bigfont letters to RAM
largevwf:
push {r5,lr}
mov r0,r2
ldrb r1,[r4]
add r4,r4,1
ldr r2,=m2_widths_big
cmp r1,#0xFC //0xFC to 0xFF are used by us to print the party's names
bge @@name
ldrb r2,[r2,r1]
bl 0x80B3280 //Print the letter to RAM
@@end:
pop {r5,pc}
@@name:
mov r5,#0xFC
sub r1,r1,r5
ldr r3,=#m2_ness_name //Base name address
lsl r5,r1,#3
sub r5,r5,r1 //Get index * 7 to get the name's address
add r3,r3,r5
mov r5,r2 //r5 now has m2_widths_big
mov r1,#0
@@name_loading_cycle:
ldrb r2,[r3,#1]
cmp r2,#0xFF //Does the name end? (00 FF)
beq @@end
push {r0-r3}
ldrb r2,[r3,#0] //If not, render the letter (So real letter - 80)
mov r1,#80
sub r1,r2,r1
ldrb r2,[r5,r1]
bl 0x80B3280 //Print the letter to RAM
pop {r0-r3}
add r3,#1
add r1,#1
cmp r1,#5 //Maximum name length, has it been reached? If not, continue printing
bne @@name_loading_cycle
b @@end
.pool
//==============================================================================
//Weld the odd-numbered flyover letters
flyoverweld:
push {r5-r7,lr}
add r1,r1,r3
ldrb r0,[r1] //Load the width of the letter that has to be weld
ldr r5,=#0x30051D4
ldr r5,[r5]
mov r6,#0x90
lsl r6,r6,#6
add r5,r5,r6
ldrh r5,[r5] //Load the current X in pixels
mov r6,#1
and r5,r6
cmp r5,#1 //Is it even?
bne @@even
ldrb r5,[r4] //If not, load the first nibble of the current width that is in r4
mov r6,#0xF
and r5,r6
lsl r6,r0,#4
orr r5,r6 //Add 0xF0 to it
mov r6,#0xFF
and r5,r6 //Make sure it stays in one byte
strb r5,[r4] //Store it
mov r7,r4
mov r6,#3
and r7,r6
cmp r7,#3 //Do r4's bits end with a 3?
bne @@old
mov r7,r4 //If they do, make r7 = r4 + 0x1C
add r7,#0x1C
b @@ok
@@old: //If they do not, make r7 = r4
mov r7,r4
@@ok:
ldrb r5,[r7,#1]
mov r6,#0xF0
and r5,r6 //Get the second nibble of what is in r7 + 1
lsr r6,r0,#4
orr r5,r6 //Make the first nibble 0xF
strb r5,[r7,#1] //Store it back in r7 + 1
b @@end
@@even: //If it is, store the width in r4
strb r0,[r4]
@@end:
pop {r5-r7,pc}
.pool
//.org 0x80c4c0c
//.byte 0x20,0x1C,0x51,0x46,0x2A,0x22
//0x80B3256 | 22.87619 | 83 | 0.55204 |
8c1c3c3f308a44414599c31f23a405b5c796cfc9 | 5,528 | asm | Assembly | Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xca.log_21829_668.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xca.log_21829_668.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xca.log_21829_668.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x5fbb, %rbx
nop
nop
nop
nop
sub %rdx, %rdx
and $0xffffffffffffffc0, %rbx
vmovaps (%rbx), %ymm3
vextracti128 $0, %ymm3, %xmm3
vpextrq $0, %xmm3, %r13
nop
nop
nop
inc %r9
lea addresses_UC_ht+0x1893b, %rsi
lea addresses_WT_ht+0x213b, %rdi
nop
nop
nop
nop
cmp $40274, %rax
mov $18, %rcx
rep movsw
and $4565, %rsi
lea addresses_UC_ht+0x9d3b, %rsi
lea addresses_A_ht+0x18c01, %rdi
nop
sub %rbx, %rbx
mov $37, %rcx
rep movsb
nop
nop
nop
nop
nop
and %rsi, %rsi
lea addresses_WT_ht+0x1913b, %rsi
lea addresses_WC_ht+0x713b, %rdi
nop
and %rdx, %rdx
mov $71, %rcx
rep movsl
nop
nop
nop
nop
nop
dec %rsi
lea addresses_D_ht+0x269b, %rsi
lea addresses_WC_ht+0x1037b, %rdi
nop
nop
nop
xor %r9, %r9
mov $36, %rcx
rep movsq
cmp %rax, %rax
lea addresses_D_ht+0x6d81, %rdx
nop
nop
nop
nop
nop
dec %rsi
mov (%rdx), %r9
sub %rdi, %rdi
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rbx
pop %rax
pop %r9
pop %r13
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r12
push %r15
push %r9
push %rdi
push %rsi
// Faulty Load
lea addresses_US+0xe13b, %rdi
nop
nop
and %r12, %r12
mov (%rdi), %r11w
lea oracles, %rsi
and $0xff, %r11
shlq $12, %r11
mov (%rsi,%r11,1), %r11
pop %rsi
pop %rdi
pop %r9
pop %r15
pop %r12
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'size': 4, 'NT': False, 'type': 'addresses_US', 'same': False, 'AVXalign': False, 'congruent': 0}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'size': 2, 'NT': False, 'type': 'addresses_US', 'same': True, 'AVXalign': False, 'congruent': 0}}
<gen_prepare_buffer>
{'OP': 'LOAD', 'src': {'size': 32, 'NT': False, 'type': 'addresses_normal_ht', 'same': False, 'AVXalign': True, 'congruent': 7}}
{'OP': 'REPM', 'src': {'same': False, 'type': 'addresses_UC_ht', 'congruent': 8}, 'dst': {'same': False, 'type': 'addresses_WT_ht', 'congruent': 11}}
{'OP': 'REPM', 'src': {'same': True, 'type': 'addresses_UC_ht', 'congruent': 10}, 'dst': {'same': False, 'type': 'addresses_A_ht', 'congruent': 0}}
{'OP': 'REPM', 'src': {'same': False, 'type': 'addresses_WT_ht', 'congruent': 11}, 'dst': {'same': False, 'type': 'addresses_WC_ht', 'congruent': 10}}
{'OP': 'REPM', 'src': {'same': False, 'type': 'addresses_D_ht', 'congruent': 3}, 'dst': {'same': False, 'type': 'addresses_WC_ht', 'congruent': 6}}
{'OP': 'LOAD', 'src': {'size': 8, 'NT': False, 'type': 'addresses_D_ht', 'same': False, 'AVXalign': True, 'congruent': 1}}
{'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
*/
| 42.523077 | 2,999 | 0.662446 |
a7f90b68cb9d5e3ecfdcf546a489a0af3d04962f | 869 | asm | Assembly | oeis/301/A301879.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/301/A301879.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/301/A301879.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A301879: Number of nX3 0..1 arrays with every element equal to 0, 1 or 3 horizontally or antidiagonally adjacent elements, with upper left element zero.
; Submitted by Jon Maiga
; 3,10,29,95,289,917,2841,8921,27801,87009,271657,849313,2653273,8292465,25910729,80972065,253021369,790675217,2470747561,7720841601,24126677401,75393222129,235594969737,736207657313,2300563919993,7188999803345,22464798637929,70199925297985,219366716732249,685495865796017,2142096016785481,6693804645026081,20917372477331001,65364392381058449,204256236535096617,638277335776109313,1994543539748805913,6232720027475655025,19476535937520709129,60861943181872251105,190186598861947815929
lpb $0
sub $0,1
mov $2,$1
add $1,$3
add $1,1
mul $1,2
add $1,12
sub $4,2
sub $3,$4
add $3,$5
mov $4,$2
sub $5,$3
add $5,$2
mov $3,$5
add $4,$1
lpe
mov $0,$4
div $0,2
add $0,3
| 36.208333 | 484 | 0.777906 |
6963bc75503784d472f1e15e9d8a1e4572ccc6a9 | 727 | asm | Assembly | programs/oeis/139/A139413.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/139/A139413.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/139/A139413.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A139413: Triangle read by rows: row n gives the numbers A010888(n*k) for k = 1..n.
; 1,2,4,3,6,9,4,8,3,7,5,1,6,2,7,6,3,9,6,3,9,7,5,3,1,8,6,4,8,7,6,5,4,3,2,1,9,9,9,9,9,9,9,9,9,1,2,3,4,5,6,7,8,9,1,2,4,6,8,1,3,5,7,9,2,4,3,6,9,3,6,9,3,6,9,3,6,9,4,8,3,7,2,6,1,5,9,4,8,3,7,5,1,6,2,7,3,8,4,9,5,1,6,2,7,6,3,9,6,3,9,6,3,9,6,3,9,6,3,9,7,5,3,1,8,6,4,2,9,7,5,3,1,8,6,4,8,7,6,5,4,3,2,1,9,8,7,6,5,4,3,2,1,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,1,2,4,6,8,1,3,5,7,9,2,4,6,8,1,3,5,7,9,2,4,3,6,9,3,6,9,3,6,9,3,6,9,3,6,9,3,6,9,3,6,9,4,8,3,7,2,6,1,5,9,4,8,3,7,2,6,1,5,9,4
cal $0,223544 ; Triangle T(n,k), 0 < k <= n, T(n,1) = n - 1, T(n,k) = T(n,k-1) + n; read by rows.
add $1,$0
lpb $1
mod $1,9
lpe
add $1,1
| 72.7 | 501 | 0.519945 |
84169bf1778a78007d874577d959d9bfc263f13a | 275 | asm | Assembly | libsrc/_DEVELOPMENT/temp/sp1/zx/c/sdcc_iy/sp1_ChangeSprType.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/temp/sp1/zx/c/sdcc_iy/sp1_ChangeSprType.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/temp/sp1/zx/c/sdcc_iy/sp1_ChangeSprType.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z | ; void sp1_ChangeSprType(struct sp1_cs *c, void *drawf)
SECTION code_clib
SECTION code_temp_sp1
PUBLIC _sp1_ChangeSprType
EXTERN asm_sp1_ChangeSprType
_sp1_ChangeSprType:
pop af
pop hl
pop de
push de
push hl
push af
jp asm_sp1_ChangeSprType
| 13.095238 | 55 | 0.741818 |
480b2145bdeabcc291ff1d2fd2485ee23469c6f1 | 362 | asm | Assembly | programs/oeis/171/A171559.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/171/A171559.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/171/A171559.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A171559: Powers of 2 (cf. A000079) with 1 replaced by 3.
; 3,2,4,8,16,32,64,128,256,512,1024,2048,4096,8192,16384,32768,65536,131072,262144,524288,1048576,2097152,4194304,8388608,16777216,33554432,67108864,134217728,268435456,536870912,1073741824,2147483648,4294967296,8589934592
mov $1,2
pow $1,$0
sub $0,1
sub $1,2
lpb $0
add $0,1
mov $1,1
lpe
add $1,2
| 27.846154 | 222 | 0.745856 |
af26546cb35994883ecd7a8dd97230ae5dc59a00 | 241 | asm | Assembly | programs/oeis/010/A010715.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/010/A010715.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/010/A010715.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A010715: Period 2: repeat (4,10).
; 4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10
mov $1,$0
mod $1,2
mul $1,6
add $1,4
| 30.125 | 166 | 0.589212 |
f4c926bbcc23c46dbbc78de21372331dccb26a8a | 564 | asm | Assembly | boot/boot.asm | TehcJS/KettleKernel | 51d936083fc932041559742630aad55e1b008ead | [
"MIT"
] | null | null | null | boot/boot.asm | TehcJS/KettleKernel | 51d936083fc932041559742630aad55e1b008ead | [
"MIT"
] | null | null | null | boot/boot.asm | TehcJS/KettleKernel | 51d936083fc932041559742630aad55e1b008ead | [
"MIT"
] | null | null | null | [org 0x7c00]
KERNEL_OFFSET equ 0x1000
mov [BOOT_DRIVE], dl
mov bp, 0x9000
mov sp, bp
mov bx, BOOT_PRINT
call print
; load kernel
call load_kernel
; enter 32-bit mode
call switch_pm
jmp $
%include "../boot/gdt.asm"
%include "../boot/label.asm"
[bits 32]
BEGIN_PM:
call KERNEL_OFFSET
jmp $
BOOT_DRIVE db 0x80
BOOT_PRINT db "Loaded in 16-bit real mode", 0
SWITCHING_PM db "Switching to 32-bit protected mode", 0
PM_BEGAN db "Switched to 32-bit protected mode", 0
KERNEL_SWITCH db "Switching to Kernel", 0
; padding & magic
times 510 - ($-$$) db 0
dw 0xaa55
| 16.114286 | 55 | 0.72695 |
4ab2a39e756ef30b6272b6fafeffc2c8689a3bc6 | 366 | asm | Assembly | programs/oeis/098/A098648.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/098/A098648.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/098/A098648.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A098648: Expansion of (1-3*x)/(1 - 6*x + 4*x^2).
; 1,3,14,72,376,1968,10304,53952,282496,1479168,7745024,40553472,212340736,1111830528,5821620224,30482399232,159607914496,835717890048,4375875682304,22912382533632,119970792472576,628175224700928,3289168178315264
mov $1,1
mov $2,1
lpb $0,1
sub $0,1
mov $3,$1
add $3,$2
add $1,$3
add $2,$1
mul $2,2
lpe
| 26.142857 | 212 | 0.718579 |
504215d5e2722c1baff68919aba78a38cfcf65c6 | 72 | asm | Assembly | test/ceq-cmv.asm | kspalaiologos/asmbf | c98a51d61724a46855de291a27d68a49a034810b | [
"MIT"
] | 67 | 2020-08-03T06:26:35.000Z | 2022-03-24T19:50:51.000Z | test/ceq-cmv.asm | pyautogui/asmbf | 37c54a8a62df2fc4bab28bdeb43237b4905cbecd | [
"MIT"
] | 55 | 2019-10-02T19:37:08.000Z | 2020-06-12T19:40:53.000Z | test/ceq-cmv.asm | pyautogui/asmbf | 37c54a8a62df2fc4bab28bdeb43237b4905cbecd | [
"MIT"
] | 9 | 2019-05-18T11:59:41.000Z | 2020-06-21T20:40:25.000Z |
mov r1, 49
mov r2, r1
raw .0
ceq r1, r2
raw .0
cmo r1, .0
raw .0
out r1 | 8 | 10 | 0.611111 |
8c8c6f4f19fdc2dea68d12ea1101c260d6a913e3 | 22 | asm | Assembly | gfx/pokemon/ninjask/anim_idle.asm | Ebernacher90/pokecrystal-allworld | 5d623c760e936842cf92563912c5bd64dd69baef | [
"blessing"
] | null | null | null | gfx/pokemon/ninjask/anim_idle.asm | Ebernacher90/pokecrystal-allworld | 5d623c760e936842cf92563912c5bd64dd69baef | [
"blessing"
] | null | null | null | gfx/pokemon/ninjask/anim_idle.asm | Ebernacher90/pokecrystal-allworld | 5d623c760e936842cf92563912c5bd64dd69baef | [
"blessing"
] | null | null | null | frame 1, 08
endanim
| 7.333333 | 12 | 0.681818 |
b80118b8f396fc2af5c94319d06f3cca2b4dfdbc | 322 | asm | Assembly | assembly_multiplication/Mult.asm | ferris77/nand2tetris | a41d295f534d9a8b2c8e4934178dbd5be41a3245 | [
"MIT"
] | null | null | null | assembly_multiplication/Mult.asm | ferris77/nand2tetris | a41d295f534d9a8b2c8e4934178dbd5be41a3245 | [
"MIT"
] | null | null | null | assembly_multiplication/Mult.asm | ferris77/nand2tetris | a41d295f534d9a8b2c8e4934178dbd5be41a3245 | [
"MIT"
] | null | null | null | @16 //represents i
M=0 //i=0
@17 //represents sum
M=0 //sum=0
@2
M=0
@1
D=M //takes R1
@16
D=D-M //checks if i == R1
@20 //if i==R1 goto instruction 19 (end of the code)
D;JEQ
@0
D=M //takes R0
@2
M=D+M // performs R2 = R2+R0
@16
M=M+1 // i++
@6
0;JMP //goto instruction 4 (creates a loop)
@20
0;JMP | 14.636364 | 54 | 0.559006 |
54b162d9343a36329b510b60c95ffc65d3346026 | 6,693 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_1318.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_1318.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_1318.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 %r14
push %r8
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x3da7, %r14
nop
nop
nop
nop
nop
cmp $34029, %r11
mov (%r14), %rdi
nop
nop
and %rbx, %rbx
lea addresses_WT_ht+0x10aa7, %rsi
lea addresses_WC_ht+0x7e5f, %rdi
clflush (%rsi)
nop
nop
nop
xor $42136, %r10
mov $127, %rcx
rep movsq
nop
nop
nop
sub $65059, %rbx
lea addresses_A_ht+0x1cc67, %r11
nop
nop
nop
sub %r14, %r14
mov $0x6162636465666768, %rsi
movq %rsi, (%r11)
nop
nop
sub %r14, %r14
lea addresses_WC_ht+0x11ebb, %r10
nop
cmp $63787, %rsi
mov (%r10), %di
nop
nop
nop
nop
nop
add $41162, %rbx
lea addresses_UC_ht+0x11686, %r10
nop
cmp %rdi, %rdi
mov $0x6162636465666768, %rbx
movq %rbx, (%r10)
dec %rbx
lea addresses_WC_ht+0xef1f, %rsi
lea addresses_WT_ht+0x1ea7, %rdi
clflush (%rsi)
nop
nop
nop
nop
nop
mfence
mov $62, %rcx
rep movsb
nop
nop
and %r11, %r11
lea addresses_normal_ht+0x9067, %rsi
lea addresses_A_ht+0x1b117, %rdi
nop
nop
nop
nop
nop
inc %r8
mov $49, %rcx
rep movsl
nop
nop
nop
inc %rsi
lea addresses_normal_ht+0x169a7, %rsi
nop
nop
inc %r10
vmovups (%rsi), %ymm7
vextracti128 $1, %ymm7, %xmm7
vpextrq $1, %xmm7, %rdi
sub $21011, %r8
lea addresses_WC_ht+0xa09f, %rbx
nop
nop
nop
inc %r11
mov (%rbx), %esi
cmp $3255, %rsi
lea addresses_UC_ht+0x5114, %rdi
nop
nop
nop
nop
nop
add $10704, %r10
movb $0x61, (%rdi)
xor %rdi, %rdi
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %r8
pop %r14
pop %r11
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %r15
push %r8
push %rbx
push %rdi
// Store
lea addresses_RW+0x1a9dd, %r8
nop
nop
nop
nop
cmp $57768, %r15
movl $0x51525354, (%r8)
nop
nop
nop
add %rbx, %rbx
// Faulty Load
lea addresses_normal+0x1fda7, %r12
nop
nop
nop
nop
sub $16407, %r8
mov (%r12), %rdi
lea oracles, %r8
and $0xff, %rdi
shlq $12, %rdi
mov (%r8,%rdi,1), %rdi
pop %rdi
pop %rbx
pop %r8
pop %r15
pop %r12
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'congruent': 0, 'AVXalign': False, 'same': False, 'size': 4, 'NT': False, 'type': 'addresses_normal'}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'congruent': 0, 'AVXalign': False, 'same': False, 'size': 4, 'NT': False, 'type': 'addresses_RW'}}
[Faulty Load]
{'src': {'congruent': 0, 'AVXalign': False, 'same': True, 'size': 8, 'NT': False, 'type': 'addresses_normal'}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'congruent': 10, 'AVXalign': False, 'same': False, 'size': 8, 'NT': False, 'type': 'addresses_UC_ht'}, 'OP': 'LOAD'}
{'src': {'congruent': 8, 'same': False, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'dst': {'congruent': 3, 'same': False, 'type': 'addresses_WC_ht'}}
{'OP': 'STOR', 'dst': {'congruent': 6, 'AVXalign': False, 'same': False, 'size': 8, 'NT': False, 'type': 'addresses_A_ht'}}
{'src': {'congruent': 2, 'AVXalign': False, 'same': False, 'size': 2, 'NT': False, 'type': 'addresses_WC_ht'}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'congruent': 0, 'AVXalign': False, 'same': False, 'size': 8, 'NT': True, 'type': 'addresses_UC_ht'}}
{'src': {'congruent': 3, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'REPM', 'dst': {'congruent': 7, 'same': False, 'type': 'addresses_WT_ht'}}
{'src': {'congruent': 6, 'same': False, 'type': 'addresses_normal_ht'}, 'OP': 'REPM', 'dst': {'congruent': 4, 'same': False, 'type': 'addresses_A_ht'}}
{'src': {'congruent': 10, 'AVXalign': False, 'same': False, 'size': 32, 'NT': False, 'type': 'addresses_normal_ht'}, 'OP': 'LOAD'}
{'src': {'congruent': 1, 'AVXalign': False, 'same': False, 'size': 4, 'NT': True, 'type': 'addresses_WC_ht'}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'congruent': 0, 'AVXalign': True, 'same': False, 'size': 1, 'NT': False, 'type': 'addresses_UC_ht'}}
{'34': 21829}
34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34
*/
| 35.983871 | 2,999 | 0.658599 |
a4baa292e18a324df5f420e7e9b18ed975ee4182 | 2,377 | asm | Assembly | programs/oeis/006/A006323.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/006/A006323.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/006/A006323.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A006323: 4-dimensional analog of centered polygonal numbers.
; 1,10,41,115,260,511,910,1506,2355,3520,5071,7085,9646,12845,16780,21556,27285,34086,42085,51415,62216,74635,88826,104950,123175,143676,166635,192241,220690,252185,286936,325160,367081,412930,462945,517371,576460,640471,709670,784330,864731,951160,1043911,1143285,1249590,1363141,1484260,1613276,1750525,1896350,2051101,2215135,2388816,2572515,2766610,2971486,3187535,3415156,3654755,3906745,4171546,4449585,4741296,5047120,5367505,5702906,6053785,6420611,6803860,7204015,7621566,8057010,8510851,8983600,9475775,9987901,10520510,11074141,11649340,12246660,12866661,13509910,14176981,14868455,15584920,16326971,17095210,17890246,18712695,19563180,20442331,21350785,22289186,23258185,24258440,25290616,26355385,27453426,28585425,29752075,30954076,32192135,33466966,34779290,36129835,37519336,38948535,40418181,41929030,43481845,45077396,46716460,48399821,50128270,51902605,53723631,55592160,57509011,59475010,61490990,63557791,65676260,67847251,70071625,72350250,74684001,77073760,79520416,82024865,84588010,87210761,89894035,92638756,95445855,98316270,101250946,104250835,107316896,110450095,113651405,116921806,120262285,123673836,127157460,130714165,134344966,138050885,141832951,145692200,149629675,153646426,157743510,161921991,166182940,170527435,174956561,179471410,184073081,188762680,193541320,198410121,203370210,208422721,213568795,218809580,224146231,229579910,235111786,240743035,246474840,252308391,258244885,264285526,270431525,276684100,283044476,289513885,296093566,302784765,309588735,316506736,323540035,330689906,337957630,345344495,352851796,360480835,368232921,376109370,384111505,392240656,400498160,408885361,417403610,426054265,434838691,443758260,452814351,462008350,471341650,480815651,490431760,500191391,510095965,520146910,530345661,540693660,551192356,561843205,572647670,583607221,594723335,605997496,617431195,629025930,640783206,652704535,664791436,677045435,689468065,702060866,714825385,727763176,740875800,754164825,767631826,781278385,795106091,809116540,823311335,837692086,852260410,867017931,881966280,897107095,912442021,927972710,943700821,959628020,975755980,992086381,1008620910,1025361261,1042309135,1059466240,1076834291,1094415010,1112210126,1130221375,1148450500
add $0,1
mov $2,$0
lpb $0,1
add $4,$0
sub $0,1
add $3,$4
add $1,$3
add $4,1
add $4,$2
lpe
| 169.785714 | 2,210 | 0.865797 |
64aeedafd276fb6a850127eb4ccc8edb90efbaed | 576 | asm | Assembly | oeis/024/A024078.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/024/A024078.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/024/A024078.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A024078: a(n) = 7^n - n^3.
; 1,6,41,316,2337,16682,117433,823200,5764289,40352878,282474249,1977325412,13841285473,96889008210,678223070105,4747561506568,33232930565505,232630513982294,1628413597904617,11398895185366284,79792266297604001,558545864083274746,3909821048582977401,27368747340080904176,191581231380566400577,1341068619663964885182,9387480337647754288073,65712362363534280119860,459986536544739960954849,3219905755813179726813218,22539340290692258087836249,157775382034845806615012952,1104427674243920646305266433
mov $1,7
pow $1,$0
pow $0,3
sub $1,$0
mov $0,$1
| 64 | 497 | 0.869792 |
054f4912c2ef587eaeb92aa7131e7bb8751d7e79 | 26,585 | asm | Assembly | 45/runtime/rt/dvstmt.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null | 45/runtime/rt/dvstmt.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null | 45/runtime/rt/dvstmt.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null | TITLE DVSTMT - Device Independent I/O Statements
page 56,132
;***
; DVSTMT - Device Independent I/O Statements
;
; Copyright <C> 1986, Microsoft Corporation
;
;Purpose:
;
; BASIC Syntax mapping to included runtime entry points:
;
; - EOF Function:
;
; EOF(file number)
; |
; I2 B$FEOF
;
; - LOC Function:
;
; LOC(file number)
; |
; I4 B$FLOC
;
; - LOF Function:
;
; LOF(file number)
; |
; I4 B$FLOF
;
; - CLOSE Statement - B$CLOS, no matter having parameters or not
;
; CLOSE [[#]file number [,[#]filenumber...]]
;
; Examples:
;
; CLOSE CLOSE #1 CLOSE 1,2
; | | |
; B$CLOS B$CLOS B$CLOS
; parameter count 0 parameter count 1 parameter count 2
; no parameter 1 in stack 2 & 1 in stack
;
; - WIDTH Statement:
;
; Four different Syntax possibilities map to four runtime entry points:
;
; WIDTH size WIDTH LPRINT size
; | |
; B$WIDT B$LWID
;
;
; WIDTH filenumber, size WIDTH device, size
; | |
; B$DWID B$DWID
;
; - GET Statement - calls B$GET1 if no record number specified, or
; B$GET2 if a record number specified
; B$GET3 if record variable, but no record number
; B$GET4 if record variable, and record number
;
; GET [#]filenumber [,[record number][,record variable]]
;
; Examples:
;
; GET #1 GET #2,4 GET #2,,FOO GET #2,4,FOO
; | | | |
; B$GET1 B$GET2 B$GET3 B$GET4
;
; Record Number is I4.
;
; - PUT Statement - calls B$PUT1 if no record number specified, or
; B$PUT2 if a record number specified
; B$PUT3 if record variable, but no record number
; B$PUT4 if record variable, and record number
;
; PUT [#]filenumber [,[record number][,record variable]]
;
; Examples:
;
; PUT #1 PUT #2,4 PUT #2,,FOO PUT #2,4,FOO
; | | | |
; B$PUT1 B$PUT2 B$PUT3 B$PUT4
;
; - OPEN Statement:
;
; Two syntaxes are allowed:
;
; OPEN mode,[#]filenumber,"filespec" [,reclength]
; B$OOPN, which has C definition as follows with parameters in stack.
; B$OOPN(U2 mode, I2 channel, sd *psdName, I2 cbRecord)
; (refering the procedure head comments of B$OPEN for detail)
;
; OPEN "filespec" [FOR mode][locktype] AS [#]filenumber [LEN=reclength]
; B$OPEN, which has C definition as follows with parameters in stack.
; B$OPEN(sd *psdName,I2 channel,I2 cbRecord,U2 mode,I2 access,I2 lock)
; (refering the procedure head comments of B$OPEN for detail)
;
; - FILEATTR function
;
; FILEATTR(file number, field)
; |
; I4 B$FATR
;
; - FREEFILE function
;
; FREEFILE
; |
; I2 B$FREF
;
;******************************************************************************
INCLUDE switch.inc
INCLUDE rmacros.inc
;Code segments:
useSeg NH_TEXT ;near heap
useSeg ER_TEXT ;error handling
useSeg DV_TEXT ;device independent I/O
;Data segments:
useSeg _DATA ;initialized variables
useSeg _BSS ;uninitialized variable
INCLUDE seg.inc ;set up segments
INCLUDE baslibma.inc
INCLUDE devdef.inc
INCLUDE files.inc
INCLUDE ascii.inc
INCLUDE idmac.inc
INCLUDE const.inc
INCLUDE rtps.inc ; constants shared with QBI
SUBTTL local constant definitions
page
InpSts EQU 6 ;input status for IOCTL
TTY EQU 0 ;default b$PTRFIL is TTY
PRSTM EQU 0 ;print statement
CHANL EQU 1 ;#
USING EQU 2 ;using
WRSTM EQU 4 ;write statement
LPSTM EQU 8 ;lprint statement
SUBTTL data definitions
page
sBegin _DATA ;initialized variables
externB b$IOFLAG ; Misc. IO flags. Defined in GWINI.ASM
sEnd ;end of _DATA
sBegin _BSS ;uninitialized variables
staticW DispAddr,,1 ; kept the dispatch address
externW b$Buf2 ; defined in GWINI.ASM
PATH_LEN EQU b$Buf2 ; save area for pathname length
; sort of a waste, but convenient
externW b$RECPTR
sEnd ;_BSS
SUBTTL code segments externals
page
sBegin DV_TEXT
externNP B$PtrDispatch
sEnd
sBegin NH_TEXT ;near heap
externNP B$LHFDBLOC
externNP B$LHNXTFIL
externNP B$LHLOCFDB
externFP B$STDL
externNP B$STALC
sEnd
sBegin ER_TEXT ;error code component
externNP B$ERR_RVR
externNP B$ERR_BFM
externNP B$ERR_BRL ; Bad record length
externNP B$ERR_FSA
externNP B$ERR_BRN
externNP B$ERR_IFN
externNP B$ERR_FC
sEnd
assumes CS,DV_TEXT
sBegin DV_TEXT ; device I/O
SUBTTL LOC interface -- B$FLOC
page
;***
;B$FLOC -- the current file location
;I4 B$FLOC (I2 channel)
;
;Purpose:
; This function returns the current file location. For a random or
; sequential file, it returns the last record number been read/written
; (a sequential has fix record length -- 128 bytes). For a comm.
; file, it returns the number of bytes in the input buffer waiting to
; be read.
;Entry:
; Parameter is in stack.
; int Channel
;Exit:
; [DX|AX] = file location
;Uses:
; none
;Exceptions:
; illegal file number -- B$ERR_IFN
;*******************************************************************************
cProc B$FLOC,<PUBLIC,FAR>
ParmW Channel ;I2, channel #
cBegin
MOV AH,DV_LOC ;LOC function
LocLof: ;common for LOC & LOF
MOV BX,Channel ;BX has the file number
cCall ComDsp ;dispatch to the actual working routine
;(xxxx_LOC return results in DX:AX)
cEnd ;exit to caller
SUBTTL LOF interface -- B$FLOF
page
;***
;B$FLOF -- return the length of the file
;I4 B$FLOF(I2 channel)
;
;Purpose:
; For a disk file, it returns the size of the file. For a comm.
; file, it returns the amount of free space in the input buffer.
;Entry:
; Parameter is in stack.
; int channel
;Exit:
; [DX|AX] = bytes allocated for the file
;Uses:
; none
;Exceptions:
; illegal file number -- B$ERR_IFN
;*******************************************************************************
cProc B$FLOF,<PUBLIC,FAR>
ParmW Channel ;I2 channel #
cBegin
MOV AH,DV_LOF ;LOF Function
JMP SHORT LocLof ;dispatch to the actual working routine and
; exit via B$FLOC
cEnd nogen ;no code generated
SUBTTL WIDTH interface -- B$FWID
page
;***
;B$FWID -- change the width of a file
;void B$FWID(I2 channel, I2 size)
;
;Purpose:
; This routine changes the file width while the file is opened.
; This is meaningful for LPT?.
;
; Syntax is: WIDTH #filenum,filesiz
;
; The routine sets the file width BEFORE file open is B$DWID.
; The routine sets the screen width is B$WIDT.
; The routine sets the LPRINT width is B$LWID.
;Entry:
; Parameters in stack.
; int channel
; int wid
;Exit:
; none
;Uses:
; none
;Exceptions:
; illegal file number -- B$ERR_IFN
;*******************************************************************************
cProc B$FWID,<PUBLIC,FAR>
ParmW Channel ;I2, channel #
ParmW Wid ;I2, width
cBegin
MOV BX,Channel ;BX has the file number
MOV DX,Wid ;DL has the width
or dh,dh ; if width > 255 error
jnz ercfc ; and
or dl,dl ; if width = 0 error
jz ercfc
MOV AH,DV_WIDTH ;File width function
cCall ComDsp ;dispatch to the actual working routine
cEnd ;exit to caller
ercfc: JMP B$ERR_FC
SUBTTL Sequential random I/O interfaces -- B$GET1 & B$PUT1
page
;***
;B$GET1 -- get a record sequentially
;void B$GET1(I2 channel)
;
;Purpose:
; Get a record into random buffer if there is no record number specified.
;Entry:
; Parameter in stack.
; int Channel
;Exit:
; a record is read into the random buffer
;
; Note: while calling RndDsp,
; [BX] = file number (used by B$LHFDBLOC/B$LocateFDB)
; [AL] = GET + Sequential flag (refer to RndDsp)
;Uses:
; none
;Exceptions:
; illegal file number -- B$ERR_IFN
; bad file mode -- B$ERR_BFM
;*******************************************************************************
cProc B$GET1,<PUBLIC,FAR>
ParmW Channel ;I2, file number
cBegin
XOR AL,AL ;indicate GET without a specified RecNum
RndIO1:
MOV BX,Channel ;BX has the channel #
cCall RndDsp ;do it
cEnd ;exit to caller
;***
;B$PUT1 -- put a record sequentially
;void B$PUT1(I2 Channel)
;
;Purpose:
; Put a record into random buffer with no specified record number.
;Entry:
; Parameter in stack.
; int Channel
;Exit:
; a record is put into the random buffer
;
; Note: while calling RndDsp,
; [BX] = file number (used by B$LHFDBLOC/B$LocateFDB)
; [AL] = PUT + Sequential flag (refer to RndDsp)
;Uses:
; none
;Exceptions:
; illegal file number -- B$ERR_IFN
; bad file mode -- B$ERR_BFM
;*******************************************************************************
cProc B$PUT1,<PUBLIC,FAR>
ParmW Channel ;I2 file number
cBegin
MOV AL,PutFlg ;indicate PUT without a specified RecNum
JMP SHORT RndIO1 ;do it
cEnd nogen ;exit to caller via B$GET1
SUBTTL Relative random I/O interfaces -- B$GET2 & B$PUT2
page
;***
;B$GET2 -- get the record with record number specified
;void B$GET2(I2 Channel, I4 recnum)
;
;Purpose:
; Get the record specified into random buffer.
;Entry:
; Parameters in stack.
; int Channel
; long int RecNum
;Exit:
; the record is read into random buffer
;
; Note: while calling RndDsp,
; [BX] = file number (used by B$LHFDBLOC/B$LocateFDB)
; [AL] = GET + Relative flag (refer to RndDsp)
; [CX|DX] = I4 specified record number
;Uses:
; none
;Exceptions:
; illegal file number -- B$ERR_IFN
; bad file mode -- B$ERR_BFM
; bad record number -- B$ERR_BRN
;*******************************************************************************
cProc B$GET2,<PUBLIC,FAR>
ParmW Channel ;I2 file number
ParmD RecNum ;I4 record number
cBegin
MOV AL,RelFlg ;indicate GET with record number specified
RndIO2:
MOV CX,Seg_RecNum ;CX = RecNum high
OR CX,CX ;can't be negative number
JS ERCBRN ;Brif negative, give "bad record number"
MOV DX,Off_RecNum ;DX = RecNum low
MOV BX,CX ;another copy of RecNum high in BX
OR BX,DX ;can't be zero
JZ ERCBRN ;Brif zero, give "bad record number"
MOV BX,Channel ;BX has the channel number
cCall RndDsp ;do the work
cEnd ;exit to caller
ERCBRN: JMP B$ERR_BRN ;bad record number
;***
;B$PUT2 -- put a record with specified record number
;void B$PUT2(I2 Channel, I4 RecNum)
;
;Purpose:
; Put a record into random buffer with specified record number.
;Entry:
; Parmaters in stack.
; int Channel
; long int RecNum
;Exit:
; a record is put into the random buffer.
;
; Note: while calling RndDsp,
; [BX] = file number (used by B$LHFDBLOC/B$LocateFDB)
; [AL] = PUT + Relative flag (refer to RndDsp)
; [CX|DX] = I4 specified record number
;Uses:
; none
;Exceptions:
; illegal file number -- B$ERR_IFN
; bad file mode -- B$ERR_BFM
; bad record number -- B$ERR_BRN
;*******************************************************************************
cProc B$PUT2,<PUBLIC,FAR>
ParmW Channel ;I2 file number
ParmD RecNum ;I4 record number
cBegin
MOV AL,RelFlg+PutFlg
;indicate this is PUT with specified Rec Num
JMP SHORT RndIO2 ;do it
cEnd nogen ;exit via B$GET2
SUBTTL Relative random I/O interfaces -- B$GET3 & B$PUT3
page
;***
;B$GET3 -- get the record with a record variable specified
;void B$GET3(I2 Channel, TYP far *recptr, I2 reclen)
;
;Purpose:
; Get the record specified into the users record variable
;
; NOTE: This routine can take a far pointer to a movable item in a heap. This
; routine cannot directly or indirectly cause heap movement.
;
;Entry:
; Parameters in stack.
; int Channel
; typ far *RecPtr
; int RecLen
;
;Exit:
;
;Note: while calling RndDsp,
; [BX] = file number (used by B$LHFDBLOC/B$LocateFDB)
; [AL] = GET + Record flag (refer to RndDsp)
; [SI] = record length
; [ES:DI] = Pointer to the users record
;
;Uses:
; none
;
;Exceptions:
; illegal file number -- B$ERR_IFN
; bad file mode -- B$ERR_BFM
; bad record number -- B$ERR_BRN
;*******************************************************************************
cProc B$GET3,<PUBLIC,FAR>
ParmW Channel ; I2 file number
ParmD RecPtr ; far record pointer
ParmW RecLen ; i2 record length
cBegin
MOV AL,RecFlg ; indicate GET with record variable specified
RndIO3:
MOV BX,Channel ; [BX] = channel number
PUSH SI
PUSH DI
PUSH ES
MOV SI,RecLen ; [SI] = Record length
LES DI,RecPtr ; [ES:DI] = Record Pointer
cCall RndDsp ; do the work
POP ES
POP DI
POP SI
cEnd ; exit to caller
;***
;B$PUT3 -- put a record from specified record variable
;void B$PUT3(I2 Channel, TYP far *recptr, I2 reclen)
;
;Purpose:
; Put a record from record var
;
; NOTE: This routine can take a far pointer to a movable item in a heap. This
; routine cannot directly or indirectly cause heap movement.
;
;Entry:
; Parameters in stack.
; int Channel
; typ far *RecPtr
; int RecLen
;
;Exit:
;
;Note: while calling RndDsp,
; [BX] = file number (used by B$LHFDBLOC/B$LocateFDB)
; [AL] = PUT + Record flag (refer to RndDsp)
; [SI] = record length
; [ES:DI] = Pointer to the users record
;
;Uses:
; none
;
;Exceptions:
; illegal file number -- B$ERR_IFN
; bad file mode -- B$ERR_BFM
; bad record number -- B$ERR_BRN
;*******************************************************************************
cProc B$PUT3,<PUBLIC,FAR>
ParmW Channel ; I2 file number
ParmD RecPtr ; far record pointer
ParmW RecLen ; i2 record length
cBegin
MOV AL,RecFlg+PutFlg; indicate this is PUT with record var
JMP SHORT RndIO3 ; do it
cEnd nogen ; exit via B$GET3
SUBTTL Relative random I/O interfaces -- B$GET4 & B$PUT4
page
;***
;B$GET4 -- get the record with record number specified to record var
;void B$GET4(I2 Channel, I4 recnum, TYP far *recptr, I2 reclen)
;
;Purpose:
; Get the record specified into user record
;
; NOTE: This routine can take a far pointer to a movable item in a heap. This
; routine cannot directly or indirectly cause heap movement.
;
;Entry:
; Parameters in stack.
; int Channel
; long int RecNum
; typ far *RecPtr
; int RecLen
;
;Exit:
;
;Note: while calling RndDsp,
; [BX] = file number (used by B$LHFDBLOC/B$LocateFDB)
; [AL] = GET + Relative flag (refer to RndDsp)
; [CX|DX] = I4 specified record number
; [SI] = record length
; [ES:DI] = Pointer to the users record
;
;Uses:
; none
;
;Exceptions:
; illegal file number -- B$ERR_IFN
; bad file mode -- B$ERR_BFM
; bad record number -- B$ERR_BRN
;*******************************************************************************
cProc B$GET4,<PUBLIC,FAR>
ParmW Channel ; I2 file number
ParmD RecNum ; I4 record number
ParmD RecPtr ; far record pointer
ParmW RecLen ; I2 record length
cBegin
MOV AL,RelFlg+RecFlg; indicate GET with record number & var
RndIO4:
MOV CX,Seg_RecNum ; CX = RecNum high
OR CX,CX ; can't be negative number
JS ERCBRN ; Brif negative, give "bad record number"
MOV DX,Off_RecNum ; DX = RecNum low
MOV BX,CX ; another copy of RecNum high in BX
OR BX,DX ; can't be zero
JZ ERCBRN ; Brif zero, give "bad record number"
MOV BX,Channel ; BX has the channel number
PUSH SI
PUSH DI
PUSH ES
MOV SI,RecLen ; [SI] = Record length
LES DI,RecPtr ; [ES:DI] = Record Pointer
cCall RndDsp ; do the work
POP ES
POP DI
POP SI
cEnd ; exit to caller
;***
;B$PUT4 -- put a record with specified record number from record var
;void B$PUT4(I2 Channel, I4 RecNum, TYP far *recptr, I2 reclen)
;
;Purpose:
; Put a record from record var with specified record number.
;
; NOTE: This routine can take a far pointer to a movable item in a heap. This
; routine cannot directly or indirectly cause heap movement.
;
;Entry:
; Parmaters in stack.
; int Channel
; long int RecNum
; typ far *RecPtr
; int RecLen
;
;Exit:
;
;Note: while calling RndDsp,
; [BX] = file number (used by B$LHFDBLOC/B$LocateFDB)
; [AL] = GET + Relative flag (refer to RndDsp)
; [CX|DX] = I4 specified record number
; [SI] = record length
; [ES:DI] = Pointer to the users record
;
;Uses:
; none
;
;Exceptions:
; illegal file number -- B$ERR_IFN
; bad file mode -- B$ERR_BFM
; bad record number -- B$ERR_BRN
;*******************************************************************************
cProc B$PUT4,<PUBLIC,FAR>
ParmW Channel ; I2 file number
ParmD RecNum ; I4 record number
ParmD RecPtr ; far record pointer
ParmW RecLen ; I2 record length
cBegin
MOV AL,RelFlg+PutFlg+RecFlg ; indicate PUT Rec Num & Rec Var
JMP SHORT RndIO4 ; do it
cEnd nogen ; exit via B$GET4
Locals PROC NEAR
SUBTTL B$FREF - Return next available file number
PAGE
;***
; B$FREF - Return next available file number
; int pascal B$FREF(void)
;
;Purpose:
; Runtime entry point to return the next available file number. This is done
; by a pretty dumb repetative linear search of all FDBs, trying all file
; numbers starting at 1. Anything more intelligent is probably more effort
; than it's worth, since the call to FREEFILE will more often than not be
; followed by an OPEN call, which is probably I/O bound.
;
;Entry:
; None.
;
;Exit:
; [AX] = Next available file number.
;
;Uses:
; Per convention.
;
;Exceptions:
; B$ERR_SSC, if the heap is screwed up.
;
;******************************************************************************
cProc B$FREF,<FAR,PUBLIC,FORCEFRAME>,<SI>
cBegin
XOR AX,AX ; [AX] = potential "next" file number
FREF_5: ; Loop to restart at beging of FDB chain
XOR SI,SI ; [SI] = Flag to get first FDB pointer
INC AX ; [AX] = next potential "next" filenumber
FREF_10: ; Loop for each FDB
CALL B$LHNXTFIL ; [SI] = pointer to next FDB
JZ FREF_90 ; Jump if no more FDB's (we're done)
CALL B$LHLOCFDB ; [BL] = filenumber associated with FDB
CMP AL,BL ; See if our "guess" is being used
JNZ FREF_10 ; loop to go check next FDB if not used
JMP FREF_5 ; else loop to attempt a new guess
FREF_90: ; FDB chain end found, and guess not used
cEnd
SUBTTL EOF interface -- B$FEOF
page
;***
;B$FEOF -- function which detects the EOF for a file
;I2 B$FEOF(I2 Channel)
;
;Purpose:
; Detect whether the EOF is reached. This function is only significant
; for a input or communication file.
;
; Note: EOF won't return true (-1) for a random file, even if you GET
; a record beyond the file end. However, that GET gets a null
; record.
;
;Entry:
; Parameter in stack.
; int Channel
;Exit:
; [AX] = -1 EOF is reached for a sequential input file, or
; communication buffer is empty
; = 0 EOF is not reached yet
;Uses:
; none
;Exceptions:
; illegal file number -- B$ERR_IFN
;*******************************************************************************
cProc B$FEOF,<PUBLIC,FAR>
ParmW Channel ;I2, file number
cBegin
MOV BX,Channel ;BX has file number
OR BX,BX ;special for standard input ?
JZ REDIR ;Brif yes
MOV AH,DV_EOF ;end of file function
cCall ComDsp ; do it, on return [AX] has the result
JMP SHORT EOFExit ;exit to caller
REDIR:
TEST b$IOFLAG,RED_INP ; is input file redirected ?
JZ ERCIFN ; Brif not, give "illegal file number"
MOV AX,C_IOCTL SHL 8 + InpSts ; get input status
INT 21h ; is the end of a file ?
;[AL] = 0FFH if not end of file
;[AL] = 0 if end of file
CBW ;result in AX
NOT AX ; and pervert
EOFExit:
cEnd ;clear stack and return
SUBTTL B$FATR - FILEATTR function
PAGE
;***
; B$FATR - FILEATTR function
; I4 pascal B$FATR(I2 channel, I2 fieldid)
;
;Purpose:
; Returns specific information from an FDB, based on the fieldid value. This
; interface allows us to muck with the FDB, and still provide the same info
; to the user in a stable fasion.
;
;Entry:
; channel = File number to be queried
; fieldid = field number to be returned
;
;Exit:
; [DX:AX] = requested information
;
;Uses:
; Per convention
;
;Exceptions:
; B$ERR_FC = Bad field number
;
;******************************************************************************
cProc B$FATR,<FAR,PUBLIC>,<SI>
parmW channel ; file to futz with
parmW fieldid ; field desired
cBegin
MOV BX,channel ; [BX] = File's channel #
cCall B$LHFDBLOC ; [SI] = FDB pointer (NZ if found)
JNZ FATR_3 ; Jump if so
JMP B$ERR_IFN ; else bad file number
FATR_3:
MOV BX,fieldid ; [BX] = user requested field
DEC BX ; Make it zero-relative
CMP BX,FIELDID_MAX ; See if in range
JB FATR_5 ; Jump if valid request
JMP B$ERR_FC ; Else illegal function call
FATR_5:
ADD BX,BX ; [BX] = word offset into table
XOR AX,AX ; Init I4 return value
CWD
FDB_PTR ES,SI,SI ;(ES:)[SI] = * FDB
ADD SI,CS:[BX].FIELDOFF_TABLE ; FDB field by fun. (zero rel)
JMP CS:[BX].FIELDDISP_TABLE ; Dispatches by fun. (zero rel)
FATR_TWO: ; Dispatch point for two byte fields
LODS WORD PTR FileDB ; Load FDB word
JMP SHORT FATR_90
FATR_ONE: ; Dispatch point for one byte fields
LODS BYTE PTR FileDB ; Load FDB byte
FATR_90:
cEnd
ERCIFN: JMP B$ERR_IFN ;illegal file number
SUBTTL general I/O supporting routines
page
;***
;ComDsp -- common dispatch routine
;
;Purpose:
; This common dispatch routine checks the legality of the channel
; and then dispatch to the actual working routine.
;Entry:
; [AH] = fucntion number (minor #)
; [BX] = file number
;Exit:
; depends on function
;Uses:
; none
;Exceptions:
; illegal file number -- B$ERR_IFN
;*******************************************************************************
cProc ComDsp,<NEAR>,<SI> ;save SI
cBegin
CALL B$LHFDBLOC ;[SI] = file data block pointer
JZ ERCIFN ;Error - illegal file number
CALL B$PtrDispatch ; dispatch to the working routine
cEnd ;pop si and exit to caller
;***
;RndDsp -- dispatch for random I/O
;
;Purpose:
; Check the legality of the file number and the file mode. If both
; OK, dispatch to the working routine.
;Entry:
; [AL] = flags
; Bit 0: 1 if PUT, else GET
; BIT 1: 1 if explicit record number specified
; BIT 2: 1 if record variable specified
; [BX] = file number
; [CX:DX] = record number if RelFlg is on. Note: use [CX|DX] here
; for the consistence with DOS function call
; [ES:DI] = record variable address, if RecFlg is on
; [SI] = record variable length, if RecFlg is on
;
;
;Exit:
; a record is in random buffer
;Uses:
; none
;Exceptions:
; illegal file number -- B$ERR_IFN
; bad file mode -- B$ERR_BFM
;*******************************************************************************
cProc VarStrLenDsp,<NEAR>,<SI,ES,DI>
cBegin
jmp VarStrLen_Entry
cEnd <nogen>
cProc RndDsp,<NEAR>,<SI,ES,DI>
cBegin
PUSH SI ; preserve record length
CALL B$LHFDBLOC ;NZ & [SI]=*FDB if file number found
POP BX ; [BX] = length of record variable
JZ ERCIFN ;Brif not found, give "illegal file number"
FDB_PTR ES,SI,SI ;(ES:)[SI] = *FDB
TEST FileDB.FD_MODE,MD_RND+MD_BIN ; random or binary?
JNZ RND_OR_BIN
JMP ERCBFM ; brif not - bad file mode
RND_OR_BIN:
TEST AL,RecFlg ; See if record variable passed
JNZ RndDsp_5 ; Jump if it was
TEST FileDB.FD_MODE,MD_BIN ; binary mode?
JZ NOT_BIN
JMP ERCRVR ; brif so -- record variable required
NOT_BIN:
PUSH DS ; Form...
POP ES ; pointer in...
LEA DI,FileDB.FD_BUFFER ;[ES:DI] ptr to record (field buffer)
MOV BX,FileDB.FD_VRECL ;[BX] = length of record (LEN= length)
JMP SHORT RndDsp_15 ; go finish dispatch
RndDsp_5: ; record variable was passed in
OR BX,BX ; 0-length read/write?
JNZ NotSD ; brif not -- not a string descriptor
; A 0-length means that we have a string
; descriptor and that we must dereference
; ES:DI = string descriptor address
TEST FileDB.FD_MODE,MD_BIN ; binary mode?
JNZ NotVarLenStr ; brif so -- no special string handling
; Special code to handle puts/gets from/into variable-length strings.
; For random files, the length of the string will be placed in the file
; before the string data.
push ax ; save flags
push cx ; save optional record #
push dx
mov bx,2 ; length to read/write
or al,VarStrLen ; don't increment record # after next op.
test AL,PutFlg ; PUT statement?
jnz PutStrLen ; brif so -- output length
; GET statement
;(othewise, ES should be equal to ds/ss)
push bx ; save '2'
push di ; save SD offset
push ax ; space for length on stack
mov di,sp ; ES:DI = addr of length word
call VarStrLenDsp ; read length of string into ES:DI
pop ax ; AX = length to read (new str length)
pop di ; DI = SD offset
pop bx ; BX = 2 (total # to read)
FDB_PTR ES,si,si ; restore (ES:)[SI] = *FDB for ChkRandom
add bx,ax
call ChkRandom ; do verification
push ax ; save length
cCall B$STDL,<DI> ; deallocate existing string
pop cx ; restore CX = length
jcxz RestoreState ; brif zero-length string -- don't do ALLOC
mov bx,cx ; BX = new string length
call B$STALC ; alloc string with new length, BX=*str data
mov [di],cx ; set SD string length
mov [di+2],bx ; set SD string address
mov [bx-2],di ; set back pointer
jmp short RestoreState
PutStrLen: ; PUT statement, DS:[DI] = str len (from SD)
push bx ; save '2'
add bx,[di] ; bx = 2+string length
call ChkRandom ; do verification
pop bx ; restore bx = 2
call VarStrLenDsp ; write length of string to file
RestoreState:
pop dx ; restore optional record #
pop cx
pop ax ; restore flags
or al,VarStrData ; don't seek before next get/put
NotVarLenStr:
MOV BX,ES:[DI] ; BX = string length
MOV DI,ES:[DI+2] ; DS:DI = string address
PUSH DS ; ES:DI = string address
POP ES
OR BX,BX ; null string?
JZ RndExit ; brif so -- return without doing anything
FDB_PTR ES ;restore FDG SEG in ES
NotSD:
TEST FileDB.FD_MODE,MD_BIN ; binary mode?
JNZ RndDsp_15 ; brif so -- skip checks for bad record
; length and field statement
VarStrLen_Entry:
call ChkRandom
RndDsp_15:
MOV [b$RECPTR],DI
MOV [b$RECPTR+2],ES ; [b$RECPTR] = record pointer
MOV AH,DV_RANDIO ;AH=function number (minor #)
CALL B$PtrDispatch ; dispatch to the working routine
RndExit:
cEnd ;pop si, exit to caller
;***
;ChkRandom -- verify stuff before RANDOM file I/O
;
;Purpose:
; Added with revision [43] to save code.
;
;Entry:
; BX = length to read/write (includes count word for variable-length
; strings as record variables).
;Exit:
; None
;Uses:
; None
;Preserves:
; All
;Exceptions:
; Bad record length, Field statement active
;
;******************************************************************************
cProc ChkRandom,<NEAR>
cBegin
CMP BX,FileDB.FD_VRECL ; record too long?
JA ERCBRL ; brif so -- Bad record length
TEST FileDB.FD_FLAGS,FL_FIELD ; FIELD stmt active for this FDB?
JNZ ERCFSA ; brif so -- FIELD statement active
cEnd
ERCBRL: JMP B$ERR_BRL
ERCFSA: JMP B$ERR_FSA
; FIELDOFF_TABLE
;
; Table of FDB fields offsets that FILEATTR will return. Each entry contains
; the location within the FDB of the field to be returned.
;
; FIELDDISP_TABLE
; table of routine offsets to execute to fetch a particular field.
;
labelW FIELDOFF_TABLE
DW FD_MODE ; 1: File Mode
DW FD_HANDLE ; 2: DOS file handle
labelW FIELDDISP_TABLE
DW FATR_ONE ; 1: File Mode: one byte
DW FATR_TWO ; 2: DOS file handle: two byte
FIELDID_MAX = 2 ; last entry in table
Locals ENDP
ERCBFM: JMP B$ERR_BFM ;bad file mode
ERCRVR: JMP B$ERR_RVR ;record variable required
sEnd ;DV_TEXT
END
| 25.513436 | 80 | 0.659056 |
56466ed355a0f07c96b60cdd7af7e621601777b4 | 164 | asm | Assembly | experiments/blink_rjmp.asm | daltonmatos/avrgcc-mixed-with-avrasm2 | f28120af3089fdd150d7a609409c56f5408a1658 | [
"BSD-3-Clause"
] | 2 | 2019-01-15T16:30:19.000Z | 2019-08-15T02:31:22.000Z | experiments/blink_rjmp.asm | daltonmatos/avrgcc-mixed-with-avrasm2 | f28120af3089fdd150d7a609409c56f5408a1658 | [
"BSD-3-Clause"
] | null | null | null | experiments/blink_rjmp.asm | daltonmatos/avrgcc-mixed-with-avrasm2 | f28120af3089fdd150d7a609409c56f5408a1658 | [
"BSD-3-Clause"
] | null | null | null |
.include "m328Pdef.inc"
.org 0x0000
_blinks:
rjmp _add
_ret:
ret
_add:
ldi r23, 0xa
add r24, r23
rjmp _clear
_clear:
clr r1
clr r25
rjmp _ret
| 8.2 | 23 | 0.646341 |
7ed74a2c84d72f1128646dc69e37786d60297111 | 62,904 | asm | Assembly | levels/processed/lvl3_tiles.asm | cppchriscpp/ld38 | fe2e11a2f1a1098c716289b444c867a8113c39ea | [
"MIT"
] | 4 | 2018-08-18T15:31:04.000Z | 2021-03-28T22:21:15.000Z | levels/processed/lvl3_tiles.asm | cppchriscpp/missing-lands | fe2e11a2f1a1098c716289b444c867a8113c39ea | [
"MIT"
] | null | null | null | levels/processed/lvl3_tiles.asm | cppchriscpp/missing-lands | fe2e11a2f1a1098c716289b444c867a8113c39ea | [
"MIT"
] | null | null | null | .export _lvl3
_lvl3:
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 66
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 66, 66
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 66, 66
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 66, 66
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 66, 66
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 66, 66
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 66, 66
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 66, 66
.byte 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 66, 66
.byte 5, 1, 1, 1, 1, 1, 5, 134, 5, 1, 1, 1, 1, 1, 66, 66
.byte 5, 1, 1, 1, 1, 1, 5, 134, 5, 1, 1, 1, 1, 1, 66, 66
.byte 5, 1, 1, 1, 1, 1, 5, 134, 5, 1, 1, 1, 1, 1, 66, 66
.byte 5, 1, 1, 1, 1, 1, 5, 134, 5, 1, 1, 1, 1, 1, 66, 66
.byte 5, 1, 1, 1, 1, 1, 5, 134, 5, 1, 1, 1, 1, 1, 66, 66
.byte 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 131, 131
.byte 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 131, 131
.byte 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 66, 66
.byte 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 66, 66
.byte 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 66, 66
; Sprites
.byte 51, 1, 59, 2, 99, 2, 146, 2, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.include "levels/position_overrides/lvl3_2_1.asm"
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66
.byte 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66
.byte 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66
.byte 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66
.byte 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66
.byte 66, 66, 66, 66, 66, 66, 66, 105, 1, 104, 66, 66, 66, 66, 66, 66
.byte 66, 66, 66, 66, 66, 66, 105, 1, 1, 1, 104, 66, 66, 66, 66, 66
.byte 66, 66, 66, 66, 66, 66, 105, 1, 1, 1, 104, 66, 66, 66, 66, 66
.byte 66, 66, 66, 66, 66, 66, 105, 1, 1, 1, 104, 66, 66, 66, 66, 66
.byte 66, 66, 66, 66, 66, 105, 1, 1, 1, 1, 104, 66, 66, 66, 66, 66
.byte 66, 66, 66, 66, 66, 105, 1, 1, 1, 1, 1, 104, 66, 66, 66, 66
.byte 66, 66, 66, 66, 66, 105, 1, 1, 1, 1, 1, 104, 66, 66, 66, 66
; Sprites
.byte 88, 6, 152, 7, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 66, 66, 66, 66, 66, 105, 1, 1, 1, 1, 1, 104, 66, 66, 66, 66
.byte 66, 66, 66, 66, 66, 105, 1, 1, 1, 1, 1, 104, 66, 66, 66, 66
.byte 66, 66, 66, 66, 105, 1, 1, 1, 1, 1, 1, 1, 104, 66, 66, 66
.byte 66, 66, 66, 66, 105, 1, 1, 1, 1, 1, 1, 1, 104, 66, 66, 66
.byte 66, 66, 66, 66, 105, 1, 1, 1, 1, 1, 1, 1, 104, 66, 66, 66
.byte 66, 66, 66, 105, 1, 1, 1, 1, 1, 1, 1, 1, 1, 66, 66, 66
.byte 66, 66, 66, 105, 1, 1, 1, 1, 1, 1, 1, 1, 1, 66, 66, 66
.byte 131, 131, 131, 131, 1, 1, 1, 1, 1, 1, 1, 1, 1, 66, 66, 66
.byte 131, 131, 131, 131, 1, 1, 1, 1, 1, 1, 1, 1, 1, 66, 66, 66
.byte 66, 66, 66, 105, 1, 1, 1, 1, 1, 1, 1, 1, 1, 66, 66, 66
.byte 66, 66, 66, 105, 1, 1, 1, 1, 1, 1, 1, 1, 1, 66, 66, 66
.byte 66, 66, 66, 105, 1, 1, 1, 1, 1, 1, 1, 1, 1, 66, 66, 66
; Sprites
.byte 54, 4, 58, 4, 120, 4, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 93, 93, 93, 93, 24, 24, 24, 24, 24, 24, 24, 24, 93, 93, 93, 93
.byte 93, 93, 93, 93, 27, 27, 27, 27, 27, 27, 27, 27, 93, 93, 93, 93
.byte 66, 66, 66, 66, 1, 1, 1, 1, 1, 1, 1, 1, 66, 66, 66, 66
.byte 66, 66, 66, 66, 106, 106, 1, 1, 1, 1, 106, 106, 66, 66, 66, 66
.byte 66, 66, 66, 66, 66, 66, 106, 132, 132, 106, 66, 66, 66, 66, 66, 66
.byte 66, 66, 66, 66, 66, 66, 66, 132, 132, 66, 66, 66, 66, 66, 66, 66
.byte 107, 107, 107, 107, 107, 107, 107, 132, 132, 107, 107, 107, 107, 107, 107, 107
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5, 5
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5, 5
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5, 5
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5, 5
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5, 5
; Sprites
.byte 39, 0, 54, 4, 57, 4, 116, 3, 122, 3, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 5, 5, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 5, 5, 5
.byte 5, 5, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 32, 36, 36
.byte 5, 5, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 34, 32, 32, 32
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 34, 32, 32
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 34, 32, 32
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 34, 32, 32
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 34, 32, 32
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 34, 32, 32
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 34, 32, 32
.byte 5, 5, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 32, 32
.byte 5, 5, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32
.byte 5, 5, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32
; Sprites
.byte 71, 0, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106
.byte 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66
.byte 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
.byte 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
; Sprites
.byte 131, 3, 140, 3, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
.byte 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
.byte 1, 1, 1, 1, 104, 106, 106, 106, 106, 106, 106, 105, 1, 1, 1, 1
.byte 1, 1, 1, 1, 104, 66, 107, 107, 107, 107, 66, 105, 1, 1, 1, 1
.byte 1, 1, 1, 1, 104, 66, 1, 1, 1, 1, 66, 105, 1, 1, 1, 1
.byte 1, 1, 1, 1, 104, 66, 1, 1, 1, 1, 66, 105, 1, 1, 1, 1
.byte 1, 1, 1, 1, 104, 66, 106, 132, 132, 106, 66, 105, 1, 1, 1, 1
.byte 1, 1, 1, 1, 107, 107, 107, 132, 132, 107, 107, 105, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 51, 3, 60, 3, 72, 0, 115, 3, 124, 3, 133, 3, 138, 3, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.include "levels/position_overrides/lvl3_4_3.asm"
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106
.byte 106, 106, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66
.byte 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 107
.byte 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 5, 5, 5, 5, 1, 1, 1, 1, 5, 5, 5
.byte 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
.byte 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
; Sprites
.byte 129, 2, 135, 3, 140, 2, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5, 5, 5, 5, 5, 5
.byte 5, 5, 5, 5, 5, 134, 134, 134, 134, 134, 5, 5, 5, 5, 5, 5
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 5, 5, 5, 5, 5, 134, 134, 135, 134, 134, 5, 5, 5, 5, 5, 5
.byte 5, 5, 5, 5, 5, 134, 134, 143, 134, 134, 5, 5, 5, 5, 5, 5
.byte 1, 1, 26, 24, 25, 1, 1, 1, 1, 1, 5, 5, 5, 5, 5, 5
.byte 1, 1, 26, 24, 25, 1, 1, 1, 1, 1, 1, 5, 5, 5, 5, 5
.byte 1, 1, 26, 24, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 5, 5
.byte 1, 1, 26, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 5, 5
.byte 1, 1, 26, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 5, 5
.byte 1, 1, 26, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 5, 5
.byte 1, 1, 5, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 5, 5
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5
.byte 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106
.byte 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66
.byte 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5
.byte 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5, 5
.byte 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
.byte 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
; Sprites
.byte 114, 2, 122, 2, 133, 2, 135, 2, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 106, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 66, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
.byte 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
; Sprites
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
.byte 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
; End sprite data
;Overrides
.byte $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0, $f0
.byte 0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0,0, 0, 0, 0
; No last room because rom space | 43.262724 | 84 | 0.445234 |
2d5dcef6bcd279613aa47cab9f0c6bdda53abd14 | 419 | asm | Assembly | programs/oeis/284/A284445.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/284/A284445.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/284/A284445.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A284445: Sum_{d|n, d = 4 mod 7} d.
; 0,0,0,4,0,0,0,4,0,0,11,4,0,0,0,4,0,18,0,4,0,11,0,4,25,0,0,4,0,0,0,36,11,0,0,22,0,0,39,4,0,0,0,15,0,46,0,4,0,25,0,4,53,18,11,4,0,0,0,64,0,0,0,36,0,11,67,4,0,0,0,22,0,74,25,4,11,39,0,4,81,0,0,4,0,0,0,103,0,18,0,50,0,0,95,36,0,0,11,29
add $0,1
mov $2,$0
mov $0,211907
lpb $0
sub $0,6
mov $3,$2
dif $3,$0
cmp $3,$2
cmp $3,0
mul $3,$0
sub $0,1
add $1,$3
lpe
mov $0,$1
| 23.277778 | 233 | 0.534606 |
3ddb4e212889a9c4f8e3e7413c16ea1b1523bf8e | 573 | asm | Assembly | data/baseStats/sylveon.asm | adhi-thirumala/EvoYellow | 6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c | [
"Unlicense"
] | 16 | 2018-08-28T21:47:01.000Z | 2022-02-20T20:29:59.000Z | data/baseStats/sylveon.asm | adhi-thirumala/EvoYellow | 6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c | [
"Unlicense"
] | 5 | 2019-04-03T19:53:11.000Z | 2022-03-11T22:49:34.000Z | data/baseStats/sylveon.asm | adhi-thirumala/EvoYellow | 6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c | [
"Unlicense"
] | 2 | 2019-12-09T19:46:02.000Z | 2020-12-05T21:36:30.000Z | ;SylveonBaseStats: ; 3926a (e:526a)
db DEX_SYLVEON ; pokedex id
db 95 ; base hp
db 65 ; base attack
db 65 ; base defense
db 60 ; base speed
db 130 ; base special
db FAIRY ; species type 1
db FAIRY ; species type 2
db FULL_HEAL ; catch rate
db 196 ; base exp yield
INCBIN "pic/ymon/sylveon.pic",0,1 ; 66, sprite dimensions
dw SylveonPicFront
dw SylveonPicBack
; moves
db TACKLE
db 0
db 0
db 0
db 0 ; growth rate
; learnset
tmlearn 5,6,8
tmlearn 9,10,15,16
tmlearn 0
tmlearn 28,29,30,31,32
tmlearn 33,34,39,40
tmlearn 42,44,46
tmlearn 49,50,54
db BANK(SylveonPicFront) | 19.758621 | 57 | 0.734729 |
2c3ebe859e2eec2b0663ca65069e7bac9ccad1db | 913 | asm | Assembly | programs/oeis/227/A227085.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/227/A227085.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/227/A227085.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A227085: Number of n X 2 binary arrays indicating whether each 2 X 2 subblock of a larger binary array has lexicographically increasing rows and columns, for some larger (n+1) X 3 binary array with rows and columns of the latter in lexicographically nondecreasing order.
; 4,12,29,62,122,225,393,655,1048,1618,2421,3524,5006,6959,9489,12717,16780,21832,28045,35610,44738,55661,68633,83931,101856,122734,146917,174784,206742,243227,284705,331673,384660,444228,510973,585526,668554
mov $14,$0
mov $16,$0
add $16,1
lpb $16
clr $0,14
mov $0,$14
sub $16,1
sub $0,$16
mov $11,$0
mov $13,$0
add $13,1
lpb $13
clr $0,11
mov $0,$11
sub $13,1
sub $0,$13
mov $9,$0
mul $0,2
mov $1,4
lpb $0
mov $0,-3
mov $1,2
add $1,$9
add $1,1
mov $10,$9
add $10,2
lpe
bin $10,3
add $10,$1
add $12,$10
lpe
add $15,$12
lpe
mov $1,$15
| 24.026316 | 272 | 0.630887 |
630e97e9e44181b45afe4ff9a4b2cb529958b2d1 | 4,353 | asm | Assembly | test/arch/FormatText.asm | yunxu1019/efront | b30398485e702785ae7360190e50fe329addcfb3 | [
"MIT"
] | 1 | 2019-04-26T02:56:54.000Z | 2019-04-26T02:56:54.000Z | test/arch/FormatText.asm | yunxu1019/efront | b30398485e702785ae7360190e50fe329addcfb3 | [
"MIT"
] | 3 | 2019-06-10T02:59:29.000Z | 2021-06-06T01:09:58.000Z | test/arch/FormatText.asm | yunxu1019/efront | b30398485e702785ae7360190e50fe329addcfb3 | [
"MIT"
] | 1 | 2020-08-16T03:19:29.000Z | 2020-08-16T03:19:29.000Z | .386
.model flat,stdcall
option casemap:none
;
; Include 文件定义
;
__UNICODE__ equ 1
include windows.inc
include user32.inc
includelib user32.lib
include kernel32.inc
includelib kernel32.lib
include comdlg32.inc
includelib comdlg32.lib
;
;Equ 等值
;
ICO_MAIN equ 1000
DLG_MAIN equ 100
IDC_FILE equ 101
IDC_BROWSE equ 102
;
;数据段
;
.data?
hInstance dd ?
hWinMain dd ?
szFileName db MAX_PATH dup(?)
.const
szFileExt db '文本文件','*.txt',0,0,0,0
szNewFile db '.new.text',0
szErrOpenFile db '无法打开源文件!'
szErrCreateFile db '无法创建新的文本文件!',0
szSuccess db '文件转换成功,保存为',0dh,0ah,'%s',0
szSuccessCap db '提示',0
.code
;
; 在缓冲区找出一行数据,处理换行并保存
;
_FormatText proc uses esi _lpData,_dwSize,_hFile
local @szBuffer[128]:byte,@dwBytesWrite
mov esi,_lpData
mov ecx,_dwSize
lea edi,@szBuffer
xor edx,edx
cld
_LoopBegin:
or ecx,ecx
jz _WriteLine
lodsb
dec ecx
cmp al,0dh
jz _LoopBegin
cmp al,0ah
jz _LineEnd
stosb
inc edx
cmp edx,sizeof @szBuffer-2
jae _WriteLine
jmp _LoopBegin
_LineEnd:
mov ax,0a0dh
stosw
inc edx
inc edx
_WriteLine:
push ecx
.if edx
invoke WriteFile,_hFile,addr @szBuffer,edx,addr @dwBytesWrite,NULL
.endif
lea edi,@szBuffer
xor edx,edx
pop ecx
or ecx,ecx
jnz _LoopBegin
ret
_FormatText endp
;
_ProcFile proc
local @hFile,@hFileNew,@dwBytesRead
local @szNewFile[MAX_PATH]:byte
local @szReadBuffer[512]:byte
;
; 打开文件
;
invoke CreateFile,addr szFileName,GENERIC_READ,FILE_SHARE_READ,0,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,0
.if eax==INVALID_HANDLE_VALUE
invoke MessageBox,hWinMain,addr szErrOpenFile,NULL,MB_OK or MB_ICONEXCLAMATION
ret
.endif
mov @hFile,eax
;
; 创建输出文件
;
invoke lstrcpy,addr @szNewFile,addr szFileName
invoke lstrcat,addr @szNewFile,addr szNewFile
invoke CreateFile,addr @szNewFile,GENERIC_WRITE,FILE_SHARE_READ,0,CREATE_ALWAYS,FILE_ATTRIBUTE_NORMAL,0
.if eax==INVALID_HANDLE_VALUE
invoke MessageBox,hWinMain,addr szErrCreateFile,NULL,MB_OK or MB_ICONEXCLAMATION
invoke CloseHandle,@hFile
ret
.endif
mov @hFileNew,eax
;
; 循环读出文件并处理每个字节
;
xor eax,eax
mov @dwBytesRead,eax
.while TRUE
lea esi,@szReadBuffer
invoke ReadFile,@hFile,esi,sizeof @szReadBuffer,addr @dwBytesRead,0
.break .if !@dwBytesRead
invoke _FormatText,esi,@dwBytesRead,@hFileNew
.endw
invoke CloseHandle,@hFile
invoke CloseHandle,@hFileNew
invoke wsprintf,addr @szReadBuffer,addr szSuccess,addr @szNewFile
invoke MessageBox,hWinMain,addr @szReadBuffer,addr szSuccessCap,MB_OK
ret
_ProcFile endp
;
_ProcDlgMain proc uses ebx edi esi hWnd,wMsg,wParam,lParam
local @stOpenFileName:OPENFILENAME
mov eax,wMsg
.if eax==WM_CLOSE
invoke EndDialog,hWnd,NULL
.elseif eax==WM_INITDIALOG
push hWnd
pop hWinMain
invoke LoadIcon,hInstance,ICO_MAIN
invoke SendMessage,hWnd,WM_SETICON,ICON_BIG,eax
invoke SendDlgItemMessage,hWnd,IDC_FILE,EM_SETLIMITTEXT,MAX_PATH,0
.elseif eax==WM_COMMAND
mov eax,wParam
.if ax==IDC_BROWSE
invoke RtlZeroMemory,addr @stOpenFileName,sizeof OPENFILENAME
mov @stOpenFileName.lStructSize,sizeof @stOpenFileName
mov @stOpenFileName.Flags,OFN_FILEMUSTEXIST or OFN_PATHMUSTEXIST
push hWinMain
pop @stOpenFileName.hwndOwner
mov @stOpenFileName.lpstrFilter,offset szFileExt
mov @stOpenFileName.lpstrFile,offset szFileName
mov @stOpenFileName.nMaxFile,MAX_PATH
invoke GetOpenFileName,addr @stOpenFileName
.if eax
invoke SetDlgItemText,hWnd,IDC_FILE,addr szFileName
.endif
.elseif ax== IDC_FILE
invoke GetDlgItemText,hWnd,IDC_FILE,addr szFileName,MAX_PATH
mov ebx,eax
invoke GetDlgItem,hWnd,IDOK
invoke EnableWindow,eax,ebx
.elseif ax==IDOK
call _ProcFile
.endif
.else
mov eax,FALSE
ret
.endif
mov eax,TRUE
ret
_ProcDlgMain endp
start:
invoke GetModuleHandle,NULL
mov hInstance,eax
invoke DialogBoxParam,hInstance,DLG_MAIN,NULL,offset _ProcDlgMain,NULL
invoke ExitProcess,NULL
end start | 25.910714 | 107 | 0.690558 |
a7fd2115ca8835d62afe1a599217f187909afe00 | 380 | asm | Assembly | programs/oeis/059/A059031.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/059/A059031.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/059/A059031.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A059031: Fifth main diagonal of A059026: a(n) = B(n+4,n) = lcm(n+4,n)/(n+4) + lcm(n+4,n)/n - 1 for all n >= 1.
; 5,3,9,2,13,7,17,4,21,11,25,6,29,15,33,8,37,19,41,10,45,23,49,12,53,27,57,14,61,31,65,16,69,35,73,18,77,39,81,20,85,43,89,22,93,47,97,24,101,51,105,26,109,55,113,28,117,59,121,30,125,63,129,32,133,67
add $0,3
mov $2,2
add $2,$0
mul $0,2
gcd $2,4
div $0,$2
sub $0,1
| 34.545455 | 200 | 0.607895 |
9af198de7ef06284c9b1d0545c71859919900b86 | 6,178 | asm | Assembly | conf/S18_GoTwo_pingpong.asm | liffiton/256asm | bb4edad1c198a76294e8d6becdd3733663d837b4 | [
"MIT"
] | null | null | null | conf/S18_GoTwo_pingpong.asm | liffiton/256asm | bb4edad1c198a76294e8d6becdd3733663d837b4 | [
"MIT"
] | null | null | null | conf/S18_GoTwo_pingpong.asm | liffiton/256asm | bb4edad1c198a76294e8d6becdd3733663d837b4 | [
"MIT"
] | null | null | null | # PingPong in GoTwoAssembly
#
# Authors: Duc Tran and Ryan Ozelie
# Date: April, 2018
#
# All variables
# ballPos: x/y $1,$2 (x is horizontal)
# ballPixel $14
# direction: horizontal/vertical (+1/-1) $3,$4
# left pad (+8 for 'mid' pixel) $5
# right pad (+8 for 'mid' pixel) $6
# left pad score $8 (store as pixel position, display from left of bottom row)
# right pad score $9 (store as pixel position, display from right of bottom row)
# initialize special registers, reduct seti instruction
seti $13 8 #also 1000
seti $12 4 #also 0100
seti $11 2 #also 0010
seti $10 1 #also 0001
# initialize
resetScore:
seti $8 55 #score left pad, currently 0
seti $9 64 #score right pad, currently 0
#clear all scoring pixels
seti $7 56
out $7 0
addi $7 1
out $7 0
addi $7 1
out $7 0
addi $7 1
out $7 0
addi $7 1
out $7 0
addi $7 1
out $7 0
addi $7 1
out $7 0
addi $7 1
out $7 0
reset:
out $5 0 #clear pad1
addi $5 8
out $5 0
addi $5 8
out $5 0
out $6 0 #clear pad2
addi $6 8
out $6 0
addi $6 8
out $6 0
start:
#turn off previous ball
out $14 0
seti $5 8 #initialize pad1
seti $6 15 #initialize pad2
out $5 1 #out pad1 1st pixel
add $7 $5 $13
out $7 1 #out pad1 2nd pixel
add $7 $7 $13
out $7 1 #out pad1 3rd pixel
out $6 1 #out pad2 1st pixel
add $7 $6 $13
out $7 1 #out pad2 2nd pixel
add $7 $7 $13
out $7 1 #out pad2 3rd pixel
seti $1 1 #initialize x,y
seti $2 1
seti $3 1 #initialize direction
seti $4 1
add $7 $2 $2 #multiply y by 8
add $7 $7 $7
add $7 $7 $7
add $7 $7 $1 #add x for ball pixel
out $7 1 #out ball
add $14 $zero $7 #always keep ball display pos in $14 update after every loop
updateLoop:
add $1 $1 $3 #update x
add $2 $2 $4 #update y
add $7 $2 $2 #multiply y by 8
add $7 $7 $7
add $7 $7 $7
add $7 $7 $1 #add x for ball pixel
out $14 0
out $7 1
add $14 $zero $7 #update ball pixel
#check ball die
checkBallDie:
bz $1 scoreleft #die on left edge
seti $7 7
sub $7 $1 $7
bz $7 scoreright #die on right edge
# check pad contact with horizontal position
leftPadContact:
sub $7 $3 $10 #right or left?
bz $7 rightPadContact #right pad
add $7 $zero $14 #left pad
addi $7 -1
sub $7 $7 $5
bz $zero padContact
rightPadContact:
add $7 $zero $14
addi $7 1
sub $7 $7 $6
padContact:
bz $7 reverseX #check for match with pad-8/pad-16/pad-24
addi $7 -8
bz $7 reverseX
addi $7 -8
bz $7 reverseX
bz $zero cornerPad #no contact then skip to next check
reverseX:
seti $7 1
sub $7 $3 $7
bz $7 xToLeft #change direction to left
seti $3 1 #change direction to right
bz $zero checkY
xToLeft:
seti $3 -1
bz $zero checkY
# check corner case
cornerPad:
# top corner?
sub $7 $4 $10 #what vertical direction? if 1 check top case, else check bot case
bz $7 topCorner
bz $zero botCorner
topCorner:
#top left corner
sub $7 $5 $13 #subtract 8 from pad 'high' pixel
addi $7 1 #add 1 to match with ball pixel
sub $7 $7 $14
bz $7 reverseXY
# top right corner
sub $7 $6 $13 #subtract 8 from pad 'high' pixel
addi $7 -1 #subtract 1 to match with ball pixel
sub $7 $7 $14
bz $7 reverseXY
bz $zero checkY #no need to reverse, skip to next check
# bottom corner
botCorner:
#botom left corner
seti $7 25
add $7 $5 $7 #add 25 for 'low' pad pixel+1
sub $7 $7 $14 #check if match ball pixel
bz $7 reverseXY
#bottom right corner
seti $7 23
add $7 $6 $7 #add 23 for 'low' pad pixel-1
sub $7 $7 $14 #check if match ball pixel
bz $7 reverseXY
bz $zero checkY #no need to reverse, skip to next check
#reverse in corner case
reverseXY:
sub $7 $3 $10 #check if x-direction equal to 1
bz $7 xToNegative
seti $3 1
bz $zero reverseY
xToNegative:
seti $3 -1
reverseY:
sub $7 $4 $10 #check if y-direction equal to 1
bz $7 yToNegative
seti $4 1
bz $zero checkY
yToNegative:
seti $4 -1
# check contact with top/bottom edge
checkY:
bz $2 ydirUp #at top edge?
seti $7 6
sub $7 $2 $7
bz $7 ydirDown #at bottom edge?
bz $zero input
ydirUp:
seti $4 1
bz $zero input
ydirDown:
seti $4 -1
#input check and update pad
input:
and $7 $13 $input #first button - pad1 down
bz $7 Btn2
out $5 0 #turn off top pixel
addi $5 8
seti $7 16 #turn on pixel 2 blocks away
add $7 $5 $7
out $7 1
Btn2:
and $7 $12 $input #second button - pad1 up
bz $7 Btn3
addi $5 -8
out $5 1
seti $7 24 #turn off pixel 3 blocks away from $5
add $7 $5 $7
out $7 0
Btn3:
and $7 $11 $input #third button - pad2 down
bz $7 Btn4
out $6 0
addi $6 8
seti $7 16
add $7 $6 $7
out $7 1
Btn4:
and $7 $10 $input #forth button - pad2 up
bz $7 done
addi $6 -8
out $6 1
seti $7 24
add $7 $6 $7
out $7 0
done:
bz $zero updateLoop #end of game loop
#scoring left pad
scoreright:
addi $8 1 #increment score
out $8 1
seti $7 59 #win when score pixel reach 59
sub $7 $8 $7
bz $7 resetScore #reset match
bz $zero reset #next game
#scoring right pad
scoreleft:
addi $9 -1
out $9 1
seti $7 60 #win when score pixel reach 60
sub $7 $9 $7
bz $7 resetScore #reset match
bz $zero reset #next game
| 24.613546 | 92 | 0.531887 |
def8cbed69c0ac72e9e2dd2dd99353f4b65a8729 | 371 | asm | Assembly | programs/oeis/044/A044632.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/044/A044632.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/044/A044632.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A044632: Numbers n such that string 0,0 occurs in the base 9 representation of n but not of n+1.
; 81,162,243,324,405,486,567,648,737,810,891,972,1053,1134,1215,1296,1377,1466,1539,1620,1701,1782,1863,1944,2025,2106,2195,2268,2349,2430,2511,2592,2673,2754,2835,2924,2997,3078,3159
mov $1,8
mov $3,$0
mod $3,9
div $3,8
mul $1,$3
add $1,81
mov $2,$0
mul $2,81
add $1,$2
| 28.538462 | 183 | 0.71159 |
93988303b7ec48220c7932b92ceae79912f541da | 1,586 | asm | Assembly | programs/oeis/062/A062918.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/062/A062918.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/062/A062918.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A062918: Sum of the digit reversals of the first n natural numbers.
; 1,3,6,10,15,21,28,36,45,46,57,78,109,150,201,262,333,414,505,507,519,541,573,615,667,729,801,883,975,978,991,1014,1047,1090,1143,1206,1279,1362,1455,1459,1473,1497,1531,1575,1629,1693,1767,1851,1945,1950,1965,1990,2025,2070,2125,2190,2265,2350,2445,2451,2467,2493,2529,2575,2631,2697,2773,2859,2955,2962,2979,3006,3043,3090,3147,3214,3291,3378,3475,3483,3501,3529,3567,3615,3673,3741,3819,3907,4005,4014,4033,4062,4101,4150,4209,4278,4357,4446,4545,4546,4647,4848,5149,5550,6051,6652,7353,8154,9055,9066,9177,9388,9699,10110,10621,11232,11943,12754,13665,13686,13807,14028,14349,14770,15291,15912,16633,17454,18375,18406,18537,18768,19099,19530,20061,20692,21423,22254,23185,23226,23367,23608,23949,24390,24931,25572,26313,27154,28095,28146,28297,28548,28899,29350,29901,30552,31303,32154,33105,33166,33327,33588,33949,34410,34971,35632,36393,37254,38215,38286,38457,38728,39099,39570,40141,40812,41583,42454,43425,43506,43687,43968,44349,44830,45411,46092,46873,47754,48735,48826,49017,49308,49699,50190,50781,51472,52263,53154,54145,54147,54249,54451,54753,55155,55657,56259,56961,57763,58665,58677,58789,59001,59313,59725,60237,60849,61561,62373,63285,63307,63429,63651,63973,64395,64917,65539,66261,67083,68005,68037,68169,68401,68733,69165,69697,70329,71061,71893,72825,72867,73009,73251,73593,74035,74577,75219,75961,76803,77745,77797
mov $2,$0
add $2,1
mov $3,$0
lpb $2
mov $0,$3
sub $2,1
sub $0,$2
add $0,1
cal $0,4086 ; Read n backwards (referred to as R(n) in many sequences).
add $1,$0
lpe
| 105.733333 | 1,342 | 0.783733 |
921e4ddb099ddfd1b58cd442a956b6f368b9b789 | 204 | asm | Assembly | data/pokemon/dex_entries/golduck.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 28 | 2019-11-08T07:19:00.000Z | 2021-12-20T10:17:54.000Z | data/pokemon/dex_entries/golduck.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 13 | 2020-01-11T17:00:40.000Z | 2021-09-14T01:27:38.000Z | data/pokemon/dex_entries/golduck.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 22 | 2020-05-28T17:31:38.000Z | 2022-03-07T20:49:35.000Z | db "DUCK@" ; species name
dw 507, 1690 ; height, weight
db "It swims grace-"
next "fully along on the"
next "quiet, slow-moving"
page "rivers and lakes"
next "of which it is so"
next "fond.@"
| 18.545455 | 30 | 0.651961 |
107c05bd3c4805154f782d90ed362f65765728d8 | 7,885 | asm | Assembly | Transynther/x86/_processed/NC/_ht_zr_un_/i3-7100_9_0x84_notsx.log_21829_3049.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NC/_ht_zr_un_/i3-7100_9_0x84_notsx.log_21829_3049.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NC/_ht_zr_un_/i3-7100_9_0x84_notsx.log_21829_3049.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 %r15
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x9451, %rsi
lea addresses_D_ht+0x1ede1, %rdi
nop
nop
nop
nop
xor $12897, %r15
mov $70, %rcx
rep movsw
inc %rax
lea addresses_D_ht+0x1d181, %r9
nop
xor %rbp, %rbp
vmovups (%r9), %ymm1
vextracti128 $0, %ymm1, %xmm1
vpextrq $0, %xmm1, %rax
nop
nop
nop
nop
xor %rsi, %rsi
lea addresses_WT_ht+0x114c1, %rsi
lea addresses_WT_ht+0xd9d1, %rdi
nop
nop
cmp %r12, %r12
mov $85, %rcx
rep movsl
nop
nop
nop
dec %r9
lea addresses_WT_ht+0x6fd1, %rsi
lea addresses_WC_ht+0x139d1, %rdi
nop
nop
xor %rbp, %rbp
mov $78, %rcx
rep movsl
cmp $32093, %r15
lea addresses_UC_ht+0x89d1, %rcx
nop
nop
nop
nop
cmp $8300, %rbp
mov (%rcx), %rax
nop
nop
and $36631, %r9
lea addresses_A_ht+0xe36a, %r9
nop
nop
nop
sub %rax, %rax
movb $0x61, (%r9)
and $30721, %r12
lea addresses_WC_ht+0x83d1, %r15
sub $44152, %rbp
movl $0x61626364, (%r15)
nop
nop
nop
nop
sub %rbp, %rbp
lea addresses_WC_ht+0xb651, %rdi
nop
nop
nop
sub %rsi, %rsi
mov $0x6162636465666768, %rax
movq %rax, %xmm6
vmovups %ymm6, (%rdi)
nop
nop
nop
cmp $25317, %r9
lea addresses_WC_ht+0xaf69, %r9
clflush (%r9)
sub $19831, %rdi
movb (%r9), %cl
nop
nop
nop
inc %r9
lea addresses_UC_ht+0x17c5a, %rax
nop
and %rbp, %rbp
mov $0x6162636465666768, %rsi
movq %rsi, %xmm3
vmovups %ymm3, (%rax)
nop
nop
nop
nop
xor $42022, %rsi
lea addresses_UC_ht+0x45a1, %rbp
nop
nop
nop
nop
nop
sub %rcx, %rcx
movups (%rbp), %xmm6
vpextrq $1, %xmm6, %r12
nop
nop
xor $34967, %rbp
lea addresses_A_ht+0x19a69, %rcx
nop
add $13008, %rsi
movups (%rcx), %xmm1
vpextrq $0, %xmm1, %rbp
nop
dec %r9
lea addresses_UC_ht+0x71d1, %rsi
lea addresses_UC_ht+0x186e1, %rdi
nop
nop
nop
xor %r15, %r15
mov $52, %rcx
rep movsq
nop
nop
nop
nop
sub $51671, %rdi
lea addresses_UC_ht+0x8dd1, %rax
nop
nop
nop
nop
xor %rcx, %rcx
movw $0x6162, (%rax)
and %rax, %rax
pop %rsi
pop %rdi
pop %rcx
pop %rbp
pop %rax
pop %r9
pop %r15
pop %r12
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r12
push %r13
push %r8
push %rbx
push %rdi
// Load
lea addresses_UC+0x1e420, %r11
inc %r8
vmovups (%r11), %ymm4
vextracti128 $1, %ymm4, %xmm4
vpextrq $1, %xmm4, %r13
nop
sub %rdi, %rdi
// Faulty Load
mov $0x7b674b00000005d1, %r10
clflush (%r10)
nop
nop
xor %rbx, %rbx
vmovups (%r10), %ymm4
vextracti128 $1, %ymm4, %xmm4
vpextrq $0, %xmm4, %r11
lea oracles, %r10
and $0xff, %r11
shlq $12, %r11
mov (%r10,%r11,1), %r11
pop %rdi
pop %rbx
pop %r8
pop %r13
pop %r12
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'}
{'src': {'type': 'addresses_UC', 'same': False, 'size': 32, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'type': 'addresses_NC', 'same': True, 'size': 32, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'type': 'addresses_WC_ht', 'congruent': 6, 'same': False}, 'dst': {'type': 'addresses_D_ht', 'congruent': 4, 'same': True}, 'OP': 'REPM'}
{'src': {'type': 'addresses_D_ht', 'same': False, 'size': 32, 'congruent': 3, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_WT_ht', 'congruent': 4, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 10, 'same': False}, 'OP': 'REPM'}
{'src': {'type': 'addresses_WT_ht', 'congruent': 7, 'same': False}, 'dst': {'type': 'addresses_WC_ht', 'congruent': 10, 'same': False}, 'OP': 'REPM'}
{'src': {'type': 'addresses_UC_ht', 'same': False, 'size': 8, 'congruent': 10, 'NT': False, 'AVXalign': True}, 'OP': 'LOAD'}
{'dst': {'type': 'addresses_A_ht', 'same': False, 'size': 1, 'congruent': 0, 'NT': False, 'AVXalign': True}, 'OP': 'STOR'}
{'dst': {'type': 'addresses_WC_ht', 'same': False, 'size': 4, 'congruent': 1, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'dst': {'type': 'addresses_WC_ht', 'same': False, 'size': 32, 'congruent': 5, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'src': {'type': 'addresses_WC_ht', 'same': False, 'size': 1, 'congruent': 3, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'dst': {'type': 'addresses_UC_ht', 'same': False, 'size': 32, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'src': {'type': 'addresses_UC_ht', 'same': False, 'size': 16, 'congruent': 4, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_A_ht', 'same': False, 'size': 16, 'congruent': 2, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_UC_ht', 'congruent': 8, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 3, 'same': False}, 'OP': 'REPM'}
{'dst': {'type': 'addresses_UC_ht', 'same': False, 'size': 2, 'congruent': 9, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'48': 8, 'ce': 1, '46': 1109, '70': 1, '49': 12881, '00': 7827, '84': 1, '2c': 1}
00 49 49 49 00 00 00 49 00 49 00 49 49 46 49 49 49 49 00 49 00 49 49 00 00 49 00 49 49 00 00 49 00 49 00 49 49 00 49 00 49 00 49 49 00 46 49 00 49 49 00 49 49 49 49 00 49 49 46 00 49 49 46 49 00 49 49 00 49 00 49 49 00 49 49 49 46 49 00 00 49 00 00 00 49 49 00 49 00 49 46 49 49 49 49 46 00 00 49 49 00 49 00 49 49 00 49 49 00 49 00 49 49 49 49 46 00 49 49 00 49 49 49 49 49 49 49 00 49 00 49 49 00 49 00 49 49 49 49 46 49 00 49 49 49 49 49 49 49 00 49 49 00 46 00 49 49 00 49 49 00 49 00 49 49 49 00 00 49 49 49 00 49 49 49 46 00 00 00 49 49 49 00 49 49 00 49 49 00 49 49 49 00 00 49 49 49 49 00 49 00 49 49 49 00 49 49 00 49 00 49 00 49 00 49 49 00 49 00 49 00 49 00 49 49 00 49 00 49 49 49 49 49 49 49 00 49 49 49 46 00 49 00 00 49 00 49 49 46 00 49 49 00 00 00 49 46 00 49 49 49 00 49 00 46 49 00 49 49 00 49 00 49 00 49 00 49 46 49 00 49 49 00 00 00 49 49 00 49 49 00 49 49 49 49 46 49 49 49 49 00 49 49 49 00 49 49 49 00 49 00 49 49 00 49 00 49 49 00 00 49 49 00 49 00 49 49 00 49 49 49 00 00 49 49 49 00 49 49 49 00 49 49 00 49 49 49 00 49 49 00 49 49 49 49 49 00 46 49 00 49 00 49 49 49 00 00 49 00 46 00 49 49 49 00 49 49 49 00 00 49 49 00 49 49 00 49 49 00 49 00 49 00 49 49 00 49 00 00 49 00 00 49 49 49 46 49 00 49 49 00 00 49 49 00 49 00 49 00 49 49 49 49 49 49 49 49 49 46 00 49 49 49 46 00 49 49 49 49 49 49 49 00 49 49 49 00 49 00 49 00 49 00 00 49 00 49 00 49 00 00 49 49 00 49 00 49 49 49 49 00 00 49 49 46 00 49 00 49 49 00 49 00 00 49 00 49 49 00 49 49 49 49 00 49 49 46 00 49 49 00 00 00 49 00 00 49 49 00 49 49 00 49 00 46 49 00 49 00 00 49 49 49 00 00 49 49 00 49 49 49 46 49 49 00 49 49 00 00 49 49 00 49 00 49 00 49 00 49 49 49 00 49 49 00 49 00 49 00 00 00 49 00 49 00 49 46 00 00 49 49 00 49 49 00 49 00 49 49 00 49 00 49 46 49 49 49 49 00 00 00 49 00 00 49 46 49 00 49 00 00 49 00 00 00 00 00 00 00 49 49 00 49 49 49 49 49 00 00 49 49 00 00 49 00 00 49 49 00 49 49 49 49 49 46 00 00 00 00 00 49 49 00 49 49 00 49 49 00 49 49 49 49 49 49 49 49 49 00 49 49 00 00 00 00 49 49 00 49 46 49 49 46 49 00 00 49 00 00 49 49 49 00 49 49 00 49 00 49 00 00 49 00 00 49 49 00 49 49 49 00 00 00 49 00 49 49 49 00 46 00 49 49 46 00 00 49 49 49 00 49 49 49 00 49 00 49 00 49 00 49 49 00 49 00 49 00 49 00 49 49 00 00 49 49 00 49 49 49 00 00 49 49 00 49 00 49 00 49 49 00 49 00 00 49 49 49 49 00 49 49 49 46 00 49 49 49 49 49 00 49 49 00 49 00 49 49 00 49 00 49 00 49 49 00 49 00 49 00 49 00 49 49 49 00 49 49 49 00 49 49 00 49 49 49 00 00 00 49 00 49 49 00 49 46 49 00 49 49 00 49 00 49 00 00 49 00 46 00 00 49 49 00 00 00 49 49 00 49 00 49 00 49 49 00 49 00 49 00 49 49 46 49 49 00 49 49 49 00 49 49 00 49 49 00 49 00 00 00 49 00 49 00 49 49 00 00 49 00 49 49 00 00 46 49 49 49 49 00 49 49 00 00 46 49 00 49 00 00 49 00 49 00 00 49 49 00 49 49 00 00 00 49 00 49 00 00 00 00 49 49 49 49 00 49 49 00 49 00 46 00 49 49 49 00 00 00 49 00 00 49 49 49 00 49 49 00 49 00 00 49 49 00 00 00 49 49 49 00 46 00 49 49 49 00 00 00 49 00 00 00 49 49 00 49 49 46 00 49 00 00 49 49 00 49 49 00 00 49 46
*/
| 35.358744 | 2,999 | 0.652632 |
5557466dd84a1f123666d8d0a134c90f9977384f | 471 | asm | Assembly | oeis/056/A056096.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/056/A056096.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/056/A056096.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A056096: Maximum value in the distribution by first value of Prufer code of noncrossing spanning trees on a circle of n+2 points; perhaps the number whose Prufer code starts with 2.
; Submitted by Christian Krause
; 1,4,17,80,403,2128,11628,65208,373175,2170740,12797265,76292736,459162452,2786017120,17024247304,104673837384,647113502847,4020062732140
mul $0,2
mov $1,$0
add $0,1
div $1,2
mov $2,$0
add $0,$1
bin $0,$2
add $1,$2
add $2,2
bin $1,$2
mul $1,4
sub $0,$1
| 27.705882 | 183 | 0.747346 |
d8f1d0e18c10ec8f2ef127930d872cc286a8bca9 | 387 | asm | Assembly | programs/oeis/006/A006044.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/006/A006044.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/006/A006044.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A006044: A traffic light problem.
; 6,96,960,7680,53760,344064,2064384,11796480,64880640,346030080,1799356416,9160359936,45801799680,225485783040,1095216660480,5257039970304,24970939858944,117510305218560,548381424353280,2539871860162560,11683410556747776,53409876830846976
add $0,3
mov $3,4
pow $3,$0
bin $0,3
mov $2,$3
lpb $2
mul $0,$2
mod $2,5
lpe
mov $1,$0
div $1,64
mul $1,6
| 24.1875 | 239 | 0.777778 |
7c5494891eab9b04dc2fe18165de3c40156cf8ba | 1,796 | asm | Assembly | Day-23/divison_practice.asm | MasumBhai/50-Day-challenge-with-Assembly-Language | aadeb6c4a022d089afb10fd22ffd2a768c32036e | [
"CC0-1.0"
] | 1 | 2021-04-07T09:50:40.000Z | 2021-04-07T09:50:40.000Z | Day-23/divison_practice.asm | MasumBhai/50-Day-challenge-with-Assembly-Language | aadeb6c4a022d089afb10fd22ffd2a768c32036e | [
"CC0-1.0"
] | null | null | null | Day-23/divison_practice.asm | MasumBhai/50-Day-challenge-with-Assembly-Language | aadeb6c4a022d089afb10fd22ffd2a768c32036e | [
"CC0-1.0"
] | null | null | null | ; Day-23 Date-14 May,2021
.model small
.stack 100h
include 'emu8086.inc'
.data
n_line db 0ah,0dh,"$"
quotient db 0ah,0dh,"Quotient:$"
reminder db 0ah,0dh,"Reminder:$"
var1 db 6
.code
$copySmallerToLarger proc
;copying smaller value to larger value (Like 8 bit value to 16 bit value)
;mov ax,var1 ;This wouldn't work
;So,apply this method
xor ax,ax ;AH=0 & AL=0
mov al,var1 ;Now Al has value & AH=0 Technically, AX=AL
mov dx,ax
add dx,30h ;adding 48
mov ah,2
int 21h
ret
$copySmallerToLarger endp
$divFunctionOf8Bit proc
xor ax,ax
xor bx,bx
mov ax,80h ;128d
mov bl,3
div bl
; lea dx,quotient
; mov ah,9
; int 21h
; lea dx,reminder
; mov ah,9
; int 21h
ret
$divFunctionOf8Bit endp
$divFunctionOf16Bit proc
xor dx,dx
xor bx,bx
xor ax,ax
mov dx,0h
mov ax,080h ;128d
mov bx,5
div bx
; lea dx,quotient
; mov ah,9
; int 21h
; lea dx,reminder
; mov ah,9
; int 21h
ret
$divFunctionOf16Bit endp
main proc
mov ax,@data
mov ds,ax
mov al,-5h
mov bl,7h
imul bl ;result : -35H
mov ax,50
mov bl,8
div bl ;
;Result will be stored in AX register
;Reminder is stored in AH and Result is stored in AL
;Or it can be put another way
;Dividend Divisor Quotient Reminder
; AX reg/mem8 AL AH
; DX:AX reg/mem16 AX DX
call $copySmallerToLarger
call $divFunctionOf8Bit
call $divFunctionOf16Bit
@stop:
mov ah,4ch
int 21h
main endp
end main
| 18.708333 | 77 | 0.540089 |
fdbbb6f8bc8d3a4dc8c84329e75830360bf7226d | 294 | asm | Assembly | ffight/lcs/1p/5A.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | a4a0c86c200241494b3f1834cd0aef8dc02f7683 | [
"Apache-2.0"
] | 6 | 2020-10-14T15:29:10.000Z | 2022-02-12T18:58:54.000Z | ffight/lcs/1p/5A.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | a4a0c86c200241494b3f1834cd0aef8dc02f7683 | [
"Apache-2.0"
] | null | null | null | ffight/lcs/1p/5A.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | a4a0c86c200241494b3f1834cd0aef8dc02f7683 | [
"Apache-2.0"
] | 1 | 2020-12-17T08:59:10.000Z | 2020-12-17T08:59:10.000Z | copyright zengfr site:http://github.com/zengfr/romhack
007C8C clr.w ($5a,A6) [1p+ E, container+ E]
007C90 tst.b ($58,A6)
00A2C6 dbra D0, $a2c0
00A33C clr.w ($5a,A4)
00A340 clr.w ($66,A4)
00DF72 bra $c516 [1p+5A]
copyright zengfr site:http://github.com/zengfr/romhack
| 26.727273 | 54 | 0.653061 |
80dae076da9585b1275b8821be754a661d44f233 | 942 | asm | Assembly | oeis/181/A181282.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/181/A181282.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/181/A181282.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A181282: a(n) is the number of associate Rota-Baxter words in one idempotent generator x and one idempotent operator P of degree n. Such words are Rota-Baxter words that begin and/or ends with x, and P is applied n times in the word.
; 1,3,12,60,336,2016,12672,82368,549120,3734016,25798656,180590592,1278025728,9128755200,65727037440,476521021440,3475800391680,25489202872320,187815179059200,1389832325038080,10324468700282880,76964221220290560,575558523908259840,4316688929311948800,32461500748425854976,244709774872748752896,1848918299038546132992,13998952835577563578368,106198952545760827146240,807112039347782286311424,6144465847937955469983744,46851552090526910458626048,357775488691296407138598912,2735930207639325466353991680
seq $0,151374 ; Number of walks within N^2 (the first quadrant of Z^2) starting at (0, 0), ending on the vertical axis and consisting of 2n steps taken from {(-1, -1), (-1, 0), (1, 1)}.
mul $0,6
div $0,4
| 134.571429 | 500 | 0.829087 |
aed6680230024a96fac447898c2e5d08157ac90d | 439 | asm | Assembly | programs/oeis/161/A161517.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/161/A161517.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/161/A161517.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A161517: Sum of remainders of c mod k where k = 1, 2, 3, ..., c and c is the n-th composite number.
; 1,3,8,12,13,17,31,36,36,47,61,70,77,85,103,112,125,124,138,167,184,197,218,198,248,269,258,284,328,339,358,374,414,420,449,454,492,529,520,553,578,586,672,693,693,738,725,799,840,835,852,956,981,992,1049,1036
seq $0,72668 ; Numbers one less than composite numbers.
seq $0,4125 ; Sum of remainders of n mod k, for k = 1, 2, 3, ..., n.
| 73.166667 | 210 | 0.683371 |
9e9a8901da9c3989448d16522c715f3fee905e1f | 615 | asm | Assembly | programs/oeis/023/A023658.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/023/A023658.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/023/A023658.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A023658: Convolution of odd numbers and A000201.
; 1,6,18,40,76,129,202,298,420,572,757,978,1239,1543,1893,2292,2743,3250,3816,4444,5137,5898,6731,7639,8625,9693,10846,12087,13419,14845,16369,17994,19723,21560,23508,25570,27749,30048,32471,35021
mov $30,$0
mov $32,$0
add $32,1
lpb $32,1
clr $0,30
mov $0,$30
sub $32,1
sub $0,$32
mov $27,$0
mov $29,$0
add $29,1
lpb $29,1
clr $0,27
mov $0,$27
sub $29,1
sub $0,$29
add $4,$0
add $0,$4
cal $0,187580 ; Rank transform of the sequence 2*floor(n/2); complement of A187581.
add $28,$0
lpe
add $31,$28
lpe
mov $1,$31
| 21.964286 | 196 | 0.63252 |
f5bbedd8db05a5d016d5b233f8510acd5f3fe56c | 42,056 | asm | Assembly | user/init.asm | eric-qian-d/TCP | 76e62ad0ece99d6881879e59500f18eb2756c3e4 | [
"MIT-0"
] | null | null | null | user/init.asm | eric-qian-d/TCP | 76e62ad0ece99d6881879e59500f18eb2756c3e4 | [
"MIT-0"
] | null | null | null | user/init.asm | eric-qian-d/TCP | 76e62ad0ece99d6881879e59500f18eb2756c3e4 | [
"MIT-0"
] | null | null | null |
user/_init: file format elf64-littleriscv
Disassembly of section .text:
0000000000000000 <main>:
char *argv[] = { "sh", 0 };
int
main(void)
{
0: 1101 addi sp,sp,-32
2: ec06 sd ra,24(sp)
4: e822 sd s0,16(sp)
6: e426 sd s1,8(sp)
8: e04a sd s2,0(sp)
a: 1000 addi s0,sp,32
int pid, wpid;
if(open("console", O_RDWR) < 0){
c: 4589 li a1,2
e: 00001517 auipc a0,0x1
12: 87250513 addi a0,a0,-1934 # 880 <malloc+0xe4>
16: 00000097 auipc ra,0x0
1a: 380080e7 jalr 896(ra) # 396 <open>
1e: 04054763 bltz a0,6c <main+0x6c>
mknod("console", 1, 1);
open("console", O_RDWR);
}
dup(0); // stdout
22: 4501 li a0,0
24: 00000097 auipc ra,0x0
28: 3aa080e7 jalr 938(ra) # 3ce <dup>
dup(0); // stderr
2c: 4501 li a0,0
2e: 00000097 auipc ra,0x0
32: 3a0080e7 jalr 928(ra) # 3ce <dup>
for(;;){
printf("init: starting sh\n");
36: 00001917 auipc s2,0x1
3a: 85290913 addi s2,s2,-1966 # 888 <malloc+0xec>
3e: 854a mv a0,s2
40: 00000097 auipc ra,0x0
44: 69e080e7 jalr 1694(ra) # 6de <printf>
pid = fork();
48: 00000097 auipc ra,0x0
4c: 306080e7 jalr 774(ra) # 34e <fork>
50: 84aa mv s1,a0
if(pid < 0){
52: 04054163 bltz a0,94 <main+0x94>
printf("init: fork failed\n");
exit(1);
}
if(pid == 0){
56: cd21 beqz a0,ae <main+0xae>
exec("sh", argv);
printf("init: exec sh failed\n");
exit(1);
}
while((wpid=wait(0)) >= 0 && wpid != pid){
58: 4501 li a0,0
5a: 00000097 auipc ra,0x0
5e: 304080e7 jalr 772(ra) # 35e <wait>
62: fc054ee3 bltz a0,3e <main+0x3e>
66: fea499e3 bne s1,a0,58 <main+0x58>
6a: bfd1 j 3e <main+0x3e>
mknod("console", 1, 1);
6c: 4605 li a2,1
6e: 4585 li a1,1
70: 00001517 auipc a0,0x1
74: 81050513 addi a0,a0,-2032 # 880 <malloc+0xe4>
78: 00000097 auipc ra,0x0
7c: 326080e7 jalr 806(ra) # 39e <mknod>
open("console", O_RDWR);
80: 4589 li a1,2
82: 00000517 auipc a0,0x0
86: 7fe50513 addi a0,a0,2046 # 880 <malloc+0xe4>
8a: 00000097 auipc ra,0x0
8e: 30c080e7 jalr 780(ra) # 396 <open>
92: bf41 j 22 <main+0x22>
printf("init: fork failed\n");
94: 00001517 auipc a0,0x1
98: 80c50513 addi a0,a0,-2036 # 8a0 <malloc+0x104>
9c: 00000097 auipc ra,0x0
a0: 642080e7 jalr 1602(ra) # 6de <printf>
exit(1);
a4: 4505 li a0,1
a6: 00000097 auipc ra,0x0
aa: 2b0080e7 jalr 688(ra) # 356 <exit>
exec("sh", argv);
ae: 00001597 auipc a1,0x1
b2: 84a58593 addi a1,a1,-1974 # 8f8 <argv>
b6: 00001517 auipc a0,0x1
ba: 80250513 addi a0,a0,-2046 # 8b8 <malloc+0x11c>
be: 00000097 auipc ra,0x0
c2: 2d0080e7 jalr 720(ra) # 38e <exec>
printf("init: exec sh failed\n");
c6: 00000517 auipc a0,0x0
ca: 7fa50513 addi a0,a0,2042 # 8c0 <malloc+0x124>
ce: 00000097 auipc ra,0x0
d2: 610080e7 jalr 1552(ra) # 6de <printf>
exit(1);
d6: 4505 li a0,1
d8: 00000097 auipc ra,0x0
dc: 27e080e7 jalr 638(ra) # 356 <exit>
00000000000000e0 <strcpy>:
#include "kernel/fcntl.h"
#include "user/user.h"
char*
strcpy(char *s, const char *t)
{
e0: 1141 addi sp,sp,-16
e2: e422 sd s0,8(sp)
e4: 0800 addi s0,sp,16
char *os;
os = s;
while((*s++ = *t++) != 0)
e6: 87aa mv a5,a0
e8: 0585 addi a1,a1,1
ea: 0785 addi a5,a5,1
ec: fff5c703 lbu a4,-1(a1)
f0: fee78fa3 sb a4,-1(a5)
f4: fb75 bnez a4,e8 <strcpy+0x8>
;
return os;
}
f6: 6422 ld s0,8(sp)
f8: 0141 addi sp,sp,16
fa: 8082 ret
00000000000000fc <strcmp>:
int
strcmp(const char *p, const char *q)
{
fc: 1141 addi sp,sp,-16
fe: e422 sd s0,8(sp)
100: 0800 addi s0,sp,16
while(*p && *p == *q)
102: 00054783 lbu a5,0(a0)
106: cb91 beqz a5,11a <strcmp+0x1e>
108: 0005c703 lbu a4,0(a1)
10c: 00f71763 bne a4,a5,11a <strcmp+0x1e>
p++, q++;
110: 0505 addi a0,a0,1
112: 0585 addi a1,a1,1
while(*p && *p == *q)
114: 00054783 lbu a5,0(a0)
118: fbe5 bnez a5,108 <strcmp+0xc>
return (uchar)*p - (uchar)*q;
11a: 0005c503 lbu a0,0(a1)
}
11e: 40a7853b subw a0,a5,a0
122: 6422 ld s0,8(sp)
124: 0141 addi sp,sp,16
126: 8082 ret
0000000000000128 <strlen>:
uint
strlen(const char *s)
{
128: 1141 addi sp,sp,-16
12a: e422 sd s0,8(sp)
12c: 0800 addi s0,sp,16
int n;
for(n = 0; s[n]; n++)
12e: 00054783 lbu a5,0(a0)
132: cf91 beqz a5,14e <strlen+0x26>
134: 0505 addi a0,a0,1
136: 87aa mv a5,a0
138: 4685 li a3,1
13a: 9e89 subw a3,a3,a0
13c: 00f6853b addw a0,a3,a5
140: 0785 addi a5,a5,1
142: fff7c703 lbu a4,-1(a5)
146: fb7d bnez a4,13c <strlen+0x14>
;
return n;
}
148: 6422 ld s0,8(sp)
14a: 0141 addi sp,sp,16
14c: 8082 ret
for(n = 0; s[n]; n++)
14e: 4501 li a0,0
150: bfe5 j 148 <strlen+0x20>
0000000000000152 <memset>:
void*
memset(void *dst, int c, uint n)
{
152: 1141 addi sp,sp,-16
154: e422 sd s0,8(sp)
156: 0800 addi s0,sp,16
char *cdst = (char *) dst;
int i;
for(i = 0; i < n; i++){
158: ce09 beqz a2,172 <memset+0x20>
15a: 87aa mv a5,a0
15c: fff6071b addiw a4,a2,-1
160: 1702 slli a4,a4,0x20
162: 9301 srli a4,a4,0x20
164: 0705 addi a4,a4,1
166: 972a add a4,a4,a0
cdst[i] = c;
168: 00b78023 sb a1,0(a5)
for(i = 0; i < n; i++){
16c: 0785 addi a5,a5,1
16e: fee79de3 bne a5,a4,168 <memset+0x16>
}
return dst;
}
172: 6422 ld s0,8(sp)
174: 0141 addi sp,sp,16
176: 8082 ret
0000000000000178 <strchr>:
char*
strchr(const char *s, char c)
{
178: 1141 addi sp,sp,-16
17a: e422 sd s0,8(sp)
17c: 0800 addi s0,sp,16
for(; *s; s++)
17e: 00054783 lbu a5,0(a0)
182: cb99 beqz a5,198 <strchr+0x20>
if(*s == c)
184: 00f58763 beq a1,a5,192 <strchr+0x1a>
for(; *s; s++)
188: 0505 addi a0,a0,1
18a: 00054783 lbu a5,0(a0)
18e: fbfd bnez a5,184 <strchr+0xc>
return (char*)s;
return 0;
190: 4501 li a0,0
}
192: 6422 ld s0,8(sp)
194: 0141 addi sp,sp,16
196: 8082 ret
return 0;
198: 4501 li a0,0
19a: bfe5 j 192 <strchr+0x1a>
000000000000019c <gets>:
char*
gets(char *buf, int max)
{
19c: 711d addi sp,sp,-96
19e: ec86 sd ra,88(sp)
1a0: e8a2 sd s0,80(sp)
1a2: e4a6 sd s1,72(sp)
1a4: e0ca sd s2,64(sp)
1a6: fc4e sd s3,56(sp)
1a8: f852 sd s4,48(sp)
1aa: f456 sd s5,40(sp)
1ac: f05a sd s6,32(sp)
1ae: ec5e sd s7,24(sp)
1b0: 1080 addi s0,sp,96
1b2: 8baa mv s7,a0
1b4: 8a2e mv s4,a1
int i, cc;
char c;
for(i=0; i+1 < max; ){
1b6: 892a mv s2,a0
1b8: 4481 li s1,0
cc = read(0, &c, 1);
if(cc < 1)
break;
buf[i++] = c;
if(c == '\n' || c == '\r')
1ba: 4aa9 li s5,10
1bc: 4b35 li s6,13
for(i=0; i+1 < max; ){
1be: 89a6 mv s3,s1
1c0: 2485 addiw s1,s1,1
1c2: 0344d863 bge s1,s4,1f2 <gets+0x56>
cc = read(0, &c, 1);
1c6: 4605 li a2,1
1c8: faf40593 addi a1,s0,-81
1cc: 4501 li a0,0
1ce: 00000097 auipc ra,0x0
1d2: 1a0080e7 jalr 416(ra) # 36e <read>
if(cc < 1)
1d6: 00a05e63 blez a0,1f2 <gets+0x56>
buf[i++] = c;
1da: faf44783 lbu a5,-81(s0)
1de: 00f90023 sb a5,0(s2)
if(c == '\n' || c == '\r')
1e2: 01578763 beq a5,s5,1f0 <gets+0x54>
1e6: 0905 addi s2,s2,1
1e8: fd679be3 bne a5,s6,1be <gets+0x22>
for(i=0; i+1 < max; ){
1ec: 89a6 mv s3,s1
1ee: a011 j 1f2 <gets+0x56>
1f0: 89a6 mv s3,s1
break;
}
buf[i] = '\0';
1f2: 99de add s3,s3,s7
1f4: 00098023 sb zero,0(s3)
return buf;
}
1f8: 855e mv a0,s7
1fa: 60e6 ld ra,88(sp)
1fc: 6446 ld s0,80(sp)
1fe: 64a6 ld s1,72(sp)
200: 6906 ld s2,64(sp)
202: 79e2 ld s3,56(sp)
204: 7a42 ld s4,48(sp)
206: 7aa2 ld s5,40(sp)
208: 7b02 ld s6,32(sp)
20a: 6be2 ld s7,24(sp)
20c: 6125 addi sp,sp,96
20e: 8082 ret
0000000000000210 <stat>:
int
stat(const char *n, struct stat *st)
{
210: 1101 addi sp,sp,-32
212: ec06 sd ra,24(sp)
214: e822 sd s0,16(sp)
216: e426 sd s1,8(sp)
218: e04a sd s2,0(sp)
21a: 1000 addi s0,sp,32
21c: 892e mv s2,a1
int fd;
int r;
fd = open(n, O_RDONLY);
21e: 4581 li a1,0
220: 00000097 auipc ra,0x0
224: 176080e7 jalr 374(ra) # 396 <open>
if(fd < 0)
228: 02054563 bltz a0,252 <stat+0x42>
22c: 84aa mv s1,a0
return -1;
r = fstat(fd, st);
22e: 85ca mv a1,s2
230: 00000097 auipc ra,0x0
234: 17e080e7 jalr 382(ra) # 3ae <fstat>
238: 892a mv s2,a0
close(fd);
23a: 8526 mv a0,s1
23c: 00000097 auipc ra,0x0
240: 142080e7 jalr 322(ra) # 37e <close>
return r;
}
244: 854a mv a0,s2
246: 60e2 ld ra,24(sp)
248: 6442 ld s0,16(sp)
24a: 64a2 ld s1,8(sp)
24c: 6902 ld s2,0(sp)
24e: 6105 addi sp,sp,32
250: 8082 ret
return -1;
252: 597d li s2,-1
254: bfc5 j 244 <stat+0x34>
0000000000000256 <atoi>:
int
atoi(const char *s)
{
256: 1141 addi sp,sp,-16
258: e422 sd s0,8(sp)
25a: 0800 addi s0,sp,16
int n;
n = 0;
while('0' <= *s && *s <= '9')
25c: 00054603 lbu a2,0(a0)
260: fd06079b addiw a5,a2,-48
264: 0ff7f793 andi a5,a5,255
268: 4725 li a4,9
26a: 02f76963 bltu a4,a5,29c <atoi+0x46>
26e: 86aa mv a3,a0
n = 0;
270: 4501 li a0,0
while('0' <= *s && *s <= '9')
272: 45a5 li a1,9
n = n*10 + *s++ - '0';
274: 0685 addi a3,a3,1
276: 0025179b slliw a5,a0,0x2
27a: 9fa9 addw a5,a5,a0
27c: 0017979b slliw a5,a5,0x1
280: 9fb1 addw a5,a5,a2
282: fd07851b addiw a0,a5,-48
while('0' <= *s && *s <= '9')
286: 0006c603 lbu a2,0(a3)
28a: fd06071b addiw a4,a2,-48
28e: 0ff77713 andi a4,a4,255
292: fee5f1e3 bgeu a1,a4,274 <atoi+0x1e>
return n;
}
296: 6422 ld s0,8(sp)
298: 0141 addi sp,sp,16
29a: 8082 ret
n = 0;
29c: 4501 li a0,0
29e: bfe5 j 296 <atoi+0x40>
00000000000002a0 <memmove>:
void*
memmove(void *vdst, const void *vsrc, int n)
{
2a0: 1141 addi sp,sp,-16
2a2: e422 sd s0,8(sp)
2a4: 0800 addi s0,sp,16
char *dst;
const char *src;
dst = vdst;
src = vsrc;
if (src > dst) {
2a6: 02b57663 bgeu a0,a1,2d2 <memmove+0x32>
while(n-- > 0)
2aa: 02c05163 blez a2,2cc <memmove+0x2c>
2ae: fff6079b addiw a5,a2,-1
2b2: 1782 slli a5,a5,0x20
2b4: 9381 srli a5,a5,0x20
2b6: 0785 addi a5,a5,1
2b8: 97aa add a5,a5,a0
dst = vdst;
2ba: 872a mv a4,a0
*dst++ = *src++;
2bc: 0585 addi a1,a1,1
2be: 0705 addi a4,a4,1
2c0: fff5c683 lbu a3,-1(a1)
2c4: fed70fa3 sb a3,-1(a4)
while(n-- > 0)
2c8: fee79ae3 bne a5,a4,2bc <memmove+0x1c>
src += n;
while(n-- > 0)
*--dst = *--src;
}
return vdst;
}
2cc: 6422 ld s0,8(sp)
2ce: 0141 addi sp,sp,16
2d0: 8082 ret
dst += n;
2d2: 00c50733 add a4,a0,a2
src += n;
2d6: 95b2 add a1,a1,a2
while(n-- > 0)
2d8: fec05ae3 blez a2,2cc <memmove+0x2c>
2dc: fff6079b addiw a5,a2,-1
2e0: 1782 slli a5,a5,0x20
2e2: 9381 srli a5,a5,0x20
2e4: fff7c793 not a5,a5
2e8: 97ba add a5,a5,a4
*--dst = *--src;
2ea: 15fd addi a1,a1,-1
2ec: 177d addi a4,a4,-1
2ee: 0005c683 lbu a3,0(a1)
2f2: 00d70023 sb a3,0(a4)
while(n-- > 0)
2f6: fee79ae3 bne a5,a4,2ea <memmove+0x4a>
2fa: bfc9 j 2cc <memmove+0x2c>
00000000000002fc <memcmp>:
int
memcmp(const void *s1, const void *s2, uint n)
{
2fc: 1141 addi sp,sp,-16
2fe: e422 sd s0,8(sp)
300: 0800 addi s0,sp,16
const char *p1 = s1, *p2 = s2;
while (n-- > 0) {
302: ca05 beqz a2,332 <memcmp+0x36>
304: fff6069b addiw a3,a2,-1
308: 1682 slli a3,a3,0x20
30a: 9281 srli a3,a3,0x20
30c: 0685 addi a3,a3,1
30e: 96aa add a3,a3,a0
if (*p1 != *p2) {
310: 00054783 lbu a5,0(a0)
314: 0005c703 lbu a4,0(a1)
318: 00e79863 bne a5,a4,328 <memcmp+0x2c>
return *p1 - *p2;
}
p1++;
31c: 0505 addi a0,a0,1
p2++;
31e: 0585 addi a1,a1,1
while (n-- > 0) {
320: fed518e3 bne a0,a3,310 <memcmp+0x14>
}
return 0;
324: 4501 li a0,0
326: a019 j 32c <memcmp+0x30>
return *p1 - *p2;
328: 40e7853b subw a0,a5,a4
}
32c: 6422 ld s0,8(sp)
32e: 0141 addi sp,sp,16
330: 8082 ret
return 0;
332: 4501 li a0,0
334: bfe5 j 32c <memcmp+0x30>
0000000000000336 <memcpy>:
void *
memcpy(void *dst, const void *src, uint n)
{
336: 1141 addi sp,sp,-16
338: e406 sd ra,8(sp)
33a: e022 sd s0,0(sp)
33c: 0800 addi s0,sp,16
return memmove(dst, src, n);
33e: 00000097 auipc ra,0x0
342: f62080e7 jalr -158(ra) # 2a0 <memmove>
}
346: 60a2 ld ra,8(sp)
348: 6402 ld s0,0(sp)
34a: 0141 addi sp,sp,16
34c: 8082 ret
000000000000034e <fork>:
# generated by usys.pl - do not edit
#include "kernel/syscall.h"
.global fork
fork:
li a7, SYS_fork
34e: 4885 li a7,1
ecall
350: 00000073 ecall
ret
354: 8082 ret
0000000000000356 <exit>:
.global exit
exit:
li a7, SYS_exit
356: 4889 li a7,2
ecall
358: 00000073 ecall
ret
35c: 8082 ret
000000000000035e <wait>:
.global wait
wait:
li a7, SYS_wait
35e: 488d li a7,3
ecall
360: 00000073 ecall
ret
364: 8082 ret
0000000000000366 <pipe>:
.global pipe
pipe:
li a7, SYS_pipe
366: 4891 li a7,4
ecall
368: 00000073 ecall
ret
36c: 8082 ret
000000000000036e <read>:
.global read
read:
li a7, SYS_read
36e: 4895 li a7,5
ecall
370: 00000073 ecall
ret
374: 8082 ret
0000000000000376 <write>:
.global write
write:
li a7, SYS_write
376: 48c1 li a7,16
ecall
378: 00000073 ecall
ret
37c: 8082 ret
000000000000037e <close>:
.global close
close:
li a7, SYS_close
37e: 48d5 li a7,21
ecall
380: 00000073 ecall
ret
384: 8082 ret
0000000000000386 <kill>:
.global kill
kill:
li a7, SYS_kill
386: 4899 li a7,6
ecall
388: 00000073 ecall
ret
38c: 8082 ret
000000000000038e <exec>:
.global exec
exec:
li a7, SYS_exec
38e: 489d li a7,7
ecall
390: 00000073 ecall
ret
394: 8082 ret
0000000000000396 <open>:
.global open
open:
li a7, SYS_open
396: 48bd li a7,15
ecall
398: 00000073 ecall
ret
39c: 8082 ret
000000000000039e <mknod>:
.global mknod
mknod:
li a7, SYS_mknod
39e: 48c5 li a7,17
ecall
3a0: 00000073 ecall
ret
3a4: 8082 ret
00000000000003a6 <unlink>:
.global unlink
unlink:
li a7, SYS_unlink
3a6: 48c9 li a7,18
ecall
3a8: 00000073 ecall
ret
3ac: 8082 ret
00000000000003ae <fstat>:
.global fstat
fstat:
li a7, SYS_fstat
3ae: 48a1 li a7,8
ecall
3b0: 00000073 ecall
ret
3b4: 8082 ret
00000000000003b6 <link>:
.global link
link:
li a7, SYS_link
3b6: 48cd li a7,19
ecall
3b8: 00000073 ecall
ret
3bc: 8082 ret
00000000000003be <mkdir>:
.global mkdir
mkdir:
li a7, SYS_mkdir
3be: 48d1 li a7,20
ecall
3c0: 00000073 ecall
ret
3c4: 8082 ret
00000000000003c6 <chdir>:
.global chdir
chdir:
li a7, SYS_chdir
3c6: 48a5 li a7,9
ecall
3c8: 00000073 ecall
ret
3cc: 8082 ret
00000000000003ce <dup>:
.global dup
dup:
li a7, SYS_dup
3ce: 48a9 li a7,10
ecall
3d0: 00000073 ecall
ret
3d4: 8082 ret
00000000000003d6 <getpid>:
.global getpid
getpid:
li a7, SYS_getpid
3d6: 48ad li a7,11
ecall
3d8: 00000073 ecall
ret
3dc: 8082 ret
00000000000003de <sbrk>:
.global sbrk
sbrk:
li a7, SYS_sbrk
3de: 48b1 li a7,12
ecall
3e0: 00000073 ecall
ret
3e4: 8082 ret
00000000000003e6 <sleep>:
.global sleep
sleep:
li a7, SYS_sleep
3e6: 48b5 li a7,13
ecall
3e8: 00000073 ecall
ret
3ec: 8082 ret
00000000000003ee <uptime>:
.global uptime
uptime:
li a7, SYS_uptime
3ee: 48b9 li a7,14
ecall
3f0: 00000073 ecall
ret
3f4: 8082 ret
00000000000003f6 <connect>:
.global connect
connect:
li a7, SYS_connect
3f6: 48d9 li a7,22
ecall
3f8: 00000073 ecall
ret
3fc: 8082 ret
00000000000003fe <ntas>:
.global ntas
ntas:
li a7, SYS_ntas
3fe: 48dd li a7,23
ecall
400: 00000073 ecall
ret
404: 8082 ret
0000000000000406 <putc>:
static char digits[] = "0123456789ABCDEF";
static void
putc(int fd, char c)
{
406: 1101 addi sp,sp,-32
408: ec06 sd ra,24(sp)
40a: e822 sd s0,16(sp)
40c: 1000 addi s0,sp,32
40e: feb407a3 sb a1,-17(s0)
write(fd, &c, 1);
412: 4605 li a2,1
414: fef40593 addi a1,s0,-17
418: 00000097 auipc ra,0x0
41c: f5e080e7 jalr -162(ra) # 376 <write>
}
420: 60e2 ld ra,24(sp)
422: 6442 ld s0,16(sp)
424: 6105 addi sp,sp,32
426: 8082 ret
0000000000000428 <printint>:
static void
printint(int fd, int xx, int base, int sgn)
{
428: 7139 addi sp,sp,-64
42a: fc06 sd ra,56(sp)
42c: f822 sd s0,48(sp)
42e: f426 sd s1,40(sp)
430: f04a sd s2,32(sp)
432: ec4e sd s3,24(sp)
434: 0080 addi s0,sp,64
436: 84aa mv s1,a0
char buf[16];
int i, neg;
uint x;
neg = 0;
if(sgn && xx < 0){
438: c299 beqz a3,43e <printint+0x16>
43a: 0805c863 bltz a1,4ca <printint+0xa2>
neg = 1;
x = -xx;
} else {
x = xx;
43e: 2581 sext.w a1,a1
neg = 0;
440: 4881 li a7,0
442: fc040693 addi a3,s0,-64
}
i = 0;
446: 4701 li a4,0
do{
buf[i++] = digits[x % base];
448: 2601 sext.w a2,a2
44a: 00000517 auipc a0,0x0
44e: 49650513 addi a0,a0,1174 # 8e0 <digits>
452: 883a mv a6,a4
454: 2705 addiw a4,a4,1
456: 02c5f7bb remuw a5,a1,a2
45a: 1782 slli a5,a5,0x20
45c: 9381 srli a5,a5,0x20
45e: 97aa add a5,a5,a0
460: 0007c783 lbu a5,0(a5)
464: 00f68023 sb a5,0(a3)
}while((x /= base) != 0);
468: 0005879b sext.w a5,a1
46c: 02c5d5bb divuw a1,a1,a2
470: 0685 addi a3,a3,1
472: fec7f0e3 bgeu a5,a2,452 <printint+0x2a>
if(neg)
476: 00088b63 beqz a7,48c <printint+0x64>
buf[i++] = '-';
47a: fd040793 addi a5,s0,-48
47e: 973e add a4,a4,a5
480: 02d00793 li a5,45
484: fef70823 sb a5,-16(a4)
488: 0028071b addiw a4,a6,2
while(--i >= 0)
48c: 02e05863 blez a4,4bc <printint+0x94>
490: fc040793 addi a5,s0,-64
494: 00e78933 add s2,a5,a4
498: fff78993 addi s3,a5,-1
49c: 99ba add s3,s3,a4
49e: 377d addiw a4,a4,-1
4a0: 1702 slli a4,a4,0x20
4a2: 9301 srli a4,a4,0x20
4a4: 40e989b3 sub s3,s3,a4
putc(fd, buf[i]);
4a8: fff94583 lbu a1,-1(s2)
4ac: 8526 mv a0,s1
4ae: 00000097 auipc ra,0x0
4b2: f58080e7 jalr -168(ra) # 406 <putc>
while(--i >= 0)
4b6: 197d addi s2,s2,-1
4b8: ff3918e3 bne s2,s3,4a8 <printint+0x80>
}
4bc: 70e2 ld ra,56(sp)
4be: 7442 ld s0,48(sp)
4c0: 74a2 ld s1,40(sp)
4c2: 7902 ld s2,32(sp)
4c4: 69e2 ld s3,24(sp)
4c6: 6121 addi sp,sp,64
4c8: 8082 ret
x = -xx;
4ca: 40b005bb negw a1,a1
neg = 1;
4ce: 4885 li a7,1
x = -xx;
4d0: bf8d j 442 <printint+0x1a>
00000000000004d2 <vprintf>:
}
// Print to the given fd. Only understands %d, %x, %p, %s.
void
vprintf(int fd, const char *fmt, va_list ap)
{
4d2: 7119 addi sp,sp,-128
4d4: fc86 sd ra,120(sp)
4d6: f8a2 sd s0,112(sp)
4d8: f4a6 sd s1,104(sp)
4da: f0ca sd s2,96(sp)
4dc: ecce sd s3,88(sp)
4de: e8d2 sd s4,80(sp)
4e0: e4d6 sd s5,72(sp)
4e2: e0da sd s6,64(sp)
4e4: fc5e sd s7,56(sp)
4e6: f862 sd s8,48(sp)
4e8: f466 sd s9,40(sp)
4ea: f06a sd s10,32(sp)
4ec: ec6e sd s11,24(sp)
4ee: 0100 addi s0,sp,128
char *s;
int c, i, state;
state = 0;
for(i = 0; fmt[i]; i++){
4f0: 0005c903 lbu s2,0(a1)
4f4: 18090f63 beqz s2,692 <vprintf+0x1c0>
4f8: 8aaa mv s5,a0
4fa: 8b32 mv s6,a2
4fc: 00158493 addi s1,a1,1
state = 0;
500: 4981 li s3,0
if(c == '%'){
state = '%';
} else {
putc(fd, c);
}
} else if(state == '%'){
502: 02500a13 li s4,37
if(c == 'd'){
506: 06400c13 li s8,100
printint(fd, va_arg(ap, int), 10, 1);
} else if(c == 'l') {
50a: 06c00c93 li s9,108
printint(fd, va_arg(ap, uint64), 10, 0);
} else if(c == 'x') {
50e: 07800d13 li s10,120
printint(fd, va_arg(ap, int), 16, 0);
} else if(c == 'p') {
512: 07000d93 li s11,112
putc(fd, digits[x >> (sizeof(uint64) * 8 - 4)]);
516: 00000b97 auipc s7,0x0
51a: 3cab8b93 addi s7,s7,970 # 8e0 <digits>
51e: a839 j 53c <vprintf+0x6a>
putc(fd, c);
520: 85ca mv a1,s2
522: 8556 mv a0,s5
524: 00000097 auipc ra,0x0
528: ee2080e7 jalr -286(ra) # 406 <putc>
52c: a019 j 532 <vprintf+0x60>
} else if(state == '%'){
52e: 01498f63 beq s3,s4,54c <vprintf+0x7a>
for(i = 0; fmt[i]; i++){
532: 0485 addi s1,s1,1
534: fff4c903 lbu s2,-1(s1)
538: 14090d63 beqz s2,692 <vprintf+0x1c0>
c = fmt[i] & 0xff;
53c: 0009079b sext.w a5,s2
if(state == 0){
540: fe0997e3 bnez s3,52e <vprintf+0x5c>
if(c == '%'){
544: fd479ee3 bne a5,s4,520 <vprintf+0x4e>
state = '%';
548: 89be mv s3,a5
54a: b7e5 j 532 <vprintf+0x60>
if(c == 'd'){
54c: 05878063 beq a5,s8,58c <vprintf+0xba>
} else if(c == 'l') {
550: 05978c63 beq a5,s9,5a8 <vprintf+0xd6>
} else if(c == 'x') {
554: 07a78863 beq a5,s10,5c4 <vprintf+0xf2>
} else if(c == 'p') {
558: 09b78463 beq a5,s11,5e0 <vprintf+0x10e>
printptr(fd, va_arg(ap, uint64));
} else if(c == 's'){
55c: 07300713 li a4,115
560: 0ce78663 beq a5,a4,62c <vprintf+0x15a>
s = "(null)";
while(*s != 0){
putc(fd, *s);
s++;
}
} else if(c == 'c'){
564: 06300713 li a4,99
568: 0ee78e63 beq a5,a4,664 <vprintf+0x192>
putc(fd, va_arg(ap, uint));
} else if(c == '%'){
56c: 11478863 beq a5,s4,67c <vprintf+0x1aa>
putc(fd, c);
} else {
// Unknown % sequence. Print it to draw attention.
putc(fd, '%');
570: 85d2 mv a1,s4
572: 8556 mv a0,s5
574: 00000097 auipc ra,0x0
578: e92080e7 jalr -366(ra) # 406 <putc>
putc(fd, c);
57c: 85ca mv a1,s2
57e: 8556 mv a0,s5
580: 00000097 auipc ra,0x0
584: e86080e7 jalr -378(ra) # 406 <putc>
}
state = 0;
588: 4981 li s3,0
58a: b765 j 532 <vprintf+0x60>
printint(fd, va_arg(ap, int), 10, 1);
58c: 008b0913 addi s2,s6,8
590: 4685 li a3,1
592: 4629 li a2,10
594: 000b2583 lw a1,0(s6)
598: 8556 mv a0,s5
59a: 00000097 auipc ra,0x0
59e: e8e080e7 jalr -370(ra) # 428 <printint>
5a2: 8b4a mv s6,s2
state = 0;
5a4: 4981 li s3,0
5a6: b771 j 532 <vprintf+0x60>
printint(fd, va_arg(ap, uint64), 10, 0);
5a8: 008b0913 addi s2,s6,8
5ac: 4681 li a3,0
5ae: 4629 li a2,10
5b0: 000b2583 lw a1,0(s6)
5b4: 8556 mv a0,s5
5b6: 00000097 auipc ra,0x0
5ba: e72080e7 jalr -398(ra) # 428 <printint>
5be: 8b4a mv s6,s2
state = 0;
5c0: 4981 li s3,0
5c2: bf85 j 532 <vprintf+0x60>
printint(fd, va_arg(ap, int), 16, 0);
5c4: 008b0913 addi s2,s6,8
5c8: 4681 li a3,0
5ca: 4641 li a2,16
5cc: 000b2583 lw a1,0(s6)
5d0: 8556 mv a0,s5
5d2: 00000097 auipc ra,0x0
5d6: e56080e7 jalr -426(ra) # 428 <printint>
5da: 8b4a mv s6,s2
state = 0;
5dc: 4981 li s3,0
5de: bf91 j 532 <vprintf+0x60>
printptr(fd, va_arg(ap, uint64));
5e0: 008b0793 addi a5,s6,8
5e4: f8f43423 sd a5,-120(s0)
5e8: 000b3983 ld s3,0(s6)
putc(fd, '0');
5ec: 03000593 li a1,48
5f0: 8556 mv a0,s5
5f2: 00000097 auipc ra,0x0
5f6: e14080e7 jalr -492(ra) # 406 <putc>
putc(fd, 'x');
5fa: 85ea mv a1,s10
5fc: 8556 mv a0,s5
5fe: 00000097 auipc ra,0x0
602: e08080e7 jalr -504(ra) # 406 <putc>
606: 4941 li s2,16
putc(fd, digits[x >> (sizeof(uint64) * 8 - 4)]);
608: 03c9d793 srli a5,s3,0x3c
60c: 97de add a5,a5,s7
60e: 0007c583 lbu a1,0(a5)
612: 8556 mv a0,s5
614: 00000097 auipc ra,0x0
618: df2080e7 jalr -526(ra) # 406 <putc>
for (i = 0; i < (sizeof(uint64) * 2); i++, x <<= 4)
61c: 0992 slli s3,s3,0x4
61e: 397d addiw s2,s2,-1
620: fe0914e3 bnez s2,608 <vprintf+0x136>
printptr(fd, va_arg(ap, uint64));
624: f8843b03 ld s6,-120(s0)
state = 0;
628: 4981 li s3,0
62a: b721 j 532 <vprintf+0x60>
s = va_arg(ap, char*);
62c: 008b0993 addi s3,s6,8
630: 000b3903 ld s2,0(s6)
if(s == 0)
634: 02090163 beqz s2,656 <vprintf+0x184>
while(*s != 0){
638: 00094583 lbu a1,0(s2)
63c: c9a1 beqz a1,68c <vprintf+0x1ba>
putc(fd, *s);
63e: 8556 mv a0,s5
640: 00000097 auipc ra,0x0
644: dc6080e7 jalr -570(ra) # 406 <putc>
s++;
648: 0905 addi s2,s2,1
while(*s != 0){
64a: 00094583 lbu a1,0(s2)
64e: f9e5 bnez a1,63e <vprintf+0x16c>
s = va_arg(ap, char*);
650: 8b4e mv s6,s3
state = 0;
652: 4981 li s3,0
654: bdf9 j 532 <vprintf+0x60>
s = "(null)";
656: 00000917 auipc s2,0x0
65a: 28290913 addi s2,s2,642 # 8d8 <malloc+0x13c>
while(*s != 0){
65e: 02800593 li a1,40
662: bff1 j 63e <vprintf+0x16c>
putc(fd, va_arg(ap, uint));
664: 008b0913 addi s2,s6,8
668: 000b4583 lbu a1,0(s6)
66c: 8556 mv a0,s5
66e: 00000097 auipc ra,0x0
672: d98080e7 jalr -616(ra) # 406 <putc>
676: 8b4a mv s6,s2
state = 0;
678: 4981 li s3,0
67a: bd65 j 532 <vprintf+0x60>
putc(fd, c);
67c: 85d2 mv a1,s4
67e: 8556 mv a0,s5
680: 00000097 auipc ra,0x0
684: d86080e7 jalr -634(ra) # 406 <putc>
state = 0;
688: 4981 li s3,0
68a: b565 j 532 <vprintf+0x60>
s = va_arg(ap, char*);
68c: 8b4e mv s6,s3
state = 0;
68e: 4981 li s3,0
690: b54d j 532 <vprintf+0x60>
}
}
}
692: 70e6 ld ra,120(sp)
694: 7446 ld s0,112(sp)
696: 74a6 ld s1,104(sp)
698: 7906 ld s2,96(sp)
69a: 69e6 ld s3,88(sp)
69c: 6a46 ld s4,80(sp)
69e: 6aa6 ld s5,72(sp)
6a0: 6b06 ld s6,64(sp)
6a2: 7be2 ld s7,56(sp)
6a4: 7c42 ld s8,48(sp)
6a6: 7ca2 ld s9,40(sp)
6a8: 7d02 ld s10,32(sp)
6aa: 6de2 ld s11,24(sp)
6ac: 6109 addi sp,sp,128
6ae: 8082 ret
00000000000006b0 <fprintf>:
void
fprintf(int fd, const char *fmt, ...)
{
6b0: 715d addi sp,sp,-80
6b2: ec06 sd ra,24(sp)
6b4: e822 sd s0,16(sp)
6b6: 1000 addi s0,sp,32
6b8: e010 sd a2,0(s0)
6ba: e414 sd a3,8(s0)
6bc: e818 sd a4,16(s0)
6be: ec1c sd a5,24(s0)
6c0: 03043023 sd a6,32(s0)
6c4: 03143423 sd a7,40(s0)
va_list ap;
va_start(ap, fmt);
6c8: fe843423 sd s0,-24(s0)
vprintf(fd, fmt, ap);
6cc: 8622 mv a2,s0
6ce: 00000097 auipc ra,0x0
6d2: e04080e7 jalr -508(ra) # 4d2 <vprintf>
}
6d6: 60e2 ld ra,24(sp)
6d8: 6442 ld s0,16(sp)
6da: 6161 addi sp,sp,80
6dc: 8082 ret
00000000000006de <printf>:
void
printf(const char *fmt, ...)
{
6de: 711d addi sp,sp,-96
6e0: ec06 sd ra,24(sp)
6e2: e822 sd s0,16(sp)
6e4: 1000 addi s0,sp,32
6e6: e40c sd a1,8(s0)
6e8: e810 sd a2,16(s0)
6ea: ec14 sd a3,24(s0)
6ec: f018 sd a4,32(s0)
6ee: f41c sd a5,40(s0)
6f0: 03043823 sd a6,48(s0)
6f4: 03143c23 sd a7,56(s0)
va_list ap;
va_start(ap, fmt);
6f8: 00840613 addi a2,s0,8
6fc: fec43423 sd a2,-24(s0)
vprintf(1, fmt, ap);
700: 85aa mv a1,a0
702: 4505 li a0,1
704: 00000097 auipc ra,0x0
708: dce080e7 jalr -562(ra) # 4d2 <vprintf>
}
70c: 60e2 ld ra,24(sp)
70e: 6442 ld s0,16(sp)
710: 6125 addi sp,sp,96
712: 8082 ret
0000000000000714 <free>:
static Header base;
static Header *freep;
void
free(void *ap)
{
714: 1141 addi sp,sp,-16
716: e422 sd s0,8(sp)
718: 0800 addi s0,sp,16
Header *bp, *p;
bp = (Header*)ap - 1;
71a: ff050693 addi a3,a0,-16
for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr)
71e: 00000797 auipc a5,0x0
722: 1ea7b783 ld a5,490(a5) # 908 <__SDATA_BEGIN__>
726: a805 j 756 <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;
728: 4618 lw a4,8(a2)
72a: 9db9 addw a1,a1,a4
72c: feb52c23 sw a1,-8(a0)
bp->s.ptr = p->s.ptr->s.ptr;
730: 6398 ld a4,0(a5)
732: 6318 ld a4,0(a4)
734: fee53823 sd a4,-16(a0)
738: a091 j 77c <free+0x68>
} else
bp->s.ptr = p->s.ptr;
if(p + p->s.size == bp){
p->s.size += bp->s.size;
73a: ff852703 lw a4,-8(a0)
73e: 9e39 addw a2,a2,a4
740: c790 sw a2,8(a5)
p->s.ptr = bp->s.ptr;
742: ff053703 ld a4,-16(a0)
746: e398 sd a4,0(a5)
748: a099 j 78e <free+0x7a>
if(p >= p->s.ptr && (bp > p || bp < p->s.ptr))
74a: 6398 ld a4,0(a5)
74c: 00e7e463 bltu a5,a4,754 <free+0x40>
750: 00e6ea63 bltu a3,a4,764 <free+0x50>
{
754: 87ba mv a5,a4
for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr)
756: fed7fae3 bgeu a5,a3,74a <free+0x36>
75a: 6398 ld a4,0(a5)
75c: 00e6e463 bltu a3,a4,764 <free+0x50>
if(p >= p->s.ptr && (bp > p || bp < p->s.ptr))
760: fee7eae3 bltu a5,a4,754 <free+0x40>
if(bp + bp->s.size == p->s.ptr){
764: ff852583 lw a1,-8(a0)
768: 6390 ld a2,0(a5)
76a: 02059713 slli a4,a1,0x20
76e: 9301 srli a4,a4,0x20
770: 0712 slli a4,a4,0x4
772: 9736 add a4,a4,a3
774: fae60ae3 beq a2,a4,728 <free+0x14>
bp->s.ptr = p->s.ptr;
778: fec53823 sd a2,-16(a0)
if(p + p->s.size == bp){
77c: 4790 lw a2,8(a5)
77e: 02061713 slli a4,a2,0x20
782: 9301 srli a4,a4,0x20
784: 0712 slli a4,a4,0x4
786: 973e add a4,a4,a5
788: fae689e3 beq a3,a4,73a <free+0x26>
} else
p->s.ptr = bp;
78c: e394 sd a3,0(a5)
freep = p;
78e: 00000717 auipc a4,0x0
792: 16f73d23 sd a5,378(a4) # 908 <__SDATA_BEGIN__>
}
796: 6422 ld s0,8(sp)
798: 0141 addi sp,sp,16
79a: 8082 ret
000000000000079c <malloc>:
return freep;
}
void*
malloc(uint nbytes)
{
79c: 7139 addi sp,sp,-64
79e: fc06 sd ra,56(sp)
7a0: f822 sd s0,48(sp)
7a2: f426 sd s1,40(sp)
7a4: f04a sd s2,32(sp)
7a6: ec4e sd s3,24(sp)
7a8: e852 sd s4,16(sp)
7aa: e456 sd s5,8(sp)
7ac: e05a sd s6,0(sp)
7ae: 0080 addi s0,sp,64
Header *p, *prevp;
uint nunits;
nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1;
7b0: 02051493 slli s1,a0,0x20
7b4: 9081 srli s1,s1,0x20
7b6: 04bd addi s1,s1,15
7b8: 8091 srli s1,s1,0x4
7ba: 0014899b addiw s3,s1,1
7be: 0485 addi s1,s1,1
if((prevp = freep) == 0){
7c0: 00000517 auipc a0,0x0
7c4: 14853503 ld a0,328(a0) # 908 <__SDATA_BEGIN__>
7c8: c515 beqz a0,7f4 <malloc+0x58>
base.s.ptr = freep = prevp = &base;
base.s.size = 0;
}
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: 02977f63 bgeu a4,s1,80c <malloc+0x70>
7d2: 8a4e mv s4,s3
7d4: 0009871b sext.w a4,s3
7d8: 6685 lui a3,0x1
7da: 00d77363 bgeu a4,a3,7e0 <malloc+0x44>
7de: 6a05 lui s4,0x1
7e0: 000a0b1b sext.w s6,s4
p = sbrk(nu * sizeof(Header));
7e4: 004a1a1b slliw s4,s4,0x4
p->s.size = nunits;
}
freep = prevp;
return (void*)(p + 1);
}
if(p == freep)
7e8: 00000917 auipc s2,0x0
7ec: 12090913 addi s2,s2,288 # 908 <__SDATA_BEGIN__>
if(p == (char*)-1)
7f0: 5afd li s5,-1
7f2: a88d j 864 <malloc+0xc8>
base.s.ptr = freep = prevp = &base;
7f4: 00000797 auipc a5,0x0
7f8: 11c78793 addi a5,a5,284 # 910 <base>
7fc: 00000717 auipc a4,0x0
800: 10f73623 sd a5,268(a4) # 908 <__SDATA_BEGIN__>
804: e39c sd a5,0(a5)
base.s.size = 0;
806: 0007a423 sw zero,8(a5)
if(p->s.size >= nunits){
80a: b7e1 j 7d2 <malloc+0x36>
if(p->s.size == nunits)
80c: 02e48b63 beq s1,a4,842 <malloc+0xa6>
p->s.size -= nunits;
810: 4137073b subw a4,a4,s3
814: c798 sw a4,8(a5)
p += p->s.size;
816: 1702 slli a4,a4,0x20
818: 9301 srli a4,a4,0x20
81a: 0712 slli a4,a4,0x4
81c: 97ba add a5,a5,a4
p->s.size = nunits;
81e: 0137a423 sw s3,8(a5)
freep = prevp;
822: 00000717 auipc a4,0x0
826: 0ea73323 sd a0,230(a4) # 908 <__SDATA_BEGIN__>
return (void*)(p + 1);
82a: 01078513 addi a0,a5,16
if((p = morecore(nunits)) == 0)
return 0;
}
}
82e: 70e2 ld ra,56(sp)
830: 7442 ld s0,48(sp)
832: 74a2 ld s1,40(sp)
834: 7902 ld s2,32(sp)
836: 69e2 ld s3,24(sp)
838: 6a42 ld s4,16(sp)
83a: 6aa2 ld s5,8(sp)
83c: 6b02 ld s6,0(sp)
83e: 6121 addi sp,sp,64
840: 8082 ret
prevp->s.ptr = p->s.ptr;
842: 6398 ld a4,0(a5)
844: e118 sd a4,0(a0)
846: bff1 j 822 <malloc+0x86>
hp->s.size = nu;
848: 01652423 sw s6,8(a0)
free((void*)(hp + 1));
84c: 0541 addi a0,a0,16
84e: 00000097 auipc ra,0x0
852: ec6080e7 jalr -314(ra) # 714 <free>
return freep;
856: 00093503 ld a0,0(s2)
if((p = morecore(nunits)) == 0)
85a: d971 beqz a0,82e <malloc+0x92>
for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){
85c: 611c ld a5,0(a0)
if(p->s.size >= nunits){
85e: 4798 lw a4,8(a5)
860: fa9776e3 bgeu a4,s1,80c <malloc+0x70>
if(p == freep)
864: 00093703 ld a4,0(s2)
868: 853e mv a0,a5
86a: fef719e3 bne a4,a5,85c <malloc+0xc0>
p = sbrk(nu * sizeof(Header));
86e: 8552 mv a0,s4
870: 00000097 auipc ra,0x0
874: b6e080e7 jalr -1170(ra) # 3de <sbrk>
if(p == (char*)-1)
878: fd5518e3 bne a0,s5,848 <malloc+0xac>
return 0;
87c: 4501 li a0,0
87e: bf45 j 82e <malloc+0x92>
| 29.82695 | 63 | 0.463667 |
02087ac1a93503b95cba7c53b6a97adf0edeec86 | 219 | asm | Assembly | dos/msioctl.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null | dos/msioctl.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null | dos/msioctl.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null | ;
; Microsoft Confidential
; Copyright (C) Microsoft Corporation 1991
; All Rights Reserved.
;
; SCCSID = @(#)IBMIOCTL.INC 1.1 85/04/10
IBM EQU 0FFFFH ;TRUE
INCLUDE IOCTL.INC
SCCSID = @(#)IBMIOCTL.INC 1.1 85/04/10
| 19.909091 | 42 | 0.69863 |
7f2138e0fdcb6d35fc57dac7d4604aea67c66317 | 457 | asm | Assembly | programs/oeis/151/A151914.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/151/A151914.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/151/A151914.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A151914: a(0)=0, a(1)=4; for n>=2, a(n) = (8/3)*(Sum_{i=1..n-1} 3^wt(i)) + 4, where wt() = A000120().
; 0,4,12,20,44,52,76,100,172,180,204,228,300,324,396,468,684,692,716,740,812,836,908,980,1196,1220,1292,1364,1580,1652,1868,2084,2732,2740,2764,2788,2860,2884,2956,3028,3244,3268,3340,3412,3628,3700,3916,4132,4780
seq $0,147562 ; Number of "ON" cells at n-th stage in the "Ulam-Warburton" two-dimensional cellular automaton.
add $0,1
div $0,2
mul $0,4
| 57.125 | 213 | 0.680525 |
5c659cb5a03e0c69c111b3f6d0e057aeced4879a | 7,729 | asm | Assembly | Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_237.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_237.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_237.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r15
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x1c528, %rbx
nop
nop
xor %r12, %r12
vmovups (%rbx), %ymm6
vextracti128 $0, %ymm6, %xmm6
vpextrq $1, %xmm6, %r15
nop
nop
xor %r9, %r9
lea addresses_WC_ht+0x14b58, %rdx
nop
nop
nop
cmp $51663, %r11
mov (%rdx), %rax
nop
nop
nop
dec %r15
lea addresses_UC_ht+0xf6ec, %r12
clflush (%r12)
nop
nop
nop
nop
nop
and %r9, %r9
vmovups (%r12), %ymm4
vextracti128 $1, %ymm4, %xmm4
vpextrq $0, %xmm4, %r11
nop
nop
nop
add $60067, %r15
lea addresses_WT_ht+0x14ccc, %rsi
lea addresses_WC_ht+0x16b18, %rdi
nop
nop
nop
add %r12, %r12
mov $74, %rcx
rep movsq
nop
nop
add $26129, %rbx
lea addresses_UC_ht+0xde44, %rdx
clflush (%rdx)
nop
nop
nop
xor %rax, %rax
movl $0x61626364, (%rdx)
nop
nop
inc %r12
lea addresses_A_ht+0x2608, %r11
nop
nop
nop
and $13930, %rcx
mov $0x6162636465666768, %r9
movq %r9, %xmm4
and $0xffffffffffffffc0, %r11
vmovaps %ymm4, (%r11)
nop
nop
nop
nop
xor %rdi, %rdi
lea addresses_WT_ht+0x1a288, %r15
nop
nop
nop
nop
dec %rcx
movw $0x6162, (%r15)
nop
nop
nop
xor %r9, %r9
lea addresses_D_ht+0x116da, %r9
nop
nop
nop
nop
nop
inc %r15
movl $0x61626364, (%r9)
nop
nop
nop
nop
nop
sub $41502, %r15
lea addresses_A_ht+0x16cc6, %rdx
sub %rcx, %rcx
mov (%rdx), %r11d
nop
inc %rdx
lea addresses_normal_ht+0xcb58, %rbx
xor $15493, %rsi
movw $0x6162, (%rbx)
nop
nop
nop
nop
dec %r11
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rbx
pop %rax
pop %r9
pop %r15
pop %r12
pop %r11
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r13
push %r15
push %r9
push %rbp
push %rdi
// Load
lea addresses_US+0x7358, %r11
nop
nop
nop
sub %r15, %r15
mov (%r11), %r13d
nop
nop
inc %r15
// Store
lea addresses_normal+0x1a758, %rbp
and $16144, %rdi
movw $0x5152, (%rbp)
nop
nop
nop
nop
nop
xor %r9, %r9
// Store
lea addresses_UC+0x10360, %rbp
nop
nop
nop
nop
xor $35894, %r15
mov $0x5152535455565758, %r13
movq %r13, %xmm1
movaps %xmm1, (%rbp)
and $57981, %r11
// Store
lea addresses_WT+0x1c740, %rbp
nop
nop
inc %r10
mov $0x5152535455565758, %rdi
movq %rdi, %xmm7
movups %xmm7, (%rbp)
nop
xor $24730, %r11
// Store
lea addresses_UC+0x14322, %r15
nop
nop
nop
sub $43599, %rbp
movb $0x51, (%r15)
nop
nop
nop
nop
nop
inc %rdi
// Faulty Load
lea addresses_WT+0xbb58, %rdi
nop
nop
nop
sub $9674, %r11
mov (%rdi), %rbp
lea oracles, %r9
and $0xff, %rbp
shlq $12, %rbp
mov (%r9,%rbp,1), %rbp
pop %rdi
pop %rbp
pop %r9
pop %r15
pop %r13
pop %r11
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'congruent': 0, 'AVXalign': False, 'same': False, 'size': 1, 'NT': False, 'type': 'addresses_WT'}, 'OP': 'LOAD'}
{'src': {'congruent': 10, 'AVXalign': False, 'same': False, 'size': 4, 'NT': True, 'type': 'addresses_US'}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'congruent': 9, 'AVXalign': False, 'same': False, 'size': 2, 'NT': False, 'type': 'addresses_normal'}}
{'OP': 'STOR', 'dst': {'congruent': 2, 'AVXalign': True, 'same': False, 'size': 16, 'NT': False, 'type': 'addresses_UC'}}
{'OP': 'STOR', 'dst': {'congruent': 1, 'AVXalign': False, 'same': False, 'size': 16, 'NT': False, 'type': 'addresses_WT'}}
{'OP': 'STOR', 'dst': {'congruent': 0, 'AVXalign': False, 'same': False, 'size': 1, 'NT': False, 'type': 'addresses_UC'}}
[Faulty Load]
{'src': {'congruent': 0, 'AVXalign': False, 'same': True, 'size': 8, 'NT': False, 'type': 'addresses_WT'}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'congruent': 3, 'AVXalign': False, 'same': False, 'size': 32, 'NT': False, 'type': 'addresses_WT_ht'}, 'OP': 'LOAD'}
{'src': {'congruent': 10, 'AVXalign': False, 'same': False, 'size': 8, 'NT': False, 'type': 'addresses_WC_ht'}, 'OP': 'LOAD'}
{'src': {'congruent': 1, 'AVXalign': False, 'same': False, 'size': 32, 'NT': False, 'type': 'addresses_UC_ht'}, 'OP': 'LOAD'}
{'src': {'congruent': 2, 'same': False, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'dst': {'congruent': 3, 'same': False, 'type': 'addresses_WC_ht'}}
{'OP': 'STOR', 'dst': {'congruent': 2, 'AVXalign': False, 'same': False, 'size': 4, 'NT': True, 'type': 'addresses_UC_ht'}}
{'OP': 'STOR', 'dst': {'congruent': 3, 'AVXalign': True, 'same': False, 'size': 32, 'NT': False, 'type': 'addresses_A_ht'}}
{'OP': 'STOR', 'dst': {'congruent': 4, 'AVXalign': False, 'same': False, 'size': 2, 'NT': False, 'type': 'addresses_WT_ht'}}
{'OP': 'STOR', 'dst': {'congruent': 0, 'AVXalign': False, 'same': False, 'size': 4, 'NT': False, 'type': 'addresses_D_ht'}}
{'src': {'congruent': 1, 'AVXalign': False, 'same': False, 'size': 4, 'NT': True, 'type': 'addresses_A_ht'}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'congruent': 11, '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
*/
| 31.291498 | 2,999 | 0.653772 |
0b6d9c11d96414dc10fc2ed633cf746970aa619b | 742 | asm | Assembly | oeis/292/A292893.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/292/A292893.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/292/A292893.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A292893: E.g.f.: exp(x * (1 - exp(x))).
; Submitted by Christian Krause
; 1,0,-2,-3,8,55,84,-637,-4992,-10593,92060,1012099,3642000,-18733585,-354606084,-2157876645,2003383424,175455790399,1766183783868,5436448194707,-96997103373360,-1770215099996721,-13073420293290148,22275369715313131,1919483837248530432,25727409505350631775,131957322742718261724,-1667552470430932379997,-48147084407656975332592,-549747934784345848330193,-1362809556091319575322820,75445725905887973942139899,1673921716235323026581640960,17072507539124939400592107135,-14722184534905594411580012164
mov $4,$0
add $0,1
lpb $0
sub $0,1
mov $2,$4
add $2,1
sub $2,$1
pow $2,$1
mov $3,$4
bin $3,$1
add $1,1
mul $3,$2
mul $5,-1
add $5,$3
lpe
mov $0,$5
| 35.333333 | 497 | 0.764151 |
ddac91356569d49568c84298ab93ba05f3bf53f2 | 665 | asm | Assembly | oeis/234/A234462.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/234/A234462.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/234/A234462.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A234462: a(n) = 3*binomial(8*n+3,n)/(8*n+3).
; Submitted by Jamie Morken(s4)
; 1,3,27,325,4488,67158,1059380,17346582,292046040,5023824887,87915626370,1560176040519,28011228029512,507874087572600,9286024289123268,171026036066072924,3169969149156895800,59085490354010508600,1106795192170066119435,20825010647037097717755,393405371935870110951960,7458747873090108482441268,141879125923381700631690120,2706906254570550503387800650,51787023242802281077586116920,993266421911519952116270039508,19095138558602289496234683896904,367888981244052318624001146286421
mov $2,$0
mul $2,6
add $2,2
add $2,$0
add $0,$2
bin $0,$2
mul $0,12
mov $1,$2
add $1,1
div $0,$1
div $0,4
| 41.5625 | 478 | 0.833083 |
1083acd2ebc78ffb430c85c5770e0537478a8941 | 6,201 | asm | Assembly | Transynther/x86/_processed/US/_zr_/i7-8650U_0xd2_notsx.log_9_1236.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/US/_zr_/i7-8650U_0xd2_notsx.log_9_1236.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/US/_zr_/i7-8650U_0xd2_notsx.log_9_1236.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 %r8
push %r9
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0xa11c, %rcx
nop
nop
nop
nop
nop
sub $56306, %r8
mov $0x6162636465666768, %rax
movq %rax, %xmm0
movups %xmm0, (%rcx)
nop
nop
nop
nop
xor %rax, %rax
lea addresses_normal_ht+0x1101c, %rsi
lea addresses_UC_ht+0x11d4c, %rdi
nop
nop
nop
nop
cmp $57254, %r9
mov $54, %rcx
rep movsq
and $4773, %rdi
lea addresses_WC_ht+0x16d3c, %rdi
nop
nop
add $47904, %rax
mov $0x6162636465666768, %r8
movq %r8, %xmm4
and $0xffffffffffffffc0, %rdi
vmovntdq %ymm4, (%rdi)
sub %rdi, %rdi
lea addresses_WT_ht+0x1b4fc, %r9
nop
nop
nop
nop
xor %rsi, %rsi
movw $0x6162, (%r9)
inc %rax
lea addresses_UC_ht+0x1d2dc, %rax
clflush (%rax)
nop
nop
nop
add $57782, %rbp
mov (%rax), %edi
nop
nop
cmp %rdi, %rdi
lea addresses_normal_ht+0x231c, %rsi
lea addresses_WT_ht+0x8b1c, %rdi
nop
nop
nop
nop
nop
xor %r9, %r9
mov $77, %rcx
rep movsl
nop
nop
cmp $64767, %rsi
lea addresses_D_ht+0x1811c, %rax
nop
nop
and %rdi, %rdi
mov (%rax), %si
nop
nop
nop
nop
add $35781, %rdi
lea addresses_D_ht+0x149b6, %rbp
nop
nop
nop
nop
sub %r9, %r9
movl $0x61626364, (%rbp)
nop
cmp %r8, %r8
lea addresses_A_ht+0xbb1c, %rdi
nop
nop
inc %rsi
mov $0x6162636465666768, %rbp
movq %rbp, %xmm5
vmovups %ymm5, (%rdi)
nop
sub %rbp, %rbp
lea addresses_UC_ht+0x1adc2, %rsi
lea addresses_WT_ht+0x12b1c, %rdi
nop
nop
nop
xor %rbx, %rbx
mov $51, %rcx
rep movsl
nop
nop
nop
nop
nop
dec %rbx
lea addresses_A_ht+0xc41c, %rsi
lea addresses_WT_ht+0x1d71c, %rdi
cmp %rax, %rax
mov $26, %rcx
rep movsw
nop
nop
nop
nop
nop
inc %r9
lea addresses_WT_ht+0x6a64, %rsi
lea addresses_UC_ht+0xd43c, %rdi
nop
nop
nop
add %r9, %r9
mov $110, %rcx
rep movsw
nop
nop
nop
nop
and $29853, %rsi
lea addresses_normal_ht+0x168dc, %rax
nop
xor $19427, %r8
vmovups (%rax), %ymm0
vextracti128 $0, %ymm0, %xmm0
vpextrq $1, %xmm0, %r9
sub %rsi, %rsi
lea addresses_WC_ht+0x15b1c, %rsi
nop
nop
nop
nop
nop
add %rax, %rax
mov (%rsi), %rcx
nop
nop
nop
nop
nop
inc %rbp
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %rbp
pop %rax
pop %r9
pop %r8
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %r13
push %r8
push %r9
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
// Load
lea addresses_WC+0x30c2, %rdx
nop
nop
xor $52965, %r10
movb (%rdx), %r13b
nop
nop
xor $39450, %r10
// Load
lea addresses_normal+0xe1ac, %r9
nop
nop
nop
nop
nop
add %r10, %r10
mov (%r9), %rdx
cmp $31427, %r13
// Store
lea addresses_D+0x1af2c, %rdx
nop
nop
nop
nop
nop
sub %r12, %r12
movb $0x51, (%rdx)
nop
nop
nop
nop
nop
inc %rax
// REPMOV
lea addresses_D+0x1831c, %rsi
lea addresses_UC+0xb1c, %rdi
dec %rax
mov $13, %rcx
rep movsb
nop
add %rdx, %rdx
// Load
lea addresses_WT+0x14f1c, %r8
nop
nop
nop
nop
add %rdx, %rdx
mov (%r8), %r9d
and %r9, %r9
// Store
lea addresses_US+0x1031c, %r8
clflush (%r8)
nop
nop
nop
nop
xor %rsi, %rsi
mov $0x5152535455565758, %rdi
movq %rdi, %xmm3
movups %xmm3, (%r8)
sub $16046, %r8
// Faulty Load
lea addresses_US+0x1031c, %r12
dec %r9
movups (%r12), %xmm6
vpextrq $1, %xmm6, %rcx
lea oracles, %r12
and $0xff, %rcx
shlq $12, %rcx
mov (%r12,%rcx,1), %rcx
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rax
pop %r9
pop %r8
pop %r13
pop %r12
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_US', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_WC', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_normal', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_D', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_D', 'congruent': 11, 'same': False}, 'dst': {'type': 'addresses_UC', 'congruent': 8, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_WT', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 9, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_US', 'size': 16, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_US', 'size': 16, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
<gen_prepare_buffer>
{'OP': 'STOR', 'dst': {'type': 'addresses_D_ht', 'size': 16, 'AVXalign': False, 'NT': False, 'congruent': 9, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_normal_ht', 'congruent': 6, 'same': True}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 1, 'same': True}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'size': 32, 'AVXalign': False, 'NT': True, 'congruent': 5, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'size': 2, 'AVXalign': True, 'NT': True, 'congruent': 5, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 5, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_normal_ht', 'congruent': 9, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 11, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_D_ht', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 9, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_D_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 1, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_A_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 10, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_UC_ht', 'congruent': 1, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 11, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_A_ht', 'congruent': 6, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 9, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_WT_ht', 'congruent': 3, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 4, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_normal_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 6, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_WC_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 10, 'same': False}}
{'00': 9}
00 00 00 00 00 00 00 00 00
*/
| 20.264706 | 153 | 0.647476 |
ca2ca5f40a44f42da542cdd183ab01cc9dcf38b0 | 315 | asm | Assembly | programs/oeis/054/A054055.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/054/A054055.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/054/A054055.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A054055: Largest digit of n.
; 0,1,2,3,4,5,6,7,8,9,1,1,2,3,4,5,6,7,8,9,2,2,2,3,4,5,6,7,8,9,3,3,3,3,4,5,6,7,8,9,4,4,4,4,4,5,6,7,8,9,5,5,5,5,5,5,6,7,8,9,6,6,6,6,6,6,6,7,8,9,7,7,7,7,7,7,7,7,8,9,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9
lpb $0
mov $2,$0
div $0,10
mod $2,10
trn $1,$2
add $1,$2
lpe
mov $0,$1
| 26.25 | 201 | 0.511111 |
12ef7e7160742a8b2c6ea0977a99e1b09cd4ccd8 | 10,464 | asm | Assembly | exampl01/3dframes/3dframes.asm | AlexRogalskiy/Masm | d39498878f140696b299c76436f209156961429e | [
"MIT"
] | null | null | null | exampl01/3dframes/3dframes.asm | AlexRogalskiy/Masm | d39498878f140696b299c76436f209156961429e | [
"MIT"
] | null | null | null | exampl01/3dframes/3dframes.asm | AlexRogalskiy/Masm | d39498878f140696b299c76436f209156961429e | [
"MIT"
] | null | null | null | ; #########################################################################
;
; The framing affects are drawn on the client area by a single procedure,
; "Frame3D". In the WmdProc message handling Proc, the WM_PAINT message
; calls another Proc called "Paint_Proc" which contains the procedure calls
; to "Frame3D".
;
; #########################################################################
.386
.model flat, stdcall
option casemap :none ; case sensitive
; #########################################################################
include \masm32\include\windows.inc
include \masm32\include\user32.inc
include \masm32\include\kernel32.inc
include \masm32\include\gdi32.inc
includelib \masm32\lib\user32.lib
includelib \masm32\lib\kernel32.lib
includelib \masm32\lib\gdi32.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
Paint_Proc PROTO :DWORD, hDC:DWORD
Frame3D PROTO :DWORD,:DWORD,:DWORD,:DWORD,:DWORD,:DWORD,:DWORD,:DWORD
PushButton PROTO :DWORD,:DWORD,:DWORD,:DWORD,:DWORD,:DWORD,:DWORD
.data
szDisplayName db "3D Frames",0
CommandLine dd 0
hWnd dd 0
hInstance 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, 500
mov Wht, 350
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_LEFT,
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
LOCAL hDC :DWORD
LOCAL Ps :PAINTSTRUCT
.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_PAINT
invoke BeginPaint,hWin,ADDR Ps
mov hDC, eax
invoke Paint_Proc,hWin,hDC
invoke EndPaint,hWin,ADDR Ps
return 0
.elseif uMsg == WM_CREATE
jmp @F
Butn1 db "&Save",0
Butn2 db "&Cancel",0
Butn3 db "&Help",0
@@:
invoke PushButton,ADDR Butn1,hWin,350,30,100,25,500
invoke PushButton,ADDR Butn2,hWin,350,60,100,25,500
invoke PushButton,ADDR Butn3,hWin,350,90,100,25,500
.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
; #########################################################################
Paint_Proc proc hWin:DWORD, hDC:DWORD
LOCAL btn_hi :DWORD
LOCAL btn_lo :DWORD
LOCAL Rct :RECT
invoke GetSysColor,COLOR_BTNHIGHLIGHT
mov btn_hi, eax
invoke GetSysColor,COLOR_BTNSHADOW
mov btn_lo, eax
; --------------------------------------------------------
; The following 2 calls draw the border around the buttons
; --------------------------------------------------------
invoke Frame3D,hDC,btn_lo,btn_hi,340,20,460,125,2
invoke Frame3D,hDC,btn_hi,btn_lo,337,17,463,128,2
; -----------------------------------------------------
; The following 2 calls draw the left window frame area
; -----------------------------------------------------
invoke Frame3D,hDC,btn_lo,btn_hi,17,17,328,290,2
invoke Frame3D,hDC,btn_hi,btn_lo,20,20,325,287,1
; ----------------------------------------------------------
; The following code draws the border around the client area
; ----------------------------------------------------------
invoke GetClientRect,hWin,ADDR Rct
add Rct.left, 1
add Rct.top, 1
sub Rct.right, 1
sub Rct.bottom, 1
invoke Frame3D,hDC,btn_lo,btn_hi,
Rct.left,Rct.top,
Rct.right,Rct.bottom,2
add Rct.left, 4
add Rct.top, 4
sub Rct.right, 4
sub Rct.bottom, 4
invoke Frame3D,hDC,btn_hi,btn_lo,
Rct.left,
Rct.top,Rct.right,Rct.bottom,2
return 0
Paint_Proc endp
; ########################################################################
PushButton proc lpText:DWORD,hParent:DWORD,
a:DWORD,b:DWORD,wd:DWORD,ht:DWORD,ID:DWORD
szText btnClass,"BUTTON"
invoke CreateWindowEx,0,
ADDR btnClass,lpText,
WS_CHILD or WS_VISIBLE,
a,b,wd,ht,hParent,ID,
hInstance,NULL
ret
PushButton endp
; ########################################################################
Frame3D proc hDC:DWORD,btn_hi:DWORD,btn_lo:DWORD,
tx:DWORD, ty:DWORD, lx:DWORD, ly:DWORD,bdrWid:DWORD
; --------------------------------
; prototype and example usage code
; --------------------------------
; LOCAL btn_hi :DWORD
; LOCAL btn_lo :DWORD
; invoke GetSysColor,COLOR_BTNHIGHLIGHT
; mov btn_hi, eax
; invoke GetSysColor,COLOR_BTNSHADOW
; mov btn_lo, eax
; invoke Frame3D,hDC,btn_lo,btn_hi,50,50,150,100,2
; invoke Frame3D,hDC,btn_hi,btn_lo,47,47,153,103,2
; --------------------------------
LOCAL hPen :DWORD
LOCAL hPen2 :DWORD
LOCAL hpenOld :DWORD
invoke CreatePen,0,1,btn_hi
mov hPen, eax
invoke SelectObject,hDC,hPen
mov hpenOld, eax
; ------------------------------------
; Save copy of parameters for 2nd loop
; ------------------------------------
push tx
push ty
push lx
push ly
push bdrWid
; ------------
lpOne:
invoke MoveToEx,hDC,tx,ty,NULL
invoke LineTo,hDC,lx,ty
invoke MoveToEx,hDC,tx,ty,NULL
invoke LineTo,hDC,tx,ly
dec tx
dec ty
inc lx
inc ly
dec bdrWid
cmp bdrWid, 0
je lp1Out
jmp lpOne
lp1Out:
; ------------
invoke CreatePen,0,1,btn_lo
mov hPen2, eax
invoke SelectObject,hDC,hPen2
mov hPen, eax
invoke DeleteObject,hPen
; ------------
pop bdrWid
pop ly
pop lx
pop ty
pop tx
lpTwo:
invoke MoveToEx,hDC,tx,ly,NULL
invoke LineTo,hDC,lx,ly
invoke MoveToEx,hDC,lx,ty,NULL
inc ly
invoke LineTo,hDC,lx,ly
dec ly
dec tx
dec ty
inc lx
inc ly
dec bdrWid
cmp bdrWid, 0
je lp2Out
jmp lpTwo
lp2Out:
; ------------
invoke SelectObject,hDC,hpenOld
invoke DeleteObject,hPen2
ret
Frame3D endp
; #########################################################################
end start
| 25.459854 | 77 | 0.481556 |
5fc0570c69cf53a41337ad81647a01107b3fc499 | 531 | asm | Assembly | libsrc/msx/gen_setrd.asm | grancier/z180 | e83f35e36c9b4d1457e40585019430e901c86ed9 | [
"ClArtistic"
] | null | null | null | libsrc/msx/gen_setrd.asm | grancier/z180 | e83f35e36c9b4d1457e40585019430e901c86ed9 | [
"ClArtistic"
] | null | null | null | libsrc/msx/gen_setrd.asm | grancier/z180 | e83f35e36c9b4d1457e40585019430e901c86ed9 | [
"ClArtistic"
] | 1 | 2019-12-03T23:57:48.000Z | 2019-12-03T23:57:48.000Z | ;
; z88dk library: Generic VDP support code
;
; $Id: gen_setrd.asm,v 1.3 2016/06/16 19:30:25 dom Exp $
;
SECTION code_clib
PUBLIC SETRD
PUBLIC _SETRD
INCLUDE "msx/vdp.inc"
;==============================================================
; VRAM to HL
;==============================================================
; Sets VRAM read address to hl
;==============================================================
.SETRD
._SETRD
di
ld a,l
out (VDP_CMD),a
ld a,h
and $3F
out (VDP_CMD),a
ei
ret
| 18.964286 | 63 | 0.393597 |
99e7bd5c04647ade066867d6998fe418a916abb1 | 391 | asm | Assembly | programs/oeis/289/A289139.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/289/A289139.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/289/A289139.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A289139: a(n) is the number of odd integers divisible by 7 in ]4*(n-1)^2, 4*n^2[.
; 0,0,1,2,2,2,3,4,4,5,6,6,6,7,8,8,9,10,10,10,11,12,12,13,14,14,14,15,16,16,17,18,18,18,19,20,20,21,22,22,22,23,24,24,25,26,26,26,27,28,28,29,30,30,30,31,32,32,33,34,34,34,35,36,36,37,38,38,38,39,40,40
mul $0,2
add $0,1
mov $2,-1
lpb $0
sub $0,1
add $2,4
trn $0,$2
add $0,$2
sub $0,2
lpe
div $0,2
| 26.066667 | 200 | 0.595908 |
b0328b5a4ee4f0a0bb5d6a26a56a6ce3321c039c | 4,439 | asm | Assembly | dv3/qlf/ld5b.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | dv3/qlf/ld5b.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | dv3/qlf/ld5b.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | ; DV3 QL5B Format Load File V3.00 1994 Tony Tebby QJUMP
section dv3
xdef qlf_ld5b
xref qlf_ls5b
xref dv3_sload
xref dv3_sbloc
include 'dev8_keys_ql5b'
include 'dev8_dv3_keys'
include 'dev8_dv3_qlf_keys'
include 'dev8_keys_hdr'
include 'dev8_keys_err'
;+++
; DV3 QL5B format load file.
; It checks whether the first sector of a file is in slave blocks, and if
; it is, it does ordinary IO.
;
; d1 cr amount read so far
; d2 c p amount to load
; d3 s
; d4 s
; d5 s
; d6 c p file id
; d7 c p drive ID / number
; a0 c p channel block (end address of load)
; a1 c u pointer to memory to load into
; a2 s start address of load
; a3 c p pointer to linkage block
; a4 c p pointer to physical definition
; a5 p
;---
qlf_ld5b
tst.l d1 ; any loaded already?
bne.l dv3_sload ; ... yes, standard load
;*** d1 must be zero for code below
move.l d3c_feof(a0),d3 ; get length
moveq #hdr.len,d0
sub.l d0,d3 ; real length!!
cmp.l #1024,d3 ; at least 1024 bytes?
blt.l dv3_sload ; ... no
tst.b ddf_slld(a4) ; slaved loading preferred?
beq.s ql5_load ; ... no, direct load
moveq #0,d5 ; first sector
lea d3c_csb(a0),a2
jsr dv3_sbloc ; locate slave block
seq ddf_slld(a4) ; slaved loading preferred
beq.l dv3_sload ; do standard load
ql5_load
ql5.rege reg d3/d6/a0/a5 ; length on entry
ql5.regx reg d1/d6/a0/a5 ; is d1 on exit
movem.l ql5.rege,-(sp)
ql5_flush
moveq #-1,d0
jsr ddl_fflush(a3)
addq.l #-err.nc,d0 ; not complete?
beq.s ql5_flush ; ... yes, wait
subq.l #-err.nc,d0
bne.l ql5_exit ; ... oops
subq.w #1,d6 ; file ID is one different in map
move.l a1,a2 ; start address of load
lea (a1,d3.l),a0 ; end address of load
lea qdf_map(a4),a5 ; map
moveq #0,d5
move.w ddf_slen(a4),d5 ; sector length
moveq #0,d3 ; start looking at track 0
ql5_tr_loop
moveq #0,d4 ; side 0
ql5_si_loop
clr.w d4 ; start at physical sector 0 (offset)
ql5_se_loop
move.l d4,d0
bpl.s ql5_ps_set ; side 0
tas d0 ; side 1
ql5_ps_set
moveq #0,d1 ; find logical sector
move.w q5a_scyl(a5),d1
subq.w #1,d1
ql5_ps_look
cmp.b q5a_lgph(a5,d1.w),d0 ; the right sector?
dbeq d1,ql5_ps_look
move.w d3,d0 ; track
mulu q5a_scyl(a5),d0 ; * nr of sectors (msw end d0=0)
add.w d1,d0 ; logical sector on drive
move.l d0,d2
divu q5a_allc(a5),d2 ; posn in map (msw is posn in group)
move.w d2,d1
add.w d2,d2
add.w d1,d2 ; address in map
lea q5a_gmap(a5,d2.w),a1
move.b (a1)+,d1 ; get 12 bits of map
lsl.w #8,d1
move.b (a1)+,d1
ror.l #4,d1
cmp.w d6,d1 ; is the file the same?
bne.s ql5_se_next ; ... no
swap d1 ; ... yes
lsr.w #4,d1
move.b (a1)+,d1 ; get group number
mulu q5a_allc(a5),d1 ; as sector number
swap d2
add.w d2,d1 ; + sector within group
mulu d5,d1 ; gives address from base of load
bne.s ql5_sa1 ; not the first sector
lea (a2),a1 ; load into start
moveq #hdr.len,d1 ; offset of start in sector
bra.s ql5_ckend
ql5_sa1
lea -hdr.len(a2,d1.l),a1 ; set start address (less header)
moveq #0,d1 ; and no offset
ql5_ckend
cmp.l a0,a1 ; is start of sector off end of file?
bge.s ql5_se_next ; ... yes
move.l a0,d2 ; end of file
sub.l a1,d2 ; amount to read
add.l d1,d2 ; corrected
cmp.l d5,d2 ; at least a sector?
blt.s ql5_buff ; ... no, buffer it
move.l d5,d2
tst.w d1 ; part sector?
beq.s ql5_rdo ; ... no
ql5_buff
move.l a1,a5
move.l ddl_bfbas(a3),a1 ; ... yes, use buffer
bsr.s ql5_rsect ; read sector
bne.s ql5_exit ; ... oops
add.w d1,a1 ; start copying from here
sub.w d1,d2
bra.s ql5_plend
ql5_ploop
move.b (a1)+,(a5)+
ql5_plend
dbra d2,ql5_ploop
lea qdf_map(a4),a5 ; restore map
bra.s ql5_se_next
ql5_rsect
jsr qlf_ls5b ; get physical sector number
move.l d2,-(sp)
moveq #1,d2
jsr ddl_rsect(a3) ; read sector
move.l (sp)+,d2
tst.l d0
rts
ql5_rdo
bsr.s ql5_rsect ; read sector
bne.s ql5_exit ; ... oops
ql5_se_next
addq.w #1,d4 ; next physical sector
cmp.w q5a_strk(a5),d4 ; off end?
blt.l ql5_se_loop ; ... no
bset #31,d4 ; side 1
bne.s ql5_tr_next ; ... already
cmp.w q5a_scyl(a5),d4 ; is it single sided?
bne.l ql5_si_loop ; ... no
ql5_tr_next
addq.l #1,d3 ; next track (cylinder)
cmp.w q5a_trak(a5),d3 ; off end?
blt.l ql5_tr_loop ; ... no
move.l a0,a1 ; end pointer
moveq #0,d0
ql5_exit
movem.l (sp)+,ql5.regx
rts
end
| 22.532995 | 73 | 0.651273 |
61ad1842b31a19c8810b1dc3d3724bf5f58d6894 | 654 | asm | Assembly | research/03/test.asm | NNNIC/psgg-nasm-sample | dfe5454f73ae3b9d86756548f5dffbedc1a03808 | [
"MIT"
] | null | null | null | research/03/test.asm | NNNIC/psgg-nasm-sample | dfe5454f73ae3b9d86756548f5dffbedc1a03808 | [
"MIT"
] | null | null | null | research/03/test.asm | NNNIC/psgg-nasm-sample | dfe5454f73ae3b9d86756548f5dffbedc1a03808 | [
"MIT"
] | null | null | null | %include "io.inc"
; ----------------------------------------------------------------------------------------
; Writes "Hello, World" to the console using only system calls. Runs on 64-bit Linux only.
; To assemble and run:
;
; nasm -felf64 hello.asm && ld hello.o && ./a.out
; ----------------------------------------------------------------------------------------
global CMAIN
extern _printf
section .text
CMAIN:
mov ebp, esp; for correct debugging
push message
call _printf
add esp, 4
ret
message:
db 'Hello, World', 10, 0
| 29.727273 | 90 | 0.379205 |
2e55b8d297117ac3e87da2bde6a85eb66358a8dc | 156 | asm | Assembly | solutions/09 - Dynamic Angles/size-5_speed-5.asm | behrmann/7billionhumans | 36d53daf278ef4f3729bc5cba2f2398d5411bd6d | [
"MIT"
] | 45 | 2018-09-05T04:56:59.000Z | 2021-11-22T08:57:26.000Z | solutions/09 - Dynamic Angles/size-5_speed-5.asm | behrmann/7billionhumans | 36d53daf278ef4f3729bc5cba2f2398d5411bd6d | [
"MIT"
] | 36 | 2018-09-01T11:34:26.000Z | 2021-05-19T23:20:49.000Z | solutions/09 - Dynamic Angles/size-5_speed-5.asm | behrmann/7billionhumans | 36d53daf278ef4f3729bc5cba2f2398d5411bd6d | [
"MIT"
] | 36 | 2018-09-01T07:44:19.000Z | 2021-09-10T19:07:35.000Z | -- 7 Billion Humans (2053) --
-- 9: Dynamic Angles --
-- Author: tiansh
-- Size: 5
-- Speed: 5
pickup s
a:
step s
if nw == datacube:
drop
endif
jump a
| 9.176471 | 29 | 0.602564 |
12edf8dd1375c326b2c584627d233508bb655df9 | 25,707 | asm | Assembly | engine/battle/trainer_ai.asm | etdv-thevoid/pokemon-rgb-enhanced | 5b244c1cf46aab98b9c820d1b7888814eb7fa53f | [
"MIT"
] | 1 | 2022-01-09T05:28:52.000Z | 2022-01-09T05:28:52.000Z | engine/battle/trainer_ai.asm | ETDV-TheVoid/pokemon-rgb-enhanced | 5b244c1cf46aab98b9c820d1b7888814eb7fa53f | [
"MIT"
] | null | null | null | engine/battle/trainer_ai.asm | ETDV-TheVoid/pokemon-rgb-enhanced | 5b244c1cf46aab98b9c820d1b7888814eb7fa53f | [
"MIT"
] | null | null | null | ; creates a set of moves that may be used and returns its address in hl
; unused slots are filled with 0, all used slots may be chosen with equal probability
AIEnemyTrainerChooseMoves:
ld a, $20 ; for smart AI
ld hl, wBuffer ; init temporary move selection array. Only the moves with the lowest numbers are chosen in the end
ld [hli], a ; move 1
ld [hli], a ; move 2
ld [hli], a ; move 3
ld [hl], a ; move 4
ld a, [wEnemyDisabledMove] ; forbid disabled move (if any)
swap a
and $f
jr z, .noMoveDisabled
ld hl, wBuffer
dec a
ld c, a
ld b, $0
add hl, bc ; advance pointer to forbidden move
ld [hl], $50 ; forbid (highly discourage) disabled move
.noMoveDisabled
ld hl, TrainerClassMoveChoiceModifications
ld a, [wTrainerClass]
ld b, a
.loopTrainerClasses
dec b
jr z, .readTrainerClassData
.loopTrainerClassData
ld a, [hli]
and a
jr nz, .loopTrainerClassData
jr .loopTrainerClasses
.readTrainerClassData
ld a, [hl]
and a
jp z, .useOriginalMoveSet
push hl
.nextMoveChoiceModification
pop hl
ld a, [hli]
and a
jr z, .loopFindMinimumEntries
push hl
ld hl, AIMoveChoiceModificationFunctionPointers
dec a
add a
ld c, a
ld b, 0
add hl, bc ; skip to pointer
ld a, [hli] ; read pointer into hl
ld h, [hl]
ld l, a
ld de, .nextMoveChoiceModification ; set return address
push de
jp hl ; execute modification function
.loopFindMinimumEntries ; all entries will be decremented sequentially until one of them is zero
ld hl, wBuffer ; temp move selection array
ld de, wEnemyMonMoves ; enemy moves
ld c, NUM_MOVES
.loopDecrementEntries
ld a, [de]
inc de
and a
jr z, .loopFindMinimumEntries
dec [hl]
jr z, .minimumEntriesFound
inc hl
dec c
jr z, .loopFindMinimumEntries
jr .loopDecrementEntries
.minimumEntriesFound
ld a, c
.loopUndoPartialIteration ; undo last (partial) loop iteration
inc [hl]
dec hl
inc a
cp NUM_MOVES + 1
jr nz, .loopUndoPartialIteration
ld hl, wBuffer ; temp move selection array
ld de, wEnemyMonMoves ; enemy moves
ld c, NUM_MOVES
.filterMinimalEntries ; all minimal entries now have value 1. All other slots will be disabled (move set to 0)
ld a, [de]
and a
jr nz, .moveExisting
ld [hl], a
.moveExisting
ld a, [hl]
dec a
jr z, .slotWithMinimalValue
xor a
ld [hli], a ; disable move slot
jr .next
.slotWithMinimalValue
ld a, [de]
ld [hli], a ; enable move slot
.next
inc de
dec c
jr nz, .filterMinimalEntries
ld hl, wBuffer ; use created temporary array as move set
ret
.useOriginalMoveSet
ld hl, wEnemyMonMoves ; use original move set
ret
AIMoveChoiceModificationFunctionPointers:
dw AIMoveChoiceModification1
dw AIMoveChoiceModification2
dw AIMoveChoiceModification3
dw AIMoveChoiceModification4
; discourages moves that cause no damage but only a status
; ailment if player's mon already has one
AIMoveChoiceModification1:
ld a, [wBattleMonStatus]
and a
ret z ; return if no status ailment on player's mon
ld hl, wBuffer - 1 ; temp move selection array (-1 byte offset)
ld de, wEnemyMonMoves ; enemy moves
ld b, NUM_MOVES + 1
.nextMove
dec b
ret z ; processed all 4 moves
inc hl
ld a, [de]
and a
ret z ; no more moves in move set
inc de
call ReadMove
ld a, [wEnemyMovePower]
and a
jr nz, .nextMove
ld a, [wEnemyMoveEffect]
push hl
push de
push bc
ld hl, StatusAilmentMoveEffects
ld de, $0001
call IsInArray
pop bc
pop de
pop hl
jr nc, .nextMove
ld a, [hl]
add $20 ; heavily discourage move
ld [hl], a
jr .nextMove
StatusAilmentMoveEffects:
db $01 ; unused sleep effect
db SLEEP_EFFECT
db POISON_EFFECT
db PARALYZE_EFFECT
db $FF
; Deleted & Unused
AIMoveChoiceModification2:
ret
; Deleted & Unused
AIMoveChoiceModification3:
ret
; Smart AI routine
; Does everything a good Trainer would do...
AIMoveChoiceModification4:
; damaging move priority on turn 3+
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement
cp $2
jr c, .healingCheck
ld hl, wBuffer - 1
ld de, wEnemyMonMoves
ld b, NUM_MOVES + 1
.damageLoop
dec b
jr z, .healingCheck
inc hl
ld a, [de]
and a
jr z, .healingCheck
inc de
call ReadMove
ld a, [wEnemyMovePower]
and a
jr z, .damageLoop
; encourage by 2
dec [hl]
dec [hl]
jr .damageLoop
; healing moves?
.healingCheck
ld a, [wEnemyMonMaxHP]
and a
jr z, .noscale
ld b, a
ld a, [wEnemyMonMaxHP + 1]
srl b
rr a
ld b, a
ld a, [wEnemyMonHP]
ld c, a
ld a, [wEnemyMonHP + 1]
srl c
rr a
ld c, a
jr .realHealCheck
.noscale
ld a, [wEnemyMonMaxHP + 1]
ld b, a
ld a, [wEnemyMonHP + 1]
ld c, a
.realHealCheck
srl b
ld a, c
cp b
ld hl, HealingMoves
jr nc, .debuffHealingMoves
ld b, -8
call Random
ld a, [hRandomAdd]
cp $C0 ; 3/4 chance
jr nc, .dreamEaterCheck
jr .applyHealingChance
.debuffHealingMoves
ld b, 10
.applyHealingChance
call AlterMovePriorityArray
.dreamEaterCheck
ld a, [wBattleMonStatus]
and SLP
ld a, DREAM_EATER
ld [wAIBuffer1], a
jr z, .debuffDreamEater
ld b, -1
jr .applyDreamEater
.debuffDreamEater
ld b, 20
.applyDreamEater
call AlterMovePriority
.effectivenessCheck
; encourage any damaging move with SE, slightly discourage NVE moves
ld hl, wBuffer - 1
ld de, wEnemyMonMoves
ld b, NUM_MOVES + 1
.seloop
dec b
jr z, .selfBuffCheck
inc hl
ld a, [de]
and a
jr z, .selfBuffCheck
inc de
call ReadMove
ld a, [wEnemyMoveEffect]
cp SUPER_FANG_EFFECT
jr z, .seloop
cp SPECIAL_DAMAGE_EFFECT
jr z, .seloop
ld a, [wEnemyMovePower]
cp 10
jr c, .seloop
push hl
push bc
push de
callab AIGetTypeEffectiveness
pop de
pop bc
pop hl
ld a, [wTypeEffectiveness]
cp $0a
jr z, .seloop
jr c, .nvemove
; strongly encourage SE Move
rept 4
dec [hl]
endr
cp $15
jr c, .seloop
; even more strongly encourage 4x SE move
rept 3
dec [hl]
endr
jr .seloop
.nvemove
; slighly discourage
inc [hl]
and a
jr nz, .seloop
; strongly discourage immunity
ld a, [hl]
add 50
ld [hl], a
jr .seloop
.selfBuffCheck
; 50% chance to encourage self-buff or status on turn 1 - 2
ld a, [wAILayer2Encouragement]
cp $2
jr nc, .discourageFocusEnergy
call Random
ld a, [hRandomAdd]
cp $80
jr nc, .discourageFocusEnergy
ld hl, LightStatusMoves
ld b, -3
call AlterMovePriorityArray
ld hl, MediumStatusMoves
ld b, -5
call AlterMovePriorityArray
ld hl, HeavyStatusMoves
ld b, -6
call AlterMovePriorityArray
.discourageFocusEnergy
; NEVER use Focus Energy if we have already used it.
ld a, [wEnemyBattleStatus2]
bit GettingPumped, a
jr z, .discourageLightScreen
ld a, FOCUS_ENERGY
ld [wAIBuffer1], a
ld b, 50
call AlterMovePriority
.discourageLightScreen
; NEVER use Light Screen if we have already used it.
ld a, [wEnemyBattleStatus3]
bit HasLightScreenUp, a
jr z, .discourageReflect
ld a, LIGHT_SCREEN
ld [wAIBuffer1], a
ld b, 50
call AlterMovePriority
.discourageReflect
; NEVER use Reflect if we have already used it.
ld a, [wEnemyBattleStatus3]
bit HasReflectUp, a
jr z, .discourageBattleEndingMoves
ld a, REFLECT
ld [wAIBuffer1], a
ld b, 50
call AlterMovePriority
.discourageBattleEndingMoves
; NEVER use moves that try to end the battle...
ld hl, EndBattleMoves
ld b, 50
call AlterMovePriorityArray
.discourageImmunePoisonMoves
; NEVER use poison status moves that the player is immune to
ld de, wBattleMonType1
ld a, [de]
cp POISON
jr z, .poisonStatusDoesntAffect
; Check Second Type
inc de
ld a, [de]
cp POISON
jr z, .poisonStatusDoesntAffect
jr .discourageImmuneThunderWave
.poisonStatusDoesntAffect
ld hl, PoisonMoves
ld b, 50
call AlterMovePriorityArray
.discourageImmuneThunderWave
; NEVER use thunderwave if the player is immune to it
ld de, wBattleMonType1
ld a, [de]
cp ELECTRIC
jr z, .thunderWaveDoesntAffect
cp GROUND
jr z, .thunderWaveDoesntAffect
; Check Second Types
inc de
ld a, [de]
cp ELECTRIC
jr z, .thunderWaveDoesntAffect
cp GROUND
jr z, .thunderWaveDoesntAffect
jr .discourageImmuneGlare
.thunderWaveDoesntAffect
ld a, THUNDER_WAVE
ld [wAIBuffer1], a
ld b, 50
call AlterMovePriority
.discourageImmuneGlare
; NEVER use glare if the player is immune to it
ld de, wBattleMonType1
ld a, [de]
cp GHOST
jr z, .glareDoesntAffect
; Check Second Type
inc de
ld a, [de]
cp GHOST
jr z, .glareDoesntAffect
jr .discourageImmuneLeechSeed
.glareDoesntAffect
ld a, GLARE
ld [wAIBuffer1], a
ld b, 50
call AlterMovePriority
.discourageImmuneLeechSeed
; NEVER use leech seed if the player is immune to it
ld de, wBattleMonType1
ld a, [de]
cp GRASS
jr z, .leechSeedDoesntAffect
; Check Second Type
inc de
ld a, [de]
cp GRASS
jr z, .leechSeedDoesntAffect
jr .checkToInflictStatusOrConfusion
.leechSeedDoesntAffect
ld a, LEECH_SEED
ld [wAIBuffer1], a
ld b, 50
call AlterMovePriority
.checkToInflictStatusOrConfusion
; if enemy already has a status affliction, don't keep trying to give them one
; this *should* already be part of AIMoveChoiceModification1 but it doesn't always seem to catch them
; if player does not have a status, we then check confusion state. If not confused, attempt to do so
; The Priority here always falls to non-volatile status conditions first, then confusion
; Only 50% chance to perform this code
call Random
ld a, [hRandomAdd]
cp $80
jr c, .checkToInflictStatus
; Discourage Status moves
ld hl, StatusOnlyMoves
ld b, 30
call AlterMovePriorityArray
; Discourage Confusion moves
ld hl, ConfuseMoves
ld b, 30
call AlterMovePriorityArray
; Discourage Disable
ld a, DISABLE
ld [wAIBuffer1], a
ld b, 30
call AlterMovePriority
ret
.checkToInflictStatus
; is player statused?
ld a, [wBattleMonStatus]
and a
jr z, .inflictStatus
; fallthrough on nz
.discourageStatusMoves
; Discourage Status moves if already status'd
ld hl, StatusOnlyMoves
ld b, 30
call AlterMovePriorityArray
jr .checkInflictConfusion
.inflictStatus
; if they don't have a status, attempt to give them it.
ld hl, StatusOnlyMoves
ld b, -7
call AlterMovePriorityArray
; fallthrough
.checkInflictConfusion
; is player confused?
ld a,[wPlayerBattleStatus1]
bit Confused, a
jr z, .inflictConfusion
; fallthrough on nz
.discourageConfuseMoves
; Discourage Confusion moves if already confused
ld hl, ConfuseMoves
ld b, 30
call AlterMovePriorityArray
jr .checkInflictDisable
.inflictConfusion
; if they don't have confusion, attempt to give them it.
ld hl, ConfuseMoves
ld b, -7
call AlterMovePriorityArray
; fallthrough
.checkInflictDisable
; does player have a disabled move?
ld hl, wPlayerDisabledMove
ld a, [hl]
and a
jr z, .inflictDisable
; fallthrough on nz
.discourageDisable
; Discourage disable if already disabled
ld a, DISABLE
ld [wAIBuffer1], a
ld b, 30
call AlterMovePriority
ret
.inflictDisable
; if they don't have a disabled move, attempt to do it.
ld a, DISABLE
ld [wAIBuffer1], a
ld b, -7
call AlterMovePriority
ret
LightStatusMoves:
db DISABLE
db MIST
db HAZE
db LEER
db GROWL
db TAIL_WHIP
db STRING_SHOT
db HARDEN
db WITHDRAW
db DEFENSE_CURL
db $FF
MediumStatusMoves:
db BIDE
db SHARPEN
db MEDITATE
db BARRIER
db AGILITY
db SCREECH
db DOUBLE_TEAM
db SMOKESCREEN
db SAND_ATTACK
db FLASH
db $FF
HeavyStatusMoves:
db SWORDS_DANCE
db ACID_ARMOR
db GROWTH
db AMNESIA
db MINIMIZE
db KINESIS
db SUBSTITUTE
db FOCUS_ENERGY
db REFLECT
db LIGHT_SCREEN
db $FF
HealingMoves:
db REST
db RECOVER
db SOFTBOILED
db $FF
EndBattleMoves:
db WHIRLWIND
db ROAR
db TELEPORT
db $FF
StatusOnlyMoves:
db POISONPOWDER
db STUN_SPORE
db SLEEP_POWDER
db THUNDER_WAVE
db TOXIC
db HYPNOSIS
db GLARE
db POISON_GAS
db LOVELY_KISS
db SPORE
db SING
db $FF
ConfuseMoves:
db SUPERSONIC
db CONFUSE_RAY
db $FF
PoisonMoves:
db POISON_GAS
db POISONPOWDER
db TOXIC
db $FF
AlterMovePriority:
; [wAIBuffer1] = move
; b = priority change
ld hl, wBuffer - 1
ld de, wEnemyMonMoves
ld c, NUM_MOVES + 1
.moveLoop
dec c
ret z
inc hl
ld a, [de]
and a
ret z
inc de
push bc
ld b, a
ld a, [wAIBuffer1]
cp b
pop bc
jr nz, .moveLoop
ld a, [hl]
add b
ld [hl], a
ret
AlterMovePriorityArray:
; hl = move array
; b = priority change
ld a, h
ld [wAIBuffer1], a
ld a, l
ld [wAIBuffer1 + 1], a
ld hl, wBuffer - 1
ld de, wEnemyMonMoves
ld c, NUM_MOVES + 1
.moveLoop
dec c
ret z
inc hl
ld a, [de]
and a
ret z
inc de
push hl
push de
push bc
ld b, a
ld a, [wAIBuffer1]
ld h, a
ld a, [wAIBuffer1 + 1]
ld l, a
ld a, b
ld de, $0001
call IsInArray
pop bc
pop de
pop hl
jr nc, .moveLoop
ld a, [hl]
add b
ld [hl], a
ret
ReadMove:
push hl
push de
push bc
dec a
ld hl,Moves
ld bc,MoveEnd - Moves
call AddNTimes
ld de,wEnemyMoveNum
call CopyData
pop bc
pop de
pop hl
ret
; move choice modification methods that are applied for each trainer class
; 0 is sentinel value
TrainerClassMoveChoiceModifications:
db 1,4,0 ; YOUNGSTER
db 1,4,0 ; BUG CATCHER
db 1,4,0 ; LASS
db 1,4,0 ; SAILOR
db 1,4,0 ; JR_TRAINER_M
db 1,4,0 ; JR_TRAINER_F
db 1,4,0 ; POKEMANIAC
db 1,4,0 ; SUPER_NERD
db 1,4,0 ; HIKER
db 1,4,0 ; BIKER
db 1,4,0 ; BURGLAR
db 1,4,0 ; ENGINEER
db 1,4,0 ; SWIMMER_F
db 1,4,0 ; FISHER
db 1,4,0 ; SWIMMER
db 1,4,0 ; CUE_BALL
db 1,4,0 ; GAMBLER
db 1,4,0 ; BEAUTY
db 1,4,0 ; PSYCHIC_TR
db 1,4,0 ; ROCKER
db 1,4,0 ; JUGGLER
db 1,4,0 ; TAMER
db 1,4,0 ; BIRD_KEEPER
db 1,4,0 ; BLACKBELT
db 1,4,0 ; RIVAL1
db 1,4,0 ; PROF_OAK
db 1,4,0 ; ROCKET_F
db 1,4,0 ; SCIENTIST
db 1,4,0 ; GIOVANNI
db 1,4,0 ; ROCKET
db 1,4,0 ; COOLTRAINER_M
db 1,4,0 ; COOLTRAINER_F
db 1,4,0 ; BRUNO
db 1,4,0 ; BROCK
db 1,4,0 ; MISTY
db 1,4,0 ; LT_SURGE
db 1,4,0 ; ERIKA
db 1,4,0 ; KOGA
db 1,4,0 ; BLAINE
db 1,4,0 ; SABRINA
db 1,4,0 ; GENTLEMAN
db 1,4,0 ; RIVAL2
db 1,4,0 ; RIVAL3
db 1,4,0 ; LORELEI
db 1,4,0 ; CHANNELER
db 1,4,0 ; AGATHA
db 1,4,0 ; LANCE
INCLUDE "engine/battle/trainer_pic_money_pointers.asm"
INCLUDE "text/trainer_names.asm"
INCLUDE "engine/battle/bank_e_misc.asm"
INCLUDE "engine/battle/read_trainer_party.asm"
INCLUDE "data/trainer_moves.asm"
INCLUDE "data/trainer_parties.asm"
TrainerAI:
and a
ld a,[wIsInBattle]
dec a
ret z ; if not a trainer, we're done here
ld a,[wLinkState]
cp LINK_STATE_BATTLING
ret z
ld a,[wTrainerClass] ; what trainer class is this?
dec a
ld c,a
ld b,0
ld hl,TrainerAIPointers
add hl,bc
add hl,bc
add hl,bc
ld a,[wAICount]
and a
ret z ; if no AI uses left, we're done here
inc hl
inc a
jr nz,.getpointer
dec hl
ld a,[hli]
ld [wAICount],a
.getpointer
ld a,[hli]
ld h,[hl]
ld l,a
call Random
jp hl
TrainerAIPointers:
; one entry per trainer class
; first byte, number of times (per Pokémon) it can occur
; next two bytes, pointer to AI subroutine for trainer class
dbw 1,PotionAI ; YOUNGSTER
dbw 1,PotionAI ; BUG CATCHER
dbw 1,PotionAI ; LASS
dbw 3,SwitchOutAI ; SAILOR
dbw 1,FullHealOrPotionAI ; JR_TRAINER_M
dbw 1,FullHealOrPotionAI ; JR_TRAINER_F
dbw 2,SwitchOrSuperPotionAI ; POKEMANIAC
dbw 3,SwitchOutAI ; SUPER_NERD
dbw 1,FullHealOrPotionAI ; HIKER
dbw 1,XDefendAI ; BIKER
dbw 3,SwitchOutAI ; BURGLAR
dbw 1,GuardSpecAI ; ENGINEER
dbw 1,XDefendAI ; SWIMMER_F
dbw 1,SuperPotion1AI ; FISHER
dbw 1,XSpeedAI ; SWIMMER
dbw 1,DireHitAI ; CUE_BALL
dbw 3,SwitchOutAI ; GAMBLER
dbw 1,SuperPotion1AI ; BEAUTY
dbw 1,XSpecialAI ; PSYCHIC_TR
dbw 1,XSpeedAI ; ROCKER
dbw 3,SwitchOutAI ; JUGGLER
dbw 1,XAttackAI ; TAMER
dbw 1,DireHitAI ; BIRD_KEEPER
dbw 1,XAttackAI ; BLACKBELT
dbw 1,FullHealOrPotionAI ; RIVAL1
dbw 1,FullRestoreAI ; PROF_OAK
dbw 3,NoItemAI ; ROCKET_F
dbw 1,GuardSpecAI ; SCIENTIST
dbw 1,HyperPotion2AI ; GIOVANNI
dbw 3,NoItemAI ; ROCKET
dbw 1,SwitchOrHyperPotionAI ; COOLTRAINER_M
dbw 1,SwitchOrHyperPotionAI ; COOLTRAINER_F
dbw 1,HyperPotion2AI ; BRUNO
dbw 1,FullHealOrPotionAI ; BROCK
dbw 2,FullHealAI ; MISTY
dbw 1,SuperPotion1AI ; LT_SURGE
dbw 1,SuperPotion2AI ; ERIKA
dbw 1,HyperPotion1AI ; KOGA
dbw 2,HyperPotion1AI ; BLAINE
dbw 2,SwitchOrFullHealAI ; SABRINA
dbw 1,FullHealOrPotionAI ; GENTLEMAN
dbw 1,FullHealOrSuperPotionAI ; RIVAL2
dbw 1,FullRestoreAI ; RIVAL3
dbw 2,SuperPotion2AI ; LORELEI
dbw 1,XSpecialAI ; CHANNELER
dbw 2,SwitchOrSuperPotionAI ; AGATHA
dbw 1,HyperPotion2AI ; LANCE
SwitchOutAI:
cp $40
ret nc
ld a,[wEnemyBattleStatus2]
bit HasSubstituteUp, a
ret nz ; Don't want to switch if we have a sub up
ld a,2
call AICheckIfHPBelowFraction
ret nc
jp AISwitchIfEnoughMons
jp AISwitchIfEnoughMons
XAttackAI:
cp $40
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ret nc
jp AIUseXAttack
XDefendAI:
cp $40
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ret nc
jp AIUseXDefend
XSpeedAI:
cp $40
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ret nc
jp AIUseXSpeed
XSpecialAI:
cp $40
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ret nc
jp AIUseXSpecial
XAccuracyAI:
cp $40
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ret nc
jp AIUseXAccuracy
GuardSpecAI:
cp $40
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ret nc
jp AIUseGuardSpec
DireHitAI:
cp $40
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ret nc
jp AIUseDireHit
PotionAI:
cp $20
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ccf
ret nc ; They can't heal too early
ld a,5
call AICheckIfHPBelowFraction
ret nc
jp AIUsePotion
FullHealAI:
cp $80
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ccf
ret nc ; They can't heal too early
ld a,[wEnemyMonStatus]
and a
ret z
jp AIUseFullHeal
SuperPotion1AI:
cp $40
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ccf
ret nc ; They can't heal too early
ld a,5
call AICheckIfHPBelowFraction
ret nc
jp AIUseSuperPotion
SuperPotion2AI:
cp $80
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ccf
ret nc ; They can't heal too early
ld a,$A
call AICheckIfHPBelowFraction
ret nc
jp AIUseSuperPotion
HyperPotion1AI:
cp $40
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ccf
ret nc ; They can't heal too early
ld a,5
call AICheckIfHPBelowFraction
ret nc
jp AIUseHyperPotion
HyperPotion2AI:
cp $80
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ccf
ret nc ; They can't heal too early
ld a,$A
call AICheckIfHPBelowFraction
ret nc
jp AIUseHyperPotion
FullRestoreAI:
cp $80
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ccf
ret nc ; They can't heal too early
ld a,[wEnemyMonStatus]
and a
jp nz, AIUseFullRestore
ld a,$A
call AICheckIfHPBelowFraction
ret nc
jp AIUseFullRestore
FullHealOrPotionAI:
cp $40
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ccf
ret nc ; They can't heal too early
ld a,[wEnemyMonStatus]
and a
jp nz, AIUseFullHeal
ld a,5
call AICheckIfHPBelowFraction
ret nc
jp AIUsePotion
FullHealOrSuperPotionAI:
cp $40
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ccf
ret nc ; They can't heal too early
ld a,[wEnemyMonStatus]
and a
jp nz, AIUseFullHeal
ld a,5
call AICheckIfHPBelowFraction
ret nc
jp AIUseSuperPotion
SwitchOrFullHealAI:
cp $80
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ccf
ret nc ; They can't heal too early
ld a,[wEnemyMonStatus]
and a
jp nz, AIUseFullHeal
ld a,[wEnemyBattleStatus2]
bit HasSubstituteUp, a
ret nz ; Don't want to switch if we have a sub up
ld a,5
call AICheckIfHPBelowFraction
ret nc
jp AISwitchIfEnoughMons
SwitchOrSuperPotionAI:
cp $80
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ccf
ret nc ; They can't heal too early
ld a,$A
call AICheckIfHPBelowFraction
jp c,AIUseSuperPotion
ld a,[wEnemyBattleStatus2]
bit HasSubstituteUp, a
ret nz ; Don't want to switch if we have a sub up
ld a,5
call AICheckIfHPBelowFraction
ret nc
jp AISwitchIfEnoughMons
SwitchOrHyperPotionAI:
cp $80
ret nc
ld a, [wAILayer2Encouragement] ; wAILayer2Encouragement (How many turns has it been out?)
cp 2
ccf
ret nc ; They can't heal too early
ld a,$A
call AICheckIfHPBelowFraction
jp c,AIUseHyperPotion
ld a,[wEnemyBattleStatus2]
bit HasSubstituteUp, a
ret nz ; Don't want to switch if we have a sub up
ld a,5
call AICheckIfHPBelowFraction
ret nc
jp AISwitchIfEnoughMons
NoItemAI:
and a ; clear carry
ret
; end of individual trainer AI routines
DecrementAICount:
ld hl,wAICount
dec [hl]
scf
ret
AIPlayRestoringSFX:
ld a,SFX_HEAL_AILMENT
jp PlaySoundWaitForCurrent
AIUseFullRestore:
call AICureStatus
ld a,FULL_RESTORE
ld [wAIItem],a
ld de,wHPBarOldHP
ld hl,wEnemyMonHP + 1
ld a,[hld]
ld [de],a
inc de
ld a,[hl]
ld [de],a
inc de
ld hl,wEnemyMonMaxHP + 1
ld a,[hld]
ld [de],a
inc de
ld [wHPBarMaxHP],a
ld [wEnemyMonHP + 1],a
ld a,[hl]
ld [de],a
ld [wHPBarMaxHP+1],a
ld [wEnemyMonHP],a
jr AIPrintItemUseAndUpdateHPBar
AIUsePotion:
; enemy trainer heals his monster with a potion
ld a,POTION
ld b,20
jr AIRecoverHP
AIUseSuperPotion:
; enemy trainer heals his monster with a super potion
ld a,SUPER_POTION
ld b,50
jr AIRecoverHP
AIUseHyperPotion:
; enemy trainer heals his monster with a hyper potion
ld a,HYPER_POTION
ld b,200
; fallthrough
AIRecoverHP:
; heal b HP and print "trainer used $(a) on pokemon!"
ld [wAIItem],a
ld hl,wEnemyMonHP + 1
ld a,[hl]
ld [wHPBarOldHP],a
add b
ld [hld],a
ld [wHPBarNewHP],a
ld a,[hl]
ld [wHPBarOldHP+1],a
ld [wHPBarNewHP+1],a
jr nc,.next
inc a
ld [hl],a
ld [wHPBarNewHP+1],a
.next
inc hl
ld a,[hld]
ld b,a
ld de,wEnemyMonMaxHP + 1
ld a,[de]
dec de
ld [wHPBarMaxHP],a
sub b
ld a,[hli]
ld b,a
ld a,[de]
ld [wHPBarMaxHP+1],a
sbc b
jr nc,AIPrintItemUseAndUpdateHPBar
inc de
ld a,[de]
dec de
ld [hld],a
ld [wHPBarNewHP],a
ld a,[de]
ld [hl],a
ld [wHPBarNewHP+1],a
; fallthrough
AIPrintItemUseAndUpdateHPBar:
call AIPrintItemUse_
coord hl, 2, 2
xor a
ld [wHPBarType],a
predef UpdateHPBar2
jp DecrementAICount
AISwitchIfEnoughMons:
; enemy trainer switches if there are 3 or more unfainted mons in party
ld a,[wEnemyPartyCount]
ld c,a
ld hl,wEnemyMon1HP
ld d,0 ; keep count of unfainted monsters
; count how many monsters haven't fainted yet
.loop
ld a,[hli]
ld b,a
ld a,[hld]
or b
jr z,.Fainted ; has monster fainted?
inc d
.Fainted
push bc
ld bc, wEnemyMon2 - wEnemyMon1
add hl,bc
pop bc
dec c
jr nz,.loop
ld a,d ; how many available monsters are there?
cp 2 ; don't bother if only 1 or 2
jp nc,SwitchEnemyMon
and a
ret
SwitchEnemyMon:
; prepare to withdraw the active monster: copy hp, number, and status to roster
ld a,[wEnemyMonPartyPos]
ld hl,wEnemyMon1HP
ld bc,wEnemyMon2 - wEnemyMon1
call AddNTimes
ld d,h
ld e,l
ld hl,wEnemyMonHP
ld bc,4
call CopyData
ld hl, AIBattleWithdrawText
call PrintText
; This wFirstMonsNotOutYet variable is abused to prevent the player from
; switching in a new mon in response to this switch.
ld a,1
ld [wFirstMonsNotOutYet],a
callab EnemySendOut
xor a
ld [wFirstMonsNotOutYet],a
ld a,[wLinkState]
cp LINK_STATE_BATTLING
ret z
scf
ret
AIBattleWithdrawText:
TX_FAR _AIBattleWithdrawText
db "@"
AIUseFullHeal:
call AIPlayRestoringSFX
call AICureStatus
ld a,FULL_HEAL
jp AIPrintItemUse
AICureStatus:
; cures the status of enemy's active pokemon
ld a,[wEnemyMonPartyPos]
ld hl,wEnemyMon1Status
ld bc,wEnemyMon2 - wEnemyMon1
call AddNTimes
xor a
ld [hl],a ; clear status in enemy team roster
ld [wEnemyMonStatus],a ; clear status of active enemy
ld hl,wEnemyBattleStatus3
res 0,[hl]
ret
AIUseXAccuracy:
call AIPlayRestoringSFX
ld hl,wEnemyBattleStatus2
set 0,[hl]
ld a,X_ACCURACY
jp AIPrintItemUse
AIUseGuardSpec:
call AIPlayRestoringSFX
ld hl,wEnemyBattleStatus2
set 1,[hl]
ld a,GUARD_SPEC
jp AIPrintItemUse
AIUseDireHit:
call AIPlayRestoringSFX
ld hl,wEnemyBattleStatus2
set 2,[hl]
ld a,DIRE_HIT
jp AIPrintItemUse
AICheckIfHPBelowFraction:
; return carry if enemy trainer's current HP is below 1 / a of the maximum
ld [H_DIVISOR],a
ld hl,wEnemyMonMaxHP
ld a,[hli]
ld [H_DIVIDEND],a
ld a,[hl]
ld [H_DIVIDEND + 1],a
ld b,2
call Divide
ld a,[H_QUOTIENT + 3]
ld c,a
ld a,[H_QUOTIENT + 2]
ld b,a
ld hl,wEnemyMonHP + 1
ld a,[hld]
ld e,a
ld a,[hl]
ld d,a
ld a,d
sub b
ret nz
ld a,e
sub c
ret
AIUseXAttack:
ld b,$A
ld a,X_ATTACK
jr AIIncreaseStat
AIUseXDefend:
ld b,$B
ld a,X_DEFEND
jr AIIncreaseStat
AIUseXSpeed:
ld b,$C
ld a,X_SPEED
jr AIIncreaseStat
AIUseXSpecial:
ld b,$D
ld a,X_SPECIAL
; fallthrough
AIIncreaseStat:
ld [wAIItem],a
push bc
call AIPrintItemUse_
pop bc
ld hl,wEnemyMoveEffect
ld a,[hld]
push af
ld a,[hl]
push af
push hl
ld a,ANIM_AF
ld [hli],a
ld [hl],b
callab StatModifierUpEffect
pop hl
pop af
ld [hli],a
pop af
ld [hl],a
jp DecrementAICount
AIPrintItemUse:
ld [wAIItem],a
call AIPrintItemUse_
jp DecrementAICount
AIPrintItemUse_:
; print "x used [wAIItem] on z!"
ld a,[wAIItem]
ld [wd11e],a
call GetItemName
ld hl, AIBattleUseItemText
jp PrintText
AIBattleUseItemText:
TX_FAR _AIBattleUseItemText
db "@"
| 19.141474 | 116 | 0.732797 |
88cb060a6b57f0c5939ec48ecc60b779126c775a | 742 | asm | Assembly | oeis/242/A242376.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/242/A242376.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/242/A242376.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A242376: Numerators of b(n) = b(n-1)/2 + 1/(2*n), b(0)=0.
; Submitted by Jon Maiga
; 0,1,1,5,1,4,13,151,16,83,73,1433,647,15341,28211,10447,608,19345,18181,651745,771079,731957,2786599,122289917,14614772,140001721,134354573,774885169,745984697,41711914513,80530073893,4825521853483,145908326272,282654114997,274050911261,531914398571,129164452987,4645847894222,18079412000719,35204192311819,4287344619904,342747737449289,334365081328507,28068960355850251,13707288497202919,26790049828872949,52386756782140399,4817074608461204153,294648374308590304,4038970064194568803
mul $0,2
mov $1,41
lpb $0
sub $0,2
div $1,2
add $2,1
dif $3,2
mul $3,$2
add $3,$1
mul $1,$2
mul $1,2
lpe
mov $0,$3
gcd $3,$1
mov $1,$0
div $1,$3
mov $0,$1
| 33.727273 | 484 | 0.762803 |
12392ad974473845ceff5bc334d861e49f098189 | 869 | asm | Assembly | tests/emra/EM_MODE/asm/EM01.asm | ilebedev/stacktool | 0750fb632d6a06596056edb97825baa035cec418 | [
"MIT"
] | 1 | 2021-02-17T17:44:59.000Z | 2021-02-17T17:44:59.000Z | tests/emra/EM_MODE/asm/EM01.asm | ilebedev/stacktool | 0750fb632d6a06596056edb97825baa035cec418 | [
"MIT"
] | null | null | null | tests/emra/EM_MODE/asm/EM01.asm | ilebedev/stacktool | 0750fb632d6a06596056edb97825baa035cec418 | [
"MIT"
] | null | null | null | PUSH 0; # RA
PUSH 0; # 0 RA
ST_EM 2 0; # 0 0 RA
PUSH 1; # RA
PUSH 0; # 1 RA
SETHI 0x0200; # 0 1 RA
ST_EM 2 0; # 0x2 1| RA # migrate
PUSH 2; # |RA
PUSH 0; # 2| RA
SETHI 0x0400; # 0 2| RA
ST_EM 2 0; # 0x4 2| RA # migrate
PUSH 3; # |RA
PUSH 0; # 3| RA
SETHI 0x0600; # 0 3| RA
ST_EM 2 0; # 0x6 3| RA
PUSH 0; # |RA
LD_EM 1 0; # 0| RA
PUSH 1; # M0| RA
ADD; # 1 M0| RA
PUSH 0; # M01| RA
ST_EM 2; # 0 M01|RA # migrate
PUSH 0; # |RA
LD_EM 1 0; # 0| RA
PUSH 1; # M0| RA
SETHI 0x0200; # 1 M0| RA
TUCK_CP 1; # 0x2 M0| RA
ST_EM 3 0; # 0x2 M0 0x2|RA # migrate
LD_EM 1 0; # 0x2| RA
PUSH 1; # M2| RA
SETHI 0x0400; # 1 M2| RA
ST_EM 2 0; # 0x4 M2| RA # migrate
HALT; # RA
| 26.333333 | 39 | 0.433832 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.