max_stars_repo_path stringlengths 4 261 | max_stars_repo_name stringlengths 6 106 | max_stars_count int64 0 38.8k | id stringlengths 1 6 | text stringlengths 7 1.05M |
|---|---|---|---|---|
src/ncurses-5.5/Ada95/src/terminal_interface-curses-forms-field_types-user.adb | erwinchang/minicom | 0 | 30512 | <reponame>erwinchang/minicom<gh_stars>0
------------------------------------------------------------------------------
-- --
-- GNAT ncurses Binding --
-- --
-- Terminal_Interface.Curses.Forms.Field_Types.User --
-- --
-- B O D Y --
-- --
------------------------------------------------------------------------------
-- Copyright (c) 1998,2004 Free Software Foundation, Inc. --
-- --
-- Permission is hereby granted, free of charge, to any person obtaining a --
-- copy of this software and associated documentation files (the --
-- "Software"), to deal in the Software without restriction, including --
-- without limitation the rights to use, copy, modify, merge, publish, --
-- distribute, distribute with modifications, sublicense, and/or sell --
-- copies of the Software, and to permit persons to whom the Software is --
-- furnished to do so, subject to the following conditions: --
-- --
-- The above copyright notice and this permission notice shall be included --
-- in all copies or substantial portions of the Software. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS --
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF --
-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. --
-- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, --
-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR --
-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR --
-- THE USE OR OTHER DEALINGS IN THE SOFTWARE. --
-- --
-- Except as contained in this notice, the name(s) of the above copyright --
-- holders shall not be used in advertising or otherwise to promote the --
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
------------------------------------------------------------------------------
-- Author: <NAME>, 1996
-- Version Control:
-- $Revision: 1.13 $
-- $Date: 2004/08/21 21:37:00 $
-- Binding Version 01.00
------------------------------------------------------------------------------
with Ada.Unchecked_Conversion;
with Interfaces.C;
with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux;
package body Terminal_Interface.Curses.Forms.Field_Types.User is
use type Interfaces.C.int;
procedure Set_Field_Type (Fld : in Field;
Typ : in User_Defined_Field_Type)
is
function Allocate_Arg (T : User_Defined_Field_Type'Class)
return Argument_Access;
function Set_Fld_Type (F : Field := Fld;
Cft : C_Field_Type := C_Generic_Type;
Arg1 : Argument_Access)
return C_Int;
pragma Import (C, Set_Fld_Type, "set_field_type");
Res : Eti_Error;
function Allocate_Arg (T : User_Defined_Field_Type'Class)
return Argument_Access
is
Ptr : constant Field_Type_Access
:= new User_Defined_Field_Type'Class'(T);
begin
return new Argument'(Usr => System.Null_Address,
Typ => Ptr,
Cft => Null_Field_Type);
end Allocate_Arg;
begin
Res := Set_Fld_Type (Arg1 => Allocate_Arg (Typ));
if Res /= E_Ok then
Eti_Exception (Res);
end if;
end Set_Field_Type;
function To_Argument_Access is new Ada.Unchecked_Conversion
(System.Address, Argument_Access);
function Generic_Field_Check (Fld : Field;
Usr : System.Address) return C_Int
is
Result : Boolean;
Udf : constant User_Defined_Field_Type_Access :=
User_Defined_Field_Type_Access (To_Argument_Access (Usr).Typ);
begin
Result := Field_Check (Fld, Udf.all);
return C_Int (Boolean'Pos (Result));
end Generic_Field_Check;
function Generic_Char_Check (Ch : C_Int;
Usr : System.Address) return C_Int
is
Result : Boolean;
Udf : constant User_Defined_Field_Type_Access :=
User_Defined_Field_Type_Access (To_Argument_Access (Usr).Typ);
begin
Result := Character_Check (Character'Val (Ch), Udf.all);
return C_Int (Boolean'Pos (Result));
end Generic_Char_Check;
-- -----------------------------------------------------------------------
--
function C_Generic_Type return C_Field_Type
is
Res : Eti_Error;
T : C_Field_Type;
begin
if M_Generic_Type = Null_Field_Type then
T := New_Fieldtype (Generic_Field_Check'Access,
Generic_Char_Check'Access);
if T = Null_Field_Type then
raise Form_Exception;
else
Res := Set_Fieldtype_Arg (T,
Make_Arg'Access,
Copy_Arg'Access,
Free_Arg'Access);
if Res /= E_Ok then
Eti_Exception (Res);
end if;
end if;
M_Generic_Type := T;
end if;
pragma Assert (M_Generic_Type /= Null_Field_Type);
return M_Generic_Type;
end C_Generic_Type;
end Terminal_Interface.Curses.Forms.Field_Types.User;
|
Task/Loop-over-multiple-arrays-simultaneously/AppleScript/loop-over-multiple-arrays-simultaneously-1.applescript | LaudateCorpus1/RosettaCodeData | 1 | 3598 | -- ZIP LISTS WITH FUNCTION ---------------------------------------------------
-- zipListsWith :: ([a] -> b) -> [[a]] -> [[b]]
on zipListsWith(f, xss)
set n to length of xss
script
on |λ|(_, i)
script
on |λ|(xs)
item i of xs
end |λ|
end script
if i ≤ n then
apply(f, (map(result, xss)))
else
{}
end if
end |λ|
end script
if n > 0 then
map(result, item 1 of xss)
else
[]
end if
end zipListsWith
-- TEST ( zip lists with concat ) -------------------------------------------
on run
intercalate(linefeed, ¬
zipListsWith(concat, ¬
[["a", "b", "c"], ["A", "B", "C"], [1, 2, 3]]))
end run
-- GENERIC FUNCTIONS ---------------------------------------------------------
-- apply (a -> b) -> a -> b
on apply(f, a)
mReturn(f)'s |λ|(a)
end apply
-- concat :: [[a]] -> [a] | [String] -> String
on concat(xs)
if length of xs > 0 and class of (item 1 of xs) is string then
set acc to ""
else
set acc to {}
end if
repeat with i from 1 to length of xs
set acc to acc & item i of xs
end repeat
acc
end concat
-- intercalate :: Text -> [Text] -> Text
on intercalate(strText, lstText)
set {dlm, my text item delimiters} to {my text item delimiters, strText}
set strJoined to lstText as text
set my text item delimiters to dlm
return strJoined
end intercalate
-- map :: (a -> b) -> [a] -> [b]
on map(f, xs)
tell mReturn(f)
set lng to length of xs
set lst to {}
repeat with i from 1 to lng
set end of lst to |λ|(item i of xs, i, xs)
end repeat
return lst
end tell
end map
-- Lift 2nd class handler function into 1st class script wrapper
-- mReturn :: Handler -> Script
on mReturn(f)
if class of f is script then
f
else
script
property |λ| : f
end script
end if
end mReturn
|
alloy4fun_models/trashltl/models/4/rnpptfgL7DC22SXMM.als | Kaixi26/org.alloytools.alloy | 0 | 3090 | <reponame>Kaixi26/org.alloytools.alloy<gh_stars>0
open main
pred idrnpptfgL7DC22SXMM_prop5 {
eventually some f : File | f not in File
}
pred __repair { idrnpptfgL7DC22SXMM_prop5 }
check __repair { idrnpptfgL7DC22SXMM_prop5 <=> prop5o } |
oeis/121/A121724.asm | neoneye/loda-programs | 11 | 169103 | <filename>oeis/121/A121724.asm<gh_stars>10-100
; A121724: Generalized central binomial coefficients for k=2.
; Submitted by <NAME>(s4)
; 1,1,5,9,45,97,485,1145,5725,14289,71445,185193,925965,2467137,12335685,33563481,167817405,464221105,2321105525,6507351113,32536755565,92236247841,461181239205,1319640776249,6598203881245,19031570387857,95157851939285,276368559434025,1381842797170125,4037555902072065,20187779510360325,59299855337012505,296499276685062525,875056238174271345,4375281190871356725,12967283824008178185,64836419120040890925,192889769468751321825,964448847343756609125,2879117809973276680185,14395589049866383400925
mov $2,1
mov $3,$0
mov $4,1
mov $5,1
lpb $3
mul $2,$3
div $2,$4
sub $3,1
max $3,1
add $4,1
trn $5,$2
mul $5,4
add $5,$2
lpe
mov $0,$5
mul $0,4
sub $0,3
|
programs/oeis/030/A030108.asm | neoneye/loda | 22 | 85194 | ; A030108: Base 9 reversal of n (written in base 10).
; Coded manually 2021-03-02 by <NAME>, https://github.com/neoneye
; 0,1,2,3,4,5,6,7,8,1,10,19,28,37,46,55,64,73,2,11,20,29,38,47,56,65,74,3,12,21,30,39,48,57,66,75,4,13,22,31,40,49,58,67,76,5,14,23,32,41,50,59,68,77,6,15,24,33,42,51,60,69,78,7,16,25,34,43,52,61,70,79,8,17,26,35,44
mov $1,0
; $1 = result = 0
lpb $0
mov $2,$0
mod $2,9
; $2 = last digit
mul $1,9
add $1,$2
; $1 = (result * 9) + last digit
div $0,9 ; $0 = divide by 9
; continue while $0 is greater than 0
lpe
mov $0,$1
|
oeis/076/A076776.asm | neoneye/loda-programs | 11 | 5649 | ; A076776: a(0) = 1, a(1) = 2, a(2) = 5; for n > 2, a(n) = a(n-1)*a(n-2).
; Submitted by <NAME>
; 1,2,5,10,50,500,25000,12500000,312500000000,3906250000000000000,1220703125000000000000000000000,4768371582031250000000000000000000000000000000000
mov $1,4
mov $2,1
lpb $0
sub $0,1
mov $3,$2
add $2,1
mov $4,$1
mul $1,$2
add $1,$3
mov $2,$4
lpe
mov $0,$3
add $0,1
|
ordered_maps_g.ads | cborao/Ada-P4-chat | 0 | 16301 | <filename>ordered_maps_g.ads
--PRÁCTICA 4: <NAME> (Ordered_Maps_G.ads)
generic
type Key_Type is private;
type Value_Type is private;
with function "=" (K1, K2: Key_Type) return Boolean;
with function "<" (K1, K2: Key_Type) return Boolean;
Max: in Natural;
package Ordered_Maps_G is
type Map is limited private;
procedure Get (M: Map;Key: in Key_Type;
Value: out Value_Type;
Success: out Boolean);
Full_Map : exception;
procedure Put (M: in out Map;
Key: Key_Type;
Value: Value_Type);
procedure Delete (M: in out Map;
Key: in Key_Type;
Success: out Boolean);
function Map_Length (M : Map) return Natural;
--
-- Cursor Interface for iterating over Map elements
--
type Cursor is limited private;
function First (M: Map) return Cursor;
procedure Next (C: in out Cursor);
function Has_Element (C: Cursor) return Boolean;
type Element_Type is record
Key: Key_Type;
Value: Value_Type;
end record;
No_Element: exception;
-- Raises No_Element if Has_Element(C) = False;
function Element (C: Cursor) return Element_Type;
private
type Cell is record
Key : Key_Type;
Value : Value_Type;
Full : Boolean := False;
end record;
type Cell_Array is array (0..Max - 1) of Cell;
type Cell_Array_A is access Cell_Array;
type Map is record
P_Array: Cell_Array_A;
Length : Natural := 0;
end record;
type Cursor is record
M: Map;
Position: Natural := 0;
end record;
end Ordered_Maps_G;
|
source/strings/a-slcain.ads | ytomino/drake | 33 | 12665 | <gh_stars>10-100
pragma License (Unrestricted);
-- Ada 2012
with Ada.Characters.Conversions;
with Ada.Strings.Generic_Less_Case_Insensitive;
function Ada.Strings.Less_Case_Insensitive is
new Generic_Less_Case_Insensitive (
Character,
String,
Characters.Conversions.Get);
-- pragma Pure (Ada.Strings.Less_Case_Insensitive);
pragma Preelaborate (Ada.Strings.Less_Case_Insensitive); -- use maps
|
KEEN/SRC/id_rf_a.asm | pdpdds/DOSDev | 0 | 164036 | ; Keen Dreams Source Code
; Copyright (C) 2014 <NAME>
;
; This program is free software; you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation; either version 2 of the License, or
; (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License along
; with this program; if not, write to the Free Software Foundation, Inc.,
; 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
; ID_RF_A.ASM
IDEAL
MODEL MEDIUM,C
INCLUDE "ID_ASM.EQU"
CACHETILES = 1 ;enable master screen tile caching
;============================================================================
TILESWIDE = 21
TILESHIGH = 14
UPDATESIZE = (TILESWIDE+1)*TILESHIGH+1
DATASEG
EXTRN screenseg:WORD
EXTRN updateptr:WORD
EXTRN updatestart:WORD
EXTRN masterofs:WORD ;start of master tile port
EXTRN bufferofs:WORD ;start of current buffer port
EXTRN screenstart:WORD ;starts of three screens (0/1/master) in EGA mem
EXTRN grsegs:WORD
EXTRN mapsegs:WORD
EXTRN originmap:WORD
EXTRN updatemapofs:WORD
EXTRN tilecache:WORD
EXTRN tinf:WORD ;seg pointer to map header and tile info
EXTRN blockstarts:WORD ;offsets from bufferofs for each update block
planemask db ?
planenum db ?
CODESEG
screenstartcs dw ? ;in code segment for accesability
IFE GRMODE-CGAGR
;============================================================================
;
; CGA refresh routines
;
;============================================================================
TILEWIDTH = 4
;=================
;
; RFL_NewTile
;
; Draws a composit two plane tile to the master screen and sets the update
; spot to 1 in both update pages, forcing the tile to be copied to the
; view pages the next two refreshes
;
; Called to draw newlly scrolled on strips and animating tiles
;
;=================
PROC RFL_NewTile updateoffset:WORD
PUBLIC RFL_NewTile
USES SI,DI
;
; mark both update lists at this spot
;
mov di,[updateoffset]
mov bx,[updateptr] ;start of update matrix
mov [BYTE bx+di],1
mov dx,SCREENWIDTH-TILEWIDTH ;add to get to start of next line
;
; set di to the location in screenseg to draw the tile
;
shl di,1
mov si,[updatemapofs+di] ;offset in map from origin
add si,[originmap]
mov di,[blockstarts+di] ;screen location for tile
add di,[masterofs]
;
; set BX to the foreground tile number and SI to the background number
; If either BX or SI = 0xFFFF, the tile does not need to be masked together
; as one of the planes totally eclipses the other
;
mov es,[mapsegs+2] ;foreground plane
mov bx,[es:si]
mov es,[mapsegs] ;background plane
mov si,[es:si]
mov es,[screenseg]
or bx,bx
jz @@singletile
jmp @@maskeddraw ;draw both together
;=============
;
; Draw single background tile from main memory
;
;=============
@@singletile:
shl si,1
mov ds,[grsegs+STARTTILE16*2+si]
xor si,si ;block is segment aligned
REPT 15
movsw
movsw
add di,dx
ENDM
movsw
movsw
mov ax,ss
mov ds,ax ;restore turbo's data segment
ret
;=========
;
; Draw a masked tile combo
; Interupts are disabled and the stack segment is reassigned
;
;=========
@@maskeddraw:
cli ; don't allow ints when SS is set
shl bx,1
mov ss,[grsegs+STARTTILE16M*2+bx]
shl si,1
mov ds,[grsegs+STARTTILE16*2+si]
xor si,si ;first word of tile data
REPT 16
mov ax,[si] ;background tile
and ax,[ss:si] ;mask
or ax,[ss:si+64] ;masked data
stosw
mov ax,[si+2] ;background tile
and ax,[ss:si+2] ;mask
or ax,[ss:si+66] ;masked data
stosw
add si,4
add di,dx
ENDM
mov ax,@DATA
mov ss,ax
sti
mov ds,ax
ret
ENDP
ENDIF
IFE GRMODE-EGAGR
;===========================================================================
;
; EGA refresh routines
;
;===========================================================================
TILEWIDTH = 2
;=================
;
; RFL_NewTile
;
; Draws a composit two plane tile to the master screen and sets the update
; spot to 1 in both update pages, forcing the tile to be copied to the
; view pages the next two refreshes
;
; Called to draw newlly scrolled on strips and animating tiles
;
; Assumes write mode 0
;
;=================
PROC RFL_NewTile updateoffset:WORD
PUBLIC RFL_NewTile
USES SI,DI
;
; mark both update lists at this spot
;
mov di,[updateoffset]
mov bx,[updatestart] ;page 0 pointer
mov [BYTE bx+di],1
mov bx,[updatestart+2] ;page 1 pointer
mov [BYTE bx+di],1
;
; set screenstartcs to the location in screenseg to draw the tile
;
shl di,1
mov si,[updatemapofs+di] ;offset in map from origin
add si,[originmap]
mov di,[blockstarts+di] ;screen location for tile
add di,[masterofs]
mov [cs:screenstartcs],di
;
; set BX to the foreground tile number and SI to the background number
; If either BX or SI = 0xFFFF, the tile does not need to be masked together
; as one of the planes totally eclipses the other
;
mov es,[mapsegs+2] ;foreground plane
mov bx,[es:si]
mov es,[mapsegs] ;background plane
mov si,[es:si]
mov es,[screenseg]
mov dx,SC_INDEX ;for stepping through map mask planes
or bx,bx
jz @@singletile
jmp @@maskeddraw ;draw both together
;=========
;
; No foreground tile, so draw a single background tile.
; Use the master screen cache if possible
;
;=========
@@singletile:
mov bx,SCREENWIDTH-2 ;add to get to start of next line
shl si,1
IFE CACHETILES
jmp @@singlemain
ENDIF
mov ax,[tilecache+si]
or ax,ax
jz @@singlemain
;=============
;
; Draw single tile from cache
;
;=============
mov si,ax
mov ax,SC_MAPMASK + 15*256 ;all planes
WORDOUT
mov dx,GC_INDEX
mov ax,GC_MODE + 1*256 ;write mode 1
WORDOUT
mov di,[cs:screenstartcs]
mov ds,[screenseg]
REPT 15
movsb
movsb
add si,bx
add di,bx
ENDM
movsb
movsb
xor ah,ah ;write mode 0
WORDOUT
mov ax,ss
mov ds,ax ;restore turbo's data segment
ret
;=============
;
; Draw single tile from main memory
;
;=============
@@singlemain:
mov ax,[cs:screenstartcs]
mov [tilecache+si],ax ;next time it can be drawn from here with latch
mov ds,[grsegs+STARTTILE16*2+si]
xor si,si ;block is segment aligned
mov ax,SC_MAPMASK+0001b*256 ;map mask for plane 0
mov cx,4 ;draw four planes
@@planeloop:
mov dx,SC_INDEX
WORDOUT
mov di,[cs:screenstartcs] ;start at same place in all planes
REPT 15
movsw
add di,bx
ENDM
movsw
shl ah,1 ;shift plane mask over for next plane
loop @@planeloop
mov ax,ss
mov ds,ax ;restore turbo's data segment
ret
;=========
;
; Draw a masked tile combo
; Interupts are disabled and the stack segment is reassigned
;
;=========
@@maskeddraw:
cli ; don't allow ints when SS is set
shl bx,1
mov ss,[grsegs+STARTTILE16M*2+bx]
shl si,1
mov ds,[grsegs+STARTTILE16*2+si]
xor si,si ;first word of tile data
mov ax,SC_MAPMASK+0001b*256 ;map mask for plane 0
mov di,[cs:screenstartcs]
@@planeloopm:
WORDOUT
tileofs = 0
lineoffset = 0
REPT 16
mov bx,[si+tileofs] ;background tile
and bx,[ss:tileofs] ;mask
or bx,[ss:si+tileofs+32] ;masked data
mov [es:di+lineoffset],bx
tileofs = tileofs + 2
lineoffset = lineoffset + SCREENWIDTH
ENDM
add si,32
shl ah,1 ;shift plane mask over for next plane
cmp ah,10000b
je @@done ;drawn all four planes
jmp @@planeloopm
@@done:
mov ax,@DATA
mov ss,ax
sti
mov ds,ax
ret
ENDP
ENDIF
IFE GRMODE-VGAGR
;============================================================================
;
; VGA refresh routines
;
;============================================================================
ENDIF
;============================================================================
;
; reasonably common refresh routines
;
;============================================================================
;=================
;
; RFL_UpdateTiles
;
; Scans through the update matrix pointed to by updateptr, looking for 1s.
; A 1 represents a tile that needs to be copied from the master screen to the
; current screen (a new row or an animated tiled). If more than one adjacent
; tile in a horizontal row needs to be copied, they will be copied as a group.
;
; Assumes write mode 1
;
;=================
; AX 0/1 for scasb, temp for segment register transfers
; BX width for block copies
; CX REP counter
; DX line width deltas
; SI source for copies
; DI scas dest / movsb dest
; BP pointer to UPDATETERMINATE
;
; DS
; ES
; SS
PROC RFL_UpdateTiles
PUBLIC RFL_UpdateTiles
USES SI,DI,BP
jmp SHORT @@realstart
@@done:
;
; all tiles have been scanned
;
ret
@@realstart:
mov di,[updateptr]
mov bp,(TILESWIDE+1)*TILESHIGH+1
add bp,di ; when di = bx, all tiles have been scanned
push di
mov cx,-1 ; definately scan the entire thing
;
; scan for a 1 in the update list, meaning a tile needs to be copied
; from the master screen to the current screen
;
@@findtile:
pop di ; place to continue scaning from
mov ax,ss
mov es,ax ; search in the data segment
mov ds,ax
mov al,1
repne scasb
cmp di,bp
je @@done
cmp [BYTE di],al
jne @@singletile
jmp @@tileblock
;============
;
; copy a single tile
;
;============
EVEN
@@singletile:
inc di ; we know the next tile is nothing
push di ; save off the spot being scanned
sub di,[updateptr]
shl di,1
mov di,[blockstarts-4+di] ; start of tile location on screen
mov si,di
add di,[bufferofs] ; dest in current screen
add si,[masterofs] ; source in master screen
mov dx,SCREENWIDTH-TILEWIDTH
mov ax,[screenseg]
mov ds,ax
mov es,ax
;--------------------------
IFE GRMODE-CGAGR
REPT 15
movsw
movsw
add si,dx
add di,dx
ENDM
movsw
movsw
ENDIF
;--------------------------
IFE GRMODE-EGAGR
REPT 15
movsb
movsb
add si,dx
add di,dx
ENDM
movsb
movsb
ENDIF
;--------------------------
jmp @@findtile
;============
;
; more than one tile in a row needs to be updated, so do it as a group
;
;============
EVEN
@@tileblock:
mov dx,di ; hold starting position + 1 in dx
inc di ; we know the next tile also gets updated
repe scasb ; see how many more in a row
push di ; save off the spot being scanned
mov bx,di
sub bx,dx ; number of tiles in a row
shl bx,1 ; number of bytes / row
mov di,dx ; lookup position of start tile
sub di,[updateptr]
shl di,1
mov di,[blockstarts-2+di] ; start of tile location
mov si,di
add di,[bufferofs] ; dest in current screen
add si,[masterofs] ; source in master screen
mov dx,SCREENWIDTH
sub dx,bx ; offset to next line on screen
IFE GRMODE-CGAGR
sub dx,bx ; bx is words wide in CGA tiles
ENDIF
mov ax,[screenseg]
mov ds,ax
mov es,ax
REPT 15
mov cx,bx
IFE GRMODE-CGAGR
rep movsw
ENDIF
IFE GRMODE-EGAGR
rep movsb
ENDIF
add si,dx
add di,dx
ENDM
mov cx,bx
IFE GRMODE-CGAGR
rep movsw
ENDIF
IFE GRMODE-EGAGR
rep movsb
ENDIF
dec cx ; was 0 from last rep movsb, now $ffff for scasb
jmp @@findtile
ENDP
;============================================================================
;=================
;
; RFL_MaskForegroundTiles
;
; Scan through update looking for 3's. If the foreground tile there is a
; masked foreground tile, draw it to the screen
;
;=================
PROC RFL_MaskForegroundTiles
PUBLIC RFL_MaskForegroundTiles
USES SI,DI,BP
jmp SHORT @@realstart
@@done:
;
; all tiles have been scanned
;
ret
@@realstart:
mov di,[updateptr]
mov bp,(TILESWIDE+1)*TILESHIGH+2
add bp,di ; when di = bx, all tiles have been scanned
push di
mov cx,-1 ; definately scan the entire thing
;
; scan for a 3 in the update list
;
@@findtile:
mov ax,ss
mov es,ax ; scan in the data segment
mov al,3
pop di ; place to continue scaning from
repne scasb
cmp di,bp
je @@done
;============
;
; found a tile, see if it needs to be masked on
;
;============
push di
sub di,[updateptr]
shl di,1
mov si,[updatemapofs-2+di] ; offset from originmap
add si,[originmap]
mov es,[mapsegs+2] ; foreground map plane segment
mov si,[es:si] ; foreground tile number
or si,si
jz @@findtile ; 0 = no foreground tile
mov bx,si
add bx,INTILE ;INTILE tile info table
mov es,[tinf]
test [BYTE PTR es:bx],80h ;high bit = masked tile
jz @@findtile
;-------------------
IFE GRMODE-CGAGR
;=================
;
; mask the tile CGA
;
;=================
mov di,[blockstarts-2+di]
add di,[bufferofs]
mov es,[screenseg]
shl si,1
mov ds,[grsegs+STARTTILE16M*2+si]
mov bx,64 ;data starts 64 bytes after mask
xor si,si
lineoffset = 0
REPT 16
mov ax,[es:di+lineoffset] ;background
and ax,[si] ;mask
or ax,[si+bx] ;masked data
mov [es:di+lineoffset],ax ;background
inc si
inc si
mov ax,[es:di+lineoffset+2] ;background
and ax,[si] ;mask
or ax,[si+bx] ;masked data
mov [es:di+lineoffset+2],ax ;background
inc si
inc si
lineoffset = lineoffset + SCREENWIDTH
ENDM
ENDIF
;-------------------
IFE GRMODE-EGAGR
;=================
;
; mask the tile
;
;=================
mov [BYTE planemask],1
mov [BYTE planenum],0
mov di,[blockstarts-2+di]
add di,[bufferofs]
mov [cs:screenstartcs],di
mov es,[screenseg]
shl si,1
mov ds,[grsegs+STARTTILE16M*2+si]
mov bx,32 ;data starts 32 bytes after mask
@@planeloopm:
mov dx,SC_INDEX
mov al,SC_MAPMASK
mov ah,[ss:planemask]
WORDOUT
mov dx,GC_INDEX
mov al,GC_READMAP
mov ah,[ss:planenum]
WORDOUT
xor si,si
mov di,[cs:screenstartcs]
lineoffset = 0
REPT 16
mov cx,[es:di+lineoffset] ;background
and cx,[si] ;mask
or cx,[si+bx] ;masked data
inc si
inc si
mov [es:di+lineoffset],cx
lineoffset = lineoffset + SCREENWIDTH
ENDM
add bx,32 ;the mask is now further away
inc [ss:planenum]
shl [ss:planemask],1 ;shift plane mask over for next plane
cmp [ss:planemask],10000b ;done all four planes?
je @@drawn ;drawn all four planes
jmp @@planeloopm
@@drawn:
ENDIF
;-------------------
mov ax,ss
mov ds,ax
mov cx,-1 ;definately scan the entire thing
jmp @@findtile
ENDP
END
|
audio/sfx/battle_29.asm | adhi-thirumala/EvoYellow | 16 | 177334 | SFX_Earthquake_Ch1:
dutycycle 201
unknownsfx0x20 11, 243, 32, 1
unknownsfx0x20 9, 211, 80, 1
loopchannel 5, SFX_Earthquake_Ch1
unknownsfx0x20 8, 227, 48, 1
unknownsfx0x20 15, 194, 16, 1
endchannel
SFX_Earthquake_Ch2:
unknownnoise0x20 10, 243, 53
unknownnoise0x20 14, 246, 69
loopchannel 4, SFX_Earthquake_Ch2
unknownnoise0x20 12, 244, 188
unknownnoise0x20 12, 245, 156
unknownnoise0x20 15, 244, 172
endchannel
|
test/Fail/DisallowedOverlaps.agda | shlevy/agda | 1,989 | 5240 | <filename>test/Fail/DisallowedOverlaps.agda
-- Overlapping instances are only allowed if all valid candidates are
-- overappable.
module _ where
postulate
A : Set
record B : Set where
field overlap {{a}} : A
record C : Set where
field overlap {{a}} : A
record D : Set where
field {{a}} : A
it : ∀ {a} {A : Set a} {{_ : A}} → A
it {{x}} = x
work : {{b : B}} {{c : C}} → A
work = it
-- One variable candidate
fail₁ : {{a : A}} {{b : B}} → A
fail₁ = it
-- One non-overlappable field candidate
fail₂ : {{c : C}} {{d : D}} → A
fail₂ = it
instance postulate a : A
-- One top-level candidate
fail₃ : {{b : B}} → A
fail₃ = it
|
puzzles/8-queens/queens.als | c-luu/alloy-specs | 89 | 2776 | <reponame>c-luu/alloy-specs
// Queens are placed on boards.
some sig Queen { }
// The coordinates on the board.
let positions = { i: Int, j: Int | 0 <= i && i <= 7 && 0 <= j && j <= 7 }
// Each position can have at most one queen occupying it and each queen
// has exactly one position assigned.
one sig Board { queens: positions one -> lone Queen }
// one sig Board { queens: Queen lone -> one positions }
// Absolute value difference for comparing diagonal attack positions.
fun absDifference(m: Int, n: Int): Int {
let difference = minus[m, n] {
difference > 0 => difference else minus[0, difference]
}
}
// Attack relationship in terms of coordinates.
pred attacks(q1: (Int -> Int), q2: (Int -> Int)) {
let q1row = q1.univ, q1col = univ.q1,
q2row = q2.univ, q2col = univ.q2,
rowDifference = absDifference[q1row, q2row],
colDifference = absDifference[q1col, q2col] {
// Same row attacks
rowDifference = 0 ||
// Same column attacks
colDifference = 0 ||
// Diagonal attacks
rowDifference = colDifference
}
}
// Make sure no two queens attack each other.
fact notAttacking {
all q1, q2: Queen | q1 != q2 => !attacks[Board.queens.q1, Board.queens.q2]
}
// Make sure every queen is assigned a position on the board. I think this is
// redundant and follows from Board signature
// assert assignedPosition { all q: Queen | one Board.queens.q }
// Run
run { } for 1 Board, exactly 8 Queen
|
src/libraries/Rejuvenation_Lib/src/rejuvenation-pretty_print.adb | selroc/Renaissance-Ada | 1 | 30168 | with Ada.Assertions; use Ada.Assertions;
with Interfaces.C; use Interfaces.C;
with Rejuvenation; use Rejuvenation;
with Rejuvenation.File_Utils; use Rejuvenation.File_Utils;
with Rejuvenation.Indentation; use Rejuvenation.Indentation;
with Rejuvenation.Navigation; use Rejuvenation.Navigation;
with Rejuvenation.Nested; use Rejuvenation.Nested;
with Rejuvenation.Node_Locations; use Rejuvenation.Node_Locations;
with Rejuvenation.String_Utils; use Rejuvenation.String_Utils;
package body Rejuvenation.Pretty_Print is
procedure Surround_Node_By_Pretty_Print_Section
(T_R : in out Text_Rewrite'Class; Node : Ada_Node'Class)
is
function Predicate (Node : Ada_Node'Class) return Boolean;
function Predicate (Node : Ada_Node'Class) return Boolean
-- workaround for https://gt3-prod-1.adacore.com/#/tickets/UB17-034
-- not only look for node on separate lines,
-- but also require a particular kind
is
begin
return
Node.Kind in Ada_Stmt | Ada_Stmt_List | Ada_Basic_Decl |
Ada_Compilation_Unit
and then Node_On_Separate_Lines (Node);
end Predicate;
Ctx : constant Ada_Node :=
Get_Reflexive_Ancestor (Node, Predicate'Access);
begin
T_R.Prepend (Ctx, Pretty_Print_On, Before => Trivia_On_Same_Line);
T_R.Append (Ctx, Pretty_Print_Off, After => Trivia_On_Same_Line);
end Surround_Node_By_Pretty_Print_Section;
procedure Turn_Pretty_Printing_Initially_Off
(T_R : in out Text_Rewrite_Unit)
is
Unit : constant Analysis_Unit := T_R.Get_Unit;
begin
T_R.Prepend (Unit.Root, Pretty_Print_Off, All_Trivia, Unit.Get_Charset);
end Turn_Pretty_Printing_Initially_Off;
procedure Turn_Pretty_Printing_Initially_Off (Filename : String) is
Original_Content : constant String := Get_String_From_File (Filename);
begin
Write_String_To_File (Pretty_Print_Off & Original_Content, Filename);
end Turn_Pretty_Printing_Initially_Off;
procedure Remove_Cr_Cr_Lf (Filename : String);
procedure Remove_Cr_Cr_Lf (Filename : String)
-- repair gnatpp screwed up
-- see https://gt3-prod-1.adacore.com/#/tickets/U617-042
is
Contents : constant String := Get_String_From_File (Filename);
Final_Contents : constant String :=
Replace_All
(Contents, ASCII.CR & ASCII.CR & ASCII.LF, ASCII.CR & ASCII.LF);
begin
Write_String_To_File (Final_Contents, Filename);
end Remove_Cr_Cr_Lf;
procedure Remove_Nested_Pretty_Print_Flags (Filename : String);
procedure Remove_Nested_Pretty_Print_Flags (Filename : String)
is
Contents : constant String := Get_String_From_File (Filename);
Final_Contents : constant String :=
Remove_Nested_Flags (Contents, Pretty_Print_On, Pretty_Print_Off, 1);
begin
Write_String_To_File (Final_Contents, Filename);
end Remove_Nested_Pretty_Print_Flags;
procedure Pretty_Print_Sections (Filename : String; Projectname : String) is
function Sys (Arg : char_array) return Integer;
pragma Import (C, Sys, "system");
Command : constant String :=
"gnatpp" & " -P " & Projectname & " --pp-on=" & Flag_On &
" --pp-off=" & Flag_Off & " " & Filename;
Ret_Val : Integer;
begin
Remove_Nested_Pretty_Print_Flags (Filename);
declare
Original_Content : constant String := Get_String_From_File (Filename);
Original_Last_Char : constant Character :=
Original_Content (Original_Content'Last);
begin
Ret_Val := Sys (To_C (Command));
Assert
(Check => Ret_Val = 0,
Message => "System call to gnatpp returned " & Ret_Val'Image);
declare
Current_Content : constant String :=
Get_String_From_File (Filename);
Current_Last_Char : constant Character :=
Current_Content (Current_Content'Last);
begin
if Current_Last_Char /= Original_Last_Char then
-- correct GNATPP bug (additional LF at end of file)
Write_String_To_File
(Current_Content
(Current_Content'First .. Current_Content'Last - 1),
Filename);
end if;
end;
end;
Remove_Cr_Cr_Lf (Filename);
end Pretty_Print_Sections;
procedure Remove_Pretty_Print_Flags (Filename : String) is
Contents : constant String := Get_String_From_File (Filename);
New_Contents : constant String :=
Replace_All
(Replace_All
(Replace_All
(Replace_All (Contents, Pretty_Print_On, ""),
Alt_Pretty_Print_On, ""),
Pretty_Print_Off, ""),
Alt_Pretty_Print_Off, "");
begin
Write_String_To_File (New_Contents, Filename);
end Remove_Pretty_Print_Flags;
end Rejuvenation.Pretty_Print;
|
source/Reminders.popclipext/Reminders.applescript | cnstntn-kndrtv/PopClip-Extensions | 1,262 | 919 | tell application id "com.apple.reminders"
make new reminder with properties {name:"{popclip text}", body:"{popclip browser url}"}
end tell
|
oeis/141/A141062.asm | neoneye/loda-programs | 11 | 88293 | ; A141062: a(n) = (prime(n) - 1) mod (sum of digits of prime(n)).
; Submitted by <NAME>
; 1,2,4,6,0,0,0,8,2,6,2,6,0,0,2,4,2,4,1,6,2,14,5,3,0,0,2,2,8,2,6,0,4,8,8,3,0,2,12,7,8,0,3,10,9,8,2,5,6,7,0,0,2,2,4,9,13,0,4,5,9,12,6,0,4,8,1,11,10,12,0,1,14,8,17,4,8,16,0,5,12,0,6,2,6,2,6,8,9,7,7,18,11,0,14,6,4,0,2
seq $0,6093 ; a(n) = prime(n) - 1.
seq $0,141022 ; a(n) = n mod ((sum of digits of n)+1).
|
lib/Runtime/Library/arm64/arm64_DeferredParsingThunk.asm | Taritsyn/ChakraCore | 8,664 | 167371 | ;-------------------------------------------------------------------------------------------------------
; Copyright (C) Microsoft. All rights reserved.
; Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
;-------------------------------------------------------------------------------------------------------
;Var Js:JavascriptFunction::DeferredParsingThunk(function, info, values[0], values[1], ..., values[n-2], values[n-1])
;
; This method should be called as follows
; varResult = JavascriptFunction::DeferredParsingThunk(function, info, values[0], values[1], ..., values[n-2], values[n-1]);
;
; and does the following:
; entryPoint = JavascriptFunction::DeferredParse(&function);
; return entryPoint(function, info, values[0], values[1], ..., values[n-2], values[n-1]);
; where n = info.Count
;
OPT 2 ; disable listing
#include "ksarm64.h"
OPT 1 ; re-enable listing
TTL Lib\Runtime\Library\arm64\arm64_DeferredParsingThunk.asm
EXPORT |?DeferredParsingThunk@JavascriptFunction@Js@@SAPEAXPEAVRecyclableObject@2@UCallInfo@2@ZZ| ;Js:JavascriptFunction::DeferredParsingThunk(function, info, values[0], values[1], ..., values[n-2], values[n-1])
IMPORT |?DeferredParse@JavascriptFunction@Js@@SAP6APEAXPEAVRecyclableObject@2@UCallInfo@2@ZZPEAPEAVScriptFunction@2@@Z| ;Js::JavascriptMethod JavascriptFunction::DeferredParse(ScriptFunction** function)
TEXTAREA
NESTED_ENTRY ?DeferredParsingThunk@JavascriptFunction@Js@@SAPEAXPEAVRecyclableObject@2@UCallInfo@2@ZZ
PROLOG_SAVE_REG_PAIR fp, lr, #-80!
stp x0, x1, [sp, #16]
stp x2, x3, [sp, #32]
stp x4, x5, [sp, #48]
stp x6, x7, [sp, #64]
; Pass the address of the function at the saved x0
mov x0, sp
add x0, x0, #16 ; 16 is subtracted from the stack pointer when the a function is called, add it back here.
bl |?DeferredParse@JavascriptFunction@Js@@SAP6APEAXPEAVRecyclableObject@2@UCallInfo@2@ZZPEAPEAVScriptFunction@2@@Z| ; retrieve entrypoint
mov x16, x0 ; back up entryPoint in x16
ldp x6, x7, [sp, #64]
ldp x4, x5, [sp, #48]
ldp x2, x3, [sp, #32]
ldp x0, x1, [sp, #16]
EPILOG_RESTORE_REG_PAIR fp, lr, #80!
EPILOG_NOP br x16 ; tail call to new entryPoint
NESTED_END
END
|
bin/change_input.scpt | AmmarCodes/dotfiles | 5 | 3752 | on run argv
set layoutName to item 1 of argv
tell application "System Events" to tell process "SystemUIServer"
tell (1st menu bar item of menu bar 1 whose description is "text input") to {click, click (menu 1's menu item layoutName)}
end tell
end run
|
triple.agda | heades/AUGL | 0 | 14920 | <filename>triple.agda
module triple where
|
hello.asm | hiddenwings/low_case | 0 | 20951 | format ELF64 executable 3
segment readable executable
entry main
main:
mov rdx, 14 ; move rax to rdx
lea rsi, [msg] ; move rdi to rsi
mov rax, 1 ; sys_write
syscall
xor rdi, rdi ; exit code 0
mov rax, 60 ; sys_exit
syscall
segment readable writable
msg db 'Hello world!', 10, 0
|
Miscellaneous/Chip16-Emulator/roms/Sources/SoundTest.asm | ghivert/Student-Projects | 2 | 14429 | ;Sound test for Chip16
;Shendo 2011
;
;Registers ra-rf used for ASCII printing
;r0 - current selection
;r1 - selector X position
;r2 - selector Y position
;r3 - Gamepad 1 state
;r4 - Gamepad 1 state mirror
;r5 - Max offset number
;r6 - Gamepad 1 dpad timeout
;r7 - Constant 0
;r8 - Scratchpad
;
cls ;Start clean
ldi r0,0 ;First option selected by default
ldi r1,80 ;Selector X position
ldi r2,88 ;Selector Y position
ldi r5,2 ;Constant 2
ldi r6,0 ;Clear PAD1 timeout
ldi r7,0 ;Constant 0
:start ;Start of the program
vblnk ;Wait for VBlank
ldm r3,#FFF0 ;Poll PAD1 state
jme r3,r7,clr_pad_tmo ;Clear timeout if no keys are pressed
jmp continue_exec ;Skip timeout clearing
:clr_pad_tmo
ldi r6,0 ;Clear PAD1 timeout
:continue_exec
cls ;Clear the screen
ldi ra,10 ;X coordinate
ldi rb,10 ;Y coordinate
ldi rd,string_data_0 ;Pointer to the string0
call print_string ;Draw string on screen
ldi ra,10 ;X coordinate
ldi rb,185 ;Y coordinate
ldi rd,string_data_1 ;Pointer to the string1
call print_string ;Draw string on screen
ldi ra,10 ;X coordinate
ldi rb,200 ;Y coordinate
ldi rd,string_data_2 ;Pointer to the string2
call print_string ;Draw string on screen
ldi ra,10 ;X coordinate
ldi rb,215 ;Y coordinate
ldi rd,string_data_3 ;Pointer to the string3
call print_string ;Draw string on screen
ldi ra,10 ;X coordinate
ldi rb,85 ;Y coordinate
ldi rd,string_data_4 ;Pointer to the string4
call print_string ;Draw string on screen
ldi ra,10 ;X coordinate
ldi rb,100 ;Y coordinate
ldi rd,string_data_5 ;Pointer to the string5
call print_string ;Draw string on screen
ldi ra,10 ;X coordinate
ldi rb,115 ;Y coordinate
ldi rd,string_data_6 ;Pointer to the string6
call print_string ;Draw string on screen
mov r2,r0 ;Copy current selection
muli r2,16 ;Convert to offset
addi r2,88 ;Get Y coordinate
spr #0903 ;Set 6x9 px sprites
drw r1,r2,arrow_sprite ;Draw arrow selector
mov r4,r3 ;Get PAD1 state for manipulation
andi r4,64 ;Isolate A key
jz skip_playing ;Skip playing if A is not pressed
call play_snd ;Play selected sound
:skip_playing
jme r6,r7,move_up ;Check if PAD1 timeout is zero
subi r6,1 ;Decrement PAD1 timeout
jz move_up ;No timeout, read keys
jmp start ;Jump to beginning (new frame)
:move_up ;Check if PAD1 UP is pressed
mov r4,r3 ;Get PAD1 state for manipulation
andi r4,1 ;Isolate UP key
jz move_down ;UP key is not pressed, skip
jme r0,r7,start ;Min offset reached, skip
subi r0,1 ;Decrement current selection
ldi r6,15 ;Set PAD1 timeout
:move_down ;Check if PAD1 UP is pressed
mov r4,r3 ;Get PAD1 state for manipulation
andi r4,2 ;Isolate DOWN key
jz start ;DOWN key is not pressed, skip
jme r0,r5,start ;Max offset reached, skip
addi r0,1 ;Increment current selection
ldi r6,15 ;Set PAD1 timeout
jmp start ;Draw new frame
:play_snd
ldi r8,0 ;Load value for checking
jme r0,r8,play_snd1 ;First option is selected
ldi r8,1 ;Load value for checking
jme r0,r8,play_snd2 ;Second option is selected
ldi r8,2 ;Load value for checking
jme r0,r8,play_snd3 ;Third option is selected
ret ;This should be unreachable, but it's better to play it safe
:play_snd1
snd1 200 ;Play 500 Hz tone for 200 ms
ret
:play_snd2
snd2 200 ;Play 1000 Hz tone for 200 ms
ret
:play_snd3
snd3 200 ;Play 1500 Hz tone for 200 ms
ret
:print_string ;Print string on screen
spr #0F05 ;Set 10x15 px sprites
ldi re,font_data ;Pointer to the graphic data
ldm rf,rd ;Get ascii code
andi rf,255 ;Use only low part of the data
jz print_end ;If the char is null stop printing
subi rf,32 ;Convert to char offset
jc print_end ;If the char is below zero it's unprintable
muli rf,75 ;Convert char offset to byte offset
add re,rf ;Get the char sprite address
drw ra,rb,re ;Draw char on screen
addi ra,8 ;Increase X offset
addi rd,1 ;Point to next char
jmp print_string ;Print next char
:print_end
ret
:string_data_0
db #53 ;"Sound test"
db #6F
db #75
db #6E
db #64
db #20
db #74
db #65
db #73
db #74
db #00
:string_data_1
db #43 ;"Controls:"
db #6F
db #6E
db #74
db #72
db #6F
db #6C
db #73
db #3A
db #00
:string_data_2
db #55 ;"Up/Down - select frequency"
db #70
db #2F
db #44
db #6F
db #77
db #6E
db #20
db #2D
db #20
db #73
db #65
db #6C
db #65
db #63
db #74
db #20
db #66
db #72
db #65
db #71
db #75
db #65
db #6E
db #63
db #79
db #00
:string_data_3
db #41 ;"A - play sound"
db #20
db #2D
db #20
db #70
db #6C
db #61
db #79
db #20
db #73
db #6F
db #75
db #6E
db #64
db #00
:string_data_4
db #35 ;"500 Hz"
db #30
db #30
db #20
db #48
db #7A
db #00
:string_data_5
db #31 ;"1000 Hz"
db #30
db #30
db #30
db #20
db #48
db #7A
db #00
:string_data_6
db #31 ;"1500 Hz"
db #35
db #30
db #30
db #20
db #48
db #7A
db #00
:arrow_sprite
db #00 ;"Sprite data for arrow"
db #00
db #30
db #00
db #03
db #30
db #00
db #33
db #30
db #03
db #33
db #30
db #33
db #33
db #30
db #03
db #33
db #30
db #00
db #33
db #30
db #00
db #03
db #30
db #00
db #00
db #30
:font_data
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #0F
db #FF
db #FF
db #FF
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #0F
db #FF
db #FF
db #FF
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #00
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #00
db #FF
db #0F
db #F0
db #F0
db #00
db #0F
db #FF
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #FF
db #F0
db #00
db #0F
db #0F
db #F0
db #FF
db #00
db #00
db #0F
db #F0
db #FF
db #00
db #00
db #00
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #F0
db #00
db #00
db #0F
db #F0
db #FF
db #00
db #00
db #0F
db #F0
db #FF
db #00
db #00
db #00
db #FF
db #F0
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #FF
db #FF
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #F0
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #00
db #0F
db #FF
db #00
db #00
db #0F
db #FF
db #FF
db #FF
db #00
db #00
db #0F
db #FF
db #00
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #00
db #00
db #00
db #0F
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #00
db #00
db #00
db #0F
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #F0
db #00
db #00
db #FF
db #00
db #FF
db #00
db #00
db #FF
db #0F
db #FF
db #00
db #00
db #FF
db #0F
db #FF
db #00
db #00
db #FF
db #00
db #FF
db #00
db #00
db #FF
db #F0
db #FF
db #00
db #00
db #FF
db #F0
db #FF
db #00
db #00
db #FF
db #00
db #FF
db #00
db #00
db #0F
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #FF
db #00
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #0F
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #FF
db #FF
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #0F
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #FF
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #FF
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #00
db #00
db #00
db #0F
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #00
db #00
db #00
db #0F
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #00
db #00
db #00
db #0F
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #00
db #00
db #00
db #0F
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #FF
db #00
db #00
db #FF
db #00
db #FF
db #00
db #00
db #FF
db #00
db #FF
db #00
db #FF
db #FF
db #00
db #FF
db #0F
db #F0
db #FF
db #00
db #FF
db #0F
db #F0
db #FF
db #00
db #FF
db #00
db #FF
db #FF
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #F0
db #00
db #00
db #0F
db #F0
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #FF
db #00
db #00
db #0F
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #FF
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #FF
db #00
db #00
db #0F
db #F0
db #FF
db #00
db #00
db #0F
db #FF
db #F0
db #00
db #00
db #0F
db #F0
db #FF
db #00
db #00
db #0F
db #F0
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #FF
db #00
db #0F
db #F0
db #00
db #FF
db #00
db #0F
db #FF
db #0F
db #FF
db #00
db #0F
db #F0
db #F0
db #FF
db #00
db #0F
db #F0
db #F0
db #FF
db #00
db #0F
db #F0
db #F0
db #FF
db #00
db #0F
db #F0
db #00
db #FF
db #00
db #0F
db #F0
db #00
db #FF
db #00
db #0F
db #F0
db #00
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #FF
db #00
db #0F
db #F0
db #00
db #FF
db #00
db #0F
db #FF
db #00
db #FF
db #00
db #0F
db #FF
db #F0
db #FF
db #00
db #0F
db #F0
db #FF
db #FF
db #00
db #0F
db #F0
db #0F
db #FF
db #00
db #0F
db #F0
db #00
db #FF
db #00
db #0F
db #F0
db #00
db #FF
db #00
db #0F
db #F0
db #00
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #FF
db #00
db #0F
db #F0
db #00
db #FF
db #00
db #0F
db #F0
db #00
db #FF
db #00
db #0F
db #F0
db #F0
db #FF
db #00
db #0F
db #F0
db #F0
db #FF
db #00
db #0F
db #F0
db #F0
db #FF
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #0F
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #F0
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #F0
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #0F
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #FF
db #00
db #00
db #0F
db #FF
db #F0
db #00
db #00
db #0F
db #F0
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #0F
db #F0
db #F0
db #FF
db #00
db #0F
db #F0
db #F0
db #FF
db #00
db #0F
db #F0
db #F0
db #FF
db #00
db #0F
db #F0
db #F0
db #FF
db #00
db #0F
db #F0
db #F0
db #FF
db #00
db #0F
db #F0
db #00
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #FF
db #F0
db #00
db #0F
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #FF
db #F0
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #0F
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #FF
db #00
db #0F
db #F0
db #F0
db #FF
db #00
db #0F
db #F0
db #F0
db #FF
db #00
db #0F
db #F0
db #F0
db #FF
db #00
db #0F
db #F0
db #F0
db #FF
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #00
db #FF
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #FF
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #0F
db #F0
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #FF
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #FF
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #0F
db #F0
db #00
db #00
db #00
db #FF
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #0F
db #FF
db #00
db #0F
db #00
db #FF
db #0F
db #F0
db #FF
db #00
db #F0
db #00
db #FF
db #F0
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
db #00
:font_cache |
Transynther/x86/_processed/NC/_st_sm_/i3-7100_9_0x84_notsx.log_149_446.asm | ljhsiun2/medusa | 9 | 6957 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NC/_st_sm_/i3-7100_9_0x84_notsx.log_149_446.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r13
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x1f6c, %r13
clflush (%r13)
nop
nop
cmp %rdi, %rdi
mov (%r13), %r12
cmp $24138, %r8
lea addresses_WC_ht+0x15f0, %rsi
clflush (%rsi)
nop
nop
nop
nop
add $20121, %r9
and $0xffffffffffffffc0, %rsi
vmovaps (%rsi), %ymm7
vextracti128 $1, %ymm7, %xmm7
vpextrq $1, %xmm7, %r10
and %r9, %r9
lea addresses_WC_ht+0x12270, %rdi
nop
nop
nop
nop
and %r12, %r12
movups (%rdi), %xmm0
vpextrq $0, %xmm0, %rsi
and $9953, %r10
lea addresses_WT_ht+0x1194, %rsi
nop
nop
nop
nop
xor $9033, %r9
vmovups (%rsi), %ymm6
vextracti128 $1, %ymm6, %xmm6
vpextrq $0, %xmm6, %r12
nop
nop
nop
cmp $38506, %r13
lea addresses_WT_ht+0xe7ec, %r12
clflush (%r12)
nop
nop
nop
nop
cmp $8071, %r8
movups (%r12), %xmm4
vpextrq $0, %xmm4, %r13
nop
and $59691, %r12
lea addresses_WC_ht+0xd16c, %r10
nop
xor $16134, %r9
and $0xffffffffffffffc0, %r10
movaps (%r10), %xmm0
vpextrq $0, %xmm0, %rdi
nop
nop
nop
add %r8, %r8
lea addresses_D_ht+0x37ec, %rdi
nop
nop
nop
nop
add $10892, %r13
mov $0x6162636465666768, %r12
movq %r12, (%rdi)
nop
nop
nop
cmp %r9, %r9
lea addresses_UC_ht+0x1416c, %rsi
lea addresses_A_ht+0x136ec, %rdi
nop
nop
nop
nop
nop
cmp %r8, %r8
mov $27, %rcx
rep movsb
nop
nop
nop
xor %rdi, %rdi
pop %rsi
pop %rdi
pop %rcx
pop %r9
pop %r8
pop %r13
pop %r12
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r12
push %r13
push %r9
push %rbp
push %rcx
push %rsi
// Store
mov $0x6fe5220000000fec, %r13
nop
nop
nop
add %rcx, %rcx
movw $0x5152, (%r13)
nop
nop
nop
nop
nop
xor %rbp, %rbp
// Store
lea addresses_normal+0x1196c, %r11
dec %r9
mov $0x5152535455565758, %rbp
movq %rbp, %xmm3
vmovups %ymm3, (%r11)
nop
nop
and $17496, %r11
// Load
lea addresses_US+0xcf90, %rcx
clflush (%rcx)
nop
nop
nop
nop
nop
xor $18921, %rsi
movb (%rcx), %r13b
nop
nop
nop
cmp %rbp, %rbp
// Store
lea addresses_normal+0x1404c, %r13
and $10192, %r12
movl $0x51525354, (%r13)
add $21300, %r9
// Faulty Load
mov $0x6fe5220000000fec, %rsi
and $52664, %r9
vmovups (%rsi), %ymm3
vextracti128 $0, %ymm3, %xmm3
vpextrq $0, %xmm3, %rcx
lea oracles, %r12
and $0xff, %rcx
shlq $12, %rcx
mov (%r12,%rcx,1), %rcx
pop %rsi
pop %rcx
pop %rbp
pop %r9
pop %r13
pop %r12
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_NC', 'same': False, 'size': 8, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'dst': {'type': 'addresses_NC', 'same': True, 'size': 2, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'dst': {'type': 'addresses_normal', 'same': False, 'size': 32, 'congruent': 7, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'src': {'type': 'addresses_US', 'same': False, 'size': 1, 'congruent': 2, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'dst': {'type': 'addresses_normal', 'same': False, 'size': 4, 'congruent': 4, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
[Faulty Load]
{'src': {'type': 'addresses_NC', 'same': True, 'size': 32, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'type': 'addresses_UC_ht', 'same': False, 'size': 8, 'congruent': 7, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_WC_ht', 'same': True, 'size': 32, 'congruent': 1, 'NT': False, 'AVXalign': True}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_WC_ht', 'same': False, 'size': 16, 'congruent': 2, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_WT_ht', 'same': False, 'size': 32, 'congruent': 3, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_WT_ht', 'same': False, 'size': 16, 'congruent': 7, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_WC_ht', 'same': False, 'size': 16, 'congruent': 6, 'NT': False, 'AVXalign': True}, 'OP': 'LOAD'}
{'dst': {'type': 'addresses_D_ht', 'same': False, 'size': 8, 'congruent': 11, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'src': {'type': 'addresses_UC_ht', 'congruent': 5, 'same': False}, 'dst': {'type': 'addresses_A_ht', 'congruent': 8, 'same': False}, 'OP': 'REPM'}
{'52': 149}
52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52
*/
|
test/succeed/NoPatternMatching.agda | larrytheliquid/agda | 1 | 10253 | {-# OPTIONS --no-pattern-matching #-}
id : {A : Set} (x : A) → A
id x = x
const : {A B : Set} (x : A) (y : B) → A
const x y = x
happ : {A B C : Set} (f : A → B → C) (g : A → B) (x : A) → C
happ f g x = f x (g x)
K = const
S = happ
I : {A : Set} (x : A) → A
I = S K K
-- Mmh, pretty boring...
|
message/generation/swift-mt-generation/repository/SR2018/grammars/SwiftMtParser_MT364.g4 | Yanick-Salzmann/message-converter-c | 0 | 2258 | grammar SwiftMtParser_MT364;
@lexer::header {
#include "repository/ISwiftMtParser.h"
#include "SwiftMtMessage.pb.h"
#include <vector>
#include <string>
#include "BaseErrorListener.h"
}
@parser::header {
#include "repository/ISwiftMtParser.h"
#include "SwiftMtMessage.pb.h"
#include <vector>
#include <string>
#include "BaseErrorListener.h"
#include "SwiftMtParser_MT364Lexer.h"
}
@parser::members {
public:
typedef SwiftMtParser_MT364Lexer tLexer;
typedef SwiftMtParser_MT364Parser tParser;
private:
std::vector<std::string> _errors;
public:
[[nodiscard]] const std::vector<std::string>& errors() const { return _errors; }
private:
class DefaultErrorListener : public antlr4::BaseErrorListener {
private:
std::vector<std::string>& _errors;
public:
explicit DefaultErrorListener(std::vector<std::string>& errors) : _errors(errors) { }
void syntaxError(Recognizer *recognizer, antlr4::Token * offendingSymbol, size_t line, size_t charPositionInLine,
const std::string &msg, std::exception_ptr e) override {
_errors.push_back(msg);
}
};
DefaultErrorListener _error_listener { _errors };
public:
class Helper : public ISwiftMtParser {
public:
bool parse_message(const std::string& message, std::vector<std::string>& errors, SwiftMtMessage& out_message) override {
antlr4::ANTLRInputStream stream{message};
tLexer lexer{&stream};
antlr4::CommonTokenStream token_stream{&lexer};
tParser parser{&token_stream};
return parser.process(errors, out_message);
}
};
private:
SwiftMtMessage _message_builder{};
bool process(std::vector<std::string>& errors, SwiftMtMessage& out_message) {
_errors.clear();
removeErrorListeners();
addErrorListener(&_error_listener);
_message_builder = SwiftMtMessage{};
message();
if(!_errors.empty()) {
errors.insert(errors.end(), _errors.begin(), _errors.end());
return false;
}
out_message = _message_builder;
return true;
}
public:
[[nodiscard]] SwiftMtMessage parsed_message() const {
return _message_builder;
}
}
message : bh ah uh? mt tr? EOF;
bh : TAG_BH bh_content RBRACE ;
bh_content : ~(RBRACE)+ ;
ah : TAG_AH ah_content RBRACE ;
ah_content : ~( RBRACE )+ ;
uh : TAG_UH sys_block RBRACE ;
tr : TAG_TR sys_block RBRACE ;
sys_block : sys_element+ ;
sys_element : LBRACE sys_element_key COLON sys_element_content RBRACE ;
sys_element_key : ~( COLON | RBRACE )+ ;
sys_element_content : ~( RBRACE )+ ;
mt returns [message::definition::swift::mt::MessageText elem] @after { _message_builder.mutable_msg_text()->MergeFrom($elem); }
: TAG_MT MT_END;
TAG_BH : '{1:' ;
TAG_AH : '{2:' ;
TAG_UH : '{3:' ;
TAG_MT : '{4:' ;
TAG_TR : '{5:' ;
MT_END : '-}';
LBRACE : '{';
RBRACE : '}' ;
COLON : ':';
START_OF_FIELD : '\r'? '\n:' ;
ANY : . ; |
oeis/226/A226123.asm | neoneye/loda-programs | 11 | 177961 | <filename>oeis/226/A226123.asm
; A226123: Number of terms of the form 2^k in Collatz(3x+1) trajectory of n.
; Submitted by <NAME>
; 1,2,5,3,5,5,5,4,5,5,5,5,5,5,5,5,5,5,5,5,7,5,5,5,5,5,5,5,5,5,5,6,5,5,5,5,5,5,5,5,5,7,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,7,5,5,5,5,5,5,5,5,5,5,9,5,5,5,5,5,5,5,5,7,9,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5
add $0,1
mov $1,270
lpb $1
mov $2,2
sub $2,$0
lpb $2
mov $1,0
mov $2,0
lpe
mov $2,$0
mod $2,2
mov $3,1
lpb $2
mul $0,3
add $0,1
sub $2,1
mod $4,$3
lpe
lpb $3
div $0,2
sub $3,1
lpe
sub $1,1
add $4,1
lpe
mov $0,$4
add $0,1
|
programs/oeis/215/A215537.asm | karttu/loda | 1 | 1273 | <filename>programs/oeis/215/A215537.asm
; A215537: Lowest k such that k is representable as both the sum of n and of n+1 nonzero squares.
; 25,17,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79
mov $2,$0
sub $0,2
mul $0,-9
trn $0,3
add $0,$2
mov $1,$0
add $1,10
|
src/main/resources/SqlGrammar.g4 | michalwojciechowski/coherence-sql | 1 | 932 | <filename>src/main/resources/SqlGrammar.g4
/*
T-SQL (Transact-SQL, MSSQL) grammar.
The MIT License (MIT).
Copyright (c) 2015-2016, <NAME> (<EMAIL>), Positive Technologies.
Copyright (c) 2016, <NAME> (<EMAIL>).
Copyright (c) 2016, <NAME> (<EMAIL>).
Copyright (c) 2016, <NAME> (<EMAIL>).
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
grammar SqlGrammar;
sqlClauses
: (sqlClause SEMI?)+ EOF
;
sqlClause
: dmlClause
;
// Data Manipulation Language: https://msdn.microsoft.com/en-us/library/ff848766(v=sql.120).aspx
dmlClause
: selectStatement
;
// https://msdn.microsoft.com/en-us/library/ms189499.aspx
selectStatement
: queryExpression orderByClause? optionClause? ';'?
;
// https://msdn.microsoft.com/en-us/library/ms190286.aspx
// Operator precendence: https://msdn.microsoft.com/en-us/library/ms190276.aspx
expression
: DEFAULT #primitiveExpression
| NULL #primitiveExpression
| LOCAL_ID #primitiveExpression
| constant #primitiveExpression
| functionCall #functionCallExpression
| expression COLLATE id #functionCallExpression
// https://msdn.microsoft.com/en-us/library/ms181765.aspx
| CASE caseExpr=expression switchSection+ (ELSE elseExpr=expression)? END #caseExpression
| CASE switchSearchConditionSection+ (ELSE elseExpr=expression)? END #caseExpression
| fullColumnName #columnRefExpression
| '(' expression ')' #bracketExpression
| '(' subquery ')' #subqueryExpression
| '~' expression #unaryOperatorExpression
| expression op=('*' | '/' | '%') expression #binaryOperatorExpression
| op=('+' | '-') expression #unaryOperatorExpression
| expression op=('+' | '-' | '&' | '^' | '|') expression #binaryOperatorExpression
| expression comparisonOperator expression #binaryOperatorExpression
;
constantExpression
: NULL
| constant
// system functions: https://msdn.microsoft.com/en-us/library/ms187786.aspx
| functionCall
| LOCAL_ID // TODO: remove.
| '(' constantExpression ')'
;
subquery
: selectStatement
;
searchCondition
: searchConditionAnd (OR searchConditionAnd)*
;
searchConditionAnd
: searchConditionNot (AND searchConditionNot)*
;
searchConditionNot
: NOT? predicate
;
predicate
: EXISTS '(' subquery ')'
| expression comparisonOperator expression
| expression comparisonOperator (ALL | SOME | ANY) '(' subquery ')'
| expression NOT? BETWEEN expression AND expression
| expression NOT? IN '(' (subquery | expressionList) ')'
| expression NOT? LIKE expression (ESCAPE expression)?
| expression IS nullNotnull
| '(' searchCondition ')'
;
queryExpression
: (querySpecification | '(' queryExpression ')') union*
;
union
: (UNION ALL? | EXCEPT | INTERSECT) (querySpecification | ('(' queryExpression ')'))
;
// https://msdn.microsoft.com/en-us/library/ms176104.aspx
querySpecification
: SELECT (ALL | DISTINCT)?
selectList
// https://msdn.microsoft.com/en-us/library/ms188029.aspx
(INTO tableName)?
(FROM tableSources)?
(WHERE where=searchCondition)?
// https://msdn.microsoft.com/en-us/library/ms177673.aspx
(GROUP BY groupByItem (',' groupByItem)*)?
(HAVING having=searchCondition)?
;
// https://msdn.microsoft.com/en-us/library/ms188385.aspx
orderByClause
: ORDER BY orderByExpression (',' orderByExpression)*
(OFFSET expression (ROW | ROWS) (FETCH (FIRST | NEXT) expression (ROW | ROWS) ONLY)?)?
;
orderByExpression
: expression (ASC | DESC)?
;
groupByItem
: expression
;
optionClause
// https://msdn.microsoft.com/en-us/library/ms181714.aspx
: OPTION '(' option (',' option)* ')'
;
option
: FAST numberRows=DECIMAL
| (HASH | ORDER) GROUP
| (MERGE | HASH | CONCAT) UNION
| (LOOP | MERGE | HASH) JOIN
| EXPAND VIEWS
| FORCE ORDER
| IGNORE_NONCLUSTERED_COLUMNSTORE_INDEX
| KEEP PLAN
| KEEPFIXED PLAN
| MAXDOP numberOfProcessors=DECIMAL
| MAXRECURSION numberRecursion=DECIMAL
| OPTIMIZE FOR UNKNOWN
| PARAMETERIZATION (SIMPLE | FORCED)
| RECOMPILE
| ROBUST PLAN
| USE PLAN STRING
;
// https://msdn.microsoft.com/en-us/library/ms176104.aspx
selectList
: selectListElem (',' selectListElem)*
;
selectListElem
: (tableName '.')? ('*' | '$' (IDENTITY | ROWGUID))
| columnAlias '=' expression
| expression (AS? columnAlias)?
;
tableSources
: initialTableSource (',' tableSource)*
;
initialTableSource
: tableSourceItem
;
// https://msdn.microsoft.com/en-us/library/ms177634.aspx
tableSource
: tableSourceItemJoined
| '(' tableSourceItemJoined ')'
;
tableSourceItemJoined
: tableSourceItem joinPart*
;
tableSourceItem
: tableNameWithHint asTableAlias?
| derivedTable (asTableAlias columnAliasList?)?
| changeTable asTableAlias
| functionCall asTableAlias?
| LOCAL_ID asTableAlias?
| LOCAL_ID '.' functionCall (asTableAlias columnAliasList?)?
;
changeTable
: CHANGETABLE '(' CHANGES tableName ',' (NULL | DECIMAL | LOCAL_ID) ')'
;
// https://msdn.microsoft.com/en-us/library/ms191472.aspx
joinPart
// https://msdn.microsoft.com/en-us/library/ms173815(v=sql.120).aspx
: (INNER? |
joinType=(LEFT | RIGHT | FULL) OUTER?) (joinHint=(LOOP | HASH | MERGE | REMOTE))?
JOIN tableSource ON searchCondition
| CROSS JOIN tableSource
| CROSS APPLY tableSource
| OUTER APPLY tableSource
;
tableNameWithHint
: tableName?
;
derivedTable
: subquery
| '(' subquery ')'
;
functionCall
: aggregateWindowedFunction
| scalarFunctionName '(' expressionList? ')'
// https://msdn.microsoft.com/en-us/library/ms173784.aspx
| BINARY_CHECKSUM '(' '*' ')'
// https://msdn.microsoft.com/en-us/library/hh231076.aspx
// https://msdn.microsoft.com/en-us/library/ms187928.aspx
| CAST '(' expression AS dataType ')'
| CONVERT '(' dataType ',' expression (',' style=expression)? ')'
// https://msdn.microsoft.com/en-us/library/ms189788.aspx
| CHECKSUM '(' '*' ')'
// https://msdn.microsoft.com/en-us/library/ms190349.aspx
| COALESCE '(' expressionList ')'
// https://msdn.microsoft.com/en-us/library/ms188751.aspx
| CURRENT_TIMESTAMP
// https://msdn.microsoft.com/en-us/library/ms176050.aspx
| CURRENT_USER
// https://msdn.microsoft.com/en-us/library/ms186819.aspx
| DATEADD '(' ID ',' expression ',' expression ')'
// https://msdn.microsoft.com/en-us/library/ms189794.aspx
| DATEDIFF '(' ID ',' expression ',' expression ')'
// https://msdn.microsoft.com/en-us/library/ms174395.aspx
| DATENAME '(' ID ',' expression ')'
// https://msdn.microsoft.com/en-us/library/ms174420.aspx
| DATEPART '(' ID ',' expression ')'
// https://msdn.microsoft.com/en-us/library/ms189838.aspx
| IDENTITY '(' dataType (',' seed=DECIMAL)? (',' increment=DECIMAL)? ')'
// https://msdn.microsoft.com/en-us/library/bb839514.aspx
| MIN_ACTIVE_ROWVERSION
// https://msdn.microsoft.com/en-us/library/ms177562.aspx
| NULLIF '(' expression ',' expression ')'
// https://msdn.microsoft.com/en-us/library/ms177587.aspx
| SESSION_USER
// https://msdn.microsoft.com/en-us/library/ms179930.aspx
| SYSTEM_USER
;
switchSection
: WHEN expression THEN expression
;
switchSearchConditionSection
: WHEN searchCondition THEN expression
;
asTableAlias
: AS? tableAlias
;
tableAlias
: id?
;
columnAliasList
: '(' columnAlias (',' columnAlias)* ')'
;
columnAlias
: id
| STRING
;
expressionList
: expression (',' expression)*
;
// https://msdn.microsoft.com/en-us/library/ms173454.aspx
aggregateWindowedFunction
: (AVG | MAX | MIN | SUM | STDEV | STDEVP | VAR | VARP)
'(' allDistinctExpression ')'
| (COUNT | COUNT_BIG)
'(' ('*' | allDistinctExpression) ')'
| CHECKSUM_AGG '(' allDistinctExpression ')'
| GROUPING '(' expression ')'
| GROUPING_ID '(' expressionList ')'
;
allDistinctExpression
: (ALL | DISTINCT)? expression
;
tableName
: table=id
;
funcProcName
: (database=id '.' (schema=id)? '.' | (schema=id) '.')? procedure=id
;
fullColumnName
: (tableName '.')? complexId
;
nullNotnull
: NOT? NULL
;
scalarFunctionName
: funcProcName
| RIGHT
| LEFT
| BINARY_CHECKSUM
| CHECKSUM
;
// https://msdn.microsoft.com/en-us/library/ms187752.aspx
dataType
/*: BIGINT
| BINARY '(' DECIMAL ')'
| BIT
| CHAR '(' DECIMAL ')'
| DATE
| DATETIME
| DATETIME2
| DATETIMEOFFSET '(' DECIMAL ')'
| DECIMAL '(' DECIMAL ',' DECIMAL ')'
| FLOAT
| GEOGRAPHY
| GEOMETRY
| HIERARCHYID
| IMAGE
| INT
| MONEY
| NCHAR '(' DECIMAL ')'
| NTEXT
| NUMERIC '(' DECIMAL ',' DECIMAL ')'
| NVARCHAR '(' DECIMAL | MAX ')'
| REAL
| SMALLDATETIME
| SMALLINT
| SMALLMONEY
| SQL_VARIANT
| TEXT
| TIME '(' DECIMAL ')'
| TIMESTAMP
| TINYINT
| UNIQUEIDENTIFIER
| VARBINARY '(' DECIMAL | MAX ')'
| VARCHAR '(' DECIMAL | MAX ')'
| XML*/
: id IDENTITY? ('(' (DECIMAL | MAX) (',' DECIMAL)? ')')?
;
// https://msdn.microsoft.com/en-us/library/ms179899.aspx
constant
: STRING // string, datetime or uniqueidentifier
| BINARY
| sign? DECIMAL
| sign? (REAL | FLOAT) // float or decimal
| sign? dollar='$' (DECIMAL | FLOAT) // money
;
sign
: '+'
| '-'
;
complexId
: (simpleId | simpleId '.' )+
| id
;
// https://msdn.microsoft.com/en-us/library/ms175874.aspx
id
: simpleId
| DOUBLE_QUOTE_ID
| SQUARE_BRACKET_ID
;
simpleId
: ID
| ABSOLUTE
| APPLY
| AUTO
| AVG
| BASE64
| CALLED
| CALLER
| CAST
| CATCH
| CHECKSUM_AGG
| COMMITTED
| CONCAT
| CONTROL
| COOKIE
| COUNT
| COUNT_BIG
| DELAY
| DELETED
| DENSE_RANK
| DISABLE
| DYNAMIC
| ENCRYPTION
| EXPAND
| FAST
| FAST_FORWARD
| FIRST
| FOLLOWING
| FORCE
| FORCESEEK
| FORWARD_ONLY
| FULLSCAN
| GLOBAL
| GO
| GROUPING
| GROUPING_ID
| HASH
| IMPERSONATE
| INSENSITIVE
| INSERTED
| ISOLATION
| KEEP
| KEEPFIXED
| FORCED
| KEYSET
| IGNORE_NONCLUSTERED_COLUMNSTORE_INDEX
| INPUT
| LAST
| LEVEL
| LOCAL
| LOCK_ESCALATION
| LOGIN
| LOOP
| MARK
| MAX
| MAXDOP
| MAXRECURSION
| MIN
| MODIFY
| NAME
| NEXT
| NOCOUNT
| NOEXPAND
| NORECOMPUTE
| NTILE
| NUMBER
| OFFSET
| ONLINE
| ONLY
| OPTIMISTIC
| OPTIMIZE
| OUT
| OUTPUT
| OWNER
| PARAMETERIZATION
| PARTITION
| PATH
| PRECEDING
| PRIOR
| PRIVILEGES
| PUBLIC
| RANGE
| RANK
| READONLY
| READ_ONLY
| RECOMPILE
| RELATIVE
| REMOTE
| REPEATABLE
| RETURN
| RETURNS
| ROBUST
| ROOT
| ROW
| ROWGUID
| ROWS
| ROW_NUMBER
| SAMPLE
| SIZE
| SCHEMABINDING
| SCROLL
| SCROLL_LOCKS
| SELF
| SERIALIZABLE
| SIMPLE
| SNAPSHOT
| SPATIAL_WINDOW_MAX_CELLS
| STATIC
| STATS_STREAM
| STDEV
| STDEVP
| SUM
| TEXTIMAGE_ON
| THROW
| TIES
| TIME
| TRY
| TYPE
| TYPE_WARNING
| UNBOUNDED
| UNCOMMITTED
| UNKNOWN
| USING
| VAR
| VARP
| VIEW_METADATA
| VIEWS
| WORK
| XML
| XMLNAMESPACES
;
// https://msdn.microsoft.com/en-us/library/ms188074.aspx
// Spaces are allowed for comparison operators.
comparisonOperator
: '=' | '>' | '<' | '<' '=' | '>' '=' | '<' '>' | '!' '=' | '!' '>' | '!' '<'
;
// Lexer
// Basic keywords (from https://msdn.microsoft.com/en-us/library/ms189822.aspx)
ADD: A D D;
ALL: A L L;
ALTER: A L T E R;
AND: A N D;
ANY: A N Y;
AS: A S;
ASC: A S C;
AUTHORIZATION: A U T H O R I Z A T I O N;
BACKUP: B A C K U P;
BEGIN: B E G I N;
BETWEEN: B E T W E E N;
BREAK: B R E A K;
BROWSE: B R O W S E;
BULK: B U L K;
BY: B Y;
CALLED: C A L L E D;
CASCADE: C A S C A D E;
CASE: C A S E;
CHANGETABLE: C H A N G E T A B L E;
CHANGES: C H A N G E S;
CHECK: C H E C K;
CHECKPOINT: C H E C K P O I N T;
CLOSE: C L O S E;
CLUSTERED: C L U S T E R E D;
COALESCE: C O A L E S C E;
COLLATE: C O L L A T E;
COLUMN: C O L U M N;
COMMIT: C O M M I T;
COMPUTE: C O M P U T E;
CONSTRAINT: C O N S T R A I N T;
CONTAINMENT: C O N T A I N M E N T;
CONTAINS: C O N T A I N S;
CONTAINSTABLE: C O N T A I N S T A B L E;
CONTINUE: C O N T I N U E;
CONVERT: C O N V E R T;
CREATE: C R E A T E;
CROSS: C R O S S;
CURRENT: C U R R E N T;
CURRENT_DATE: C U R R E N T '_' D A T E;
CURRENT_TIME: C U R R E N T '_' T I M E;
CURRENT_TIMESTAMP: C U R R E N T '_' T I M E S T A M P;
CURRENT_USER: C U R R E N T '_' U S E R;
CURSOR: C U R S O R;
DATABASE: D A T A B A S E;
DBCC: D B C C;
DEALLOCATE: D E A L L O C A T E;
DECLARE: D E C L A R E;
DEFAULT: D E F A U L T;
DELETE: D E L E T E;
DENY: D E N Y;
DESC: D E S C;
DISK: D I S K;
DISTINCT: D I S T I N C T;
DISTRIBUTED: D I S T R I B U T E D;
DOUBLE: D O U B L E;
DROP: D R O P;
DUMP: D U M P;
ELSE: E L S E;
END: E N D;
ERRLVL: E R R L V L;
ESCAPE: E S C A P E;
EXCEPT: E X C E P T;
EXECUTE: E X E C (U T E)?;
EXISTS: E X I S T S;
EXIT: E X I T;
EXTERNAL: E X T E R N A L;
FETCH: F E T C H;
FILE: F I L E;
FILENAME: F I L E N A M E;
FILLFACTOR: F I L L F A C T O R;
FOR: F O R;
FORCESEEK: F O R C E S E E K;
FOREIGN: F O R E I G N;
FREETEXT: F R E E T E X T;
FREETEXTTABLE: F R E E T E X T T A B L E;
FROM: F R O M;
FULL: F U L L;
FUNCTION: F U N C T I O N;
GOTO: G O T O;
GRANT: G R A N T;
GROUP: G R O U P;
HAVING: H A V I N G;
IDENTITY: I D E N T I T Y;
IDENTITYCOL: I D E N T I T Y C O L;
IDENTITY_INSERT: I D E N T I T Y '_' I N S E R T;
IF: I F;
IN: I N;
INDEX: I N D E X;
INNER: I N N E R;
INSERT: I N S E R T;
INTERSECT: I N T E R S E C T;
INTO: I N T O;
IS: I S;
JOIN: J O I N;
KEY: K E Y;
KILL: K I L L;
LEFT: L E F T;
LIKE: L I K E;
LINENO: L I N E N O;
LOAD: L O A D;
LOG: L O G;
MERGE: M E R G E;
NATIONAL: N A T I O N A L;
NOCHECK: N O C H E C K;
NONCLUSTERED: N O N C L U S T E R E D;
NONE: N O N E;
NOT: N O T;
NULL: N U L L;
NULLIF: N U L L I F;
OF: O F;
OFF: O F F;
OFFSETS: O F F S E T S;
ON: O N;
OPEN: O P E N;
OPENDATASOURCE: O P E N D A T A S O U R C E;
OPENQUERY: O P E N Q U E R Y;
OPENROWSET: O P E N R O W S E T;
OPENXML: O P E N X M L;
OPTION: O P T I O N;
OR: O R;
ORDER: O R D E R;
OUTER: O U T E R;
OVER: O V E R;
PARTIAL: P A R T I A L;
PERCENT: P E R C E N T;
PIVOT: P I V O T;
PLAN: P L A N;
PRECISION: P R E C I S I O N;
PRIMARY: P R I M A R Y;
PRINT: P R I N T;
PROC: P R O C;
PROCEDURE: P R O C E D U R E;
PUBLIC: P U B L I C;
RAISERROR: R A I S E R R O R;
READ: R E A D;
READTEXT: R E A D T E X T;
RECONFIGURE: R E C O N F I G U R E;
REFERENCES: R E F E R E N C E S;
REPLICATION: R E P L I C A T I O N;
RESTORE: R E S T O R E;
RESTRICT: R E S T R I C T;
RETURN: R E T U R N;
RETURNS: R E T U R N S;
REVERT: R E V E R T;
REVOKE: R E V O K E;
RIGHT: R I G H T;
ROLLBACK: R O L L B A C K;
ROWCOUNT: R O W C O U N T;
ROWGUIDCOL: R O W G U I D C O L;
RULE: R U L E;
SAVE: S A V E;
SCHEMA: S C H E M A;
SECURITYAUDIT: S E C U R I T Y A U D I T;
SELECT: S E L E C T;
SEMANTICKEYPHRASETABLE: S E M A N T I C K E Y P H R A S E T A B L E;
SEMANTICSIMILARITYDETAILSTABLE: S E M A N T I C S I M I L A R I T Y D E T A I L S T A B L E;
SEMANTICSIMILARITYTABLE: S E M A N T I C S I M I L A R I T Y T A B L E;
SESSION_USER: S E S S I O N '_' U S E R;
SET: S E T;
SETUSER: S E T U S E R;
SHUTDOWN: S H U T D O W N;
SOME: S O M E;
STATISTICS: S T A T I S T I C S;
SYSTEM_USER: S Y S T E M '_' U S E R;
TABLE: T A B L E;
TABLESAMPLE: T A B L E S A M P L E;
TEXTSIZE: T E X T S I Z E;
THEN: T H E N;
TO: T O;
TOP: T O P;
TRAN: T R A N;
TRANSACTION: T R A N S A C T I O N;
TRIGGER: T R I G G E R;
TRUNCATE: T R U N C A T E;
TRY_CONVERT: T R Y '_' C O N V E R T;
TSEQUAL: T S E Q U A L;
UNION: U N I O N;
UNIQUE: U N I Q U E;
UNPIVOT: U N P I V O T;
UPDATE: U P D A T E;
UPDATETEXT: U P D A T E T E X T;
USE: U S E;
USER: U S E R;
VALUES: V A L U E S;
VARYING: V A R Y I N G;
VIEW: V I E W;
WAITFOR: W A I T F O R;
WHEN: W H E N;
WHERE: W H E R E;
WHILE: W H I L E;
WITH: W I T H;
WITHIN: W I T H I N;
WRITETEXT: W R I T E T E X T;
// Additional keywords (they can be id).
ABSOLUTE: A B S O L U T E;
AFTER: A F T E R;
ALLOWED: A L L O W E D;
ALLOW_SNAPSHOT_ISOLATION: A L L O W '_' S N A P S H O T '_' I S O L A T I O N;
ANSI_NULLS: A N S I '_' N U L L S;
ANSI_NULL_DEFAULT: A N S I '_' N U L L '_' D E F A U L T;
ANSI_PADDING: A N S I '_' P A D D I N G;
ANSI_WARNINGS: A N S I '_' W A R N I N G S;
APPLY: A P P L Y;
ARITHABORT: A R I T H A B O R T;
AUTO: A U T O;
AUTO_CLEANUP: A U T O '_' C L E A N U P;
AUTO_CLOSE: A U T O '_' C L O S E;
AUTO_CREATE_STATISTICS: A U T O '_' C R E A T E '_' S T A T I S T I C S;
AUTO_SHRINK: A U T O '_' S H R I N K;
AUTO_UPDATE_STATISTICS: A U T O '_' U P D A T E '_' S T A T I S T I C S;
AUTO_UPDATE_STATISTICS_ASYNC: A U T O '_' U P D A T E '_' S T A T I S T I C S '_' A S Y N C;
AVG: A V G;
BASE64: B A S E '64';
BINARY_CHECKSUM: B I N A R Y '_' C H E C K S U M;
BULK_LOGGED: B U L K '_' L O G G E D;
CALLER: C A L L E R;
CAST: C A S T;
CATCH: C A T C H;
CHANGE_RETENTION: C H A N G E '_' R E T E N T I O N;
CHANGE_TRACKING: C H A N G E '_' T R A C K I N G;
CHECKSUM: C H E C K S U M;
CHECKSUM_AGG: C H E C K S U M '_' A G G;
COMMITTED: C O M M I T T E D;
COMPATIBILITY_LEVEL: C O M P A T I B I L I T Y '_' L E V E L;
CONCAT: C O N C A T;
CONCAT_NULL_YIELDS_NULL: C O N C A T '_' N U L L '_' Y I E L D S '_' N U L L;
CONTROL: C O N T R O L;
COOKIE: C O O K I E;
COUNT: C O U N T;
COUNT_BIG: C O U N T '_' B I G;
CURSOR_CLOSE_ON_COMMIT: C U R S O R '_' C L O S E '_' O N '_' C O M M I T;
CURSOR_DEFAULT: C U R S O R '_' D E F A U L T;
DATEADD: D A T E A D D;
DATEDIFF: D A T E D I F F;
DATENAME: D A T E N A M E;
DATEPART: D A T E P A R T;
DATE_CORRELATION_OPTIMIZATION: D A T E '_' C O R R E L A T I O N '_' O P T I M I Z A T I O N;
DAYS: D A Y S;
DB_CHAINING: D B '_' C H A I N I N G;
DEFAULT_FULLTEXT_LANGUAGE: D E F A U L T '_' F U L L T E X T '_' L A N G U A G E;
DEFAULT_LANGUAGE: D E F A U L T '_' L A N G U A G E;
DELAY: D E L A Y;
DELAYED_DURABILITY: D E L A Y E D '_' D U R A B I L I T Y;
DELETED: D E L E T E D;
DENSE_RANK: D E N S E '_' R A N K;
DIRECTORY_NAME: D I R E C T O R Y '_' N A M E;
DISABLE: D I S A B L E;
DISABLED: D I S A B L E D;
DISABLE_BROKER: D I S A B L E '_' B R O K E R;
DYNAMIC: D Y N A M I C;
EMERGENCY: E M E R G E N C Y;
ENABLE_BROKER: E N A B L E '_' B R O K E R;
ENCRYPTION: E N C R Y P T I O N;
ERROR_BROKER_CONVERSATIONS: E R R O R '_' B R O K E R '_' C O N V E R S A T I O N S;
EXPAND: E X P A N D;
FAST: F A S T;
FAST_FORWARD: F A S T '_' F O R W A R D;
FILEGROUP: F I L E G R O U P;
FILEGROWTH: F I L E G R O W T H;
FILESTREAM: F I L E S T R E A M;
FIRST: F I R S T;
FOLLOWING: F O L L O W I N G;
FORCE: F O R C E;
FORCED: F O R C E D;
FORWARD_ONLY: F O R W A R D '_' O N L Y;
FULLSCAN: F U L L S C A N;
GB: G B;
GLOBAL: G L O B A L;
GO: G O;
GROUPING: G R O U P I N G;
GROUPING_ID: G R O U P I N G '_' I D;
HADR: H A D R;
HASH: H A S H;
HONOR_BROKER_PRIORITY: H O N O R '_' B R O K E R '_' P R I O R I T Y;
HOURS: H O U R S;
IGNORE_NONCLUSTERED_COLUMNSTORE_INDEX: I G N O R E '_' N O N C L U S T E R E D '_' C O L U M N S T O R E '_' I N D E X;
IMMEDIATE: I M M E D I A T E;
IMPERSONATE: I M P E R S O N A T E;
INCREMENTAL: I N C R E M E N T A L;
INPUT: I N P U T;
INSENSITIVE: I N S E N S I T I V E;
INSERTED: I N S E R T E D;
ISOLATION: I S O L A T I O N;
KB: K B;
KEEP: K E E P;
KEEPFIXED: K E E P F I X E D;
KEYSET: K E Y S E T;
LAST: L A S T;
LEVEL: L E V E L;
LOCAL: L O C A L;
LOCK_ESCALATION: L O C K '_' E S C A L A T I O N;
LOGIN: L O G I N;
LOOP: L O O P;
MARK: M A R K;
MAX: M A X;
MAXDOP: M A X D O P;
MAXRECURSION: M A X R E C U R S I O N;
MAXSIZE: M A X S I Z E;
MB: M B;
MEMORY_OPTIMIZED_DATA: M E M O R Y '_' O P T I M I Z E D '_' D A T A;
MIN: M I N;
MINUTES: M I N U T E S;
MIN_ACTIVE_ROWVERSION: M I N '_' A C T I V E '_' R O W V E R S I O N;
MIXED_PAGE_ALLOCATION: M I X E D '_' P A G E '_' A L L O C A T I O N;
MODIFY: M O D I F Y;
MULTI_USER: M U L T I '_' U S E R;
NAME: N A M E;
NESTED_TRIGGERS: N E S T E D '_' T R I G G E R S;
NEW_BROKER: N E W '_' B R O K E R;
NEXT: N E X T;
NOCOUNT: N O C O U N T;
NOEXPAND: N O E X P A N D;
NON_TRANSACTED_ACCESS: N O N '_' T R A N S A C T E D '_' A C C E S S;
NORECOMPUTE: N O R E C O M P U T E;
NO_WAIT: N O '_' W A I T;
NTILE: N T I L E;
NUMBER: N U M B E R;
NUMERIC_ROUNDABORT: N U M E R I C '_' R O U N D A B O R T;
OFFLINE: O F F L I N E;
OFFSET: O F F S E T;
ONLINE: O N L I N E;
ONLY: O N L Y;
OPTIMISTIC: O P T I M I S T I C;
OPTIMIZE: O P T I M I Z E;
OUT: O U T;
OUTPUT: O U T P U T;
OWNER: O W N E R;
PAGE_VERIFY: P A G E '_' V E R I F Y;
PARAMETERIZATION: P A R A M E T E R I Z A T I O N;
PARTITION: P A R T I T I O N;
PATH: P A T H;
PRECEDING: P R E C E D I N G;
PRIOR: P R I O R;
PRIVILEGES: P R I V I L E G E S;
QUOTED_IDENTIFIER: Q U O T E D '_' I D E N T I F I E R;
RANGE: R A N G E;
RANK: R A N K;
READONLY: R E A D O N L Y;
READ_COMMITTED_SNAPSHOT: R E A D '_' C O M M I T T E D '_' S N A P S H O T;
READ_ONLY: R E A D '_' O N L Y;
READ_WRITE: R E A D '_' W R I T E;
RECOMPILE: R E C O M P I L E;
RECOVERY: R E C O V E R Y;
RECURSIVE_TRIGGERS: R E C U R S I V E '_' T R I G G E R S;
RELATIVE: R E L A T I V E;
REMOTE: R E M O T E;
REPEATABLE: R E P E A T A B L E;
RESTRICTED_USER: R E S T R I C T E D '_' U S E R;
ROBUST: R O B U S T;
ROOT: R O O T;
ROW: R O W;
ROWGUID: R O W G U I D;
ROWS: R O W S;
ROW_NUMBER: R O W '_' N U M B E R;
SAMPLE: S A M P L E;
SCHEMABINDING: S C H E M A B I N D I N G;
SCROLL: S C R O L L;
SCROLL_LOCKS: S C R O L L '_' L O C K S;
SECONDS: S E C O N D S;
SELF: S E L F;
SERIALIZABLE: S E R I A L I Z A B L E;
SHOWPLAN: S H O W P L A N;
SIMPLE: S I M P L E;
SINGLE_USER: S I N G L E '_' U S E R;
SIZE: S I Z E;
SNAPSHOT: S N A P S H O T;
SPATIAL_WINDOW_MAX_CELLS: S P A T I A L '_' W I N D O W '_' M A X '_' C E L L S;
STATIC: S T A T I C;
STATS_STREAM: S T A T S '_' S T R E A M;
STDEV: S T D E V;
STDEVP: S T D E V P;
SUM: S U M;
TAKE: T A K E;
TARGET_RECOVERY_TIME: T A R G E T '_' R E C O V E R Y '_' T I M E;
TB: T B;
TEXTIMAGE_ON: T E X T I M A G E '_' O N;
THROW: T H R O W;
TIES: T I E S;
TIME: T I M E;
TORN_PAGE_DETECTION: T O R N '_' P A G E '_' D E T E C T I O N;
TRANSFORM_NOISE_WORDS: T R A N S F O R M '_' N O I S E '_' W O R D S;
TRUSTWORTHY: T R U S T W O R T H Y;
TRY: T R Y;
TWO_DIGIT_YEAR_CUTOFF: T W O '_' D I G I T '_' Y E A R '_' C U T O F F;
TYPE: T Y P E;
TYPE_WARNING: T Y P E '_' W A R N I N G;
UNBOUNDED: U N B O U N D E D;
UNCOMMITTED: U N C O M M I T T E D;
UNKNOWN: U N K N O W N;
UNLIMITED: U N L I M I T E D;
USING: U S I N G;
VAR: V A R;
VARP: V A R P;
VIEWS: V I E W S;
VIEW_METADATA: V I E W '_' M E T A D A T A;
WORK: W O R K;
XML: X M L;
XMLNAMESPACES: X M L N A M E S P A C E S;
DOLLAR_ACTION: '$' A C T I O N;
SPACE: [ \t\r\n]+ -> skip;
COMMENT: '/*' .*? '*/' -> channel(HIDDEN);
LINE_COMMENT: '--' ~[\r\n]* -> channel(HIDDEN);
DOUBLE_QUOTE_ID: '"' ~'"'+ '"';
SQUARE_BRACKET_ID: '[' ~']'+ ']';
LOCAL_ID: '@' ([a-zA-Z_$@#0-9] | FullWidthLetter)+;
DECIMAL: DEC_DIGIT+;
ID: ( [a-zA-Z_#] | FullWidthLetter) ( [a-zA-Z_#$@0-9] | FullWidthLetter )*;
STRING: N? '\'' (~'\'' | '\'\'')* '\'';
BINARY: '0' X HEX_DIGIT*;
FLOAT: DEC_DOT_DEC;
REAL: DEC_DOT_DEC (E [+-]? DEC_DIGIT+)?;
EQUAL: '=';
GREATER: '>';
LESS: '<';
EXCLAMATION: '!';
PLUS_ASSIGN: '+=';
MINUS_ASSIGN: '-=';
MULT_ASSIGN: '*=';
DIV_ASSIGN: '/=';
MOD_ASSIGN: '%=';
AND_ASSIGN: '&=';
XOR_ASSIGN: '^=';
OR_ASSIGN: '|=';
DOT: '.';
UNDERLINE: '_';
AT: '@';
SHARP: '#';
DOLLAR: '$';
LR_BRACKET: '(';
RR_BRACKET: ')';
COMMA: ',';
SEMI: ';';
COLON: ':';
STAR: '*';
DIVIDE: '/';
MODULE: '%';
PLUS: '+';
MINUS: '-';
BIT_NOT: '~';
BIT_OR: '|';
BIT_AND: '&';
BIT_XOR: '^';
fragment LETTER: [a-zA-Z_];
fragment DEC_DOT_DEC: (DEC_DIGIT+ '.' DEC_DIGIT+ | DEC_DIGIT+ '.' | '.' DEC_DIGIT+);
fragment HEX_DIGIT: [0-9A-Fa-f];
fragment DEC_DIGIT: [0-9];
fragment A: [aA];
fragment B: [bB];
fragment C: [cC];
fragment D: [dD];
fragment E: [eE];
fragment F: [fF];
fragment G: [gG];
fragment H: [hH];
fragment I: [iI];
fragment J: [jJ];
fragment K: [kK];
fragment L: [lL];
fragment M: [mM];
fragment N: [nN];
fragment O: [oO];
fragment P: [pP];
fragment Q: [qQ];
fragment R: [rR];
fragment S: [sS];
fragment T: [tT];
fragment U: [uU];
fragment V: [vV];
fragment W: [wW];
fragment X: [xX];
fragment Y: [yY];
fragment Z: [zZ];
fragment FullWidthLetter
: '\u00c0'..'\u00d6'
| '\u00d8'..'\u00f6'
| '\u00f8'..'\u00ff'
| '\u0100'..'\u1fff'
| '\u2c00'..'\u2fff'
| '\u3040'..'\u318f'
| '\u3300'..'\u337f'
| '\u3400'..'\u3fff'
| '\u4e00'..'\u9fff'
| '\ua000'..'\ud7ff'
| '\uf900'..'\ufaff'
| '\uff00'..'\ufff0'
// | '\u10000'..'\u1F9FF' //not support four bytes chars
// | '\u20000'..'\u2FA1F'
; |
UefiCpuPkg/PiSmmCpuDxeSmm/X64/SmmInit.asm | James992927108/uEFI_Edk2_Practice | 1 | 164276 | <reponame>James992927108/uEFI_Edk2_Practice
;------------------------------------------------------------------------------ ;
; Copyright (c) 2009 - 2015, Intel Corporation. All rights reserved.<BR>
; This program and the accompanying materials
; are licensed and made available under the terms and conditions of the BSD License
; which accompanies this distribution. The full text of the license may be found at
; http://opensource.org/licenses/bsd-license.php.
;
; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
;
; Module Name:
;
; SmmInit.Asm
;
; Abstract:
;
; Functions for relocating SMBASE's for all processors
;
;-------------------------------------------------------------------------------
EXTERNDEF SmmInitHandler:PROC
EXTERNDEF gSmmCr0:DWORD
EXTERNDEF gSmmCr3:DWORD
EXTERNDEF gSmmCr4:DWORD
EXTERNDEF gSmmJmpAddr:QWORD
EXTERNDEF gcSmmInitTemplate:BYTE
EXTERNDEF gcSmmInitSize:WORD
EXTERNDEF mRebasedFlag:PTR BYTE
EXTERNDEF mSmmRelocationOriginalAddress:QWORD
EXTERNDEF mRebasedFlagAddr32:DWORD
EXTERNDEF mSmmRelocationOriginalAddressPtr32:DWORD
EXTERNDEF gSmmInitStack:QWORD
EXTERNDEF gcSmiInitGdtr:FWORD
.code
gcSmiInitGdtr LABEL FWORD
DW 0
DQ 0
SmmStartup PROC
DB 66h, 0b8h ; mov eax, imm32
gSmmCr3 DD ?
mov cr3, rax
DB 66h, 2eh
lgdt fword ptr [ebp + (offset gcSmiInitGdtr - SmmStartup)]
DB 66h, 0b8h ; mov eax, imm32
gSmmCr4 DD ?
or ah, 2 ; enable XMM registers access
mov cr4, rax
DB 66h
mov ecx, 0c0000080h ; IA32_EFER MSR
rdmsr
or ah, 1 ; set LME bit
wrmsr
DB 66h, 0b8h ; mov eax, imm32
gSmmCr0 DD ?
mov cr0, rax ; enable protected mode & paging
DB 66h, 0eah ; far jmp to long mode
gSmmJmpAddr DQ @LongMode
@LongMode: ; long-mode starts here
DB 48h, 0bch ; mov rsp, imm64
gSmmInitStack DQ ?
and sp, 0fff0h ; make sure RSP is 16-byte aligned
;
; Accoring to X64 calling convention, XMM0~5 are volatile, we need to save
; them before calling C-function.
;
sub rsp, 60h
movdqa [rsp], xmm0
movdqa [rsp + 10h], xmm1
movdqa [rsp + 20h], xmm2
movdqa [rsp + 30h], xmm3
movdqa [rsp + 40h], xmm4
movdqa [rsp + 50h], xmm5
add rsp, -20h
call SmmInitHandler
add rsp, 20h
;
; Restore XMM0~5 after calling C-function.
;
movdqa xmm0, [rsp]
movdqa xmm1, [rsp + 10h]
movdqa xmm2, [rsp + 20h]
movdqa xmm3, [rsp + 30h]
movdqa xmm4, [rsp + 40h]
movdqa xmm5, [rsp + 50h]
rsm
SmmStartup ENDP
gcSmmInitTemplate LABEL BYTE
_SmmInitTemplate PROC
DB 66h, 2eh, 8bh, 2eh ; mov ebp, cs:[@F]
DW @L1 - _SmmInitTemplate + 8000h
DB 66h, 81h, 0edh, 00h, 00h, 03h, 00 ; sub ebp, 30000h
jmp bp ; jmp ebp actually
@L1:
DQ SmmStartup
_SmmInitTemplate ENDP
gcSmmInitSize DW $ - gcSmmInitTemplate
SmmRelocationSemaphoreComplete PROC
push rax
mov rax, mRebasedFlag
mov byte ptr [rax], 1
pop rax
jmp [mSmmRelocationOriginalAddress]
SmmRelocationSemaphoreComplete ENDP
;
; Semaphore code running in 32-bit mode
;
SmmRelocationSemaphoreComplete32 PROC
;
; mov byte ptr [], 1
;
db 0c6h, 05h
mRebasedFlagAddr32 dd 0
db 1
;
; jmp dword ptr []
;
db 0ffh, 25h
mSmmRelocationOriginalAddressPtr32 dd 0
SmmRelocationSemaphoreComplete32 ENDP
END
|
programs/oeis/037/A037484.asm | neoneye/loda | 22 | 165934 | <filename>programs/oeis/037/A037484.asm
; A037484: Base 7 digits are, in order, the first n terms of the periodic sequence with initial period 1,2.
; 1,9,64,450,3151,22059,154414,1080900,7566301,52964109,370748764,2595241350,18166689451,127166826159,890167783114,6231174481800,43618221372601,305327549608209,2137292847257464
add $0,1
mov $1,7
pow $1,$0
mul $1,6
div $1,32
mov $0,$1
|
build.ads | annexi-strayline/AURA | 13 | 936 | ------------------------------------------------------------------------------
-- --
-- Ada User Repository Annex (AURA) --
-- ANNEXI-STRAYLINE Reference Implementation --
-- --
-- Command Line Interface --
-- --
-- ------------------------------------------------------------------------ --
-- --
-- Copyright (C) 2020, ANNEXI-STRAYLINE Trans-Human Ltd. --
-- All rights reserved. --
-- --
-- Original Contributors: --
-- * <NAME> (ANNEXI-STRAYLINE) --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions are --
-- met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in --
-- the documentation and/or other materials provided with the --
-- distribution. --
-- --
-- * Neither the name of the copyright holder nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A --
-- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- This subsystem handles all operations associated with compilation and
-- linking
with Ada.Directories;
with Ada.Strings.Unbounded;
with Progress;
with Registrar.Library_Units;
with Child_Processes.Wait_And_Buffer;
package Build is
package UBS renames Ada.Strings.Unbounded;
-------------------------
-- Build_Configuration --
-------------------------
-- Various global configuration data for the build process, set from the
-- command line. This configuration affects the compilation artifacts,
-- and so is stored between successive runs. If any of the build
-- configuration changes,
type Build_Mode is
(Systemize,
-- The build process will be creating a System repository out of the
-- project
Library,
-- The build process will be creating a stand-alone shared library, or
-- an archive of all compilation objects
Image);
-- The build process will be creating a standard executable image
type Link_Mode is
(Shared,
-- Link to as many shared libraries as possible. This requires "pic"
-- during compilation.
Static_RT,
-- Ada runtime is linked statically, as well as libgcc in the case of
-- GNAT
Static);
-- Build a fully statically-linked image. Applicable only to Image mode
-- builds.
type Compile_Optimization_Mode is
(None,
-- No optimization (typically means -O0, unless set by the compiler
-- options of any configuration units
Level_1,
Level_2,
Level_3,
-- The classic -O1 -O2 -O3 optimization levels
Size,
-- Optimize for size (-Os)
Debug);
-- Optimize for debugging (-Og)
type Build_Configuration is
record
Mode: Build_Mode := Image;
Position_Independent: Boolean := True;
-- Use -fPIC for compilation and -fPIE for linking
-- if False, use -fno-PIC and -fno-PIE
--
-- This value must be true for Shared and Static_RT Link_Modes,
-- or if Mode is Systemize
Debug_Enabled: Boolean := False;
-- If True, '-g' is passed to the compiler and linker.
All_Assertions: Boolean := False;
-- If True, forces all assertions on for all Ada units
Optimization: Compile_Optimization_Mode := None;
Linking: Link_Mode := Shared;
end record;
procedure Load_Last_Build_Config (Configuration: out Build_Configuration);
-- Loads the last run's build configuration, if available. If not available,
-- Configuration is not modified
procedure Store_Build_Config (Current_Config: in Build_Configuration);
-- Stores Current_Config such that Load_Last_Build_Config will retrive the
-- stored data
-----------------
-- Preparation --
-----------------
procedure Init_Paths;
-- Shall be called before executing any of the build steps
-- (Compile, Bind, Link).
--
-- Ensures that the Build_Root and Build_Output_Root paths exist.
--
-- If Last_Run is empty, the Build_Root is first destroyed.
procedure Hash_Compilation_Products;
Compilation_Hash_Progress: aliased Progress.Progress_Tracker;
-- Searches for and hashes any existing compilation products for units with
-- a state of "Available. All such units that have compilation units will be
-- set to a state of "Compiled", indicating the Compilation_Hash value is
-- valid.
procedure Compute_Recompilations (Configuration: Build_Configuration);
Compute_Recompilations_Progress : aliased Progress.Progress_Tracker;
Compute_Recompilations_Completion: Progress.Sequence_Beacon;
-- Compare existing Source and Compilation Hashes (if State = Compiled) with
-- Last_Run to determine which units need to be recompiled. After
-- Compute_Recompilations completes, any units that need recompilation will
-- be changed to a state of "Available".
--
-- If any specification is modified, or if an object file is invalidated,
-- a "pessemistic" recompilation is computed - this triggers recursive
-- recompilation of all units depending on the unit to be pressemistically
-- recompiled (including dependents of the dependents).
--
-- If only an implementation of a target unit has changed between
-- compilations, an attempt is made to approve an "isolated" recompilation.
-- In the case of GNAT, this means scanning the specification of the target
-- unit for any generic declarations or inlined subprograms. If any generic
-- declarations or inlined subprograms are found, a "pessemistic"
-- recompilation is computed, otherwise the "isolated" recompilation will
-- select only the target unit for recompilation.
--
-- If
-- * Last_Run.All_Library_Units is an empty set; or,
-- * Configuration is different from Load_Last_Build_Config
-- all units with a state of "Compiled" will be set to Available (except for
-- units that are members of subsystems that are checked out from "system"
-- repositories) - causing them to be recompiled.
--
-- The Compute_Recompilation process has two phases. Phase one is tracked by
-- the Compute_Recompilations_Progress tracker. Phase two is executed
-- by a Phase Trigger. On call to Compute_Recompilations, the
-- Compute_Recompilations_Completion beacon is entered, and is the left
-- and the completion of the phase trigger.
--
-- The user should for the beacon to be left before continuing
--
-- If approach of the beacon fails, Compute_Recompilation returns
-- immediately.
-- Build_Root --
----------------
-- The root subdirectory under which all compilation products and information
-- is stored
Build_Root: constant String
:= Ada.Directories.Current_Directory & "/aura-build";
-- This directory is always destroyed in the Compile phase if Last_Run
-- is empty
private
Build_Output_Root: constant String := Build_Root & "/build-output";
-- Output from all processes involved in the build process.
procedure Wait_And_Buffer is new Child_Processes.Wait_And_Buffer
(Buffer_Type => UBS.Unbounded_String,
Append => UBS.Append,
Empty_Buffer => UBS.Null_Unbounded_String);
procedure Direct_Hash_Compilation_Products
(Unit: in Registrar.Library_Units.Library_Unit);
-- Directly hashes
use type Registrar.Library_Units.Library_Unit_Kind;
function Object_File_Name (Unit: Registrar.Library_Units.Library_Unit)
return String with
Pre => Unit.Kind /= Registrar.Library_Units.Subunit;
-- Computes the Full Name of the object file that is expected to be inside
-- of Build_Root, for the designated unit.
--
-- If the designated unit is a member of an AURA Subsystem that belongs
-- to a "System" Repository, then the expected name of the shared library
-- object is given
function ALI_File_Name (Unit: Registrar.Library_Units.Library_Unit)
return String with
Pre => Unit.Kind not in Registrar.Library_Units.Subunit;
-- Computes the Full Name of an ALI file (GNAT-specific) that is expected
-- to be inside of Build_Root, for the designated unit
end Build;
|
LiteX/software/Doom/mc1-doom/iddoc/README.asm | jeras/learn-fpga | 30 | 81266 | <reponame>jeras/learn-fpga
README - DOOM assembly code
Okay, I add the DOS assembly module for the historically
inclined here (may rec.games.programmer suffer). If anyone
feels the urge to port these to GNU GCC; either inline or
as separate modules including Makefile support, be my guest.
Module tmap.S includes the inner loops for texture mapping,
the interesting one being the floor/ceiling span rendering.
There was another module in the source dump, fpfunc.S, that
had both texture mapping and fixed point functions. It
contained implementations both for i386 and M68k. For
brevity, I include only the i386 fixed point stuff below.
//====================================================
// tmap.S as of January 10th, 1997
//================
//
// R_DrawColumn
//
//================
.data
loopcount .long 0
pixelcount .long 0
.text
.align 16
.globl _R_DrawColumn
_R_DrawColumn:
pushad
movl ebp,[_dc_yl]
movl ebx,ebp
movl edi,[_ylookup+ebx*4]
movl ebx,[_dc_x]
addl edi,[_columnofs + ebx*4]
movl eax,[_dc_yh]
incl eax
subl eax,ebp // pixel count
movl [pixelcount],eax // save for final pixel
js done // nothing to scale
shrl eax,1 // double pixel count
movl [loopcount],eax
movl ecx,[_dc_iscale]
movl eax,[_centery]
subl eax,ebp
imull ecx
movl ebp,[_dc_texturemid]
subl ebp,eax
shll ebp,9 // 7 significant bits, 25 frac
movl esi,[_dc_source]
movl ebx,[_dc_iscale]
shll ebx,9
movl eax,OFFSET patch1+2 // convice tasm to modify code...
movl [eax],ebx
movl eax,OFFSET patch2+2 // convice tasm to modify code...
movl [eax],ebx
// eax aligned colormap
// ebx aligned colormap
// ecx,edx scratch
// esi virtual source
// edi moving destination pointer
// ebp frac
movl ecx,ebp // begin calculating first pixel
addl ebp,ebx // advance frac pointer
shrl ecx,25 // finish calculation for first pixel
movl edx,ebp // begin calculating second pixel
addl ebp,ebx // advance frac pointer
shrl edx,25 // finish calculation for second pixel
movl eax,[_dc_colormap]
movl ebx,eax
movb al,[esi+ecx] // get first pixel
movb bl,[esi+edx] // get second pixel
movb al,[eax] // color translate first pixel
movb bl,[ebx] // color translate second pixel
testl [pixelcount],0fffffffeh
jnz doubleloop // at least two pixels to map
jmp checklast
.align 16
doubleloop:
movl ecx,ebp // begin calculating third pixel
patch1:
addl ebp,12345678h // advance frac pointer
movb [edi],al // write first pixel
shrl ecx,25 // finish calculation for third pixel
movl edx,ebp // begin calculating fourth pixel
patch2:
addl ebp,12345678h // advance frac pointer
movl [edi+SCREENWIDTH],bl // write second pixel
shrl edx,25 // finish calculation for fourth pixel
movb al,[esi+ecx] // get third pixel
addl edi,SCREENWIDTH*2 // advance to third pixel destination
movb bl,[esi+edx] // get fourth pixel
decl [loopcount] // done with loop?
movb al,[eax] // color translate third pixel
movb bl,[ebx] // color translate fourth pixel
jnz doubleloop
// check for final pixel
checklast:
testl [pixelcount],1
jz done
movb [edi],al // write final pixel
done:
popad
ret
//================
//
// R_DrawSpan
//
// Horizontal texture mapping
//
//================
.align 16
.globl _R_DrawSpan
_R_DrawSpan:
pushad
//
// find loop count
//
movl eax,[_ds_x2]
incl eax
subl eax,[_ds_x1] // pixel count
movl [pixelcount],eax // save for final pixel
js hdone // nothing to scale
shrl eax,1 // double pixel count
movl [loopcount],eax
//
// build composite position
//
movl ebp,[_ds_xfrac]
shll ebp,10
andl ebp,0ffff0000h
movl eax,[_ds_yfrac]
shrl eax,6
andl eax,0ffffh
orl ebp,eax
movl esi,[_ds_source]
//
// calculate screen dest
//
movl edi,[_ds_y]
movl edi,[_ylookup+edi*4]
movl eax,[_ds_x1]
addl edi,[_columnofs+eax*4]
//
// build composite step
//
movl ebx,[_ds_xstep]
shll ebx,10
andl ebx,0ffff0000h
movl eax,[_ds_ystep]
shrl eax,6
andl eax,0ffffh
orl ebx,eax
movl eax,OFFSET hpatch1+2 // convice tasm to modify code...
movl [eax],ebx
movl eax,OFFSET hpatch2+2 // convice tasm to modify code...
movl [eax],ebx
// eax aligned colormap
// ebx aligned colormap
// ecx,edx scratch
// esi virtual source
// edi moving destination pointer
// ebp frac
shldl ecx,ebp,22 // begin calculating third pixel (y units)
shldl ecx,ebp,6 // begin calculating third pixel (x units)
addl ebp,ebx // advance frac pointer
andl ecx,4095 // finish calculation for third pixel
shldl edx,ebp,22 // begin calculating fourth pixel (y units)
shldl edx,ebp,6 // begin calculating fourth pixel (x units)
addl ebp,ebx // advance frac pointer
andl edx,4095 // finish calculation for fourth pixel
movl eax,[_ds_colormap]
movl ebx,eax
movb al,[esi+ecx] // get first pixel
movb bl,[esi+edx] // get second pixel
movb al,[eax] // color translate first pixel
movb bl,[ebx] // color translate second pixel
testl [pixelcount],0fffffffeh
jnz hdoubleloop // at least two pixels to map
jmp hchecklast
.align 16
hdoubleloop:
shldl ecx,ebp,22 // begin calculating third pixel (y units)
shldl ecx,ebp,6 // begin calculating third pixel (x units)
hpatch1:
addl ebp,12345678h // advance frac pointer
movb [edi],al // write first pixel
andl ecx,4095 // finish calculation for third pixel
shldl edx,ebp,22 // begin calculating fourth pixel (y units)
shldl edx,ebp,6 // begin calculating fourth pixel (x units)
hpatch2:
addl ebp,12345678h // advance frac pointer
movb [edi+1],bl // write second pixel
andl edx,4095 // finish calculation for fourth pixel
movb al,[esi+ecx] // get third pixel
addl edi,2 // advance to third pixel destination
movb bl,[esi+edx] // get fourth pixel
decl [loopcount] // done with loop?
movb al,[eax] // color translate third pixel
movb bl,[ebx] // color translate fourth pixel
jnz hdoubleloop
// check for final pixel
hchecklast:
testl [pixelcount],1
jz hdone
movb [edi],al // write final pixel
hdone:
popad
ret
//====================================================
// fpfunc.S as of January 10th, 1997 (parts)
#ifdef i386
.text
.align 4
.globl _FixedMul
_FixedMul:
pushl %ebp
movl %esp,%ebp
movl 8(%ebp),%eax
imull 12(%ebp)
shrdl $16,%edx,%eax
popl %ebp
ret
.align 4
.globl _FixedDiv2
_FixedDiv2:
pushl %ebp
movl %esp,%ebp
movl 8(%ebp),%eax
cdq
shldl $16,%eax,%edx
sall $16,%eax
idivl 12(%ebp)
popl %ebp
ret
#endif
|
scripts/lib/+maths.applescript | ChristoferK/AppleScriptive | 32 | 1819 | <gh_stars>10-100
#!/usr/bin/osascript
--------------------------------------------------------------------------------
# pnam: +MATHS
# nmxt: .applescript
# pDSC: Mathematical functions. Loading this library also loads _lists lib.
--------------------------------------------------------------------------------
# sown: CK
# ascd: 2018-11-04
# asmo: 2019-05-07
--------------------------------------------------------------------------------
property name : "maths"
property id : "chri.sk.applescript.lib:maths"
property version : 1.0
property libload : script "load.scpt"
property parent : libload's load("arrays")
--------------------------------------------------------------------------------
# HANDLERS & SCRIPT OBJECTS:
# Node::
# Binary tree representation
script Node
to make with data d
script
property data : d
property |left| : null
property |right| : null
end script
end make
end script
# Complex::
# Complex number representation and arithmetic
script Complex
to make at {x as real, y as real}
script
property class : "complex"
property real : x
property imaginary : y
property arg : atan(y / x)
property R : sqrt(x ^ 2 + y ^ 2)
to add(z)
local z
set my real to (my real) + (z's real)
set my imaginary to (my imaginary) + ¬
(z's imaginary)
update()
end add
to rotate(theta)
set arg to arg + theta
update_polar()
end rotate
to update()
set arg to atan((my imaginary) / (my real))
set R to sqrt((my real) ^ 2 + ¬
(my imaginary) ^ 2)
end update
to update_polar()
set my real to cos(arg)
set my imaginary to sin(arg)
end update_polar
end script
end make
to add(z1, z2)
local z1, z2
set x to (z1's real) + (z2's real)
set y to (z1's imaginary) + (z2's imaginary)
make Complex at {x, y}
end add
end script
# Fraction::
# A script object to represent fractions
script Fraction
to make given numerator:a, denominator:b : 1
if b = 0 then return false
script
property class : "fraction"
property numerator : a
property denominator : b
property HCF : its GCD:{numerator, denominator}
property value : numerator / denominator
property integer : numerator div denominator
property fractional : value - (my integer)
property list : [a reference to numerator, ¬
a reference to denominator]
to simplify()
set numerator to numerator / HCF
set denominator to denominator / HCF
set HCF to 1
my list
end simplify
on reciprocal()
set [numerator, denominator] to ¬
[denominator, numerator]
update()
my list
end reciprocal
on continuedFraction()
continuedFraction for numerator ¬
over denominator
end continuedFraction
to add(x)
local x
set [a, b] to contents of x's list
set my numerator to ¬
(my numerator) * b + ¬
(my denominator) * a
set my denominator to (my denominator) * b
update()
simplify()
me
end add
to update()
set HCF to its GCD:{numerator, denominator}
set value to numerator / denominator
set my integer to numerator div denominator
set fractional to value - (my integer)
me
end update
end script
end make
to multiply(x, y)
local x, y
set a to (x's numerator) * (y's numerator)
set b to (x's denominator) * (y's denominator)
make Fraction given numerator:a, denominator:b
end multiply
to add(x, y)
local x, y
set b to its LCM:{x's denominator, y's denominator}
set a to (b * (x's numerator) / (x's denominator)) + ¬
(b * (y's numerator) / (y's denominator))
set R to make Fraction given numerator:a, denominator:b
tell R to simplify()
R
end add
end script
# ||()
# A basic ternary function that evaluates a predicate, +a, to determine which
# of two results, +b or +c, it ought to return
on ||(a, b, c)
local a, b, c
if a then return b
c
end ||
# GCD:
# Returns the greatest common divisor of a list of integers
on GCD:L
local L
script
property array : L
on GCD(x, y)
local x, y
repeat
if x = 0 then return y
set [x, y] to [y mod x, x]
end repeat
end GCD
end script
tell the result to foldItems from its array ¬
at item 1 of its array ¬
given handler:its GCD
end GCD:
# LCM:
# Returns the lowest common multiple of a list of integers
on LCM:L
local L
script
property array : L
on LCM(x, y)
local x, y
set xy to x * y
repeat
if x = 0 then return xy / y as integer
set [x, y] to [y mod x, x]
end repeat
end LCM
end script
tell the result to foldItems from its array ¬
at item 1 of its array ¬
given handler:its LCM
end LCM:
# floor()
# Returns the greatest integer less than or equal to the supplied value
to floor(x)
local x
x - 0.5 + 1.0E-15 as integer
end floor
# ceil()
# Returns the lowest integer greater than or equal to the supplied value
on ceil(x)
local x
floor(x) + 1
end ceil
# sqrt()
# Returns the positive square root of a number
to sqrt(x)
local x
x ^ 0.5
end sqrt
# abs()
# Returns the absolute value of a number
on abs(x)
local x
if x < 0 then return -x
x
end abs
# sign()
# Returns the sign of a number
on sign(x)
local x
if x < 0 then return -1
if x > 0 then return 1
0
end sign
# Roman()
# Returns a number formatted as Roman numerals
to Roman(N as integer)
local N
script numerals
property list : "Ⅰ Ⅳ Ⅴ Ⅸ Ⅹ ⅩⅬ Ⅼ ⅩⅭ Ⅽ ⅭⅮ Ⅾ ⅭⅯ Ⅿ"
property value : "1 4 5 9 10 40 50 90 100 400 500 900 1000"
property string : {}
end script
repeat with i from length of words of list of numerals to 1 by -1
set glyph to item i in the words of list of numerals
set x to item i in the words of numerals's value
make (N div x) at glyph
set string of numerals to string of numerals & result
set N to N mod x
end repeat
return the string of numerals as linked list as text
end Roman
# hex
# Converts a decimal number to hexadecimal
to hex from decimal as integer
local decimal
set hexchars to "0123456789ABCDEF"
set [int, i] to [decimal div 16, decimal mod 16 + 1]
set hexchar to character i of hexchars
if int = 0 then return hexchar
(hex from int) & hexchar
end hex
# decimal
# Converts a number from hexadecimal to decimal
to decimal from hex as text
local hex
script
property hexchars : "0123456789ABCDEF"
on fn(power, chars)
if chars = {} then return 0
set [char] to chars
set i to offset of char in hexchars
set x to (i - 1) * power
return x + fn(power * 16, rest of chars)
end fn
end script
result's fn(1, reverse of hex's characters)
end decimal
# digitalRoot()
# Calculates the digital root of a number. The digital root is the repeated
# sum of a number's digits.
on digitalRoot(N)
local N
tell generator(my digitalSum, N) to repeat
tell next() to if it < 10 then return it
end repeat
end digitalRoot
# digitalSum()
# Sums the digits of a number
on digitalSum(x)
local x
set digits to characters of (x as text)
sum_(digits)
end digitalSum
# continuedFraction
# Returns a number represented as a continued fraction
on continuedFraction for a over b : 1
local a, b
script CF
on fn(a, b)
local a, b
if b = 0 then return {}
set c to a div b
set d to a - (b * c)
{c} & fn(b, d)
end fn
end script
tell CF's fn(a, b) to return [item 1, rest] of it
end continuedFraction
# convergentFraction
# Returns a script object representing the fraction denoted by the supplied
# continued fraction
on convergentFraction for CF
script quotient
on fn(x, |ξ|)
set [a, b, c, d] to |ξ|
set numerator to a * x + c
set denominator to b * x + d
[numerator, denominator, a, b]
end fn
end script
set [x, y] to foldItems from rest of CF ¬
at {item 1 of CF, 1, 1, 0} ¬
given handler:quotient
make Fraction given numerator:x, denominator:y
end convergentFraction
# primes()
# Efficient and fast prime number generation for primes ≤ +N
to primes(N)
local N
if N < 2 then return {}
script
on nextPrime(x, i, L)
local x, i, L
script primes
property list : L
end script
repeat
set x to x + 2
repeat with p in the list of primes
if x mod p = 0 then exit repeat
if x < p ^ 2 then return x
end repeat
end repeat
end nextPrime
end script
{2} & (iterate from 3 to N given handler:result's nextPrime)
end primes
# factorise()
# Factorises an integer into a list of prime factors
to factorise(N as integer)
local N
script decompose
on fn(p, |ξ|)
set y to a reference to item 1 of |ξ|
repeat
if y mod p ≠ 0 then return |ξ|
set y's contents to y / p
set end of |ξ| to p
end repeat
end fn
end script
tell the rest of (foldItems from primes(N / 2) at {N} ¬
given handler:decompose)
if {} = it then return N
it
end tell
end factorise
# factorial()
# Calculates the factorial of a number
on factorial(N)
if N = 0 then return 1
script
on fn(x, i)
x * i
end fn
end script
tell generator(result's fn, 1) to repeat N times
next()
end repeat
end factorial
# e()
# Returns the value of e
on e()
script Engel
on fn(x, i)
x + 1 / (factorial(i))
end fn
end script
tell generator(Engel, 2) to repeat 15 times
next()
end repeat
end e
# partialSum
# Sums the first N terms of a series defined by the handler +NthTerm
on partialSum given handler:NthTerm
local NthTerm
set [N, u, sum] to [0, 1, 0]
repeat until abs(u) < 1.0E-15
set N to N + 1
set u to __(NthTerm)'s fn(N)
set sum to sum + u
end repeat
if abs(sum) < 4.9E-15 then set sum to 0.0
sum
end partialSum
# sin()
# Calculates the sine of a number
on sin(x)
local x
set x to x mod (2 * pi)
script sine
on fn(N)
(-1) ^ (N + 1) ¬
* (x ^ (2 * N - 1)) ¬
/ (factorial(2 * N - 1))
end fn
end script
partialSum given handler:sine
end sin
# cos()
# Calculates the cosine of a number
on cos(x)
local x
set x to x mod (2 * pi)
script cosine
on fn(N)
(-1) ^ (N + 1) ¬
* (x ^ (2 * N - 2)) ¬
/ (factorial(2 * N - 2))
end fn
end script
partialSum given handler:cosine
end cos
# ln()
# Calculates the natural logarithm of a number for small +x
on ln(x)
local x
script logE
on fn(N)
(-1) ^ (N + 1) * ((x - 1) ^ N) / N
end fn
end script
partialSum given handler:logE
end ln
---------------------------------------------------------------------------❮END❯ |
src/demo/snake_map.asm | Lasoloz/aengine | 2 | 23397 | <reponame>Lasoloz/aengine
;
; Copyright (c) 2016-2017 <NAME>
;
; Source file for game functions (snake)
;
%include 'include/graphics/sprite.inc' ; Snake head, food
%include 'include/graphics/render.inc' ; Rendering functions
%include 'third-party/util.inc' ; Memory allocation and random
%include 'include/graphics/fonts.inc' ; Rendering utilities
%include 'third-party/io.inc' ; For debugging..
%define m_void 0
%define m_sleft 1
%define m_sright 2
%define m_sup 3
%define m_sdown 4
%define m_shead 5
%define m_food 6
%define m_wall 7
%define map_width 30
%define map_height 22
%define map_tilenum 660
global sm_initMap
global sm_moveSnake
global sm_renderMap
global sm_queryFoodNum
section .text
sm_initMap:
; Initializes game map
push eax
push ebx
push ecx
push edx
mov edx, map
mov ecx, map_tilenum
.initloop:
mov byte [edx], m_void
inc edx
loop .initloop
; Put snake in:
mov edx, map
add edx, map_width
add edx, 2
mov ecx, 4
.snake_loop:
mov byte [edx], m_sright
inc edx
loop .snake_loop
mov byte [edx], m_shead
mov dword [shead_x], 6
mov dword [shead_y], 1
mov dword [stail_x], 2
mov dword [stail_y], 1
; Check if difficulty permits walls
cmp eax, 1
jl .no_wall
; Put some wall
mov edx, map
add edx, map_width
add edx, map_width
add edx, 2
mov ecx, map_width
sub ecx, 4
.wall_loop:
mov byte [edx], m_wall
inc edx
loop .wall_loop
add edx, 4 ; Next line, so it's easier to calculate offset for
; second line of wall
; Put second piece of wall in
mov ebx, map_height
sub ebx, 6
.countrows:
add edx, map_width
dec ebx
cmp ebx, 0
jg .countrows
mov ecx, map_width
sub ecx, 4
.wall_loop2:
mov byte [edx], m_wall
inc edx
loop .wall_loop2
.no_wall:
; Create food
call create_food
; Set points
mov dword [points], 0
pop edx
pop ecx
pop ebx
pop eax
ret
;;; LOCAL FUNCTION
make_effective_address:
; Make effective address from map, ecx - x, and edx - y values in edi
mov edi, edx
imul edi, map_width
add edi, map
add edi, ecx
ret
;;; LOCAL FUNCTION
create_food:
; Create food
push eax
push ecx
push edx
push edi
call rand
mov edi, map_width
xor edx, edx
div edi
mov ecx, edx ; Modulo
call rand
mov edi, map_height
xor edx, edx
div edi
; It's in edx
call make_effective_address
cmp byte [edi], m_void
jz .okay
; Position is used up, so we choose the first available position for our
; food
mov ecx, map_tilenum
mov edi, map
.searchloop:
cmp byte [edi], m_void
jz .okay
inc edi
loop .searchloop
; If couldn't find free position, then we must end game (end of level)
stc
jmp .exit
.okay:
mov byte [edi], m_food
clc
.exit:
pop edi
pop edx
pop ecx
pop eax
ret
sm_moveSnake:
; Update game state
push eax
push ebx
push ecx
push edx
push edi
mov ecx, [shead_x]
mov edx, [shead_y]
; Calculate the address for the current position of head in matrix
call make_effective_address
cmp eax, 0
je .left
cmp eax, 1
je .right
cmp eax, 2
je .up
; Else must be down
mov byte [edi], m_sdown
inc edx
cmp edx, map_height
jge .collision
mov [shead_y], edx
jmp .postest
.left:
mov byte [edi], m_sleft
dec ecx
cmp ecx, 0
jl .collision
mov [shead_x], ecx
jmp .postest
.right:
mov byte [edi], m_sright
inc ecx
cmp ecx, map_width
jge .collision
mov [shead_x], ecx
jmp .postest
.up:
mov byte [edi], m_sup
dec edx
cmp edx, 0
jl .collision
mov [shead_y], edx
.postest:
; Test value under position
call make_effective_address
xor ebx, ebx
mov bl, [edi]
test ebx, ebx
jnz .foodtest
mov byte [edi], m_shead
jmp .test_tail
.foodtest:
cmp ebx, m_food
jne .collision
mov byte [edi], m_shead
call create_food
jc .collision
; Not really collision, but end of game, 'cause we can't create food
mov ebx, [points]
inc ebx
mov [points], ebx
; We took a food, so we can't move the tail...
jmp .endfunc
.test_tail:
; Move tail
mov ecx, [stail_x]
mov edx, [stail_y]
; Calculate the address of current tail position
call make_effective_address
; Get value in ebx
xor ebx, ebx
mov bl, [edi]
mov byte [edi], m_void
cmp ebx, m_sleft
je .tleft
cmp ebx, m_sright
je .tright
cmp ebx, m_sup
je .tup
; Else it's down
inc edx
mov [stail_y], edx
clc
jmp .endfunc
.tleft:
dec ecx
mov [stail_x], ecx
clc
jmp .endfunc
.tright:
inc ecx
mov [stail_x], ecx
clc
jmp .endfunc
.tup:
dec edx
mov [stail_y], edx
clc
jmp .endfunc
.collision:
; collision is detected
mov eax, [points]
call io_writeint
call io_writeln
stc
.endfunc:
; Restore registers
pop edi
pop edx
pop ecx
pop ebx
pop eax
ret
sm_renderMap:
; Render current state of the map
push eax
push ebx
push ecx
push edx
push esi
mov esi, map
mov ebx, 0x00200020
mov ecx, 0x00200020
xor edx, edx
.yloop:
and ebx, 0x0000ffff
add ebx, 0x00200000
cmp edx, map_height
jae .yend
push edx
xor edx, edx
.xloop:
cmp edx, map_width
jae .endx
mov al, [esi]
cmp al, m_food
je .draw_food
cmp al, m_shead
je .draw_head
cmp al, m_void
je .draw_void
cmp al, m_wall
je .draw_wall
; Else it's a snake element
mov eax, 0x1005ff
call render_renderRect
jmp .end_draw
.draw_food:
mov eax, 0x00ffff00
call render_renderRect
jmp .end_draw
.draw_head:
mov eax, 0x004020ff
call render_renderRect
jmp .end_draw
.draw_void:
mov eax, 0x00000000
call render_renderRect
jmp .end_draw
.draw_wall:
mov eax, 0x00ff2020
call render_renderRect
.end_draw:
; End of draw choosing
; Advance..
inc esi
inc edx
add ebx, 0x00200000
jmp .xloop
.endx:
pop edx
inc edx
add ebx, 0x00000020
jmp .yloop
.yend:
; Render points to the upper-right corner
; Render base rectangle
mov eax, 0x00960409
mov ebx, 0x02750003
mov ecx, 0x00a4001a
call render_renderRect
; Render string
mov eax, str_point
mov ebx, 0x02760004
call font_renderText
; Render points
; Set spacing
mov eax, 1
call font_setSpacing
; Render points
mov eax, [points]
mov ebx, 0x02e60004
mov ecx, 3
call font_renderNumber
; Reset spacing
xor eax, eax
call font_setSpacing
; End of draw
pop esi
pop edx
pop ecx
pop ebx
pop eax
ret
sm_queryFoodNum:
; Query the number of foods eaten
mov eax, [points]
ret
section .bss
shead_x resd 1
shead_y resd 1
stail_x resd 1
stail_y resd 1
points resd 1
map resb map_tilenum ; map_width * map_height
section .data
str_point db 'Points ', 0
|
source/rom13/r13_dialog.asm | evanbowman/Red | 5 | 86381 | ;;; $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
;;;
;;; ASM Source code for Red GBC, by <NAME>, 2021
;;;
;;;
;;; The following licence covers the source code included in this file. The
;;; game's characters and artwork belong to <NAME>, and should not be used
;;; without permission.
;;;
;;;
;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions are met:
;;;
;;; 1. Redistributions of source code must retain the above copyright notice,
;;; this list of conditions and the following disclaimer.
;;;
;;; 2. Redistributions in binary form must reproduce the above copyright notice,
;;; this list of conditions and the following disclaimer in the documentation
;;; and/or other materials provided with the distribution.
;;;
;;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
;;; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
;;; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
;;; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
;;; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
;;; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
;;; SUBSTITUTE GOODS OR SERVICES LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
;;; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
;;; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
;;; POSSIBILITY OF SUCH DAMAGE.
;;;
;;; $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
SECTION "ROM13_DIALOG", ROMX, BANK[13]
;;; ----------------------------------------------------------------------------
r13_InventoryPalettes::
DB $BF,$73, $1A,$20, $1A,$20, $62,$1c,
DB $BF,$73, $53,$5E, $2A,$39, $86,$18,
DB $BF,$73, $EC,$31, $54,$62, $06,$2D,
DB $37,$73, $49,$35, $62,$1c, $00,$04,
r13_InventoryPalettesEnd::
r13_InventoryTiles::
DB $FF,$FF,$FF,$FF,$FF,$FF,$F0,$E0
DB $E0,$E0,$E7,$E7,$E0,$E7,$E0,$E7
DB $FF,$FF,$FF,$FF,$FF,$FF,$0F,$07
DB $07,$07,$E7,$E7,$07,$E7,$07,$E7
DB $07,$E7,$07,$E7,$07,$E7,$07,$07
DB $0F,$07,$FF,$FF,$FF,$FF,$FF,$FF
DB $E0,$E7,$E0,$E7,$E0,$E7,$E0,$E0
DB $F0,$E0,$FF,$FF,$FF,$FF,$FF,$FF
DB $FF,$FF,$FF,$FF,$FF,$FF,$00,$00
DB $00,$00,$FF,$FF,$00,$FF,$00,$FF
DB $E0,$E7,$E0,$E7,$E0,$E7,$E0,$E7
DB $E0,$E7,$E0,$E7,$E0,$E7,$E0,$E7
DB $00,$00,$00,$00,$00,$00,$00,$00
DB $00,$00,$00,$00,$00,$00,$00,$00
DB $07,$E7,$07,$E7,$07,$E7,$07,$E7
DB $07,$E7,$07,$E7,$07,$E7,$07,$E7
DB $00,$FF,$00,$FF,$00,$FF,$00,$00
DB $00,$00,$FF,$FF,$FF,$FF,$FF,$FF
DB $00,$FF,$00,$FF,$00,$FF,$00,$FF
DB $00,$FF,$00,$FF,$00,$FF,$00,$FF
DB $FF,$FF,$E0,$FF,$E0,$FF,$E0,$FF
DB $F1,$FF,$FB,$FF,$FF,$FF,$FF,$FF
DB $FF,$FF,$FF,$FF,$E0,$FF,$E0,$FF
DB $E0,$FF,$F1,$FF,$FB,$FF,$FF,$FF
DB $FF,$FF,$FF,$FF,$FF,$00,$FF,$FF
DB $FF,$FF,$FF,$FF,$FF,$FF,$FF,$FF
DB $FF,$FF,$FF,$FF,$FF,$FF,$83,$83
DB $FF,$FF,$FF,$FF,$FF,$FF,$FF,$FF
r13_InventoryTilesEnd::
;;; ----------------------------------------------------------------------------
r13_DialogBoxTemplate:
.topRow:
DB $30, $34, $34, $34, $34, $34, $34, $34, $34, $34, $34, $34, $34, $34, $34,
DB $34, $34, $34, $34, $31, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
DB $00, $00,
.middleRows:
DB $35, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39
DB $39, $39, $39, $39, $37, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39,
DB $39, $39,
DB $35, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39
DB $39, $39, $39, $39, $37, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39,
DB $39, $39,
DB $35, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39
DB $39, $39, $39, $39, $37, $39, $39, $39, $39, $39, $39, $39, $39, $39, $39,
DB $39, $39,
.bottomRow:
DB $33, $38, $38, $38, $38, $38, $38, $38, $38, $38, $38, $38, $38, $38, $38
DB $38, $38, $38, $38, $32, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
DB $00, $00,
;;; ----------------------------------------------------------------------------
r13_DialogEngineStep:
ld hl, var_dialog_current_word
ld a, [var_dialog_current_char] ; \
ld c, a ; | Inc, write back char index.
inc a ; |
ld [var_dialog_current_char], a ; /
ld b, 0 ; \ Seek pos in hl
add hl, bc ; /
ld a, [hl] ; \
or a ; | Check remaining chars in word.
jr Z, .getNextWord ; /
push hl ; \
ld a, [var_dialog_cursor_y] ; |
or a ; |
jr Z, .firstRow ; | \
.secondRow: ; | |
ld hl, $9c61 ; | | Determine which screen row to
jr .calc ; | | place the text into.
.firstRow: ; | |
ld hl, $9c21 ; | |
.calc: ; | /
ld a, [var_dialog_cursor_x] ; |
ld c, a ; |
ld b, 0 ; | Calculate destination position on
; | screen, into which to put the
add bc ; | character.
ld d, h ; |
ld e, l ; |
pop hl ; /
ld a, [hl]
cp DIALOG_COMMAND_BEGIN
jr Z, .parseDialogCommand
ld [de], a ; Put character onscreen
VIDEO_BANK 1 ; \
ld a, $88 ; | Set attribute for character in vram bank 1
ld [de], a ; |
VIDEO_BANK 0 ; /
ld a, [var_dialog_cursor_x] ; \
inc a ; | Jump to next x position.
ld [var_dialog_cursor_x], a ; /
ret
.getNextWord:
fcall r13_DialogLoadWord
ld a, [var_dialog_finished]
or a
jr NZ, .loopDone
ld hl, var_dialog_current_word
fcall SmallStrlen ; result in c
ld a, [var_dialog_cursor_y]
or a
jr NZ, .checkLenRow2
.checkLenRow1:
ld a, [var_dialog_cursor_x] ; \
ld b, a ; | A now contains remaining chars
ld a, 17 ; | in row.
sub b ; /
jr C, .nextRow
jr .remaining
.checkLenRow2:
ld a, [var_dialog_cursor_x] ; \
ld b, a ; | A now contains remaining chars
ld a, 16 ; | in row.
sub b ; /
jr C, .nextRow
.remaining:
cp c ; \ If remaining less than required, go to next
jr C, .nextRow ; / screen row...
ld a, [var_dialog_cursor_x] ; \
inc a ; | Jump to next x position.
ld [var_dialog_cursor_x], a ; /
ret
.nextRow:
ld a, [var_dialog_cursor_y]
or a
jr NZ, .awaitButton
inc a
ld [var_dialog_cursor_y], a
xor a
ld [var_dialog_cursor_x], a
ret
.loopDone:
ret
.awaitButton:
ld de, DialogSceneAwaitButtonVBlank
fcall SceneSetVBlankFn
fcall r13_DialogInit
ret
.parseDialogCommand:
inc hl
ld a, [hl]
cp DIALOG_COMMAND_Y_N
jr Z, .dialogOpenYNOptions
cp DIALOG_COMMAND_BREAK
jr Z, .dialogProcessBreak
ret
.dialogOpenYNOptions:
ld de, DialogSceneSetupYNOptionsVBlank
fcall SceneSetVBlankFn
ret
.dialogProcessBreak:
ld de, DialogSceneAwaitButtonVBlank
fcall SceneSetVBlankFn
fcall r13_DialogInit
ld a, [var_dialog_current_char]
add 2
ld [var_dialog_current_char], a
fcall r13_DialogLoadWord
ret
;;; ----------------------------------------------------------------------------
r13_DialogInit:
;;; bc - dialog string
xor a
ld [var_dialog_current_char], a
ld [var_dialog_counter], a
ld [var_dialog_finished], a
ld [var_dialog_cursor_x], a
ld [var_dialog_cursor_y], a
ret
;;; ----------------------------------------------------------------------------
r13_DialogLoadWord:
xor a
ld [var_dialog_current_char], a
ld hl, var_dialog_current_word
ld bc, 18
fcall Memset
ld a, [var_dialog_string]
ld h, a
ld a, [var_dialog_string + 1]
ld l, a
.skipWhitespace:
ld a, [hl]
cp 0 ; \ If null terminator, return
jr Z, .noWords ; /
cp $32 ; \ If space, skip.
jr NZ, .store ; /
inc hl
jr .skipWhitespace
.store:
ld de, var_dialog_current_word
.loop:
ld a, [hl+]
cp 0
jr Z, .finished
cp $32
jr Z, .result
ld [de], a
inc de
jr .loop
.finished: ; \ No more words to parse, dec pointer back to
dec hl ; / the null char.
.result:
ld a, h
ld [var_dialog_string], a
ld a, l
ld [var_dialog_string + 1], a
ret
.noWords:
ld a, 1
ld [var_dialog_finished], a
ret
;;; ----------------------------------------------------------------------------
r13_DialogGetNextChar:
ret
;;; ----------------------------------------------------------------------------
r13_DialogLoadString:
ret
;;; ----------------------------------------------------------------------------
r13_DialogOpen:
ld hl, r13_InventoryPalettes
ld b, 32
fcall LoadBackgroundColors
ld hl, r13_DialogBoxTemplate
ld de, $9c00
ld b, 9
fcall GDMABlockCopy
ld hl, r13_InventoryTiles
ld de, $9300
ld b, ((r13_InventoryTilesEnd - r13_InventoryTiles) / 16) - 1
fcall GDMABlockCopy
VIDEO_BANK 1
ld a, $83
ld hl, $9c00
ld bc, 20
fcall Memset
ld hl, $9c20
ld bc, 20
fcall Memset
ld hl, $9c40
ld bc, 20
fcall Memset
ld hl, $9c60
ld bc, 20
fcall Memset
ld hl, $9c80
ld bc, 20
fcall Memset
VIDEO_BANK 0
ret
;;; ----------------------------------------------------------------------------
r13_DialogOpenedMessageBroadcast:
push bc ; second two message bytes, empty
ld c, MESSAGE_DIALOG_BOX_OPENED ; \ First two message bytes:
push bc ; / Message type, null
ld hl, sp+0 ; Pass pointer to message on stack
fcall MessageBusBroadcast
pop bc ; \ Pop message arg from stack
pop bc ; /
ret
;;; ----------------------------------------------------------------------------
r13_DialogClosedMessageBroadcast:
push bc ; second two message bytes, empty
ld c, MESSAGE_DIALOG_BOX_CLOSED ; \ First two message bytes:
push bc ; / Message type, null
ld hl, sp+0 ; Pass pointer to message on stack
fcall MessageBusBroadcast
pop bc ; \ Pop message arg from stack
pop bc ; /
ret
;;; ----------------------------------------------------------------------------
|
Transynther/x86/_processed/US/_zr_/i3-7100_9_0x84_notsx.log_21829_210.asm | ljhsiun2/medusa | 9 | 6148 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r8
push %r9
push %rax
push %rcx
push %rsi
lea addresses_UC_ht+0x8aa6, %rcx
clflush (%rcx)
nop
nop
xor %rax, %rax
mov $0x6162636465666768, %r8
movq %r8, %xmm7
vmovups %ymm7, (%rcx)
xor $3185, %r13
lea addresses_normal_ht+0x26a6, %r14
nop
nop
nop
nop
nop
sub $60468, %rsi
mov (%r14), %r9d
dec %rsi
lea addresses_A_ht+0x5637, %rcx
nop
nop
nop
nop
nop
lfence
mov (%rcx), %r8
nop
nop
and %rax, %rax
pop %rsi
pop %rcx
pop %rax
pop %r9
pop %r8
pop %r14
pop %r13
ret
.global s_faulty_load
s_faulty_load:
push %r12
push %r13
push %rax
push %rbx
push %rcx
push %rsi
// Load
lea addresses_UC+0x1e32c, %rsi
nop
nop
nop
add %rax, %rax
mov (%rsi), %r12w
cmp $61087, %rsi
// Faulty Load
lea addresses_US+0x1ea6, %r13
cmp %r12, %r12
mov (%r13), %si
lea oracles, %rcx
and $0xff, %rsi
shlq $12, %rsi
mov (%rcx,%rsi,1), %rsi
pop %rsi
pop %rcx
pop %rbx
pop %rax
pop %r13
pop %r12
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_US', 'same': False, 'size': 2, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_UC', 'same': False, 'size': 2, 'congruent': 1, 'NT': True, 'AVXalign': False}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'type': 'addresses_US', 'same': True, 'size': 2, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'dst': {'type': 'addresses_UC_ht', 'same': False, 'size': 32, 'congruent': 7, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'src': {'type': 'addresses_normal_ht', 'same': False, 'size': 4, 'congruent': 11, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_A_ht', 'same': False, 'size': 8, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'00': 21829}
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
*/
|
libsrc/_DEVELOPMENT/math/float/math32/z80/f32_fsceil.asm | Frodevan/z88dk | 0 | 80734 |
SECTION code_fp_math32
EXTERN m32_f2ulong
EXTERN m32_float32u
EXTERN m32_float32
EXTERN m32_fsadd_callee
PUBLIC m32_ceil_fastcall
PUBLIC _m32_ceilf
; float ceilf(float f) __z88dk_fastcall;
._m32_ceilf
; Entry: dehl = floating point number
.m32_ceil_fastcall
bit 7,d
push af ;Save sign flag
call m32_f2ulong ;Exits dehl = number
pop af
jr Z,was_positive
call m32_float32
ret
.was_positive
call m32_float32u
; Add 1
push de
push hl
ld de,$3f80
ld hl,$0000
call m32_fsadd_callee
ret
|
libsrc/_DEVELOPMENT/EXAMPLES/zxn/dot-command/dzx7/48/dzx7.asm | jpoikela/z88dk | 640 | 85106 | <reponame>jpoikela/z88dk
;; workspace in main ram above ramtop
defc BUFFER_SIZE = 16384 ;; must be consistent with dzx7.c
SECTION IGNORE
org 65536 - BUFFER_SIZE*2
PUBLIC _input_data
PUBLIC _output_data
_input_data: defs BUFFER_SIZE
_output_data: defs BUFFER_SIZE
|
programs/oeis/331/A331943.asm | neoneye/loda | 22 | 104157 | <filename>programs/oeis/331/A331943.asm
; A331943: a(n) = n^2 + 1 - ceiling((n + 2)/3).
; 1,3,8,15,23,34,47,61,78,97,117,140,165,191,220,251,283,318,355,393,434,477,521,568,617,667,720,775,831,890,951,1013,1078,1145,1213,1284,1357,1431,1508,1587,1667,1750,1835,1921,2010,2101,2193,2288,2385,2483,2584,2687,2791,2898,3007,3117,3230,3345,3461,3580,3701,3823,3948,4075,4203,4334,4467,4601,4738,4877,5017,5160,5305,5451,5600,5751,5903,6058,6215,6373,6534,6697,6861,7028,7197,7367,7540,7715,7891,8070,8251,8433,8618,8805,8993,9184,9377,9571,9768,9967
mov $1,$0
mul $0,5
div $0,3
pow $1,2
add $0,$1
add $0,1
|
Cubical/HITs/Susp/Base.agda | cj-xu/cubical | 0 | 17110 | {-# OPTIONS --cubical --safe #-}
module Cubical.HITs.Susp.Base where
open import Cubical.Core.Glue
open import Cubical.Foundations.Prelude
open import Cubical.Foundations.Equiv
open import Cubical.Foundations.Isomorphism
open import Cubical.Data.Bool
open import Cubical.HITs.S1
open import Cubical.HITs.S2
open import Cubical.HITs.S3
data Susp {ℓ} (A : Type ℓ) : Type ℓ where
north : Susp A
south : Susp A
merid : (a : A) → north ≡ south
SuspBool : Type₀
SuspBool = Susp Bool
SuspBool→S¹ : SuspBool → S¹
SuspBool→S¹ north = base
SuspBool→S¹ south = base
SuspBool→S¹ (merid false i) = loop i
SuspBool→S¹ (merid true i) = base
S¹→SuspBool : S¹ → SuspBool
S¹→SuspBool base = north
S¹→SuspBool (loop i) = (merid false ∙ (sym (merid true))) i
SuspBool→S¹→SuspBool : (x : SuspBool) → Path _ (S¹→SuspBool (SuspBool→S¹ x)) x
SuspBool→S¹→SuspBool north = refl
SuspBool→S¹→SuspBool south = merid true
SuspBool→S¹→SuspBool (merid false i) = λ j → hcomp (λ k → (λ { (j = i1) → merid false i
; (i = i0) → north
; (i = i1) → merid true (j ∨ ~ k)}))
(merid false i)
SuspBool→S¹→SuspBool (merid true i) = λ j → merid true (i ∧ j)
S¹→SuspBool→S¹ : (x : S¹) → SuspBool→S¹ (S¹→SuspBool x) ≡ x
S¹→SuspBool→S¹ base = refl
S¹→SuspBool→S¹ (loop i) = λ j →
hfill (λ k → λ { (i = i0) → base
; (i = i1) → base })
(inS (loop i)) (~ j)
S¹≃SuspBool : S¹ ≃ SuspBool
S¹≃SuspBool = isoToEquiv (iso S¹→SuspBool SuspBool→S¹ SuspBool→S¹→SuspBool S¹→SuspBool→S¹)
S¹≡SuspBool : S¹ ≡ SuspBool
S¹≡SuspBool = isoToPath (iso S¹→SuspBool SuspBool→S¹ SuspBool→S¹→SuspBool S¹→SuspBool→S¹)
-- Now the sphere
SuspS¹ : Type₀
SuspS¹ = Susp S¹
SuspS¹→S² : SuspS¹ → S²
SuspS¹→S² north = base
SuspS¹→S² south = base
SuspS¹→S² (merid base i) = base
SuspS¹→S² (merid (loop j) i) = surf i j
meridian-contraction : I → I → I → SuspS¹
meridian-contraction i j l = hfill (λ k → λ { (i = i0) → north
; (i = i1) → merid base (~ k)
; (j = i0) → merid base (~ k ∧ i)
; (j = i1) → merid base (~ k ∧ i) })
(inS (merid (loop j) i)) l
S²→SuspS¹ : S² → SuspS¹
S²→SuspS¹ base = north
S²→SuspS¹ (surf i j) = meridian-contraction i j i1
S²→SuspS¹→S² : ∀ x → SuspS¹→S² (S²→SuspS¹ x) ≡ x
S²→SuspS¹→S² base k = base
S²→SuspS¹→S² (surf i j) k = SuspS¹→S² (meridian-contraction i j (~ k))
SuspS¹→S²→SuspS¹ : ∀ x → S²→SuspS¹ (SuspS¹→S² x) ≡ x
SuspS¹→S²→SuspS¹ north k = north
SuspS¹→S²→SuspS¹ south k = merid base k
SuspS¹→S²→SuspS¹ (merid base j) k = merid base (k ∧ j)
SuspS¹→S²→SuspS¹ (merid (loop j) i) k = meridian-contraction i j (~ k)
S²≡SuspS¹ : S² ≡ SuspS¹
S²≡SuspS¹ = isoToPath (iso S²→SuspS¹ SuspS¹→S² SuspS¹→S²→SuspS¹ S²→SuspS¹→S²)
-- And the 3-sphere
SuspS² : Type₀
SuspS² = Susp S²
SuspS²→S³ : SuspS² → S³
SuspS²→S³ north = base
SuspS²→S³ south = base
SuspS²→S³ (merid base i) = base
SuspS²→S³ (merid (surf j k) i) = surf i j k
meridian-contraction-2 : I → I → I → I → SuspS²
meridian-contraction-2 i j k l = hfill (λ m → λ { (i = i0) → north
; (i = i1) → merid base (~ m)
; (j = i0) → merid base (~ m ∧ i)
; (j = i1) → merid base (~ m ∧ i)
; (k = i0) → merid base (~ m ∧ i)
; (k = i1) → merid base (~ m ∧ i) })
(inS (merid (surf j k) i)) l
S³→SuspS² : S³ → SuspS²
S³→SuspS² base = north
S³→SuspS² (surf i j k) = meridian-contraction-2 i j k i1
S³→SuspS²→S³ : ∀ x → SuspS²→S³ (S³→SuspS² x) ≡ x
S³→SuspS²→S³ base l = base
S³→SuspS²→S³ (surf i j k) l = SuspS²→S³ (meridian-contraction-2 i j k (~ l))
SuspS²→S³→SuspS² : ∀ x → S³→SuspS² (SuspS²→S³ x) ≡ x
SuspS²→S³→SuspS² north l = north
SuspS²→S³→SuspS² south l = merid base l
SuspS²→S³→SuspS² (merid base j) l = merid base (l ∧ j)
SuspS²→S³→SuspS² (merid (surf j k) i) l = meridian-contraction-2 i j k (~ l)
S³≡SuspS² : S³ ≡ SuspS²
S³≡SuspS² = isoToPath (iso S³→SuspS² SuspS²→S³ SuspS²→S³→SuspS² S³→SuspS²→S³)
|
oeis/314/A314210.asm | neoneye/loda-programs | 11 | 176372 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A314210: Coordination sequence Gal.6.623.4 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings.
; Submitted by <NAME>(s3)
; 1,5,11,17,22,27,33,38,43,49,55,60,65,71,77,82,87,93,98,103,109,115,120,125,131,137,142,147,153,158,163,169,175,180,185,191,197,202,207,213,218,223,229,235,240,245,251,257,262,267
mov $1,$0
mul $0,13
add $0,5
div $0,11
mul $1,47
sub $1,6
div $1,11
add $1,1
add $0,$1
|
programs/oeis/102/A102591.asm | neoneye/loda | 22 | 92290 | ; A102591: a(n) = Sum_{k=0..n} binomial(2n+1, 2k)*3^(n-k).
; 1,6,44,328,2448,18272,136384,1017984,7598336,56714752,423324672,3159738368,23584608256,176037912576,1313964867584,9807567290368,73204678852608,546407161659392,4078438577864704,30441879976280064
mov $1,1
mov $2,1
lpb $0
sub $0,1
add $2,$1
mul $1,2
mul $2,2
add $1,$2
add $2,$1
lpe
mov $0,$1
|
sound/sfxasm/8D.asm | NatsumiFox/Sonic-3-93-Nov-03 | 7 | 95914 | <reponame>NatsumiFox/Sonic-3-93-Nov-03
8D_Header:
sHeaderInit ; Z80 offset is $CFA6
sHeaderPatch 8D_Patches
sHeaderTick $01
sHeaderCh $01
sHeaderSFX $80, $05, 8D_FM5, $E3, $02
8D_FM5:
sPatFM $00
ssModZ80 $01, $01, $FA, $41
dc.b nD3, $1A
sStop
8D_Patches:
; Patch $00
; $0A
; $40, $3B, $11, $31, $1F, $1F, $1B, $0C
; $05, $18, $05, $10, $03, $03, $00, $05
; $1F, $2F, $1F, $2F, $10, $60, $0E, $80
spAlgorithm $02
spFeedback $01
spDetune $04, $01, $03, $03
spMultiple $00, $01, $0B, $01
spRateScale $00, $00, $00, $00
spAttackRt $1F, $1B, $1F, $0C
spAmpMod $00, $00, $00, $00
spSustainRt $05, $05, $18, $10
spSustainLv $01, $01, $02, $02
spDecayRt $03, $00, $03, $05
spReleaseRt $0F, $0F, $0F, $0F
spTotalLv $10, $0E, $60, $00
|
applescript/browser_close_tab.scpt | 86dh/DevOps-Bash-tools | 7 | 631 | <filename>applescript/browser_close_tab.scpt
#!/usr/bin/env osascript
# vim:ts=4:sts=4:sw=4:et
#
# Author: <NAME>
# Date: 2022-02-28 13:05:26 +0000 (Mon, 28 Feb 2022)
#
# https://github.com/HariSekhon/DevOps-Bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
set defaultBrowser to do shell script "defaults read \\
~/Library/Preferences/com.apple.LaunchServices/com.apple.launchservices.secure \\
| awk -F'\"' '/http;/{print window[(NR)-1]}{window[NR]=$2}'"
if defaultBrowser is "" or defaultBrowser contains "safari" then
set defaultBrowser to "Safari"
else if defaultBrowser contains "chrome" then
set defaultBrowser to "Google Chrome"
else if defaultBrowser contains "firefox" then
set defaultBrowser to "Firefox"
else
set defaultBrowser to "Unknown"
end if
-- doesn't work because tell application is needed at compile time, so best we can do is create a script to launch in a separate process
--tell application defaultBrowser
-- keystroke "w" using command down
--end tell
-- doesn't work either
--set theScript to "tell application \"" & defaultBrowser & "\" to keystroke \"w\" using command down"
--do shell script "echo '" & theScript & "'"
--run script theScript
tell application "System Events"
set frontmostProcess to first process where it is frontmost
tell process defaultBrowser
set frontmost to true
keystroke "w" using command down
-- capture the original process and switch it back afterwards instead, just in case we're already in the browser we don't want to Cmd-Tab away
--keystroke tab using command down
end tell
set frontmost of frontmostProcess to true
end tell
|
src/glfw/v2/glfw-events.ads | Roldak/OpenGLAda | 0 | 586 | <gh_stars>0
-- part of OpenGLAda, (c) 2017 <NAME>
-- released under the terms of the MIT license, see the file "COPYING"
with Interfaces.C;
package Glfw.Events is
type Button_State is (Release, Press);
type Button_States is array (Positive range <>) of Button_State;
procedure Poll_Events;
procedure Wait_For_Events;
private
for Button_State use (Release => 0, Press => 1);
for Button_State'Size use Interfaces.C.int'Size;
for Button_States'Component_Size use Interfaces.C.char'Size;
pragma Convention (C, Button_States);
end Glfw.Events;
|
test/asm/strlen.asm | orbea/rgbds | 1 | 4566 | SECTION "sec", ROM0
xstrlen: MACRO
PRINTV STRLEN(\1)
PRINTT "\n"
ENDM
xstrlen "ABC"
xstrlen "カタカナ"
|
assembly/mips/recursion.asm | tsainez/examples | 1 | 161794 | <filename>assembly/mips/recursion.asm<gh_stars>1-10
#
# recursion.asm
#
#
# Created by <NAME> on 4/17/20.
#
#
# #include<stdio.h>
#
# int recursion(int m){
# if(m == 10)
# return 2;
# else if(m == 11)
# return 1;
# else
# return recursion(m + 2) + m + recursion(m + 1);
# }
#
# int main(){
# int x;
# printf("Please enter an integer: ");
# scanf("%d", &x);
# printf("%d\n", recursion(x));
# return 0;
# }
.data
str1: .asciiz "Please enter an integer: "
.text
main:
addi $sp, $sp, -4
li $v0, 4 # prompt for input
la $a0, str1
syscall
li $v0, 5
syscall # value entered by user stored in $v0
move $a0, $v0
addi $v0, $zero, 0 # clear v0 for return
jal recursion # recursion
sw $v0, 0($sp) # prints final ra
lw $a0, 0($sp)
li $v0, 1
syscall
j finish # totally finished
recursion:
addi $sp, $sp, -12 # push stack frame
sw $ra, 8($sp) # storing return address in stack frame
# m = 10?
addi $t0, $zero, 10
bne $t0, $a0, ten
addi $v0, $v0, 2
j end
ten:
addi $t0, $zero, 11 # m = 11?
bne $t0, $a0, eleven
addi $v0, $v0, 1
j end
eleven:
sw $a0, 4($sp)
addi $a0, $a0, 2 # m + 2
jal recursion # recursion
lw $a0, 4($sp) # first ra
addi $a0, $a0, 1 # m + 1
jal recursion # recursion
lw $a0, 4($sp) # loads first return value
add $v0, $v0, $a0 # add all values together
j end
end:
lw $ra, 8($sp) # get val for return
addi $sp, $sp, 12 # pop stack frame
jr $ra
finish:
addi $sp, $sp 4 # pop stack frame
li $v0, 10
syscall
|
examples/nonlr1.g4 | ironmeld/Grammlex | 0 | 6948 | <reponame>ironmeld/Grammlex<gh_stars>0
A: a A a;
A: epsilon;
|
programs/oeis/184/A184590.asm | karttu/loda | 0 | 105467 | ; A184590: floor[(n*e+1)/(e-1)]; complement of A184589.
; 2,3,5,6,8,10,11,13,14,16,17,19,21,22,24,25,27,29,30,32,33,35,36,38,40,41,43,44,46,48,49,51,52,54,55,57,59,60,62,63,65,67,68,70,71,73,74,76,78,79,81,82,84,86,87,89,90,92,93,95,97,98,100,101,103,104,106,108,109,111,112,114,116,117,119,120,122,123,125,127,128,130,131,133,135,136,138,139,141,142,144,146,147,149,150,152,154,155,157,158,160,161,163,165,166,168,169,171,173,174,176,177,179,180,182,184,185,187,188,190
mov $2,$0
add $2,1
mov $4,$0
lpb $2,1
mov $0,$4
sub $2,1
sub $0,$2
mov $7,$0
mov $8,2
lpb $8,1
sub $8,1
add $0,$8
sub $0,1
mov $9,$0
add $9,2
mul $9,32
mov $6,$9
div $6,55
mov $3,$6
mov $5,$8
lpb $5,1
sub $5,1
mov $10,$3
lpe
lpe
lpb $7,1
mov $7,0
sub $10,$3
lpe
mov $3,$10
add $3,1
add $1,$3
lpe
|
gfx/pokemon/croconaw/anim.asm | Dev727/ancientplatinum | 28 | 85872 | setrepeat 5
frame 3, 05
frame 2, 05
frame 1, 05
dorepeat 1
endanim
|
Transynther/x86/_processed/US/_zr_/i7-8650U_0xd2.log_20686_1720.asm | ljhsiun2/medusa | 9 | 174046 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x15103, %r9
nop
nop
nop
sub $45258, %r10
vmovups (%r9), %ymm7
vextracti128 $1, %ymm7, %xmm7
vpextrq $1, %xmm7, %rcx
nop
nop
nop
xor $57488, %rbx
lea addresses_A_ht+0x1c2f, %rsi
lea addresses_WT_ht+0x1e02f, %rdi
nop
nop
dec %r10
mov $110, %rcx
rep movsw
nop
nop
nop
nop
and %rcx, %rcx
lea addresses_normal_ht+0x5d9f, %rdi
nop
nop
nop
nop
nop
add $38238, %r15
mov (%rdi), %r9d
and $37125, %r15
lea addresses_WC_ht+0x102f, %r9
nop
and $39099, %rdi
mov (%r9), %ecx
nop
nop
nop
nop
and $56811, %r15
lea addresses_A_ht+0xa29f, %rbx
nop
nop
nop
nop
nop
cmp $28995, %r15
mov $0x6162636465666768, %r10
movq %r10, %xmm0
movups %xmm0, (%rbx)
add $57544, %rdi
lea addresses_A_ht+0x5a0f, %rdi
nop
nop
nop
dec %r10
vmovups (%rdi), %ymm1
vextracti128 $0, %ymm1, %xmm1
vpextrq $0, %xmm1, %r9
nop
nop
and $50602, %rsi
lea addresses_normal_ht+0x1969b, %rsi
lea addresses_WT_ht+0x1162f, %rdi
nop
nop
xor $35295, %r15
mov $43, %rcx
rep movsq
nop
nop
cmp $61689, %rcx
lea addresses_WT_ht+0x802f, %rcx
nop
nop
xor $8275, %rbx
movb $0x61, (%rcx)
and $56045, %r9
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %r9
pop %r15
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r12
push %r15
push %r8
push %r9
push %rax
push %rsi
// Store
lea addresses_US+0x62f, %r15
and %r12, %r12
movb $0x51, (%r15)
nop
nop
nop
xor %r11, %r11
// Load
lea addresses_US+0x62f, %r9
cmp %rax, %rax
movb (%r9), %r15b
nop
nop
nop
sub %r9, %r9
// Store
lea addresses_US+0x62f, %r8
clflush (%r8)
nop
nop
xor %r11, %r11
movl $0x51525354, (%r8)
nop
nop
nop
nop
xor $42597, %r12
// Store
lea addresses_UC+0x1106f, %rax
nop
nop
nop
sub $61099, %rsi
movb $0x51, (%rax)
nop
nop
nop
nop
nop
xor $15656, %rax
// Faulty Load
lea addresses_US+0x62f, %r15
nop
nop
nop
cmp %r12, %r12
vmovups (%r15), %ymm2
vextracti128 $0, %ymm2, %xmm2
vpextrq $1, %xmm2, %r8
lea oracles, %r11
and $0xff, %r8
shlq $12, %r8
mov (%r11,%r8,1), %r8
pop %rsi
pop %rax
pop %r9
pop %r8
pop %r15
pop %r12
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_US', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_US', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
{'OP': 'LOAD', 'src': {'type': 'addresses_US', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
{'OP': 'STOR', 'dst': {'type': 'addresses_US', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
{'OP': 'STOR', 'dst': {'type': 'addresses_UC', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 6, 'same': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_US', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
<gen_prepare_buffer>
{'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 2, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_A_ht', 'congruent': 7, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 6, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_normal_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_WC_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 7, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_A_ht', 'size': 16, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': True}}
{'OP': 'LOAD', 'src': {'type': 'addresses_A_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 1, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_normal_ht', 'congruent': 2, 'same': True}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 10, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 9, 'same': True}}
{'00': 20686}
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
*/
|
ejercicios2/prueba_esta_en_vector_ordenado.adb | iyan22/AprendeAda | 0 | 12527 | with Ada.Text_Io; use Ada.Text_Io;
with vectores; use vectores;
with esta_en_vector_ordenado;
procedure prueba_esta_en_vector_ordenado is
-- este programa hace llamadas a la funcion esta_en_vector_ordenado y es util
-- para comprobar si su funcionamiento es correcto
procedure escribir_booleano(valor: in Boolean) is
begin
if(valor) then
put("True");
else
put("False");
end if;
end escribir_booleano;
vector1: Vector_de_enteros(1..10);
vector2: Vector_de_enteros(-10..10);
vector3: Vector_de_enteros(-4..5);
vector4: Vector_de_enteros(0..3);
rdo: boolean;
begin
vector1 :=(1,3,5,7,9,11,13,15,17,19);
put_line("Caso 1: el valor esta en medio");
put_line(" esta_en_vector_ordenado(13, (1,3,5,7,9,11,13,15,17,19))");
put_Line(" debe ser True y el resultado es ");
rdo:=esta_en_vector_ordenado(13, vector1);
escribir_booleano(rdo);
new_line(3);
put_Line("Pulsa return para continuar");
skip_line;
new_line(3);
vector1 :=(1,3,5,7,9,11,13,15,17,19);
put_line("Caso 2: el valor esta al final");
put_line(" esta_en_vector_ordenado(19, (1,3,5,7,9,11,13,15,17,19))");
put_line(" debe ser True y el resultado es ");
rdo:=esta_en_vector_ordenado(19, vector1);
escribir_booleano(rdo);
new_line(3);
put_Line("Pulsa return para continuar");
skip_line;
new_line(3);
vector1 :=(1,3,5,7,9,11,13,15,17,19);
put_line("Caso 3: el valor no esta, se debe recorrer todo el vector");
put_line(" esta_en_vector_ordenado(45, (1,3,5,7,9,11,13,15,17,19))");
put_line(" debe ser False y el resultado es ");
rdo:=esta_en_vector_ordenado(45, vector1);
escribir_booleano(rdo);
new_line(3);
put_Line("Pulsa return para continuar");
skip_line;
new_line(3);
--Mis casos de prueba
vector2 :=(1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41);
put_line("Caso 4: vector largo, el valor esta en medio");
put_line(" esta_en_vector_ordenado(25, (1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39))");
put_Line(" debe ser True y el resultado es ");
rdo:=esta_en_vector_ordenado(25, vector2);
escribir_booleano(rdo);
new_line(3);
put_Line("Pulsa return para continuar");
skip_line;
new_line(3);
vector3 :=(1,3,5,7,9,11,13,15,17,19);
put_line("Caso 5: el valor no esta, se debe recorrer todo el vector");
put_line(" esta_en_vector_ordenado(21, (1,3,5,7,9,11,13,15,17,19))");
put_line(" debe ser False y el resultado es ");
rdo:=esta_en_vector_ordenado(21, vector3);
escribir_booleano(rdo);
new_line(3);
put_Line("Pulsa return para continuar");
skip_line;
new_line(3);
vector4 :=(1,3,5,7);
put_line("Caso 6: vector corto, el valor no esta, se debe recorrer todo el vector");
put_line(" esta_en_vector_ordenado(45, (1,3,5,7)");
put_line(" debe ser False y el resultado es ");
rdo:=esta_en_vector_ordenado(45, vector4);
escribir_booleano(rdo);
new_line(3);
put_Line("Pulsa return para continuar");
skip_line;
new_line(3);
end prueba_esta_en_vector_ordenado;
|
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c5/c54a13c.ada | best08618/asylo | 7 | 15019 | -- C54A13C.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
-- unlimited rights in the software and documentation contained herein.
-- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
-- this public release, the Government intends to confer upon all
-- recipients unlimited rights equal to those held by the Government.
-- These rights include rights to use, duplicate, release or disclose the
-- released technical data and computer software in whole or in part, in
-- any manner and for any purpose whatsoever, and to have or permit others
-- to do so.
--
-- DISCLAIMER
--
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
-- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
-- PARTICULAR PURPOSE OF SAID MATERIAL.
--*
-- OBJECTIVE:
-- CHECK THAT IF A CASE EXPRESSION IS A QUALIFIED EXPRESSION, A
-- TYPE CONVERSION, OR ONE OF THESE IN PARENTHESES, AND ITS
-- SUBTYPE IS NONSTATIC, THEN ANY VALUE OF THE EXPRESSION'S
-- BASE TYPE MAY APPEAR AS A CHOICE.
-- HISTORY:
-- BCB 07/13/88 CREATED ORIGINAL TEST.
WITH REPORT; USE REPORT;
PROCEDURE C54A13C IS
L : INTEGER := 1;
R : INTEGER := 100;
SUBTYPE INT IS INTEGER RANGE L .. R;
A : INT := 50;
B : INTEGER := 50;
C : INTEGER;
BEGIN
TEST ("C54A13C", "CHECK THAT IF A CASE EXPRESSION IS A " &
"QUALIFIED EXPRESSION, A TYPE CONVERSION, " &
"OR ONE OF THESE IN PARENTHESES, AND ITS " &
"SUBTYPE IS NONSTATIC, THEN ANY VALUE OF THE " &
"EXPRESSION'S BASE TYPE MAY APPEAR AS A CHOICE");
CASE INT'(A) IS
WHEN 0 => C := IDENT_INT (5);
WHEN 50 => C := IDENT_INT (10);
WHEN -3000 => C := IDENT_INT (15);
WHEN OTHERS => C := IDENT_INT (20);
END CASE;
IF C /= IDENT_INT (10) THEN
FAILED ("INCORRECT CHOICE MADE FOR QUALIFIED EXPRESSION IN " &
"CASE");
END IF;
CASE INT(B) IS
WHEN 0 => C := IDENT_INT (5);
WHEN 50 => C := IDENT_INT (10);
WHEN -3000 => C := IDENT_INT (15);
WHEN OTHERS => C := IDENT_INT (20);
END CASE;
IF C /= IDENT_INT (10) THEN
FAILED ("INCORRECT CHOICE MADE FOR TYPE CONVERSION IN CASE");
END IF;
CASE (INT'(A)) IS
WHEN 0 => C := IDENT_INT (5);
WHEN 50 => C := IDENT_INT (10);
WHEN -3000 => C := IDENT_INT (15);
WHEN OTHERS => C := IDENT_INT (20);
END CASE;
IF C /= IDENT_INT (10) THEN
FAILED ("INCORRECT CHOICE MADE FOR QUALIFIED EXPRESSION IN " &
"PARENTHESES IN CASE");
END IF;
CASE (INT(B)) IS
WHEN 0 => C := IDENT_INT (5);
WHEN 50 => C := IDENT_INT (10);
WHEN -3000 => C := IDENT_INT (15);
WHEN OTHERS => C := IDENT_INT (20);
END CASE;
IF C /= IDENT_INT (10) THEN
FAILED ("INCORRECT CHOICE MADE FOR TYPE CONVERSION IN " &
"PARENTHESES IN CASE");
END IF;
RESULT;
END C54A13C;
|
Miscellaneous/FiniteMultiset.agda | Lolirofle/stuff-in-agda | 6 | 15391 | <reponame>Lolirofle/stuff-in-agda<filename>Miscellaneous/FiniteMultiset.agda
{-# OPTIONS --cubical #-}
module Miscellaneous.FiniteMultiset where
import Lvl
open import Data.List using (List)
import Data.List.Functions as List
open import Data.List.Relation.Permutation
open import Functional as Fn
open import Type.Cubical
open import Type.Cubical.Quotient
open import Type
open import Type.Identity
private variable ℓ : Lvl.Level
private variable T : Type{ℓ}
private variable x y z : T
FiniteMultiset : Type{ℓ} → Type
FiniteMultiset(T) = Quotient(_permutes_ {T = T})
pattern ∅ = class List.∅
add : T → FiniteMultiset(T) → FiniteMultiset(T)
add x = Quotient-recursion (class ∘ (x List.⊰_)) (class-extensionalityₗ ∘ prepend)
_∪•_ : FiniteMultiset(T) → T → FiniteMultiset(T)
_∪•_ = Fn.swap add
infixr 1000 _∪•_
open import Data.Boolean
open import Data.List.Relation.Membership as List using (use ; skip)
open import Numeral.Natural
open import Relator.Equals.Proofs.Equivalence
open import Type.Cubical.Path.Equality
private variable l : FiniteMultiset(T)
count : (T → Bool) → FiniteMultiset(T) → ℕ
count f = Quotient-function(List.count f) ⦃ Proofs.permutes-countᵣ-function ⦄
satisfiesAny : (T → Bool) → FiniteMultiset(T) → Bool
satisfiesAny f = Quotient-function(List.satisfiesAny f) ⦃ Proofs.permutes-satisfiesAny-functionᵣ ⦄
-- _∈_ : T → FiniteMultiset(T) → Type
-- _∈_ x = Quotient-function (List._∈_ x) ⦃ {!!} ⦄
|
Transynther/x86/_processed/AVXALIGN/_ht_st_zr_un_/i7-7700_9_0x48.log_21829_2343.asm | ljhsiun2/medusa | 9 | 27715 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r13
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x19161, %rax
clflush (%rax)
nop
nop
nop
nop
cmp %rsi, %rsi
mov $0x6162636465666768, %rbp
movq %rbp, %xmm2
and $0xffffffffffffffc0, %rax
movaps %xmm2, (%rax)
nop
nop
xor %r13, %r13
lea addresses_UC_ht+0x1661, %rsi
lea addresses_WT_ht+0x6951, %rdi
nop
nop
nop
nop
nop
cmp $24708, %r12
mov $97, %rcx
rep movsb
add %rdi, %rdi
lea addresses_UC_ht+0x3361, %r12
nop
nop
nop
nop
xor $18355, %r13
mov $0x6162636465666768, %rcx
movq %rcx, %xmm7
movups %xmm7, (%r12)
nop
nop
nop
sub $40914, %rcx
lea addresses_normal_ht+0x188f9, %rbp
nop
nop
cmp $51736, %rax
mov (%rbp), %rsi
and %rsi, %rsi
lea addresses_normal_ht+0x3561, %r13
nop
xor $53065, %rdi
mov $0x6162636465666768, %rax
movq %rax, (%r13)
nop
nop
nop
xor $416, %r12
lea addresses_A_ht+0xd18a, %r13
nop
nop
nop
and $32863, %r12
mov $0x6162636465666768, %rsi
movq %rsi, %xmm2
movups %xmm2, (%r13)
nop
nop
sub $25562, %rsi
lea addresses_A_ht+0x62d1, %rsi
lea addresses_A_ht+0x29e1, %rdi
nop
inc %r10
mov $58, %rcx
rep movsl
nop
nop
nop
sub %rdi, %rdi
lea addresses_UC_ht+0x2d61, %r12
add $53422, %rsi
movw $0x6162, (%r12)
nop
add %r13, %r13
pop %rsi
pop %rdi
pop %rcx
pop %rbp
pop %rax
pop %r13
pop %r12
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r13
push %r8
push %r9
push %rbx
push %rcx
// Store
lea addresses_normal+0x8851, %r13
nop
cmp %r9, %r9
mov $0x5152535455565758, %r11
movq %r11, %xmm5
vmovups %ymm5, (%r13)
nop
add $10270, %rbx
// Store
lea addresses_normal+0x15161, %rbx
nop
nop
inc %rcx
mov $0x5152535455565758, %r10
movq %r10, %xmm1
movups %xmm1, (%rbx)
nop
nop
nop
dec %r11
// Load
mov $0x161, %rcx
nop
sub $50857, %r8
mov (%rcx), %r9w
nop
add $5433, %r10
// Store
lea addresses_US+0x16a92, %rbx
cmp $26528, %r11
movb $0x51, (%rbx)
nop
xor $43432, %rbx
// Faulty Load
mov $0x161, %r10
nop
xor %r8, %r8
vmovntdqa (%r10), %ymm1
vextracti128 $1, %ymm1, %xmm1
vpextrq $0, %xmm1, %rbx
lea oracles, %r11
and $0xff, %rbx
shlq $12, %rbx
mov (%r11,%rbx,1), %rbx
pop %rcx
pop %rbx
pop %r9
pop %r8
pop %r13
pop %r11
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_P', 'AVXalign': False, 'congruent': 0, 'size': 1, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_normal', 'AVXalign': False, 'congruent': 4, 'size': 32, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_normal', 'AVXalign': False, 'congruent': 10, 'size': 16, 'same': False, 'NT': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_P', 'AVXalign': False, 'congruent': 0, 'size': 2, 'same': True, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_US', 'AVXalign': False, 'congruent': 0, 'size': 1, 'same': False, 'NT': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_P', 'AVXalign': False, 'congruent': 0, 'size': 32, 'same': True, 'NT': True}}
<gen_prepare_buffer>
{'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'AVXalign': True, 'congruent': 10, 'size': 16, 'same': False, 'NT': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_UC_ht', 'congruent': 8, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 3, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_UC_ht', 'AVXalign': False, 'congruent': 9, 'size': 16, 'same': False, 'NT': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_normal_ht', 'AVXalign': False, 'congruent': 3, 'size': 8, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_normal_ht', 'AVXalign': False, 'congruent': 8, 'size': 8, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_A_ht', 'AVXalign': False, 'congruent': 0, 'size': 16, 'same': False, 'NT': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_A_ht', 'congruent': 4, 'same': False}, 'dst': {'type': 'addresses_A_ht', 'congruent': 7, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_UC_ht', 'AVXalign': False, 'congruent': 6, 'size': 2, 'same': False, 'NT': False}}
{'4b': 3, '4c': 57, '63': 8, '03': 2, '8c': 2, '94': 9, '78': 2, '00': 10055, '3e': 2, '70': 2, 'b8': 3, '60': 1, '8a': 1, '02': 1, '48': 2, 'a8': 10, '9f': 5, '45': 11617, '88': 10, '5c': 2, 'c4': 6, 'af': 9, 'e7': 7, '7a': 6, '33': 7}
00 00 02 45 00 00 00 00 00 45 45 00 45 45 45 45 45 45 45 45 00 00 45 00 45 00 00 45 45 00 00 00 00 00 45 00 45 45 00 45 00 00 00 00 45 00 00 45 00 00 45 45 00 00 00 00 00 00 45 45 45 45 45 00 00 00 00 45 45 45 45 45 45 00 45 45 45 45 00 45 00 45 00 45 45 00 00 45 00 00 45 00 00 00 00 45 45 00 45 45 00 45 45 45 00 00 45 45 45 00 00 00 45 45 00 45 00 00 45 00 45 00 45 45 45 45 45 45 00 00 00 00 45 45 45 00 00 45 00 45 45 00 45 45 45 45 45 00 45 45 45 00 00 00 00 00 00 00 45 45 45 00 45 45 00 00 00 45 45 45 45 45 45 45 45 00 00 00 00 00 00 00 45 45 45 00 45 45 45 00 45 45 45 45 45 45 00 45 45 45 45 00 45 00 00 00 00 00 00 00 00 00 00 00 00 45 45 45 45 45 00 45 00 45 00 45 00 45 45 45 45 00 45 00 00 00 45 45 45 00 45 45 45 45 00 45 45 45 45 45 45 45 45 45 45 45 45 45 00 00 00 00 00 45 45 45 00 45 00 00 00 45 00 00 00 00 00 00 00 45 45 45 00 00 45 45 45 00 45 45 45 45 45 45 45 45 00 00 45 00 45 45 45 45 00 00 00 00 00 00 00 00 45 00 45 00 00 45 45 00 45 00 00 45 00 45 45 45 45 45 45 00 45 45 00 00 00 45 45 45 00 00 45 00 45 00 45 00 45 45 00 00 00 45 45 00 45 00 45 00 45 45 00 45 00 45 45 45 45 45 45 45 45 00 00 00 00 00 00 45 45 45 45 00 00 00 00 45 45 45 00 00 00 45 45 45 45 45 00 45 00 00 45 00 00 45 45 45 00 45 45 45 00 45 00 45 45 45 45 45 45 00 00 45 45 45 45 45 00 00 45 00 00 00 45 45 45 00 45 45 00 45 45 00 45 45 45 00 00 45 00 00 45 45 45 00 45 45 00 45 00 00 00 45 00 45 00 00 00 45 00 45 45 00 45 00 45 45 45 00 45 45 45 45 00 00 00 45 45 45 45 45 45 45 00 45 45 45 45 45 00 45 45 00 00 00 00 45 45 00 00 45 00 45 00 45 45 45 45 45 45 45 00 45 45 00 45 00 00 45 45 00 00 45 00 45 45 00 00 00 00 00 00 00 00 00 45 45 45 00 45 00 00 00 00 00 45 00 45 45 45 00 00 45 00 45 45 45 45 00 00 45 45 45 45 45 45 45 45 00 00 00 45 00 00 45 45 45 00 45 45 00 4c 00 4c 4c 4c 4c 4c 4c 4c 4c 4c 00 45 00 45 45 00 00 00 00 45 45 45 45 45 45 45 45 45 00 00 45 00 00 45 00 00 45 00 00 45 45 45 45 45 45 45 45 45 45 45 00 45 45 00 00 45 00 00 45 00 45 45 45 45 45 45 45 00 45 45 00 00 00 00 00 00 00 45 45 88 88 88 00 88 88 88 88 88 88 88 45 45 45 00 00 45 00 00 45 00 00 45 00 00 00 00 00 00 45 00 45 45 45 45 45 45 45 00 45 45 45 00 45 45 45 45 45 45 45 45 45 00 00 45 45 45 45 45 45 00 45 45 45 45 45 45 45 00 00 45 00 00 00 00 45 00 45 00 45 00 45 45 00 45 00 45 00 45 45 45 00 00 45 00 45 00 45 00 00 45 00 45 00 00 45 45 45 00 00 45 45 45 00 00 00 45 45 45 45 45 00 45 00 00 00 45 45 45 45 45 45 45 45 00 00 45 00 45 00 45 45 00 00 00 00 00 45 00 00 00 00 00 00 00 00 45 00 45 00 45 00 00 45 45 45 45 45 45 45 00 00 00 00 45 45 00 45 00 00 00 00 45 00 45 00 00 00 00 45 45 45 45 45 45 45 45 45 00 00 00 00 00 00 00 45 00 00 00 00 00 00 00 00 00 45 45 45 45 45 00 00 45 45 45 00 45 00 00 00 45 45 00 45 45 45 00 00 45 45 00 00 45 45 45 45 00 00 00 45 00 00 00 45 45 45 00 45 00 00 00 45 45 00 45 00 00 45 00 00 00 45 00 45 45 00 45 00 45 00 00 00 00 45 45 45 00 45 45 45 00 00 00 00 45 00 45 00 45 45 45 45 45 00 45 00 00 00 45 00 45 00 45 00 00 00 00 45 00 45 45 00 00 45 45 45 45 00
*/
|
Snippets/Change Volume.applescript | rogues-gallery/applescript | 360 | 1843 | set {vol, gave} to {button returned, gave up} of (display dialog "Volume" buttons {"High", "Low", "Cancel"} cancel button 3 with icon note giving up after 1800)
if vol contains "High" then set volume 6
if vol contains "Low" then set volume 4
|
src/dat/bcalls.asm | Iambian/VANISH | 1 | 13997 | <filename>src/dat/bcalls.asm<gh_stars>1-10
.ASSUME ADL=0
;===============================================================================
;OS 2.43 basecall table is 4917 bytes long (1639 entries) starting at $4000
#DEFINE OS_NUMCALLS 1639
bcall_sbase_os:
;.ds (bcall_sbase_os+(3*OS_NUMCALLS))-$
.dl errnosupport ;$4000 _JErrorNo
.dl errnosupport ;$4003 _FontHook
.dl errnosupport ;$4006 _call_character_hook
.dl LdHLind ;$4009 _ldHLind
.dl CpHLDE ;$400C _CpHLDE
.dl errnosupport ;$400F _DivHLBy10
.dl errnosupport ;$4012 _DivHLByA
.dl KbdScan ;$4015 _kdbScan
.dl GetCSC ;$4018 _GetCSC
.dl errnosupport ;$401B _coorMon
.dl errnosupport ;$401E _Mon
.dl errnosupport ;$4021 _monForceKey
.dl errnosupport ;$4024 _sendKPress
.dl errnosupport ;$4027 _JForceCmdNoChar
.dl errnosupport ;$402A _JForceCmd
.dl errnosupport ;$402D _sysErrHandler
.dl errnosupport ;$4030 _newContext
.dl errnosupport ;$4033 _newContext0
.dl errnosupport ;$4036 _cxPutAway
.dl errnosupport ;$4039 _cxPutAway2
.dl errnosupport ;$403C _cxPPutAway
.dl errnosupport ;$403F _cxSizeWind
.dl errnosupport ;$4042 _cxErrEP
.dl errnosupport ;$4045 _cxMain
.dl errnosupport ;$4048 _monErrHand
.dl errnosupport ;$404B _AppInit
.dl errnosupport ;$404E _resetRam
.dl errnosupport ;$4051 _lcd_busy
.dl errnosupport ;$4054 _Min
.dl errnosupport ;$4057 _Max
.dl errnosupport ;$405A
.dl errnosupport ;$405D
.dl errnosupport ;$4060 _Trunc
.dl errnosupport ;$4063 _InvSub
.dl errnosupport ;$4066 _Times2
.dl errnosupport ;$4069 _Plus1
.dl errnosupport ;$406C _Minus1
.dl errnosupport ;$406F _FPSub
.dl errnosupport ;$4072 _FPAdd
.dl errnosupport ;$4075 _DToR
.dl errnosupport ;$4078 _RToD
.dl errnosupport ;$407B _Cube
.dl errnosupport ;$407E _TimesPt5
.dl errnosupport ;$4081 _FPSquare
.dl errnosupport ;$4084 _FPMult
.dl errnosupport ;$4087 _LJRND
.dl errnosupport ;$408A _InvOP1SC
.dl errnosupport ;$408D _InvOP1S
.dl errnosupport ;$4090 _InvOP2S
.dl errnosupport ;$4093 _frac
.dl errnosupport ;$4096 _fprecip
.dl errnosupport ;$4099 _fpdiv
.dl errnosupport ;$409C _SqRoot
.dl errnosupport ;$409F _RndGuard
.dl errnosupport ;$40A2 _RnFx
.dl errnosupport ;$40A5 _int
.dl errnosupport ;$40A8 _Round
.dl errnosupport ;$40AB _LnX
.dl errnosupport ;$40AE _LogX
.dl errnosupport ;$40B1 _LJNORND
.dl errnosupport ;$40B4 _EToX
.dl errnosupport ;$40B7 _TenX
.dl errnosupport ;$40BA _SinCosRad
.dl errnosupport ;$40BD _Sin
.dl errnosupport ;$40C0 _cos
.dl errnosupport ;$40C3 _Tan
.dl errnosupport ;$40C6 _SinHCosH
.dl errnosupport ;$40C9 _TanH
.dl errnosupport ;$40CC _cosh
.dl errnosupport ;$40CF _SinH
.dl errnosupport ;$40D2 _ACosRad
.dl errnosupport ;$40D5 _ATanRad
.dl errnosupport ;$40D8 _ATan2Rad
.dl errnosupport ;$40DB _ASinRad
.dl errnosupport ;$40DE _ACos
.dl errnosupport ;$40E1 _ATan
.dl errnosupport ;$40E4 _ASin
.dl errnosupport ;$40E7 _ATan2
.dl errnosupport ;$40EA _ATanH
.dl errnosupport ;$40ED _ASinH
.dl errnosupport ;$40F0 _ACosH
.dl errnosupport ;$40F3 _PtoR
.dl errnosupport ;$40F6 _RToP
.dl HLTimes9 ;$40F9 _HLTimes9
.dl errnosupport ;$40FC _CkOP1Cplx
.dl errnosupport ;$40FF _CkOP1Real
.dl errnosupport ;$4102 _Angle
.dl errnosupport ;$4105 _COP1Set0
.dl errnosupport ;$4108 _CpOP4OP3
.dl errnosupport ;$410B _Mov9OP2Cp
.dl errnosupport ;$410E _AbsO1O2Cp
.dl errnosupport ;$4111 _cpop1op2
.dl OP3ToOP4 ;$4114 _OP3ToOP4
.dl OP1ToOP4 ;$4117 _OP1ToOP4
.dl OP2ToOP4 ;$411A _OP2ToOP4
.dl OP4ToOP2 ;$411D _OP4ToOP2
.dl OP3ToOP2 ;$4120 _OP3ToOP2
.dl OP1ToOP3 ;$4123 _OP1ToOP3
.dl OP5ToOP2 ;$4126 _OP5ToOP2
.dl OP5ToOP6 ;$4129 _OP5ToOP6
.dl OP5ToOP4 ;$412C _OP5ToOP4
.dl OP1ToOP2 ;$412F _OP1ToOP2
.dl OP6ToOP2 ;$4132 _OP6ToOP2
.dl OP6ToOP1 ;$4135 _OP6ToOP1
.dl OP4ToOP1 ;$4138 _OP4ToOP1
.dl OP5ToOP1 ;$413B _OP5ToOP1
.dl OP3ToOP1 ;$413E _OP3ToOP1
.dl OP6ToOP5 ;$4141 _OP6ToOP5
.dl OP4ToOP5 ;$4144 _OP4ToOP5
.dl OP3ToOP5 ;$4147 _OP3ToOP5
.dl OP2ToOP5 ;$414A _OP2ToOP5
.dl OP2ToOP6 ;$414D _OP2ToOP6
.dl OP1ToOP6 ;$4150 _OP1ToOP6
.dl OP1ToOP5 ;$4153 _OP1ToOP5
.dl OP2ToOP1 ;$4156 _OP2ToOP1
.dl Mov11B ;$4159 _Mov11B
.dl Mov10B ;$415C _Mov10B
.dl Mov9B ;$415F _Mov9B
.dl errnosupport ;$4162 _mov9B2
.dl Mov8B ;$4165 _Mov8B
.dl Mov7B ;$4168 _Mov7B
.dl errnosupport ;$416B _Mov7B2
.dl OP2ToOP3 ;$416E _OP2ToOP3
.dl OP4ToOP3 ;$4171 _OP4ToOP3
.dl OP5ToOP3 ;$4174 _OP5ToOP3
.dl OP4ToOP6 ;$4177 _OP4ToOP6
.dl Mov9ToOp1 ;$417A _Mov9ToOP1
.dl Mov9Op1Op2 ;$417D _Mov9OP1OP2
.dl Mov9ToOp2 ;$4180 _Mov9ToOP2
.dl MovFrOp1 ;$4183 _MovFrOP1
.dl OP4Set1 ;$4186 _OP4Set1
.dl OP3Set1 ;$4189 _OP3Set1
.dl OP2Set8 ;$418C _OP2Set8
.dl OP2Set5 ;$418F _OP2Set5
.dl OP2SetA ;$4192 _OP2SetA
.dl OP2Set4 ;$4195 _OP2Set4
.dl OP2Set3 ;$4198 _OP2Set3
.dl OP1Set1 ;$419B _OP1Set1
.dl OP1Set4 ;$419E _OP1Set4
.dl OP1Set3 ;$41A1 _OP1Set3
.dl OP3Set2 ;$41A4 _OP3Set2
.dl OP1Set2 ;$41A7 _OP1Set2
.dl OP2Set2 ;$41AA _OP2Set2
.dl OP2Set1 ;$41AD _OP2Set1
.dl Zero16D ;$41B0 _Zero16D
.dl OP5Set0 ;$41B3 _OP5Set0
.dl OP4Set0 ;$41B6 _OP4Set0
.dl OP3Set0 ;$41B9 _OP3Set0
.dl OP2Set0 ;$41BC _OP2Set0
.dl OP1Set0 ;$41BF _OP1Set0
.dl errnosupport ;$41C2 _OPSet0
.dl ZeroOp1 ;$41C5 _ZeroOP1
.dl ZeroOp2 ;$41C8 _ZeroOP2
.dl ZeroOp3 ;$41CB _ZeroOP3
.dl ZeroOp ;$41CE _ZeroOP
.dl ClrLp ;$41D1 _ClrLp
.dl errnosupport ;$41D4 _ShRAcc
.dl errnosupport ;$41D7 _ShLAcc
.dl errnosupport ;$41DA _ShR18
.dl errnosupport ;$41DD _SHR18A
.dl errnosupport ;$41E0 _SHR16
.dl errnosupport ;$41E3 _SHR14
.dl errnosupport ;$41E6 _SHL16
.dl errnosupport ;$41E9 _SHL14
.dl errnosupport ;$41EC _SRDO1
.dl errnosupport ;$41EF _SHRDRND
.dl errnosupport ;$41F2 _MANTPA
.dl errnosupport ;$41F5 _ADDPROP
.dl errnosupport ;$41F8 _ADDPROPLP
.dl errnosupport ;$41FB _ADD16D
.dl errnosupport ;$41FE _ADD14D
.dl errnosupport ;$4201 _SUB16D
.dl errnosupport ;$4204 _SUB14D
.dl OP2ExOP6 ;$4207 _OP2ExOP6
.dl OP5ExOP6 ;$420A _OP5ExOP6
.dl OP1ExOP5 ;$420D _OP1ExOP5
.dl OP1ExOP6 ;$4210 _OP1ExOP6
.dl OP2ExOP4 ;$4213 _OP2ExOP4
.dl OP2ExOP5 ;$4216 _OP2ExOP5
.dl OP1ExOP3 ;$4219 _OP1ExOP3
.dl OP1ExOP4 ;$421C _OP1ExOP4
.dl OP1ExOP2 ;$421F _OP1ExOP2
.dl ExLp ;$4222 _ExLp
.dl errnosupport ;$4225 _CkOP1C0
.dl errnosupport ;$4228 _CkOP1FP0
.dl errnosupport ;$422B _CkOP2FP0
.dl errnosupport ;$422E _PosNo0Int
.dl errnosupport ;$4231 _CKPosInt
.dl errnosupport ;$4234 _CKInt
.dl errnosupport ;$4237 _CKOdd
.dl errnosupport ;$423A _CKOP1M
.dl errnosupport ;$423D _GETCONOP1
.dl errnosupport ;$4240 _GETCONOP2
.dl errnosupport ;$4243 _PIDIV2
.dl errnosupport ;$4246 _PIDIV4
.dl errnosupport ;$4249 _PItimes2
.dl errnosupport ;$424C _PI
.dl errnosupport ;$424F _ExpToHex
.dl errnosupport ;$4252 _OP1ExpToDec
.dl errnosupport ;$4255 _ckop2pos
.dl errnosupport ;$4258 _CkOP1Pos
.dl ClrOp2S ;$425B _ClrOP2S
.dl ClrOp1S ;$425E _ClrOP1S
.dl errnosupport ;$4261 _FDIV100
.dl errnosupport ;$4264 _FDIV10
.dl errnosupport ;$4267 _DecO1Exp
.dl errnosupport ;$426A _INCO1EXP
.dl errnosupport ;$426D _INCEXP
.dl errnosupport ;$4270 _CkValidNum
.dl errnosupport ;$4273 _GETEXP
.dl HtimesL ;$4276 _HTimesL
.dl errnosupport ;$4279 _EOP1NotReal
.dl errnosupport ;$427C _ThetaName
.dl errnosupport ;$427F _RName
.dl errnosupport ;$4282 _REGEQNAME
.dl errnosupport ;$4285 _RECURNNAME
.dl errnosupport ;$4288 _XName
.dl errnosupport ;$428B _YName
.dl errnosupport ;$428E _TName
.dl errnosupport ;$4291 _REALNAME
.dl errnosupport ;$4294 _SETesTOfps
.dl errnosupport ;$4297 _markTableDirty
.dl errnosupport ;$429A _OP1MOP2EXP
.dl errnosupport ;$429D _OP1EXPMinusE
.dl errnosupport ;$42A0 _CHKERRBREAK
.dl errnosupport ;$42A3 _isA2ByteTok
.dl errnosupport ;$42A6 _GETLASTENTRY
.dl errnosupport ;$42A9 _GETLASTENTRYPTR
.dl errnosupport ;$42AC _REGCLRCHNG
.dl errnosupport ;$42AF _RESETWINTOP
.dl errnosupport ;$42B2 _SetYUp
.dl errnosupport ;$42B5 _SetXUp
.dl errnosupport ;$42B8 _ISO1NONTLSTorPROG
.dl errnosupport ;$42BB _ISO1NONTEMPLST
.dl IS_A_LSTorCLST ;$42BE _IS_A_LSTorCLST
.dl errnosupport ;$42C1 _CHK_HL_999
.dl errnosupport ;$42C4 _equ_or_newequ
.dl errnosupport ;$42C7 _errd_op1notpos
.dl errnosupport ;$42CA _ErrD_OP1Not_R
.dl errnosupport ;$42CD _ErrD_OP1NotPosInt
.dl errnosupport ;$42D0 _ErrD_OP1_LE_0
.dl errnosupport ;$42D3 _ErrD_OP1_0
.dl errnosupport ;$42D6 _FINDSYM_GET_SIZE
.dl errnosupport ;$42D9 _STO_STATVAR
.dl errnosupport ;$42DC _Rcl_StatVar
.dl errnosupport ;$42DF _CkOP2Real
.dl errnosupport ;$42E2 _GET_X_INDIRECT
.dl MemChk ;$42E5 _MemChk
.dl errnosupport ;$42E8 _CMPPRGNAMLEN1
.dl errnosupport ;$42EB _CMPPRGNAMLEN
.dl errnosupport ;$42EE _FINDPROGSYM
.dl errnosupport ;$42F1 _ChkFindSym
.dl errnosupport ;$42F4 _FindSym
.dl InsertMem ;$42F7 _InsertMem
.dl INSERTMEMA ;$42FA _INSERTMEMA
.dl EnoughMem ;$42FD _EnoughMem
.dl errnosupport ;$4300 _CMPMEMNEED
.dl errnosupport ;$4303 _CREATEPVAR4
.dl errnosupport ;$4306 _CREATEPVAR3
.dl errnosupport ;$4309 _CREATEVAR3
.dl errnosupport ;$430C _CreateCplx
.dl errnosupport ;$430F _CreateReal
.dl errnosupport ;$4312 _CreateTempRList
.dl errnosupport ;$4315 _CreateRList
.dl errnosupport ;$4318 _CREATETCLIST
.dl errnosupport ;$431B _CreateCList
.dl errnosupport ;$431E _CreateTempRMat
.dl errnosupport ;$4321 _CreateRMat
.dl errnosupport ;$4324 _CreateTempString
.dl errnosupport ;$4327 _CreateStrng
.dl errnosupport ;$432A _Create0Equ
.dl errnosupport ;$432D _CreateTempEqu
.dl errnosupport ;$4330 _CreateEqu
.dl errnosupport ;$4333 _CreatePict
.dl errnosupport ;$4336 _CreateGDB
.dl errnosupport ;$4339 _CreateProg
.dl errnosupport ;$433C _CHKDEL
.dl errnosupport ;$433F _CHKDELA
.dl ADJPARSER ;$4342 _ADJPARSER
.dl AdjMath ;$4345 _ADJMATH
.dl ADJM7 ;$4348 _ADJM7
.dl DELMEMA ;$434B _DELMEMA
.dl errnosupport ;$434E _GET_FORM_NUM
.dl errnosupport ;$4351 _DelVar
.dl errnosupport ;$4354 _DELVARIO
.dl DelMem ;$4357 _DelMem
.dl DELVAR3D ;$435A _DELVAR3D
.dl DELVAR3C ;$435D _DELVAR3C
.dl DelVar3DC ;$4360 _DELVAR3DC
.dl IsFixedName ;$4363 _IsFixedName
.dl errnosupport ;$4366 _DelVarEntry
.dl DataSizeA ;$4369 _DataSizeA
.dl DataSize ;$436C _DataSize
.dl errnosupport ;$436F _POPMCPLXO1
.dl errnosupport ;$4372 _POPMCPLX
.dl errnosupport ;$4375 _MOVCPLX
.dl errnosupport ;$4378 _popOP5
.dl errnosupport ;$437B _popOP3
.dl errnosupport ;$437E _popOP1
.dl errnosupport ;$4381 _PopRealO6
.dl errnosupport ;$4384 _PopRealO5
.dl errnosupport ;$4387 _PopRealO4
.dl errnosupport ;$438A _PopRealO3
.dl errnosupport ;$438D _PopRealO2
.dl errnosupport ;$4390 _PopRealO1
.dl errnosupport ;$4393 _PopReal
.dl errnosupport ;$4396 _FPOPCPLX
.dl errnosupport ;$4399 _FPOPREAL
.dl errnosupport ;$439C _FPOPFPS
.dl errnosupport ;$439F _DeallocFPS
.dl errnosupport ;$43A2 _DeallocFPS1
.dl errnosupport ;$43A5 _AllocFPS
.dl errnosupport ;$43A8 _AllocFPS1
.dl errnosupport ;$43AB _PushRealO6
.dl errnosupport ;$43AE _PushRealO5
.dl errnosupport ;$43B1 _PushRealO4
.dl errnosupport ;$43B4 _PushRealO3
.dl errnosupport ;$43B7 _PushRealO2
.dl errnosupport ;$43BA _PushRealO1
.dl errnosupport ;$43BD _PushReal
.dl errnosupport ;$43C0 _PushOP5
.dl errnosupport ;$43C3 _PushOP3
.dl errnosupport ;$43C6 _PUSHMCPLXO3
.dl errnosupport ;$43C9 _PushOP1
.dl errnosupport ;$43CC _PUSHMCPLXO1
.dl errnosupport ;$43CF _PUSHMCPLX
.dl errnosupport ;$43D2 _ExMCplxO1
.dl Exch9 ;$43D5 _Exch9
.dl errnosupport ;$43D8 _CpyTo1FPS11
.dl errnosupport ;$43DB _CpyTo2FPS5
.dl errnosupport ;$43DE _CpyTo1FPS5
.dl errnosupport ;$43E1 _CpyTo2FPS6
.dl errnosupport ;$43E4 _CpyTo1FPS6
.dl errnosupport ;$43E7 _CpyTo2FPS7
.dl errnosupport ;$43EA _CpyTo1FPS7
.dl errnosupport ;$43ED _CpyTo1FPS8
.dl errnosupport ;$43F0 _CpyTo2FPS8
.dl errnosupport ;$43F3 _CpyTo1FPS10
.dl errnosupport ;$43F6 _CpyTo1FPS9
.dl errnosupport ;$43F9 _CpyTo2FPS4
.dl errnosupport ;$43FC _CpyTo6FPS3
.dl errnosupport ;$43FF _CpyTo6FPS2
.dl errnosupport ;$4402 _CpyTo2FPS3
.dl errnosupport ;$4405 _CPYCTO1FPS3
.dl errnosupport ;$4408 _CpyTo1FPS3
.dl errnosupport ;$440B _CPYFPS3
.dl errnosupport ;$440E _CpyTo1FPS4
.dl errnosupport ;$4411 _CpyTo3FPS2
.dl errnosupport ;$4414 _CpyTo5FPST
.dl errnosupport ;$4417 _CpyTo6FPST
.dl errnosupport ;$441A _CpyTo4FPST
.dl errnosupport ;$441D _CpyTo3FPST
.dl errnosupport ;$4420 _CpyTo2FPST
.dl errnosupport ;$4423 _CpyTo1FPST
.dl errnosupport ;$4426 _CPYFPST
.dl errnosupport ;$4429 _CpyStack
.dl errnosupport ;$442C _CpyTo3FPS1
.dl errnosupport ;$442F _CpyTo2FPS1
.dl errnosupport ;$4432 _CpyTo1FPS1
.dl errnosupport ;$4435 _CPYFPS1
.dl errnosupport ;$4438 _CpyTo2FPS2
.dl errnosupport ;$443B _CpyTo1FPS2
.dl errnosupport ;$443E _CPYFPS2
.dl errnosupport ;$4441 _CpyO3ToFPST
.dl errnosupport ;$4444 _CpyO2ToFPST
.dl errnosupport ;$4447 _CpyO6ToFPST
.dl errnosupport ;$444A _CpyO1ToFPST
.dl errnosupport ;$444D _CpyToFPST
.dl errnosupport ;$4450 _CpyToStack
.dl errnosupport ;$4453 _CpyO3ToFPS1
.dl errnosupport ;$4456 _CpyO5ToFPS1
.dl errnosupport ;$4459 _CpyO2ToFPS1
.dl errnosupport ;$445C _CpyO1ToFPS1
.dl errnosupport ;$445F _CpyToFPS1
.dl errnosupport ;$4462 _CpyO2ToFPS2
.dl errnosupport ;$4465 _CpyO3ToFPS2
.dl errnosupport ;$4468 _CpyO6ToFPS2
.dl errnosupport ;$446B _CpyO1ToFPS2
.dl errnosupport ;$446E _CpyToFPS2
.dl errnosupport ;$4471 _CpyO5ToFPS3
.dl errnosupport ;$4474 _CpyO2ToFPS3
.dl errnosupport ;$4477 _CpyO1ToFPS3
.dl errnosupport ;$447A _CpyToFPS3
.dl errnosupport ;$447D _CpyO1ToFPS6
.dl errnosupport ;$4480 _CpyO1ToFPS7
.dl errnosupport ;$4483 _CpyO1ToFPS5
.dl errnosupport ;$4486 _CpyO2ToFPS4
.dl errnosupport ;$4489 _CpyO1ToFPS4
.dl ErrNotEnoughMem ;$448C _ErrNotEnoughMem
.dl errnosupport ;$448F _FPSMINUS9
.dl errnosupport ;$4492 _HLMINUS9
.dl errnosupport ;$4495 _ErrOverflow
.dl errnosupport ;$4498 _ErrDivBy0
.dl errnosupport ;$449B _ErrSingularMat
.dl errnosupport ;$449E _ErrDomain
.dl errnosupport ;$44A1 _ErrIncrement
.dl errnosupport ;$44A4 _ErrNon_Real
.dl errnosupport ;$44A7 _ErrSyntax
.dl errnosupport ;$44AA _ErrDataType
.dl errnosupport ;$44AD _ErrArgument
.dl errnosupport ;$44B0 _ErrDimMismatch
.dl errnosupport ;$44B3 _ErrDimension
.dl errnosupport ;$44B6 _ErrUndefined
.dl errnosupport ;$44B9 _ErrMemory
.dl errnosupport ;$44BC _ErrInvalid
.dl errnosupport ;$44BF _ErrBreak
.dl errnosupport ;$44C2 _ErrStat
.dl errnosupport ;$44C5 _ErrSignChange
.dl errnosupport ;$44C8 _ErrIterations
.dl errnosupport ;$44CB _ErrBadGuess
.dl errnosupport ;$44CE _ErrTolTooSmall
.dl errnosupport ;$44D1 _ErrStatPlot
.dl errnosupport ;$44D4 _ErrLinkXmit
.dl errnosupport ;$44D7 _JError
.dl errnosupport ;$44DA _noErrorEntry
.dl errnosupport ;$44DD _pushErrorHandleR
.dl errnosupport ;$44E0 _popErrorHandleR
.dl errnosupport ;$44E3 _strcopy
.dl errnosupport ;$44E6 _strCat
.dl errnosupport ;$44E9 _isInSet
.dl errnosupport ;$44EC _sDone
.dl errnosupport ;$44EF _serrort
.dl errnosupport ;$44F2 _sNameEq
.dl errnosupport ;$44F5 _sUnderScr
.dl errnosupport ;$44F8 _sFAIL
.dl errnosupport ;$44FB _sName
.dl errnosupport ;$44FE _sOK
.dl PutMap ;$4501 _PutMap
.dl PutC ;$4504 _PutC
.dl DispHL ;$4507 _DispHL
.dl PutS ;$450A _PutS
.dl errnosupport ;$450D _putpsb
.dl PutPS ;$4510 _PutPS
.dl errnosupport ;$4513 _wputps
.dl errnosupport ;$4516 _putbuf
.dl errnosupport ;$4519 _putbuf1
.dl errnosupport ;$451C _wputc
.dl errnosupport ;$451F _wputs
.dl errnosupport ;$4522 _wputsEOL
.dl errnosupport ;$4525 _wdispEOL
.dl errnosupport ;$4528 _whomeup
.dl errnosupport ;$452B _setNumWindow
.dl NewLine ;$452E _newline
.dl errnosupport ;$4531 _moveDown
.dl errnosupport ;$4534 _scrollUp
.dl errnosupport ;$4537 _shrinkWindow
.dl errnosupport ;$453A _moveUp
.dl errnosupport ;$453D _scrollDown
.dl ClrLCDFull ;$4540 _ClrLCDFull
.dl errnosupport ;$4543 _ClrLCD
.dl ClrScrnFull ;$4546 _ClrScrnFull
.dl errnosupport ;$4549 _ClrScrn
.dl ClrTxtShd ;$454C _ClrTxtShd
.dl errnosupport ;$454F _ClrWindow
.dl errnosupport ;$4552 _EraseEOL
.dl errnosupport ;$4555 _EraseEOW
.dl HomeUp ;$4558 _HomeUp
.dl errnosupport ;$455B _getcurloc
.dl VPutMap ;$455E _VPutMap
.dl VPutS ;$4561 _VPutS
.dl VPutSN ;$4564 _VPutSN
.dl errnosupport ;$4567 _vputsnG
.dl errnosupport ;$456A _vputsnT
.dl errnosupport ;$456D _RunIndicOn
.dl errnosupport ;$4570 _RunIndicOff
.dl errnosupport ;$4573 _saveCmdShadow
.dl errnosupport ;$4576 _saveShadow
.dl errnosupport ;$4579 _rstrShadow
.dl errnosupport ;$457C _rstrpartial
.dl errnosupport ;$457F _rstrCurRow
.dl errnosupport ;$4582 _rstrUnderMenu
.dl errnosupport ;$4585 _rstrbotrow
.dl errnosupport ;$4588 _saveTR
.dl errnosupport ;$458B _restoreTR
.dl errnosupport ;$458E _GetKeyPress
.dl errnosupport ;$4591 _GetTokLen
.dl errnosupport ;$4594 _GET_TOK_STRNG
.dl errnosupport ;$4597 _GETTOKSTRING
.dl errnosupport ;$459A _PUTBPATBUF2
.dl errnosupport ;$459D _PUTBPATBUF
.dl errnosupport ;$45A0 _putbPAT
.dl errnosupport ;$45A3 _putcCheckScrolL
.dl errnosupport ;$45A6 _DispEOL
.dl errnosupport ;$45A9 _fdispEOL
.dl errnosupport ;$45AC _MAKEROWCMD
.dl errnosupport ;$45AF _TOTOSTRP
.dl errnosupport ;$45B2 _SETVARNAME
.dl errnosupport ;$45B5 _DispDone
.dl errnosupport ;$45B8 _finishoutput
.dl errnosupport ;$45BB _curBlink
.dl errnosupport ;$45BE _CursorOff
.dl errnosupport ;$45C1 _hideCursor
.dl errnosupport ;$45C4 _CursorOn
.dl errnosupport ;$45C7 _showCursor
.dl errnosupport ;$45CA _KeyToString
.dl errnosupport ;$45CD _PULLDOWNCHK
.dl errnosupport ;$45D0 _MenuCatCommon
.dl errnosupport ;$45D3 _ZIfCatalog
.dl errnosupport ;$45D6 _ZIfMatrixMenu
.dl errnosupport ;$45D9 _LoadMenuNum
.dl errnosupport ;$45DC _LoadMenuNumL
.dl errnosupport ;$45DF _MenCatRet
.dl errnosupport ;$45E2 _MenuSwitchContext
.dl errnosupport ;$45E5 _MenuEdKey
.dl errnosupport ;$45E8 _BackUpGraphSettings
.dl errnosupport ;$45EB _notalphnum
.dl errnosupport ;$45EE _SaveSavedFlags
.dl errnosupport ;$45F1 _SetMenuFlags
.dl errnosupport ;$45F4 _RstrSomeFlags
.dl errnosupport ;$45F7 _RstrOScreen
.dl errnosupport ;$45FA _SaveOScreen
.dl errnosupport ;$45FD _dispListName
.dl errnosupport ;$4600 _PrevContext
.dl errnosupport ;$4603 _CompareContext
.dl errnosupport ;$4606 _AdrMRow
.dl errnosupport ;$4609 _AdrMEle
.dl errnosupport ;$460C _GETMATOP1A
.dl errnosupport ;$460F _GETM1TOOP1
.dl errnosupport ;$4612 _GETM1TOP1A
.dl errnosupport ;$4615 _GetMToOP1
.dl errnosupport ;$4618 _PUTTOM1A
.dl errnosupport ;$461B _PUTTOMA1
.dl errnosupport ;$461E _PutToMat
.dl errnosupport ;$4621 _MAT_EL_DIV
.dl errnosupport ;$4624 _CMATFUN
.dl errnosupport ;$4627 _ROWECH_POLY
.dl errnosupport ;$462A _ROWECHELON
.dl errnosupport ;$462D _AdrLEle
.dl errnosupport ;$4630 _GETL1TOOP1
.dl errnosupport ;$4633 _GETL1TOP1A
.dl errnosupport ;$4636 _GetLToOP1
.dl errnosupport ;$4639 _GETL1TOOP2
.dl errnosupport ;$463C _GETL1TOP2A
.dl errnosupport ;$463F _GETL2TOP1A
.dl errnosupport ;$4642 _PUTTOLA1
.dl errnosupport ;$4645 _PutToL
.dl errnosupport ;$4648 _MAXMINLST
.dl errnosupport ;$464B _LLOW
.dl errnosupport ;$464E _LHIGH
.dl errnosupport ;$4651 _LSUM
.dl errnosupport ;$4654 CUMSUM
.dl errnosupport ;$4657 _ToFrac
.dl errnosupport ;$465A _SEQSET
.dl errnosupport ;$465D _SEQSOLVE
.dl errnosupport ;$4660 _CMP_NUM_INIT
.dl errnosupport ;$4663 _BinOPExec
.dl errnosupport ;$4666 _EXMEAN1
.dl errnosupport ;$4669 _SET2MVLPTRS
.dl errnosupport ;$466C _SETMAT1
.dl errnosupport ;$466F _CREATETLIST
.dl errnosupport ;$4672 _UnOPExec
.dl errnosupport ;$4675 _ThreeExec
.dl errnosupport ;$4678 _RESTOREERRNO
.dl errnosupport ;$467B _FourExec
.dl errnosupport ;$467E _FiveExec
.dl errnosupport ;$4681 _CPYTO2ES1
.dl errnosupport ;$4684 _CPYTO6ES1
.dl errnosupport ;$4687 _CPYTO1ES1
.dl errnosupport ;$468A _CPYTO3ES1
.dl errnosupport ;$468D _CPYTO3ES2
.dl errnosupport ;$4690 _CPYTO2ES2
.dl errnosupport ;$4693 _CPYTO1ES2
.dl errnosupport ;$4696 _CPYTO2ES3
.dl errnosupport ;$4699 _CPYTO1ES3
.dl errnosupport ;$469C _CPYTO3ES4
.dl errnosupport ;$469F _CPYTO6ES3
.dl errnosupport ;$46A2 _CPYTO2ES4
.dl errnosupport ;$46A5 _CPYTO1ES4
.dl errnosupport ;$46A8 _CPYTO2ES5
.dl errnosupport ;$46AB _CPYTO1ES5
.dl errnosupport ;$46AE _CPYTO4EST
.dl errnosupport ;$46B1 _CPYTO2EST
.dl errnosupport ;$46B4 _CPYTO1EST
.dl errnosupport ;$46B7 _CPYTO2ES6
.dl errnosupport ;$46BA _CPYTO1ES6
.dl errnosupport ;$46BD _CPYTO2ES7
.dl errnosupport ;$46C0 _CPYTO1ES7
.dl errnosupport ;$46C3 _CPYTO2ES8
.dl errnosupport ;$46C6 _CPYTO1ES8
.dl errnosupport ;$46C9 _CPYTO1ES9
.dl errnosupport ;$46CC _CPYTO2ES9
.dl errnosupport ;$46CF _CPYTO2ES10
.dl errnosupport ;$46D2 _CPYTO1ES10
.dl errnosupport ;$46D5 _CPYTO2ES11
.dl errnosupport ;$46D8 _CPYTO1ES11
.dl errnosupport ;$46DB _CPYTO2ES12
.dl errnosupport ;$46DE _CPYTO1ES12
.dl errnosupport ;$46E1 _CPYTO2ES13
.dl errnosupport ;$46E4 _CPYTO1ES13
.dl errnosupport ;$46E7 _CPYTO1ES14
.dl errnosupport ;$46EA _CPYTO1ES16
.dl errnosupport ;$46ED _CPYTO1ES17
.dl errnosupport ;$46F0 _CPYTO1ES18
.dl errnosupport ;$46F3 _CPYTO1ES15
.dl errnosupport ;$46F6 _CPYTO2ES15
.dl errnosupport ;$46F9 _CPYO1TOEST
.dl errnosupport ;$46FC _CPYO1TOES1
.dl errnosupport ;$46FF _CPYO6TOES1
.dl errnosupport ;$4702 _CPYO6TOES3
.dl errnosupport ;$4705 _CPYO1TOES2
.dl errnosupport ;$4708 _CPYO2TOES2
.dl errnosupport ;$470B _CPYO1TOES3
.dl errnosupport ;$470E _CPYO1TOES4
.dl errnosupport ;$4711 _CPYO1TOES5
.dl errnosupport ;$4714 _CPYO1TOES6
.dl errnosupport ;$4717 _CPYO1TOES7
.dl errnosupport ;$471A _CPYO2TOES4
.dl errnosupport ;$471D _CPYO2TOES5
.dl errnosupport ;$4720 _CPYO2TOES6
.dl errnosupport ;$4723 _CPYO2TOES7
.dl errnosupport ;$4726 _CPYO2TOES8
.dl errnosupport ;$4729 _CPYO2TOES9
.dl errnosupport ;$472C _CPYO1TOES8
.dl errnosupport ;$472F _CPYO1TOES9
.dl errnosupport ;$4732 _CPYO1TOES10
.dl errnosupport ;$4735 _CPYO1TOES11
.dl errnosupport ;$4738 _CPYO1TOES12
.dl errnosupport ;$473B _CPYO1TOES13
.dl errnosupport ;$473E _CPYO1TOES14
.dl errnosupport ;$4741 _CPYO1TOES15
.dl errnosupport ;$4744 _EVALF3A
.dl errnosupport ;$4747 _GetK
.dl errnosupport ;$474A _setTitle
.dl errnosupport ;$474D _dispVarVal
.dl errnosupport ;$4750 _RecallEd
.dl errnosupport ;$4753 _createNumEditBuf
.dl errnosupport ;$4756 _ProcessBufKeys
.dl errnosupport ;$4759 _CallCommon
.dl errnosupport ;$475C _CommonKeys
.dl errnosupport ;$475F _Leftmore
.dl errnosupport ;$4762 _fDel
.dl errnosupport ;$4765 _fClear
.dl errnosupport ;$4768 _finsDisp
.dl errnosupport ;$476B _FinsDisp02
.dl errnosupport ;$476E _closeeditbufnor
.dl errnosupport ;$4771 _releaseBuffer
.dl errnosupport ;$4774 _varnameToOP1hl
.dl errnosupport ;$4777 _nameToOP1
.dl errnosupport ;$477A _numPPutAway
.dl errnosupport ;$477D _numRedisp
.dl errnosupport ;$4780 _numError02
.dl Load_SFont ;$4783 _Load_SFont
.dl SFont_Len ;$4786 _SFont_Len
.dl errnosupport ;$4789 _InitNumVec
.dl SetXXOp1 ;$478C _SetXXOP1
.dl SetXXOp2 ;$478F _SetXXOP2
.dl SetXXXXOP2 ;$4792 _SetXXXXOP2
.dl errnosupport ;$4795 _UCLineS
.dl errnosupport ;$4798 _CLine
.dl errnosupport ;$479B _CLineS
.dl errnosupport ;$479E _XRootY
.dl errnosupport ;$47A1 _YToX
.dl errnosupport ;$47A4 _ZmStats
.dl errnosupport ;$47A7 _POINT_STAT_HLP
.dl errnosupport ;$47AA _DRAWSPLOT
.dl errnosupport ;$47AD _INITNEWTRACEP
.dl errnosupport ;$47B0 _SPLOTCOORD
.dl errnosupport ;$47B3 _SPLOTRIGHT
.dl errnosupport ;$47B6 _SPLOTLEFT
.dl errnosupport ;$47B9 _CMPBOXINFO
.dl errnosupport ;$47BC _NEXTPLOT
.dl errnosupport ;$47BF _PREVPLOT
.dl errnosupport ;$47C2 _CLRPREVPLOT
.dl errnosupport ;$47C5 _PUT_INDEX_LST
.dl errnosupport ;$47C8 _GET_INDEX_LST
.dl errnosupport ;$47CB _HEAP_SORT
.dl errnosupport ;$47CE _StoGDB2
.dl errnosupport ;$47D1 _RclGDB2
.dl errnosupport ;$47D4 _CircCmd
.dl errnosupport ;$47D7 _GrphCirc
.dl Mov18B ;$47DA _Mov18B
.dl errnosupport ;$47DD _DarkLine
.dl errnosupport ;$47E0 _ILine
.dl errnosupport ;$47E3 _IPoint
.dl errnosupport ;$47E6 _XYRNDBOTH
.dl errnosupport ;$47E9 _XYRND
.dl errnosupport ;$47EC _CheckTOP
.dl errnosupport ;$47EF _CheckXY
.dl errnosupport ;$47F2 _DarkPnt
.dl errnosupport ;$47F5 _CPointS
.dl errnosupport ;$47F8 _WTOV
.dl errnosupport ;$47FB _VtoWHLDE
.dl errnosupport ;$47FE _Xitof
.dl errnosupport ;$4801 _YftoI
.dl errnosupport ;$4804 _XftoI
.dl errnosupport ;$4807 _TraceOff
.dl errnosupport ;$480A _GrRedisp
.dl errnosupport ;$480D _GDISPTOKEN
.dl errnosupport ;$4810 _GRDECODA
.dl errnosupport ;$4813 _LABCOOR
.dl errnosupport ;$4816 _COORDISP
.dl errnosupport ;$4819 _TMPEQUNOSRC
.dl errnosupport ;$481C _GRLABELS
.dl errnosupport ;$481F _YPIXSET
.dl errnosupport ;$4822 _XPIXSET
.dl errnosupport ;$4825 _COPYRNG
.dl errnosupport ;$4828 _VALCUR
.dl errnosupport ;$482B _GRPUTAWAY
.dl errnosupport ;$482E _RSTGFLAGS
.dl errnosupport ;$4831 _GRReset
.dl errnosupport ;$4834 _XYCENT
.dl errnosupport ;$4837 _ZOOMXYCMD
.dl errnosupport ;$483A _CPTDELY
.dl errnosupport ;$483D _CPTDELX
.dl errnosupport ;$4840 _SetFuncM
.dl errnosupport ;$4843 _SetSeqM
.dl errnosupport ;$4846 _SetPolM
.dl errnosupport ;$4849 _SetParM
.dl errnosupport ;$484C _ZmInt
.dl errnosupport ;$484F _ZmDecml
.dl errnosupport ;$4852 _ZmPrev
.dl errnosupport ;$4855 _ZmUsr
.dl errnosupport ;$4858 _SETUZM
.dl errnosupport ;$485B _ZmFit
.dl errnosupport ;$485E _ZmSquare
.dl errnosupport ;$4861 _ZmTrig
.dl errnosupport ;$4864 _SetXMinMax
.dl errnosupport ;$4867 _ZooDefault
.dl GrBufCpy ;$486A _GrBufCpy
.dl errnosupport ;$486D _DRAWSPLITLINE
.dl errnosupport ;$4870 _RestoreDisp
.dl errnosupport ;$4873 _FNDDB
.dl errnosupport ;$4876 _AllEq
.dl errnosupport ;$4879 _fndallseleq
.dl errnosupport ;$487C _NEXTEQ
.dl errnosupport ;$487F _PREVEQ
.dl errnosupport ;$4882 _BLINKGCUR
.dl errnosupport ;$4885 _NBCURSOR
.dl errnosupport ;$4888 _STATMARK
.dl errnosupport ;$488B _CHKTEXTCURS
.dl errnosupport ;$488E _Regraph
.dl errnosupport ;$4891 _DOREFFLAGS02
.dl errnosupport ;$4894 INITNSEQ
.dl errnosupport ;$4897 _YRES
.dl errnosupport ;$489A _Ceiling
.dl errnosupport ;$489D _PutXY
.dl errnosupport ;$48A0 _PUTEQUNO
.dl errnosupport ;$48A3 _PDspGrph
.dl errnosupport ;$48A6 _HorizCmd
.dl errnosupport ;$48A9 _VertCmd
.dl errnosupport ;$48AC _LineCmd
.dl errnosupport ;$48AF _UnLineCmd
.dl errnosupport ;$48B2 _PointCmd
.dl errnosupport ;$48B5 _PixelTest
.dl errnosupport ;$48B8 _PixelCmd
.dl errnosupport ;$48BB _TanLnF
.dl errnosupport ;$48BE _DRAWCMD_INIT
.dl errnosupport ;$48C1 _DrawCmd
.dl errnosupport ;$48C4 _SHADECMD
.dl errnosupport ;$48C7 _InvCmd
.dl errnosupport ;$48CA _STATSHADE
.dl errnosupport ;$48CD _dspmattable
.dl errnosupport ;$48D0 _dsplsts
.dl errnosupport ;$48D3 _closeEditBuf
.dl errnosupport ;$48D6 _parseEditBuf
.dl errnosupport ;$48D9 _putsm
.dl errnosupport ;$48DC _DspCurTbl
.dl errnosupport ;$48DF _DSPGRTBL
.dl errnosupport ;$48E2 _zeroTemplate
.dl errnosupport ;$48E5 _settblrefs
.dl errnosupport ;$48E8 _dispTblBot
.dl errnosupport ;$48EB _DispTblTop
.dl errnosupport ;$48EE _dispTblbody
.dl errnosupport ;$48F1 _VPUTBLANK
.dl errnosupport ;$48F4 _TBLTRACE
.dl errnosupport ;$48F7 _dispListNameY
.dl errnosupport ;$48FA _CurNameLength
.dl errnosupport ;$48FD _NameToBuf
.dl errnosupport ;$4900 _jpromptcursor
.dl errnosupport ;$4903 _BufLeft
.dl errnosupport ;$4906 _BufRight
.dl errnosupport ;$4909 _bufInsert
.dl errnosupport ;$490C _bufQueueChar
.dl errnosupport ;$490F _BufReplace
.dl errnosupport ;$4912 _BufDelete
.dl errnosupport ;$4915 _BUFPEEK
.dl errnosupport ;$4918 _BUFPEEK1
.dl errnosupport ;$491B _BUFPEEK2
.dl errnosupport ;$491E _BUFPEEK3
.dl errnosupport ;$4921 _BufToBtm
.dl errnosupport ;$4924 _setupEditEqu
.dl errnosupport ;$4927 _BufToTop
.dl errnosupport ;$492A _isEditFull
.dl errnosupport ;$492D _IsEditEmpty
.dl errnosupport ;$4930 _IsAtTop
.dl errnosupport ;$4933 _IsAtBtm
.dl errnosupport ;$4936 _BufClear
.dl errnosupport ;$4939 _JcursorFirst
.dl errnosupport ;$493C _JcursorLast
.dl errnosupport ;$493F _CursorLeft
.dl errnosupport ;$4942 _cursorRight
.dl errnosupport ;$4945 _cursorUp
.dl errnosupport ;$4948 _CursorDown
.dl errnosupport ;$494B _cursorToOffset
.dl errnosupport ;$494E _InsDisp
.dl errnosupport ;$4951 _FDISPBOL1
.dl errnosupport ;$4954 _FDISPBOL
.dl errnosupport ;$4957 _DispEOW
.dl errnosupport ;$495A _DispHead
.dl errnosupport ;$495D _DispTail
.dl errnosupport ;$4960 _PutTokString
.dl errnosupport ;$4963 _setupEditCmd
.dl errnosupport ;$4966 _setEmptyEditEqu
.dl errnosupport ;$4969 _SetEmptyEditPtr
.dl errnosupport ;$496C _CloseEditEqu
.dl errnosupport ;$496F _GetPrevTok
.dl errnosupport ;$4972 _getkey
.dl errnosupport ;$4975 _canIndic
.dl errnosupport ;$4978 _LCD_DRIVERON
.dl errnosupport ;$497B _DFMIN2
.dl errnosupport ;$497E _formDisp
.dl errnosupport ;$4981 _formMatrix
.dl errnosupport ;$4984 _wscrollLeft
.dl errnosupport ;$4987 _wscrollUp
.dl errnosupport ;$498A _wscrollDown
.dl errnosupport ;$498D _wscrollRight
.dl errnosupport ;$4990 _FormEReal
.dl errnosupport ;$4993 _formERealTOK
.dl errnosupport ;$4996 _FormDCplx
.dl errnosupport ;$4999 _FormReal
.dl errnosupport ;$499C _formScrollUp
.dl errnosupport ;$499F _setwinabove
.dl errnosupport ;$49A2 _disarmScroll
.dl errnosupport ;$49A5 _OP1toEdit
.dl errnosupport ;$49A8 _MinToEdit
.dl errnosupport ;$49AB _rclVarToEdit
.dl errnosupport ;$49AE _rclVarToEditPtR
.dl errnosupport ;$49B1 _RCLENTRYTOEDIT
.dl errnosupport ;$49B4 _rclToQueue
.dl errnosupport ;$49B7 _FORMTOTOK
.dl errnosupport ;$49BA _DISP_INTERVAL
.dl errnosupport ;$49BD _DisplstName
.dl errnosupport ;$49C0 _dispSLstNameHL
.dl errnosupport ;$49C3 _EditEqu
.dl errnosupport ;$49C6 _closeEquField
.dl errnosupport ;$49C9 _AutoSelect
.dl errnosupport ;$49CC _DISPYEOS
.dl errnosupport ;$49CF _dispNumEOS
.dl errnosupport ;$49D2 _setupdispeq
.dl errnosupport ;$49D5 _DispForward
.dl errnosupport ;$49D8 _DispYPrompt2
.dl errnosupport ;$49DB _stringwidth
.dl errnosupport ;$49DE _dispErrorScreen
.dl errnosupport ;$49E1 _POPCX
.dl errnosupport ;$49E4 _loadnoeentry
.dl errnosupport ;$49E7 _SaveScreen
.dl errnosupport ;$49EA _RETSCREEN
.dl errnosupport ;$49ED _RetScreenErr
.dl errnosupport ;$49F0 _CheckSplitFlag
.dl errnosupport ;$49F3 _SolveRedisp
.dl errnosupport ;$49F6 _SolveDisp
.dl errnosupport ;$49F9 _itemName
.dl errnosupport ;$49FC _SetNorm_Vals
.dl errnosupport ;$49FF _SetYOffset
.dl errnosupport ;$4A02 _ConvKeyToTok
.dl errnosupport ;$4A05 _ConvFCKeyToTok
.dl errnosupport ;$4A08 _ConvFEKeyToTok
.dl errnosupport ;$4A0B _TokToKey
.dl errnosupport ;$4A0E _SendSkipExitPacket
.dl errnosupport ;$4A11 _GETVARCMD
.dl errnosupport ;$4A14 _SendVarCmd
.dl errnosupport ;$4A17 _SendScreenshot
.dl errnosupport ;$4A1A keyscnlnk
.dl errnosupport ;$4A1D _DeselectAllVars
.dl errnosupport ;$4A20 _DelRes
.dl errnosupport ;$4A23 _ConvLcToLr
.dl errnosupport ;$4A26 _RedimMat
.dl errnosupport ;$4A29 _IncLstSize
.dl errnosupport ;$4A2C _InsertList
.dl errnosupport ;$4A2F _dellistel
.dl errnosupport ;$4A32 _EditProg
.dl errnosupport ;$4A35 _CloseProg
.dl errnosupport ;$4A38 _ClrGraphRef
.dl errnosupport ;$4A3B _FixTempCnt
.dl errnosupport ;$4A3E _SAVEDATA
.dl errnosupport ;$4A41 _RESTOREDATA
.dl errnosupport ;$4A44 _FindAlphaUp
.dl errnosupport ;$4A47 _FindAlphaDn
.dl errnosupport ;$4A4A _CmpSyms
.dl errnosupport ;$4A4D _CREATETEMP
.dl errnosupport ;$4A50 _CleanAll
.dl errnosupport ;$4A53 _MoveToNextSym
.dl errnosupport ;$4A56 _ConvLrToLc
.dl errnosupport ;$4A59 _TblScreenDn
.dl errnosupport ;$4A5C _TblScreenUp
.dl errnosupport ;$4A5F _SCREENUP
.dl errnosupport ;$4A62 _ScreenUpDown
.dl errnosupport ;$4A65 _ZifRclHandler
.dl errnosupport ;$4A68 _zifrclkapp
.dl errnosupport ;$4A6B _RCLKEY
.dl errnosupport ;$4A6E _RCLREGEQ_CALL
.dl errnosupport ;$4A71 _RCLREGEQ
.dl errnosupport ;$4A74 _initNamePrompt
.dl errnosupport ;$4A77 _NamePrompt2
.dl errnosupport ;$4A7A _CATALOGCHK
.dl errnosupport ;$4A7D _clrTR
.dl errnosupport ;$4A80 _QUAD
.dl errnosupport ;$4A83 _GRAPHQUAD
.dl errnosupport ;$4A86 _BC2NOREAL
.dl errnosupport ;$4A89 _ErrNonReal_FPST_FPS1
.dl errnosupport ;$4A8C _ErrNonReal
.dl errnosupport ;$4A8F _WRITE_TEXT
.dl errnosupport ;$4A92 _FORSEQINIT
.dl errnosupport ;$4A95 _GRPHPARS
.dl errnosupport ;$4A98 _PLOTPARS
.dl errnosupport ;$4A9B _ParseInp
.dl errnosupport ;$4A9E _PARSEOFF
.dl errnosupport ;$4AA1 _PARSESCAN
.dl errnosupport ;$4AA4 _GETPARSE
.dl errnosupport ;$4AA7 _SAVEPARSE
.dl errnosupport ;$4AAA _InitPFlgs
.dl errnosupport ;$4AAD _CKENDLINERR
.dl OP2Set60 ;$4AB0 _OP2Set60
.dl errnosupport ;$4AB3 _GETSTATPTR
.dl errnosupport ;$4AB6 _CMP_STATPTR
.dl errnosupport ;$4AB9 _VARSYSADR
.dl errnosupport ;$4ABC _StoSysTok
.dl errnosupport ;$4ABF _StoAns
.dl errnosupport ;$4AC2 _StoTheta
.dl errnosupport ;$4AC5 _StoR
.dl errnosupport ;$4AC8 _StoY
.dl errnosupport ;$4ACB _StoN
.dl errnosupport ;$4ACE _StoT
.dl errnosupport ;$4AD1 _StoX
.dl errnosupport ;$4AD4 _StoOther
.dl errnosupport ;$4AD7 _RclAns
.dl errnosupport ;$4ADA _RclY
.dl errnosupport ;$4ADD _RclN
.dl errnosupport ;$4AE0 _RclX
.dl errnosupport ;$4AE3 _RclVarSym
.dl errnosupport ;$4AE6 _RclSysTok
.dl errnosupport ;$4AE9 _StMatEl
.dl errnosupport ;$4AEC _STLSTVECEL
.dl errnosupport ;$4AEF _ConvOP1
.dl errnosupport ;$4AF2 _Find_Parse_Formula
.dl errnosupport ;$4AF5 _PARSE_FORMULA
.dl errnosupport ;$4AF8 _FetchQuotedString
.dl errnosupport ;$4AFB _FetchNumLine
.dl errnosupport ;$4AFE _ParseNameTokens
.dl errnosupport ;$4B01 _ParseInpGraph
.dl errnosupport ;$4B04 _ParseInpGraphReset
.dl errnosupport ;$4B07 _ParseInpLastEnt
.dl errnosupport ;$4B0A _ErrOnCertainTypes
.dl errnosupport ;$4B0D _CreatePair
.dl errnosupport ;$4B10 _PUSHNUM
.dl errnosupport ;$4B13 _INCCURPCERREND
.dl errnosupport ;$4B16 _ERREND
.dl errnosupport ;$4B19 _COMMAERRF
.dl errnosupport ;$4B1C _COMMAERR
.dl errnosupport ;$4B1F _STEQARG2
.dl errnosupport ;$4B22 _STEQARG
.dl errnosupport ;$4B25 _INPARG
.dl errnosupport ;$4B28 _STEQARG3
.dl errnosupport ;$4B2B _NXTFETCH
.dl errnosupport ;$4B2E _CKFETCHVAR
.dl errnosupport ;$4B31 _FETCHVARA
.dl errnosupport ;$4B34 _FETCHVAR
.dl errnosupport ;$4B37 _CKENDLIN
.dl errnosupport ;$4B3A _CKENDEXP
.dl errnosupport ;$4B3D _CKPARSEND
.dl errnosupport ;$4B40 _STOTYPEARG
.dl errnosupport ;$4B43 _ConvDim
.dl errnosupport ;$4B46 _ConvDim00
.dl errnosupport ;$4B49 _AHEADEQUAL
.dl errnosupport ;$4B4C _PARSAHEADS
.dl errnosupport ;$4B4F _PARSAHEAD
.dl errnosupport ;$4B52 _AnsName
.dl errnosupport ;$4B55 _STOCMPREALS
.dl errnosupport ;$4B58 _GETDEPTR
.dl errnosupport ;$4B5B _PUSH2BOPER
.dl errnosupport ;$4B5E _POP2BOPER
.dl errnosupport ;$4B61 _PUSHOPER
.dl errnosupport ;$4B64 _POPOPER
.dl errnosupport ;$4B67 _FIND_E_UNDEF
.dl errnosupport ;$4B6A _STTMPEQ
.dl errnosupport ;$4B6D _FINDEOL
.dl errnosupport ;$4B70 _BRKINC
.dl errnosupport ;$4B73 _INCFETCH
.dl errnosupport ;$4B76 _CURFETCH
.dl errnosupport ;$4B79 _Random
.dl errnosupport ;$4B7C _StoRand
.dl errnosupport ;$4B7F _RandInit
.dl errnosupport ;$4B82 _resetStacks
.dl errnosupport ;$4B85 _Factorial
.dl errnosupport ;$4B88 _YONOFF
.dl errnosupport ;$4B8B _EQSELUNSEL
.dl errnosupport ;$4B8E _ITSOLVER
.dl errnosupport ;$4B91 _GRITSOLVER
.dl errnosupport ;$4B94 _ITSOLVERB
.dl errnosupport ;$4B97 _ITSOLVERNB
.dl errnosupport ;$4B9A _ExTest_INT
.dl errnosupport ;$4B9D
.dl errnosupport ;$4BA0 _LogGamma
.dl errnosupport ;$4BA3 _OneVar
.dl errnosupport ;$4BA6 _ONEVARS_0
.dl errnosupport ;$4BA9 _ORDSTAT
.dl errnosupport ;$4BAC _INITSTATANS2
.dl errnosupport ;$4BAF _ANOVA_SPEC
.dl errnosupport ;$4BB2 _OutputExpr
.dl errnosupport ;$4BB5 _CentCursor
.dl errnosupport ;$4BB8 _TEXT
.dl errnosupport ;$4BBB _FINISHSPEC
.dl errnosupport ;$4BBE _TRCYFUNC
.dl errnosupport ;$4BC1 _RCL_SEQ_X
.dl errnosupport ;$4BC4 _RCLSEQ2
.dl errnosupport ;$4BC7 _GRPPutAway
.dl errnosupport ;$4BCA _CKVALDELX
.dl errnosupport ;$4BCD _CKVALDELTA
.dl GrBufClr ;$4BD0 _GrBufClr
.dl errnosupport ;$4BD3 _GRBUFCPY_V
.dl errnosupport ;$4BD6 _FNDSELEQ
.dl errnosupport ;$4BD9 _CLRGRAPHXY
.dl errnosupport ;$4BDC _NEDXT_Y_STYLE
.dl errnosupport ;$4BDF _PLOTPT
.dl errnosupport ;$4BE2 _NEWINDEP
.dl errnosupport ;$4BE5 _Axes
.dl errnosupport ;$4BE8 _setPenX
.dl errnosupport ;$4BEB _setPenY
.dl errnosupport ;$4BEE _setPenT
.dl errnosupport ;$4BF1 _TAN_EQU_DISP
.dl errnosupport ;$4BF4 _PutAns
.dl errnosupport ;$4BF7 _DispOP1A
.dl errnosupport ;$4BFA _MATHTANLN
.dl errnosupport ;$4BFD _ENDDRAW
.dl errnosupport ;$4C00 _SetTblGraphDraw
.dl errnosupport ;$4C03 _StartDialog
.dl errnosupport ;$4C06 _DialogInit
.dl errnosupport ;$4C09 _GetDialogNumOP1
.dl errnosupport ;$4C0C _SetDialogNumOP1
.dl errnosupport ;$4C0F _GetDialogNumHL
.dl errnosupport ;$4C12 _ErrArgumentO123
.dl errnosupport ;$4C15 _SetDialogKeyOverride
.dl errnosupport ;$4C18 _ResDialogKeyOverride
.dl errnosupport ;$4C1B _ForceDialogKeypress
.dl errnosupport ;$4C1E _DialogStartGetKey
.dl errnosupport ;$4C21 _StartDialog_Override
.dl errnosupport ;$4C24 _CallDialogCallback
.dl errnosupport ;$4C27 _SetDialogCallback
.dl errnosupport ;$4C2A _ResDialogCallback
.dl errnosupport ;$4C2D _CopyDialogNum
.dl MemClear ;$4C30 _MemClear
.dl MemSet ;$4C33 _MemSet
.dl errnosupport ;$4C36 _ReloadAppEntryVecs
.dl errnosupport ;$4C39 _PointOn
.dl errnosupport ;$4C3C _ExecuteNewPrgm
.dl errnosupport ;$4C3F _StrLength
.dl errnosupport ;$4C42 _VPutMapRec
.dl errnosupport ;$4C45 _getRomPage
.dl errnosupport ;$4C48 _FindAppUp
.dl errnosupport ;$4C4B _FindAppDn
.dl errnosupport ;$4C4E _FindApp
.dl errnosupport ;$4C51 _ExecuteApp
.dl errnosupport ;$4C54 _MonReset
.dl errnosupport ;$4C57 _ClearParseVar
.dl errnosupport ;$4C5A _SetParseVarProg
.dl errnosupport ;$4C5D _isContextKey
.dl errnosupport ;$4C60 _IBounds
.dl errnosupport ;$4C63 _IOffset
.dl errnosupport ;$4C66 _DrawCirc2
.dl errnosupport ;$4C69 _CanAlphIns
.dl errnosupport ;$4C6C cxRedisp
.dl errnosupport ;$4C6F _GetBaseVer
.dl errnosupport ;$4C72 _OPSet0DE
.dl errnosupport ;$4C75 _AppGetCbl
.dl errnosupport ;$4C78 _AppGetCalc
.dl errnosupport ;$4C7B _SaveDisp
.dl errnosupport ;$4C7E _SetIgnoreKey
.dl errnosupport ;$4C81 _SetSendThisKeyBack
.dl errnosupport ;$4C84 _DisableApd
.dl errnosupport ;$4C87 _EnableApd
.dl errnosupport ;$4C8A _JForceCmdNoChar2
.dl errnosupport ;$4C8D _set2IY34
.dl errnosupport ;$4C90 _forcecmd
.dl errnosupport ;$4C93 _ApdSetup
.dl errnosupport ;$4C96 _Get_NumKey
.dl errnosupport ;$4C99 _AppSetup
.dl errnosupport ;$4C9C _HandleLinkKeyActivity
.dl errnosupport ;$4C9F _JForceCmdNoChar3
.dl errnosupport ;$4CA2 _ReleaseSedit
.dl errnosupport ;$4CA5 _initsmalleditline
.dl errnosupport ;$4CA8 _startsmalledit
.dl errnosupport ;$4CAB
.dl errnosupport ;$4CAE _SGetTokString
.dl LoadPattern ;$4CB1 _LoadPattern
.dl SStringLength ;$4CB4 _SStringLength
.dl errnosupport ;$4CB7 _RestorePenCol
.dl errnosupport ;$4CBA
.dl errnosupport ;$4CBD _DoNothing
.dl errnosupport ;$4CC0 _ForceSmallEditReturn
.dl errnosupport ;$4CC3
.dl errnosupport ;$4CC6
.dl errnosupport ;$4CC9
.dl errnosupport ;$4CCC
.dl errnosupport ;$4CCF _VEraseEOL
.dl errnosupport ;$4CD2
.dl errnosupport ;$4CD5
.dl errnosupport ;$4CD8 _GoToErr
.dl errnosupport ;$4CDB _initsmalleditBox
.dl errnosupport ;$4CDE
.dl errnosupport ;$4CE1 _EmptyHook
.dl errnosupport ;$4CE4 _ForceSmallEditReturn2
.dl errnosupport ;$4CE7
.dl errnosupport ;$4CEA
.dl errnosupport ;$4CED _ClearRow
.dl errnosupport ;$4CF0
.dl errnosupport ;$4CF3
.dl errnosupport ;$4CF6
.dl errnosupport ;$4CF9
.dl errnosupport ;$4CFC
.dl errnosupport ;$4CFF
.dl errnosupport ;$4D02
.dl errnosupport ;$4D05
.dl errnosupport ;$4D08
.dl errnosupport ;$4D0B
.dl errnosupport ;$4D0E
.dl errnosupport ;$4D11
.dl errnosupport ;$4D14
.dl errnosupport ;$4D17
.dl errnosupport ;$4D1A
.dl errnosupport ;$4D1D
.dl errnosupport ;$4D20
.dl errnosupport ;$4D23
.dl errnosupport ;$4D26 _AppScreenUpDown
.dl errnosupport ;$4D29 _AppScreenUpDown1
.dl errnosupport ;$4D2C
.dl errnosupport ;$4D2F _initsmalleditlinevar
.dl errnosupport ;$4D32 _initsmalleditlineop1
.dl errnosupport ;$4D35 _initsmalleditboxvar
.dl errnosupport ;$4D38 _initsmalleditboxop1
.dl errnosupport ;$4D3B
.dl errnosupport ;$4D3E _RestartDialog
.dl errnosupport ;$4D41 _ErrCustom1
.dl errnosupport ;$4D44 _ErrCustom2
.dl errnosupport ;$4D47 _AppStartMouse
.dl errnosupport ;$4D4A _AppStartMouseNoSetup
.dl errnosupport ;$4D4D _AppMouseGetKey
.dl errnosupport ;$4D50 _AppDispMouse
.dl errnosupport ;$4D53 _AppEraseMouse
.dl errnosupport ;$4D56 _AppSetupMouseMem
.dl errnosupport ;$4D59 _GetDispRowOffset
.dl errnosupport ;$4D5C _ClearRect
.dl errnosupport ;$4D5F _InvertRect
.dl errnosupport ;$4D62 _FillRect
.dl errnosupport ;$4D65 _AppUpdateMouse
.dl errnosupport ;$4D68 _AppDispPrevMouse
.dl errnosupport ;$4D6B
.dl errnosupport ;$4D6E _initcellbox
.dl errnosupport ;$4D71 _drawcell
.dl errnosupport ;$4D74
.dl errnosupport ;$4D77 _invertcell
.dl errnosupport ;$4D7A _setcelloverride
.dl errnosupport ;$4D7D _DrawRectBorder
.dl errnosupport ;$4D80 _ClearCell
.dl errnosupport ;$4D83 _covercell
.dl errnosupport ;$4D86 _EraseRectBorder
.dl errnosupport ;$4D89 _FillRectPattern
.dl errnosupport ;$4D8C _DrawRectBorderClear
.dl errnosupport ;$4D8F
.dl errnosupport ;$4D92
.dl errnosupport ;$4D95 _VerticalLine
.dl errnosupport ;$4D98 _IBoundsFull
.dl errnosupport ;$4D9B _DisplayImage
.dl errnosupport ;$4D9E
.dl errnosupport ;$4DA1
.dl errnosupport ;$4DA4 _AppUpdateMouseCoords
.dl errnosupport ;$4DA7 _ShiftBitsLeft
.dl errnosupport ;$4DAA
.dl errnosupport ;$4DAD
.dl errnosupport ;$4DB0
.dl errnosupport ;$4DB3
.dl errnosupport ;$4DB6
.dl errnosupport ;$4DB9
.dl errnosupport ;$4DBC
.dl errnosupport ;$4DBF _AppUpdateMouseRow
.dl errnosupport ;$4DC2 _AppDrawMouse
.dl errnosupport ;$4DC5 _AppDrawMouseDirect
.dl errnosupport ;$4DC8 _CPoint
.dl errnosupport ;$4DCB _DeleteApp
.dl errnosupport ;$4DCE _AppUpdateMouseXY
.dl errnosupport ;$4DD1 _setmodecellflag
.dl errnosupport ;$4DD4 _resetmodecellflag
.dl errnosupport ;$4DD7 _ismodecellset
.dl errnosupport ;$4DDA _getmodecellflag
.dl errnosupport ;$4DDD
.dl errnosupport ;$4DE0 _CellBoxManager
.dl errnosupport ;$4DE3 _startnewcell
.dl errnosupport ;$4DE6
.dl errnosupport ;$4DE9 _CellCursorHandle
.dl errnosupport ;$4DEC
.dl errnosupport ;$4DEF
.dl errnosupport ;$4DF2 _ClearCurCell
.dl errnosupport ;$4DF5 _drawcurcell
.dl errnosupport ;$4DF8 _invertcurcell
.dl errnosupport ;$4DFB _covercurcell
.dl errnosupport ;$4DFE _BlinkCell
.dl errnosupport ;$4E01 _BlinkCellNoLookUp
.dl errnosupport ;$4E04 _BlinkCurCell
.dl errnosupport ;$4E07 _BlinkCellToOn
.dl errnosupport ;$4E0A _BlinkCellToOnNoLookUp
.dl errnosupport ;$4E0D _BlinkCurCellToOn
.dl errnosupport ;$4E10 _BlinkCellToOff
.dl errnosupport ;$4E13 _BlinkCellToOffNoLookUp
.dl errnosupport ;$4E16 _BlinkCurCellToOff
.dl errnosupport ;$4E19 _getcurmodecellflag
.dl errnosupport ;$4E1C
.dl errnosupport ;$4E1F _startsmalleditreturn
.dl errnosupport ;$4E22
.dl errnosupport ;$4E25
.dl errnosupport ;$4E28 _CellkHandle
.dl errnosupport ;$4E2B _errchkalphabox
.dl errnosupport ;$4E2E
.dl errnosupport ;$4E31
.dl errnosupport ;$4E34
.dl errnosupport ;$4E37
.dl errnosupport ;$4E3A _eraseallcells
.dl errnosupport ;$4E3D _iscurmodecellset
.dl errnosupport ;$4E40
.dl errnosupport ;$4E43 _initalphabox
.dl errnosupport ;$4E46
.dl errnosupport ;$4E49
.dl errnosupport ;$4E4C _drawblnkcell
.dl errnosupport ;$4E4F _ClearBlnkCell
.dl errnosupport ;$4E52 _invertblnkcell
.dl errnosupport ;$4E55 _AppMouseForceKey
.dl errnosupport ;$4E58 _AppSetupMouseMemCoords
.dl errnosupport ;$4E5B _AppMoveMouse
.dl errnosupport ;$4E5E _GetStringInput
.dl errnosupport ;$4E61 _GetStringInput2
.dl errnosupport ;$4E64 _WaitEnterKeyValue
.dl errnosupport ;$4E67 _HorizontalLine
.dl errnosupport ;$4E6A _CreateAppVar
.dl errnosupport ;$4E6D _CreateProtProg
.dl errnosupport ;$4E70 _CreateVar
.dl errnosupport ;$4E73 _AsmComp
.dl errnosupport ;$4E76 _GetAsmSize
.dl errnosupport ;$4E79 _SquishPrgm
.dl errnosupport ;$4E7C _ExecutePrgm
.dl errnosupport ;$4E7F _ChkFindSymAsm
.dl errnosupport ;$4E82 _ParsePrgmName
.dl errnosupport ;$4E85 _CSub
.dl errnosupport ;$4E88 _CAdd
.dl errnosupport ;$4E8B _CSqaure
.dl errnosupport ;$4E8E _CMult
.dl errnosupport ;$4E91 _CRecip
.dl errnosupport ;$4E94 _CDiv
.dl errnosupport ;$4E97 _CAbs
.dl errnosupport ;$4E9A _AddSquares
.dl errnosupport ;$4E9D _CSqRoot
.dl errnosupport ;$4EA0 _CLN
.dl errnosupport ;$4EA3 _CLog
.dl errnosupport ;$4EA6 _CTenX
.dl errnosupport ;$4EA9 _CEtoX
.dl errnosupport ;$4EAC _CXrootY
.dl errnosupport ;$4EAF
.dl errnosupport ;$4EB2 _CYtoX
.dl errnosupport ;$4EB5 _InvertNonReal
.dl errnosupport ;$4EB8 _CplxMult
.dl errnosupport ;$4EBB _CplxDiv
.dl errnosupport ;$4EBE _CplxTrunc
.dl errnosupport ;$4EC1 _CplxFrac
.dl errnosupport ;$4EC4 _CplxFloor
.dl errnosupport ;$4EC7 _SendHeaderPacket
.dl errnosupport ;$4ECA _CancelTransmission
.dl errnosupport ;$4ECD _SendScreenContents
.dl errnosupport ;$4ED0 _SendRAMVarData
.dl errnosupport ;$4ED3 _SendRAMCmd
.dl errnosupport ;$4ED6 _SendPacket
.dl errnosupport ;$4ED9 _ReceiveAck
.dl errnosupport ;$4EDC _Send4BytePacket
.dl errnosupport ;$4EDF _SendDataByte
.dl errnosupport ;$4EE2 _Send4Bytes
.dl errnosupport ;$4EE5 _SendAByte
.dl errnosupport ;$4EE8 _SendCByte
.dl errnosupport ;$4EEB _GetSmallPacket
.dl errnosupport ;$4EEE _GetDataPacket
.dl errnosupport ;$4EF1 _SendAck
.dl errnosupport ;$4EF4 _Get4Bytes
.dl errnosupport ;$4EF7 _Get3Bytes
.dl errnosupport ;$4EFA _Rec1stByte
.dl errnosupport ;$4EFD _Rec1stByteNC
.dl errnosupport ;$4F00 _ContinueGetByte
.dl errnosupport ;$4F03 _RecAByteIO
.dl errnosupport ;$4F06 _ReceiveVar
.dl errnosupport ;$4F09 _ReceiveVarDataExists
.dl errnosupport ;$4F0C _ReceiveVarData
.dl errnosupport ;$4F0F _SrchVLstUp
.dl errnosupport ;$4F12 _SrchVLstDn
.dl errnosupport ;$4F15 _SendVariable
.dl errnosupport ;$4F18 _Get4BytesCursor
.dl errnosupport ;$4F1B _Get4BytesNC
.dl errnosupport ;$4F1E _Convert85List
.dl errnosupport ;$4F21 _SendDirectoryContents
.dl errnosupport ;$4F24 _SendReadyPacket
.dl errnosupport ;$4F27 _Convert85Real
.dl errnosupport ;$4F2A _ret_6
.dl errnosupport ;$4F2D _SendCertificate
.dl errnosupport ;$4F30 _SendApplication
.dl errnosupport ;$4F33 _SendOSHeader
.dl errnosupport ;$4F36 _SendOSPage
.dl errnosupport ;$4F39 _SendOS
.dl errnosupport ;$4F3C _FlashWriteDisable
.dl errnosupport ;$4F3F _SendCmd
.dl errnosupport ;$4F42 _SendOSValidationData
.dl errnosupport ;$4F45 _Disp
.dl errnosupport ;$4F48 _SendGetkeyPress
.dl errnosupport ;$4F4B _RejectCommand
.dl errnosupport ;$4F4E _CheckLinkLines
.dl errnosupport ;$4F51 _GetHookByte
.dl errnosupport ;$4F54 _GetBytePaged
.dl errnosupport ;$4F57 _cursorhook
.dl errnosupport ;$4F5A _call_library_hook
.dl errnosupport ;$4F5D _call_rawkey_hook
.dl errnosupport ;$4F60 _setCursorHook
.dl errnosupport ;$4F63 _EnableLibraryHook
.dl errnosupport ;$4F66 _SetGetKeyHook
.dl errnosupport ;$4F69 _ClrCursorHook
.dl errnosupport ;$4F6C _DisableLibraryHook
.dl errnosupport ;$4F6F _ClrRawKeyHook
.dl errnosupport ;$4F72 _ResetHookBytes
.dl errnosupport ;$4F75 _AdjustAllHooks
.dl errnosupport ;$4F78 _getkeyhook
.dl errnosupport ;$4F7B _SetGetcscHook
.dl errnosupport ;$4F7E _ClrGetKeyHook
.dl errnosupport ;$4F81 _call_linkactivity_hook
.dl errnosupport ;$4F84 _EnableLinkActivityHook
.dl errnosupport ;$4F87 _DisableLinkHook
.dl errnosupport ;$4F8A _GetSmallPacket2
.dl errnosupport ;$4F8D _EnableCatalog2Hook
.dl errnosupport ;$4F90 _DisableCatalog2Hook
.dl errnosupport ;$4F93 _EnableLocalizeHook
.dl errnosupport ;$4F96 _DisableLocalizeHook
.dl errnosupport ;$4F99 _SetTokenHook
.dl errnosupport ;$4F9C _ClearTokenHook
.dl errnosupport ;$4F9F
.dl errnosupport ;$4FA2
.dl errnosupport ;$4FA5 _DispListElementOffLA
.dl errnosupport ;$4FA8 _Bit_VertSplit
.dl errnosupport ;$4FAB _SetHomescreenHook
.dl errnosupport ;$4FAE _ClrHomeScreenHook
.dl errnosupport ;$4FB1 _SetWindowHook
.dl errnosupport ;$4FB4 _DisableWindowHook
.dl errnosupport ;$4FB7 _SetGraphModeHook
.dl errnosupport ;$4FBA _DisableGraphHook
.dl errnosupport ;$4FBD _ParseAndStoreSysVar
.dl errnosupport ;$4FC0 _DisplayEditSysVar
.dl errnosupport ;$4FC3 _JForceWindowSettings
.dl errnosupport ;$4FC6 _DelVarArc
.dl errnosupport ;$4FC9 _DelVarNoArc
.dl errnosupport ;$4FCC _SetAllPlots
.dl errnosupport ;$4FCF _SetYeditHook
.dl errnosupport ;$4FD2 _DisableYEquHook
.dl errnosupport ;$4FD5 _JForceYEqu
.dl errnosupport ;$4FD8 _Arc_Unarc
.dl errnosupport ;$4FDB _ArchiveVar
.dl errnosupport ;$4FDE _UnarchiveVar
.dl errnosupport ;$4FE1 _DialogKeyHook
.dl errnosupport ;$4FE4 _SetFontHook
.dl errnosupport ;$4FE7 _ClrFontHook
.dl errnosupport ;$4FEA _SetRegraphHook
.dl errnosupport ;$4FED _DisableRegraphHook
.dl errnosupport ;$4FF0 _RunGraphingHook
.dl errnosupport ;$4FF3 _SetTraceHook
.dl errnosupport ;$4FF6 _DisableTraceHook
.dl errnosupport ;$4FF9 _RunTraceHook
.dl errnosupport ;$4FFC _NDeriv
.dl errnosupport ;$4FFF _PolarDerivative
.dl errnosupport ;$5002 _JForceGraphNoKey
.dl errnosupport ;$5005 _JForceGraphKey
.dl errnosupport ;$5008 _PowerOff
.dl errnosupport ;$500B _GetKeyRetOff
.dl errnosupport ;$500E _FindGroupSym
.dl errnosupport ;$5011 _FillBasePageTable
.dl errnosupport ;$5014 _ArcChk
.dl errnosupport ;$5017 _FlashToRam
.dl errnosupport ;$501A _LoadDEIndPaged
.dl errnosupport ;$501D _LoadCIndPaged
.dl errnosupport ;$5020 _SetupPagedPtr
.dl errnosupport ;$5023 _PagedGet
.dl errnosupport ;$5026 _SetParserHook
.dl errnosupport ;$5029 _ClearParserHook
.dl errnosupport ;$502C _SetAppChangeHook
.dl errnosupport ;$502F _ClearAppChangeHook
.dl errnosupport ;$5032 _EnableGraphicsHook
.dl errnosupport ;$5035 _DisableGraphicsHook
.dl errnosupport ;$5038 _IPointNoGraphicsHook
.dl errnosupport ;$503B _ILineNoHook
.dl errnosupport ;$503E
.dl errnosupport ;$5041 _DeleteTempPrograms
.dl errnosupport ;$5044 _EnableCatalog1Hook
.dl errnosupport ;$5047 _DisableCatalog1Hook
.dl errnosupport ;$504A _EnableHelpHook
.dl errnosupport ;$504D _DisableHelpHook
.dl errnosupport ;$5050 _DispCatalogEnd
.dl errnosupport ;$5053 _GetMenuKeypress
.dl errnosupport ;$5056 _GetCatalogItem
.dl errnosupport ;$5059 _RunCatalog2Hook
.dl errnosupport ;$505C _RunCatalog1Hook
.dl errnosupport ;$505F
.dl errnosupport ;$5062
.dl errnosupport ;$5065 _dispMenuTitle
.dl errnosupport ;$5068
.dl errnosupport ;$506B _EnablecxRedispHook
.dl errnosupport ;$506E _DisablecxRedispHook
.dl errnosupport ;$5071 _BufCpy
.dl errnosupport ;$5074 _BufClr
.dl errnosupport ;$5077 _UnOPExec2
.dl errnosupport ;$507A _BinOPExec2
.dl errnosupport ;$507D _LoadMenuB
.dl errnosupport ;$5080 _DisplayVarInfo
.dl errnosupport ;$5083 _SetMenuHook
.dl errnosupport ;$5086 _ClearMenuHook
.dl errnosupport ;$5089 _getBCOffsetIX
.dl errnosupport ;$508C _GetBCOffsetIX2
.dl errnosupport ;$508F _ForceFullScreen
.dl errnosupport ;$5092 _GetVariableData
.dl errnosupport ;$5095 _FindSwapSector
.dl errnosupport ;$5098 _CopyFlashPage
.dl errnosupport ;$509B _FindAppNumPages
.dl HLMinus5 ;$509E _HLMinus5
.dl errnosupport ;$50A1 _SendArcPacket
.dl errnosupport ;$50A4 _ForceGraphKeypress
.dl errnosupport ;$50A7 _DoNothing3
.dl errnosupport ;$50AA _FormBase
.dl errnosupport ;$50AD
.dl errnosupport ;$50B0 _IsFragmented
.dl errnosupport ;$50B3 _Chk_Batt_Low
.dl errnosupport ;$50B6 _Chk_Batt_Low_2
.dl errnosupport ;$50B9 _Arc_Unarc2
.dl errnosupport ;$50BC _GetAppBasePage
.dl errnosupport ;$50BF _SetExSpeed
.dl errnosupport ;$50C2 _RclExit
.dl errnosupport ;$50C5 _GroupAllVars
.dl errnosupport ;$50C8 _UngroupVar
.dl errnosupport ;$50CB _WriteToFlash
.dl errnosupport ;$50CE _SetSilentLinkHook
.dl errnosupport ;$50D1 _DisableSilentLinkHook
.dl errnosupport ;$50D4 _TwoVarSet
.dl errnosupport ;$50D7 _ExecClassCToken
.dl errnosupport ;$50DA _ExecClass3Token
.dl errnosupport ;$50DD _GetSysInfo
.dl errnosupport ;$50E0 _NZIf83Plus
.dl errnosupport ;$50E3 _LinkStatus
.dl errnosupport ;$50E6 _DoNothing2
.dl errnosupport ;$50E9 _KeyboardGetKey
.dl errnosupport ;$50EC _RunAppLib
.dl errnosupport ;$50EF _FindSpecialAppHeader
.dl errnosupport ;$50F2 _SendUSBData
.dl errnosupport ;$50F5 _AppGetCBLUSB
.dl errnosupport ;$50F8 _AppGetCalcUSB
.dl errnosupport ;$50FB _GetVarCmdUSB
.dl errnosupport ;$50FE
.dl errnosupport ;$5101 _TenX2
.dl errnosupport ;$5104
.dl errnosupport ;$5107
.dl errnosupport ;$510A _GetVarVersion
.dl errnosupport ;$510D
.dl errnosupport ;$5110
.dl errnosupport ;$5113 _DeleteTempEditEqu
.dl errnosupport ;$5116 _JcursorFirst2
.dl errnosupport ;$5119
.dl errnosupport ;$511C _PromptMoveBackLeft
.dl errnosupport ;$511F _wputsEOL2
.dl errnosupport ;$5122 _InvertTextInsMode
.dl errnosupport ;$5125
.dl errnosupport ;$5128 _ResetDefaults
.dl errnosupport ;$512B _ZeroFinanceVars
.dl errnosupport ;$512E _DispHeader
.dl errnosupport ;$5131 _JForceGroup
.dl errnosupport ;$5134
.dl errnosupport ;$5137
.dl errnosupport ;$513A _DispCoords
.dl errnosupport ;$513D
.dl errnosupport ;$5140
.dl errnosupport ;$5143 _chkTmr
.dl errnosupport ;$5146
.dl errnosupport ;$5149
.dl errnosupport ;$514C
.dl errnosupport ;$514F _getDate
.dl errnosupport ;$5152 _GetDateString
.dl errnosupport ;$5155 _getDtFmt
.dl errnosupport ;$5158 _getDtStr
.dl errnosupport ;$515B _getTime
.dl errnosupport ;$515E _GetTimeString
.dl errnosupport ;$5161 _getTmFmt
.dl errnosupport ;$5164 _getTmStr
.dl errnosupport ;$5167 _SetZeroOne
.dl errnosupport ;$516A _setDate
.dl errnosupport ;$516D _IsOneTwoThree
.dl errnosupport ;$5170 _setTime
.dl errnosupport ;$5173 _IsOP112or24
.dl errnosupport ;$5176 _chkTimer0
.dl errnosupport ;$5179 _timeCnv
.dl errnosupport ;$517C _GetLToOP1Extra
.dl errnosupport ;$517F _ClrWindowAndFlags
.dl errnosupport ;$5182 _SetMachineID
.dl errnosupport ;$5185 _ResetLists
.dl errnosupport ;$5188 _DispValue
.dl errnosupport ;$518B
.dl errnosupport ;$518E
.dl errnosupport ;$5191 _ExecLib
.dl errnosupport ;$5194
.dl errnosupport ;$5197 _CPOP1OP2Rounded
.dl errnosupport ;$519A _CPOP1OP2Rounded2
.dl errnosupport ;$519D _OpenLib
.dl errnosupport ;$51A0
.dl errnosupport ;$51A3
.dl errnosupport ;$51A6 _ResetIOPrompt
.dl errnosupport ;$51A9 _StrCpyVarData
.dl errnosupport ;$51AC _SetUpEditor
.dl errnosupport ;$51AF _SortA
.dl errnosupport ;$51B2 _SortD
.dl errnosupport ;$51B5
.dl errnosupport ;$51B8 _IsOP1ResID
.dl errnosupport ;$51BB _ListEdNameCxMain
.dl errnosupport ;$51BE _ListEdEnterNewName
.dl errnosupport ;$51C1
.dl errnosupport ;$51C4 _ForceModeKeypress
.dl errnosupport ;$51C7 _DispAboutScreen
.dl errnosupport ;$51CA _ChkHelpHookVer
.dl errnosupport ;$51CD _Disp32
.dl errnosupport ;$51D0
.dl errnosupport ;$51D3
.dl errnosupport ;$51D6
.dl errnosupport ;$51D9
.dl errnosupport ;$51DC _DrawTableEditor
.dl errnosupport ;$51DF _DisplayListNameEquals
.dl errnosupport ;$51E2 _DisplayListHeader
.dl errnosupport ;$51E5 _DispMatrixDimensions
.dl errnosupport ;$51E8 _HighlightListEdItem
.dl errnosupport ;$51EB
.dl errnosupport ;$51EE
.dl errnosupport ;$51F1 _MatrixName
.dl errnosupport ;$51F4
.dl errnosupport ;$51F7
.dl errnosupport ;$51FA
.dl errnosupport ;$51FD
.dl errnosupport ;$5200
.dl errnosupport ;$5203
.dl errnosupport ;$5206
.dl errnosupport ;$5209
.dl errnosupport ;$520C
.dl errnosupport ;$520F
.dl errnosupport ;$5212 _SetupEmptyEditTempEqu
.dl errnosupport ;$5215 _ExecClass1Token
.dl errnosupport ;$5218 _HandleMathTokenParse
.dl errnosupport ;$521B _MaybePushMultiplyOp
.dl errnosupport ;$521E _RestartParseOP1Result
.dl errnosupport ;$5221 _Chk_Batt_Level
.dl errnosupport ;$5224
.dl errnosupport ;$5227
.dl errnosupport ;$522A
.dl errnosupport ;$522D _DisplayListEquals
.dl errnosupport ;$5230 _GetCurPlotListOffset
.dl errnosupport ;$5233 _GoToLastRow
.dl errnosupport ;$5236 _RectBorder
.dl errnosupport ;$5239
.dl errnosupport ;$523C
.dl errnosupport ;$523F
.dl errnosupport ;$5242 _LoadA5
.dl errnosupport ;$5245
.dl errnosupport ;$5248 _NamedListToOP1
.dl errnosupport ;$524B
.dl errnosupport ;$524E
.dl errnosupport ;$5251
.dl errnosupport ;$5254 _InitUSBDeviceCallback
.dl errnosupport ;$5257 _KillUSBDevice
.dl errnosupport ;$525A _SetUSBConfiguration
.dl errnosupport ;$525D _RequestUSBData
.dl errnosupport ;$5260 _StopReceivingUSBData
.dl errnosupport ;$5263 _FindAppHeaderByPage
.dl errnosupport ;$5266 _FindNextHeaderByPage
.dl errnosupport ;$5269 _IsMatchingLaunchApp
.dl errnosupport ;$526C _InitTimer
.dl errnosupport ;$526F _KillTimer
.dl errnosupport ;$5272 _StartTimer
.dl errnosupport ;$5275 _RestartTimer
.dl errnosupport ;$5278 _StopTimer
.dl errnosupport ;$527B _WaitTimer
.dl errnosupport ;$527E _CheckTimer
.dl errnosupport ;$5281 _CheckTimerRestart
.dl errnosupport ;$5284 _SetVertGraphActive
.dl errnosupport ;$5287 _ClearVertGraphActive
.dl errnosupport ;$528A _EnableUSBHook
.dl errnosupport ;$528D _DisableUSBHook
.dl errnosupport ;$5290 _InitUSBDevice
.dl errnosupport ;$5293 _KillUSBPeripheral
.dl errnosupport ;$5296 _GetCurPlotListOffset2
.dl errnosupport ;$5299
.dl errnosupport ;$529C _GraphLine
.dl errnosupport ;$529F
.dl errnosupport ;$52A2
.dl errnosupport ;$52A5
.dl errnosupport ;$52A8
.dl errnosupport ;$52AB
.dl errnosupport ;$52AE
.dl errnosupport ;$52B1 _ZifTableEditor
.dl errnosupport ;$52B4
.dl errnosupport ;$52B7 _GetCurPlotOffset
.dl errnosupport ;$52BA
.dl errnosupport ;$52BD _FindAppName
.dl errnosupport ;$52C0
.dl errnosupport ;$52C3
.dl errnosupport ;$52C6 _UpdateStatPlotLists
.dl errnosupport ;$52C9 _GrBufCpyCustom
.dl errnosupport ;$52CC
.dl errnosupport ;$52CF
.dl errnosupport ;$52D2
.dl errnosupport ;$52D5 _VDispRealOP1
.dl errnosupport ;$52D8 _DispXEqualsNum
.dl errnosupport ;$52DB _ResetGraphSettings
.dl errnosupport ;$52DE _InitializeVariables
.dl errnosupport ;$52E1
.dl errnosupport ;$52E4 _DelVarSym
.dl errnosupport ;$52E7 _FindAppUpNoCase
.dl errnosupport ;$52EA _FindAppDnNoCase
.dl errnosupport ;$52ED _DeleteInvalidApps
.dl errnosupport ;$52F0 _DeleteApp_Link
.dl errnosupport ;$52F3 _CmpSymsNoCase
.dl errnosupport ;$52F6 _SetAppRestrictions
.dl errnosupport ;$52F9 _RemoveAppRestrictions
.dl errnosupport ;$52FC _QueryAppRestrictions
.dl errnosupport ;$52FF _DispAppRestrictions
.dl errnosupport ;$5302 _SetupHome
.dl errnosupport ;$5305 _GRPUTAWAYFull
.dl errnosupport ;$5308 _SendSmartPadKeypress
.dl errnosupport ;$530B _ToggleUSBSmartPadInput
.dl errnosupport ;$530E _IsUSBDeviceConnected
.dl errnosupport ;$5311 _RecycleUSB
.dl errnosupport ;$5314 _PolarEquToOP1
.dl errnosupport ;$5317 _ParamXEquToOP1
.dl errnosupport ;$531A _ParamYEquToOP1
.dl errnosupport ;$531D _GetRestrictionsOptions
.dl errnosupport ;$5320 _DispResetComplete
.dl errnosupport ;$5323 _PTTReset
.dl errnosupport ;$5326 _FindAppCustom
.dl errnosupport ;$5329 _ClearGraphStyles
.dl errnosupport ;$532C
.dl errnosupport ;$532F
.dl errnosupport ;$5332
;===============================================================================
;84+SE boot 1.00 basecall table is 276 bytes long (92 entries) starting at #8018
#DEFINE BOOT_NUMCALLS 92
.dl getDirectInput ;$8015 - VANISH exclusive: getDirectInput
bcall_sbase_boot:
;.ds (bcall_sbase_boot+(3*BOOT_NUMCALLS))-$
.dl errnosupport ;$8018 * MD5Final
.dl errnosupport ;$801B * RSAValidate
.dl errnosupport ;$801E * BigNumCompare
.dl errnosupport ;$8021 * WriteAByte
.dl errnosupport ;$8024 * EraseFlash
.dl errnosupport ;$8027 * FindFirstCertificateField
.dl errnosupport ;$802A * ZeroToCertificate
.dl errnosupport ;$802D * GetCertificateField
.dl errnosupport ;$8030 * FindGroupedField
.dl donothing ;$8033 * RET
.dl donothing ;$8036 * RET
.dl donothing ;$8039 * RET
.dl donothing ;$803C * RET
.dl donothing ;$803F * RET
.dl errnosupport ;$8042 * Mult8By8
.dl errnosupport ;$8045 * Mult16By8
.dl errnosupport ;$8048 * Div16By8
.dl errnosupport ;$804B * Divide16By16
.dl errnosupport ;$804E
.dl errnosupport ;$8051 * LoadAIndPaged
.dl errnosupport ;$8054 * FlashToRAM2
.dl errnosupport ;$8057 * GetCertificateStart
.dl errnosupport ;$805A * GetFieldSize
.dl errnosupport ;$805D * FindSubField
.dl errnosupport ;$8060 * EraseCertificateSector
.dl errnosupport ;$8063 * CheckHeaderKey
.dl errnosupport ;$8066
.dl errnosupport ;$8069
.dl errnosupport ;$806C * Load_LFontV2
.dl errnosupport ;$806F * Load_LFontV
.dl errnosupport ;$8072 * ReceiveOS
.dl errnosupport ;$8075 * FindOSHeaderSubField
.dl errnosupport ;$8078 * FindNextCertificateField
.dl errnosupport ;$807B * GetByteOrBoot
.dl errnosupport ;$807E * GetCalcSerial
.dl errnosupport ;$8081
.dl errnosupport ;$8084 * EraseFlashPage
.dl errnosupport ;$8087 * WriteFlashUnsafe
.dl errnosupport ;$808A * DispBootVer
.dl errnosupport ;$808D * MD5Init
.dl errnosupport ;$8090 * MD5Update
.dl errnosupport ;$8093 * MarkOSInvalid
.dl errnosupport ;$8096
.dl errnosupport ;$8099 * MarkOSValid
.dl errnosupport ;$809C * CheckOSValidated
.dl errnosupport ;$809F * SetupAppPubKey
.dl errnosupport ;$80A2 * SigModR
.dl errnosupport ;$80A5 * TransformHash
.dl errnosupport ;$80A8 * IsAppFreeware
.dl errnosupport ;$80AB * FindAppheaderSubField
.dl errnosupport ;$80AE
.dl errnosupport ;$80B1 * Div32By16
.dl errnosupport ;$80B4
.dl errnosupport ;$80B7 * GetBootVer
.dl errnosupport ;$80BA * GetHWVer
.dl r0_bootxora ;$80BD * XorA
.dl errnosupport ;$80C0 * bignumpowermod17
.dl errnosupport ;$80C3 * ProdNrPart1
.dl errnosupport ;$80C6 * WriteAByteSafe
.dl errnosupport ;$80C9 * WriteFlash
.dl errnosupport ;$80CC * SetupDateStampPubKey
.dl errnosupport ;$80CF * SetFlashLowerBound
.dl errnosupport ;$80D2 * LowBatteryBoot
.dl errnosupport ;$80D5
.dl errnosupport ;$80D8
.dl errnosupport ;$80DB
.dl errnosupport ;$80DE
.dl errnosupport ;$80E1
.dl errnosupport ;$80E4
.dl errnosupport ;$80E7 ** DisplayBootMessage
.dl errnosupport ;$80EA ** NewLineWrap
.dl errnosupport ;$80ED
.dl errnosupport ;$80F0
.dl errnosupport ;$80F3
.dl errnosupport ;$80F6
.dl errnosupport ;$80F9 ** DispOSPercentage
.dl errnosupport ;$80FC ** ResetCalc
.dl errnosupport ;$80FF ** SetupOSPubKey
.dl errnosupport ;$8102
.dl errnosupport ;$8105
.dl errnosupport ;$8108
.dl errnosupport ;$810B
.dl errnosupport ;$810E
.dl errnosupport ;$8111 #* Validate2048
.dl errnosupport ;$8114
.dl errnosupport ;$8117
.dl errnosupport ;$811A
.dl errnosupport ;$811D
.dl errnosupport ;$8120
.dl errnosupport ;$8123
.dl errnosupport ;$8126
.dl errnosupport ;$8129
;** - These calls are present only on the TI-84+(SE), minimum HW ver 2
;#* - These calls are present only on the TI-84+(SE), minimum HW ver 3
|
programs/oeis/128/A128139.asm | neoneye/loda | 22 | 90670 | ; A128139: Triangle read by rows: matrix product A004736 * A128132.
; 1,1,2,1,3,3,1,4,5,4,1,5,7,7,5,1,6,9,10,9,6,1,7,11,13,13,11,7,1,8,13,16,17,16,13,8,1,9,15,19,21,21,19,15,9,1,10,17,22,25,26,25,22,17,10
lpb $0
add $2,1
mov $1,$2
sub $1,$0
mul $1,$0
trn $0,$2
lpe
add $1,1
mov $0,$1
|
oeis/077/A077962.asm | neoneye/loda-programs | 11 | 80396 | <reponame>neoneye/loda-programs
; A077962: Expansion of 1/(1+x^2+x^3).
; Submitted by <NAME>(s1)
; 1,0,-1,-1,1,2,0,-3,-2,3,5,-1,-8,-4,9,12,-5,-21,-7,26,28,-19,-54,-9,73,63,-64,-136,1,200,135,-201,-335,66,536,269,-602,-805,333,1407,472,-1740,-1879,1268,3619,611,-4887,-4230,4276,9117,-46,-13393,-9071,13439,22464,-4368,-35903,-18096,40271,53999,-22175,-94270,-31824,116445,126094,-84621,-242539,-41473,327160,284012,-285687,-611172,1675,896859,609497,-898534,-1506356,289037,2404890,1217319,-2693927,-3622209,1476608,6316136,2145601,-7792744,-8461737,5647143,16254481,2814594,-21901624,-19069075
mov $3,1
lpb $0
sub $0,1
mul $2,-1
sub $3,$1
add $1,$3
add $1,$2
sub $2,$1
add $3,$2
lpe
mov $0,$3
|
src/gdnative-context.adb | persan/gdnative_ada | 10 | 2751 |
with Interfaces.C;
with Interfaces.C.Strings;
with Ada.Exceptions;
package body GDNative.Context is
package IC renames Interfaces.C;
package ICS renames Interfaces.C.Strings;
package AE renames Ada.Exceptions;
------------------------
-- GDNative Initalize --
------------------------
procedure GDNative_Initialize (p_options : access Thin.godot_gdnative_init_options) is
Cursor : Thin.GDnative_Api_Struct_Pointers.Pointer;
begin
pragma Assert (not Core_Initialized, "Cannot initialize Core twice");
Core_Api := p_options.api_struct;
Core_Initialized := True;
Core_Api.godot_variant_new_nil (Nil_Godot_Variant'access);
Cursor := Core_Api.extensions;
for I in 1 .. Core_Api.num_extensions loop
case Cursor.all.c_type is
when Thin.GDNATIVE_EXT_NATIVESCRIPT => Nativescript_Api := Thin.To_Api_Struct_Ptr (Cursor.all);
when Thin.GDNATIVE_EXT_PLUGINSCRIPT => Pluginscript_Api := Thin.To_Api_Struct_Ptr (Cursor.all);
when Thin.GDNATIVE_EXT_ANDROID => Android_Api := Thin.To_Api_Struct_Ptr (Cursor.all);
when Thin.GDNATIVE_EXT_ARVR => Arvr_Api := Thin.To_Api_Struct_Ptr (Cursor.all);
when Thin.GDNATIVE_EXT_VIDEODECODER => Videodecoder_Api := Thin.To_Api_Struct_Ptr (Cursor.all);
when Thin.GDNATIVE_EXT_NET => Net_Api := Thin.To_Api_Struct_Ptr (Cursor.all);
when others => null;
end case;
Thin.GDnative_Api_Struct_Pointers.Increment (Cursor);
end loop;
exception
when Error: others =>
declare
C_Error_Info : ICS.chars_ptr := ICS.New_String (AE.Exception_Information (Error));
begin
p_options.report_loading_error (p_options.gd_native_library, C_Error_Info);
ICS.Free (C_Error_Info);
end;
end;
-----------------------
-- GDNative Finalize --
-----------------------
procedure GDNative_Finalize (p_options : access Thin.godot_gdnative_terminate_options) is begin
pragma Assert (Core_Initialized, "Finalizing without Initializing Core");
pragma Assert (Nativescript_Initialized, "Finalizing without Initializing Nativescript");
Core_Initialized := False;
Nativescript_Initialized := False;
Core_Api := null;
Nativescript_Api := null;
Nativescript_Ptr := Thin.Null_Handle;
Pluginscript_Api := null;
Android_Api := null;
Arvr_Api := null;
Videodecoder_Api := null;
Net_Api := null;
end;
-----------------------------
-- Nativescript Initialize --
-----------------------------
procedure Nativescript_Initialize (p_handle : in Thin.Nativescript_Handle) is begin
pragma Assert (not Nativescript_Initialized, "Cannot intialize Nativescript twice");
Nativescript_Ptr := p_handle;
Nativescript_Initialized := True;
end;
end; |
other.7z/NEWS.7z/NEWS/テープリストア/NEWS_05/NEWS_05.tar/home/kimura/kart/mak.lzh/mak/kart-effect-e.asm | prismotizm/gigaleak | 0 | 246947 | <reponame>prismotizm/gigaleak
Name: kart-effect-e.asm
Type: file
Size: 27456
Last-Modified: '1992-08-06T07:16:54Z'
SHA-1: 659B7F4252B6835DAA58927F5FF2F75627B3CF14
Description: null
|
test/e2e/data/arm5.asm | matanlurey/armv4t.dart | 8 | 7083 | ; expected result: 0x100 = 0xf000, 0x104 = 0xfff0, 0x108 = 0x104
mov r11, #0x100 ; r11 = 0x100
mov r0, #0xff000 ; r0 = 0xff000
strh r0, [r11, -r1] ; @0x100 - 0 = 0xff000
; @0x100 = 0xff000
ldrsb r1, [r11, #1] ; r1 = @r11 + 1
; r1 = @0x100 + 1
; r1 = @0x101
; r1 = <Part of 0xff000>
strh r1, [r11, #4]! ;
mov r12, r11 ;
str r12, [r11, #4] ; @0x108 = 0x108
|
src/tk/tk-widget.ads | thindil/tashy2 | 2 | 23137 | <reponame>thindil/tashy2
-- Copyright (c) 2020-2021 <NAME> <<EMAIL>>
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
with Ada.Characters.Handling; use Ada.Characters.Handling;
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with System;
with Tcl.Strings; use Tcl.Strings;
-- ****h* Tk/Widget
-- FUNCTION
-- Provide code for manipulate Tk widgets. Parent of the all widget.
-- SOURCE
package Tk.Widget is
-- ****
--## rule off REDUCEABLE_SCOPE
-- ****t* Widget/Widget.Tk_Widget
-- FUNCTION
-- The identifier of the Tk Widget
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Tk_Widget is new System.Address;
-- ****
-- ****d* Widget/Widget.Null_Widget
-- FUNCTION
-- Not created or not existing Tk widget
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Null_Widget: constant Tk_Widget := Tk_Widget(System.Null_Address);
-- ****
-- ****t* Widget/Widget.Relief_Type
-- FUNCTION
-- Type of Tk widget 3D effect
-- OPTIONS
-- NONE - Empty value, used mostly in setting default value for widgets
-- RAISED - Widget visually will be raised
-- SUNKEN - Widget visually will be lowered
-- FLAT - Widget visually will be flat (no border)
-- RIDGE - Widget visually will be ridget
-- SOLID - The widget's border will be solid at this same level like widget
-- GROOVE - Widget visually will be grooved
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Relief_Type is (NONE, RAISED, SUNKEN, FLAT, RIDGE, SOLID, GROOVE) with
Default_Value => NONE;
-- ****
-- ****d* Widget/Widget.Default_Relief
-- FUNCTION
-- Default value for Relief_Type
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Default_Relief: constant Relief_Type := NONE;
-- ****
-- ****t* Widget/Widget.Pixel_Unit
-- FUNCTION
-- Type of possible screen distance units
-- OPTIONS
-- PIXEL - Units are in pixels, default value
-- C - Units are in centimeters
-- I - Units are in inches
-- M - Units are in milimeters
-- P - Units are in printer's points
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Pixel_Unit is (PIXEL, C, I, M, P) with
Default_Value => PIXEL;
-- ****
-- ****d* Widget/Widget.Default_Pixel_Unit
-- FUNCTION
-- Default Pixel_Unit value
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Default_Pixel_Unit: constant Pixel_Unit := PIXEL;
-- ****
-- ****t* Widget/Widget.Directions_Type
-- FUNCTION
-- Type of possible directions for various widgets configuration options
-- OPTIONS
-- NONE - Used mostly when setting default direction for widgets
-- N - North
-- NE - North east
-- E - East
-- SE - South east
-- S - South
-- SW - South west
-- W - West
-- NW - North west
-- CENTER - Centered
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Directions_Type is (NONE, N, NE, E, SE, S, SW, W, NW, CENTER) with
Default_Value => NONE;
-- ****
-- ****d* Widget/Widget.Default_Direction
-- FUNCTION
-- Default Direction_Type value
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Default_Direction: constant Directions_Type := NONE;
-- ****
-- ****t* Widget/Widget.Positive_Float
-- FUNCTION
-- Type used for positive float values, value -1 means empty value
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Positive_Float is digits 2 range -1.0 .. Float'Last with
Default_Value => -1.0;
-- ****
-- ****d* Widget/Widget.Default_Positive_Float
-- FUNCTION
-- Default value for Positive_Float
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Default_Positive_Float: constant Positive_Float := -1.0;
-- ****
-- ****t* Widget/Widget.Place_Type
-- FUNCTION
-- Type of possible place directions for various widgets configuration
-- options
-- OPTIONS
-- EMPTY - Default value, used to set default setting for widgets
-- NONE - Depends on configuration option of widgets
-- BOTTOM - Set value to bottom of widget
-- TOP - Set value to top of widget
-- LEFT - Set value to left side of widget
-- RIGHT - Set value to right side of widget
-- CENTER - Set value to centered in widget
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Place_Type is (EMPTY, NONE, BOTTOM, TOP, LEFT, RIGHT, CENTER) with
Default_Value => EMPTY;
-- ****
-- ****d* Widget/Widget.Default_Place
-- FUNCTION
-- Default value for Place_Type
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Default_Place: constant Place_Type := EMPTY;
-- ****
-- ****t* Widget/Widget.Extended_Boolean
-- FUNCTION
-- Type used for set boolean values of various widgets configuration
-- options
-- OPTIONS
-- FALSE - Equivalent of Ada False
-- TRUE - Equivalent of Ada True
-- NONE - Used mostly in setting default value for configuration option
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Extended_Boolean is (FALSE, TRUE, NONE) with
Default_Value => NONE;
-- ****
-- ****d* Widget/Widget.Default_Extended_Boolean
-- FUNCTION
-- Default value for Extended_Boolean
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Default_Extended_Boolean: constant Extended_Boolean := NONE;
-- ****
-- ****t* Widget/Widget.Justify_Type
-- FUNCTION
-- Type used to set text justify option of various widgets
-- OPTIONS
-- NONE - Used mostly in setting the default value for widgets
-- LEFT - Justify text to the left
-- CENTER - Center text
-- RIGHT - Justify text to the right
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Justify_Type is (NONE, LEFT, CENTER, RIGHT) with
Default_Value => NONE;
-- ****
-- ****d* Widget/Widget.Default_Justify_Type
-- FUNCTION
-- Default value for Justify_Type
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Default_Justify: constant Justify_Type := NONE;
-- ****
-- ****t* Widget/Widget.Extended_Natural
-- FUNCTION
-- Type used for set non-negative values for various widgets
-- configuration options
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Extended_Natural is new Integer range -1 .. Integer'Last with
Default_Value => -1;
-- ****
-- ****d* Widget/Widget.Default_Extended_Natural
-- FUNCTION
-- Default value for Extended_Natural
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Default_Extended_Natural: constant Extended_Natural := -1;
-- ****
-- ****t* Widget/Widget.State_Type
-- FUNCTION
-- Type used to set the state of the selected widget
-- OPTIONS
-- NORMAL - The widget is in normal, default state
-- ACTIVE - The mouse is above the widget
-- DISABLED - The widget is disabled, insensitive, no keyboard or mouse
-- events
-- NONE - Used mostly in setting the default state for the widget
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type State_Type is (NORMAL, ACTIVE, DISABLED, NONE) with
Default_Value => NONE;
-- ****
-- ****d* Widget/Widget.Default_State
-- FUNCTION
-- Default value for State_Type
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Default_State: constant State_Type := NONE;
-- ****
-- ****s* Widget/Widget.Pixel_Data
-- FUNCTION
-- Data structure to store information about pixel
-- OPTIONS
-- Value - Value of screen distance for the pixel
-- Value_Unit - Type of screen distance unit. Default are pixels
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Pixel_Data is record
Value: Positive_Float := Default_Positive_Float;
Value_Unit: Pixel_Unit := PIXEL;
end record;
-- ****
-- ****d* Widget/Widget.Empty_Pixel_Data
-- FUNCTION
-- Empty value for Pixel Data
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Empty_Pixel_Data: constant Pixel_Data := Pixel_Data'(others => <>);
-- ****
--## rule off TYPE_INITIAL_VALUES
-- ****s* Widget/Widget.Widget_Options
-- FUNCTION
-- Abstract records to store available options and their values for widgets.
-- All Tk widgets options should be children of this record
-- OPTIONS
-- Cursor - Name of the cursor to set for the selected Tk widget
-- Take_Focus - Can be "1", "0", empty string or Tcl script which will
-- return "1", "0" or empty string
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Widget_Options is abstract tagged record
Cursor: Tcl_String := Null_Tcl_String;
Take_Focus: Tcl_String := Null_Tcl_String;
end record;
-- ****
--## rule on TYPE_INITIAL_VALUES
-- ****t* Widget/Widget.Widgets_Array
-- FUNCTION
-- Array of Tk_Widgets. Used mostly in commands which allow to set a few
-- widgets as parameters
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Widgets_Array is array(Positive range <>) of Tk_Widget;
-- ****
--****d* Widget/Empty_Widgets_Array
-- FUNCTION
-- Empty array of widgets constant
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Empty_Widgets_Array: constant Widgets_Array(1 .. 0) :=
(others => Null_Widget);
-- ****
-- ****s* Widget/Widget.Horizontal_Pad_Data
-- FUNCTION
-- Data structure used to store infomation about horizontal padding
-- OPTIONS
-- Left - Padding on the left of the widget
-- Right - Padding on the right of the widget
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Horizontal_Pad_Data is record
Left: Pixel_Data;
Right: Pixel_Data;
end record;
-- ****
-- ****d* Widget/Widget.Default_Horizontal_Pad_Data
-- FUNCTION
-- Default value for Horizontal_Pad_Data - no padding at all
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Default_Horizontal_Pad_Data: constant Horizontal_Pad_Data :=
Horizontal_Pad_Data'(others => Empty_Pixel_Data);
-- ****
-- ****s* Widget/Widget.Vertical_Pad_Data
-- FUNCTION
-- Data structure used to store infomation about vertical padding
-- OPTIONS
-- Top - Padding on the top of the widget
-- Bottom - Padding on the bottom of the widget
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Vertical_Pad_Data is record
Top: Pixel_Data;
Bottom: Pixel_Data;
end record;
-- ****
-- ****d* Widget/Widget.Default_Vertical_Pad_Data
-- FUNCTION
-- Default value for Vertical_Pad_Data - no padding at all
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Default_Vertical_Pad_Data: constant Vertical_Pad_Data :=
Vertical_Pad_Data'(others => Empty_Pixel_Data);
-- ****
-- ****s* Widget/Widget.Bbox_Data
-- FUNCTION
-- Data structure used to store values for bounding boxes of widgets
-- OPTIONS
-- Start_X - Start X coordinate of the bounding box
-- Start_Y - Start Y coordinate of the bounding box
-- Width - Width of the bounding box
-- Height - Height of the bounding box
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Bbox_Data is record
Start_X: Natural := 0;
Start_Y: Natural := 0;
Width: Natural := 0;
Height: Natural := 0;
end record;
-- ****
-- ****d* Widget/Widget.mpty_Bbox_Data
-- FUNCTION
-- Empty bounding box data
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Empty_Bbox_Data: constant Bbox_Data := (others => 0);
-- ****
-- ****t* Widget/Widget.Tk_Window
-- FUNCTION
-- The window manager identifier for Tk_Widget
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Tk_Window is new System.Address;
-- ****
-- ****d* Widget/Widget.Null_Window
-- FUNCTION
-- Not created or not existing Tk window
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Null_Window: constant Tk_Window := Tk_Window(System.Null_Address);
-- ****
-- ****t* Widget/Widget.Anchor_Directions
-- FUNCTION
-- Possible directions for text in label of some widgets (mostly Label_Frame)
-- NONE - Used mostly when setting default anchor for widgets
-- NW - Set anchor to north west
-- N - Set anchor to north
-- NE - Set anchor to north east
-- EN - Set anchor to north east
-- E - Set anchor to east
-- ES - Set anchor to south east
-- SE - Set anchor to south east
-- S - Set anchor to south
-- SW - Set anchor to south west
-- WS - Set anchor to south west
-- W - Set anchor to west
-- WN - Set anchor to north west
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Anchor_Directions is
(NONE, NW, N, NE, EN, E, ES, SE, S, SW, WS, W, WN) with
Default_Value => NONE;
-- ****
-- ****d* Widget/Widget.Default_Anchor_Direction
-- FUNCTION
-- Default value for text anchor direction for Tk_Label_Frame
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Default_Anchor_Direction: constant Anchor_Directions := NW;
-- ****
-- ****s* Widget/Widget.Point_Position
-- FUNCTION
-- Data structure used to set position of point on the screen
-- X - The X coordinate of the point
-- Y - The Y coordinate of the point
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Point_Position is record
X: Extended_Natural;
Y: Extended_Natural;
end record;
-- ****
-- ****d* Widget/Widget.Empty_Point_Position
-- FUNCTION
-- Empty values for position of point
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Empty_Point_Position: constant Point_Position :=
Point_Position'(others => -1);
-- ****
-- ****s* Widget/Widget.Window_Geometry
-- FUNCTION
-- Data structure used in setting the Tk widget geometry
-- PARAMETERS
-- Width - The width in pixels of Tk widget
-- Height - The height in pixels of Tk widget
-- X - The X coordinate on the screen of Tk widget
-- Y - The Y coordinate on the screen of Tk widget
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Window_Geometry is record
Width: Natural := 0;
Height: Natural := 0;
X: Natural := 0;
Y: Natural := 0;
end record;
-- ****
-- ****d* Widget/Widget.Empty_Window_Geometry
-- FUNCTION
-- Empty values for Tk widget geometry
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Empty_Window_Geometry: constant Window_Geometry :=
Window_Geometry'(others => 0);
-- ****
-- ****t* Widget/Widget.Tk_Path_String
-- FUNCTION
-- The string used to set or get Tk path name for widgets. It must starts
-- with dot "." (which is name of the main window) and then can have only
-- letters, numbers and dots
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
subtype Tk_Path_String is String with
Dynamic_Predicate => Tk_Path_String'Length > 0
and then
(Tk_Path_String(Tk_Path_String'First) = '.' and
(for all I in Tk_Path_String'Range =>
Is_Alphanumeric(Item => Tk_Path_String(I)) or
Tk_Path_String(I) = '.'));
-- ****
-- ****d* Widget/Widget.Main_Window_Name
-- FUNCTION
-- The Tk path name of the main window
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Main_Window_Name: constant Tk_Path_String := ".";
-- ****
-----------------------------------------------
-- Various functions to convert types to String
-----------------------------------------------
-- ****f* Widget/Widget.Widgets_Array_Image
-- FUNCTION
-- Convert Widgets_Array to Ada String
-- PARAMETERS
-- Widgets - Widgets_Array which will be converted
-- RESULT
-- Ada String with Tk path names of the widgets
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Get the Tk path names of widgets My_Button and My_Label
-- Widgets_Names: constant String := Widgets_Array_Image((My_Button, My_Label));
-- SOURCE
function Widgets_Array_Image(Widgets: Widgets_Array) return String with
Pre => Widgets'Length > 0,
Post => Widgets_Array_Image'Result'Length > 0,
Test_Case => (Name => "Test_Widgets_Array_Image", Mode => Nominal);
-- ****
---------------------------------------------------------
-- Various functions to convert String to Tk.Widget types
---------------------------------------------------------
-- ****f* Widget/Widget.Pixel_Data_Value
-- FUNCTION
-- Convert Ada String to Pixel_Data
-- PARAMETERS
-- Value - String which will be converted to Pixel_Data
-- RESULT
-- Pixel_Data with value converted from String
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Convert string 2c to Pixel_Data
-- Pixel: constant Pixel_Data := Pixel_Data_Value("2c");
-- SOURCE
function Pixel_Data_Value(Value: String) return Pixel_Data with
Test_Case => (Name => "Test_Pixel_Data_Value", Mode => Nominal);
-- ****
-- ****f* Widget/Widget.Pixel_Data_Image
-- FUNCTION
-- Convert Pixel_Data to Ada String
-- PARAMETERS
-- Value - Pixel_Data which will be converted to String
-- RESULT
-- String with value converted from Pixel_Data
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Convert Pixel_Data 2.0 PIXEL to String
-- PixelString: constant String := Pixel_Data_Image(Pixel_Data'(2.0, PIXEL));
-- SOURCE
function Pixel_Data_Image(Value: Pixel_Data) return String with
Post => Pixel_Data_Image'Result'Length > 0;
-- ****
---------------------------------
-- Getting info about a Tk widget
---------------------------------
-- ****f* Widget/Widget.Get_Widget
-- FUNCTION
-- Get existing Tk widget from its Tk path name and on the seelcted
-- interpreter.
-- PARAMETERS
-- Path_Name - Full Tk path name for the selected widget
-- Interpreter - Tcl interpreter on which the selected widget is. Default
-- value is default Tcl interpreter
-- RESULT
-- Tk_Widget with specified path name on the selected Tcl interpreter
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Get the Tk Widget ID for .mybutton pathname widget on the default Tcl interpreter
-- My_Button: constant Tk_Widget := Get_Widget(".mybutton");
-- SOURCE
function Get_Widget
(Path_Name: Tk_Path_String;
Interpreter: Tcl_Interpreter := Get_Interpreter) return Tk_Widget with
Pre => Path_Name'Length > 0 and Interpreter /= Null_Interpreter,
Test_Case => (Name => "Test_Get_Widget", Mode => Nominal);
-- ****
-- ****f* Widget/Widget.Tk_Path_Name
-- FUNCTION
-- Get the full Tk path name of the selected Tk widget
-- PARAMETERS
-- Widgt - Tk widget which path name will be taken
-- RESULT
-- Full Tk path name of the selected Tk widget
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Get the Tk path name of widget My_Button
-- Path_Name: constant String := Tk_Path_Name(My_Button);
-- SOURCE
function Tk_Path_Name(Widgt: Tk_Widget) return Tk_Path_String with
Pre => Widgt /= Null_Widget,
Post => Tk_Path_Name'Result'Length > 0,
Global => null,
Test_Case => (Name => "Test_Tk_PathName", Mode => Nominal);
-- ****
-- ****f* Widget/Widget.Tk_Interp
-- FUNCTION
-- Get Tcl interpreter on which the selected Tk widget exists
-- PARAMETERS
-- Widgt - Tk widget which Tcl interpreter will be taken
-- RESULT
-- Tcl interpreter of the selected Tk widget
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Get the Tcl interpreter of widget My_Label
-- Interpreter: constant Tcl_Interpreter := Tk_Interp(My_Label);
-- SOURCE
function Tk_Interp(Widgt: Tk_Widget) return Tcl_Interpreter with
Pre => Widgt /= Null_Widget,
Post => Tk_Interp'Result /= Null_Interpreter,
Global => null,
Test_Case => (Name => "Test_Tk_Interp", Mode => Nominal),
Import,
Convention => C,
External_Name => "Tk_Interp";
-- ****
-- ****f* Widget/Widget.Tk_Window_Id
-- FUNCTION
-- Get the window manager identifier for the selected Tk_Widget
-- PARAMETERS
-- Widgt - Tk widget which identifier will be get
-- RESULT
-- The window manager identifier for the selected widget
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Get the window manager identifier of widget My_Dialog
-- Window: constant Tk_Window := Tk_Window_Id(My_Dialog);
-- SOURCE
function Tk_Window_Id(Widgt: Tk_Widget) return Tk_Window with
Pre => Widgt /= Null_Widget,
Test_Case => (Name => "Test_Tk_Window_Id", Mode => Nominal),
Import,
Convention => C,
External_Name => "Get_Window_Id";
-- ****
-- ****f* Widget/Widget.Option_Image
-- FUNCTION
-- Allow to convert the selected widget's option to Unbounded_String
-- which can be used in creating or configuring the widget.
-- PARAMETERS
-- Name - The name of the selected widget's option
-- Value - The value of the selected widget's option which will
-- be converted to Unbounded_String
-- Options_String - String with currently set options for the selected
-- widget
-- OUTPUT
-- If Value has default value for the selected type, then return
-- unmodified Options_String. Otherwise append the proper Tk
-- configuration option to the Options_String.
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Set the text option to hello world in My_Options string
-- declare
-- My_Options: Unbounded_String;
-- begin
-- Option_Image("text", To_Tcl_String("hello world"), My_Options);
-- end;
-- SOURCE
procedure Option_Image
(Name: String; Value: Tcl_String;
Options_String: in out Unbounded_String) with
Pre => Name'Length > 0,
Test_Case => (Name => "Test_Option_Image_Tcl_String", Mode => Nominal);
procedure Option_Image
(Name: String; Value: Extended_Natural;
Options_String: in out Unbounded_String) with
Pre => Name'Length > 0,
Test_Case => (Name => "Test_Option_Image_Extended_Natural",
Mode => Nominal);
procedure Option_Image
(Name: String; Value: Pixel_Data;
Options_String: in out Unbounded_String) with
Pre => Name'Length > 0,
Test_Case => (Name => "Test_Option_Image_Pixed_Data", Mode => Nominal);
procedure Option_Image
(Name: String; Value: Relief_Type;
Options_String: in out Unbounded_String) with
Pre => Name'Length > 0,
Test_Case => (Name => "Test_Option_Image_Relief_Type", Mode => Nominal);
procedure Option_Image
(Name: String; Value: State_Type;
Options_String: in out Unbounded_String) with
Pre => Name'Length > 0,
Test_Case => (Name => "Test_Option_Image_State_Type", Mode => Nominal);
procedure Option_Image
(Name: String; Value: Directions_Type;
Options_String: in out Unbounded_String) with
Pre => Name'Length > 0,
Test_Case => (Name => "Test_Option_Image_Directions_Type",
Mode => Nominal);
procedure Option_Image
(Name: String; Value: Place_Type;
Options_String: in out Unbounded_String) with
Pre => Name'Length > 0,
Test_Case => (Name => "Test_Option_Image_Place_Type", Mode => Nominal);
procedure Option_Image
(Name: String; Value: Justify_Type;
Options_String: in out Unbounded_String) with
Pre => Name'Length > 0,
Test_Case => (Name => "Test_Option_Image_Justify_Type", Mode => Nominal);
procedure Option_Image
(Name: String; Value: Horizontal_Pad_Data;
Options_String: in out Unbounded_String) with
Pre => Name'Length > 0,
Test_Case => (Name => "Test_Option_Image_Pad_Data", Mode => Nominal);
procedure Option_Image
(Name: String; Value: Vertical_Pad_Data;
Options_String: in out Unbounded_String) with
Pre => Name'Length > 0,
Test_Case => (Name => "Test_Option_Image_Vertical_Pad_Data",
Mode => Nominal);
procedure Option_Image
(Name: String; Value: Tk_Widget;
Options_String: in out Unbounded_String) with
Pre => Name'Length > 0,
Test_Case => (Name => "Test_Option_Image_Tk_Widget", Mode => Nominal);
procedure Option_Image
(Name: String; Value: Extended_Boolean;
Options_String: in out Unbounded_String) with
Pre => Name'Length > 0,
Test_Case => (Name => "Test_Option_Image_Extended_Boolean",
Mode => Nominal);
procedure Option_Image
(Name: String; Value: Tk_Window;
Options_String: in out Unbounded_String) with
Pre => Name'Length > 0,
Test_Case => (Name => "Test_Option_Image_Tk_Window", Mode => Nominal);
procedure Option_Image
(Name: String; Value: Anchor_Directions;
Options_String: in out Unbounded_String) with
Pre => Name'Length > 0,
Test_Case => (Name => "Test_Option_Image_Anchor_Directions",
Mode => Nominal);
procedure Option_Image
(Name: String; Value: Positive_Float;
Options_String: in out Unbounded_String) with
Pre => Name'Length > 0,
Test_Case => (Name => "Test_Option_Image_Positive_Float",
Mode => Nominal);
procedure Option_Image
(Name: String; Value: Point_Position;
Options_String: in out Unbounded_String) with
Pre => Name'Length > 0,
Test_Case => (Name => "Test_Option_Image_Point_Position",
Mode => Nominal);
procedure Option_Image
(Name: String; Value: Boolean;
Options_String: in out Unbounded_String) with
Pre => Name'Length > 0,
Test_Case => (Name => "Test_Option_Image_Boolean", Mode => Nominal);
-- ****
-- ****f* Widget/Widget.Option_Image_(Integer)
-- FUNCTION
-- Allow to convert the selected widget's option to Unbounded_String
-- which can be used in creating or configuring the widget.
-- PARAMETERS
-- Name - The name of the selected widget's option
-- Value - The value of the selected widget's option which will
-- be converted to Unbounded_String
-- Options_String - String with currently set options for the selected
-- widget
-- Base - Type of result number, 10 for decimal, 16 for
-- hexadecimal
-- OUTPUT
-- If Value has default value for the selected type, then return
-- unmodified Options_String. Otherwise append the proper Tk
-- configuration option to the Options_String.
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Set the option use to hexadecimal 1 in My_Options string
-- declare
-- My_Options: Unbounded_String;
-- begin
-- Option_Image("use", 1, My_Options, 16);
-- end;
-- SOURCE
procedure Option_Image
(Name: String; Value: Integer; Options_String: in out Unbounded_String;
Base: Positive := 10) with
Pre => Name'Length > 0 and Base in 10 | 16,
Test_Case => (Name => "Test_Option_Image_Integer", Mode => Nominal);
-- ****
-- ****f* Widget/Widget.Option_Value
-- FUNCTION
-- Allow convert the selected widget's option from Tcl string value to
-- proper Widget_Options field value. It is mostly used in the widgets
-- Get_Options funcion
-- PARAMETERS
-- Widgt - Tk_Widget which option will be get
-- Name - The name of the option to get
-- RESULT
-- Tcl string value converted to the proper Ada binding type
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Get the value of option text in My_Button widget
-- Text: constant Tcl_String := Option_Value(My_Button, "text");
-- SOURCE
function Option_Value(Widgt: Tk_Widget; Name: String) return Tcl_String with
Pre => Widgt /= Null_Widget and Name'Length > 0,
Test_Case => (Name => "Test_Option_Value_Tcl_String", Mode => Nominal);
function Option_Value
(Widgt: Tk_Widget; Name: String) return Directions_Type with
Pre => Widgt /= Null_Widget and Name'Length > 0,
Test_Case => (Name => "Test_Option_Value_Direction_Type",
Mode => Nominal);
function Option_Value(Widgt: Tk_Widget; Name: String) return Pixel_Data with
Pre => Widgt /= Null_Widget and Name'Length > 0,
Test_Case => (Name => "Test_Option_Value_Pixel_Data", Mode => Nominal);
function Option_Value(Widgt: Tk_Widget; Name: String) return Place_Type with
Pre => Widgt /= Null_Widget and Name'Length > 0,
Test_Case => (Name => "Test_Option_Value_Place_Type", Mode => Nominal);
function Option_Value(Widgt: Tk_Widget; Name: String) return State_Type with
Pre => Widgt /= Null_Widget and Name'Length > 0,
Test_Case => (Name => "Test_Option_Value_State_Type", Mode => Nominal);
function Option_Value
(Widgt: Tk_Widget; Name: String) return Justify_Type with
Pre => Widgt /= Null_Widget and Name'Length > 0,
Test_Case => (Name => "Test_Option_Value_Justify_Type", Mode => Nominal);
function Option_Value
(Widgt: Tk_Widget; Name: String) return Relief_Type with
Pre => Widgt /= Null_Widget and Name'Length > 0,
Test_Case => (Name => "Test_Option_Value_Relief_Type", Mode => Nominal);
function Option_Value
(Widgt: Tk_Widget; Name: String) return Extended_Natural with
Pre => Widgt /= Null_Widget and Name'Length > 0,
Test_Case => (Name => "Test_Option_Value_Extended_Natural",
Mode => Nominal);
function Option_Value
(Widgt: Tk_Widget; Name: String) return Extended_Boolean with
Pre => Widgt /= Null_Widget and Name'Length > 0,
Test_Case => (Name => "Test_Option_Value_Extended_Boolean",
Mode => Nominal);
function Option_Value(Widgt: Tk_Widget; Name: String) return Tk_Widget with
Pre => Widgt /= Null_Widget and Name'Length > 0,
Test_Case => (Name => "Test_Option_Value_Tk_Widget", Mode => Nominal);
function Option_Value(Widgt: Tk_Widget; Name: String) return Tk_Window with
Pre => Widgt /= Null_Widget and Name'Length > 0,
Test_Case => (Name => "Test_Option_Value_Tk_Window", Mode => Nominal);
function Option_Value(Widgt: Tk_Widget; Name: String) return Integer with
Pre => Widgt /= Null_Widget and Name'Length > 0,
Test_Case => (Name => "Test_Option_Value_Integer", Mode => Nominal);
function Option_Value
(Widgt: Tk_Widget; Name: String) return Anchor_Directions with
Pre => Widgt /= Null_Widget and Name'Length > 0,
Test_Case => (Name => "Test_Option_Value_Anchor_Directions",
Mode => Nominal);
-- ****
--------------------------------
-- Destroy or delete a Tk widget
--------------------------------
-- ****f* Widget/Widget.Destroy
-- FUNCTION
-- Destroy the selected Tk widget and everything what is related to it,
-- like children, events, etc
-- PARAMETERS
-- Widgt - Tk widget to destroy
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Destroy My_Label widget
-- Destroy(My_Label);
-- COMMANDS
-- destroy Widget
-- SOURCE
procedure Destroy(Widgt: in out Tk_Widget) with
Pre => Widgt /= Null_Widget,
Post => Widgt = Null_Widget,
Test_Case => (Name => "Test_Destroy", Mode => Nominal);
-- ****
----------------
-- Miscellaneous
----------------
-- ****f* Widget/Widget.Execute_Widget_Command_(procedure)
-- FUNCTION
-- Execute the selected command on the selected widget. Generally the
-- function shouldn't be used, use it only when the selected Tk widget
-- command isn't implemented. If you want to get result of the command,
-- use Tcl_GetStringResult function.
-- PARAMETERS
-- Widgt - Tk widget on which the command will be executed
-- Command_Name - Tk command which will be executed
-- Options - Option for the selected Tk command
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Set text on My_Button to click me
-- Execute_Widget_Command(My_Button, "text", "{click me}");
-- SEE ALSO
-- Widget.Execute_Widget_Command_(function_boolean_result),
-- Widget.Execute_Widget_Command_(function_string_result)
-- SOURCE
procedure Execute_Widget_Command
(Widgt: Tk_Widget; Command_Name: String; Options: String := "") with
Pre => Widgt /= Null_Widget and Command_Name'Length > 0,
Test_Case => (Name => "Test_Execute_Widget_Command", Mode => Nominal);
-- ****
-- ****f* Widget/Widget.Execute_Widget_Command_(function_string_result)
-- FUNCTION
-- Execute the selected command on the selected widget and returns its
-- result as Ada Strings. Generally the function shouldn't be used,
-- use it only when the selected Tk widget command isn't implemented.
-- PARAMETERS
-- Widgt - Tk widget on which the command will be executed
-- Command_Name - Tk command which will be executed
-- Options - Option for the selected Tk command
-- RESULT
-- Ada String with result of the executed Tk widget command
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Get the type of menu entry of My_Menu second entry
-- Menu_Entry_Type: constant Tcl_String_Result := Execute_Widget_Command(My_Menu, "type", "1");
-- SEE ALSO
-- Widget.Execute_Widget_Command_(procedure),
-- Widget.Execute_Widget_Command_(function_boolean_result)
-- SOURCE
function Execute_Widget_Command
(Widgt: Tk_Widget; Command_Name: String; Options: String := "")
return Tcl_String_Result with
Pre => Widgt /= Null_Widget and Command_Name'Length > 0,
Test_Case => (Name => "Test_Execute_Widget_Command2", Mode => Nominal);
-- ****
-- ****f* Widget/Widget.Execute_Widget_Command_(function_boolean_result)
-- FUNCTION
-- Execute the selected command on the selected widget and returns its
-- result as Ada Boolean. Generally the function shouldn't be used,
-- use it only when the selected Tk widget command isn't implemented.
-- PARAMETERS
-- Widgt - Tk widget on which the command will be executed
-- Command_Name - Tk command which will be executed
-- Options - Option for the selected Tk command
-- RESULT
-- Ada Boolean with result of the executed Tk widget command
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Check if selection is present in My_Entry widget
-- Has_Selection: constant Tcl_Boolean_Result := Execute_Widget_Command(My_Entry, "selection", "present");
-- SEE ALSO
-- Widget.Execute_Widget_Command_(procedure),
-- Widget.Execute_Widget_Command_(function_string_result)
-- SOURCE
function Execute_Widget_Command
(Widgt: Tk_Widget; Command_Name: String; Options: String := "")
return Tcl_Boolean_Result with
Pre => Widgt /= Null_Widget and Command_Name'Length > 0,
Test_Case => (Name => "Test_Execute_Widget_Command3", Mode => Nominal);
-- ****
-- ****g* Widget/Widget.Generic_Scalar_Execute_Widget_Command
-- FUNCTION
-- Generic function to execute Tk widget command and return its result
-- as as scalar type
-- PARAMETERS
-- Widgt - Tk widget on which the command will be executed
-- Command_Name - Tk command which will be executed
-- Options - Option for the selected Tk command
-- RESULT
-- Scalar type with the result of the Tk widget command
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Execute Tk widget command and get its result as Integer
-- Integer_Execute is new Generic_Scalar_Execute_Widget_Command(Integer);
-- Result: constant Integer := Integer_Execute(My_Grid, "slaves");
-- SEE ALSO
-- Widget.Generic_Float_Execute_Widget_Command;
-- SOURCE
generic
type Result_Type is (<>);
function Generic_Scalar_Execute_Widget_Command
(Widgt: Tk_Widget; Command_Name: String; Options: String := "")
return Result_Type;
-- ****
-- ****g* Widget/Widget.Generic_Float_Execute_Widget_Command
-- FUNCTION
-- Generic function to execute Tk widget command and return its result
-- as as float type
-- PARAMETERS
-- Widgt - Tk widget on which the command will be executed
-- Command_Name - Tk command which will be executed
-- Options - Option for the selected Tk command
-- RESULT
-- Float type with the result of the Tk widget command
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Execute Tk widget command and get its result as Float
-- Float_Execute is new Generic_Float_Execute_Widget_Command(Float);
-- Result: constant Float := Float_Execute(My_Grid, "slaves", "-row 0");
-- SEE ALSO
-- Widget.Generic_Scalar_Execute_Widget_Command;
-- SOURCE
generic
type Result_Type is digits <>;
function Generic_Float_Execute_Widget_Command
(Widgt: Tk_Widget; Command_Name: String; Options: String := "")
return Result_Type;
-- ****
--## rule off REDUCEABLE_SCOPE
end Tk.Widget;
|
supported_grammars/antlrprime/LexBasic.g4 | kaby76/Domemtech.TrashBase | 1 | 5461 | <gh_stars>1-10
/*
* [The "BSD license"]
* Copyright (c) 2014-2015 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/**
* A generally reusable set of fragments for import in to Lexer grammars.
*
* Modified 2015.06.16 gbr -
* -- generalized for inclusion into the ANTLRv4 grammar distribution
*
*/
lexer grammar LexBasic;
// ======================================================
// Lexer fragments
//
// -----------------------------------
// Whitespace & Comments
fragment Ws
: Hws
| Vws
;
fragment Hws
: [ \t]
;
fragment Vws
: [\r\n\f]
;
fragment BlockComment
: '/*' .*? ('*/' | EOF)
;
fragment DocComment
: '/**' .*? ('*/' | EOF)
;
fragment LineComment
: '//' ~ [\r\n]*
;
// -----------------------------------
// Escapes
// Any kind of escaped character that we can embed within ANTLR literal strings.
fragment EscSeq
: Esc ([btnfr"'\\] | UnicodeEsc | . | EOF)
;
fragment EscAny
: Esc .
;
fragment UnicodeEsc
: 'u' (HexDigit (HexDigit (HexDigit HexDigit?)?)?)?
;
// -----------------------------------
// Numerals
fragment DecimalNumeral
: '0'
| [1-9] DecDigit*
;
// -----------------------------------
// Digits
fragment HexDigit
: [0-9a-fA-F]
;
fragment DecDigit
: [0-9]
;
// -----------------------------------
// Literals
fragment BoolLiteral
: 'true'
| 'false'
;
fragment CharLiteral
: SQuote (EscSeq | ~ ['\r\n\\]) SQuote
;
fragment SQuoteLiteral
: SQuote (EscSeq | ~ ['\r\n\\])* SQuote
;
fragment DQuoteLiteral
: DQuote (EscSeq | ~ ["\r\n\\])* DQuote
;
fragment USQuoteLiteral
: SQuote (EscSeq | ~ ['\r\n\\])*
;
// -----------------------------------
// Character ranges
fragment NameChar
: NameStartChar
| '0' .. '9'
| Underscore
| '\u00B7'
| '\u0300' .. '\u036F'
| '\u203F' .. '\u2040'
;
fragment NameStartChar
: 'A' .. 'Z'
| 'a' .. 'z'
| '\u00C0' .. '\u00D6'
| '\u00D8' .. '\u00F6'
| '\u00F8' .. '\u02FF'
| '\u0370' .. '\u037D'
| '\u037F' .. '\u1FFF'
| '\u200C' .. '\u200D'
| '\u2070' .. '\u218F'
| '\u2C00' .. '\u2FEF'
| '\u3001' .. '\uD7FF'
| '\uF900' .. '\uFDCF'
| '\uFDF0' .. '\uFFFD'
;
// ignores | ['\u10000-'\uEFFFF] ;
// -----------------------------------
// Types
fragment Int
: 'int'
;
// -----------------------------------
// Symbols
fragment Esc
: '\\'
;
fragment Colon
: ':'
;
fragment DColon
: '::'
;
fragment SQuote
: '\''
;
fragment DQuote
: '"'
;
fragment LParen
: '('
;
fragment RParen
: ')'
;
fragment LBrace
: '{'
;
fragment RBrace
: '}'
;
fragment LBrack
: '['
;
fragment RBrack
: ']'
;
fragment RArrow
: '->'
;
fragment Lt
: '<'
;
fragment Gt
: '>'
;
fragment Equal
: '='
;
fragment Question
: '?'
;
fragment Star
: '*'
;
fragment Plus
: '+'
;
fragment PlusAssign
: '+='
;
fragment Underscore
: '_'
;
fragment Pipe
: '|'
;
fragment Root
: '^'
;
fragment Bang
: '!'
;
fragment Dollar
: '$'
;
fragment Comma
: ','
;
fragment Semi
: ';'
;
fragment Dot
: '.'
;
fragment Range
: '..'
;
fragment At
: '@'
;
fragment Pound
: '#'
;
fragment Tilde
: '~'
;
|
RuntimeIntegrationTests/TreeCloning/CloningTestLib/CloningTest.g4 | Agrabski/Antlr_fork | 0 | 3117 | <filename>RuntimeIntegrationTests/TreeCloning/CloningTestLib/CloningTest.g4
grammar CloningTest;
expression: expression ('+' expression)+ | number | multiplication;
multiplication: number '(' expression ')';
number: DIGIT*;
DIGIT: [0-9]; |
Verilog/P7/test/P7测试集/计时器功能测试.asm | JJLeo/BUAA-CO-2020 | 9 | 26303 | <reponame>JJLeo/BUAA-CO-2020
.text
li $12, 0x0c01
mtc0 $12, $12
li $1, 500
li $2, 9
sw $1, 0x7f04($0)
sw $2, 0x7f00($0)
li $1, 1000
sw $1, 0x7f14($0)
sw $2, 0x7f10($0)
lw $1, 0x7f00($0)
lw $1, 0x7f04($0)
lw $1, 0x7f10($0)
lw $1, 0x7f14($0)
li $1, 0
li $2, 0
for:
ori $3, $3, 0
beq $1, $0, for
nop
beq $2, $0, for
nop
lw $1, 0x7f00($0)
lw $1, 0x7f04($0)
lw $1, 0x7f10($0)
lw $1, 0x7f14($0)
end:j end
.ktext 0x4180
mfc0 $13, $13
li $15, 0x7fffffff
and $13, $13, $15
li $14, 1024
beq $13, $14, timer0
nop
li $14, 2048
beq $13, $14, timer1
nop
eret
timer0:
li $1, 1
sw $0, 0x7f00($0)
eret
timer1:
li $2, 2
sw $0, 0x7f10($0)
eret |
libsrc/_DEVELOPMENT/stdio/c/sdcc_ix/fsetpos_callee.asm | teknoplop/z88dk | 0 | 97863 | <reponame>teknoplop/z88dk
; int fsetpos_callee(FILE *stream, const fpos_t *pos)
INCLUDE "clib_cfg.asm"
SECTION code_clib
SECTION code_stdio
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
IF __CLIB_OPT_MULTITHREAD & $02
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
PUBLIC _fsetpos_callee, l0_fsetpos_callee
EXTERN asm_fsetpos
_fsetpos_callee:
pop hl
pop bc
ex (sp),hl
l0_fsetpos_callee:
push bc
ex (sp),ix
call asm_fsetpos
pop ix
ret
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
ELSE
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
PUBLIC _fsetpos_callee
EXTERN _fsetpos_unlocked_callee
defc _fsetpos_callee = _fsetpos_unlocked_callee
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
ENDIF
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
src/Types/IND1.agda | peterthiemann/dual-session | 1 | 8290 | <filename>src/Types/IND1.agda
module Types.IND1 where
open import Data.Nat
open import Data.Fin hiding (_+_)
open import Data.Product
open import Function
open import Relation.Binary.PropositionalEquality hiding (Extensionality)
open import Types.Direction
open import Auxiliary.Extensionality
open import Auxiliary.RewriteLemmas
private
variable
m n : ℕ
----------------------------------------------------------------------
-- session type inductively with explicit rec
-- without polarized variables
mutual
data Type n : Set where
TUnit TInt : Type n
TPair : (T₁ : Type n) (T₂ : Type n) → Type n
TChan : (S : SType n) → Type n
data SType n : Set where
gdd : (G : GType n) → SType n
rec : (G : GType (suc n) ) → SType n
var : (x : Fin n) → SType n
data GType n : Set where
transmit : (d : Dir) (T : Type n) (S : SType n) → GType n
choice : (d : Dir) (m : ℕ) (alt : Fin m → SType n) → GType n
end : GType n
TType = Type
-- weakening
weakenS : (n : ℕ) → SType m → SType (m + n)
weakenG : (n : ℕ) → GType m → GType (m + n)
weakenT : (n : ℕ) → TType m → TType (m + n)
weakenS n (gdd gst) = gdd (weakenG n gst)
weakenS n (rec gst) = rec (weakenG n gst)
weakenS n (var x) = var (inject+ n x)
weakenG n (transmit d t s) = transmit d (weakenT n t) (weakenS n s)
weakenG n (choice d m alt) = choice d m (weakenS n ∘ alt)
weakenG n end = end
weakenT n TUnit = TUnit
weakenT n TInt = TInt
weakenT n (TPair ty ty₁) = TPair (weakenT n ty) (weakenT n ty₁)
weakenT n (TChan x) = TChan (weakenS n x)
weaken1 : SType m → SType (suc m)
weaken1{m} stm with weakenS 1 stm
... | r rewrite n+1=suc-n {m} = r
module CheckWeaken where
s0 : SType 0
s0 = rec (transmit SND TUnit (var zero))
s1 : SType 1
s1 = rec (transmit SND TUnit (var zero))
s2 : SType 2
s2 = rec (transmit SND TUnit (var zero))
check-weakenS1 : weakenS 1 s0 ≡ s1
check-weakenS1 = cong rec (cong (transmit SND TUnit) refl)
check-weakenS2 : weakenS 2 s0 ≡ s2
check-weakenS2 = cong rec (cong (transmit SND TUnit) refl)
weaken1'N : Fin (suc n) → Fin n → Fin (suc n)
weaken1'N zero x = suc x
weaken1'N (suc i) zero = zero
weaken1'N (suc i) (suc x) = suc (weaken1'N i x)
weaken1'S : Fin (suc n) → SType n → SType (suc n)
weaken1'G : Fin (suc n) → GType n → GType (suc n)
weaken1'T : Fin (suc n) → TType n → TType (suc n)
weaken1'S i (gdd gst) = gdd (weaken1'G i gst)
weaken1'S i (rec gst) = rec (weaken1'G (suc i) gst)
weaken1'S i (var x) = var (weaken1'N i x)
weaken1'G i (transmit d t s) = transmit d (weaken1'T i t) (weaken1'S i s)
weaken1'G i (choice d m alt) = choice d m (weaken1'S i ∘ alt)
weaken1'G i end = end
weaken1'T i TUnit = TUnit
weaken1'T i TInt = TInt
weaken1'T i (TPair t₁ t₂) = TPair (weaken1'T i t₁) (weaken1'T i t₂)
weaken1'T i (TChan x) = TChan (weaken1'S i x)
weaken1S : SType n → SType (suc n)
weaken1G : GType n → GType (suc n)
weaken1T : Type n → Type (suc n)
weaken1S = weaken1'S zero
weaken1G = weaken1'G zero
weaken1T = weaken1'T zero
module CheckWeaken1' where
sxy : ∀ n → Fin (suc n) → SType n
sxy n x = rec (transmit SND TUnit (var x))
s00 : SType 0
s00 = sxy 0 zero
s10 : SType 1
s10 = sxy 1 zero
s11 : SType 1
s11 = sxy 1 (suc zero)
s22 : SType 2
s22 = sxy 2 (suc (suc zero))
check-weaken-s01 : weaken1'S zero s00 ≡ s10
check-weaken-s01 = refl
check-weaken-s1-s2 : weaken1'S zero s11 ≡ s22
check-weaken-s1-s2 = refl
check-weaken-s21 : weaken1'S (suc zero) (sxy 2 (suc zero)) ≡ sxy 3 (suc zero)
check-weaken-s21 = refl
--------------------------------------------------------------------
weak-weakN : (i : Fin (suc n)) (j : Fin (suc n)) (le : Data.Fin._≤_ j i) (x : Fin n)
→ weaken1'N (suc i) (weaken1'N j x) ≡ weaken1'N (inject₁ j) (weaken1'N i x)
weak-weakG : (i : Fin (suc n)) (j : Fin (suc n)) (le : Data.Fin._≤_ j i) (g : GType n)
→ weaken1'G (suc i) (weaken1'G j g) ≡ weaken1'G (inject₁ j) (weaken1'G i g)
weak-weakS : (i : Fin (suc n)) (j : Fin (suc n)) (le : Data.Fin._≤_ j i) (s : SType n)
→ weaken1'S (suc i) (weaken1'S j s) ≡ weaken1'S (inject₁ j) (weaken1'S i s)
weak-weakT : (i : Fin (suc n)) (j : Fin (suc n)) (le : Data.Fin._≤_ j i) (t : Type n)
→ weaken1'T (suc i) (weaken1'T j t) ≡ weaken1'T (inject₁ j) (weaken1'T i t)
weak-weakN zero zero le x = refl
weak-weakN (suc i) zero le x = refl
weak-weakN (suc i) (suc j) (s≤s le) zero = refl
weak-weakN{suc n} (suc i) (suc j) (s≤s le) (suc x) = cong suc (weak-weakN i j le x)
weak-weakG i j le (transmit d t s) = cong₂ (transmit d) (weak-weakT i j le t) (weak-weakS i j le s)
weak-weakG i j le (choice d m alt) = cong (choice d m) (ext (weak-weakS i j le ∘ alt))
weak-weakG i j le end = refl
weak-weakS i j le (gdd gst) = cong gdd (weak-weakG i j le gst)
weak-weakS i j le (rec gst) = cong rec (weak-weakG (suc i) (suc j) (s≤s le) gst)
weak-weakS i j le (var x) = cong (var) (weak-weakN i j le x)
weak-weakT i j le TUnit = refl
weak-weakT i j le TInt = refl
weak-weakT i j le (TPair t t₁) = cong₂ TPair (weak-weakT i j le t) (weak-weakT i j le t₁)
weak-weakT i j le (TChan s) = cong TChan (weak-weakS i j le s)
weaken1-weakenN : (m : ℕ) (j : Fin (suc n)) (x : Fin n)
→ inject+ m (weaken1'N j x) ≡ weaken1'N (inject+ m j) (inject+ m x)
weaken1-weakenN m zero zero = refl
weaken1-weakenN m zero (suc x) = refl
weaken1-weakenN m (suc j) zero = refl
weaken1-weakenN m (suc j) (suc x) = cong suc (weaken1-weakenN m j x)
weaken1-weakenS : (m : ℕ) (j : Fin (suc n)) (s : SType n)
→ weakenS m (weaken1'S j s) ≡ weaken1'S (inject+ m j) (weakenS m s)
weaken1-weakenG : (m : ℕ) (j : Fin (suc n)) (g : GType n)
→ weakenG m (weaken1'G j g) ≡ weaken1'G (inject+ m j) (weakenG m g)
weaken1-weakenT : (m : ℕ) (j : Fin (suc n)) (t : Type n)
→ weakenT m (weaken1'T j t) ≡ weaken1'T (inject+ m j) (weakenT m t)
weaken1-weakenS m j (gdd gst) = cong gdd (weaken1-weakenG m j gst)
weaken1-weakenS m j (rec gst) = cong rec (weaken1-weakenG m (suc j) gst)
weaken1-weakenS m zero (var zero) = refl
weaken1-weakenS m zero (var (suc x)) = refl
weaken1-weakenS {suc n} m (suc j) (var zero) = refl
weaken1-weakenS {suc n} m (suc j) (var (suc x)) = cong (var) (cong suc (weaken1-weakenN m j x))
weaken1-weakenG m j (transmit d t s) = cong₂ (transmit d) (weaken1-weakenT m j t) (weaken1-weakenS m j s)
weaken1-weakenG m j (choice d m₁ alt) = cong (choice d m₁) (ext (weaken1-weakenS m j ∘ alt))
weaken1-weakenG m j end = refl
weaken1-weakenT m j TUnit = refl
weaken1-weakenT m j TInt = refl
weaken1-weakenT m j (TPair t t₁) = cong₂ TPair (weaken1-weakenT m j t) (weaken1-weakenT m j t₁)
weaken1-weakenT m j (TChan x) = cong TChan (weaken1-weakenS m j x)
--------------------------------------------------------------------
-- substitution
st-substS : SType (suc n) → Fin (suc n) → SType 0 → SType n
st-substG : GType (suc n) → Fin (suc n) → SType 0 → GType n
st-substT : Type (suc n) → Fin (suc n) → SType 0 → Type n
st-substS (gdd gst) i st0 = gdd (st-substG gst i st0)
st-substS (rec gst) i st0 = rec (st-substG gst (suc i) st0)
st-substS {n} (var zero) zero st0 = weakenS n st0
st-substS {suc n} (var zero) (suc i) st0 = var zero
st-substS {suc n} (var (suc x)) zero st0 = var x
st-substS {suc n} (var (suc x)) (suc i) st0 = weaken1S (st-substS (var x) i st0)
st-substG (transmit d t s) i st0 = transmit d (st-substT t i st0) (st-substS s i st0)
st-substG (choice d m alt) i st0 = choice d m (λ j → st-substS (alt j) i st0)
st-substG end i st0 = end
st-substT TUnit i st0 = TUnit
st-substT TInt i st0 = TInt
st-substT (TPair ty ty₁) i st0 = TPair (st-substT ty i st0) (st-substT ty₁ i st0)
st-substT (TChan st) i st0 = TChan (st-substS st i st0)
--------------------------------------------------------------------
trivial-subst-var : (x : Fin n) (ist₁ ist₂ : SType 0)
→ st-substS (var (suc x)) zero ist₁ ≡ st-substS (var (suc x)) zero ist₂
trivial-subst-var zero ist1 ist2 = refl
trivial-subst-var (suc x) ist1 ist2 = refl
trivial-subst-var' : (i : Fin n) (ist₁ ist₂ : SType 0)
→ st-substS (var zero) (suc i) ist₁ ≡ st-substS (var zero) (suc i) ist₂
trivial-subst-var' zero ist1 ist2 = refl
trivial-subst-var' (suc x) ist1 ist2 = refl
--------------------------------------------------------------------
-- equivalence
variable
t t₁ t₂ t₁' t₂' : Type n
s s₁ s₂ : SType n
g g₁ g₂ : GType n
unfold : SType 0 → GType 0
unfold (gdd gst) = gst
unfold (rec gst) = st-substG gst zero (rec gst)
-- type equivalence
data EquivT (R : SType n → SType n → Set) : Type n → Type n → Set where
eq-unit : EquivT R TUnit TUnit
eq-int : EquivT R TInt TInt
eq-pair : EquivT R t₁ t₁' → EquivT R t₂ t₂' → EquivT R (TPair t₁ t₂) (TPair t₁' t₂')
eq-chan : R s₁ s₂ → EquivT R (TChan s₁) (TChan s₂)
-- session type equivalence
data EquivG (R : SType n → SType n → Set) : GType n → GType n → Set where
eq-transmit : (d : Dir) → EquivT R t₁ t₂ → R s₁ s₂ → EquivG R (transmit d t₁ s₁) (transmit d t₂ s₂)
eq-choice : ∀ {alt alt'} → (d : Dir) → ((i : Fin m) → R (alt i) (alt' i)) → EquivG R (choice d m alt) (choice d m alt')
eq-end : EquivG R end end
record Equiv (s₁ s₂ : SType 0) : Set where
coinductive
field force : EquivG Equiv (unfold s₁) (unfold s₂)
open Equiv
_≈_ = Equiv
_≈'_ = EquivG Equiv
_≈ᵗ_ = EquivT Equiv
-- reflexive
≈-refl : s ≈ s
≈'-refl : g ≈' g
≈ᵗ-refl : t ≈ᵗ t
force (≈-refl {s}) = ≈'-refl
≈'-refl {transmit d t s} = eq-transmit d ≈ᵗ-refl ≈-refl
≈'-refl {choice d m alt} = eq-choice d (λ i → ≈-refl)
≈'-refl {end} = eq-end
≈ᵗ-refl {TUnit} = eq-unit
≈ᵗ-refl {TInt} = eq-int
≈ᵗ-refl {TPair t t₁} = eq-pair ≈ᵗ-refl ≈ᵗ-refl
≈ᵗ-refl {TChan x} = eq-chan ≈-refl
-- symmetric
≈-symm : s₁ ≈ s₂ → s₂ ≈ s₁
≈'-symm : g₁ ≈' g₂ → g₂ ≈' g₁
≈ᵗ-symm : t₁ ≈ᵗ t₂ → t₂ ≈ᵗ t₁
force (≈-symm s₁≈s₂) = ≈'-symm (force s₁≈s₂)
≈'-symm (eq-transmit d x x₁) = eq-transmit d (≈ᵗ-symm x) (≈-symm x₁)
≈'-symm (eq-choice d x) = eq-choice d (≈-symm ∘ x)
≈'-symm eq-end = eq-end
≈ᵗ-symm eq-unit = eq-unit
≈ᵗ-symm eq-int = eq-int
≈ᵗ-symm (eq-pair t₁≈ᵗt₂ t₁≈ᵗt₃) = eq-pair (≈ᵗ-symm t₁≈ᵗt₂) (≈ᵗ-symm t₁≈ᵗt₃)
≈ᵗ-symm (eq-chan x) = eq-chan (≈-symm x)
|
delay.asm | dzaninov/hex2pic | 0 | 171422 | #define DELAY_ASM
#include "delay.inc"
global inner_delay
global outer_delay
global delay_counter
udata
inner_delay res 1 ; long_delay parameter
outer_delay res 1 ; long_delay parameter
delay_counter res 1 ; short_delay parameter
code
; Long delay
; Arguments: inner_delay, outer_delay
routine long_delay
; rselect delay_counter ; assumed
movff inner_delay, delay_counter
inline short_delay
decfsz outer_delay, f
goto long_delay
return
end
|
Categories/Opposite.agda | copumpkin/categories | 98 | 12333 | {-# OPTIONS --universe-polymorphism #-}
module Categories.Opposite where
-- some properties of the opposite category.
-- XXX these should probably go somewhere else, but everywhere i think of
-- has other problems. ☹
open import Categories.Category
open import Categories.Functor
open import Categories.FunctorCategory
open import Categories.NaturalTransformation
open import Categories.Morphisms renaming (_≅_ to _[_≅_])
opⁱ : ∀ {o ℓ e} {C : Category o ℓ e} {A B} → C [ A ≅ B ] → Category.op C [ B ≅ A ]
opⁱ {C = C} A≅B = record
{ f = A≅B.f
; g = A≅B.g
; iso = record { isoˡ = A≅B.isoʳ; isoʳ = A≅B.isoˡ }
}
where
module A≅B = Categories.Morphisms._≅_ A≅B
opF : ∀ {o₁ ℓ₁ e₁ o₂ ℓ₂ e₂} {A : Category o₁ ℓ₁ e₁} {B : Category o₂ ℓ₂ e₂} ->
(Functor (Category.op (Functors (Category.op A) (Category.op B))) (Functors A B))
opF {A = A} {B} = record {
F₀ = Functor.op;
F₁ = NaturalTransformation.op;
identity = Category.Equiv.refl B;
homomorphism = Category.Equiv.refl B;
F-resp-≡ = λ x → x }
|
oeis/097/A097967.asm | neoneye/loda-programs | 11 | 97398 | ; A097967: a(n) = Sum_{k=1..n} (P(n,k) + C(n,k)).
; Submitted by <NAME>(s2)
; 0,2,7,22,79,356,2019,13826,109855,986920,9865123,108507158,1302065439,16926805676,236975181187,3554627504842,56874039618751,966858672535760,17403456103546563,330665665962928286,6613313319249128575
mov $2,1
mov $3,$0
lpb $3
mul $2,$3
add $1,$2
sub $3,1
lpe
mov $4,2
pow $4,$0
add $4,$1
mov $0,$4
sub $0,1
|
arch/ARM/RP/svd/rp2040/rp_svd-clocks.ads | morbos/Ada_Drivers_Library | 2 | 23628 | <reponame>morbos/Ada_Drivers_Library
-- Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
--
-- SPDX-License-Identifier: BSD-3-Clause
-- This spec has been automatically generated from rp2040.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package RP_SVD.CLOCKS is
pragma Preelaborate;
---------------
-- Registers --
---------------
-- Selects the auxiliary clock source, will glitch when switching
type CLK_GPOUT0_CTRL_AUXSRC_Field is
(CLKSRC_PLL_SYS,
CLKSRC_GPIN0,
CLKSRC_GPIN1,
CLKSRC_PLL_USB,
ROSC_CLKSRC,
XOSC_CLKSRC,
CLK_SYS,
CLK_USB,
CLK_ADC,
CLK_RTC,
CLK_REF)
with Size => 4;
for CLK_GPOUT0_CTRL_AUXSRC_Field use
(CLKSRC_PLL_SYS => 0,
CLKSRC_GPIN0 => 1,
CLKSRC_GPIN1 => 2,
CLKSRC_PLL_USB => 3,
ROSC_CLKSRC => 4,
XOSC_CLKSRC => 5,
CLK_SYS => 6,
CLK_USB => 7,
CLK_ADC => 8,
CLK_RTC => 9,
CLK_REF => 10);
subtype CLK_GPOUT0_CTRL_PHASE_Field is HAL.UInt2;
-- Clock control, can be changed on-the-fly (except for auxsrc)
type CLK_GPOUT0_CTRL_Register is record
-- unspecified
Reserved_0_4 : HAL.UInt5 := 16#0#;
-- Selects the auxiliary clock source, will glitch when switching
AUXSRC : CLK_GPOUT0_CTRL_AUXSRC_Field :=
RP_SVD.CLOCKS.CLKSRC_PLL_SYS;
-- unspecified
Reserved_9_9 : HAL.Bit := 16#0#;
-- Asynchronously kills the clock generator
KILL : Boolean := False;
-- Starts and stops the clock generator cleanly
ENABLE : Boolean := False;
-- Enables duty cycle correction for odd divisors
DC50 : Boolean := False;
-- unspecified
Reserved_13_15 : HAL.UInt3 := 16#0#;
-- This delays the enable signal by up to 3 cycles of the input clock\n
-- This must be set before the clock is enabled to have any effect
PHASE : CLK_GPOUT0_CTRL_PHASE_Field := 16#0#;
-- unspecified
Reserved_18_19 : HAL.UInt2 := 16#0#;
-- An edge on this signal shifts the phase of the output by 1 cycle of
-- the input clock\n This can be done at any time
NUDGE : Boolean := False;
-- unspecified
Reserved_21_31 : HAL.UInt11 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_GPOUT0_CTRL_Register use record
Reserved_0_4 at 0 range 0 .. 4;
AUXSRC at 0 range 5 .. 8;
Reserved_9_9 at 0 range 9 .. 9;
KILL at 0 range 10 .. 10;
ENABLE at 0 range 11 .. 11;
DC50 at 0 range 12 .. 12;
Reserved_13_15 at 0 range 13 .. 15;
PHASE at 0 range 16 .. 17;
Reserved_18_19 at 0 range 18 .. 19;
NUDGE at 0 range 20 .. 20;
Reserved_21_31 at 0 range 21 .. 31;
end record;
subtype CLK_GPOUT0_DIV_FRAC_Field is HAL.UInt8;
subtype CLK_GPOUT0_DIV_INT_Field is HAL.UInt24;
-- Clock divisor, can be changed on-the-fly
type CLK_GPOUT0_DIV_Register is record
-- Fractional component of the divisor
FRAC : CLK_GPOUT0_DIV_FRAC_Field := 16#0#;
-- Integer component of the divisor, 0 -> divide by 2^16
INT : CLK_GPOUT0_DIV_INT_Field := 16#1#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_GPOUT0_DIV_Register use record
FRAC at 0 range 0 .. 7;
INT at 0 range 8 .. 31;
end record;
-- Selects the auxiliary clock source, will glitch when switching
type CLK_GPOUT1_CTRL_AUXSRC_Field is
(CLKSRC_PLL_SYS,
CLKSRC_GPIN0,
CLKSRC_GPIN1,
CLKSRC_PLL_USB,
ROSC_CLKSRC,
XOSC_CLKSRC,
CLK_SYS,
CLK_USB,
CLK_ADC,
CLK_RTC,
CLK_REF)
with Size => 4;
for CLK_GPOUT1_CTRL_AUXSRC_Field use
(CLKSRC_PLL_SYS => 0,
CLKSRC_GPIN0 => 1,
CLKSRC_GPIN1 => 2,
CLKSRC_PLL_USB => 3,
ROSC_CLKSRC => 4,
XOSC_CLKSRC => 5,
CLK_SYS => 6,
CLK_USB => 7,
CLK_ADC => 8,
CLK_RTC => 9,
CLK_REF => 10);
subtype CLK_GPOUT1_CTRL_PHASE_Field is HAL.UInt2;
-- Clock control, can be changed on-the-fly (except for auxsrc)
type CLK_GPOUT1_CTRL_Register is record
-- unspecified
Reserved_0_4 : HAL.UInt5 := 16#0#;
-- Selects the auxiliary clock source, will glitch when switching
AUXSRC : CLK_GPOUT1_CTRL_AUXSRC_Field :=
RP_SVD.CLOCKS.CLKSRC_PLL_SYS;
-- unspecified
Reserved_9_9 : HAL.Bit := 16#0#;
-- Asynchronously kills the clock generator
KILL : Boolean := False;
-- Starts and stops the clock generator cleanly
ENABLE : Boolean := False;
-- Enables duty cycle correction for odd divisors
DC50 : Boolean := False;
-- unspecified
Reserved_13_15 : HAL.UInt3 := 16#0#;
-- This delays the enable signal by up to 3 cycles of the input clock\n
-- This must be set before the clock is enabled to have any effect
PHASE : CLK_GPOUT1_CTRL_PHASE_Field := 16#0#;
-- unspecified
Reserved_18_19 : HAL.UInt2 := 16#0#;
-- An edge on this signal shifts the phase of the output by 1 cycle of
-- the input clock\n This can be done at any time
NUDGE : Boolean := False;
-- unspecified
Reserved_21_31 : HAL.UInt11 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_GPOUT1_CTRL_Register use record
Reserved_0_4 at 0 range 0 .. 4;
AUXSRC at 0 range 5 .. 8;
Reserved_9_9 at 0 range 9 .. 9;
KILL at 0 range 10 .. 10;
ENABLE at 0 range 11 .. 11;
DC50 at 0 range 12 .. 12;
Reserved_13_15 at 0 range 13 .. 15;
PHASE at 0 range 16 .. 17;
Reserved_18_19 at 0 range 18 .. 19;
NUDGE at 0 range 20 .. 20;
Reserved_21_31 at 0 range 21 .. 31;
end record;
subtype CLK_GPOUT1_DIV_FRAC_Field is HAL.UInt8;
subtype CLK_GPOUT1_DIV_INT_Field is HAL.UInt24;
-- Clock divisor, can be changed on-the-fly
type CLK_GPOUT1_DIV_Register is record
-- Fractional component of the divisor
FRAC : CLK_GPOUT1_DIV_FRAC_Field := 16#0#;
-- Integer component of the divisor, 0 -> divide by 2^16
INT : CLK_GPOUT1_DIV_INT_Field := 16#1#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_GPOUT1_DIV_Register use record
FRAC at 0 range 0 .. 7;
INT at 0 range 8 .. 31;
end record;
-- Selects the auxiliary clock source, will glitch when switching
type CLK_GPOUT2_CTRL_AUXSRC_Field is
(CLKSRC_PLL_SYS,
CLKSRC_GPIN0,
CLKSRC_GPIN1,
CLKSRC_PLL_USB,
ROSC_CLKSRC_PH,
XOSC_CLKSRC,
CLK_SYS,
CLK_USB,
CLK_ADC,
CLK_RTC,
CLK_REF)
with Size => 4;
for CLK_GPOUT2_CTRL_AUXSRC_Field use
(CLKSRC_PLL_SYS => 0,
CLKSRC_GPIN0 => 1,
CLKSRC_GPIN1 => 2,
CLKSRC_PLL_USB => 3,
ROSC_CLKSRC_PH => 4,
XOSC_CLKSRC => 5,
CLK_SYS => 6,
CLK_USB => 7,
CLK_ADC => 8,
CLK_RTC => 9,
CLK_REF => 10);
subtype CLK_GPOUT2_CTRL_PHASE_Field is HAL.UInt2;
-- Clock control, can be changed on-the-fly (except for auxsrc)
type CLK_GPOUT2_CTRL_Register is record
-- unspecified
Reserved_0_4 : HAL.UInt5 := 16#0#;
-- Selects the auxiliary clock source, will glitch when switching
AUXSRC : CLK_GPOUT2_CTRL_AUXSRC_Field :=
RP_SVD.CLOCKS.CLKSRC_PLL_SYS;
-- unspecified
Reserved_9_9 : HAL.Bit := 16#0#;
-- Asynchronously kills the clock generator
KILL : Boolean := False;
-- Starts and stops the clock generator cleanly
ENABLE : Boolean := False;
-- Enables duty cycle correction for odd divisors
DC50 : Boolean := False;
-- unspecified
Reserved_13_15 : HAL.UInt3 := 16#0#;
-- This delays the enable signal by up to 3 cycles of the input clock\n
-- This must be set before the clock is enabled to have any effect
PHASE : CLK_GPOUT2_CTRL_PHASE_Field := 16#0#;
-- unspecified
Reserved_18_19 : HAL.UInt2 := 16#0#;
-- An edge on this signal shifts the phase of the output by 1 cycle of
-- the input clock\n This can be done at any time
NUDGE : Boolean := False;
-- unspecified
Reserved_21_31 : HAL.UInt11 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_GPOUT2_CTRL_Register use record
Reserved_0_4 at 0 range 0 .. 4;
AUXSRC at 0 range 5 .. 8;
Reserved_9_9 at 0 range 9 .. 9;
KILL at 0 range 10 .. 10;
ENABLE at 0 range 11 .. 11;
DC50 at 0 range 12 .. 12;
Reserved_13_15 at 0 range 13 .. 15;
PHASE at 0 range 16 .. 17;
Reserved_18_19 at 0 range 18 .. 19;
NUDGE at 0 range 20 .. 20;
Reserved_21_31 at 0 range 21 .. 31;
end record;
subtype CLK_GPOUT2_DIV_FRAC_Field is HAL.UInt8;
subtype CLK_GPOUT2_DIV_INT_Field is HAL.UInt24;
-- Clock divisor, can be changed on-the-fly
type CLK_GPOUT2_DIV_Register is record
-- Fractional component of the divisor
FRAC : CLK_GPOUT2_DIV_FRAC_Field := 16#0#;
-- Integer component of the divisor, 0 -> divide by 2^16
INT : CLK_GPOUT2_DIV_INT_Field := 16#1#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_GPOUT2_DIV_Register use record
FRAC at 0 range 0 .. 7;
INT at 0 range 8 .. 31;
end record;
-- Selects the auxiliary clock source, will glitch when switching
type CLK_GPOUT3_CTRL_AUXSRC_Field is
(CLKSRC_PLL_SYS,
CLKSRC_GPIN0,
CLKSRC_GPIN1,
CLKSRC_PLL_USB,
ROSC_CLKSRC_PH,
XOSC_CLKSRC,
CLK_SYS,
CLK_USB,
CLK_ADC,
CLK_RTC,
CLK_REF)
with Size => 4;
for CLK_GPOUT3_CTRL_AUXSRC_Field use
(CLKSRC_PLL_SYS => 0,
CLKSRC_GPIN0 => 1,
CLKSRC_GPIN1 => 2,
CLKSRC_PLL_USB => 3,
ROSC_CLKSRC_PH => 4,
XOSC_CLKSRC => 5,
CLK_SYS => 6,
CLK_USB => 7,
CLK_ADC => 8,
CLK_RTC => 9,
CLK_REF => 10);
subtype CLK_GPOUT3_CTRL_PHASE_Field is HAL.UInt2;
-- Clock control, can be changed on-the-fly (except for auxsrc)
type CLK_GPOUT3_CTRL_Register is record
-- unspecified
Reserved_0_4 : HAL.UInt5 := 16#0#;
-- Selects the auxiliary clock source, will glitch when switching
AUXSRC : CLK_GPOUT3_CTRL_AUXSRC_Field :=
RP_SVD.CLOCKS.CLKSRC_PLL_SYS;
-- unspecified
Reserved_9_9 : HAL.Bit := 16#0#;
-- Asynchronously kills the clock generator
KILL : Boolean := False;
-- Starts and stops the clock generator cleanly
ENABLE : Boolean := False;
-- Enables duty cycle correction for odd divisors
DC50 : Boolean := False;
-- unspecified
Reserved_13_15 : HAL.UInt3 := 16#0#;
-- This delays the enable signal by up to 3 cycles of the input clock\n
-- This must be set before the clock is enabled to have any effect
PHASE : CLK_GPOUT3_CTRL_PHASE_Field := 16#0#;
-- unspecified
Reserved_18_19 : HAL.UInt2 := 16#0#;
-- An edge on this signal shifts the phase of the output by 1 cycle of
-- the input clock\n This can be done at any time
NUDGE : Boolean := False;
-- unspecified
Reserved_21_31 : HAL.UInt11 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_GPOUT3_CTRL_Register use record
Reserved_0_4 at 0 range 0 .. 4;
AUXSRC at 0 range 5 .. 8;
Reserved_9_9 at 0 range 9 .. 9;
KILL at 0 range 10 .. 10;
ENABLE at 0 range 11 .. 11;
DC50 at 0 range 12 .. 12;
Reserved_13_15 at 0 range 13 .. 15;
PHASE at 0 range 16 .. 17;
Reserved_18_19 at 0 range 18 .. 19;
NUDGE at 0 range 20 .. 20;
Reserved_21_31 at 0 range 21 .. 31;
end record;
subtype CLK_GPOUT3_DIV_FRAC_Field is HAL.UInt8;
subtype CLK_GPOUT3_DIV_INT_Field is HAL.UInt24;
-- Clock divisor, can be changed on-the-fly
type CLK_GPOUT3_DIV_Register is record
-- Fractional component of the divisor
FRAC : CLK_GPOUT3_DIV_FRAC_Field := 16#0#;
-- Integer component of the divisor, 0 -> divide by 2^16
INT : CLK_GPOUT3_DIV_INT_Field := 16#1#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_GPOUT3_DIV_Register use record
FRAC at 0 range 0 .. 7;
INT at 0 range 8 .. 31;
end record;
-- Selects the clock source glitchlessly, can be changed on-the-fly
type CLK_REF_CTRL_SRC_Field is
(ROSC_CLKSRC_PH,
CLKSRC_CLK_REF_AUX,
XOSC_CLKSRC)
with Size => 2;
for CLK_REF_CTRL_SRC_Field use
(ROSC_CLKSRC_PH => 0,
CLKSRC_CLK_REF_AUX => 1,
XOSC_CLKSRC => 2);
-- Selects the auxiliary clock source, will glitch when switching
type CLK_REF_CTRL_AUXSRC_Field is
(CLKSRC_PLL_USB,
CLKSRC_GPIN0,
CLKSRC_GPIN1)
with Size => 2;
for CLK_REF_CTRL_AUXSRC_Field use
(CLKSRC_PLL_USB => 0,
CLKSRC_GPIN0 => 1,
CLKSRC_GPIN1 => 2);
-- Clock control, can be changed on-the-fly (except for auxsrc)
type CLK_REF_CTRL_Register is record
-- Selects the clock source glitchlessly, can be changed on-the-fly
SRC : CLK_REF_CTRL_SRC_Field := RP_SVD.CLOCKS.ROSC_CLKSRC_PH;
-- unspecified
Reserved_2_4 : HAL.UInt3 := 16#0#;
-- Selects the auxiliary clock source, will glitch when switching
AUXSRC : CLK_REF_CTRL_AUXSRC_Field :=
RP_SVD.CLOCKS.CLKSRC_PLL_USB;
-- unspecified
Reserved_7_31 : HAL.UInt25 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_REF_CTRL_Register use record
SRC at 0 range 0 .. 1;
Reserved_2_4 at 0 range 2 .. 4;
AUXSRC at 0 range 5 .. 6;
Reserved_7_31 at 0 range 7 .. 31;
end record;
subtype CLK_REF_DIV_INT_Field is HAL.UInt2;
-- Clock divisor, can be changed on-the-fly
type CLK_REF_DIV_Register is record
-- unspecified
Reserved_0_7 : HAL.UInt8 := 16#0#;
-- Integer component of the divisor, 0 -> divide by 2^16
INT : CLK_REF_DIV_INT_Field := 16#1#;
-- unspecified
Reserved_10_31 : HAL.UInt22 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_REF_DIV_Register use record
Reserved_0_7 at 0 range 0 .. 7;
INT at 0 range 8 .. 9;
Reserved_10_31 at 0 range 10 .. 31;
end record;
-- Selects the clock source glitchlessly, can be changed on-the-fly
type CLK_SYS_CTRL_SRC_Field is
(CLK_REF,
CLKSRC_CLK_SYS_AUX)
with Size => 1;
for CLK_SYS_CTRL_SRC_Field use
(CLK_REF => 0,
CLKSRC_CLK_SYS_AUX => 1);
-- Selects the auxiliary clock source, will glitch when switching
type CLK_SYS_CTRL_AUXSRC_Field is
(CLKSRC_PLL_SYS,
CLKSRC_PLL_USB,
ROSC_CLKSRC,
XOSC_CLKSRC,
CLKSRC_GPIN0,
CLKSRC_GPIN1)
with Size => 3;
for CLK_SYS_CTRL_AUXSRC_Field use
(CLKSRC_PLL_SYS => 0,
CLKSRC_PLL_USB => 1,
ROSC_CLKSRC => 2,
XOSC_CLKSRC => 3,
CLKSRC_GPIN0 => 4,
CLKSRC_GPIN1 => 5);
-- Clock control, can be changed on-the-fly (except for auxsrc)
type CLK_SYS_CTRL_Register is record
-- Selects the clock source glitchlessly, can be changed on-the-fly
SRC : CLK_SYS_CTRL_SRC_Field := RP_SVD.CLOCKS.CLK_REF;
-- unspecified
Reserved_1_4 : HAL.UInt4 := 16#0#;
-- Selects the auxiliary clock source, will glitch when switching
AUXSRC : CLK_SYS_CTRL_AUXSRC_Field :=
RP_SVD.CLOCKS.CLKSRC_PLL_SYS;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_SYS_CTRL_Register use record
SRC at 0 range 0 .. 0;
Reserved_1_4 at 0 range 1 .. 4;
AUXSRC at 0 range 5 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype CLK_SYS_DIV_FRAC_Field is HAL.UInt8;
subtype CLK_SYS_DIV_INT_Field is HAL.UInt24;
-- Clock divisor, can be changed on-the-fly
type CLK_SYS_DIV_Register is record
-- Fractional component of the divisor
FRAC : CLK_SYS_DIV_FRAC_Field := 16#0#;
-- Integer component of the divisor, 0 -> divide by 2^16
INT : CLK_SYS_DIV_INT_Field := 16#1#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_SYS_DIV_Register use record
FRAC at 0 range 0 .. 7;
INT at 0 range 8 .. 31;
end record;
-- Selects the auxiliary clock source, will glitch when switching
type CLK_PERI_CTRL_AUXSRC_Field is
(CLK_SYS,
CLKSRC_PLL_SYS,
CLKSRC_PLL_USB,
ROSC_CLKSRC_PH,
XOSC_CLKSRC,
CLKSRC_GPIN0,
CLKSRC_GPIN1)
with Size => 3;
for CLK_PERI_CTRL_AUXSRC_Field use
(CLK_SYS => 0,
CLKSRC_PLL_SYS => 1,
CLKSRC_PLL_USB => 2,
ROSC_CLKSRC_PH => 3,
XOSC_CLKSRC => 4,
CLKSRC_GPIN0 => 5,
CLKSRC_GPIN1 => 6);
-- Clock control, can be changed on-the-fly (except for auxsrc)
type CLK_PERI_CTRL_Register is record
-- unspecified
Reserved_0_4 : HAL.UInt5 := 16#0#;
-- Selects the auxiliary clock source, will glitch when switching
AUXSRC : CLK_PERI_CTRL_AUXSRC_Field := RP_SVD.CLOCKS.CLK_SYS;
-- unspecified
Reserved_8_9 : HAL.UInt2 := 16#0#;
-- Asynchronously kills the clock generator
KILL : Boolean := False;
-- Starts and stops the clock generator cleanly
ENABLE : Boolean := False;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_PERI_CTRL_Register use record
Reserved_0_4 at 0 range 0 .. 4;
AUXSRC at 0 range 5 .. 7;
Reserved_8_9 at 0 range 8 .. 9;
KILL at 0 range 10 .. 10;
ENABLE at 0 range 11 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
-- Selects the auxiliary clock source, will glitch when switching
type CLK_USB_CTRL_AUXSRC_Field is
(CLKSRC_PLL_USB,
CLKSRC_PLL_SYS,
ROSC_CLKSRC_PH,
XOSC_CLKSRC,
CLKSRC_GPIN0,
CLKSRC_GPIN1)
with Size => 3;
for CLK_USB_CTRL_AUXSRC_Field use
(CLKSRC_PLL_USB => 0,
CLKSRC_PLL_SYS => 1,
ROSC_CLKSRC_PH => 2,
XOSC_CLKSRC => 3,
CLKSRC_GPIN0 => 4,
CLKSRC_GPIN1 => 5);
subtype CLK_USB_CTRL_PHASE_Field is HAL.UInt2;
-- Clock control, can be changed on-the-fly (except for auxsrc)
type CLK_USB_CTRL_Register is record
-- unspecified
Reserved_0_4 : HAL.UInt5 := 16#0#;
-- Selects the auxiliary clock source, will glitch when switching
AUXSRC : CLK_USB_CTRL_AUXSRC_Field :=
RP_SVD.CLOCKS.CLKSRC_PLL_USB;
-- unspecified
Reserved_8_9 : HAL.UInt2 := 16#0#;
-- Asynchronously kills the clock generator
KILL : Boolean := False;
-- Starts and stops the clock generator cleanly
ENABLE : Boolean := False;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- This delays the enable signal by up to 3 cycles of the input clock\n
-- This must be set before the clock is enabled to have any effect
PHASE : CLK_USB_CTRL_PHASE_Field := 16#0#;
-- unspecified
Reserved_18_19 : HAL.UInt2 := 16#0#;
-- An edge on this signal shifts the phase of the output by 1 cycle of
-- the input clock\n This can be done at any time
NUDGE : Boolean := False;
-- unspecified
Reserved_21_31 : HAL.UInt11 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_USB_CTRL_Register use record
Reserved_0_4 at 0 range 0 .. 4;
AUXSRC at 0 range 5 .. 7;
Reserved_8_9 at 0 range 8 .. 9;
KILL at 0 range 10 .. 10;
ENABLE at 0 range 11 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
PHASE at 0 range 16 .. 17;
Reserved_18_19 at 0 range 18 .. 19;
NUDGE at 0 range 20 .. 20;
Reserved_21_31 at 0 range 21 .. 31;
end record;
subtype CLK_USB_DIV_INT_Field is HAL.UInt2;
-- Clock divisor, can be changed on-the-fly
type CLK_USB_DIV_Register is record
-- unspecified
Reserved_0_7 : HAL.UInt8 := 16#0#;
-- Integer component of the divisor, 0 -> divide by 2^16
INT : CLK_USB_DIV_INT_Field := 16#1#;
-- unspecified
Reserved_10_31 : HAL.UInt22 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_USB_DIV_Register use record
Reserved_0_7 at 0 range 0 .. 7;
INT at 0 range 8 .. 9;
Reserved_10_31 at 0 range 10 .. 31;
end record;
-- Selects the auxiliary clock source, will glitch when switching
type CLK_ADC_CTRL_AUXSRC_Field is
(CLKSRC_PLL_USB,
CLKSRC_PLL_SYS,
ROSC_CLKSRC_PH,
XOSC_CLKSRC,
CLKSRC_GPIN0,
CLKSRC_GPIN1)
with Size => 3;
for CLK_ADC_CTRL_AUXSRC_Field use
(CLKSRC_PLL_USB => 0,
CLKSRC_PLL_SYS => 1,
ROSC_CLKSRC_PH => 2,
XOSC_CLKSRC => 3,
CLKSRC_GPIN0 => 4,
CLKSRC_GPIN1 => 5);
subtype CLK_ADC_CTRL_PHASE_Field is HAL.UInt2;
-- Clock control, can be changed on-the-fly (except for auxsrc)
type CLK_ADC_CTRL_Register is record
-- unspecified
Reserved_0_4 : HAL.UInt5 := 16#0#;
-- Selects the auxiliary clock source, will glitch when switching
AUXSRC : CLK_ADC_CTRL_AUXSRC_Field :=
RP_SVD.CLOCKS.CLKSRC_PLL_USB;
-- unspecified
Reserved_8_9 : HAL.UInt2 := 16#0#;
-- Asynchronously kills the clock generator
KILL : Boolean := False;
-- Starts and stops the clock generator cleanly
ENABLE : Boolean := False;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- This delays the enable signal by up to 3 cycles of the input clock\n
-- This must be set before the clock is enabled to have any effect
PHASE : CLK_ADC_CTRL_PHASE_Field := 16#0#;
-- unspecified
Reserved_18_19 : HAL.UInt2 := 16#0#;
-- An edge on this signal shifts the phase of the output by 1 cycle of
-- the input clock\n This can be done at any time
NUDGE : Boolean := False;
-- unspecified
Reserved_21_31 : HAL.UInt11 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_ADC_CTRL_Register use record
Reserved_0_4 at 0 range 0 .. 4;
AUXSRC at 0 range 5 .. 7;
Reserved_8_9 at 0 range 8 .. 9;
KILL at 0 range 10 .. 10;
ENABLE at 0 range 11 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
PHASE at 0 range 16 .. 17;
Reserved_18_19 at 0 range 18 .. 19;
NUDGE at 0 range 20 .. 20;
Reserved_21_31 at 0 range 21 .. 31;
end record;
subtype CLK_ADC_DIV_INT_Field is HAL.UInt2;
-- Clock divisor, can be changed on-the-fly
type CLK_ADC_DIV_Register is record
-- unspecified
Reserved_0_7 : HAL.UInt8 := 16#0#;
-- Integer component of the divisor, 0 -> divide by 2^16
INT : CLK_ADC_DIV_INT_Field := 16#1#;
-- unspecified
Reserved_10_31 : HAL.UInt22 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_ADC_DIV_Register use record
Reserved_0_7 at 0 range 0 .. 7;
INT at 0 range 8 .. 9;
Reserved_10_31 at 0 range 10 .. 31;
end record;
-- Selects the auxiliary clock source, will glitch when switching
type CLK_RTC_CTRL_AUXSRC_Field is
(CLKSRC_PLL_USB,
CLKSRC_PLL_SYS,
ROSC_CLKSRC_PH,
XOSC_CLKSRC,
CLKSRC_GPIN0,
CLKSRC_GPIN1)
with Size => 3;
for CLK_RTC_CTRL_AUXSRC_Field use
(CLKSRC_PLL_USB => 0,
CLKSRC_PLL_SYS => 1,
ROSC_CLKSRC_PH => 2,
XOSC_CLKSRC => 3,
CLKSRC_GPIN0 => 4,
CLKSRC_GPIN1 => 5);
subtype CLK_RTC_CTRL_PHASE_Field is HAL.UInt2;
-- Clock control, can be changed on-the-fly (except for auxsrc)
type CLK_RTC_CTRL_Register is record
-- unspecified
Reserved_0_4 : HAL.UInt5 := 16#0#;
-- Selects the auxiliary clock source, will glitch when switching
AUXSRC : CLK_RTC_CTRL_AUXSRC_Field :=
RP_SVD.CLOCKS.CLKSRC_PLL_USB;
-- unspecified
Reserved_8_9 : HAL.UInt2 := 16#0#;
-- Asynchronously kills the clock generator
KILL : Boolean := False;
-- Starts and stops the clock generator cleanly
ENABLE : Boolean := False;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- This delays the enable signal by up to 3 cycles of the input clock\n
-- This must be set before the clock is enabled to have any effect
PHASE : CLK_RTC_CTRL_PHASE_Field := 16#0#;
-- unspecified
Reserved_18_19 : HAL.UInt2 := 16#0#;
-- An edge on this signal shifts the phase of the output by 1 cycle of
-- the input clock\n This can be done at any time
NUDGE : Boolean := False;
-- unspecified
Reserved_21_31 : HAL.UInt11 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_RTC_CTRL_Register use record
Reserved_0_4 at 0 range 0 .. 4;
AUXSRC at 0 range 5 .. 7;
Reserved_8_9 at 0 range 8 .. 9;
KILL at 0 range 10 .. 10;
ENABLE at 0 range 11 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
PHASE at 0 range 16 .. 17;
Reserved_18_19 at 0 range 18 .. 19;
NUDGE at 0 range 20 .. 20;
Reserved_21_31 at 0 range 21 .. 31;
end record;
subtype CLK_RTC_DIV_FRAC_Field is HAL.UInt8;
subtype CLK_RTC_DIV_INT_Field is HAL.UInt24;
-- Clock divisor, can be changed on-the-fly
type CLK_RTC_DIV_Register is record
-- Fractional component of the divisor
FRAC : CLK_RTC_DIV_FRAC_Field := 16#0#;
-- Integer component of the divisor, 0 -> divide by 2^16
INT : CLK_RTC_DIV_INT_Field := 16#1#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_RTC_DIV_Register use record
FRAC at 0 range 0 .. 7;
INT at 0 range 8 .. 31;
end record;
subtype CLK_SYS_RESUS_CTRL_TIMEOUT_Field is HAL.UInt8;
type CLK_SYS_RESUS_CTRL_Register is record
-- This is expressed as a number of clk_ref cycles\n and must be >= 2x
-- clk_ref_freq/min_clk_tst_freq
TIMEOUT : CLK_SYS_RESUS_CTRL_TIMEOUT_Field := 16#FF#;
-- Enable resus
ENABLE : Boolean := False;
-- unspecified
Reserved_9_11 : HAL.UInt3 := 16#0#;
-- Force a resus, for test purposes only
FRCE : Boolean := False;
-- unspecified
Reserved_13_15 : HAL.UInt3 := 16#0#;
-- For clearing the resus after the fault that triggered it has been
-- corrected
CLEAR : Boolean := False;
-- unspecified
Reserved_17_31 : HAL.UInt15 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_SYS_RESUS_CTRL_Register use record
TIMEOUT at 0 range 0 .. 7;
ENABLE at 0 range 8 .. 8;
Reserved_9_11 at 0 range 9 .. 11;
FRCE at 0 range 12 .. 12;
Reserved_13_15 at 0 range 13 .. 15;
CLEAR at 0 range 16 .. 16;
Reserved_17_31 at 0 range 17 .. 31;
end record;
type CLK_SYS_RESUS_STATUS_Register is record
-- Read-only. Clock has been resuscitated, correct the error then send
-- ctrl_clear=1
RESUSSED : Boolean;
-- unspecified
Reserved_1_31 : HAL.UInt31;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CLK_SYS_RESUS_STATUS_Register use record
RESUSSED at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
subtype FC0_REF_KHZ_FC0_REF_KHZ_Field is HAL.UInt20;
-- Reference clock frequency in kHz
type FC0_REF_KHZ_Register is record
FC0_REF_KHZ : FC0_REF_KHZ_FC0_REF_KHZ_Field := 16#0#;
-- unspecified
Reserved_20_31 : HAL.UInt12 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for FC0_REF_KHZ_Register use record
FC0_REF_KHZ at 0 range 0 .. 19;
Reserved_20_31 at 0 range 20 .. 31;
end record;
subtype FC0_MIN_KHZ_FC0_MIN_KHZ_Field is HAL.UInt25;
-- Minimum pass frequency in kHz. This is optional. Set to 0 if you are not
-- using the pass/fail flags
type FC0_MIN_KHZ_Register is record
FC0_MIN_KHZ : FC0_MIN_KHZ_FC0_MIN_KHZ_Field := 16#0#;
-- unspecified
Reserved_25_31 : HAL.UInt7 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for FC0_MIN_KHZ_Register use record
FC0_MIN_KHZ at 0 range 0 .. 24;
Reserved_25_31 at 0 range 25 .. 31;
end record;
subtype FC0_MAX_KHZ_FC0_MAX_KHZ_Field is HAL.UInt25;
-- Maximum pass frequency in kHz. This is optional. Set to 0x1ffffff if you
-- are not using the pass/fail flags
type FC0_MAX_KHZ_Register is record
FC0_MAX_KHZ : FC0_MAX_KHZ_FC0_MAX_KHZ_Field := 16#1FFFFFF#;
-- unspecified
Reserved_25_31 : HAL.UInt7 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for FC0_MAX_KHZ_Register use record
FC0_MAX_KHZ at 0 range 0 .. 24;
Reserved_25_31 at 0 range 25 .. 31;
end record;
subtype FC0_DELAY_FC0_DELAY_Field is HAL.UInt3;
-- Delays the start of frequency counting to allow the mux to settle\n
-- Delay is measured in multiples of the reference clock period
type FC0_DELAY_Register is record
FC0_DELAY : FC0_DELAY_FC0_DELAY_Field := 16#1#;
-- unspecified
Reserved_3_31 : HAL.UInt29 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for FC0_DELAY_Register use record
FC0_DELAY at 0 range 0 .. 2;
Reserved_3_31 at 0 range 3 .. 31;
end record;
subtype FC0_INTERVAL_FC0_INTERVAL_Field is HAL.UInt4;
-- The test interval is 0.98us * 2**interval, but let's call it 1us *
-- 2**interval\n The default gives a test interval of 250us
type FC0_INTERVAL_Register is record
FC0_INTERVAL : FC0_INTERVAL_FC0_INTERVAL_Field := 16#8#;
-- unspecified
Reserved_4_31 : HAL.UInt28 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for FC0_INTERVAL_Register use record
FC0_INTERVAL at 0 range 0 .. 3;
Reserved_4_31 at 0 range 4 .. 31;
end record;
type FC0_SRC_FC0_SRC_Field is
(Null_k,
PLL_SYS_CLKSRC_PRIMARY,
PLL_USB_CLKSRC_PRIMARY,
ROSC_CLKSRC,
ROSC_CLKSRC_PH,
XOSC_CLKSRC,
CLKSRC_GPIN0,
CLKSRC_GPIN1,
CLK_REF,
CLK_SYS,
CLK_PERI,
CLK_USB,
CLK_ADC,
CLK_RTC)
with Size => 8;
for FC0_SRC_FC0_SRC_Field use
(Null_k => 0,
PLL_SYS_CLKSRC_PRIMARY => 1,
PLL_USB_CLKSRC_PRIMARY => 2,
ROSC_CLKSRC => 3,
ROSC_CLKSRC_PH => 4,
XOSC_CLKSRC => 5,
CLKSRC_GPIN0 => 6,
CLKSRC_GPIN1 => 7,
CLK_REF => 8,
CLK_SYS => 9,
CLK_PERI => 10,
CLK_USB => 11,
CLK_ADC => 12,
CLK_RTC => 13);
-- Clock sent to frequency counter, set to 0 when not required\n Writing to
-- this register initiates the frequency count
type FC0_SRC_Register is record
FC0_SRC : FC0_SRC_FC0_SRC_Field := RP_SVD.CLOCKS.Null_k;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for FC0_SRC_Register use record
FC0_SRC at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
-- Frequency counter status
type FC0_STATUS_Register is record
-- Read-only. Test passed
PASS : Boolean;
-- unspecified
Reserved_1_3 : HAL.UInt3;
-- Read-only. Test complete
DONE : Boolean;
-- unspecified
Reserved_5_7 : HAL.UInt3;
-- Read-only. Test running
RUNNING : Boolean;
-- unspecified
Reserved_9_11 : HAL.UInt3;
-- Read-only. Waiting for test clock to start
WAITING : Boolean;
-- unspecified
Reserved_13_15 : HAL.UInt3;
-- Read-only. Test failed
FAIL : Boolean;
-- unspecified
Reserved_17_19 : HAL.UInt3;
-- Read-only. Test clock slower than expected, only valid when
-- status_done=1
SLOW : Boolean;
-- unspecified
Reserved_21_23 : HAL.UInt3;
-- Read-only. Test clock faster than expected, only valid when
-- status_done=1
FAST : Boolean;
-- unspecified
Reserved_25_27 : HAL.UInt3;
-- Read-only. Test clock stopped during test
DIED : Boolean;
-- unspecified
Reserved_29_31 : HAL.UInt3;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for FC0_STATUS_Register use record
PASS at 0 range 0 .. 0;
Reserved_1_3 at 0 range 1 .. 3;
DONE at 0 range 4 .. 4;
Reserved_5_7 at 0 range 5 .. 7;
RUNNING at 0 range 8 .. 8;
Reserved_9_11 at 0 range 9 .. 11;
WAITING at 0 range 12 .. 12;
Reserved_13_15 at 0 range 13 .. 15;
FAIL at 0 range 16 .. 16;
Reserved_17_19 at 0 range 17 .. 19;
SLOW at 0 range 20 .. 20;
Reserved_21_23 at 0 range 21 .. 23;
FAST at 0 range 24 .. 24;
Reserved_25_27 at 0 range 25 .. 27;
DIED at 0 range 28 .. 28;
Reserved_29_31 at 0 range 29 .. 31;
end record;
subtype FC0_RESULT_FRAC_Field is HAL.UInt5;
subtype FC0_RESULT_KHZ_Field is HAL.UInt25;
-- Result of frequency measurement, only valid when status_done=1
type FC0_RESULT_Register is record
-- Read-only.
FRAC : FC0_RESULT_FRAC_Field;
-- Read-only.
KHZ : FC0_RESULT_KHZ_Field;
-- unspecified
Reserved_30_31 : HAL.UInt2;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for FC0_RESULT_Register use record
FRAC at 0 range 0 .. 4;
KHZ at 0 range 5 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
-- WAKE_EN0_clk_sys_i2c array
type WAKE_EN0_clk_sys_i2c_Field_Array is array (0 .. 1) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for WAKE_EN0_clk_sys_i2c
type WAKE_EN0_clk_sys_i2c_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- clk_sys_i2c as a value
Val : HAL.UInt2;
when True =>
-- clk_sys_i2c as an array
Arr : WAKE_EN0_clk_sys_i2c_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for WAKE_EN0_clk_sys_i2c_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- WAKE_EN0_clk_sys_pio array
type WAKE_EN0_clk_sys_pio_Field_Array is array (0 .. 1) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for WAKE_EN0_clk_sys_pio
type WAKE_EN0_clk_sys_pio_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- clk_sys_pio as a value
Val : HAL.UInt2;
when True =>
-- clk_sys_pio as an array
Arr : WAKE_EN0_clk_sys_pio_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for WAKE_EN0_clk_sys_pio_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- WAKE_EN0_clk_sys_sram array
type WAKE_EN0_clk_sys_sram_Field_Array is array (0 .. 3) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for WAKE_EN0_clk_sys_sram
type WAKE_EN0_clk_sys_sram_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- clk_sys_sram as a value
Val : HAL.UInt4;
when True =>
-- clk_sys_sram as an array
Arr : WAKE_EN0_clk_sys_sram_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for WAKE_EN0_clk_sys_sram_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- enable clock in wake mode
type WAKE_EN0_Register is record
clk_sys_clocks : Boolean := True;
clk_adc_adc : Boolean := True;
clk_sys_adc : Boolean := True;
clk_sys_busctrl : Boolean := True;
clk_sys_busfabric : Boolean := True;
clk_sys_dma : Boolean := True;
clk_sys_i2c : WAKE_EN0_clk_sys_i2c_Field :=
(As_Array => False, Val => 16#1#);
clk_sys_io : Boolean := True;
clk_sys_jtag : Boolean := True;
clk_sys_vreg_and_chip_reset : Boolean := True;
clk_sys_pads : Boolean := True;
clk_sys_pio : WAKE_EN0_clk_sys_pio_Field :=
(As_Array => False, Val => 16#1#);
clk_sys_pll_sys : Boolean := True;
clk_sys_pll_usb : Boolean := True;
clk_sys_psm : Boolean := True;
clk_sys_pwm : Boolean := True;
clk_sys_resets : Boolean := True;
clk_sys_rom : Boolean := True;
clk_sys_rosc : Boolean := True;
clk_rtc_rtc : Boolean := True;
clk_sys_rtc : Boolean := True;
clk_sys_sio : Boolean := True;
clk_peri_spi0 : Boolean := True;
clk_sys_spi0 : Boolean := True;
clk_peri_spi1 : Boolean := True;
clk_sys_spi1 : Boolean := True;
clk_sys_sram : WAKE_EN0_clk_sys_sram_Field :=
(As_Array => False, Val => 16#1#);
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for WAKE_EN0_Register use record
clk_sys_clocks at 0 range 0 .. 0;
clk_adc_adc at 0 range 1 .. 1;
clk_sys_adc at 0 range 2 .. 2;
clk_sys_busctrl at 0 range 3 .. 3;
clk_sys_busfabric at 0 range 4 .. 4;
clk_sys_dma at 0 range 5 .. 5;
clk_sys_i2c at 0 range 6 .. 7;
clk_sys_io at 0 range 8 .. 8;
clk_sys_jtag at 0 range 9 .. 9;
clk_sys_vreg_and_chip_reset at 0 range 10 .. 10;
clk_sys_pads at 0 range 11 .. 11;
clk_sys_pio at 0 range 12 .. 13;
clk_sys_pll_sys at 0 range 14 .. 14;
clk_sys_pll_usb at 0 range 15 .. 15;
clk_sys_psm at 0 range 16 .. 16;
clk_sys_pwm at 0 range 17 .. 17;
clk_sys_resets at 0 range 18 .. 18;
clk_sys_rom at 0 range 19 .. 19;
clk_sys_rosc at 0 range 20 .. 20;
clk_rtc_rtc at 0 range 21 .. 21;
clk_sys_rtc at 0 range 22 .. 22;
clk_sys_sio at 0 range 23 .. 23;
clk_peri_spi0 at 0 range 24 .. 24;
clk_sys_spi0 at 0 range 25 .. 25;
clk_peri_spi1 at 0 range 26 .. 26;
clk_sys_spi1 at 0 range 27 .. 27;
clk_sys_sram at 0 range 28 .. 31;
end record;
-- WAKE_EN1_clk_sys_sram array
type WAKE_EN1_clk_sys_sram_Field_Array is array (4 .. 5) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for WAKE_EN1_clk_sys_sram
type WAKE_EN1_clk_sys_sram_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- clk_sys_sram as a value
Val : HAL.UInt2;
when True =>
-- clk_sys_sram as an array
Arr : WAKE_EN1_clk_sys_sram_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for WAKE_EN1_clk_sys_sram_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- enable clock in wake mode
type WAKE_EN1_Register is record
clk_sys_sram : WAKE_EN1_clk_sys_sram_Field :=
(As_Array => False, Val => 16#1#);
clk_sys_syscfg : Boolean := True;
clk_sys_sysinfo : Boolean := True;
clk_sys_tbman : Boolean := True;
clk_sys_timer : Boolean := True;
clk_peri_uart0 : Boolean := True;
clk_sys_uart0 : Boolean := True;
clk_peri_uart1 : Boolean := True;
clk_sys_uart1 : Boolean := True;
clk_sys_usbctrl : Boolean := True;
clk_usb_usbctrl : Boolean := True;
clk_sys_watchdog : Boolean := True;
clk_sys_xip : Boolean := True;
clk_sys_xosc : Boolean := True;
-- unspecified
Reserved_15_31 : HAL.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for WAKE_EN1_Register use record
clk_sys_sram at 0 range 0 .. 1;
clk_sys_syscfg at 0 range 2 .. 2;
clk_sys_sysinfo at 0 range 3 .. 3;
clk_sys_tbman at 0 range 4 .. 4;
clk_sys_timer at 0 range 5 .. 5;
clk_peri_uart0 at 0 range 6 .. 6;
clk_sys_uart0 at 0 range 7 .. 7;
clk_peri_uart1 at 0 range 8 .. 8;
clk_sys_uart1 at 0 range 9 .. 9;
clk_sys_usbctrl at 0 range 10 .. 10;
clk_usb_usbctrl at 0 range 11 .. 11;
clk_sys_watchdog at 0 range 12 .. 12;
clk_sys_xip at 0 range 13 .. 13;
clk_sys_xosc at 0 range 14 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
-- SLEEP_EN0_clk_sys_i2c array
type SLEEP_EN0_clk_sys_i2c_Field_Array is array (0 .. 1) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for SLEEP_EN0_clk_sys_i2c
type SLEEP_EN0_clk_sys_i2c_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- clk_sys_i2c as a value
Val : HAL.UInt2;
when True =>
-- clk_sys_i2c as an array
Arr : SLEEP_EN0_clk_sys_i2c_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for SLEEP_EN0_clk_sys_i2c_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- SLEEP_EN0_clk_sys_pio array
type SLEEP_EN0_clk_sys_pio_Field_Array is array (0 .. 1) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for SLEEP_EN0_clk_sys_pio
type SLEEP_EN0_clk_sys_pio_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- clk_sys_pio as a value
Val : HAL.UInt2;
when True =>
-- clk_sys_pio as an array
Arr : SLEEP_EN0_clk_sys_pio_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for SLEEP_EN0_clk_sys_pio_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- SLEEP_EN0_clk_sys_sram array
type SLEEP_EN0_clk_sys_sram_Field_Array is array (0 .. 3) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SLEEP_EN0_clk_sys_sram
type SLEEP_EN0_clk_sys_sram_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- clk_sys_sram as a value
Val : HAL.UInt4;
when True =>
-- clk_sys_sram as an array
Arr : SLEEP_EN0_clk_sys_sram_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SLEEP_EN0_clk_sys_sram_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- enable clock in sleep mode
type SLEEP_EN0_Register is record
clk_sys_clocks : Boolean := True;
clk_adc_adc : Boolean := True;
clk_sys_adc : Boolean := True;
clk_sys_busctrl : Boolean := True;
clk_sys_busfabric : Boolean := True;
clk_sys_dma : Boolean := True;
clk_sys_i2c : SLEEP_EN0_clk_sys_i2c_Field :=
(As_Array => False, Val => 16#1#);
clk_sys_io : Boolean := True;
clk_sys_jtag : Boolean := True;
clk_sys_vreg_and_chip_reset : Boolean := True;
clk_sys_pads : Boolean := True;
clk_sys_pio : SLEEP_EN0_clk_sys_pio_Field :=
(As_Array => False, Val => 16#1#);
clk_sys_pll_sys : Boolean := True;
clk_sys_pll_usb : Boolean := True;
clk_sys_psm : Boolean := True;
clk_sys_pwm : Boolean := True;
clk_sys_resets : Boolean := True;
clk_sys_rom : Boolean := True;
clk_sys_rosc : Boolean := True;
clk_rtc_rtc : Boolean := True;
clk_sys_rtc : Boolean := True;
clk_sys_sio : Boolean := True;
clk_peri_spi0 : Boolean := True;
clk_sys_spi0 : Boolean := True;
clk_peri_spi1 : Boolean := True;
clk_sys_spi1 : Boolean := True;
clk_sys_sram : SLEEP_EN0_clk_sys_sram_Field :=
(As_Array => False, Val => 16#1#);
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SLEEP_EN0_Register use record
clk_sys_clocks at 0 range 0 .. 0;
clk_adc_adc at 0 range 1 .. 1;
clk_sys_adc at 0 range 2 .. 2;
clk_sys_busctrl at 0 range 3 .. 3;
clk_sys_busfabric at 0 range 4 .. 4;
clk_sys_dma at 0 range 5 .. 5;
clk_sys_i2c at 0 range 6 .. 7;
clk_sys_io at 0 range 8 .. 8;
clk_sys_jtag at 0 range 9 .. 9;
clk_sys_vreg_and_chip_reset at 0 range 10 .. 10;
clk_sys_pads at 0 range 11 .. 11;
clk_sys_pio at 0 range 12 .. 13;
clk_sys_pll_sys at 0 range 14 .. 14;
clk_sys_pll_usb at 0 range 15 .. 15;
clk_sys_psm at 0 range 16 .. 16;
clk_sys_pwm at 0 range 17 .. 17;
clk_sys_resets at 0 range 18 .. 18;
clk_sys_rom at 0 range 19 .. 19;
clk_sys_rosc at 0 range 20 .. 20;
clk_rtc_rtc at 0 range 21 .. 21;
clk_sys_rtc at 0 range 22 .. 22;
clk_sys_sio at 0 range 23 .. 23;
clk_peri_spi0 at 0 range 24 .. 24;
clk_sys_spi0 at 0 range 25 .. 25;
clk_peri_spi1 at 0 range 26 .. 26;
clk_sys_spi1 at 0 range 27 .. 27;
clk_sys_sram at 0 range 28 .. 31;
end record;
-- SLEEP_EN1_clk_sys_sram array
type SLEEP_EN1_clk_sys_sram_Field_Array is array (4 .. 5) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for SLEEP_EN1_clk_sys_sram
type SLEEP_EN1_clk_sys_sram_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- clk_sys_sram as a value
Val : HAL.UInt2;
when True =>
-- clk_sys_sram as an array
Arr : SLEEP_EN1_clk_sys_sram_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for SLEEP_EN1_clk_sys_sram_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- enable clock in sleep mode
type SLEEP_EN1_Register is record
clk_sys_sram : SLEEP_EN1_clk_sys_sram_Field :=
(As_Array => False, Val => 16#1#);
clk_sys_syscfg : Boolean := True;
clk_sys_sysinfo : Boolean := True;
clk_sys_tbman : Boolean := True;
clk_sys_timer : Boolean := True;
clk_peri_uart0 : Boolean := True;
clk_sys_uart0 : Boolean := True;
clk_peri_uart1 : Boolean := True;
clk_sys_uart1 : Boolean := True;
clk_sys_usbctrl : Boolean := True;
clk_usb_usbctrl : Boolean := True;
clk_sys_watchdog : Boolean := True;
clk_sys_xip : Boolean := True;
clk_sys_xosc : Boolean := True;
-- unspecified
Reserved_15_31 : HAL.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SLEEP_EN1_Register use record
clk_sys_sram at 0 range 0 .. 1;
clk_sys_syscfg at 0 range 2 .. 2;
clk_sys_sysinfo at 0 range 3 .. 3;
clk_sys_tbman at 0 range 4 .. 4;
clk_sys_timer at 0 range 5 .. 5;
clk_peri_uart0 at 0 range 6 .. 6;
clk_sys_uart0 at 0 range 7 .. 7;
clk_peri_uart1 at 0 range 8 .. 8;
clk_sys_uart1 at 0 range 9 .. 9;
clk_sys_usbctrl at 0 range 10 .. 10;
clk_usb_usbctrl at 0 range 11 .. 11;
clk_sys_watchdog at 0 range 12 .. 12;
clk_sys_xip at 0 range 13 .. 13;
clk_sys_xosc at 0 range 14 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
-- ENABLED0_clk_sys_i2c array
type ENABLED0_clk_sys_i2c_Field_Array is array (0 .. 1) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for ENABLED0_clk_sys_i2c
type ENABLED0_clk_sys_i2c_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- clk_sys_i2c as a value
Val : HAL.UInt2;
when True =>
-- clk_sys_i2c as an array
Arr : ENABLED0_clk_sys_i2c_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for ENABLED0_clk_sys_i2c_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- ENABLED0_clk_sys_pio array
type ENABLED0_clk_sys_pio_Field_Array is array (0 .. 1) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for ENABLED0_clk_sys_pio
type ENABLED0_clk_sys_pio_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- clk_sys_pio as a value
Val : HAL.UInt2;
when True =>
-- clk_sys_pio as an array
Arr : ENABLED0_clk_sys_pio_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for ENABLED0_clk_sys_pio_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- ENABLED0_clk_sys_sram array
type ENABLED0_clk_sys_sram_Field_Array is array (0 .. 3) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for ENABLED0_clk_sys_sram
type ENABLED0_clk_sys_sram_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- clk_sys_sram as a value
Val : HAL.UInt4;
when True =>
-- clk_sys_sram as an array
Arr : ENABLED0_clk_sys_sram_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for ENABLED0_clk_sys_sram_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- indicates the state of the clock enable
type ENABLED0_Register is record
-- Read-only.
clk_sys_clocks : Boolean;
-- Read-only.
clk_adc_adc : Boolean;
-- Read-only.
clk_sys_adc : Boolean;
-- Read-only.
clk_sys_busctrl : Boolean;
-- Read-only.
clk_sys_busfabric : Boolean;
-- Read-only.
clk_sys_dma : Boolean;
-- Read-only.
clk_sys_i2c : ENABLED0_clk_sys_i2c_Field;
-- Read-only.
clk_sys_io : Boolean;
-- Read-only.
clk_sys_jtag : Boolean;
-- Read-only.
clk_sys_vreg_and_chip_reset : Boolean;
-- Read-only.
clk_sys_pads : Boolean;
-- Read-only.
clk_sys_pio : ENABLED0_clk_sys_pio_Field;
-- Read-only.
clk_sys_pll_sys : Boolean;
-- Read-only.
clk_sys_pll_usb : Boolean;
-- Read-only.
clk_sys_psm : Boolean;
-- Read-only.
clk_sys_pwm : Boolean;
-- Read-only.
clk_sys_resets : Boolean;
-- Read-only.
clk_sys_rom : Boolean;
-- Read-only.
clk_sys_rosc : Boolean;
-- Read-only.
clk_rtc_rtc : Boolean;
-- Read-only.
clk_sys_rtc : Boolean;
-- Read-only.
clk_sys_sio : Boolean;
-- Read-only.
clk_peri_spi0 : Boolean;
-- Read-only.
clk_sys_spi0 : Boolean;
-- Read-only.
clk_peri_spi1 : Boolean;
-- Read-only.
clk_sys_spi1 : Boolean;
-- Read-only.
clk_sys_sram : ENABLED0_clk_sys_sram_Field;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for ENABLED0_Register use record
clk_sys_clocks at 0 range 0 .. 0;
clk_adc_adc at 0 range 1 .. 1;
clk_sys_adc at 0 range 2 .. 2;
clk_sys_busctrl at 0 range 3 .. 3;
clk_sys_busfabric at 0 range 4 .. 4;
clk_sys_dma at 0 range 5 .. 5;
clk_sys_i2c at 0 range 6 .. 7;
clk_sys_io at 0 range 8 .. 8;
clk_sys_jtag at 0 range 9 .. 9;
clk_sys_vreg_and_chip_reset at 0 range 10 .. 10;
clk_sys_pads at 0 range 11 .. 11;
clk_sys_pio at 0 range 12 .. 13;
clk_sys_pll_sys at 0 range 14 .. 14;
clk_sys_pll_usb at 0 range 15 .. 15;
clk_sys_psm at 0 range 16 .. 16;
clk_sys_pwm at 0 range 17 .. 17;
clk_sys_resets at 0 range 18 .. 18;
clk_sys_rom at 0 range 19 .. 19;
clk_sys_rosc at 0 range 20 .. 20;
clk_rtc_rtc at 0 range 21 .. 21;
clk_sys_rtc at 0 range 22 .. 22;
clk_sys_sio at 0 range 23 .. 23;
clk_peri_spi0 at 0 range 24 .. 24;
clk_sys_spi0 at 0 range 25 .. 25;
clk_peri_spi1 at 0 range 26 .. 26;
clk_sys_spi1 at 0 range 27 .. 27;
clk_sys_sram at 0 range 28 .. 31;
end record;
-- ENABLED1_clk_sys_sram array
type ENABLED1_clk_sys_sram_Field_Array is array (4 .. 5) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for ENABLED1_clk_sys_sram
type ENABLED1_clk_sys_sram_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- clk_sys_sram as a value
Val : HAL.UInt2;
when True =>
-- clk_sys_sram as an array
Arr : ENABLED1_clk_sys_sram_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for ENABLED1_clk_sys_sram_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- indicates the state of the clock enable
type ENABLED1_Register is record
-- Read-only.
clk_sys_sram : ENABLED1_clk_sys_sram_Field;
-- Read-only.
clk_sys_syscfg : Boolean;
-- Read-only.
clk_sys_sysinfo : Boolean;
-- Read-only.
clk_sys_tbman : Boolean;
-- Read-only.
clk_sys_timer : Boolean;
-- Read-only.
clk_peri_uart0 : Boolean;
-- Read-only.
clk_sys_uart0 : Boolean;
-- Read-only.
clk_peri_uart1 : Boolean;
-- Read-only.
clk_sys_uart1 : Boolean;
-- Read-only.
clk_sys_usbctrl : Boolean;
-- Read-only.
clk_usb_usbctrl : Boolean;
-- Read-only.
clk_sys_watchdog : Boolean;
-- Read-only.
clk_sys_xip : Boolean;
-- Read-only.
clk_sys_xosc : Boolean;
-- unspecified
Reserved_15_31 : HAL.UInt17;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for ENABLED1_Register use record
clk_sys_sram at 0 range 0 .. 1;
clk_sys_syscfg at 0 range 2 .. 2;
clk_sys_sysinfo at 0 range 3 .. 3;
clk_sys_tbman at 0 range 4 .. 4;
clk_sys_timer at 0 range 5 .. 5;
clk_peri_uart0 at 0 range 6 .. 6;
clk_sys_uart0 at 0 range 7 .. 7;
clk_peri_uart1 at 0 range 8 .. 8;
clk_sys_uart1 at 0 range 9 .. 9;
clk_sys_usbctrl at 0 range 10 .. 10;
clk_usb_usbctrl at 0 range 11 .. 11;
clk_sys_watchdog at 0 range 12 .. 12;
clk_sys_xip at 0 range 13 .. 13;
clk_sys_xosc at 0 range 14 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
-- Raw Interrupts
type INTR_Register is record
-- Read-only.
CLK_SYS_RESUS : Boolean;
-- unspecified
Reserved_1_31 : HAL.UInt31;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for INTR_Register use record
CLK_SYS_RESUS at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Interrupt Enable
type INTE_Register is record
CLK_SYS_RESUS : Boolean := False;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for INTE_Register use record
CLK_SYS_RESUS at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Interrupt Force
type INTF_Register is record
CLK_SYS_RESUS : Boolean := False;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for INTF_Register use record
CLK_SYS_RESUS at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Interrupt status after masking & forcing
type INTS_Register is record
-- Read-only.
CLK_SYS_RESUS : Boolean;
-- unspecified
Reserved_1_31 : HAL.UInt31;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for INTS_Register use record
CLK_SYS_RESUS at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
type CLOCKS_Peripheral is record
-- Clock control, can be changed on-the-fly (except for auxsrc)
CLK_GPOUT0_CTRL : aliased CLK_GPOUT0_CTRL_Register;
-- Clock divisor, can be changed on-the-fly
CLK_GPOUT0_DIV : aliased CLK_GPOUT0_DIV_Register;
-- Indicates which src is currently selected (one-hot)
CLK_GPOUT0_SELECTED : aliased HAL.UInt32;
-- Clock control, can be changed on-the-fly (except for auxsrc)
CLK_GPOUT1_CTRL : aliased CLK_GPOUT1_CTRL_Register;
-- Clock divisor, can be changed on-the-fly
CLK_GPOUT1_DIV : aliased CLK_GPOUT1_DIV_Register;
-- Indicates which src is currently selected (one-hot)
CLK_GPOUT1_SELECTED : aliased HAL.UInt32;
-- Clock control, can be changed on-the-fly (except for auxsrc)
CLK_GPOUT2_CTRL : aliased CLK_GPOUT2_CTRL_Register;
-- Clock divisor, can be changed on-the-fly
CLK_GPOUT2_DIV : aliased CLK_GPOUT2_DIV_Register;
-- Indicates which src is currently selected (one-hot)
CLK_GPOUT2_SELECTED : aliased HAL.UInt32;
-- Clock control, can be changed on-the-fly (except for auxsrc)
CLK_GPOUT3_CTRL : aliased CLK_GPOUT3_CTRL_Register;
-- Clock divisor, can be changed on-the-fly
CLK_GPOUT3_DIV : aliased CLK_GPOUT3_DIV_Register;
-- Indicates which src is currently selected (one-hot)
CLK_GPOUT3_SELECTED : aliased HAL.UInt32;
-- Clock control, can be changed on-the-fly (except for auxsrc)
CLK_REF_CTRL : aliased CLK_REF_CTRL_Register;
-- Clock divisor, can be changed on-the-fly
CLK_REF_DIV : aliased CLK_REF_DIV_Register;
-- Indicates which src is currently selected (one-hot)
CLK_REF_SELECTED : aliased HAL.UInt32;
-- Clock control, can be changed on-the-fly (except for auxsrc)
CLK_SYS_CTRL : aliased CLK_SYS_CTRL_Register;
-- Clock divisor, can be changed on-the-fly
CLK_SYS_DIV : aliased CLK_SYS_DIV_Register;
-- Indicates which src is currently selected (one-hot)
CLK_SYS_SELECTED : aliased HAL.UInt32;
-- Clock control, can be changed on-the-fly (except for auxsrc)
CLK_PERI_CTRL : aliased CLK_PERI_CTRL_Register;
-- Indicates which src is currently selected (one-hot)
CLK_PERI_SELECTED : aliased HAL.UInt32;
-- Clock control, can be changed on-the-fly (except for auxsrc)
CLK_USB_CTRL : aliased CLK_USB_CTRL_Register;
-- Clock divisor, can be changed on-the-fly
CLK_USB_DIV : aliased CLK_USB_DIV_Register;
-- Indicates which src is currently selected (one-hot)
CLK_USB_SELECTED : aliased HAL.UInt32;
-- Clock control, can be changed on-the-fly (except for auxsrc)
CLK_ADC_CTRL : aliased CLK_ADC_CTRL_Register;
-- Clock divisor, can be changed on-the-fly
CLK_ADC_DIV : aliased CLK_ADC_DIV_Register;
-- Indicates which src is currently selected (one-hot)
CLK_ADC_SELECTED : aliased HAL.UInt32;
-- Clock control, can be changed on-the-fly (except for auxsrc)
CLK_RTC_CTRL : aliased CLK_RTC_CTRL_Register;
-- Clock divisor, can be changed on-the-fly
CLK_RTC_DIV : aliased CLK_RTC_DIV_Register;
-- Indicates which src is currently selected (one-hot)
CLK_RTC_SELECTED : aliased HAL.UInt32;
CLK_SYS_RESUS_CTRL : aliased CLK_SYS_RESUS_CTRL_Register;
CLK_SYS_RESUS_STATUS : aliased CLK_SYS_RESUS_STATUS_Register;
-- Reference clock frequency in kHz
FC0_REF_KHZ : aliased FC0_REF_KHZ_Register;
-- Minimum pass frequency in kHz. This is optional. Set to 0 if you are
-- not using the pass/fail flags
FC0_MIN_KHZ : aliased FC0_MIN_KHZ_Register;
-- Maximum pass frequency in kHz. This is optional. Set to 0x1ffffff if
-- you are not using the pass/fail flags
FC0_MAX_KHZ : aliased FC0_MAX_KHZ_Register;
-- Delays the start of frequency counting to allow the mux to settle\n
-- Delay is measured in multiples of the reference clock period
FC0_DELAY : aliased FC0_DELAY_Register;
-- The test interval is 0.98us * 2**interval, but let's call it 1us *
-- 2**interval\n The default gives a test interval of 250us
FC0_INTERVAL : aliased FC0_INTERVAL_Register;
-- Clock sent to frequency counter, set to 0 when not required\n Writing
-- to this register initiates the frequency count
FC0_SRC : aliased FC0_SRC_Register;
-- Frequency counter status
FC0_STATUS : aliased FC0_STATUS_Register;
-- Result of frequency measurement, only valid when status_done=1
FC0_RESULT : aliased FC0_RESULT_Register;
-- enable clock in wake mode
WAKE_EN0 : aliased WAKE_EN0_Register;
-- enable clock in wake mode
WAKE_EN1 : aliased WAKE_EN1_Register;
-- enable clock in sleep mode
SLEEP_EN0 : aliased SLEEP_EN0_Register;
-- enable clock in sleep mode
SLEEP_EN1 : aliased SLEEP_EN1_Register;
-- indicates the state of the clock enable
ENABLED0 : aliased ENABLED0_Register;
-- indicates the state of the clock enable
ENABLED1 : aliased ENABLED1_Register;
-- Raw Interrupts
INTR : aliased INTR_Register;
-- Interrupt Enable
INTE : aliased INTE_Register;
-- Interrupt Force
INTF : aliased INTF_Register;
-- Interrupt status after masking & forcing
INTS : aliased INTS_Register;
end record
with Volatile;
for CLOCKS_Peripheral use record
CLK_GPOUT0_CTRL at 16#0# range 0 .. 31;
CLK_GPOUT0_DIV at 16#4# range 0 .. 31;
CLK_GPOUT0_SELECTED at 16#8# range 0 .. 31;
CLK_GPOUT1_CTRL at 16#C# range 0 .. 31;
CLK_GPOUT1_DIV at 16#10# range 0 .. 31;
CLK_GPOUT1_SELECTED at 16#14# range 0 .. 31;
CLK_GPOUT2_CTRL at 16#18# range 0 .. 31;
CLK_GPOUT2_DIV at 16#1C# range 0 .. 31;
CLK_GPOUT2_SELECTED at 16#20# range 0 .. 31;
CLK_GPOUT3_CTRL at 16#24# range 0 .. 31;
CLK_GPOUT3_DIV at 16#28# range 0 .. 31;
CLK_GPOUT3_SELECTED at 16#2C# range 0 .. 31;
CLK_REF_CTRL at 16#30# range 0 .. 31;
CLK_REF_DIV at 16#34# range 0 .. 31;
CLK_REF_SELECTED at 16#38# range 0 .. 31;
CLK_SYS_CTRL at 16#3C# range 0 .. 31;
CLK_SYS_DIV at 16#40# range 0 .. 31;
CLK_SYS_SELECTED at 16#44# range 0 .. 31;
CLK_PERI_CTRL at 16#48# range 0 .. 31;
CLK_PERI_SELECTED at 16#50# range 0 .. 31;
CLK_USB_CTRL at 16#54# range 0 .. 31;
CLK_USB_DIV at 16#58# range 0 .. 31;
CLK_USB_SELECTED at 16#5C# range 0 .. 31;
CLK_ADC_CTRL at 16#60# range 0 .. 31;
CLK_ADC_DIV at 16#64# range 0 .. 31;
CLK_ADC_SELECTED at 16#68# range 0 .. 31;
CLK_RTC_CTRL at 16#6C# range 0 .. 31;
CLK_RTC_DIV at 16#70# range 0 .. 31;
CLK_RTC_SELECTED at 16#74# range 0 .. 31;
CLK_SYS_RESUS_CTRL at 16#78# range 0 .. 31;
CLK_SYS_RESUS_STATUS at 16#7C# range 0 .. 31;
FC0_REF_KHZ at 16#80# range 0 .. 31;
FC0_MIN_KHZ at 16#84# range 0 .. 31;
FC0_MAX_KHZ at 16#88# range 0 .. 31;
FC0_DELAY at 16#8C# range 0 .. 31;
FC0_INTERVAL at 16#90# range 0 .. 31;
FC0_SRC at 16#94# range 0 .. 31;
FC0_STATUS at 16#98# range 0 .. 31;
FC0_RESULT at 16#9C# range 0 .. 31;
WAKE_EN0 at 16#A0# range 0 .. 31;
WAKE_EN1 at 16#A4# range 0 .. 31;
SLEEP_EN0 at 16#A8# range 0 .. 31;
SLEEP_EN1 at 16#AC# range 0 .. 31;
ENABLED0 at 16#B0# range 0 .. 31;
ENABLED1 at 16#B4# range 0 .. 31;
INTR at 16#B8# range 0 .. 31;
INTE at 16#BC# range 0 .. 31;
INTF at 16#C0# range 0 .. 31;
INTS at 16#C4# range 0 .. 31;
end record;
CLOCKS_Periph : aliased CLOCKS_Peripheral
with Import, Address => CLOCKS_Base;
end RP_SVD.CLOCKS;
|
Data/PolyP/Types.agda | oisdk/agda-playground | 6 | 14795 | {-# OPTIONS --cubical --safe --guardedness #-}
module Data.PolyP.Types where
open import Function hiding (_⟨_⟩_)
open import Data.Sum
open import Data.Sigma
open import Level
open import Data.Unit
open import Data.Nat
open import Data.Empty
open import WellFounded
open import Literals.Number
open import Data.Fin.Indexed.Literals
open import Data.Fin.Indexed.Properties
open import Data.Fin.Indexed
open import Data.Nat.Literals
open import Data.Maybe
open import Data.PolyP.Universe
open import Data.PolyP.Composition
open import Data.PolyP.Currying
open import Data.PolyP.RecursionSchemes
LIST : ∀ {n} → Functor (suc n)
LIST = μ⟨ ① ⊕ ! (fs f0) ⊗ ! f0 ⟩
-- The free near-semiring
FOREST : Functor 1
FOREST = μ⟨ LIST ⊚ (① ⊕ ! (fs f0) ⊗ ! f0) ⟩
-- Lists of lists
LEVELS : Functor 1
LEVELS = μ⟨ ① ⊕ ! (fs f0) ⊗ ! f0 ⟩ ⊚ μ⟨ ① ⊕ ! (fs f0) ⊗ ! f0 ⟩
-- The free monad
FREE : Functor 1 → Functor 1
FREE f = μ⟨ ! (fs f0) ⊕ f0 ⇑ f ⟩
COFREE : Functor 1 → Functor 1
COFREE f = μ⟨ ! (fs f0) ⊗ f0 ⇑ f ⟩
ROSE : Functor 1
ROSE = μ⟨ ! (fs f0) ⊗ f0 ⇑ LIST ⟩
module _ {A B : Type} where
FOLDR : (A → B → B) → B → ⟦ LIST ⟧ ~ A → B
FOLDR f b = cata (const b ▿ uncurry f)
open import Data.List
open import Data.List.Properties
open import Function.Isomorphism
open import Path
pattern _∷′_ x xs = ⟨ inr (x , xs) ⟩
pattern []′ = ⟨ inl tt ⟩
generic-list : List A ⇔ ⟦ LIST ⟧ ~ A
generic-list .fun = foldr _∷′_ []′
generic-list .inv = FOLDR _∷_ []
generic-list .leftInv = list-elim _ (λ x xs p i → x ∷ p i) λ i → []
generic-list .rightInv = elim _ λ { (inr ( x , xs , p)) i → x ∷′ p i ; (inl _) i → []′ }
open import Data.Vec
STREAM : Type → Type
STREAM A = ν (! (fs f0) ⊗ ! f0) ~ A
nats : ℕ → STREAM ℕ
nats n .unfold = n , nats (suc n)
|
other.7z/SFC.7z/SFC/ソースデータ/ゼルダの伝説神々のトライフォース/NES_Ver2/us_asm/zel_endz.asm | prismotizm/gigaleak | 0 | 163726 | <filename>other.7z/SFC.7z/SFC/ソースデータ/ゼルダの伝説神々のトライフォース/NES_Ver2/us_asm/zel_endz.asm
Name: zel_endz.asm
Type: file
Size: 16684
Last-Modified: '2016-05-13T04:27:09Z'
SHA-1: 8B40B49BCD353BD24A19317587C0AE4346FD464D
Description: null
|
src/gl/interface/gl-framebuffer.ads | Roldak/OpenGLAda | 79 | 23322 | <gh_stars>10-100
-- part of OpenGLAda, (c) 2017 <NAME>
-- released under the terms of the MIT license, see the file "COPYING"
with GL.Buffers;
with GL.Pixels;
with GL.Types;
private with GL.Low_Level;
package GL.Framebuffer is
pragma Preelaborate;
use GL.Types;
type Logic_Op is (Clear, And_Op, And_Reverse, Copy, And_Inverted, Noop,
Xor_Op, Or_Op, Nor, Equiv, Invert, Or_Reverse,
Copy_Inverted, Or_Inverted, Nand, Set);
subtype Read_Buffer_Selector is Buffers.Color_Buffer_Selector range
Buffers.None .. Buffers.Right;
-- this package provides functionality the works implicitly on the current
-- framebuffer. for working with framebuffer objects,
-- see GL.Objects.Framebuffers.
procedure Set_Clamp_Read_Color (Enabled : Boolean);
procedure Set_Read_Buffer (Value : Read_Buffer_Selector);
function Read_Buffer return Read_Buffer_Selector;
generic
type Element_Type is private;
type Index_Type is (<>);
type Array_Type is array (Index_Type range <>) of aliased Element_Type;
procedure Read_Pixels (X, Y : Int; Width, Height : Size;
Format : Pixels.Framebuffer_Format;
Data_Type : Pixels.Data_Type; Data : out Array_Type);
procedure Set_Logic_Op_Mode (Value : Logic_Op);
function Logic_Op_Mode return Logic_Op;
private
for Logic_Op use (Clear => 16#1500#,
And_Op => 16#1501#,
And_Reverse => 16#1502#,
Copy => 16#1503#,
And_Inverted => 16#1504#,
Noop => 16#1505#,
Xor_Op => 16#1506#,
Or_Op => 16#1507#,
Nor => 16#1508#,
Equiv => 16#1509#,
Invert => 16#150A#,
Or_Reverse => 16#150B#,
Copy_Inverted => 16#150C#,
Or_Inverted => 16#150D#,
Nand => 16#150E#,
Set => 16#150F#);
for Logic_Op'Size use Low_Level.Enum'Size;
end GL.Framebuffer;
|
ioctl/IokSetCp.asm | osfree-project/FamilyAPI | 1 | 168406 | ;--------------------------------------------------------
; Category 4 Function 50H Set code page
;--------------------------------------------------------
;
;
;
IOKSETCP PROC NEAR
RET
IOKSETCP ENDP
|
examples/hello_world_request_reply2/src/primes-primenumberreplier.ads | alexcamposruiz/dds-requestreply | 0 | 3505 | with Primes_IDL_File.PrimeNumberRequest_DataReader;
with Primes_IDL_File.PrimeNumberReply_DataWriter;
with DDS.Typed_Replyer_Generic;
package Primes.PrimeNumberReplier is new DDS.Typed_Replyer_Generic
(Request_DataReaders => Primes_IDL_File.PrimeNumberRequest_DataReader,
Reply_DataWriters => Primes_IDL_File.PrimeNumberReply_DataWriter);
|
3-mid/opengl/source/lean/geometry/opengl-geometry-lit_colored_textured.adb | charlie5/lace-alire | 1 | 22010 | <filename>3-mid/opengl/source/lean/geometry/opengl-geometry-lit_colored_textured.adb
with
openGL.Program.lit,
openGL.Palette,
openGL.Shader,
openGL.Buffer.general,
openGL.Attribute,
openGL.Texture,
openGL.Tasks,
openGL.Errors,
GL.Binding,
GL.lean,
GL.Pointers,
Interfaces.C.Strings,
System.storage_Elements;
package body openGL.Geometry.lit_colored_textured
is
use GL.lean,
GL.Pointers,
Interfaces,
System;
------------------
-- Shader Program
--
type program_Id is (rgba_Texture, alpha_Texture);
type Program is
record
vertex_Shader : aliased Shader.item;
fragment_Shader : aliased Shader.item;
Program : openGL.Program.lit.view;
end record;
type Programs is array (program_Id) of aliased Program;
-----------
--- Globals
--
the_Programs : Programs;
Name_1 : constant String := "Site";
Name_2 : constant String := "Normal";
Name_3 : constant String := "Color";
Name_4 : constant String := "Coords";
Name_5 : constant String := "Shine";
Attribute_1_Name : aliased C.char_array := C.to_C (Name_1);
Attribute_2_Name : aliased C.char_array := C.to_C (Name_2);
Attribute_3_Name : aliased C.char_array := C.to_C (Name_3);
Attribute_4_Name : aliased C.char_array := C.to_C (Name_4);
Attribute_5_Name : aliased C.char_array := C.to_C (Name_5);
Attribute_1_Name_ptr : aliased constant C.strings.chars_ptr := C.strings.to_chars_ptr (Attribute_1_Name'Access);
Attribute_2_Name_ptr : aliased constant C.strings.chars_ptr := C.strings.to_chars_ptr (Attribute_2_Name'Access);
Attribute_3_Name_ptr : aliased constant C.strings.chars_ptr := C.strings.to_chars_ptr (Attribute_3_Name'Access);
Attribute_4_Name_ptr : aliased constant C.strings.chars_ptr := C.strings.to_chars_ptr (Attribute_4_Name'Access);
Attribute_5_Name_ptr : aliased constant C.strings.chars_ptr := C.strings.to_chars_ptr (Attribute_5_Name'Access);
white_Texture : openGL.Texture.Object;
---------
-- Forge
--
type Geometry_view is access all Geometry.lit_colored_textured.item'Class;
function new_Geometry (texture_is_Alpha : in Boolean) return access Geometry.lit_colored_textured.item'Class
is
use type openGL.Program.lit.view;
procedure define (the_Program : access Program;
use_fragment_Shader : in String)
is
use openGL.Palette,
Attribute.Forge,
system.Storage_Elements;
Sample : Vertex;
Attribute_1 : openGL.Attribute.view;
Attribute_2 : openGL.Attribute.view;
Attribute_3 : openGL.Attribute.view;
Attribute_4 : openGL.Attribute.view;
Attribute_5 : openGL.Attribute.view;
white_Image : constant openGL.Image := (1 .. 2 => (1 .. 2 => +White));
begin
white_Texture := openGL.Texture.Forge.to_Texture (white_Image);
the_Program.Program := new openGL.Program.lit.item;
the_Program. vertex_Shader.define (Shader.Vertex, "assets/opengl/shader/lit_colored_textured.vert");
the_Program.fragment_Shader.define (Shader.Fragment, use_fragment_Shader);
the_Program.Program.define (the_Program. vertex_Shader'Access,
the_Program.fragment_Shader'Access);
the_Program.Program.enable;
Attribute_1 := new_Attribute (Name => Name_1,
gl_Location => the_Program.Program.attribute_Location (Name_1),
Size => 3,
data_Kind => attribute.GL_FLOAT,
Stride => lit_colored_textured.Vertex'Size / 8,
Offset => 0,
Normalized => False);
Attribute_2 := new_Attribute (Name => Name_2,
gl_Location => the_Program.Program.attribute_Location (Name_2),
Size => 3,
data_Kind => attribute.GL_FLOAT,
Stride => lit_colored_textured.Vertex'Size / 8,
Offset => Sample.Normal (1)'Address
- Sample.Site (1)'Address,
Normalized => False);
Attribute_3 := new_Attribute (Name => Name_3,
gl_Location => the_Program.Program.attribute_Location (Name_3),
Size => 4,
data_Kind => attribute.GL_UNSIGNED_BYTE,
Stride => lit_colored_textured.Vertex'Size / 8,
Offset => Sample.Color.Primary.Red'Address
- Sample.Site (1) 'Address,
Normalized => True);
Attribute_4 := new_Attribute (Name => Name_4,
gl_Location => the_Program.Program.attribute_Location (Name_4),
Size => 2,
data_Kind => attribute.GL_FLOAT,
Stride => lit_colored_textured.Vertex'Size / 8,
Offset => Sample.Coords.S'Address
- Sample.Site (1)'Address,
Normalized => False);
Attribute_5 := new_Attribute (Name => Name_5,
gl_Location => the_Program.Program.attribute_Location (Name_5),
Size => 1,
data_Kind => attribute.GL_FLOAT,
Stride => lit_colored_textured.Vertex'Size / 8,
Offset => Sample.Shine 'Address
- Sample.Site (1)'Address,
Normalized => False);
the_Program.Program.add (Attribute_1);
the_Program.Program.add (Attribute_2);
the_Program.Program.add (Attribute_3);
the_Program.Program.add (Attribute_4);
the_Program.Program.add (Attribute_5);
glBindAttribLocation (Program => the_Program.Program.gl_Program,
Index => the_Program.Program.Attribute (named => Name_1).gl_Location,
Name => +Attribute_1_Name_ptr);
Errors.log;
glBindAttribLocation (Program => the_Program.Program.gl_Program,
Index => the_Program.Program.Attribute (named => Name_2).gl_Location,
Name => +Attribute_2_Name_ptr);
Errors.log;
glBindAttribLocation (Program => the_Program.Program.gl_Program,
Index => the_Program.Program.Attribute (named => Name_3).gl_Location,
Name => +Attribute_3_Name_ptr);
Errors.log;
glBindAttribLocation (Program => the_Program.Program.gl_Program,
Index => the_Program.Program.Attribute (named => Name_4).gl_Location,
Name => +Attribute_4_Name_ptr);
Errors.log;
glBindAttribLocation (Program => the_Program.Program.gl_Program,
Index => the_Program.Program.Attribute (named => Name_5).gl_Location,
Name => +Attribute_5_Name_ptr);
Errors.log;
end define;
Self : constant Geometry_view := new Geometry.lit_colored_textured.item;
begin
Tasks.check;
if texture_is_Alpha -- Define the shaders and program, if required.
then
if the_Programs (alpha_Texture).Program = null
then
define (the_Programs (alpha_Texture)'Access,
use_fragment_Shader => "assets/opengl/shader/lit_colored_text.frag");
end if;
else
if the_Programs (rgba_Texture).Program = null
then
define (the_Programs (rgba_Texture)'Access,
use_fragment_Shader => "assets/opengl/shader/lit_colored_textured.frag");
end if;
end if;
if texture_is_Alpha
then Self.is_Transparent := True;
Self.Program_is (the_Programs (alpha_Texture).Program.all'Access);
else Self.Program_is (the_Programs ( rgba_Texture).Program.all'Access);
end if;
return Self;
end new_Geometry;
----------
-- Vertex
--
function is_Transparent (Self : in Vertex_array) return Boolean
is
function get_Color (Index : in Index_t) return rgba_Color
is (Self (Index).Color);
function my_Transparency is new get_Transparency (any_Index_t => Index_t,
get_Color => get_Color);
begin
return my_Transparency (Count => Self'Length);
end is_Transparent;
--------------
-- Attributes
--
package openGL_Buffer_of_geometry_Vertices is new Buffer.general (base_Object => Buffer.array_Object,
Index => Index_t,
Element => Vertex,
Element_Array => Vertex_array);
procedure Vertices_are (Self : in out Item; Now : in Vertex_array)
is
use openGL_Buffer_of_geometry_Vertices;
use type Buffer.view;
begin
if Self.Vertices = null
then
self.Vertices := new openGL_Buffer_of_geometry_Vertices.Object' (Forge.to_Buffer (Now,
usage => Buffer.static_Draw));
else
set (openGL_Buffer_of_geometry_Vertices.Object (Self.Vertices.all),
to => Now);
end if;
Self.is_Transparent := is_Transparent (Now);
-- Set the bounds.
--
declare
function get_Site (Index : in Index_t) return Vector_3
is (Now (Index).Site);
function bounding_Box is new get_Bounds (Index_t, get_Site);
begin
Self.Bounds_are (bounding_Box (Count => Now'Length));
end;
end Vertices_are;
overriding
procedure Indices_are (Self : in out Item; Now : in Indices;
for_Facia : in Positive)
is
begin
raise Error with "TODO";
end Indices_are;
overriding
procedure enable_Texture (Self : in Item)
is
use GL,
GL.Binding,
openGL.Texture;
begin
Tasks.check;
glActiveTexture (gl.GL_TEXTURE0);
Errors.log;
if Self.Texture = openGL.Texture.null_Object
then enable (white_Texture);
else enable (Self.Texture);
end if;
end enable_Texture;
end openGL.Geometry.lit_colored_textured;
|
source/ll_insert.asm | mateuszstompor/Linked-List-x86-64-ASM | 5 | 21247 | ;
; Created by <NAME> on 23/06/2019.
;
%include "source/list.asm"
%include "source/sizes.asm"
%include "source/memory_management.asm"
global LL_INSERT
section .text
LL_INSERT:
; About
; Inserts a new node to the list
; Takes
; rdi - pointer to a list
; rsi - pointer to an iterator
; rdx - pointer to a value
; allocate storage for a node
push rdi
push rsi
push rdx
mov rdi, LL_NODE_SIZE
call ll_mem_allocate
pop rdx
pop rsi
pop rdi
; set value which the node keeps
mov [rax], rdx
mov rdx, [rsi]
; set next node of newly created node
mov [rax + 8], rdx
xor r8, r8
mov r9, [rdi]
iterate_through_list:
cmp r9, [rsi]
je add_node
mov r8, r9
mov r9, [r9 + 8]
jmp iterate_through_list
add_node:
cmp r8, 0
jne add_middle
add_head:
mov [rdi], rax
jmp update_last
add_middle:
mov [r8 + 8], rax
update_last:
cmp dword [rsi], 0
jne skip_last
assign_last:
mov [rdi + 8], rax
skip_last:
add qword [rdi + 24], 1
ret
|
test/Succeed/Issue2919.agda | shlevy/agda | 1,989 | 686 | <gh_stars>1000+
postulate
A : Set
f : A → A
mutual
F : A → Set
F x = D (f x)
data D : A → Set where
c : (x : A) → F x
G : (x : A) → D x → Set₁
G _ (c _) = Set
|
gyak/gyak4/lnko.adb | balintsoos/LearnAda | 0 | 8767 | function Lnko ( A, B : Positive ) return Positive is
X: Positive := A;
Y: Natural := B;
Tmp: Natural;
begin
while Y /= 0 loop
Tmp := X mod Y;
X := Y;
Y := Tmp;
end loop;
return X;
end Lnko;
|
oeis/335/A335863.asm | neoneye/loda-programs | 11 | 84858 | <gh_stars>10-100
; A335863: Decimal expansion of the negative of the zero x2 of the cubic polynomial x^3 - 2*x^2 - 10*x - 6.
; Submitted by <NAME>
; 1,7,5,2,5,1,7,8,2,1,9,2,9,8,1,6,8,1,8,4,8,9,8,3,9,2,1,2,4,3,7,3,1,0,0,2,7,9,5,2,5,9,0,9,8,8,6,0,6,0,3,1,1,3,3,7,8,5,1,4,2,7,6,0,4,8,4,9,9,7,7,8,1,3,9,9,0,6,2,2,5,9,7,2,9,5,7,4,9,0,8,4,6,2,5,3,4,4,8
mov $1,1
mov $3,$0
mul $3,4
mov $4,1
lpb $3
lpb $3
add $1,$2
mul $6,2
add $1,$6
add $2,$1
add $6,$1
add $1,$2
mul $1,2
sub $3,1
lpe
mov $4,10
pow $4,$0
lpe
div $2,$4
cmp $5,0
add $2,$5
div $1,$2
mov $0,$1
mod $0,10
|
programs/oeis/001/A001962.asm | karttu/loda | 1 | 102415 | <filename>programs/oeis/001/A001962.asm
; A001962: A Beatty sequence: floor(n * (sqrt(5) + 3)).
; 5,10,15,20,26,31,36,41,47,52,57,62,68,73,78,83,89,94,99,104,109,115,120,125,130,136,141,146,151,157,162,167,172,178,183,188,193,198,204,209,214,219,225,230,235,240,246,251,256,261,267,272,277,282,287,293,298,303,308,314,319,324,329,335,340,345,350,356,361,366,371,376,382,387,392,397,403,408,413,418,424,429,434,439,445,450,455,460,466,471,476,481,486,492,497,502,507,513,518,523,528,534,539,544,549,555,560,565,570,575,581,586,591,596,602,607,612,617,623,628,633,638,644,649,654,659,664,670,675,680,685,691,696,701,706,712,717,722,727,733,738,743,748,753,759,764,769,774,780,785,790,795,801,806,811,816,822,827,832,837,843,848,853,858,863,869,874,879,884,890,895,900,905,911,916,921,926,932,937,942,947,952,958,963,968,973,979,984,989,994,1000,1005,1010,1015,1021,1026,1031,1036,1041,1047,1052,1057,1062,1068,1073,1078,1083,1089,1094,1099,1104,1110,1115,1120,1125,1130,1136,1141,1146,1151,1157,1162,1167,1172,1178,1183,1188,1193,1199,1204,1209,1214,1220,1225,1230,1235,1240,1246,1251,1256,1261,1267,1272,1277,1282,1288,1293,1298,1303,1309
mul $0,2
mov $2,$0
add $2,1
mov $3,$2
cal $2,3623 ; Wythoff AB-numbers: [[n*phi^2]*phi], where phi = (1+sqrt(5))/2.
add $1,$2
add $1,$3
sub $1,9
div $1,2
add $1,5
|
oeis/031/A031389.asm | neoneye/loda-programs | 11 | 28137 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A031389: a(n) = prime(8*n-3).
; Submitted by <NAME>
; 11,41,73,109,157,197,241,283,347,389,439,487,547,599,643,691,751,811,859,919,977,1031,1087,1129,1201,1259,1303,1381,1447,1489,1553,1607,1663,1723,1787,1867,1913,1993,2039,2099,2153,2239,2293,2351,2399,2467,2549,2621,2683,2719,2789,2843,2909,2971,3049,3121,3203,3259,3329,3389,3463,3529,3581,3637,3701,3769,3847,3911,3967,4027,4099,4159,4241,4289,4373,4451,4517,4591,4651,4723,4793,4877,4943,4999,5059,5119,5209,5281,5381,5431,5483,5557,5641,5689,5749,5827,5869,5953,6047,6113
mov $2,36
mul $2,$0
mul $0,8
mov $4,10
lpb $2
mov $3,$4
seq $3,10051 ; Characteristic function of primes: 1 if n is prime, else 0.
sub $0,$3
mov $1,$0
max $1,0
cmp $1,$0
mul $2,$1
sub $2,1
add $4,2
lpe
mov $0,$4
add $0,1
|
Cubical/Data/Unit/Pointed.agda | FernandoLarrain/cubical | 1 | 1403 | <filename>Cubical/Data/Unit/Pointed.agda
{-# OPTIONS --safe #-}
module Cubical.Data.Unit.Pointed where
open import Cubical.Foundations.Prelude
open import Cubical.Foundations.Pointed.Base
open import Cubical.Data.Unit
private
variable
ℓ : Level
Unit∙ : Pointed ℓ
Unit∙ = Unit* , tt*
|
oeis/181/A181358.asm | neoneye/loda-programs | 11 | 103406 | ; A181358: Number of twiddle factors in the first stage of a Pease Radix 4 Fast Fourier Transform.
; 8,44,188,764,3068,12284,49148,196604,786428,3145724,12582908,50331644,201326588,805306364,3221225468,12884901884,51539607548,206158430204,824633720828,3298534883324,13194139533308,52776558133244,211106232532988,844424930131964,3377699720527868,13510798882111484,54043195528445948,216172782113783804,864691128455135228,3458764513820540924,13835058055282163708,55340232221128654844,221360928884514619388,885443715538058477564,3541774862152233910268,14167099448608935641084,56668397794435742564348
mov $1,4
pow $1,$0
div $1,3
mul $1,36
add $1,8
mov $0,$1
|
extension/superion/YAML/YamlParser.g4 | recursion-ninja/Superion-YAML | 1 | 2029 | <filename>extension/superion/YAML/YamlParser.g4
parser grammar YamlParser;
options { tokenVocab = YamlLexer; }
// parser rules
file
: NEWLINE*
(
(DOCUMENTSTART NEWLINE?)? document (DOCUMENTEND NEWLINE)? (NEWLINE* (DOCUMENTSTART NEWLINE) document (DOCUMENTEND NEWLINE?)?)*
)
NEWLINE* EOF
;
document
: list | mappinglist | flowlist | flowmappinglist | value
;
list
: (NEWLINE* listitem NEWLINE?)+
;
listitem
: MINUS ANCHOR? (
value |
NEWLINE+ INDENT list DEDENT |
NEWLINE+ INDENT mappinglist DEDENT |
flowlist
)
| MINUS ALIAS
| MINUS NEWLINE
;
mappinglist
: (NEWLINE* mapping NEWLINE?)+
;
key
: STRING_MY
;
value
: value_scalar | NEWLINE INDENT value_scalar NEWLINE DEDENT | multiline_string | string_literal | string_folded | string_double_quoted
;
value_scalar
: number | STRING_MY
;
multiline_string
: value_scalar? NEWLINE INDENT ( value_scalar (NEWLINE value_scalar)* | multiline_string)+ NEWLINE? DEDENT
;
string_literal
: LITERIAL_STR_IND (NEWLINE_STR_LITERAL+ STRING_MY)*
;
string_folded
: FOLD_STR_IND (NEWLINE_STR_LITERAL+ STRING_MY)*
;
string_double_quoted
: DOUBLE_QUOTE STRING_MY (NEWLINE_STR_QUOTE+ STRING_MY)* DOUBLE_QUOTE
;
mapping
: key COLON NEWLINE+ INDENT mappinglist DEDENT
| key COLON NEWLINE+ INDENT list DEDENT
| key COLON flowmappinglist
| key COLON value?
;
// flow rules
flowlist
: OPEN_BRACK value (COMMA value)* CLOSE_BRACK
;
flowmappinglist
: OPEN_BRACE mapping (COMMA mapping)* CLOSE_BRACE
;
// parser rules
number
: integer
| FLOAT_NUMBER
| IMAG_NUMBER
;
integer
: DECIMAL_INTEGER
| OCT_INTEGER
| HEX_INTEGER
| BIN_INTEGER
;
|
src/firmware-tests/Platform/Motor/EnableDisable/EnableDisableMotorVddTest.asm | pete-restall/Cluck2Sesame-Prototype | 1 | 174158 | <gh_stars>1-10
#include "Platform.inc"
#include "FarCalls.inc"
#include "Motor.inc"
#include "TestFixture.inc"
radix decimal
udata
global numberOfEnableCalls
global numberOfDisableCalls
global expectedPortValue
global expectedTrisValue
global portValue
global trisValue
numberOfEnableCalls res 1
numberOfDisableCalls res 1
expectedPortValue res 1
expectedTrisValue res 1
portValue res 1
trisValue res 1
EnableMotorVddTest code
global testArrange
testArrange:
fcall initialiseMotor
testAct:
banksel numberOfEnableCalls
movf numberOfEnableCalls
btfsc STATUS, Z
goto callDisableMotorVdd
callEnableMotorVdd:
fcall enableMotorVdd
banksel numberOfEnableCalls
decfsz numberOfEnableCalls
goto testAct
callDisableMotorVdd:
banksel numberOfDisableCalls
movf numberOfDisableCalls
btfsc STATUS, Z
goto testAssert
callDisableMotorVddInLoop:
fcall disableMotorVdd
banksel numberOfDisableCalls
decfsz numberOfDisableCalls
goto callDisableMotorVddInLoop
testAssert:
banksel PORTC
movlw 0
btfsc PORTC, RC6
movlw 1
banksel portValue
movwf portValue
banksel TRISC
movlw 0
btfsc TRISC, TRISC6
movlw 1
banksel trisValue
movwf trisValue
.assert "portValue == expectedPortValue, 'PORTC expectation failure.'"
.assert "trisValue == expectedTrisValue, 'TRISC expectation failure.'"
banksel trisValue
movf trisValue
btfsc STATUS, Z
goto assertThatMotorPwmPinsAreNotTristatedIfVddIsEnabled
assertThatMotorPwmPinsAreTristatedIfVddIsNotEnabled:
banksel TRISC
movlw 0
btfsc TRISC, TRISC4
addlw 1
btfsc TRISC, TRISC5
addlw 1
.assert "W == 2, 'Expected P1A and P1B to be tri-stated when no MOTOR_VDD is present.'"
return
assertThatMotorPwmPinsAreNotTristatedIfVddIsEnabled:
banksel TRISC
movlw 0
btfsc TRISC, TRISC4
addlw 1
btfsc TRISC, TRISC5
addlw 1
.assert "W == 0, 'Expected P1A and P1B to be outputs when MOTOR_VDD is present.'"
banksel PORTC
movlw 0
btfsc PORTC, TRISC4
addlw 1
btfsc PORTC, TRISC5
addlw 1
.assert "W == 0, 'Expected P1A and P1B to be held low when MOTOR_VDD is present.'"
return
end
|
programs/oeis/081/A081070.asm | karttu/loda | 0 | 90754 | <filename>programs/oeis/081/A081070.asm
; A081070: Lucas(4n)-2, or 5*Fibonacci(2n)^2.
; 0,5,45,320,2205,15125,103680,710645,4870845,33385280,228826125,1568397605,10749957120,73681302245,505019158605,3461452808000,23725150497405,162614600673845,1114577054219520,7639424778862805
mul $0,2
lpb $0,1
sub $0,1
add $2,1
add $1,$2
add $2,1
add $2,$1
lpe
|
oeis/253/A253198.asm | neoneye/loda-programs | 11 | 90056 | <gh_stars>10-100
; A253198: a(n) = a(n-1) + a(n-2) - (-1)^(a(n-1) + a(n-2))) with a(0)=0, a(1)=1.
; Submitted by <NAME>(s1)
; 0,1,2,4,5,10,16,25,42,68,109,178,288,465,754,1220,1973,3194,5168,8361,13530,21892,35421,57314,92736,150049,242786,392836,635621,1028458,1664080,2692537,4356618,7049156,11405773,18454930,29860704,48315633,78176338,126491972,204668309,331160282,535828592,866988873,1402817466,2269806340,3672623805,5942430146,9615053952,15557484097,25172538050,40730022148,65902560197,106632582346,172535142544,279167724889,451702867434,730870592324,1182573459757,1913444052082,3096017511840,5009461563921
lpb $0
mov $2,$0
mul $0,$3
trn $2,1
seq $2,253197 ; a(n) = a(n-1) + a(n-2) + (1 - (-1)^(a(n-1) + a(n-2))) with a(0) = 0, a(1) = 1.
add $2,1
lpe
mov $0,$2
|
programs/oeis/267/A267890.asm | neoneye/loda | 22 | 169756 | <filename>programs/oeis/267/A267890.asm
; A267890: Decimal representation of the n-th iteration of the "Rule 239" elementary cellular automaton starting with a single ON (black) cell.
; 1,6,31,127,511,2047,8191,32767,131071,524287,2097151,8388607,33554431,134217727,536870911,2147483647,8589934591,34359738367,137438953471,549755813887,2199023255551,8796093022207,35184372088831,140737488355327,562949953421311,2251799813685247,9007199254740991,36028797018963967,144115188075855871,576460752303423487,2305843009213693951,9223372036854775807,36893488147419103231,147573952589676412927,590295810358705651711,2361183241434822606847,9444732965739290427391,37778931862957161709567,151115727451828646838271,604462909807314587353087,2417851639229258349412351,9671406556917033397649407,38685626227668133590597631,154742504910672534362390527,618970019642690137449562111,2475880078570760549798248447,9903520314283042199192993791,39614081257132168796771975167,158456325028528675187087900671,633825300114114700748351602687,2535301200456458802993406410751,10141204801825835211973625643007,40564819207303340847894502572031,162259276829213363391578010288127,649037107316853453566312041152511,2596148429267413814265248164610047,10384593717069655257060992658440191,41538374868278621028243970633760767,166153499473114484112975882535043071,664613997892457936451903530140172287
mov $1,4
pow $1,$0
cmp $0,1
mul $1,2
sub $1,$0
sub $1,1
mov $0,$1
|
win32/VC10/Win32/libxml2_Release/xmlunicode.asm | txwizard/libxml2_x64_and_ARM | 0 | 92064 | ; Listing generated by Microsoft (R) Optimizing Compiler Version 19.16.27027.1
TITLE C:\Users\DAG\Documents\_Clients\CodeProject Authors Group\Windows on ARM\libxml2\libxml2-2.9.9\xmlunicode.c
.686P
.XMM
include listing.inc
.model flat
INCLUDELIB MSVCRT
INCLUDELIB OLDNAMES
PUBLIC _xmlUCSIsAegeanNumbers
PUBLIC _xmlUCSIsAlphabeticPresentationForms
PUBLIC _xmlUCSIsArabic
PUBLIC _xmlUCSIsArabicPresentationFormsA
PUBLIC _xmlUCSIsArabicPresentationFormsB
PUBLIC _xmlUCSIsArmenian
PUBLIC _xmlUCSIsArrows
PUBLIC _xmlUCSIsBasicLatin
PUBLIC _xmlUCSIsBengali
PUBLIC _xmlUCSIsBlockElements
PUBLIC _xmlUCSIsBopomofo
PUBLIC _xmlUCSIsBopomofoExtended
PUBLIC _xmlUCSIsBoxDrawing
PUBLIC _xmlUCSIsBraillePatterns
PUBLIC _xmlUCSIsBuhid
PUBLIC _xmlUCSIsByzantineMusicalSymbols
PUBLIC _xmlUCSIsCJKCompatibility
PUBLIC _xmlUCSIsCJKCompatibilityForms
PUBLIC _xmlUCSIsCJKCompatibilityIdeographs
PUBLIC _xmlUCSIsCJKCompatibilityIdeographsSupplement
PUBLIC _xmlUCSIsCJKRadicalsSupplement
PUBLIC _xmlUCSIsCJKSymbolsandPunctuation
PUBLIC _xmlUCSIsCJKUnifiedIdeographs
PUBLIC _xmlUCSIsCJKUnifiedIdeographsExtensionA
PUBLIC _xmlUCSIsCJKUnifiedIdeographsExtensionB
PUBLIC _xmlUCSIsCherokee
PUBLIC _xmlUCSIsCombiningDiacriticalMarks
PUBLIC _xmlUCSIsCombiningDiacriticalMarksforSymbols
PUBLIC _xmlUCSIsCombiningHalfMarks
PUBLIC _xmlUCSIsCombiningMarksforSymbols
PUBLIC _xmlUCSIsControlPictures
PUBLIC _xmlUCSIsCurrencySymbols
PUBLIC _xmlUCSIsCypriotSyllabary
PUBLIC _xmlUCSIsCyrillic
PUBLIC _xmlUCSIsCyrillicSupplement
PUBLIC _xmlUCSIsDeseret
PUBLIC _xmlUCSIsDevanagari
PUBLIC _xmlUCSIsDingbats
PUBLIC _xmlUCSIsEnclosedAlphanumerics
PUBLIC _xmlUCSIsEnclosedCJKLettersandMonths
PUBLIC _xmlUCSIsEthiopic
PUBLIC _xmlUCSIsGeneralPunctuation
PUBLIC _xmlUCSIsGeometricShapes
PUBLIC _xmlUCSIsGeorgian
PUBLIC _xmlUCSIsGothic
PUBLIC _xmlUCSIsGreek
PUBLIC _xmlUCSIsGreekExtended
PUBLIC _xmlUCSIsGreekandCoptic
PUBLIC _xmlUCSIsGujarati
PUBLIC _xmlUCSIsGurmukhi
PUBLIC _xmlUCSIsHalfwidthandFullwidthForms
PUBLIC _xmlUCSIsHangulCompatibilityJamo
PUBLIC _xmlUCSIsHangulJamo
PUBLIC _xmlUCSIsHangulSyllables
PUBLIC _xmlUCSIsHanunoo
PUBLIC _xmlUCSIsHebrew
PUBLIC _xmlUCSIsHighPrivateUseSurrogates
PUBLIC _xmlUCSIsHighSurrogates
PUBLIC _xmlUCSIsHiragana
PUBLIC _xmlUCSIsIPAExtensions
PUBLIC _xmlUCSIsIdeographicDescriptionCharacters
PUBLIC _xmlUCSIsKanbun
PUBLIC _xmlUCSIsKangxiRadicals
PUBLIC _xmlUCSIsKannada
PUBLIC _xmlUCSIsKatakana
PUBLIC _xmlUCSIsKatakanaPhoneticExtensions
PUBLIC _xmlUCSIsKhmer
PUBLIC _xmlUCSIsKhmerSymbols
PUBLIC _xmlUCSIsLao
PUBLIC _xmlUCSIsLatin1Supplement
PUBLIC _xmlUCSIsLatinExtendedA
PUBLIC _xmlUCSIsLatinExtendedB
PUBLIC _xmlUCSIsLatinExtendedAdditional
PUBLIC _xmlUCSIsLetterlikeSymbols
PUBLIC _xmlUCSIsLimbu
PUBLIC _xmlUCSIsLinearBIdeograms
PUBLIC _xmlUCSIsLinearBSyllabary
PUBLIC _xmlUCSIsLowSurrogates
PUBLIC _xmlUCSIsMalayalam
PUBLIC _xmlUCSIsMathematicalAlphanumericSymbols
PUBLIC _xmlUCSIsMathematicalOperators
PUBLIC _xmlUCSIsMiscellaneousMathematicalSymbolsA
PUBLIC _xmlUCSIsMiscellaneousMathematicalSymbolsB
PUBLIC _xmlUCSIsMiscellaneousSymbols
PUBLIC _xmlUCSIsMiscellaneousSymbolsandArrows
PUBLIC _xmlUCSIsMiscellaneousTechnical
PUBLIC _xmlUCSIsMongolian
PUBLIC _xmlUCSIsMusicalSymbols
PUBLIC _xmlUCSIsMyanmar
PUBLIC _xmlUCSIsNumberForms
PUBLIC _xmlUCSIsOgham
PUBLIC _xmlUCSIsOldItalic
PUBLIC _xmlUCSIsOpticalCharacterRecognition
PUBLIC _xmlUCSIsOriya
PUBLIC _xmlUCSIsOsmanya
PUBLIC _xmlUCSIsPhoneticExtensions
PUBLIC _xmlUCSIsPrivateUse
PUBLIC _xmlUCSIsPrivateUseArea
PUBLIC _xmlUCSIsRunic
PUBLIC _xmlUCSIsShavian
PUBLIC _xmlUCSIsSinhala
PUBLIC _xmlUCSIsSmallFormVariants
PUBLIC _xmlUCSIsSpacingModifierLetters
PUBLIC _xmlUCSIsSpecials
PUBLIC _xmlUCSIsSuperscriptsandSubscripts
PUBLIC _xmlUCSIsSupplementalArrowsA
PUBLIC _xmlUCSIsSupplementalArrowsB
PUBLIC _xmlUCSIsSupplementalMathematicalOperators
PUBLIC _xmlUCSIsSupplementaryPrivateUseAreaA
PUBLIC _xmlUCSIsSupplementaryPrivateUseAreaB
PUBLIC _xmlUCSIsSyriac
PUBLIC _xmlUCSIsTagalog
PUBLIC _xmlUCSIsTagbanwa
PUBLIC _xmlUCSIsTags
PUBLIC _xmlUCSIsTaiLe
PUBLIC _xmlUCSIsTaiXuanJingSymbols
PUBLIC _xmlUCSIsTamil
PUBLIC _xmlUCSIsTelugu
PUBLIC _xmlUCSIsThaana
PUBLIC _xmlUCSIsThai
PUBLIC _xmlUCSIsTibetan
PUBLIC _xmlUCSIsUgaritic
PUBLIC _xmlUCSIsUnifiedCanadianAboriginalSyllabics
PUBLIC _xmlUCSIsVariationSelectors
PUBLIC _xmlUCSIsVariationSelectorsSupplement
PUBLIC _xmlUCSIsYiRadicals
PUBLIC _xmlUCSIsYiSyllables
PUBLIC _xmlUCSIsYijingHexagramSymbols
PUBLIC _xmlUCSIsCatC
PUBLIC _xmlUCSIsCatCc
PUBLIC _xmlUCSIsCatCf
PUBLIC _xmlUCSIsCatCo
PUBLIC _xmlUCSIsCatCs
PUBLIC _xmlUCSIsCatL
PUBLIC _xmlUCSIsCatLl
PUBLIC _xmlUCSIsCatLm
PUBLIC _xmlUCSIsCatLo
PUBLIC _xmlUCSIsCatLt
PUBLIC _xmlUCSIsCatLu
PUBLIC _xmlUCSIsCatM
PUBLIC _xmlUCSIsCatMc
PUBLIC _xmlUCSIsCatMe
PUBLIC _xmlUCSIsCatMn
PUBLIC _xmlUCSIsCatN
PUBLIC _xmlUCSIsCatNd
PUBLIC _xmlUCSIsCatNl
PUBLIC _xmlUCSIsCatNo
PUBLIC _xmlUCSIsCatP
PUBLIC _xmlUCSIsCatPc
PUBLIC _xmlUCSIsCatPd
PUBLIC _xmlUCSIsCatPe
PUBLIC _xmlUCSIsCatPf
PUBLIC _xmlUCSIsCatPi
PUBLIC _xmlUCSIsCatPo
PUBLIC _xmlUCSIsCatPs
PUBLIC _xmlUCSIsCatS
PUBLIC _xmlUCSIsCatSc
PUBLIC _xmlUCSIsCatSk
PUBLIC _xmlUCSIsCatSm
PUBLIC _xmlUCSIsCatSo
PUBLIC _xmlUCSIsCatZ
PUBLIC _xmlUCSIsCatZl
PUBLIC _xmlUCSIsCatZp
PUBLIC _xmlUCSIsCatZs
PUBLIC ??_C@_0O@LMKDPFLH@AegeanNumbers@ ; `string'
PUBLIC ??_C@_0BM@FHILPEHD@AlphabeticPresentationForms@ ; `string'
PUBLIC ??_C@_06PKKOFLDI@Arabic@ ; `string'
PUBLIC ??_C@_0BK@HLLEBDNG@ArabicPresentationForms?9A@ ; `string'
PUBLIC ??_C@_0BK@FAJJEABF@ArabicPresentationForms?9B@ ; `string'
PUBLIC ??_C@_08FOHFEPKP@Armenian@ ; `string'
PUBLIC ??_C@_06HDPOPCJM@Arrows@ ; `string'
PUBLIC ??_C@_0L@BMEAIGCM@BasicLatin@ ; `string'
PUBLIC ??_C@_07EHGPDBPP@Bengali@ ; `string'
PUBLIC ??_C@_0O@DEJDEMI@BlockElements@ ; `string'
PUBLIC ??_C@_08FJELILDA@Bopomofo@ ; `string'
PUBLIC ??_C@_0BB@CJCFBCMM@BopomofoExtended@ ; `string'
PUBLIC ??_C@_0L@BGKJOPL@BoxDrawing@ ; `string'
PUBLIC ??_C@_0BA@PMJEFOCM@BraillePatterns@ ; `string'
PUBLIC ??_C@_05IFJKBLGE@Buhid@ ; `string'
PUBLIC ??_C@_0BI@DCACHAG@ByzantineMusicalSymbols@ ; `string'
PUBLIC ??_C@_0BB@HCHPCGJM@CJKCompatibility@ ; `string'
PUBLIC ??_C@_0BG@JEEDBNFG@CJKCompatibilityForms@ ; `string'
PUBLIC ??_C@_0BL@MLINLEIB@CJKCompatibilityIdeographs@ ; `string'
PUBLIC ??_C@_0CF@MHMLFJAF@CJKCompatibilityIdeographsSuppl@ ; `string'
PUBLIC ??_C@_0BG@IKBGCED@CJKRadicalsSupplement@ ; `string'
PUBLIC ??_C@_0BJ@EFEOOODB@CJKSymbolsandPunctuation@ ; `string'
PUBLIC ??_C@_0BF@IHIIFJKH@CJKUnifiedIdeographs@ ; `string'
PUBLIC ??_C@_0BP@CFKMMCIB@CJKUnifiedIdeographsExtensionA@ ; `string'
PUBLIC ??_C@_0BP@OIBJBEC@CJKUnifiedIdeographsExtensionB@ ; `string'
PUBLIC ??_C@_08MDFAKGKC@Cherokee@ ; `string'
PUBLIC ??_C@_0BK@JLHHMODB@CombiningDiacriticalMarks@ ; `string'
PUBLIC ??_C@_0CE@CJONMFBG@CombiningDiacriticalMarksforSym@ ; `string'
PUBLIC ??_C@_0BD@HICCDHNL@CombiningHalfMarks@ ; `string'
PUBLIC ??_C@_0BJ@FMOJDMGL@CombiningMarksforSymbols@ ; `string'
PUBLIC ??_C@_0BA@NCNIOCBD@ControlPictures@ ; `string'
PUBLIC ??_C@_0BA@PHFIOGCJ@CurrencySymbols@ ; `string'
PUBLIC ??_C@_0BB@GFOOOPJK@CypriotSyllabary@ ; `string'
PUBLIC ??_C@_08DNBONLIE@Cyrillic@ ; `string'
PUBLIC ??_C@_0BD@EJJGAMF@CyrillicSupplement@ ; `string'
PUBLIC ??_C@_07PGJJNFLP@Deseret@ ; `string'
PUBLIC ??_C@_0L@JDMENJM@Devanagari@ ; `string'
PUBLIC ??_C@_08KMNGFEGC@Dingbats@ ; `string'
PUBLIC ??_C@_0BG@DBKOIOFC@EnclosedAlphanumerics@ ; `string'
PUBLIC ??_C@_0BM@CEMNPAPN@EnclosedCJKLettersandMonths@ ; `string'
PUBLIC ??_C@_08ELMAOGKI@Ethiopic@ ; `string'
PUBLIC ??_C@_0BD@MFMNMEDO@GeneralPunctuation@ ; `string'
PUBLIC ??_C@_0BA@PDAHJMFL@GeometricShapes@ ; `string'
PUBLIC ??_C@_08NPENEPGM@Georgian@ ; `string'
PUBLIC ??_C@_06OBILIHNB@Gothic@ ; `string'
PUBLIC ??_C@_05BLJPGLLB@Greek@ ; `string'
PUBLIC ??_C@_0O@BOIIGEIP@GreekExtended@ ; `string'
PUBLIC ??_C@_0P@MEDCMKCD@GreekandCoptic@ ; `string'
PUBLIC ??_C@_08EMJEOGJE@Gujarati@ ; `string'
PUBLIC ??_C@_08KHMGJCCG@Gurmukhi@ ; `string'
PUBLIC ??_C@_0BL@FHCDEOHA@HalfwidthandFullwidthForms@ ; `string'
PUBLIC ??_C@_0BI@ICEMECJJ@HangulCompatibilityJamo@ ; `string'
PUBLIC ??_C@_0L@HKIMOFFL@HangulJamo@ ; `string'
PUBLIC ??_C@_0BA@LJNIPPJH@HangulSyllables@ ; `string'
PUBLIC ??_C@_07DELPMEEP@Hanunoo@ ; `string'
PUBLIC ??_C@_06EBOICPLG@Hebrew@ ; `string'
PUBLIC ??_C@_0BJ@HBDKBEJH@HighPrivateUseSurrogates@ ; `string'
PUBLIC ??_C@_0P@PBBJDMBK@HighSurrogates@ ; `string'
PUBLIC ??_C@_08JNGAGLNE@Hiragana@ ; `string'
PUBLIC ??_C@_0O@PDCBHIAB@IPAExtensions@ ; `string'
PUBLIC ??_C@_0CB@GLBDCFOE@IdeographicDescriptionCharacter@ ; `string'
PUBLIC ??_C@_06PJFOMHML@Kanbun@ ; `string'
PUBLIC ??_C@_0P@OEANPKJK@KangxiRadicals@ ; `string'
PUBLIC ??_C@_07GHLFLHAG@Kannada@ ; `string'
PUBLIC ??_C@_08NBCIJEJP@Katakana@ ; `string'
PUBLIC ??_C@_0BL@HDMJHNGP@KatakanaPhoneticExtensions@ ; `string'
PUBLIC ??_C@_05BILJKFBO@Khmer@ ; `string'
PUBLIC ??_C@_0N@CFBBNEIL@KhmerSymbols@ ; `string'
PUBLIC ??_C@_03KEAJBBBJ@Lao@ ; `string'
PUBLIC ??_C@_0BC@BEPAHCBP@Latin?91Supplement@ ; `string'
PUBLIC ??_C@_0BA@NJFDFJMA@LatinExtended?9A@ ; `string'
PUBLIC ??_C@_0BA@PCHOAKAD@LatinExtended?9B@ ; `string'
PUBLIC ??_C@_0BI@IIJPGEML@LatinExtendedAdditional@ ; `string'
PUBLIC ??_C@_0BC@GBDPOII@LetterlikeSymbols@ ; `string'
PUBLIC ??_C@_05HCNCDMFE@Limbu@ ; `string'
PUBLIC ??_C@_0BB@PPMGIAIO@LinearBIdeograms@ ; `string'
PUBLIC ??_C@_0BB@OHEOENGH@LinearBSyllabary@ ; `string'
PUBLIC ??_C@_0O@JPELEGJF@LowSurrogates@ ; `string'
PUBLIC ??_C@_09PGGFICGJ@Malayalam@ ; `string'
PUBLIC ??_C@_0CA@OFLLOOBF@MathematicalAlphanumericSymbols@ ; `string'
PUBLIC ??_C@_0BG@PCHNGHOP@MathematicalOperators@ ; `string'
PUBLIC ??_C@_0CD@GAPBPBJA@MiscellaneousMathematicalSymbol@ ; `string'
PUBLIC ??_C@_0CD@ELNMKCFD@MiscellaneousMathematicalSymbol@ ; `string'
PUBLIC ??_C@_0BF@GBEKAJJD@MiscellaneousSymbols@ ; `string'
PUBLIC ??_C@_0BO@CAMMNKDM@MiscellaneousSymbolsandArrows@ ; `string'
PUBLIC ??_C@_0BH@OJJKGJKB@MiscellaneousTechnical@ ; `string'
PUBLIC ??_C@_09COLOONHK@Mongolian@ ; `string'
PUBLIC ??_C@_0P@FMMPCFAF@MusicalSymbols@ ; `string'
PUBLIC ??_C@_07CJEPOCDM@Myanmar@ ; `string'
PUBLIC ??_C@_0M@CADFPJEM@NumberForms@ ; `string'
PUBLIC ??_C@_05PMPFCGKJ@Ogham@ ; `string'
PUBLIC ??_C@_09GGLGKF@OldItalic@ ; `string'
PUBLIC ??_C@_0BM@MKILNNIL@OpticalCharacterRecognition@ ; `string'
PUBLIC ??_C@_05FCMJOEPK@Oriya@ ; `string'
PUBLIC ??_C@_07FLOHPBBB@Osmanya@ ; `string'
PUBLIC ??_C@_0BD@ODJFALAH@PhoneticExtensions@ ; `string'
PUBLIC ??_C@_0L@NKMLCPLK@PrivateUse@ ; `string'
PUBLIC ??_C@_0P@JJIJNAKP@PrivateUseArea@ ; `string'
PUBLIC ??_C@_05OMGGNAOE@Runic@ ; `string'
PUBLIC ??_C@_07LIFCEABG@Shavian@ ; `string'
PUBLIC ??_C@_07HKFHHHOH@Sinhala@ ; `string'
PUBLIC ??_C@_0BC@BFGADBGB@SmallFormVariants@ ; `string'
PUBLIC ??_C@_0BH@DMBOKNML@SpacingModifierLetters@ ; `string'
PUBLIC ??_C@_08PLPAIEOP@Specials@ ; `string'
PUBLIC ??_C@_0BK@LMFBJMHO@SuperscriptsandSubscripts@ ; `string'
PUBLIC ??_C@_0BF@PLDLEEKL@SupplementalArrows?9A@ ; `string'
PUBLIC ??_C@_0BF@NABGBHGI@SupplementalArrows?9B@ ; `string'
PUBLIC ??_C@_0CC@MPJJEAJL@SupplementalMathematicalOperato@ ; `string'
PUBLIC ??_C@_0BO@FKALLKGE@SupplementaryPrivateUseArea?9A@ ; `string'
PUBLIC ??_C@_0BO@HBCGOJKH@SupplementaryPrivateUseArea?9B@ ; `string'
PUBLIC ??_C@_06JOHKBNPH@Syriac@ ; `string'
PUBLIC ??_C@_07MPBEMCCC@Tagalog@ ; `string'
PUBLIC ??_C@_08HDNHHNMK@Tagbanwa@ ; `string'
PUBLIC ??_C@_04DOFOAGBP@Tags@ ; `string'
PUBLIC ??_C@_05FKFEBJIP@TaiLe@ ; `string'
PUBLIC ??_C@_0BD@DGPDEDFN@TaiXuanJingSymbols@ ; `string'
PUBLIC ??_C@_05DKHCLBJK@Tamil@ ; `string'
PUBLIC ??_C@_06PCMDOJDI@Telugu@ ; `string'
PUBLIC ??_C@_06EIMJBCEF@Thaana@ ; `string'
PUBLIC ??_C@_04PHPGMPPM@Thai@ ; `string'
PUBLIC ??_C@_07BHEHFCAF@Tibetan@ ; `string'
PUBLIC ??_C@_08OJJPEHGN@Ugaritic@ ; `string'
PUBLIC ??_C@_0CD@ONMKCCHG@UnifiedCanadianAboriginalSyllab@ ; `string'
PUBLIC ??_C@_0BD@MLEDBAOK@VariationSelectors@ ; `string'
PUBLIC ??_C@_0BN@DIKICAGH@VariationSelectorsSupplement@ ; `string'
PUBLIC ??_C@_0L@LCEJPIDD@YiRadicals@ ; `string'
PUBLIC ??_C@_0M@NALELJIH@YiSyllables@ ; `string'
PUBLIC ??_C@_0BG@LPBLNMOL@YijingHexagramSymbols@ ; `string'
PUBLIC ??_C@_01GFHCPBMG@C@ ; `string'
PUBLIC ??_C@_02DMLCCNBA@Cc@ ; `string'
PUBLIC ??_C@_02EBMFNJFF@Cf@ ; `string'
PUBLIC ??_C@_02JAAHGCBM@Co@ ; `string'
PUBLIC ??_C@_02HGHADPEB@Cs@ ; `string'
PUBLIC ??_C@_01OCOKONAJ@L@ ; `string'
PUBLIC ??_C@_02LAHGHGOC@Ll@ ; `string'
PUBLIC ??_C@_02KJGNEHKD@Lm@ ; `string'
PUBLIC ??_C@_02JLFLCFCB@Lo@ ; `string'
PUBLIC ??_C@_02DCGNOOLL@Lt@ ; `string'
PUBLIC ??_C@_02CLHGNPPK@Lu@ ; `string'
PUBLIC ??_C@_01PLPBNMEI@M@ ; `string'
PUBLIC ??_C@_02DGCMAABK@Mc@ ; `string'
PUBLIC ??_C@_02GAHGKHJM@Me@ ; `string'
PUBLIC ??_C@_02IDICHOFH@Mn@ ; `string'
PUBLIC ??_C@_01NANMIPIL@N@ ; `string'
PUBLIC ??_C@_02HLCLCIIE@Nd@ ; `string'
PUBLIC ??_C@_02LDPCKCIM@Nl@ ; `string'
PUBLIC ??_C@_02JINPPBEP@No@ ; `string'
PUBLIC ??_C@_01EJNLAFE@P@ ; `string'
PUBLIC ??_C@_02CCNCDADJ@Pc@ ; `string'
PUBLIC ??_C@_02GNJDKGPO@Pd@ ; `string'
PUBLIC ??_C@_02HEIIJHLP@Pe@ ; `string'
PUBLIC ??_C@_02FPKFMEHM@Pf@ ; `string'
PUBLIC ??_C@_02NIDNNILD@Pi@ ; `string'
PUBLIC ??_C@_02IOGHHPDF@Po@ ; `string'
PUBLIC ??_C@_02GIBACCGI@Ps@ ; `string'
PUBLIC ??_C@_01CPLAODJH@S@ ; `string'
PUBLIC ??_C@_02CAJEIOGA@Sc@ ; `string'
PUBLIC ??_C@_02OIENAEGI@Sk@ ; `string'
PUBLIC ??_C@_02LOBHKDOO@Sm@ ; `string'
PUBLIC ??_C@_02IMCBMBGM@So@ ; `string'
PUBLIC ??_C@_01POHCFINO@Z@ ; `string'
PUBLIC ??_C@_02KINNKJCA@Zl@ ; `string'
PUBLIC ??_C@_02EOKKPEHN@Zp@ ; `string'
PUBLIC ??_C@_02GFIHKHLO@Zs@ ; `string'
_DATA SEGMENT
COMM _xmlIsBaseCharGroup:BYTE:010H
COMM _xmlIsCharGroup:BYTE:010H
COMM _xmlIsCombiningGroup:BYTE:010H
COMM _xmlIsDigitGroup:BYTE:010H
COMM _xmlIsExtenderGroup:BYTE:010H
COMM _xmlIsIdeographicGroup:BYTE:010H
COMM _xmlIsPubidChar_tab:BYTE:0100H
_DATA ENDS
msvcjmc SEGMENT
__188180DA_corecrt_math@h DB 01H
__2CC6E67D_corecrt_stdio_config@h DB 01H
__05476D76_corecrt_wstdio@h DB 01H
__A452D4A0_stdio@h DB 01H
__4384A2D9_corecrt_memcpy_s@h DB 01H
__4E51A221_corecrt_wstring@h DB 01H
__2140C079_string@h DB 01H
__B18DBD6B_xmlunicode@c DB 01H
msvcjmc ENDS
; COMDAT ??_C@_02GFIHKHLO@Zs@
CONST SEGMENT
??_C@_02GFIHKHLO@Zs@ DB 'Zs', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02EOKKPEHN@Zp@
CONST SEGMENT
??_C@_02EOKKPEHN@Zp@ DB 'Zp', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02KINNKJCA@Zl@
CONST SEGMENT
??_C@_02KINNKJCA@Zl@ DB 'Zl', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_01POHCFINO@Z@
CONST SEGMENT
??_C@_01POHCFINO@Z@ DB 'Z', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02IMCBMBGM@So@
CONST SEGMENT
??_C@_02IMCBMBGM@So@ DB 'So', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02LOBHKDOO@Sm@
CONST SEGMENT
??_C@_02LOBHKDOO@Sm@ DB 'Sm', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02OIENAEGI@Sk@
CONST SEGMENT
??_C@_02OIENAEGI@Sk@ DB 'Sk', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02CAJEIOGA@Sc@
CONST SEGMENT
??_C@_02CAJEIOGA@Sc@ DB 'Sc', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_01CPLAODJH@S@
CONST SEGMENT
??_C@_01CPLAODJH@S@ DB 'S', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02GIBACCGI@Ps@
CONST SEGMENT
??_C@_02GIBACCGI@Ps@ DB 'Ps', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02IOGHHPDF@Po@
CONST SEGMENT
??_C@_02IOGHHPDF@Po@ DB 'Po', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02NIDNNILD@Pi@
CONST SEGMENT
??_C@_02NIDNNILD@Pi@ DB 'Pi', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02FPKFMEHM@Pf@
CONST SEGMENT
??_C@_02FPKFMEHM@Pf@ DB 'Pf', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02HEIIJHLP@Pe@
CONST SEGMENT
??_C@_02HEIIJHLP@Pe@ DB 'Pe', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02GNJDKGPO@Pd@
CONST SEGMENT
??_C@_02GNJDKGPO@Pd@ DB 'Pd', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02CCNCDADJ@Pc@
CONST SEGMENT
??_C@_02CCNCDADJ@Pc@ DB 'Pc', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_01EJNLAFE@P@
CONST SEGMENT
??_C@_01EJNLAFE@P@ DB 'P', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02JINPPBEP@No@
CONST SEGMENT
??_C@_02JINPPBEP@No@ DB 'No', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02LDPCKCIM@Nl@
CONST SEGMENT
??_C@_02LDPCKCIM@Nl@ DB 'Nl', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02HLCLCIIE@Nd@
CONST SEGMENT
??_C@_02HLCLCIIE@Nd@ DB 'Nd', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_01NANMIPIL@N@
CONST SEGMENT
??_C@_01NANMIPIL@N@ DB 'N', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02IDICHOFH@Mn@
CONST SEGMENT
??_C@_02IDICHOFH@Mn@ DB 'Mn', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02GAHGKHJM@Me@
CONST SEGMENT
??_C@_02GAHGKHJM@Me@ DB 'Me', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02DGCMAABK@Mc@
CONST SEGMENT
??_C@_02DGCMAABK@Mc@ DB 'Mc', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_01PLPBNMEI@M@
CONST SEGMENT
??_C@_01PLPBNMEI@M@ DB 'M', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02CLHGNPPK@Lu@
CONST SEGMENT
??_C@_02CLHGNPPK@Lu@ DB 'Lu', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02DCGNOOLL@Lt@
CONST SEGMENT
??_C@_02DCGNOOLL@Lt@ DB 'Lt', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02JLFLCFCB@Lo@
CONST SEGMENT
??_C@_02JLFLCFCB@Lo@ DB 'Lo', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02KJGNEHKD@Lm@
CONST SEGMENT
??_C@_02KJGNEHKD@Lm@ DB 'Lm', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02LAHGHGOC@Ll@
CONST SEGMENT
??_C@_02LAHGHGOC@Ll@ DB 'Ll', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_01OCOKONAJ@L@
CONST SEGMENT
??_C@_01OCOKONAJ@L@ DB 'L', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02HGHADPEB@Cs@
CONST SEGMENT
??_C@_02HGHADPEB@Cs@ DB 'Cs', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02JAAHGCBM@Co@
CONST SEGMENT
??_C@_02JAAHGCBM@Co@ DB 'Co', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02EBMFNJFF@Cf@
CONST SEGMENT
??_C@_02EBMFNJFF@Cf@ DB 'Cf', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_02DMLCCNBA@Cc@
CONST SEGMENT
??_C@_02DMLCCNBA@Cc@ DB 'Cc', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_01GFHCPBMG@C@
CONST SEGMENT
??_C@_01GFHCPBMG@C@ DB 'C', 00H ; `string'
CONST ENDS
_DATA SEGMENT
_xmlUnicodeCats DD FLAT:??_C@_01GFHCPBMG@C@
DD FLAT:_xmlUCSIsCatC
DD FLAT:??_C@_02DMLCCNBA@Cc@
DD FLAT:_xmlUCSIsCatCc
DD FLAT:??_C@_02EBMFNJFF@Cf@
DD FLAT:_xmlUCSIsCatCf
DD FLAT:??_C@_02JAAHGCBM@Co@
DD FLAT:_xmlUCSIsCatCo
DD FLAT:??_C@_02HGHADPEB@Cs@
DD FLAT:_xmlUCSIsCatCs
DD FLAT:??_C@_01OCOKONAJ@L@
DD FLAT:_xmlUCSIsCatL
DD FLAT:??_C@_02LAHGHGOC@Ll@
DD FLAT:_xmlUCSIsCatLl
DD FLAT:??_C@_02KJGNEHKD@Lm@
DD FLAT:_xmlUCSIsCatLm
DD FLAT:??_C@_02JLFLCFCB@Lo@
DD FLAT:_xmlUCSIsCatLo
DD FLAT:??_C@_02DCGNOOLL@Lt@
DD FLAT:_xmlUCSIsCatLt
DD FLAT:??_C@_02CLHGNPPK@Lu@
DD FLAT:_xmlUCSIsCatLu
DD FLAT:??_C@_01PLPBNMEI@M@
DD FLAT:_xmlUCSIsCatM
DD FLAT:??_C@_02DGCMAABK@Mc@
DD FLAT:_xmlUCSIsCatMc
DD FLAT:??_C@_02GAHGKHJM@Me@
DD FLAT:_xmlUCSIsCatMe
DD FLAT:??_C@_02IDICHOFH@Mn@
DD FLAT:_xmlUCSIsCatMn
DD FLAT:??_C@_01NANMIPIL@N@
DD FLAT:_xmlUCSIsCatN
DD FLAT:??_C@_02HLCLCIIE@Nd@
DD FLAT:_xmlUCSIsCatNd
DD FLAT:??_C@_02LDPCKCIM@Nl@
DD FLAT:_xmlUCSIsCatNl
DD FLAT:??_C@_02JINPPBEP@No@
DD FLAT:_xmlUCSIsCatNo
DD FLAT:??_C@_01EJNLAFE@P@
DD FLAT:_xmlUCSIsCatP
DD FLAT:??_C@_02CCNCDADJ@Pc@
DD FLAT:_xmlUCSIsCatPc
DD FLAT:??_C@_02GNJDKGPO@Pd@
DD FLAT:_xmlUCSIsCatPd
DD FLAT:??_C@_02HEIIJHLP@Pe@
DD FLAT:_xmlUCSIsCatPe
DD FLAT:??_C@_02FPKFMEHM@Pf@
DD FLAT:_xmlUCSIsCatPf
DD FLAT:??_C@_02NIDNNILD@Pi@
DD FLAT:_xmlUCSIsCatPi
DD FLAT:??_C@_02IOGHHPDF@Po@
DD FLAT:_xmlUCSIsCatPo
DD FLAT:??_C@_02GIBACCGI@Ps@
DD FLAT:_xmlUCSIsCatPs
DD FLAT:??_C@_01CPLAODJH@S@
DD FLAT:_xmlUCSIsCatS
DD FLAT:??_C@_02CAJEIOGA@Sc@
DD FLAT:_xmlUCSIsCatSc
DD FLAT:??_C@_02OIENAEGI@Sk@
DD FLAT:_xmlUCSIsCatSk
DD FLAT:??_C@_02LOBHKDOO@Sm@
DD FLAT:_xmlUCSIsCatSm
DD FLAT:??_C@_02IMCBMBGM@So@
DD FLAT:_xmlUCSIsCatSo
DD FLAT:??_C@_01POHCFINO@Z@
DD FLAT:_xmlUCSIsCatZ
DD FLAT:??_C@_02KINNKJCA@Zl@
DD FLAT:_xmlUCSIsCatZl
DD FLAT:??_C@_02EOKKPEHN@Zp@
DD FLAT:_xmlUCSIsCatZp
DD FLAT:??_C@_02GFIHKHLO@Zs@
DD FLAT:_xmlUCSIsCatZs
_DATA ENDS
; COMDAT ??_C@_0BG@LPBLNMOL@YijingHexagramSymbols@
CONST SEGMENT
??_C@_0BG@LPBLNMOL@YijingHexagramSymbols@ DB 'YijingHexagramSymbols', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0M@NALELJIH@YiSyllables@
CONST SEGMENT
??_C@_0M@NALELJIH@YiSyllables@ DB 'YiSyllables', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0L@LCEJPIDD@YiRadicals@
CONST SEGMENT
??_C@_0L@LCEJPIDD@YiRadicals@ DB 'YiRadicals', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BN@DIKICAGH@VariationSelectorsSupplement@
CONST SEGMENT
??_C@_0BN@DIKICAGH@VariationSelectorsSupplement@ DB 'VariationSelectorsSu'
DB 'pplement', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BD@MLEDBAOK@VariationSelectors@
CONST SEGMENT
??_C@_0BD@MLEDBAOK@VariationSelectors@ DB 'VariationSelectors', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0CD@ONMKCCHG@UnifiedCanadianAboriginalSyllab@
CONST SEGMENT
??_C@_0CD@ONMKCCHG@UnifiedCanadianAboriginalSyllab@ DB 'UnifiedCanadianAb'
DB 'originalSyllabics', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_08OJJPEHGN@Ugaritic@
CONST SEGMENT
??_C@_08OJJPEHGN@Ugaritic@ DB 'Ugaritic', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_07BHEHFCAF@Tibetan@
CONST SEGMENT
??_C@_07BHEHFCAF@Tibetan@ DB 'Tibetan', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_04PHPGMPPM@Thai@
CONST SEGMENT
??_C@_04PHPGMPPM@Thai@ DB 'Thai', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_06EIMJBCEF@Thaana@
CONST SEGMENT
??_C@_06EIMJBCEF@Thaana@ DB 'Thaana', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_06PCMDOJDI@Telugu@
CONST SEGMENT
??_C@_06PCMDOJDI@Telugu@ DB 'Telugu', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_05DKHCLBJK@Tamil@
CONST SEGMENT
??_C@_05DKHCLBJK@Tamil@ DB 'Tamil', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BD@DGPDEDFN@TaiXuanJingSymbols@
CONST SEGMENT
??_C@_0BD@DGPDEDFN@TaiXuanJingSymbols@ DB 'TaiXuanJingSymbols', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_05FKFEBJIP@TaiLe@
CONST SEGMENT
??_C@_05FKFEBJIP@TaiLe@ DB 'TaiLe', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_04DOFOAGBP@Tags@
CONST SEGMENT
??_C@_04DOFOAGBP@Tags@ DB 'Tags', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_08HDNHHNMK@Tagbanwa@
CONST SEGMENT
??_C@_08HDNHHNMK@Tagbanwa@ DB 'Tagbanwa', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_07MPBEMCCC@Tagalog@
CONST SEGMENT
??_C@_07MPBEMCCC@Tagalog@ DB 'Tagalog', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_06JOHKBNPH@Syriac@
CONST SEGMENT
??_C@_06JOHKBNPH@Syriac@ DB 'Syriac', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BO@HBCGOJKH@SupplementaryPrivateUseArea?9B@
CONST SEGMENT
??_C@_0BO@HBCGOJKH@SupplementaryPrivateUseArea?9B@ DB 'SupplementaryPriva'
DB 'teUseArea-B', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BO@FKALLKGE@SupplementaryPrivateUseArea?9A@
CONST SEGMENT
??_C@_0BO@FKALLKGE@SupplementaryPrivateUseArea?9A@ DB 'SupplementaryPriva'
DB 'teUseArea-A', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0CC@MPJJEAJL@SupplementalMathematicalOperato@
CONST SEGMENT
??_C@_0CC@MPJJEAJL@SupplementalMathematicalOperato@ DB 'SupplementalMathe'
DB 'maticalOperators', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BF@NABGBHGI@SupplementalArrows?9B@
CONST SEGMENT
??_C@_0BF@NABGBHGI@SupplementalArrows?9B@ DB 'SupplementalArrows-B', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BF@PLDLEEKL@SupplementalArrows?9A@
CONST SEGMENT
??_C@_0BF@PLDLEEKL@SupplementalArrows?9A@ DB 'SupplementalArrows-A', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BK@LMFBJMHO@SuperscriptsandSubscripts@
CONST SEGMENT
??_C@_0BK@LMFBJMHO@SuperscriptsandSubscripts@ DB 'SuperscriptsandSubscrip'
DB 'ts', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_08PLPAIEOP@Specials@
CONST SEGMENT
??_C@_08PLPAIEOP@Specials@ DB 'Specials', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BH@DMBOKNML@SpacingModifierLetters@
CONST SEGMENT
??_C@_0BH@DMBOKNML@SpacingModifierLetters@ DB 'SpacingModifierLetters', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BC@BFGADBGB@SmallFormVariants@
CONST SEGMENT
??_C@_0BC@BFGADBGB@SmallFormVariants@ DB 'SmallFormVariants', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_07HKFHHHOH@Sinhala@
CONST SEGMENT
??_C@_07HKFHHHOH@Sinhala@ DB 'Sinhala', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_07LIFCEABG@Shavian@
CONST SEGMENT
??_C@_07LIFCEABG@Shavian@ DB 'Shavian', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_05OMGGNAOE@Runic@
CONST SEGMENT
??_C@_05OMGGNAOE@Runic@ DB 'Runic', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0P@JJIJNAKP@PrivateUseArea@
CONST SEGMENT
??_C@_0P@JJIJNAKP@PrivateUseArea@ DB 'PrivateUseArea', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0L@NKMLCPLK@PrivateUse@
CONST SEGMENT
??_C@_0L@NKMLCPLK@PrivateUse@ DB 'PrivateUse', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BD@ODJFALAH@PhoneticExtensions@
CONST SEGMENT
??_C@_0BD@ODJFALAH@PhoneticExtensions@ DB 'PhoneticExtensions', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_07FLOHPBBB@Osmanya@
CONST SEGMENT
??_C@_07FLOHPBBB@Osmanya@ DB 'Osmanya', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_05FCMJOEPK@Oriya@
CONST SEGMENT
??_C@_05FCMJOEPK@Oriya@ DB 'Oriya', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BM@MKILNNIL@OpticalCharacterRecognition@
CONST SEGMENT
??_C@_0BM@MKILNNIL@OpticalCharacterRecognition@ DB 'OpticalCharacterRecog'
DB 'nition', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_09GGLGKF@OldItalic@
CONST SEGMENT
??_C@_09GGLGKF@OldItalic@ DB 'OldItalic', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_05PMPFCGKJ@Ogham@
CONST SEGMENT
??_C@_05PMPFCGKJ@Ogham@ DB 'Ogham', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0M@CADFPJEM@NumberForms@
CONST SEGMENT
??_C@_0M@CADFPJEM@NumberForms@ DB 'NumberForms', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_07CJEPOCDM@Myanmar@
CONST SEGMENT
??_C@_07CJEPOCDM@Myanmar@ DB 'Myanmar', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0P@FMMPCFAF@MusicalSymbols@
CONST SEGMENT
??_C@_0P@FMMPCFAF@MusicalSymbols@ DB 'MusicalSymbols', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_09COLOONHK@Mongolian@
CONST SEGMENT
??_C@_09COLOONHK@Mongolian@ DB 'Mongolian', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BH@OJJKGJKB@MiscellaneousTechnical@
CONST SEGMENT
??_C@_0BH@OJJKGJKB@MiscellaneousTechnical@ DB 'MiscellaneousTechnical', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BO@CAMMNKDM@MiscellaneousSymbolsandArrows@
CONST SEGMENT
??_C@_0BO@CAMMNKDM@MiscellaneousSymbolsandArrows@ DB 'MiscellaneousSymbol'
DB 'sandArrows', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BF@GBEKAJJD@MiscellaneousSymbols@
CONST SEGMENT
??_C@_0BF@GBEKAJJD@MiscellaneousSymbols@ DB 'MiscellaneousSymbols', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0CD@ELNMKCFD@MiscellaneousMathematicalSymbol@
CONST SEGMENT
??_C@_0CD@ELNMKCFD@MiscellaneousMathematicalSymbol@ DB 'MiscellaneousMath'
DB 'ematicalSymbols-B', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0CD@GAPBPBJA@MiscellaneousMathematicalSymbol@
CONST SEGMENT
??_C@_0CD@GAPBPBJA@MiscellaneousMathematicalSymbol@ DB 'MiscellaneousMath'
DB 'ematicalSymbols-A', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BG@PCHNGHOP@MathematicalOperators@
CONST SEGMENT
??_C@_0BG@PCHNGHOP@MathematicalOperators@ DB 'MathematicalOperators', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0CA@OFLLOOBF@MathematicalAlphanumericSymbols@
CONST SEGMENT
??_C@_0CA@OFLLOOBF@MathematicalAlphanumericSymbols@ DB 'MathematicalAlpha'
DB 'numericSymbols', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_09PGGFICGJ@Malayalam@
CONST SEGMENT
??_C@_09PGGFICGJ@Malayalam@ DB 'Malayalam', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0O@JPELEGJF@LowSurrogates@
CONST SEGMENT
??_C@_0O@JPELEGJF@LowSurrogates@ DB 'LowSurrogates', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BB@OHEOENGH@LinearBSyllabary@
CONST SEGMENT
??_C@_0BB@OHEOENGH@LinearBSyllabary@ DB 'LinearBSyllabary', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BB@PPMGIAIO@LinearBIdeograms@
CONST SEGMENT
??_C@_0BB@PPMGIAIO@LinearBIdeograms@ DB 'LinearBIdeograms', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_05HCNCDMFE@Limbu@
CONST SEGMENT
??_C@_05HCNCDMFE@Limbu@ DB 'Limbu', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BC@GBDPOII@LetterlikeSymbols@
CONST SEGMENT
??_C@_0BC@GBDPOII@LetterlikeSymbols@ DB 'LetterlikeSymbols', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BI@IIJPGEML@LatinExtendedAdditional@
CONST SEGMENT
??_C@_0BI@IIJPGEML@LatinExtendedAdditional@ DB 'LatinExtendedAdditional', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BA@PCHOAKAD@LatinExtended?9B@
CONST SEGMENT
??_C@_0BA@PCHOAKAD@LatinExtended?9B@ DB 'LatinExtended-B', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BA@NJFDFJMA@LatinExtended?9A@
CONST SEGMENT
??_C@_0BA@NJFDFJMA@LatinExtended?9A@ DB 'LatinExtended-A', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BC@BEPAHCBP@Latin?91Supplement@
CONST SEGMENT
??_C@_0BC@BEPAHCBP@Latin?91Supplement@ DB 'Latin-1Supplement', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_03KEAJBBBJ@Lao@
CONST SEGMENT
??_C@_03KEAJBBBJ@Lao@ DB 'Lao', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0N@CFBBNEIL@KhmerSymbols@
CONST SEGMENT
??_C@_0N@CFBBNEIL@KhmerSymbols@ DB 'KhmerSymbols', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_05BILJKFBO@Khmer@
CONST SEGMENT
??_C@_05BILJKFBO@Khmer@ DB 'Khmer', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BL@HDMJHNGP@KatakanaPhoneticExtensions@
CONST SEGMENT
??_C@_0BL@HDMJHNGP@KatakanaPhoneticExtensions@ DB 'KatakanaPhoneticExtens'
DB 'ions', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_08NBCIJEJP@Katakana@
CONST SEGMENT
??_C@_08NBCIJEJP@Katakana@ DB 'Katakana', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_07GHLFLHAG@Kannada@
CONST SEGMENT
??_C@_07GHLFLHAG@Kannada@ DB 'Kannada', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0P@OEANPKJK@KangxiRadicals@
CONST SEGMENT
??_C@_0P@OEANPKJK@KangxiRadicals@ DB 'KangxiRadicals', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_06PJFOMHML@Kanbun@
CONST SEGMENT
??_C@_06PJFOMHML@Kanbun@ DB 'Kanbun', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0CB@GLBDCFOE@IdeographicDescriptionCharacter@
CONST SEGMENT
??_C@_0CB@GLBDCFOE@IdeographicDescriptionCharacter@ DB 'IdeographicDescri'
DB 'ptionCharacters', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0O@PDCBHIAB@IPAExtensions@
CONST SEGMENT
??_C@_0O@PDCBHIAB@IPAExtensions@ DB 'IPAExtensions', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_08JNGAGLNE@Hiragana@
CONST SEGMENT
??_C@_08JNGAGLNE@Hiragana@ DB 'Hiragana', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0P@PBBJDMBK@HighSurrogates@
CONST SEGMENT
??_C@_0P@PBBJDMBK@HighSurrogates@ DB 'HighSurrogates', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BJ@HBDKBEJH@HighPrivateUseSurrogates@
CONST SEGMENT
??_C@_0BJ@HBDKBEJH@HighPrivateUseSurrogates@ DB 'HighPrivateUseSurrogates'
DB 00H ; `string'
CONST ENDS
; COMDAT ??_C@_06EBOICPLG@Hebrew@
CONST SEGMENT
??_C@_06EBOICPLG@Hebrew@ DB 'Hebrew', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_07DELPMEEP@Hanunoo@
CONST SEGMENT
??_C@_07DELPMEEP@Hanunoo@ DB 'Hanunoo', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BA@LJNIPPJH@HangulSyllables@
CONST SEGMENT
??_C@_0BA@LJNIPPJH@HangulSyllables@ DB 'HangulSyllables', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0L@HKIMOFFL@HangulJamo@
CONST SEGMENT
??_C@_0L@HKIMOFFL@HangulJamo@ DB 'HangulJamo', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BI@ICEMECJJ@HangulCompatibilityJamo@
CONST SEGMENT
??_C@_0BI@ICEMECJJ@HangulCompatibilityJamo@ DB 'HangulCompatibilityJamo', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BL@FHCDEOHA@HalfwidthandFullwidthForms@
CONST SEGMENT
??_C@_0BL@FHCDEOHA@HalfwidthandFullwidthForms@ DB 'HalfwidthandFullwidthF'
DB 'orms', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_08KHMGJCCG@Gurmukhi@
CONST SEGMENT
??_C@_08KHMGJCCG@Gurmukhi@ DB 'Gurmukhi', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_08EMJEOGJE@Gujarati@
CONST SEGMENT
??_C@_08EMJEOGJE@Gujarati@ DB 'Gujarati', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0P@MEDCMKCD@GreekandCoptic@
CONST SEGMENT
??_C@_0P@MEDCMKCD@GreekandCoptic@ DB 'GreekandCoptic', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0O@BOIIGEIP@GreekExtended@
CONST SEGMENT
??_C@_0O@BOIIGEIP@GreekExtended@ DB 'GreekExtended', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_05BLJPGLLB@Greek@
CONST SEGMENT
??_C@_05BLJPGLLB@Greek@ DB 'Greek', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_06OBILIHNB@Gothic@
CONST SEGMENT
??_C@_06OBILIHNB@Gothic@ DB 'Gothic', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_08NPENEPGM@Georgian@
CONST SEGMENT
??_C@_08NPENEPGM@Georgian@ DB 'Georgian', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BA@PDAHJMFL@GeometricShapes@
CONST SEGMENT
??_C@_0BA@PDAHJMFL@GeometricShapes@ DB 'GeometricShapes', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BD@MFMNMEDO@GeneralPunctuation@
CONST SEGMENT
??_C@_0BD@MFMNMEDO@GeneralPunctuation@ DB 'GeneralPunctuation', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_08ELMAOGKI@Ethiopic@
CONST SEGMENT
??_C@_08ELMAOGKI@Ethiopic@ DB 'Ethiopic', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BM@CEMNPAPN@EnclosedCJKLettersandMonths@
CONST SEGMENT
??_C@_0BM@CEMNPAPN@EnclosedCJKLettersandMonths@ DB 'EnclosedCJKLettersand'
DB 'Months', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BG@DBKOIOFC@EnclosedAlphanumerics@
CONST SEGMENT
??_C@_0BG@DBKOIOFC@EnclosedAlphanumerics@ DB 'EnclosedAlphanumerics', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_08KMNGFEGC@Dingbats@
CONST SEGMENT
??_C@_08KMNGFEGC@Dingbats@ DB 'Dingbats', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0L@JDMENJM@Devanagari@
CONST SEGMENT
??_C@_0L@JDMENJM@Devanagari@ DB 'Devanagari', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_07PGJJNFLP@Deseret@
CONST SEGMENT
??_C@_07PGJJNFLP@Deseret@ DB 'Deseret', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BD@EJJGAMF@CyrillicSupplement@
CONST SEGMENT
??_C@_0BD@EJJGAMF@CyrillicSupplement@ DB 'CyrillicSupplement', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_08DNBONLIE@Cyrillic@
CONST SEGMENT
??_C@_08DNBONLIE@Cyrillic@ DB 'Cyrillic', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BB@GFOOOPJK@CypriotSyllabary@
CONST SEGMENT
??_C@_0BB@GFOOOPJK@CypriotSyllabary@ DB 'CypriotSyllabary', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BA@PHFIOGCJ@CurrencySymbols@
CONST SEGMENT
??_C@_0BA@PHFIOGCJ@CurrencySymbols@ DB 'CurrencySymbols', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BA@NCNIOCBD@ControlPictures@
CONST SEGMENT
??_C@_0BA@NCNIOCBD@ControlPictures@ DB 'ControlPictures', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BJ@FMOJDMGL@CombiningMarksforSymbols@
CONST SEGMENT
??_C@_0BJ@FMOJDMGL@CombiningMarksforSymbols@ DB 'CombiningMarksforSymbols'
DB 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BD@HICCDHNL@CombiningHalfMarks@
CONST SEGMENT
??_C@_0BD@HICCDHNL@CombiningHalfMarks@ DB 'CombiningHalfMarks', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0CE@CJONMFBG@CombiningDiacriticalMarksforSym@
CONST SEGMENT
??_C@_0CE@CJONMFBG@CombiningDiacriticalMarksforSym@ DB 'CombiningDiacriti'
DB 'calMarksforSymbols', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BK@JLHHMODB@CombiningDiacriticalMarks@
CONST SEGMENT
??_C@_0BK@JLHHMODB@CombiningDiacriticalMarks@ DB 'CombiningDiacriticalMar'
DB 'ks', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_08MDFAKGKC@Cherokee@
CONST SEGMENT
??_C@_08MDFAKGKC@Cherokee@ DB 'Cherokee', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BP@OIBJBEC@CJKUnifiedIdeographsExtensionB@
CONST SEGMENT
??_C@_0BP@OIBJBEC@CJKUnifiedIdeographsExtensionB@ DB 'CJKUnifiedIdeograph'
DB 'sExtensionB', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BP@CFKMMCIB@CJKUnifiedIdeographsExtensionA@
CONST SEGMENT
??_C@_0BP@CFKMMCIB@CJKUnifiedIdeographsExtensionA@ DB 'CJKUnifiedIdeograp'
DB 'hsExtensionA', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BF@IHIIFJKH@CJKUnifiedIdeographs@
CONST SEGMENT
??_C@_0BF@IHIIFJKH@CJKUnifiedIdeographs@ DB 'CJKUnifiedIdeographs', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BJ@EFEOOODB@CJKSymbolsandPunctuation@
CONST SEGMENT
??_C@_0BJ@EFEOOODB@CJKSymbolsandPunctuation@ DB 'CJKSymbolsandPunctuation'
DB 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BG@IKBGCED@CJKRadicalsSupplement@
CONST SEGMENT
??_C@_0BG@IKBGCED@CJKRadicalsSupplement@ DB 'CJKRadicalsSupplement', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0CF@MHMLFJAF@CJKCompatibilityIdeographsSuppl@
CONST SEGMENT
??_C@_0CF@MHMLFJAF@CJKCompatibilityIdeographsSuppl@ DB 'CJKCompatibilityI'
DB 'deographsSupplement', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BL@MLINLEIB@CJKCompatibilityIdeographs@
CONST SEGMENT
??_C@_0BL@MLINLEIB@CJKCompatibilityIdeographs@ DB 'CJKCompatibilityIdeogr'
DB 'aphs', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BG@JEEDBNFG@CJKCompatibilityForms@
CONST SEGMENT
??_C@_0BG@JEEDBNFG@CJKCompatibilityForms@ DB 'CJKCompatibilityForms', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BB@HCHPCGJM@CJKCompatibility@
CONST SEGMENT
??_C@_0BB@HCHPCGJM@CJKCompatibility@ DB 'CJKCompatibility', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BI@DCACHAG@ByzantineMusicalSymbols@
CONST SEGMENT
??_C@_0BI@DCACHAG@ByzantineMusicalSymbols@ DB 'ByzantineMusicalSymbols', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_05IFJKBLGE@Buhid@
CONST SEGMENT
??_C@_05IFJKBLGE@Buhid@ DB 'Buhid', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BA@PMJEFOCM@BraillePatterns@
CONST SEGMENT
??_C@_0BA@PMJEFOCM@BraillePatterns@ DB 'BraillePatterns', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0L@BGKJOPL@BoxDrawing@
CONST SEGMENT
??_C@_0L@BGKJOPL@BoxDrawing@ DB 'BoxDrawing', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BB@CJCFBCMM@BopomofoExtended@
CONST SEGMENT
??_C@_0BB@CJCFBCMM@BopomofoExtended@ DB 'BopomofoExtended', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_08FJELILDA@Bopomofo@
CONST SEGMENT
??_C@_08FJELILDA@Bopomofo@ DB 'Bopomofo', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0O@DEJDEMI@BlockElements@
CONST SEGMENT
??_C@_0O@DEJDEMI@BlockElements@ DB 'BlockElements', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_07EHGPDBPP@Bengali@
CONST SEGMENT
??_C@_07EHGPDBPP@Bengali@ DB 'Bengali', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0L@BMEAIGCM@BasicLatin@
CONST SEGMENT
??_C@_0L@BMEAIGCM@BasicLatin@ DB 'BasicLatin', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_06HDPOPCJM@Arrows@
CONST SEGMENT
??_C@_06HDPOPCJM@Arrows@ DB 'Arrows', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_08FOHFEPKP@Armenian@
CONST SEGMENT
??_C@_08FOHFEPKP@Armenian@ DB 'Armenian', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BK@FAJJEABF@ArabicPresentationForms?9B@
CONST SEGMENT
??_C@_0BK@FAJJEABF@ArabicPresentationForms?9B@ DB 'ArabicPresentationForm'
DB 's-B', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BK@HLLEBDNG@ArabicPresentationForms?9A@
CONST SEGMENT
??_C@_0BK@HLLEBDNG@ArabicPresentationForms?9A@ DB 'ArabicPresentationForm'
DB 's-A', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_06PKKOFLDI@Arabic@
CONST SEGMENT
??_C@_06PKKOFLDI@Arabic@ DB 'Arabic', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0BM@FHILPEHD@AlphabeticPresentationForms@
CONST SEGMENT
??_C@_0BM@FHILPEHD@AlphabeticPresentationForms@ DB 'AlphabeticPresentatio'
DB 'nForms', 00H ; `string'
CONST ENDS
; COMDAT ??_C@_0O@LMKDPFLH@AegeanNumbers@
CONST SEGMENT
??_C@_0O@LMKDPFLH@AegeanNumbers@ DB 'AegeanNumbers', 00H ; `string'
CONST ENDS
CONST SEGMENT
_xmlUnicodeBlocks DD FLAT:??_C@_0O@LMKDPFLH@AegeanNumbers@
DD FLAT:_xmlUCSIsAegeanNumbers
DD FLAT:??_C@_0BM@FHILPEHD@AlphabeticPresentationForms@
DD FLAT:_xmlUCSIsAlphabeticPresentationForms
DD FLAT:??_C@_06PKKOFLDI@Arabic@
DD FLAT:_xmlUCSIsArabic
DD FLAT:??_C@_0BK@HLLEBDNG@ArabicPresentationForms?9A@
DD FLAT:_xmlUCSIsArabicPresentationFormsA
DD FLAT:??_C@_0BK@FAJJEABF@ArabicPresentationForms?9B@
DD FLAT:_xmlUCSIsArabicPresentationFormsB
DD FLAT:??_C@_08FOHFEPKP@Armenian@
DD FLAT:_xmlUCSIsArmenian
DD FLAT:??_C@_06HDPOPCJM@Arrows@
DD FLAT:_xmlUCSIsArrows
DD FLAT:??_C@_0L@BMEAIGCM@BasicLatin@
DD FLAT:_xmlUCSIsBasicLatin
DD FLAT:??_C@_07EHGPDBPP@Bengali@
DD FLAT:_xmlUCSIsBengali
DD FLAT:??_C@_0O@DEJDEMI@BlockElements@
DD FLAT:_xmlUCSIsBlockElements
DD FLAT:??_C@_08FJELILDA@Bopomofo@
DD FLAT:_xmlUCSIsBopomofo
DD FLAT:??_C@_0BB@CJCFBCMM@BopomofoExtended@
DD FLAT:_xmlUCSIsBopomofoExtended
DD FLAT:??_C@_0L@BGKJOPL@BoxDrawing@
DD FLAT:_xmlUCSIsBoxDrawing
DD FLAT:??_C@_0BA@PMJEFOCM@BraillePatterns@
DD FLAT:_xmlUCSIsBraillePatterns
DD FLAT:??_C@_05IFJKBLGE@Buhid@
DD FLAT:_xmlUCSIsBuhid
DD FLAT:??_C@_0BI@DCACHAG@ByzantineMusicalSymbols@
DD FLAT:_xmlUCSIsByzantineMusicalSymbols
DD FLAT:??_C@_0BB@HCHPCGJM@CJKCompatibility@
DD FLAT:_xmlUCSIsCJKCompatibility
DD FLAT:??_C@_0BG@JEEDBNFG@CJKCompatibilityForms@
DD FLAT:_xmlUCSIsCJKCompatibilityForms
DD FLAT:??_C@_0BL@MLINLEIB@CJKCompatibilityIdeographs@
DD FLAT:_xmlUCSIsCJKCompatibilityIdeographs
DD FLAT:??_C@_0CF@MHMLFJAF@CJKCompatibilityIdeographsSuppl@
DD FLAT:_xmlUCSIsCJKCompatibilityIdeographsSupplement
DD FLAT:??_C@_0BG@IKBGCED@CJKRadicalsSupplement@
DD FLAT:_xmlUCSIsCJKRadicalsSupplement
DD FLAT:??_C@_0BJ@EFEOOODB@CJKSymbolsandPunctuation@
DD FLAT:_xmlUCSIsCJKSymbolsandPunctuation
DD FLAT:??_C@_0BF@IHIIFJKH@CJKUnifiedIdeographs@
DD FLAT:_xmlUCSIsCJKUnifiedIdeographs
DD FLAT:??_C@_0BP@CFKMMCIB@CJKUnifiedIdeographsExtensionA@
DD FLAT:_xmlUCSIsCJKUnifiedIdeographsExtensionA
DD FLAT:??_C@_0BP@OIBJBEC@CJKUnifiedIdeographsExtensionB@
DD FLAT:_xmlUCSIsCJKUnifiedIdeographsExtensionB
DD FLAT:??_C@_08MDFAKGKC@Cherokee@
DD FLAT:_xmlUCSIsCherokee
DD FLAT:??_C@_0BK@JLHHMODB@CombiningDiacriticalMarks@
DD FLAT:_xmlUCSIsCombiningDiacriticalMarks
DD FLAT:??_C@_0CE@CJONMFBG@CombiningDiacriticalMarksforSym@
DD FLAT:_xmlUCSIsCombiningDiacriticalMarksforSymbols
DD FLAT:??_C@_0BD@HICCDHNL@CombiningHalfMarks@
DD FLAT:_xmlUCSIsCombiningHalfMarks
DD FLAT:??_C@_0BJ@FMOJDMGL@CombiningMarksforSymbols@
DD FLAT:_xmlUCSIsCombiningMarksforSymbols
DD FLAT:??_C@_0BA@NCNIOCBD@ControlPictures@
DD FLAT:_xmlUCSIsControlPictures
DD FLAT:??_C@_0BA@PHFIOGCJ@CurrencySymbols@
DD FLAT:_xmlUCSIsCurrencySymbols
DD FLAT:??_C@_0BB@GFOOOPJK@CypriotSyllabary@
DD FLAT:_xmlUCSIsCypriotSyllabary
DD FLAT:??_C@_08DNBONLIE@Cyrillic@
DD FLAT:_xmlUCSIsCyrillic
DD FLAT:??_C@_0BD@EJJGAMF@CyrillicSupplement@
DD FLAT:_xmlUCSIsCyrillicSupplement
DD FLAT:??_C@_07PGJJNFLP@Deseret@
DD FLAT:_xmlUCSIsDeseret
DD FLAT:??_C@_0L@JDMENJM@Devanagari@
DD FLAT:_xmlUCSIsDevanagari
DD FLAT:??_C@_08KMNGFEGC@Dingbats@
DD FLAT:_xmlUCSIsDingbats
DD FLAT:??_C@_0BG@DBKOIOFC@EnclosedAlphanumerics@
DD FLAT:_xmlUCSIsEnclosedAlphanumerics
DD FLAT:??_C@_0BM@CEMNPAPN@EnclosedCJKLettersandMonths@
DD FLAT:_xmlUCSIsEnclosedCJKLettersandMonths
DD FLAT:??_C@_08ELMAOGKI@Ethiopic@
DD FLAT:_xmlUCSIsEthiopic
DD FLAT:??_C@_0BD@MFMNMEDO@GeneralPunctuation@
DD FLAT:_xmlUCSIsGeneralPunctuation
DD FLAT:??_C@_0BA@PDAHJMFL@GeometricShapes@
DD FLAT:_xmlUCSIsGeometricShapes
DD FLAT:??_C@_08NPENEPGM@Georgian@
DD FLAT:_xmlUCSIsGeorgian
DD FLAT:??_C@_06OBILIHNB@Gothic@
DD FLAT:_xmlUCSIsGothic
DD FLAT:??_C@_05BLJPGLLB@Greek@
DD FLAT:_xmlUCSIsGreek
DD FLAT:??_C@_0O@BOIIGEIP@GreekExtended@
DD FLAT:_xmlUCSIsGreekExtended
DD FLAT:??_C@_0P@MEDCMKCD@GreekandCoptic@
DD FLAT:_xmlUCSIsGreekandCoptic
DD FLAT:??_C@_08EMJEOGJE@Gujarati@
DD FLAT:_xmlUCSIsGujarati
DD FLAT:??_C@_08KHMGJCCG@Gurmukhi@
DD FLAT:_xmlUCSIsGurmukhi
DD FLAT:??_C@_0BL@FHCDEOHA@HalfwidthandFullwidthForms@
DD FLAT:_xmlUCSIsHalfwidthandFullwidthForms
DD FLAT:??_C@_0BI@ICEMECJJ@HangulCompatibilityJamo@
DD FLAT:_xmlUCSIsHangulCompatibilityJamo
DD FLAT:??_C@_0L@HKIMOFFL@HangulJamo@
DD FLAT:_xmlUCSIsHangulJamo
DD FLAT:??_C@_0BA@LJNIPPJH@HangulSyllables@
DD FLAT:_xmlUCSIsHangulSyllables
DD FLAT:??_C@_07DELPMEEP@Hanunoo@
DD FLAT:_xmlUCSIsHanunoo
DD FLAT:??_C@_06EBOICPLG@Hebrew@
DD FLAT:_xmlUCSIsHebrew
DD FLAT:??_C@_0BJ@HBDKBEJH@HighPrivateUseSurrogates@
DD FLAT:_xmlUCSIsHighPrivateUseSurrogates
DD FLAT:??_C@_0P@PBBJDMBK@HighSurrogates@
DD FLAT:_xmlUCSIsHighSurrogates
DD FLAT:??_C@_08JNGAGLNE@Hiragana@
DD FLAT:_xmlUCSIsHiragana
DD FLAT:??_C@_0O@PDCBHIAB@IPAExtensions@
DD FLAT:_xmlUCSIsIPAExtensions
DD FLAT:??_C@_0CB@GLBDCFOE@IdeographicDescriptionCharacter@
DD FLAT:_xmlUCSIsIdeographicDescriptionCharacters
DD FLAT:??_C@_06PJFOMHML@Kanbun@
DD FLAT:_xmlUCSIsKanbun
DD FLAT:??_C@_0P@OEANPKJK@KangxiRadicals@
DD FLAT:_xmlUCSIsKangxiRadicals
DD FLAT:??_C@_07GHLFLHAG@Kannada@
DD FLAT:_xmlUCSIsKannada
DD FLAT:??_C@_08NBCIJEJP@Katakana@
DD FLAT:_xmlUCSIsKatakana
DD FLAT:??_C@_0BL@HDMJHNGP@KatakanaPhoneticExtensions@
DD FLAT:_xmlUCSIsKatakanaPhoneticExtensions
DD FLAT:??_C@_05BILJKFBO@Khmer@
DD FLAT:_xmlUCSIsKhmer
DD FLAT:??_C@_0N@CFBBNEIL@KhmerSymbols@
DD FLAT:_xmlUCSIsKhmerSymbols
DD FLAT:??_C@_03KEAJBBBJ@Lao@
DD FLAT:_xmlUCSIsLao
DD FLAT:??_C@_0BC@BEPAHCBP@Latin?91Supplement@
DD FLAT:_xmlUCSIsLatin1Supplement
DD FLAT:??_C@_0BA@NJFDFJMA@LatinExtended?9A@
DD FLAT:_xmlUCSIsLatinExtendedA
DD FLAT:??_C@_0BA@PCHOAKAD@LatinExtended?9B@
DD FLAT:_xmlUCSIsLatinExtendedB
DD FLAT:??_C@_0BI@IIJPGEML@LatinExtendedAdditional@
DD FLAT:_xmlUCSIsLatinExtendedAdditional
DD FLAT:??_C@_0BC@GBDPOII@LetterlikeSymbols@
DD FLAT:_xmlUCSIsLetterlikeSymbols
DD FLAT:??_C@_05HCNCDMFE@Limbu@
DD FLAT:_xmlUCSIsLimbu
DD FLAT:??_C@_0BB@PPMGIAIO@LinearBIdeograms@
DD FLAT:_xmlUCSIsLinearBIdeograms
DD FLAT:??_C@_0BB@OHEOENGH@LinearBSyllabary@
DD FLAT:_xmlUCSIsLinearBSyllabary
DD FLAT:??_C@_0O@JPELEGJF@LowSurrogates@
DD FLAT:_xmlUCSIsLowSurrogates
DD FLAT:??_C@_09PGGFICGJ@Malayalam@
DD FLAT:_xmlUCSIsMalayalam
DD FLAT:??_C@_0CA@OFLLOOBF@MathematicalAlphanumericSymbols@
DD FLAT:_xmlUCSIsMathematicalAlphanumericSymbols
DD FLAT:??_C@_0BG@PCHNGHOP@MathematicalOperators@
DD FLAT:_xmlUCSIsMathematicalOperators
DD FLAT:??_C@_0CD@GAPBPBJA@MiscellaneousMathematicalSymbol@
DD FLAT:_xmlUCSIsMiscellaneousMathematicalSymbolsA
DD FLAT:??_C@_0CD@ELNMKCFD@MiscellaneousMathematicalSymbol@
DD FLAT:_xmlUCSIsMiscellaneousMathematicalSymbolsB
DD FLAT:??_C@_0BF@GBEKAJJD@MiscellaneousSymbols@
DD FLAT:_xmlUCSIsMiscellaneousSymbols
DD FLAT:??_C@_0BO@CAMMNKDM@MiscellaneousSymbolsandArrows@
DD FLAT:_xmlUCSIsMiscellaneousSymbolsandArrows
DD FLAT:??_C@_0BH@OJJKGJKB@MiscellaneousTechnical@
DD FLAT:_xmlUCSIsMiscellaneousTechnical
DD FLAT:??_C@_09COLOONHK@Mongolian@
DD FLAT:_xmlUCSIsMongolian
DD FLAT:??_C@_0P@FMMPCFAF@MusicalSymbols@
DD FLAT:_xmlUCSIsMusicalSymbols
DD FLAT:??_C@_07CJEPOCDM@Myanmar@
DD FLAT:_xmlUCSIsMyanmar
DD FLAT:??_C@_0M@CADFPJEM@NumberForms@
DD FLAT:_xmlUCSIsNumberForms
DD FLAT:??_C@_05PMPFCGKJ@Ogham@
DD FLAT:_xmlUCSIsOgham
DD FLAT:??_C@_09GGLGKF@OldItalic@
DD FLAT:_xmlUCSIsOldItalic
DD FLAT:??_C@_0BM@MKILNNIL@OpticalCharacterRecognition@
DD FLAT:_xmlUCSIsOpticalCharacterRecognition
DD FLAT:??_C@_05FCMJOEPK@Oriya@
DD FLAT:_xmlUCSIsOriya
DD FLAT:??_C@_07FLOHPBBB@Osmanya@
DD FLAT:_xmlUCSIsOsmanya
DD FLAT:??_C@_0BD@ODJFALAH@PhoneticExtensions@
DD FLAT:_xmlUCSIsPhoneticExtensions
DD FLAT:??_C@_0L@NKMLCPLK@PrivateUse@
DD FLAT:_xmlUCSIsPrivateUse
DD FLAT:??_C@_0P@JJIJNAKP@PrivateUseArea@
DD FLAT:_xmlUCSIsPrivateUseArea
DD FLAT:??_C@_05OMGGNAOE@Runic@
DD FLAT:_xmlUCSIsRunic
DD FLAT:??_C@_07LIFCEABG@Shavian@
DD FLAT:_xmlUCSIsShavian
DD FLAT:??_C@_07HKFHHHOH@Sinhala@
DD FLAT:_xmlUCSIsSinhala
DD FLAT:??_C@_0BC@BFGADBGB@SmallFormVariants@
DD FLAT:_xmlUCSIsSmallFormVariants
DD FLAT:??_C@_0BH@DMBOKNML@SpacingModifierLetters@
DD FLAT:_xmlUCSIsSpacingModifierLetters
DD FLAT:??_C@_08PLPAIEOP@Specials@
DD FLAT:_xmlUCSIsSpecials
DD FLAT:??_C@_0BK@LMFBJMHO@SuperscriptsandSubscripts@
DD FLAT:_xmlUCSIsSuperscriptsandSubscripts
DD FLAT:??_C@_0BF@PLDLEEKL@SupplementalArrows?9A@
DD FLAT:_xmlUCSIsSupplementalArrowsA
DD FLAT:??_C@_0BF@NABGBHGI@SupplementalArrows?9B@
DD FLAT:_xmlUCSIsSupplementalArrowsB
DD FLAT:??_C@_0CC@MPJJEAJL@SupplementalMathematicalOperato@
DD FLAT:_xmlUCSIsSupplementalMathematicalOperators
DD FLAT:??_C@_0BO@FKALLKGE@SupplementaryPrivateUseArea?9A@
DD FLAT:_xmlUCSIsSupplementaryPrivateUseAreaA
DD FLAT:??_C@_0BO@HBCGOJKH@SupplementaryPrivateUseArea?9B@
DD FLAT:_xmlUCSIsSupplementaryPrivateUseAreaB
DD FLAT:??_C@_06JOHKBNPH@Syriac@
DD FLAT:_xmlUCSIsSyriac
DD FLAT:??_C@_07MPBEMCCC@Tagalog@
DD FLAT:_xmlUCSIsTagalog
DD FLAT:??_C@_08HDNHHNMK@Tagbanwa@
DD FLAT:_xmlUCSIsTagbanwa
DD FLAT:??_C@_04DOFOAGBP@Tags@
DD FLAT:_xmlUCSIsTags
DD FLAT:??_C@_05FKFEBJIP@TaiLe@
DD FLAT:_xmlUCSIsTaiLe
DD FLAT:??_C@_0BD@DGPDEDFN@TaiXuanJingSymbols@
DD FLAT:_xmlUCSIsTaiXuanJingSymbols
DD FLAT:??_C@_05DKHCLBJK@Tamil@
DD FLAT:_xmlUCSIsTamil
DD FLAT:??_C@_06PCMDOJDI@Telugu@
DD FLAT:_xmlUCSIsTelugu
DD FLAT:??_C@_06EIMJBCEF@Thaana@
DD FLAT:_xmlUCSIsThaana
DD FLAT:??_C@_04PHPGMPPM@Thai@
DD FLAT:_xmlUCSIsThai
DD FLAT:??_C@_07BHEHFCAF@Tibetan@
DD FLAT:_xmlUCSIsTibetan
DD FLAT:??_C@_08OJJPEHGN@Ugaritic@
DD FLAT:_xmlUCSIsUgaritic
DD FLAT:??_C@_0CD@ONMKCCHG@UnifiedCanadianAboriginalSyllab@
DD FLAT:_xmlUCSIsUnifiedCanadianAboriginalSyllabics
DD FLAT:??_C@_0BD@MLEDBAOK@VariationSelectors@
DD FLAT:_xmlUCSIsVariationSelectors
DD FLAT:??_C@_0BN@DIKICAGH@VariationSelectorsSupplement@
DD FLAT:_xmlUCSIsVariationSelectorsSupplement
DD FLAT:??_C@_0L@LCEJPIDD@YiRadicals@
DD FLAT:_xmlUCSIsYiRadicals
DD FLAT:??_C@_0M@NALELJIH@YiSyllables@
DD FLAT:_xmlUCSIsYiSyllables
DD FLAT:??_C@_0BG@LPBLNMOL@YijingHexagramSymbols@
DD FLAT:_xmlUCSIsYijingHexagramSymbols
_xmlCS DW 00H
DW 01fH
DW 07fH
DW 09fH
DW 0adH
DW 0adH
DW 0600H
DW 0603H
DW 06ddH
DW 06ddH
DW 070fH
DW 070fH
DW 017b4H
DW 017b5H
DW 0200bH
DW 0200fH
DW 0202aH
DW 0202eH
DW 02060H
DW 02063H
DW 0206aH
DW 0206fH
DW 0d800H
DW 0d800H
DW 0db7fH
DW 0db80H
DW 0dbffH
DW 0dc00H
DW 0dfffH
DW 0e000H
DW 0f8ffH
DW 0f8ffH
DW 0feffH
DW 0feffH
DW 0fff9H
DW 0fffbH
_xmlCL DD 01d173H
DD 01d17aH
DD 0e0001H
DD 0e0001H
DD 0e0020H
DD 0e007fH
DD 0f0000H
DD 0f0000H
DD 0ffffdH
DD 0ffffdH
DD 0100000H
DD 0100000H
DD 010fffdH
DD 010fffdH
_xmlCfS DW 0adH
DW 0adH
DW 0600H
DW 0603H
DW 06ddH
DW 06ddH
DW 070fH
DW 070fH
DW 017b4H
DW 017b5H
DW 0200bH
DW 0200fH
DW 0202aH
DW 0202eH
DW 02060H
DW 02063H
DW 0206aH
DW 0206fH
DW 0feffH
DW 0feffH
DW 0fff9H
DW 0fffbH
_xmlCfL DD 01d173H
DD 01d17aH
DD 0e0001H
DD 0e0001H
DD 0e0020H
DD 0e007fH
_xmlPdS DW 02dH
DW 02dH
DW 058aH
DW 058aH
DW 01806H
DW 01806H
DW 02010H
DW 02015H
DW 0301cH
DW 0301cH
DW 03030H
DW 03030H
DW 030a0H
DW 030a0H
DW 0fe31H
DW 0fe32H
DW 0fe58H
DW 0fe58H
DW 0fe63H
DW 0fe63H
DW 0ff0dH
DW 0ff0dH
_xmlLS DW 041H
DW 05aH
DW 061H
DW 07aH
DW 0aaH
DW 0aaH
DW 0b5H
DW 0b5H
DW 0baH
DW 0baH
DW 0c0H
DW 0d6H
DW 0d8H
DW 0f6H
DW 0f8H
DW 0236H
DW 0250H
DW 02c1H
DW 02c6H
DW 02d1H
DW 02e0H
DW 02e4H
DW 02eeH
DW 02eeH
DW 037aH
DW 037aH
DW 0386H
DW 0386H
DW 0388H
DW 038aH
DW 038cH
DW 038cH
DW 038eH
DW 03a1H
DW 03a3H
DW 03ceH
DW 03d0H
DW 03f5H
DW 03f7H
DW 03fbH
DW 0400H
DW 0481H
DW 048aH
DW 04ceH
DW 04d0H
DW 04f5H
DW 04f8H
DW 04f9H
DW 0500H
DW 050fH
DW 0531H
DW 0556H
DW 0559H
DW 0559H
DW 0561H
DW 0587H
DW 05d0H
DW 05eaH
DW 05f0H
DW 05f2H
DW 0621H
DW 063aH
DW 0640H
DW 064aH
DW 066eH
DW 066fH
DW 0671H
DW 06d3H
DW 06d5H
DW 06d5H
DW 06e5H
DW 06e6H
DW 06eeH
DW 06efH
DW 06faH
DW 06fcH
DW 06ffH
DW 06ffH
DW 0710H
DW 0710H
DW 0712H
DW 072fH
DW 074dH
DW 074fH
DW 0780H
DW 07a5H
DW 07b1H
DW 07b1H
DW 0904H
DW 0939H
DW 093dH
DW 093dH
DW 0950H
DW 0950H
DW 0958H
DW 0961H
DW 0985H
DW 098cH
DW 098fH
DW 0990H
DW 0993H
DW 09a8H
DW 09aaH
DW 09b0H
DW 09b2H
DW 09b2H
DW 09b6H
DW 09b9H
DW 09bdH
DW 09bdH
DW 09dcH
DW 09ddH
DW 09dfH
DW 09e1H
DW 09f0H
DW 09f1H
DW 0a05H
DW 0a0aH
DW 0a0fH
DW 0a10H
DW 0a13H
DW 0a28H
DW 0a2aH
DW 0a30H
DW 0a32H
DW 0a33H
DW 0a35H
DW 0a36H
DW 0a38H
DW 0a39H
DW 0a59H
DW 0a5cH
DW 0a5eH
DW 0a5eH
DW 0a72H
DW 0a74H
DW 0a85H
DW 0a8dH
DW 0a8fH
DW 0a91H
DW 0a93H
DW 0aa8H
DW 0aaaH
DW 0ab0H
DW 0ab2H
DW 0ab3H
DW 0ab5H
DW 0ab9H
DW 0abdH
DW 0abdH
DW 0ad0H
DW 0ad0H
DW 0ae0H
DW 0ae1H
DW 0b05H
DW 0b0cH
DW 0b0fH
DW 0b10H
DW 0b13H
DW 0b28H
DW 0b2aH
DW 0b30H
DW 0b32H
DW 0b33H
DW 0b35H
DW 0b39H
DW 0b3dH
DW 0b3dH
DW 0b5cH
DW 0b5dH
DW 0b5fH
DW 0b61H
DW 0b71H
DW 0b71H
DW 0b83H
DW 0b83H
DW 0b85H
DW 0b8aH
DW 0b8eH
DW 0b90H
DW 0b92H
DW 0b95H
DW 0b99H
DW 0b9aH
DW 0b9cH
DW 0b9cH
DW 0b9eH
DW 0b9fH
DW 0ba3H
DW 0ba4H
DW 0ba8H
DW 0baaH
DW 0baeH
DW 0bb5H
DW 0bb7H
DW 0bb9H
DW 0c05H
DW 0c0cH
DW 0c0eH
DW 0c10H
DW 0c12H
DW 0c28H
DW 0c2aH
DW 0c33H
DW 0c35H
DW 0c39H
DW 0c60H
DW 0c61H
DW 0c85H
DW 0c8cH
DW 0c8eH
DW 0c90H
DW 0c92H
DW 0ca8H
DW 0caaH
DW 0cb3H
DW 0cb5H
DW 0cb9H
DW 0cbdH
DW 0cbdH
DW 0cdeH
DW 0cdeH
DW 0ce0H
DW 0ce1H
DW 0d05H
DW 0d0cH
DW 0d0eH
DW 0d10H
DW 0d12H
DW 0d28H
DW 0d2aH
DW 0d39H
DW 0d60H
DW 0d61H
DW 0d85H
DW 0d96H
DW 0d9aH
DW 0db1H
DW 0db3H
DW 0dbbH
DW 0dbdH
DW 0dbdH
DW 0dc0H
DW 0dc6H
DW 0e01H
DW 0e30H
DW 0e32H
DW 0e33H
DW 0e40H
DW 0e46H
DW 0e81H
DW 0e82H
DW 0e84H
DW 0e84H
DW 0e87H
DW 0e88H
DW 0e8aH
DW 0e8aH
DW 0e8dH
DW 0e8dH
DW 0e94H
DW 0e97H
DW 0e99H
DW 0e9fH
DW 0ea1H
DW 0ea3H
DW 0ea5H
DW 0ea5H
DW 0ea7H
DW 0ea7H
DW 0eaaH
DW 0eabH
DW 0eadH
DW 0eb0H
DW 0eb2H
DW 0eb3H
DW 0ebdH
DW 0ebdH
DW 0ec0H
DW 0ec4H
DW 0ec6H
DW 0ec6H
DW 0edcH
DW 0eddH
DW 0f00H
DW 0f00H
DW 0f40H
DW 0f47H
DW 0f49H
DW 0f6aH
DW 0f88H
DW 0f8bH
DW 01000H
DW 01021H
DW 01023H
DW 01027H
DW 01029H
DW 0102aH
DW 01050H
DW 01055H
DW 010a0H
DW 010c5H
DW 010d0H
DW 010f8H
DW 01100H
DW 01159H
DW 0115fH
DW 011a2H
DW 011a8H
DW 011f9H
DW 01200H
DW 01206H
DW 01208H
DW 01246H
DW 01248H
DW 01248H
DW 0124aH
DW 0124dH
DW 01250H
DW 01256H
DW 01258H
DW 01258H
DW 0125aH
DW 0125dH
DW 01260H
DW 01286H
DW 01288H
DW 01288H
DW 0128aH
DW 0128dH
DW 01290H
DW 012aeH
DW 012b0H
DW 012b0H
DW 012b2H
DW 012b5H
DW 012b8H
DW 012beH
DW 012c0H
DW 012c0H
DW 012c2H
DW 012c5H
DW 012c8H
DW 012ceH
DW 012d0H
DW 012d6H
DW 012d8H
DW 012eeH
DW 012f0H
DW 0130eH
DW 01310H
DW 01310H
DW 01312H
DW 01315H
DW 01318H
DW 0131eH
DW 01320H
DW 01346H
DW 01348H
DW 0135aH
DW 013a0H
DW 013f4H
DW 01401H
DW 0166cH
DW 0166fH
DW 01676H
DW 01681H
DW 0169aH
DW 016a0H
DW 016eaH
DW 01700H
DW 0170cH
DW 0170eH
DW 01711H
DW 01720H
DW 01731H
DW 01740H
DW 01751H
DW 01760H
DW 0176cH
DW 0176eH
DW 01770H
DW 01780H
DW 017b3H
DW 017d7H
DW 017d7H
DW 017dcH
DW 017dcH
DW 01820H
DW 01877H
DW 01880H
DW 018a8H
DW 01900H
DW 0191cH
DW 01950H
DW 0196dH
DW 01970H
DW 01974H
DW 01d00H
DW 01d6bH
DW 01e00H
DW 01e9bH
DW 01ea0H
DW 01ef9H
DW 01f00H
DW 01f15H
DW 01f18H
DW 01f1dH
DW 01f20H
DW 01f45H
DW 01f48H
DW 01f4dH
DW 01f50H
DW 01f57H
DW 01f59H
DW 01f59H
DW 01f5bH
DW 01f5bH
DW 01f5dH
DW 01f5dH
DW 01f5fH
DW 01f7dH
DW 01f80H
DW 01fb4H
DW 01fb6H
DW 01fbcH
DW 01fbeH
DW 01fbeH
DW 01fc2H
DW 01fc4H
DW 01fc6H
DW 01fccH
DW 01fd0H
DW 01fd3H
DW 01fd6H
DW 01fdbH
DW 01fe0H
DW 01fecH
DW 01ff2H
DW 01ff4H
DW 01ff6H
DW 01ffcH
DW 02071H
DW 02071H
DW 0207fH
DW 0207fH
DW 02102H
DW 02102H
DW 02107H
DW 02107H
DW 0210aH
DW 02113H
DW 02115H
DW 02115H
DW 02119H
DW 0211dH
DW 02124H
DW 02124H
DW 02126H
DW 02126H
DW 02128H
DW 02128H
DW 0212aH
DW 0212dH
DW 0212fH
DW 02131H
DW 02133H
DW 02139H
DW 0213dH
DW 0213fH
DW 02145H
DW 02149H
DW 03005H
DW 03006H
DW 03031H
DW 03035H
DW 0303bH
DW 0303cH
DW 03041H
DW 03096H
DW 0309dH
DW 0309fH
DW 030a1H
DW 030faH
DW 030fcH
DW 030ffH
DW 03105H
DW 0312cH
DW 03131H
DW 0318eH
DW 031a0H
DW 031b7H
DW 031f0H
DW 031ffH
DW 03400H
DW 03400H
DW 04db5H
DW 04db5H
DW 04e00H
DW 04e00H
DW 09fa5H
DW 09fa5H
DW 0a000H
DW 0a48cH
DW 0ac00H
DW 0ac00H
DW 0d7a3H
DW 0d7a3H
DW 0f900H
DW 0fa2dH
DW 0fa30H
DW 0fa6aH
DW 0fb00H
DW 0fb06H
DW 0fb13H
DW 0fb17H
DW 0fb1dH
DW 0fb1dH
DW 0fb1fH
DW 0fb28H
DW 0fb2aH
DW 0fb36H
DW 0fb38H
DW 0fb3cH
DW 0fb3eH
DW 0fb3eH
DW 0fb40H
DW 0fb41H
DW 0fb43H
DW 0fb44H
DW 0fb46H
DW 0fbb1H
DW 0fbd3H
DW 0fd3dH
DW 0fd50H
DW 0fd8fH
DW 0fd92H
DW 0fdc7H
DW 0fdf0H
DW 0fdfbH
DW 0fe70H
DW 0fe74H
DW 0fe76H
DW 0fefcH
DW 0ff21H
DW 0ff3aH
DW 0ff41H
DW 0ff5aH
DW 0ff66H
DW 0ffbeH
DW 0ffc2H
DW 0ffc7H
DW 0ffcaH
DW 0ffcfH
DW 0ffd2H
DW 0ffd7H
DW 0ffdaH
DW 0ffdcH
_xmlScS DW 024H
DW 024H
DW 0a2H
DW 0a5H
DW 09f2H
DW 09f3H
DW 0af1H
DW 0af1H
DW 0bf9H
DW 0bf9H
DW 0e3fH
DW 0e3fH
DW 017dbH
DW 017dbH
DW 020a0H
DW 020b1H
DW 0fdfcH
DW 0fdfcH
DW 0fe69H
DW 0fe69H
DW 0ff04H
DW 0ff04H
DW 0ffe0H
DW 0ffe1H
DW 0ffe5H
DW 0ffe6H
_xmlLL DD 010000H
DD 01000bH
DD 01000dH
DD 010026H
DD 010028H
DD 01003aH
DD 01003cH
DD 01003dH
DD 01003fH
DD 01004dH
DD 010050H
DD 01005dH
DD 010080H
DD 0100faH
DD 010300H
DD 01031eH
DD 010330H
DD 010349H
DD 010380H
DD 01039dH
DD 010400H
DD 01049dH
DD 010800H
DD 010805H
DD 010808H
DD 010808H
DD 01080aH
DD 010835H
DD 010837H
DD 010838H
DD 01083cH
DD 01083cH
DD 01083fH
DD 01083fH
DD 01d400H
DD 01d454H
DD 01d456H
DD 01d49cH
DD 01d49eH
DD 01d49fH
DD 01d4a2H
DD 01d4a2H
DD 01d4a5H
DD 01d4a6H
DD 01d4a9H
DD 01d4acH
DD 01d4aeH
DD 01d4b9H
DD 01d4bbH
DD 01d4bbH
DD 01d4bdH
DD 01d4c3H
DD 01d4c5H
DD 01d505H
DD 01d507H
DD 01d50aH
DD 01d50dH
DD 01d514H
DD 01d516H
DD 01d51cH
DD 01d51eH
DD 01d539H
DD 01d53bH
DD 01d53eH
DD 01d540H
DD 01d544H
DD 01d546H
DD 01d546H
DD 01d54aH
DD 01d550H
DD 01d552H
DD 01d6a3H
DD 01d6a8H
DD 01d6c0H
DD 01d6c2H
DD 01d6daH
DD 01d6dcH
DD 01d6faH
DD 01d6fcH
DD 01d714H
DD 01d716H
DD 01d734H
DD 01d736H
DD 01d74eH
DD 01d750H
DD 01d76eH
DD 01d770H
DD 01d788H
DD 01d78aH
DD 01d7a8H
DD 01d7aaH
DD 01d7c2H
DD 01d7c4H
DD 01d7c9H
DD 020000H
DD 020000H
DD 02a6d6H
DD 02a6d6H
DD 02f800H
DD 02fa1dH
_xmlLlS DW 061H
DW 07aH
DW 0aaH
DW 0aaH
DW 0b5H
DW 0b5H
DW 0baH
DW 0baH
DW 0dfH
DW 0f6H
DW 0f8H
DW 0ffH
DW 0101H
DW 0101H
DW 0103H
DW 0103H
DW 0105H
DW 0105H
DW 0107H
DW 0107H
DW 0109H
DW 0109H
DW 010bH
DW 010bH
DW 010dH
DW 010dH
DW 010fH
DW 010fH
DW 0111H
DW 0111H
DW 0113H
DW 0113H
DW 0115H
DW 0115H
DW 0117H
DW 0117H
DW 0119H
DW 0119H
DW 011bH
DW 011bH
DW 011dH
DW 011dH
DW 011fH
DW 011fH
DW 0121H
DW 0121H
DW 0123H
DW 0123H
DW 0125H
DW 0125H
DW 0127H
DW 0127H
DW 0129H
DW 0129H
DW 012bH
DW 012bH
DW 012dH
DW 012dH
DW 012fH
DW 012fH
DW 0131H
DW 0131H
DW 0133H
DW 0133H
DW 0135H
DW 0135H
DW 0137H
DW 0138H
DW 013aH
DW 013aH
DW 013cH
DW 013cH
DW 013eH
DW 013eH
DW 0140H
DW 0140H
DW 0142H
DW 0142H
DW 0144H
DW 0144H
DW 0146H
DW 0146H
DW 0148H
DW 0149H
DW 014bH
DW 014bH
DW 014dH
DW 014dH
DW 014fH
DW 014fH
DW 0151H
DW 0151H
DW 0153H
DW 0153H
DW 0155H
DW 0155H
DW 0157H
DW 0157H
DW 0159H
DW 0159H
DW 015bH
DW 015bH
DW 015dH
DW 015dH
DW 015fH
DW 015fH
DW 0161H
DW 0161H
DW 0163H
DW 0163H
DW 0165H
DW 0165H
DW 0167H
DW 0167H
DW 0169H
DW 0169H
DW 016bH
DW 016bH
DW 016dH
DW 016dH
DW 016fH
DW 016fH
DW 0171H
DW 0171H
DW 0173H
DW 0173H
DW 0175H
DW 0175H
DW 0177H
DW 0177H
DW 017aH
DW 017aH
DW 017cH
DW 017cH
DW 017eH
DW 0180H
DW 0183H
DW 0183H
DW 0185H
DW 0185H
DW 0188H
DW 0188H
DW 018cH
DW 018dH
DW 0192H
DW 0192H
DW 0195H
DW 0195H
DW 0199H
DW 019bH
DW 019eH
DW 019eH
DW 01a1H
DW 01a1H
DW 01a3H
DW 01a3H
DW 01a5H
DW 01a5H
DW 01a8H
DW 01a8H
DW 01aaH
DW 01abH
DW 01adH
DW 01adH
DW 01b0H
DW 01b0H
DW 01b4H
DW 01b4H
DW 01b6H
DW 01b6H
DW 01b9H
DW 01baH
DW 01bdH
DW 01bfH
DW 01c6H
DW 01c6H
DW 01c9H
DW 01c9H
DW 01ccH
DW 01ccH
DW 01ceH
DW 01ceH
DW 01d0H
DW 01d0H
DW 01d2H
DW 01d2H
DW 01d4H
DW 01d4H
DW 01d6H
DW 01d6H
DW 01d8H
DW 01d8H
DW 01daH
DW 01daH
DW 01dcH
DW 01ddH
DW 01dfH
DW 01dfH
DW 01e1H
DW 01e1H
DW 01e3H
DW 01e3H
DW 01e5H
DW 01e5H
DW 01e7H
DW 01e7H
DW 01e9H
DW 01e9H
DW 01ebH
DW 01ebH
DW 01edH
DW 01edH
DW 01efH
DW 01f0H
DW 01f3H
DW 01f3H
DW 01f5H
DW 01f5H
DW 01f9H
DW 01f9H
DW 01fbH
DW 01fbH
DW 01fdH
DW 01fdH
DW 01ffH
DW 01ffH
DW 0201H
DW 0201H
DW 0203H
DW 0203H
DW 0205H
DW 0205H
DW 0207H
DW 0207H
DW 0209H
DW 0209H
DW 020bH
DW 020bH
DW 020dH
DW 020dH
DW 020fH
DW 020fH
DW 0211H
DW 0211H
DW 0213H
DW 0213H
DW 0215H
DW 0215H
DW 0217H
DW 0217H
DW 0219H
DW 0219H
DW 021bH
DW 021bH
DW 021dH
DW 021dH
DW 021fH
DW 021fH
DW 0221H
DW 0221H
DW 0223H
DW 0223H
DW 0225H
DW 0225H
DW 0227H
DW 0227H
DW 0229H
DW 0229H
DW 022bH
DW 022bH
DW 022dH
DW 022dH
DW 022fH
DW 022fH
DW 0231H
DW 0231H
DW 0233H
DW 0236H
DW 0250H
DW 02afH
DW 0390H
DW 0390H
DW 03acH
DW 03ceH
DW 03d0H
DW 03d1H
DW 03d5H
DW 03d7H
DW 03d9H
DW 03d9H
DW 03dbH
DW 03dbH
DW 03ddH
DW 03ddH
DW 03dfH
DW 03dfH
DW 03e1H
DW 03e1H
DW 03e3H
DW 03e3H
DW 03e5H
DW 03e5H
DW 03e7H
DW 03e7H
DW 03e9H
DW 03e9H
DW 03ebH
DW 03ebH
DW 03edH
DW 03edH
DW 03efH
DW 03f3H
DW 03f5H
DW 03f5H
DW 03f8H
DW 03f8H
DW 03fbH
DW 03fbH
DW 0430H
DW 045fH
DW 0461H
DW 0461H
DW 0463H
DW 0463H
DW 0465H
DW 0465H
DW 0467H
DW 0467H
DW 0469H
DW 0469H
DW 046bH
DW 046bH
DW 046dH
DW 046dH
DW 046fH
DW 046fH
DW 0471H
DW 0471H
DW 0473H
DW 0473H
DW 0475H
DW 0475H
DW 0477H
DW 0477H
DW 0479H
DW 0479H
DW 047bH
DW 047bH
DW 047dH
DW 047dH
DW 047fH
DW 047fH
DW 0481H
DW 0481H
DW 048bH
DW 048bH
DW 048dH
DW 048dH
DW 048fH
DW 048fH
DW 0491H
DW 0491H
DW 0493H
DW 0493H
DW 0495H
DW 0495H
DW 0497H
DW 0497H
DW 0499H
DW 0499H
DW 049bH
DW 049bH
DW 049dH
DW 049dH
DW 049fH
DW 049fH
DW 04a1H
DW 04a1H
DW 04a3H
DW 04a3H
DW 04a5H
DW 04a5H
DW 04a7H
DW 04a7H
DW 04a9H
DW 04a9H
DW 04abH
DW 04abH
DW 04adH
DW 04adH
DW 04afH
DW 04afH
DW 04b1H
DW 04b1H
DW 04b3H
DW 04b3H
DW 04b5H
DW 04b5H
DW 04b7H
DW 04b7H
DW 04b9H
DW 04b9H
DW 04bbH
DW 04bbH
DW 04bdH
DW 04bdH
DW 04bfH
DW 04bfH
DW 04c2H
DW 04c2H
DW 04c4H
DW 04c4H
DW 04c6H
DW 04c6H
DW 04c8H
DW 04c8H
DW 04caH
DW 04caH
DW 04ccH
DW 04ccH
DW 04ceH
DW 04ceH
DW 04d1H
DW 04d1H
DW 04d3H
DW 04d3H
DW 04d5H
DW 04d5H
DW 04d7H
DW 04d7H
DW 04d9H
DW 04d9H
DW 04dbH
DW 04dbH
DW 04ddH
DW 04ddH
DW 04dfH
DW 04dfH
DW 04e1H
DW 04e1H
DW 04e3H
DW 04e3H
DW 04e5H
DW 04e5H
DW 04e7H
DW 04e7H
DW 04e9H
DW 04e9H
DW 04ebH
DW 04ebH
DW 04edH
DW 04edH
DW 04efH
DW 04efH
DW 04f1H
DW 04f1H
DW 04f3H
DW 04f3H
DW 04f5H
DW 04f5H
DW 04f9H
DW 04f9H
DW 0501H
DW 0501H
DW 0503H
DW 0503H
DW 0505H
DW 0505H
DW 0507H
DW 0507H
DW 0509H
DW 0509H
DW 050bH
DW 050bH
DW 050dH
DW 050dH
DW 050fH
DW 050fH
DW 0561H
DW 0587H
DW 01d00H
DW 01d2bH
DW 01d62H
DW 01d6bH
DW 01e01H
DW 01e01H
DW 01e03H
DW 01e03H
DW 01e05H
DW 01e05H
DW 01e07H
DW 01e07H
DW 01e09H
DW 01e09H
DW 01e0bH
DW 01e0bH
DW 01e0dH
DW 01e0dH
DW 01e0fH
DW 01e0fH
DW 01e11H
DW 01e11H
DW 01e13H
DW 01e13H
DW 01e15H
DW 01e15H
DW 01e17H
DW 01e17H
DW 01e19H
DW 01e19H
DW 01e1bH
DW 01e1bH
DW 01e1dH
DW 01e1dH
DW 01e1fH
DW 01e1fH
DW 01e21H
DW 01e21H
DW 01e23H
DW 01e23H
DW 01e25H
DW 01e25H
DW 01e27H
DW 01e27H
DW 01e29H
DW 01e29H
DW 01e2bH
DW 01e2bH
DW 01e2dH
DW 01e2dH
DW 01e2fH
DW 01e2fH
DW 01e31H
DW 01e31H
DW 01e33H
DW 01e33H
DW 01e35H
DW 01e35H
DW 01e37H
DW 01e37H
DW 01e39H
DW 01e39H
DW 01e3bH
DW 01e3bH
DW 01e3dH
DW 01e3dH
DW 01e3fH
DW 01e3fH
DW 01e41H
DW 01e41H
DW 01e43H
DW 01e43H
DW 01e45H
DW 01e45H
DW 01e47H
DW 01e47H
DW 01e49H
DW 01e49H
DW 01e4bH
DW 01e4bH
DW 01e4dH
DW 01e4dH
DW 01e4fH
DW 01e4fH
DW 01e51H
DW 01e51H
DW 01e53H
DW 01e53H
DW 01e55H
DW 01e55H
DW 01e57H
DW 01e57H
DW 01e59H
DW 01e59H
DW 01e5bH
DW 01e5bH
DW 01e5dH
DW 01e5dH
DW 01e5fH
DW 01e5fH
DW 01e61H
DW 01e61H
DW 01e63H
DW 01e63H
DW 01e65H
DW 01e65H
DW 01e67H
DW 01e67H
DW 01e69H
DW 01e69H
DW 01e6bH
DW 01e6bH
DW 01e6dH
DW 01e6dH
DW 01e6fH
DW 01e6fH
DW 01e71H
DW 01e71H
DW 01e73H
DW 01e73H
DW 01e75H
DW 01e75H
DW 01e77H
DW 01e77H
DW 01e79H
DW 01e79H
DW 01e7bH
DW 01e7bH
DW 01e7dH
DW 01e7dH
DW 01e7fH
DW 01e7fH
DW 01e81H
DW 01e81H
DW 01e83H
DW 01e83H
DW 01e85H
DW 01e85H
DW 01e87H
DW 01e87H
DW 01e89H
DW 01e89H
DW 01e8bH
DW 01e8bH
DW 01e8dH
DW 01e8dH
DW 01e8fH
DW 01e8fH
DW 01e91H
DW 01e91H
DW 01e93H
DW 01e93H
DW 01e95H
DW 01e9bH
DW 01ea1H
DW 01ea1H
DW 01ea3H
DW 01ea3H
DW 01ea5H
DW 01ea5H
DW 01ea7H
DW 01ea7H
DW 01ea9H
DW 01ea9H
DW 01eabH
DW 01eabH
DW 01eadH
DW 01eadH
DW 01eafH
DW 01eafH
DW 01eb1H
DW 01eb1H
DW 01eb3H
DW 01eb3H
DW 01eb5H
DW 01eb5H
DW 01eb7H
DW 01eb7H
DW 01eb9H
DW 01eb9H
DW 01ebbH
DW 01ebbH
DW 01ebdH
DW 01ebdH
DW 01ebfH
DW 01ebfH
DW 01ec1H
DW 01ec1H
DW 01ec3H
DW 01ec3H
DW 01ec5H
DW 01ec5H
DW 01ec7H
DW 01ec7H
DW 01ec9H
DW 01ec9H
DW 01ecbH
DW 01ecbH
DW 01ecdH
DW 01ecdH
DW 01ecfH
DW 01ecfH
DW 01ed1H
DW 01ed1H
DW 01ed3H
DW 01ed3H
DW 01ed5H
DW 01ed5H
DW 01ed7H
DW 01ed7H
DW 01ed9H
DW 01ed9H
DW 01edbH
DW 01edbH
DW 01eddH
DW 01eddH
DW 01edfH
DW 01edfH
DW 01ee1H
DW 01ee1H
DW 01ee3H
DW 01ee3H
DW 01ee5H
DW 01ee5H
DW 01ee7H
DW 01ee7H
DW 01ee9H
DW 01ee9H
DW 01eebH
DW 01eebH
DW 01eedH
DW 01eedH
DW 01eefH
DW 01eefH
DW 01ef1H
DW 01ef1H
DW 01ef3H
DW 01ef3H
DW 01ef5H
DW 01ef5H
DW 01ef7H
DW 01ef7H
DW 01ef9H
DW 01ef9H
DW 01f00H
DW 01f07H
DW 01f10H
DW 01f15H
DW 01f20H
DW 01f27H
DW 01f30H
DW 01f37H
DW 01f40H
DW 01f45H
DW 01f50H
DW 01f57H
DW 01f60H
DW 01f67H
DW 01f70H
DW 01f7dH
DW 01f80H
DW 01f87H
DW 01f90H
DW 01f97H
DW 01fa0H
DW 01fa7H
DW 01fb0H
DW 01fb4H
DW 01fb6H
DW 01fb7H
DW 01fbeH
DW 01fbeH
DW 01fc2H
DW 01fc4H
DW 01fc6H
DW 01fc7H
DW 01fd0H
DW 01fd3H
DW 01fd6H
DW 01fd7H
DW 01fe0H
DW 01fe7H
DW 01ff2H
DW 01ff4H
DW 01ff6H
DW 01ff7H
DW 02071H
DW 02071H
DW 0207fH
DW 0207fH
DW 0210aH
DW 0210aH
DW 0210eH
DW 0210fH
DW 02113H
DW 02113H
DW 0212fH
DW 0212fH
DW 02134H
DW 02134H
DW 02139H
DW 02139H
DW 0213dH
DW 0213dH
DW 02146H
DW 02149H
DW 0fb00H
DW 0fb06H
DW 0fb13H
DW 0fb17H
DW 0ff41H
DW 0ff5aH
_xmlLlL DD 010428H
DD 01044fH
DD 01d41aH
DD 01d433H
DD 01d44eH
DD 01d454H
DD 01d456H
DD 01d467H
DD 01d482H
DD 01d49bH
DD 01d4b6H
DD 01d4b9H
DD 01d4bbH
DD 01d4bbH
DD 01d4bdH
DD 01d4c3H
DD 01d4c5H
DD 01d4cfH
DD 01d4eaH
DD 01d503H
DD 01d51eH
DD 01d537H
DD 01d552H
DD 01d56bH
DD 01d586H
DD 01d59fH
DD 01d5baH
DD 01d5d3H
DD 01d5eeH
DD 01d607H
DD 01d622H
DD 01d63bH
DD 01d656H
DD 01d66fH
DD 01d68aH
DD 01d6a3H
DD 01d6c2H
DD 01d6daH
DD 01d6dcH
DD 01d6e1H
DD 01d6fcH
DD 01d714H
DD 01d716H
DD 01d71bH
DD 01d736H
DD 01d74eH
DD 01d750H
DD 01d755H
DD 01d770H
DD 01d788H
DD 01d78aH
DD 01d78fH
DD 01d7aaH
DD 01d7c2H
DD 01d7c4H
DD 01d7c9H
_xmlLmS DW 02b0H
DW 02c1H
DW 02c6H
DW 02d1H
DW 02e0H
DW 02e4H
DW 02eeH
DW 02eeH
DW 037aH
DW 037aH
DW 0559H
DW 0559H
DW 0640H
DW 0640H
DW 06e5H
DW 06e6H
DW 0e46H
DW 0e46H
DW 0ec6H
DW 0ec6H
DW 017d7H
DW 017d7H
DW 01843H
DW 01843H
DW 01d2cH
DW 01d61H
DW 03005H
DW 03005H
DW 03031H
DW 03035H
DW 0303bH
DW 0303bH
DW 0309dH
DW 0309eH
DW 030fcH
DW 030feH
DW 0ff70H
DW 0ff70H
DW 0ff9eH
DW 0ff9fH
_xmlLoS DW 01bbH
DW 01bbH
DW 01c0H
DW 01c3H
DW 05d0H
DW 05eaH
DW 05f0H
DW 05f2H
DW 0621H
DW 063aH
DW 0641H
DW 064aH
DW 066eH
DW 066fH
DW 0671H
DW 06d3H
DW 06d5H
DW 06d5H
DW 06eeH
DW 06efH
DW 06faH
DW 06fcH
DW 06ffH
DW 06ffH
DW 0710H
DW 0710H
DW 0712H
DW 072fH
DW 074dH
DW 074fH
DW 0780H
DW 07a5H
DW 07b1H
DW 07b1H
DW 0904H
DW 0939H
DW 093dH
DW 093dH
DW 0950H
DW 0950H
DW 0958H
DW 0961H
DW 0985H
DW 098cH
DW 098fH
DW 0990H
DW 0993H
DW 09a8H
DW 09aaH
DW 09b0H
DW 09b2H
DW 09b2H
DW 09b6H
DW 09b9H
DW 09bdH
DW 09bdH
DW 09dcH
DW 09ddH
DW 09dfH
DW 09e1H
DW 09f0H
DW 09f1H
DW 0a05H
DW 0a0aH
DW 0a0fH
DW 0a10H
DW 0a13H
DW 0a28H
DW 0a2aH
DW 0a30H
DW 0a32H
DW 0a33H
DW 0a35H
DW 0a36H
DW 0a38H
DW 0a39H
DW 0a59H
DW 0a5cH
DW 0a5eH
DW 0a5eH
DW 0a72H
DW 0a74H
DW 0a85H
DW 0a8dH
DW 0a8fH
DW 0a91H
DW 0a93H
DW 0aa8H
DW 0aaaH
DW 0ab0H
DW 0ab2H
DW 0ab3H
DW 0ab5H
DW 0ab9H
DW 0abdH
DW 0abdH
DW 0ad0H
DW 0ad0H
DW 0ae0H
DW 0ae1H
DW 0b05H
DW 0b0cH
DW 0b0fH
DW 0b10H
DW 0b13H
DW 0b28H
DW 0b2aH
DW 0b30H
DW 0b32H
DW 0b33H
DW 0b35H
DW 0b39H
DW 0b3dH
DW 0b3dH
DW 0b5cH
DW 0b5dH
DW 0b5fH
DW 0b61H
DW 0b71H
DW 0b71H
DW 0b83H
DW 0b83H
DW 0b85H
DW 0b8aH
DW 0b8eH
DW 0b90H
DW 0b92H
DW 0b95H
DW 0b99H
DW 0b9aH
DW 0b9cH
DW 0b9cH
DW 0b9eH
DW 0b9fH
DW 0ba3H
DW 0ba4H
DW 0ba8H
DW 0baaH
DW 0baeH
DW 0bb5H
DW 0bb7H
DW 0bb9H
DW 0c05H
DW 0c0cH
DW 0c0eH
DW 0c10H
DW 0c12H
DW 0c28H
DW 0c2aH
DW 0c33H
DW 0c35H
DW 0c39H
DW 0c60H
DW 0c61H
DW 0c85H
DW 0c8cH
DW 0c8eH
DW 0c90H
DW 0c92H
DW 0ca8H
DW 0caaH
DW 0cb3H
DW 0cb5H
DW 0cb9H
DW 0cbdH
DW 0cbdH
DW 0cdeH
DW 0cdeH
DW 0ce0H
DW 0ce1H
DW 0d05H
DW 0d0cH
DW 0d0eH
DW 0d10H
DW 0d12H
DW 0d28H
DW 0d2aH
DW 0d39H
DW 0d60H
DW 0d61H
DW 0d85H
DW 0d96H
DW 0d9aH
DW 0db1H
DW 0db3H
DW 0dbbH
DW 0dbdH
DW 0dbdH
DW 0dc0H
DW 0dc6H
DW 0e01H
DW 0e30H
DW 0e32H
DW 0e33H
DW 0e40H
DW 0e45H
DW 0e81H
DW 0e82H
DW 0e84H
DW 0e84H
DW 0e87H
DW 0e88H
DW 0e8aH
DW 0e8aH
DW 0e8dH
DW 0e8dH
DW 0e94H
DW 0e97H
DW 0e99H
DW 0e9fH
DW 0ea1H
DW 0ea3H
DW 0ea5H
DW 0ea5H
DW 0ea7H
DW 0ea7H
DW 0eaaH
DW 0eabH
DW 0eadH
DW 0eb0H
DW 0eb2H
DW 0eb3H
DW 0ebdH
DW 0ebdH
DW 0ec0H
DW 0ec4H
DW 0edcH
DW 0eddH
DW 0f00H
DW 0f00H
DW 0f40H
DW 0f47H
DW 0f49H
DW 0f6aH
DW 0f88H
DW 0f8bH
DW 01000H
DW 01021H
DW 01023H
DW 01027H
DW 01029H
DW 0102aH
DW 01050H
DW 01055H
DW 010d0H
DW 010f8H
DW 01100H
DW 01159H
DW 0115fH
DW 011a2H
DW 011a8H
DW 011f9H
DW 01200H
DW 01206H
DW 01208H
DW 01246H
DW 01248H
DW 01248H
DW 0124aH
DW 0124dH
DW 01250H
DW 01256H
DW 01258H
DW 01258H
DW 0125aH
DW 0125dH
DW 01260H
DW 01286H
DW 01288H
DW 01288H
DW 0128aH
DW 0128dH
DW 01290H
DW 012aeH
DW 012b0H
DW 012b0H
DW 012b2H
DW 012b5H
DW 012b8H
DW 012beH
DW 012c0H
DW 012c0H
DW 012c2H
DW 012c5H
DW 012c8H
DW 012ceH
DW 012d0H
DW 012d6H
DW 012d8H
DW 012eeH
DW 012f0H
DW 0130eH
DW 01310H
DW 01310H
DW 01312H
DW 01315H
DW 01318H
DW 0131eH
DW 01320H
DW 01346H
DW 01348H
DW 0135aH
DW 013a0H
DW 013f4H
DW 01401H
DW 0166cH
DW 0166fH
DW 01676H
DW 01681H
DW 0169aH
DW 016a0H
DW 016eaH
DW 01700H
DW 0170cH
DW 0170eH
DW 01711H
DW 01720H
DW 01731H
DW 01740H
DW 01751H
DW 01760H
DW 0176cH
DW 0176eH
DW 01770H
DW 01780H
DW 017b3H
DW 017dcH
DW 017dcH
DW 01820H
DW 01842H
DW 01844H
DW 01877H
DW 01880H
DW 018a8H
DW 01900H
DW 0191cH
DW 01950H
DW 0196dH
DW 01970H
DW 01974H
DW 02135H
DW 02138H
DW 03006H
DW 03006H
DW 0303cH
DW 0303cH
DW 03041H
DW 03096H
DW 0309fH
DW 0309fH
DW 030a1H
DW 030faH
DW 030ffH
DW 030ffH
DW 03105H
DW 0312cH
DW 03131H
DW 0318eH
DW 031a0H
DW 031b7H
DW 031f0H
DW 031ffH
DW 03400H
DW 03400H
DW 04db5H
DW 04db5H
DW 04e00H
DW 04e00H
DW 09fa5H
DW 09fa5H
DW 0a000H
DW 0a48cH
DW 0ac00H
DW 0ac00H
DW 0d7a3H
DW 0d7a3H
DW 0f900H
DW 0fa2dH
DW 0fa30H
DW 0fa6aH
DW 0fb1dH
DW 0fb1dH
DW 0fb1fH
DW 0fb28H
DW 0fb2aH
DW 0fb36H
DW 0fb38H
DW 0fb3cH
DW 0fb3eH
DW 0fb3eH
DW 0fb40H
DW 0fb41H
DW 0fb43H
DW 0fb44H
DW 0fb46H
DW 0fbb1H
DW 0fbd3H
DW 0fd3dH
DW 0fd50H
DW 0fd8fH
DW 0fd92H
DW 0fdc7H
DW 0fdf0H
DW 0fdfbH
DW 0fe70H
DW 0fe74H
DW 0fe76H
DW 0fefcH
DW 0ff66H
DW 0ff6fH
DW 0ff71H
DW 0ff9dH
DW 0ffa0H
DW 0ffbeH
DW 0ffc2H
DW 0ffc7H
DW 0ffcaH
DW 0ffcfH
DW 0ffd2H
DW 0ffd7H
DW 0ffdaH
DW 0ffdcH
_xmlZS DW 020H
DW 020H
DW 0a0H
DW 0a0H
DW 01680H
DW 01680H
DW 0180eH
DW 0180eH
DW 02000H
DW 0200aH
DW 02028H
DW 02029H
DW 0202fH
DW 0202fH
DW 0205fH
DW 0205fH
DW 03000H
DW 03000H
_xmlLoL DD 010000H
DD 01000bH
DD 01000dH
DD 010026H
DD 010028H
DD 01003aH
DD 01003cH
DD 01003dH
DD 01003fH
DD 01004dH
DD 010050H
DD 01005dH
DD 010080H
DD 0100faH
DD 010300H
DD 01031eH
DD 010330H
DD 010349H
DD 010380H
DD 01039dH
DD 010450H
DD 01049dH
DD 010800H
DD 010805H
DD 010808H
DD 010808H
DD 01080aH
DD 010835H
DD 010837H
DD 010838H
DD 01083cH
DD 01083cH
DD 01083fH
DD 01083fH
DD 020000H
DD 020000H
DD 02a6d6H
DD 02a6d6H
DD 02f800H
DD 02fa1dH
_xmlLtS DW 01c5H
DW 01c5H
DW 01c8H
DW 01c8H
DW 01cbH
DW 01cbH
DW 01f2H
DW 01f2H
DW 01f88H
DW 01f8fH
DW 01f98H
DW 01f9fH
DW 01fa8H
DW 01fafH
DW 01fbcH
DW 01fbcH
DW 01fccH
DW 01fccH
DW 01ffcH
DW 01ffcH
_xmlLuS DW 041H
DW 05aH
DW 0c0H
DW 0d6H
DW 0d8H
DW 0deH
DW 0100H
DW 0100H
DW 0102H
DW 0102H
DW 0104H
DW 0104H
DW 0106H
DW 0106H
DW 0108H
DW 0108H
DW 010aH
DW 010aH
DW 010cH
DW 010cH
DW 010eH
DW 010eH
DW 0110H
DW 0110H
DW 0112H
DW 0112H
DW 0114H
DW 0114H
DW 0116H
DW 0116H
DW 0118H
DW 0118H
DW 011aH
DW 011aH
DW 011cH
DW 011cH
DW 011eH
DW 011eH
DW 0120H
DW 0120H
DW 0122H
DW 0122H
DW 0124H
DW 0124H
DW 0126H
DW 0126H
DW 0128H
DW 0128H
DW 012aH
DW 012aH
DW 012cH
DW 012cH
DW 012eH
DW 012eH
DW 0130H
DW 0130H
DW 0132H
DW 0132H
DW 0134H
DW 0134H
DW 0136H
DW 0136H
DW 0139H
DW 0139H
DW 013bH
DW 013bH
DW 013dH
DW 013dH
DW 013fH
DW 013fH
DW 0141H
DW 0141H
DW 0143H
DW 0143H
DW 0145H
DW 0145H
DW 0147H
DW 0147H
DW 014aH
DW 014aH
DW 014cH
DW 014cH
DW 014eH
DW 014eH
DW 0150H
DW 0150H
DW 0152H
DW 0152H
DW 0154H
DW 0154H
DW 0156H
DW 0156H
DW 0158H
DW 0158H
DW 015aH
DW 015aH
DW 015cH
DW 015cH
DW 015eH
DW 015eH
DW 0160H
DW 0160H
DW 0162H
DW 0162H
DW 0164H
DW 0164H
DW 0166H
DW 0166H
DW 0168H
DW 0168H
DW 016aH
DW 016aH
DW 016cH
DW 016cH
DW 016eH
DW 016eH
DW 0170H
DW 0170H
DW 0172H
DW 0172H
DW 0174H
DW 0174H
DW 0176H
DW 0176H
DW 0178H
DW 0179H
DW 017bH
DW 017bH
DW 017dH
DW 017dH
DW 0181H
DW 0182H
DW 0184H
DW 0184H
DW 0186H
DW 0187H
DW 0189H
DW 018bH
DW 018eH
DW 0191H
DW 0193H
DW 0194H
DW 0196H
DW 0198H
DW 019cH
DW 019dH
DW 019fH
DW 01a0H
DW 01a2H
DW 01a2H
DW 01a4H
DW 01a4H
DW 01a6H
DW 01a7H
DW 01a9H
DW 01a9H
DW 01acH
DW 01acH
DW 01aeH
DW 01afH
DW 01b1H
DW 01b3H
DW 01b5H
DW 01b5H
DW 01b7H
DW 01b8H
DW 01bcH
DW 01bcH
DW 01c4H
DW 01c4H
DW 01c7H
DW 01c7H
DW 01caH
DW 01caH
DW 01cdH
DW 01cdH
DW 01cfH
DW 01cfH
DW 01d1H
DW 01d1H
DW 01d3H
DW 01d3H
DW 01d5H
DW 01d5H
DW 01d7H
DW 01d7H
DW 01d9H
DW 01d9H
DW 01dbH
DW 01dbH
DW 01deH
DW 01deH
DW 01e0H
DW 01e0H
DW 01e2H
DW 01e2H
DW 01e4H
DW 01e4H
DW 01e6H
DW 01e6H
DW 01e8H
DW 01e8H
DW 01eaH
DW 01eaH
DW 01ecH
DW 01ecH
DW 01eeH
DW 01eeH
DW 01f1H
DW 01f1H
DW 01f4H
DW 01f4H
DW 01f6H
DW 01f8H
DW 01faH
DW 01faH
DW 01fcH
DW 01fcH
DW 01feH
DW 01feH
DW 0200H
DW 0200H
DW 0202H
DW 0202H
DW 0204H
DW 0204H
DW 0206H
DW 0206H
DW 0208H
DW 0208H
DW 020aH
DW 020aH
DW 020cH
DW 020cH
DW 020eH
DW 020eH
DW 0210H
DW 0210H
DW 0212H
DW 0212H
DW 0214H
DW 0214H
DW 0216H
DW 0216H
DW 0218H
DW 0218H
DW 021aH
DW 021aH
DW 021cH
DW 021cH
DW 021eH
DW 021eH
DW 0220H
DW 0220H
DW 0222H
DW 0222H
DW 0224H
DW 0224H
DW 0226H
DW 0226H
DW 0228H
DW 0228H
DW 022aH
DW 022aH
DW 022cH
DW 022cH
DW 022eH
DW 022eH
DW 0230H
DW 0230H
DW 0232H
DW 0232H
DW 0386H
DW 0386H
DW 0388H
DW 038aH
DW 038cH
DW 038cH
DW 038eH
DW 038fH
DW 0391H
DW 03a1H
DW 03a3H
DW 03abH
DW 03d2H
DW 03d4H
DW 03d8H
DW 03d8H
DW 03daH
DW 03daH
DW 03dcH
DW 03dcH
DW 03deH
DW 03deH
DW 03e0H
DW 03e0H
DW 03e2H
DW 03e2H
DW 03e4H
DW 03e4H
DW 03e6H
DW 03e6H
DW 03e8H
DW 03e8H
DW 03eaH
DW 03eaH
DW 03ecH
DW 03ecH
DW 03eeH
DW 03eeH
DW 03f4H
DW 03f4H
DW 03f7H
DW 03f7H
DW 03f9H
DW 03faH
DW 0400H
DW 042fH
DW 0460H
DW 0460H
DW 0462H
DW 0462H
DW 0464H
DW 0464H
DW 0466H
DW 0466H
DW 0468H
DW 0468H
DW 046aH
DW 046aH
DW 046cH
DW 046cH
DW 046eH
DW 046eH
DW 0470H
DW 0470H
DW 0472H
DW 0472H
DW 0474H
DW 0474H
DW 0476H
DW 0476H
DW 0478H
DW 0478H
DW 047aH
DW 047aH
DW 047cH
DW 047cH
DW 047eH
DW 047eH
DW 0480H
DW 0480H
DW 048aH
DW 048aH
DW 048cH
DW 048cH
DW 048eH
DW 048eH
DW 0490H
DW 0490H
DW 0492H
DW 0492H
DW 0494H
DW 0494H
DW 0496H
DW 0496H
DW 0498H
DW 0498H
DW 049aH
DW 049aH
DW 049cH
DW 049cH
DW 049eH
DW 049eH
DW 04a0H
DW 04a0H
DW 04a2H
DW 04a2H
DW 04a4H
DW 04a4H
DW 04a6H
DW 04a6H
DW 04a8H
DW 04a8H
DW 04aaH
DW 04aaH
DW 04acH
DW 04acH
DW 04aeH
DW 04aeH
DW 04b0H
DW 04b0H
DW 04b2H
DW 04b2H
DW 04b4H
DW 04b4H
DW 04b6H
DW 04b6H
DW 04b8H
DW 04b8H
DW 04baH
DW 04baH
DW 04bcH
DW 04bcH
DW 04beH
DW 04beH
DW 04c0H
DW 04c1H
DW 04c3H
DW 04c3H
DW 04c5H
DW 04c5H
DW 04c7H
DW 04c7H
DW 04c9H
DW 04c9H
DW 04cbH
DW 04cbH
DW 04cdH
DW 04cdH
DW 04d0H
DW 04d0H
DW 04d2H
DW 04d2H
DW 04d4H
DW 04d4H
DW 04d6H
DW 04d6H
DW 04d8H
DW 04d8H
DW 04daH
DW 04daH
DW 04dcH
DW 04dcH
DW 04deH
DW 04deH
DW 04e0H
DW 04e0H
DW 04e2H
DW 04e2H
DW 04e4H
DW 04e4H
DW 04e6H
DW 04e6H
DW 04e8H
DW 04e8H
DW 04eaH
DW 04eaH
DW 04ecH
DW 04ecH
DW 04eeH
DW 04eeH
DW 04f0H
DW 04f0H
DW 04f2H
DW 04f2H
DW 04f4H
DW 04f4H
DW 04f8H
DW 04f8H
DW 0500H
DW 0500H
DW 0502H
DW 0502H
DW 0504H
DW 0504H
DW 0506H
DW 0506H
DW 0508H
DW 0508H
DW 050aH
DW 050aH
DW 050cH
DW 050cH
DW 050eH
DW 050eH
DW 0531H
DW 0556H
DW 010a0H
DW 010c5H
DW 01e00H
DW 01e00H
DW 01e02H
DW 01e02H
DW 01e04H
DW 01e04H
DW 01e06H
DW 01e06H
DW 01e08H
DW 01e08H
DW 01e0aH
DW 01e0aH
DW 01e0cH
DW 01e0cH
DW 01e0eH
DW 01e0eH
DW 01e10H
DW 01e10H
DW 01e12H
DW 01e12H
DW 01e14H
DW 01e14H
DW 01e16H
DW 01e16H
DW 01e18H
DW 01e18H
DW 01e1aH
DW 01e1aH
DW 01e1cH
DW 01e1cH
DW 01e1eH
DW 01e1eH
DW 01e20H
DW 01e20H
DW 01e22H
DW 01e22H
DW 01e24H
DW 01e24H
DW 01e26H
DW 01e26H
DW 01e28H
DW 01e28H
DW 01e2aH
DW 01e2aH
DW 01e2cH
DW 01e2cH
DW 01e2eH
DW 01e2eH
DW 01e30H
DW 01e30H
DW 01e32H
DW 01e32H
DW 01e34H
DW 01e34H
DW 01e36H
DW 01e36H
DW 01e38H
DW 01e38H
DW 01e3aH
DW 01e3aH
DW 01e3cH
DW 01e3cH
DW 01e3eH
DW 01e3eH
DW 01e40H
DW 01e40H
DW 01e42H
DW 01e42H
DW 01e44H
DW 01e44H
DW 01e46H
DW 01e46H
DW 01e48H
DW 01e48H
DW 01e4aH
DW 01e4aH
DW 01e4cH
DW 01e4cH
DW 01e4eH
DW 01e4eH
DW 01e50H
DW 01e50H
DW 01e52H
DW 01e52H
DW 01e54H
DW 01e54H
DW 01e56H
DW 01e56H
DW 01e58H
DW 01e58H
DW 01e5aH
DW 01e5aH
DW 01e5cH
DW 01e5cH
DW 01e5eH
DW 01e5eH
DW 01e60H
DW 01e60H
DW 01e62H
DW 01e62H
DW 01e64H
DW 01e64H
DW 01e66H
DW 01e66H
DW 01e68H
DW 01e68H
DW 01e6aH
DW 01e6aH
DW 01e6cH
DW 01e6cH
DW 01e6eH
DW 01e6eH
DW 01e70H
DW 01e70H
DW 01e72H
DW 01e72H
DW 01e74H
DW 01e74H
DW 01e76H
DW 01e76H
DW 01e78H
DW 01e78H
DW 01e7aH
DW 01e7aH
DW 01e7cH
DW 01e7cH
DW 01e7eH
DW 01e7eH
DW 01e80H
DW 01e80H
DW 01e82H
DW 01e82H
DW 01e84H
DW 01e84H
DW 01e86H
DW 01e86H
DW 01e88H
DW 01e88H
DW 01e8aH
DW 01e8aH
DW 01e8cH
DW 01e8cH
DW 01e8eH
DW 01e8eH
DW 01e90H
DW 01e90H
DW 01e92H
DW 01e92H
DW 01e94H
DW 01e94H
DW 01ea0H
DW 01ea0H
DW 01ea2H
DW 01ea2H
DW 01ea4H
DW 01ea4H
DW 01ea6H
DW 01ea6H
DW 01ea8H
DW 01ea8H
DW 01eaaH
DW 01eaaH
DW 01eacH
DW 01eacH
DW 01eaeH
DW 01eaeH
DW 01eb0H
DW 01eb0H
DW 01eb2H
DW 01eb2H
DW 01eb4H
DW 01eb4H
DW 01eb6H
DW 01eb6H
DW 01eb8H
DW 01eb8H
DW 01ebaH
DW 01ebaH
DW 01ebcH
DW 01ebcH
DW 01ebeH
DW 01ebeH
DW 01ec0H
DW 01ec0H
DW 01ec2H
DW 01ec2H
DW 01ec4H
DW 01ec4H
DW 01ec6H
DW 01ec6H
DW 01ec8H
DW 01ec8H
DW 01ecaH
DW 01ecaH
DW 01eccH
DW 01eccH
DW 01eceH
DW 01eceH
DW 01ed0H
DW 01ed0H
DW 01ed2H
DW 01ed2H
DW 01ed4H
DW 01ed4H
DW 01ed6H
DW 01ed6H
DW 01ed8H
DW 01ed8H
DW 01edaH
DW 01edaH
DW 01edcH
DW 01edcH
DW 01edeH
DW 01edeH
DW 01ee0H
DW 01ee0H
DW 01ee2H
DW 01ee2H
DW 01ee4H
DW 01ee4H
DW 01ee6H
DW 01ee6H
DW 01ee8H
DW 01ee8H
DW 01eeaH
DW 01eeaH
DW 01eecH
DW 01eecH
DW 01eeeH
DW 01eeeH
DW 01ef0H
DW 01ef0H
DW 01ef2H
DW 01ef2H
DW 01ef4H
DW 01ef4H
DW 01ef6H
DW 01ef6H
DW 01ef8H
DW 01ef8H
DW 01f08H
DW 01f0fH
DW 01f18H
DW 01f1dH
DW 01f28H
DW 01f2fH
DW 01f38H
DW 01f3fH
DW 01f48H
DW 01f4dH
DW 01f59H
DW 01f59H
DW 01f5bH
DW 01f5bH
DW 01f5dH
DW 01f5dH
DW 01f5fH
DW 01f5fH
DW 01f68H
DW 01f6fH
DW 01fb8H
DW 01fbbH
DW 01fc8H
DW 01fcbH
DW 01fd8H
DW 01fdbH
DW 01fe8H
DW 01fecH
DW 01ff8H
DW 01ffbH
DW 02102H
DW 02102H
DW 02107H
DW 02107H
DW 0210bH
DW 0210dH
DW 02110H
DW 02112H
DW 02115H
DW 02115H
DW 02119H
DW 0211dH
DW 02124H
DW 02124H
DW 02126H
DW 02126H
DW 02128H
DW 02128H
DW 0212aH
DW 0212dH
DW 02130H
DW 02131H
DW 02133H
DW 02133H
DW 0213eH
DW 0213fH
DW 02145H
DW 02145H
DW 0ff21H
DW 0ff3aH
_xmlLuL DD 010400H
DD 010427H
DD 01d400H
DD 01d419H
DD 01d434H
DD 01d44dH
DD 01d468H
DD 01d481H
DD 01d49cH
DD 01d49cH
DD 01d49eH
DD 01d49fH
DD 01d4a2H
DD 01d4a2H
DD 01d4a5H
DD 01d4a6H
DD 01d4a9H
DD 01d4acH
DD 01d4aeH
DD 01d4b5H
DD 01d4d0H
DD 01d4e9H
DD 01d504H
DD 01d505H
DD 01d507H
DD 01d50aH
DD 01d50dH
DD 01d514H
DD 01d516H
DD 01d51cH
DD 01d538H
DD 01d539H
DD 01d53bH
DD 01d53eH
DD 01d540H
DD 01d544H
DD 01d546H
DD 01d546H
DD 01d54aH
DD 01d550H
DD 01d56cH
DD 01d585H
DD 01d5a0H
DD 01d5b9H
DD 01d5d4H
DD 01d5edH
DD 01d608H
DD 01d621H
DD 01d63cH
DD 01d655H
DD 01d670H
DD 01d689H
DD 01d6a8H
DD 01d6c0H
DD 01d6e2H
DD 01d6faH
DD 01d71cH
DD 01d734H
DD 01d756H
DD 01d76eH
DD 01d790H
DD 01d7a8H
_xmlMS DW 0300H
DW 0357H
DW 035dH
DW 036fH
DW 0483H
DW 0486H
DW 0488H
DW 0489H
DW 0591H
DW 05a1H
DW 05a3H
DW 05b9H
DW 05bbH
DW 05bdH
DW 05bfH
DW 05bfH
DW 05c1H
DW 05c2H
DW 05c4H
DW 05c4H
DW 0610H
DW 0615H
DW 064bH
DW 0658H
DW 0670H
DW 0670H
DW 06d6H
DW 06dcH
DW 06deH
DW 06e4H
DW 06e7H
DW 06e8H
DW 06eaH
DW 06edH
DW 0711H
DW 0711H
DW 0730H
DW 074aH
DW 07a6H
DW 07b0H
DW 0901H
DW 0903H
DW 093cH
DW 093cH
DW 093eH
DW 094dH
DW 0951H
DW 0954H
DW 0962H
DW 0963H
DW 0981H
DW 0983H
DW 09bcH
DW 09bcH
DW 09beH
DW 09c4H
DW 09c7H
DW 09c8H
DW 09cbH
DW 09cdH
DW 09d7H
DW 09d7H
DW 09e2H
DW 09e3H
DW 0a01H
DW 0a03H
DW 0a3cH
DW 0a3cH
DW 0a3eH
DW 0a42H
DW 0a47H
DW 0a48H
DW 0a4bH
DW 0a4dH
DW 0a70H
DW 0a71H
DW 0a81H
DW 0a83H
DW 0abcH
DW 0abcH
DW 0abeH
DW 0ac5H
DW 0ac7H
DW 0ac9H
DW 0acbH
DW 0acdH
DW 0ae2H
DW 0ae3H
DW 0b01H
DW 0b03H
DW 0b3cH
DW 0b3cH
DW 0b3eH
DW 0b43H
DW 0b47H
DW 0b48H
DW 0b4bH
DW 0b4dH
DW 0b56H
DW 0b57H
DW 0b82H
DW 0b82H
DW 0bbeH
DW 0bc2H
DW 0bc6H
DW 0bc8H
DW 0bcaH
DW 0bcdH
DW 0bd7H
DW 0bd7H
DW 0c01H
DW 0c03H
DW 0c3eH
DW 0c44H
DW 0c46H
DW 0c48H
DW 0c4aH
DW 0c4dH
DW 0c55H
DW 0c56H
DW 0c82H
DW 0c83H
DW 0cbcH
DW 0cbcH
DW 0cbeH
DW 0cc4H
DW 0cc6H
DW 0cc8H
DW 0ccaH
DW 0ccdH
DW 0cd5H
DW 0cd6H
DW 0d02H
DW 0d03H
DW 0d3eH
DW 0d43H
DW 0d46H
DW 0d48H
DW 0d4aH
DW 0d4dH
DW 0d57H
DW 0d57H
DW 0d82H
DW 0d83H
DW 0dcaH
DW 0dcaH
DW 0dcfH
DW 0dd4H
DW 0dd6H
DW 0dd6H
DW 0dd8H
DW 0ddfH
DW 0df2H
DW 0df3H
DW 0e31H
DW 0e31H
DW 0e34H
DW 0e3aH
DW 0e47H
DW 0e4eH
DW 0eb1H
DW 0eb1H
DW 0eb4H
DW 0eb9H
DW 0ebbH
DW 0ebcH
DW 0ec8H
DW 0ecdH
DW 0f18H
DW 0f19H
DW 0f35H
DW 0f35H
DW 0f37H
DW 0f37H
DW 0f39H
DW 0f39H
DW 0f3eH
DW 0f3fH
DW 0f71H
DW 0f84H
DW 0f86H
DW 0f87H
DW 0f90H
DW 0f97H
DW 0f99H
DW 0fbcH
DW 0fc6H
DW 0fc6H
DW 0102cH
DW 01032H
DW 01036H
DW 01039H
DW 01056H
DW 01059H
DW 01712H
DW 01714H
DW 01732H
DW 01734H
DW 01752H
DW 01753H
DW 01772H
DW 01773H
DW 017b6H
DW 017d3H
DW 017ddH
DW 017ddH
DW 0180bH
DW 0180dH
DW 018a9H
DW 018a9H
DW 01920H
DW 0192bH
DW 01930H
DW 0193bH
DW 020d0H
DW 020eaH
DW 0302aH
DW 0302fH
DW 03099H
DW 0309aH
DW 0fb1eH
DW 0fb1eH
DW 0fe00H
DW 0fe0fH
DW 0fe20H
DW 0fe23H
_xmlML DD 01d165H
DD 01d169H
DD 01d16dH
DD 01d172H
DD 01d17bH
DD 01d182H
DD 01d185H
DD 01d18bH
DD 01d1aaH
DD 01d1adH
DD 0e0100H
DD 0e01efH
ORG $+4
_xmlMcS DW 0903H
DW 0903H
DW 093eH
DW 0940H
DW 0949H
DW 094cH
DW 0982H
DW 0983H
DW 09beH
DW 09c0H
DW 09c7H
DW 09c8H
DW 09cbH
DW 09ccH
DW 09d7H
DW 09d7H
DW 0a03H
DW 0a03H
DW 0a3eH
DW 0a40H
DW 0a83H
DW 0a83H
DW 0abeH
DW 0ac0H
DW 0ac9H
DW 0ac9H
DW 0acbH
DW 0accH
DW 0b02H
DW 0b03H
DW 0b3eH
DW 0b3eH
DW 0b40H
DW 0b40H
DW 0b47H
DW 0b48H
DW 0b4bH
DW 0b4cH
DW 0b57H
DW 0b57H
DW 0bbeH
DW 0bbfH
DW 0bc1H
DW 0bc2H
DW 0bc6H
DW 0bc8H
DW 0bcaH
DW 0bccH
DW 0bd7H
DW 0bd7H
DW 0c01H
DW 0c03H
DW 0c41H
DW 0c44H
DW 0c82H
DW 0c83H
DW 0cbeH
DW 0cbeH
DW 0cc0H
DW 0cc4H
DW 0cc7H
DW 0cc8H
DW 0ccaH
DW 0ccbH
DW 0cd5H
DW 0cd6H
DW 0d02H
DW 0d03H
DW 0d3eH
DW 0d40H
DW 0d46H
DW 0d48H
DW 0d4aH
DW 0d4cH
DW 0d57H
DW 0d57H
DW 0d82H
DW 0d83H
DW 0dcfH
DW 0dd1H
DW 0dd8H
DW 0ddfH
DW 0df2H
DW 0df3H
DW 0f3eH
DW 0f3fH
DW 0f7fH
DW 0f7fH
DW 0102cH
DW 0102cH
DW 01031H
DW 01031H
DW 01038H
DW 01038H
DW 01056H
DW 01057H
DW 017b6H
DW 017b6H
DW 017beH
DW 017c5H
DW 017c7H
DW 017c8H
DW 01923H
DW 01926H
DW 01929H
DW 0192bH
DW 01930H
DW 01931H
DW 01933H
DW 01938H
_xmlMcL DD 01d165H
DD 01d166H
DD 01d16dH
DD 01d172H
ORG $+4
_xmlMnS DW 0300H
DW 0357H
DW 035dH
DW 036fH
DW 0483H
DW 0486H
DW 0591H
DW 05a1H
DW 05a3H
DW 05b9H
DW 05bbH
DW 05bdH
DW 05bfH
DW 05bfH
DW 05c1H
DW 05c2H
DW 05c4H
DW 05c4H
DW 0610H
DW 0615H
DW 064bH
DW 0658H
DW 0670H
DW 0670H
DW 06d6H
DW 06dcH
DW 06dfH
DW 06e4H
DW 06e7H
DW 06e8H
DW 06eaH
DW 06edH
DW 0711H
DW 0711H
DW 0730H
DW 074aH
DW 07a6H
DW 07b0H
DW 0901H
DW 0902H
DW 093cH
DW 093cH
DW 0941H
DW 0948H
DW 094dH
DW 094dH
DW 0951H
DW 0954H
DW 0962H
DW 0963H
DW 0981H
DW 0981H
DW 09bcH
DW 09bcH
DW 09c1H
DW 09c4H
DW 09cdH
DW 09cdH
DW 09e2H
DW 09e3H
DW 0a01H
DW 0a02H
DW 0a3cH
DW 0a3cH
DW 0a41H
DW 0a42H
DW 0a47H
DW 0a48H
DW 0a4bH
DW 0a4dH
DW 0a70H
DW 0a71H
DW 0a81H
DW 0a82H
DW 0abcH
DW 0abcH
DW 0ac1H
DW 0ac5H
DW 0ac7H
DW 0ac8H
DW 0acdH
DW 0acdH
DW 0ae2H
DW 0ae3H
DW 0b01H
DW 0b01H
DW 0b3cH
DW 0b3cH
DW 0b3fH
DW 0b3fH
DW 0b41H
DW 0b43H
DW 0b4dH
DW 0b4dH
DW 0b56H
DW 0b56H
DW 0b82H
DW 0b82H
DW 0bc0H
DW 0bc0H
DW 0bcdH
DW 0bcdH
DW 0c3eH
DW 0c40H
DW 0c46H
DW 0c48H
DW 0c4aH
DW 0c4dH
DW 0c55H
DW 0c56H
DW 0cbcH
DW 0cbcH
DW 0cbfH
DW 0cbfH
DW 0cc6H
DW 0cc6H
DW 0cccH
DW 0ccdH
DW 0d41H
DW 0d43H
DW 0d4dH
DW 0d4dH
DW 0dcaH
DW 0dcaH
DW 0dd2H
DW 0dd4H
DW 0dd6H
DW 0dd6H
DW 0e31H
DW 0e31H
DW 0e34H
DW 0e3aH
DW 0e47H
DW 0e4eH
DW 0eb1H
DW 0eb1H
DW 0eb4H
DW 0eb9H
DW 0ebbH
DW 0ebcH
DW 0ec8H
DW 0ecdH
DW 0f18H
DW 0f19H
DW 0f35H
DW 0f35H
DW 0f37H
DW 0f37H
DW 0f39H
DW 0f39H
DW 0f71H
DW 0f7eH
DW 0f80H
DW 0f84H
DW 0f86H
DW 0f87H
DW 0f90H
DW 0f97H
DW 0f99H
DW 0fbcH
DW 0fc6H
DW 0fc6H
DW 0102dH
DW 01030H
DW 01032H
DW 01032H
DW 01036H
DW 01037H
DW 01039H
DW 01039H
DW 01058H
DW 01059H
DW 01712H
DW 01714H
DW 01732H
DW 01734H
DW 01752H
DW 01753H
DW 01772H
DW 01773H
DW 017b7H
DW 017bdH
DW 017c6H
DW 017c6H
DW 017c9H
DW 017d3H
DW 017ddH
DW 017ddH
DW 0180bH
DW 0180dH
DW 018a9H
DW 018a9H
DW 01920H
DW 01922H
DW 01927H
DW 01928H
DW 01932H
DW 01932H
DW 01939H
DW 0193bH
DW 020d0H
DW 020dcH
DW 020e1H
DW 020e1H
DW 020e5H
DW 020eaH
DW 0302aH
DW 0302fH
DW 03099H
DW 0309aH
DW 0fb1eH
DW 0fb1eH
DW 0fe00H
DW 0fe0fH
DW 0fe20H
DW 0fe23H
_xmlMnL DD 01d167H
DD 01d169H
DD 01d17bH
DD 01d182H
DD 01d185H
DD 01d18bH
DD 01d1aaH
DD 01d1adH
DD 0e0100H
DD 0e01efH
_xmlNS DW 030H
DW 039H
DW 0b2H
DW 0b3H
DW 0b9H
DW 0b9H
DW 0bcH
DW 0beH
DW 0660H
DW 0669H
DW 06f0H
DW 06f9H
DW 0966H
DW 096fH
DW 09e6H
DW 09efH
DW 09f4H
DW 09f9H
DW 0a66H
DW 0a6fH
DW 0ae6H
DW 0aefH
DW 0b66H
DW 0b6fH
DW 0be7H
DW 0bf2H
DW 0c66H
DW 0c6fH
DW 0ce6H
DW 0cefH
DW 0d66H
DW 0d6fH
DW 0e50H
DW 0e59H
DW 0ed0H
DW 0ed9H
DW 0f20H
DW 0f33H
DW 01040H
DW 01049H
DW 01369H
DW 0137cH
DW 016eeH
DW 016f0H
DW 017e0H
DW 017e9H
DW 017f0H
DW 017f9H
DW 01810H
DW 01819H
DW 01946H
DW 0194fH
DW 02070H
DW 02070H
DW 02074H
DW 02079H
DW 02080H
DW 02089H
DW 02153H
DW 02183H
DW 02460H
DW 0249bH
DW 024eaH
DW 024ffH
DW 02776H
DW 02793H
DW 03007H
DW 03007H
DW 03021H
DW 03029H
DW 03038H
DW 0303aH
DW 03192H
DW 03195H
DW 03220H
DW 03229H
DW 03251H
DW 0325fH
DW 03280H
DW 03289H
DW 032b1H
DW 032bfH
DW 0ff10H
DW 0ff19H
_xmlNL DD 010107H
DD 010133H
DD 010320H
DD 010323H
DD 01034aH
DD 01034aH
DD 0104a0H
DD 0104a9H
DD 01d7ceH
DD 01d7ffH
_xmlNdS DW 030H
DW 039H
DW 0660H
DW 0669H
DW 06f0H
DW 06f9H
DW 0966H
DW 096fH
DW 09e6H
DW 09efH
DW 0a66H
DW 0a6fH
DW 0ae6H
DW 0aefH
DW 0b66H
DW 0b6fH
DW 0be7H
DW 0befH
DW 0c66H
DW 0c6fH
DW 0ce6H
DW 0cefH
DW 0d66H
DW 0d6fH
DW 0e50H
DW 0e59H
DW 0ed0H
DW 0ed9H
DW 0f20H
DW 0f29H
DW 01040H
DW 01049H
DW 01369H
DW 01371H
DW 017e0H
DW 017e9H
DW 01810H
DW 01819H
DW 01946H
DW 0194fH
DW 0ff10H
DW 0ff19H
_xmlNdL DD 0104a0H
DD 0104a9H
DD 01d7ceH
DD 01d7ffH
ORG $+4
_xmlNoS DW 0b2H
DW 0b3H
DW 0b9H
DW 0b9H
DW 0bcH
DW 0beH
DW 09f4H
DW 09f9H
DW 0bf0H
DW 0bf2H
DW 0f2aH
DW 0f33H
DW 01372H
DW 0137cH
DW 017f0H
DW 017f9H
DW 02070H
DW 02070H
DW 02074H
DW 02079H
DW 02080H
DW 02089H
DW 02153H
DW 0215fH
DW 02460H
DW 0249bH
DW 024eaH
DW 024ffH
DW 02776H
DW 02793H
DW 03192H
DW 03195H
DW 03220H
DW 03229H
DW 03251H
DW 0325fH
DW 03280H
DW 03289H
DW 032b1H
DW 032bfH
_xmlNoL DD 010107H
DD 010133H
DD 010320H
DD 010323H
_xmlPS DW 021H
DW 023H
DW 025H
DW 02aH
DW 02cH
DW 02fH
DW 03aH
DW 03bH
DW 03fH
DW 040H
DW 05bH
DW 05dH
DW 05fH
DW 05fH
DW 07bH
DW 07bH
DW 07dH
DW 07dH
DW 0a1H
DW 0a1H
DW 0abH
DW 0abH
DW 0b7H
DW 0b7H
DW 0bbH
DW 0bbH
DW 0bfH
DW 0bfH
DW 037eH
DW 037eH
DW 0387H
DW 0387H
DW 055aH
DW 055fH
DW 0589H
DW 058aH
DW 05beH
DW 05beH
DW 05c0H
DW 05c0H
DW 05c3H
DW 05c3H
DW 05f3H
DW 05f4H
DW 060cH
DW 060dH
DW 061bH
DW 061bH
DW 061fH
DW 061fH
DW 066aH
DW 066dH
DW 06d4H
DW 06d4H
DW 0700H
DW 070dH
DW 0964H
DW 0965H
DW 0970H
DW 0970H
DW 0df4H
DW 0df4H
DW 0e4fH
DW 0e4fH
DW 0e5aH
DW 0e5bH
DW 0f04H
DW 0f12H
DW 0f3aH
DW 0f3dH
DW 0f85H
DW 0f85H
DW 0104aH
DW 0104fH
DW 010fbH
DW 010fbH
DW 01361H
DW 01368H
DW 0166dH
DW 0166eH
DW 0169bH
DW 0169cH
DW 016ebH
DW 016edH
DW 01735H
DW 01736H
DW 017d4H
DW 017d6H
DW 017d8H
DW 017daH
DW 01800H
DW 0180aH
DW 01944H
DW 01945H
DW 02010H
DW 02027H
DW 02030H
DW 02043H
DW 02045H
DW 02051H
DW 02053H
DW 02054H
DW 02057H
DW 02057H
DW 0207dH
DW 0207eH
DW 0208dH
DW 0208eH
DW 02329H
DW 0232aH
DW 023b4H
DW 023b6H
DW 02768H
DW 02775H
DW 027e6H
DW 027ebH
DW 02983H
DW 02998H
DW 029d8H
DW 029dbH
DW 029fcH
DW 029fdH
DW 03001H
DW 03003H
DW 03008H
DW 03011H
DW 03014H
DW 0301fH
DW 03030H
DW 03030H
DW 0303dH
DW 0303dH
DW 030a0H
DW 030a0H
DW 030fbH
DW 030fbH
DW 0fd3eH
DW 0fd3fH
DW 0fe30H
DW 0fe52H
DW 0fe54H
DW 0fe61H
DW 0fe63H
DW 0fe63H
DW 0fe68H
DW 0fe68H
DW 0fe6aH
DW 0fe6bH
DW 0ff01H
DW 0ff03H
DW 0ff05H
DW 0ff0aH
DW 0ff0cH
DW 0ff0fH
DW 0ff1aH
DW 0ff1bH
DW 0ff1fH
DW 0ff20H
DW 0ff3bH
DW 0ff3dH
DW 0ff3fH
DW 0ff3fH
DW 0ff5bH
DW 0ff5bH
DW 0ff5dH
DW 0ff5dH
DW 0ff5fH
DW 0ff65H
_xmlPL DD 010100H
DD 010101H
DD 01039fH
DD 01039fH
_xmlPeS DW 029H
DW 029H
DW 05dH
DW 05dH
DW 07dH
DW 07dH
DW 0f3bH
DW 0f3bH
DW 0f3dH
DW 0f3dH
DW 0169cH
DW 0169cH
DW 02046H
DW 02046H
DW 0207eH
DW 0207eH
DW 0208eH
DW 0208eH
DW 0232aH
DW 0232aH
DW 023b5H
DW 023b5H
DW 02769H
DW 02769H
DW 0276bH
DW 0276bH
DW 0276dH
DW 0276dH
DW 0276fH
DW 0276fH
DW 02771H
DW 02771H
DW 02773H
DW 02773H
DW 02775H
DW 02775H
DW 027e7H
DW 027e7H
DW 027e9H
DW 027e9H
DW 027ebH
DW 027ebH
DW 02984H
DW 02984H
DW 02986H
DW 02986H
DW 02988H
DW 02988H
DW 0298aH
DW 0298aH
DW 0298cH
DW 0298cH
DW 0298eH
DW 0298eH
DW 02990H
DW 02990H
DW 02992H
DW 02992H
DW 02994H
DW 02994H
DW 02996H
DW 02996H
DW 02998H
DW 02998H
DW 029d9H
DW 029d9H
DW 029dbH
DW 029dbH
DW 029fdH
DW 029fdH
DW 03009H
DW 03009H
DW 0300bH
DW 0300bH
DW 0300dH
DW 0300dH
DW 0300fH
DW 0300fH
DW 03011H
DW 03011H
DW 03015H
DW 03015H
DW 03017H
DW 03017H
DW 03019H
DW 03019H
DW 0301bH
DW 0301bH
DW 0301eH
DW 0301fH
DW 0fd3fH
DW 0fd3fH
DW 0fe36H
DW 0fe36H
DW 0fe38H
DW 0fe38H
DW 0fe3aH
DW 0fe3aH
DW 0fe3cH
DW 0fe3cH
DW 0fe3eH
DW 0fe3eH
DW 0fe40H
DW 0fe40H
DW 0fe42H
DW 0fe42H
DW 0fe44H
DW 0fe44H
DW 0fe48H
DW 0fe48H
DW 0fe5aH
DW 0fe5aH
DW 0fe5cH
DW 0fe5cH
DW 0fe5eH
DW 0fe5eH
DW 0ff09H
DW 0ff09H
DW 0ff3dH
DW 0ff3dH
DW 0ff5dH
DW 0ff5dH
DW 0ff60H
DW 0ff60H
DW 0ff63H
DW 0ff63H
ORG $+4
_xmlPoS DW 021H
DW 023H
DW 025H
DW 027H
DW 02aH
DW 02aH
DW 02cH
DW 02cH
DW 02eH
DW 02fH
DW 03aH
DW 03bH
DW 03fH
DW 040H
DW 05cH
DW 05cH
DW 0a1H
DW 0a1H
DW 0b7H
DW 0b7H
DW 0bfH
DW 0bfH
DW 037eH
DW 037eH
DW 0387H
DW 0387H
DW 055aH
DW 055fH
DW 0589H
DW 0589H
DW 05beH
DW 05beH
DW 05c0H
DW 05c0H
DW 05c3H
DW 05c3H
DW 05f3H
DW 05f4H
DW 060cH
DW 060dH
DW 061bH
DW 061bH
DW 061fH
DW 061fH
DW 066aH
DW 066dH
DW 06d4H
DW 06d4H
DW 0700H
DW 070dH
DW 0964H
DW 0965H
DW 0970H
DW 0970H
DW 0df4H
DW 0df4H
DW 0e4fH
DW 0e4fH
DW 0e5aH
DW 0e5bH
DW 0f04H
DW 0f12H
DW 0f85H
DW 0f85H
DW 0104aH
DW 0104fH
DW 010fbH
DW 010fbH
DW 01361H
DW 01368H
DW 0166dH
DW 0166eH
DW 016ebH
DW 016edH
DW 01735H
DW 01736H
DW 017d4H
DW 017d6H
DW 017d8H
DW 017daH
DW 01800H
DW 01805H
DW 01807H
DW 0180aH
DW 01944H
DW 01945H
DW 02016H
DW 02017H
DW 02020H
DW 02027H
DW 02030H
DW 02038H
DW 0203bH
DW 0203eH
DW 02041H
DW 02043H
DW 02047H
DW 02051H
DW 02053H
DW 02053H
DW 02057H
DW 02057H
DW 023b6H
DW 023b6H
DW 03001H
DW 03003H
DW 0303dH
DW 0303dH
DW 0fe30H
DW 0fe30H
DW 0fe45H
DW 0fe46H
DW 0fe49H
DW 0fe4cH
DW 0fe50H
DW 0fe52H
DW 0fe54H
DW 0fe57H
DW 0fe5fH
DW 0fe61H
DW 0fe68H
DW 0fe68H
DW 0fe6aH
DW 0fe6bH
DW 0ff01H
DW 0ff03H
DW 0ff05H
DW 0ff07H
DW 0ff0aH
DW 0ff0aH
DW 0ff0cH
DW 0ff0cH
DW 0ff0eH
DW 0ff0fH
DW 0ff1aH
DW 0ff1bH
DW 0ff1fH
DW 0ff20H
DW 0ff3cH
DW 0ff3cH
DW 0ff61H
DW 0ff61H
DW 0ff64H
DW 0ff64H
_xmlPoL DD 010100H
DD 010101H
DD 01039fH
DD 01039fH
_xmlPsS DW 028H
DW 028H
DW 05bH
DW 05bH
DW 07bH
DW 07bH
DW 0f3aH
DW 0f3aH
DW 0f3cH
DW 0f3cH
DW 0169bH
DW 0169bH
DW 0201aH
DW 0201aH
DW 0201eH
DW 0201eH
DW 02045H
DW 02045H
DW 0207dH
DW 0207dH
DW 0208dH
DW 0208dH
DW 02329H
DW 02329H
DW 023b4H
DW 023b4H
DW 02768H
DW 02768H
DW 0276aH
DW 0276aH
DW 0276cH
DW 0276cH
DW 0276eH
DW 0276eH
DW 02770H
DW 02770H
DW 02772H
DW 02772H
DW 02774H
DW 02774H
DW 027e6H
DW 027e6H
DW 027e8H
DW 027e8H
DW 027eaH
DW 027eaH
DW 02983H
DW 02983H
DW 02985H
DW 02985H
DW 02987H
DW 02987H
DW 02989H
DW 02989H
DW 0298bH
DW 0298bH
DW 0298dH
DW 0298dH
DW 0298fH
DW 0298fH
DW 02991H
DW 02991H
DW 02993H
DW 02993H
DW 02995H
DW 02995H
DW 02997H
DW 02997H
DW 029d8H
DW 029d8H
DW 029daH
DW 029daH
DW 029fcH
DW 029fcH
DW 03008H
DW 03008H
DW 0300aH
DW 0300aH
DW 0300cH
DW 0300cH
DW 0300eH
DW 0300eH
DW 03010H
DW 03010H
DW 03014H
DW 03014H
DW 03016H
DW 03016H
DW 03018H
DW 03018H
DW 0301aH
DW 0301aH
DW 0301dH
DW 0301dH
DW 0fd3eH
DW 0fd3eH
DW 0fe35H
DW 0fe35H
DW 0fe37H
DW 0fe37H
DW 0fe39H
DW 0fe39H
DW 0fe3bH
DW 0fe3bH
DW 0fe3dH
DW 0fe3dH
DW 0fe3fH
DW 0fe3fH
DW 0fe41H
DW 0fe41H
DW 0fe43H
DW 0fe43H
DW 0fe47H
DW 0fe47H
DW 0fe59H
DW 0fe59H
DW 0fe5bH
DW 0fe5bH
DW 0fe5dH
DW 0fe5dH
DW 0ff08H
DW 0ff08H
DW 0ff3bH
DW 0ff3bH
DW 0ff5bH
DW 0ff5bH
DW 0ff5fH
DW 0ff5fH
DW 0ff62H
DW 0ff62H
ORG $+4
_xmlSS DW 024H
DW 024H
DW 02bH
DW 02bH
DW 03cH
DW 03eH
DW 05eH
DW 05eH
DW 060H
DW 060H
DW 07cH
DW 07cH
DW 07eH
DW 07eH
DW 0a2H
DW 0a9H
DW 0acH
DW 0acH
DW 0aeH
DW 0b1H
DW 0b4H
DW 0b4H
DW 0b6H
DW 0b6H
DW 0b8H
DW 0b8H
DW 0d7H
DW 0d7H
DW 0f7H
DW 0f7H
DW 02c2H
DW 02c5H
DW 02d2H
DW 02dfH
DW 02e5H
DW 02edH
DW 02efH
DW 02ffH
DW 0374H
DW 0375H
DW 0384H
DW 0385H
DW 03f6H
DW 03f6H
DW 0482H
DW 0482H
DW 060eH
DW 060fH
DW 06e9H
DW 06e9H
DW 06fdH
DW 06feH
DW 09f2H
DW 09f3H
DW 09faH
DW 09faH
DW 0af1H
DW 0af1H
DW 0b70H
DW 0b70H
DW 0bf3H
DW 0bfaH
DW 0e3fH
DW 0e3fH
DW 0f01H
DW 0f03H
DW 0f13H
DW 0f17H
DW 0f1aH
DW 0f1fH
DW 0f34H
DW 0f34H
DW 0f36H
DW 0f36H
DW 0f38H
DW 0f38H
DW 0fbeH
DW 0fc5H
DW 0fc7H
DW 0fccH
DW 0fcfH
DW 0fcfH
DW 017dbH
DW 017dbH
DW 01940H
DW 01940H
DW 019e0H
DW 019ffH
DW 01fbdH
DW 01fbdH
DW 01fbfH
DW 01fc1H
DW 01fcdH
DW 01fcfH
DW 01fddH
DW 01fdfH
DW 01fedH
DW 01fefH
DW 01ffdH
DW 01ffeH
DW 02044H
DW 02044H
DW 02052H
DW 02052H
DW 0207aH
DW 0207cH
DW 0208aH
DW 0208cH
DW 020a0H
DW 020b1H
DW 02100H
DW 02101H
DW 02103H
DW 02106H
DW 02108H
DW 02109H
DW 02114H
DW 02114H
DW 02116H
DW 02118H
DW 0211eH
DW 02123H
DW 02125H
DW 02125H
DW 02127H
DW 02127H
DW 02129H
DW 02129H
DW 0212eH
DW 0212eH
DW 02132H
DW 02132H
DW 0213aH
DW 0213bH
DW 02140H
DW 02144H
DW 0214aH
DW 0214bH
DW 02190H
DW 02328H
DW 0232bH
DW 023b3H
DW 023b7H
DW 023d0H
DW 02400H
DW 02426H
DW 02440H
DW 0244aH
DW 0249cH
DW 024e9H
DW 02500H
DW 02617H
DW 02619H
DW 0267dH
DW 02680H
DW 02691H
DW 026a0H
DW 026a1H
DW 02701H
DW 02704H
DW 02706H
DW 02709H
DW 0270cH
DW 02727H
DW 02729H
DW 0274bH
DW 0274dH
DW 0274dH
DW 0274fH
DW 02752H
DW 02756H
DW 02756H
DW 02758H
DW 0275eH
DW 02761H
DW 02767H
DW 02794H
DW 02794H
DW 02798H
DW 027afH
DW 027b1H
DW 027beH
DW 027d0H
DW 027e5H
DW 027f0H
DW 02982H
DW 02999H
DW 029d7H
DW 029dcH
DW 029fbH
DW 029feH
DW 02b0dH
DW 02e80H
DW 02e99H
DW 02e9bH
DW 02ef3H
DW 02f00H
DW 02fd5H
DW 02ff0H
DW 02ffbH
DW 03004H
DW 03004H
DW 03012H
DW 03013H
DW 03020H
DW 03020H
DW 03036H
DW 03037H
DW 0303eH
DW 0303fH
DW 0309bH
DW 0309cH
DW 03190H
DW 03191H
DW 03196H
DW 0319fH
DW 03200H
DW 0321eH
DW 0322aH
DW 03243H
DW 03250H
DW 03250H
DW 03260H
DW 0327dH
DW 0327fH
DW 0327fH
DW 0328aH
DW 032b0H
DW 032c0H
DW 032feH
DW 03300H
DW 033ffH
DW 04dc0H
DW 04dffH
DW 0a490H
DW 0a4c6H
DW 0fb29H
DW 0fb29H
DW 0fdfcH
DW 0fdfdH
DW 0fe62H
DW 0fe62H
DW 0fe64H
DW 0fe66H
DW 0fe69H
DW 0fe69H
DW 0ff04H
DW 0ff04H
DW 0ff0bH
DW 0ff0bH
DW 0ff1cH
DW 0ff1eH
DW 0ff3eH
DW 0ff3eH
DW 0ff40H
DW 0ff40H
DW 0ff5cH
DW 0ff5cH
DW 0ff5eH
DW 0ff5eH
DW 0ffe0H
DW 0ffe6H
DW 0ffe8H
DW 0ffeeH
DW 0fffcH
DW 0fffdH
ORG $+4
_xmlSL DD 010102H
DD 010102H
DD 010137H
DD 01013fH
DD 01d000H
DD 01d0f5H
DD 01d100H
DD 01d126H
DD 01d12aH
DD 01d164H
DD 01d16aH
DD 01d16cH
DD 01d183H
DD 01d184H
DD 01d18cH
DD 01d1a9H
DD 01d1aeH
DD 01d1ddH
DD 01d300H
DD 01d356H
DD 01d6c1H
DD 01d6c1H
DD 01d6dbH
DD 01d6dbH
DD 01d6fbH
DD 01d6fbH
DD 01d715H
DD 01d715H
DD 01d735H
DD 01d735H
DD 01d74fH
DD 01d74fH
DD 01d76fH
DD 01d76fH
DD 01d789H
DD 01d789H
DD 01d7a9H
DD 01d7a9H
DD 01d7c3H
DD 01d7c3H
_xmlSkS DW 05eH
DW 05eH
DW 060H
DW 060H
DW 0a8H
DW 0a8H
DW 0afH
DW 0afH
DW 0b4H
DW 0b4H
DW 0b8H
DW 0b8H
DW 02c2H
DW 02c5H
DW 02d2H
DW 02dfH
DW 02e5H
DW 02edH
DW 02efH
DW 02ffH
DW 0374H
DW 0375H
DW 0384H
DW 0385H
DW 01fbdH
DW 01fbdH
DW 01fbfH
DW 01fc1H
DW 01fcdH
DW 01fcfH
DW 01fddH
DW 01fdfH
DW 01fedH
DW 01fefH
DW 01ffdH
DW 01ffeH
DW 0309bH
DW 0309cH
DW 0ff3eH
DW 0ff3eH
DW 0ff40H
DW 0ff40H
DW 0ffe3H
DW 0ffe3H
_xmlSmS DW 02bH
DW 02bH
DW 03cH
DW 03eH
DW 07cH
DW 07cH
DW 07eH
DW 07eH
DW 0acH
DW 0acH
DW 0b1H
DW 0b1H
DW 0d7H
DW 0d7H
DW 0f7H
DW 0f7H
DW 03f6H
DW 03f6H
DW 02044H
DW 02044H
DW 02052H
DW 02052H
DW 0207aH
DW 0207cH
DW 0208aH
DW 0208cH
DW 02140H
DW 02144H
DW 0214bH
DW 0214bH
DW 02190H
DW 02194H
DW 0219aH
DW 0219bH
DW 021a0H
DW 021a0H
DW 021a3H
DW 021a3H
DW 021a6H
DW 021a6H
DW 021aeH
DW 021aeH
DW 021ceH
DW 021cfH
DW 021d2H
DW 021d2H
DW 021d4H
DW 021d4H
DW 021f4H
DW 022ffH
DW 02308H
DW 0230bH
DW 02320H
DW 02321H
DW 0237cH
DW 0237cH
DW 0239bH
DW 023b3H
DW 025b7H
DW 025b7H
DW 025c1H
DW 025c1H
DW 025f8H
DW 025ffH
DW 0266fH
DW 0266fH
DW 027d0H
DW 027e5H
DW 027f0H
DW 027ffH
DW 02900H
DW 02982H
DW 02999H
DW 029d7H
DW 029dcH
DW 029fbH
DW 029feH
DW 02affH
DW 0fb29H
DW 0fb29H
DW 0fe62H
DW 0fe62H
DW 0fe64H
DW 0fe66H
DW 0ff0bH
DW 0ff0bH
DW 0ff1cH
DW 0ff1eH
DW 0ff5cH
DW 0ff5cH
DW 0ff5eH
DW 0ff5eH
DW 0ffe2H
DW 0ffe2H
DW 0ffe9H
DW 0ffecH
_xmlSmL DD 01d6c1H
DD 01d6c1H
DD 01d6dbH
DD 01d6dbH
DD 01d6fbH
DD 01d6fbH
DD 01d715H
DD 01d715H
DD 01d735H
DD 01d735H
DD 01d74fH
DD 01d74fH
DD 01d76fH
DD 01d76fH
DD 01d789H
DD 01d789H
DD 01d7a9H
DD 01d7a9H
DD 01d7c3H
DD 01d7c3H
_xmlSoS DW 0a6H
DW 0a7H
DW 0a9H
DW 0a9H
DW 0aeH
DW 0aeH
DW 0b0H
DW 0b0H
DW 0b6H
DW 0b6H
DW 0482H
DW 0482H
DW 060eH
DW 060fH
DW 06e9H
DW 06e9H
DW 06fdH
DW 06feH
DW 09faH
DW 09faH
DW 0b70H
DW 0b70H
DW 0bf3H
DW 0bf8H
DW 0bfaH
DW 0bfaH
DW 0f01H
DW 0f03H
DW 0f13H
DW 0f17H
DW 0f1aH
DW 0f1fH
DW 0f34H
DW 0f34H
DW 0f36H
DW 0f36H
DW 0f38H
DW 0f38H
DW 0fbeH
DW 0fc5H
DW 0fc7H
DW 0fccH
DW 0fcfH
DW 0fcfH
DW 01940H
DW 01940H
DW 019e0H
DW 019ffH
DW 02100H
DW 02101H
DW 02103H
DW 02106H
DW 02108H
DW 02109H
DW 02114H
DW 02114H
DW 02116H
DW 02118H
DW 0211eH
DW 02123H
DW 02125H
DW 02125H
DW 02127H
DW 02127H
DW 02129H
DW 02129H
DW 0212eH
DW 0212eH
DW 02132H
DW 02132H
DW 0213aH
DW 0213bH
DW 0214aH
DW 0214aH
DW 02195H
DW 02199H
DW 0219cH
DW 0219fH
DW 021a1H
DW 021a2H
DW 021a4H
DW 021a5H
DW 021a7H
DW 021adH
DW 021afH
DW 021cdH
DW 021d0H
DW 021d1H
DW 021d3H
DW 021d3H
DW 021d5H
DW 021f3H
DW 02300H
DW 02307H
DW 0230cH
DW 0231fH
DW 02322H
DW 02328H
DW 0232bH
DW 0237bH
DW 0237dH
DW 0239aH
DW 023b7H
DW 023d0H
DW 02400H
DW 02426H
DW 02440H
DW 0244aH
DW 0249cH
DW 024e9H
DW 02500H
DW 025b6H
DW 025b8H
DW 025c0H
DW 025c2H
DW 025f7H
DW 02600H
DW 02617H
DW 02619H
DW 0266eH
DW 02670H
DW 0267dH
DW 02680H
DW 02691H
DW 026a0H
DW 026a1H
DW 02701H
DW 02704H
DW 02706H
DW 02709H
DW 0270cH
DW 02727H
DW 02729H
DW 0274bH
DW 0274dH
DW 0274dH
DW 0274fH
DW 02752H
DW 02756H
DW 02756H
DW 02758H
DW 0275eH
DW 02761H
DW 02767H
DW 02794H
DW 02794H
DW 02798H
DW 027afH
DW 027b1H
DW 027beH
DW 02800H
DW 028ffH
DW 02b00H
DW 02b0dH
DW 02e80H
DW 02e99H
DW 02e9bH
DW 02ef3H
DW 02f00H
DW 02fd5H
DW 02ff0H
DW 02ffbH
DW 03004H
DW 03004H
DW 03012H
DW 03013H
DW 03020H
DW 03020H
DW 03036H
DW 03037H
DW 0303eH
DW 0303fH
DW 03190H
DW 03191H
DW 03196H
DW 0319fH
DW 03200H
DW 0321eH
DW 0322aH
DW 03243H
DW 03250H
DW 03250H
DW 03260H
DW 0327dH
DW 0327fH
DW 0327fH
DW 0328aH
DW 032b0H
DW 032c0H
DW 032feH
DW 03300H
DW 033ffH
DW 04dc0H
DW 04dffH
DW 0a490H
DW 0a4c6H
DW 0fdfdH
DW 0fdfdH
DW 0ffe4H
DW 0ffe4H
DW 0ffe8H
DW 0ffe8H
DW 0ffedH
DW 0ffeeH
DW 0fffcH
DW 0fffdH
ORG $+4
_xmlSoL DD 010102H
DD 010102H
DD 010137H
DD 01013fH
DD 01d000H
DD 01d0f5H
DD 01d100H
DD 01d126H
DD 01d12aH
DD 01d164H
DD 01d16aH
DD 01d16cH
DD 01d183H
DD 01d184H
DD 01d18cH
DD 01d1a9H
DD 01d1aeH
DD 01d1ddH
DD 01d300H
DD 01d356H
CONST ENDS
PUBLIC _xmlUCSIsBlock
PUBLIC _xmlUCSIsCat
PUBLIC __JustMyCode_Default
EXTRN _xmlCharInRange:PROC
EXTRN @__CheckForDebuggerJustMyCode@4:PROC
_DATA SEGMENT
_xmlCG DD 012H
DD 07H
DD FLAT:_xmlCS
DD FLAT:_xmlCL
_xmlCfG DD 0bH
DD 03H
DD FLAT:_xmlCfS
DD FLAT:_xmlCfL
_xmlLG DD 0117H
DD 032H
DD FLAT:_xmlLS
DD FLAT:_xmlLL
_xmlLlG DD 018cH
DD 01cH
DD FLAT:_xmlLlS
DD FLAT:_xmlLlL
_xmlLmG DD 014H
DD 00H
DD FLAT:_xmlLmS
DD 00H
_xmlLoG DD 0d3H
DD 014H
DD FLAT:_xmlLoS
DD FLAT:_xmlLoL
_xmlLtG DD 0aH
DD 00H
DD FLAT:_xmlLtS
DD 00H
_xmlLuG DD 0186H
DD 01fH
DD FLAT:_xmlLuS
DD FLAT:_xmlLuL
_xmlMG DD 071H
DD 06H
DD FLAT:_xmlMS
DD FLAT:_xmlML
_xmlMcG DD 037H
DD 02H
DD FLAT:_xmlMcS
DD FLAT:_xmlMcL
_xmlMnG DD 06cH
DD 05H
DD FLAT:_xmlMnS
DD FLAT:_xmlMnL
_xmlNG DD 02aH
DD 05H
DD FLAT:_xmlNS
DD FLAT:_xmlNL
_xmlNdG DD 015H
DD 02H
DD FLAT:_xmlNdS
DD FLAT:_xmlNdL
_xmlNoG DD 014H
DD 02H
DD FLAT:_xmlNoS
DD FLAT:_xmlNoL
_xmlPG DD 054H
DD 02H
DD FLAT:_xmlPS
DD FLAT:_xmlPL
_xmlPdG DD 0bH
DD 00H
DD FLAT:_xmlPdS
DD 00H
_xmlPeG DD 03fH
DD 00H
DD FLAT:_xmlPeS
DD 00H
_xmlPoG DD 048H
DD 02H
DD FLAT:_xmlPoS
DD FLAT:_xmlPoL
_xmlPsG DD 041H
DD 00H
DD FLAT:_xmlPsS
DD 00H
_xmlSG DD 085H
DD 014H
DD FLAT:_xmlSS
DD FLAT:_xmlSL
_xmlScG DD 0dH
DD 00H
DD FLAT:_xmlScS
DD 00H
_xmlSkG DD 016H
DD 00H
DD FLAT:_xmlSkS
DD 00H
_xmlSmG DD 030H
DD 0aH
DD FLAT:_xmlSmS
DD FLAT:_xmlSmL
_xmlSoG DD 067H
DD 0aH
DD FLAT:_xmlSoS
DD FLAT:_xmlSoL
_xmlZG DD 09H
DD 00H
DD FLAT:_xmlZS
DD 00H
_xmlUnicodeBlockTbl DD FLAT:_xmlUnicodeBlocks
DD 080H
_xmlUnicodeCatTbl DD FLAT:_xmlUnicodeCats
DD 024H
_DATA ENDS
; Function compile flags: /Odt
; COMDAT __JustMyCode_Default
_TEXT SEGMENT
__JustMyCode_Default PROC ; COMDAT
push ebp
mov ebp, esp
pop ebp
ret 0
__JustMyCode_Default ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUnicodeLookup
_TEXT SEGMENT
_sptr$1$ = 8 ; size = 4
_tptr$ = 8 ; size = 4
_tname$ = 12 ; size = 4
_xmlUnicodeLookup PROC ; COMDAT
; 946 : *xmlUnicodeLookup(xmlUnicodeNameTable *tptr, const char *tname) {
push ebp
mov ebp, esp
push ebx
push esi
push edi
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _tptr$[ebp]
test eax, eax
je SHORT $LN5@xmlUnicode
; 947 : int low, high, mid, cmp;
; 948 : const xmlUnicodeRange *sptr;
; 949 :
; 950 : if ((tptr == NULL) || (tname == NULL)) return(NULL);
mov ecx, DWORD PTR _tname$[ebp]
test ecx, ecx
je SHORT $LN5@xmlUnicode
; 951 :
; 952 : low = 0;
; 953 : high = tptr->numentries - 1;
mov ebx, DWORD PTR [eax+4]
xor edi, edi
sub ebx, 1
; 954 : sptr = tptr->table;
mov eax, DWORD PTR [eax]
mov DWORD PTR _sptr$1$[ebp], eax
; 955 : while (low <= high) {
js SHORT $LN5@xmlUnicode
npad 3
$LL2@xmlUnicode:
; 956 : mid = (low + high) / 2;
lea eax, DWORD PTR [ebx+edi]
cdq
sub eax, edx
mov esi, eax
; 957 : if ((cmp=strcmp(tname, sptr[mid].rangename)) == 0)
mov eax, DWORD PTR _sptr$1$[ebp]
sar esi, 1
mov eax, DWORD PTR [eax+esi*8]
$LL14@xmlUnicode:
mov dl, BYTE PTR [ecx]
cmp dl, BYTE PTR [eax]
jne SHORT $LN15@xmlUnicode
test dl, dl
je SHORT $LN16@xmlUnicode
mov dl, BYTE PTR [ecx+1]
cmp dl, BYTE PTR [eax+1]
jne SHORT $LN15@xmlUnicode
add ecx, 2
add eax, 2
test dl, dl
jne SHORT $LL14@xmlUnicode
$LN16@xmlUnicode:
xor ecx, ecx
jmp SHORT $LN17@xmlUnicode
$LN15@xmlUnicode:
sbb ecx, ecx
or ecx, 1
$LN17@xmlUnicode:
test ecx, ecx
je SHORT $LN11@xmlUnicode
; 955 : while (low <= high) {
mov ecx, DWORD PTR _tname$[ebp]
lea eax, DWORD PTR [esi-1]
cmovns eax, ebx
mov ebx, eax
lea eax, DWORD PTR [esi+1]
cmovns edi, eax
cmp edi, ebx
jle SHORT $LL2@xmlUnicode
$LN5@xmlUnicode:
pop edi
; 959 : if (cmp < 0)
; 960 : high = mid - 1;
; 961 : else
; 962 : low = mid + 1;
; 963 : }
; 964 : return (NULL);
; 965 : }
pop esi
xor eax, eax
pop ebx
pop ebp
ret 0
$LN11@xmlUnicode:
; 958 : return (sptr[mid].func);
mov eax, DWORD PTR _sptr$1$[ebp]
pop edi
mov eax, DWORD PTR [eax+esi*8+4]
; 959 : if (cmp < 0)
; 960 : high = mid - 1;
; 961 : else
; 962 : low = mid + 1;
; 963 : }
; 964 : return (NULL);
; 965 : }
pop esi
pop ebx
pop ebp
ret 0
_xmlUnicodeLookup ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCat
_TEXT SEGMENT
_code$ = 8 ; size = 4
_cat$ = 12 ; size = 4
_xmlUCSIsCat PROC ; COMDAT
; 3168 : xmlUCSIsCat(int code, const char *cat) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push DWORD PTR _cat$[ebp]
push OFFSET _xmlUnicodeCatTbl
call _xmlUnicodeLookup
add esp, 8
test eax, eax
jne SHORT $LN2@xmlUCSIsCa
; 3169 : xmlIntFunc *func;
; 3170 :
; 3171 : func = xmlUnicodeLookup(&xmlUnicodeCatTbl, cat);
; 3172 : if (func == NULL)
; 3173 : return (-1);
or eax, -1
; 3175 : }
pop ebp
ret 0
$LN2@xmlUCSIsCa:
; 3174 : return (func(code));
push DWORD PTR _code$[ebp]
call eax
add esp, 4
; 3175 : }
pop ebp
ret 0
_xmlUCSIsCat ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatZs
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatZs PROC ; COMDAT
; 3147 : xmlUCSIsCatZs(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
cmp eax, 32 ; 00000020H
je SHORT $LN3@xmlUCSIsCa
; 3148 : return((code == 0x20) ||
cmp eax, 160 ; 000000a0H
je SHORT $LN3@xmlUCSIsCa
cmp eax, 5760 ; 00001680H
je SHORT $LN3@xmlUCSIsCa
cmp eax, 6158 ; 0000180eH
je SHORT $LN3@xmlUCSIsCa
cmp eax, 8192 ; 00002000H
jl SHORT $LN4@xmlUCSIsCa
cmp eax, 8202 ; 0000200aH
jle SHORT $LN3@xmlUCSIsCa
$LN4@xmlUCSIsCa:
cmp eax, 8239 ; 0000202fH
je SHORT $LN3@xmlUCSIsCa
cmp eax, 8287 ; 0000205fH
je SHORT $LN3@xmlUCSIsCa
cmp eax, 12288 ; 00003000H
je SHORT $LN3@xmlUCSIsCa
xor eax, eax
; 3149 : (code == 0xa0) ||
; 3150 : (code == 0x1680) ||
; 3151 : (code == 0x180e) ||
; 3152 : ((code >= 0x2000) && (code <= 0x200a)) ||
; 3153 : (code == 0x202f) ||
; 3154 : (code == 0x205f) ||
; 3155 : (code == 0x3000));
; 3156 : }
pop ebp
ret 0
$LN3@xmlUCSIsCa:
; 3148 : return((code == 0x20) ||
mov eax, 1
; 3149 : (code == 0xa0) ||
; 3150 : (code == 0x1680) ||
; 3151 : (code == 0x180e) ||
; 3152 : ((code >= 0x2000) && (code <= 0x200a)) ||
; 3153 : (code == 0x202f) ||
; 3154 : (code == 0x205f) ||
; 3155 : (code == 0x3000));
; 3156 : }
pop ebp
ret 0
_xmlUCSIsCatZs ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatZp
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatZp PROC ; COMDAT
; 3134 : xmlUCSIsCatZp(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
xor eax, eax
cmp DWORD PTR _code$[ebp], 8233 ; 00002029H
sete al
; 3135 : return((code == 0x2029));
; 3136 : }
pop ebp
ret 0
_xmlUCSIsCatZp ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatZl
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatZl PROC ; COMDAT
; 3121 : xmlUCSIsCatZl(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
xor eax, eax
cmp DWORD PTR _code$[ebp], 8232 ; 00002028H
sete al
; 3122 : return((code == 0x2028));
; 3123 : }
pop ebp
ret 0
_xmlUCSIsCatZl ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatZ
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatZ PROC ; COMDAT
; 3108 : xmlUCSIsCatZ(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlZG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 3109 : return(xmlCharInRange((unsigned int)code, &xmlZG));
; 3110 : }
pop ebp
ret 0
_xmlUCSIsCatZ ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatSo
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatSo PROC ; COMDAT
; 3095 : xmlUCSIsCatSo(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlSoG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 3096 : return(xmlCharInRange((unsigned int)code, &xmlSoG));
; 3097 : }
pop ebp
ret 0
_xmlUCSIsCatSo ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatSm
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatSm PROC ; COMDAT
; 3082 : xmlUCSIsCatSm(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlSmG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 3083 : return(xmlCharInRange((unsigned int)code, &xmlSmG));
; 3084 : }
pop ebp
ret 0
_xmlUCSIsCatSm ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatSk
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatSk PROC ; COMDAT
; 3069 : xmlUCSIsCatSk(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlSkG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 3070 : return(xmlCharInRange((unsigned int)code, &xmlSkG));
; 3071 : }
pop ebp
ret 0
_xmlUCSIsCatSk ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatSc
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatSc PROC ; COMDAT
; 3056 : xmlUCSIsCatSc(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlScG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 3057 : return(xmlCharInRange((unsigned int)code, &xmlScG));
; 3058 : }
pop ebp
ret 0
_xmlUCSIsCatSc ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatS
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatS PROC ; COMDAT
; 3043 : xmlUCSIsCatS(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlSG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 3044 : return(xmlCharInRange((unsigned int)code, &xmlSG));
; 3045 : }
pop ebp
ret 0
_xmlUCSIsCatS ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatPs
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatPs PROC ; COMDAT
; 3030 : xmlUCSIsCatPs(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlPsG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 3031 : return(xmlCharInRange((unsigned int)code, &xmlPsG));
; 3032 : }
pop ebp
ret 0
_xmlUCSIsCatPs ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatPo
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatPo PROC ; COMDAT
; 3017 : xmlUCSIsCatPo(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlPoG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 3018 : return(xmlCharInRange((unsigned int)code, &xmlPoG));
; 3019 : }
pop ebp
ret 0
_xmlUCSIsCatPo ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatPi
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatPi PROC ; COMDAT
; 3000 : xmlUCSIsCatPi(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
cmp eax, 171 ; 000000abH
je SHORT $LN3@xmlUCSIsCa
; 3001 : return((code == 0xab) ||
cmp eax, 8216 ; 00002018H
je SHORT $LN3@xmlUCSIsCa
cmp eax, 8219 ; 0000201bH
jl SHORT $LN4@xmlUCSIsCa
cmp eax, 8220 ; 0000201cH
jle SHORT $LN3@xmlUCSIsCa
$LN4@xmlUCSIsCa:
cmp eax, 8223 ; 0000201fH
je SHORT $LN3@xmlUCSIsCa
cmp eax, 8249 ; 00002039H
je SHORT $LN3@xmlUCSIsCa
xor eax, eax
; 3002 : (code == 0x2018) ||
; 3003 : ((code >= 0x201b) && (code <= 0x201c)) ||
; 3004 : (code == 0x201f) ||
; 3005 : (code == 0x2039));
; 3006 : }
pop ebp
ret 0
$LN3@xmlUCSIsCa:
; 3001 : return((code == 0xab) ||
mov eax, 1
; 3002 : (code == 0x2018) ||
; 3003 : ((code >= 0x201b) && (code <= 0x201c)) ||
; 3004 : (code == 0x201f) ||
; 3005 : (code == 0x2039));
; 3006 : }
pop ebp
ret 0
_xmlUCSIsCatPi ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatPf
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatPf PROC ; COMDAT
; 2984 : xmlUCSIsCatPf(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
cmp eax, 187 ; 000000bbH
je SHORT $LN3@xmlUCSIsCa
; 2985 : return((code == 0xbb) ||
cmp eax, 8217 ; 00002019H
je SHORT $LN3@xmlUCSIsCa
cmp eax, 8221 ; 0000201dH
je SHORT $LN3@xmlUCSIsCa
cmp eax, 8250 ; 0000203aH
je SHORT $LN3@xmlUCSIsCa
xor eax, eax
; 2986 : (code == 0x2019) ||
; 2987 : (code == 0x201d) ||
; 2988 : (code == 0x203a));
; 2989 : }
pop ebp
ret 0
$LN3@xmlUCSIsCa:
; 2985 : return((code == 0xbb) ||
mov eax, 1
; 2986 : (code == 0x2019) ||
; 2987 : (code == 0x201d) ||
; 2988 : (code == 0x203a));
; 2989 : }
pop ebp
ret 0
_xmlUCSIsCatPf ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatPe
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatPe PROC ; COMDAT
; 2971 : xmlUCSIsCatPe(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlPeG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 2972 : return(xmlCharInRange((unsigned int)code, &xmlPeG));
; 2973 : }
pop ebp
ret 0
_xmlUCSIsCatPe ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatPd
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatPd PROC ; COMDAT
; 2958 : xmlUCSIsCatPd(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlPdG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 2959 : return(xmlCharInRange((unsigned int)code, &xmlPdG));
; 2960 : }
pop ebp
ret 0
_xmlUCSIsCatPd ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatPc
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatPc PROC ; COMDAT
; 2938 : xmlUCSIsCatPc(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
cmp eax, 95 ; 0000005fH
je SHORT $LN4@xmlUCSIsCa
; 2939 : return((code == 0x5f) ||
cmp eax, 8255 ; 0000203fH
jl SHORT $LN3@xmlUCSIsCa
cmp eax, 8256 ; 00002040H
jle SHORT $LN4@xmlUCSIsCa
$LN3@xmlUCSIsCa:
cmp eax, 8276 ; 00002054H
je SHORT $LN4@xmlUCSIsCa
cmp eax, 12539 ; 000030fbH
je SHORT $LN4@xmlUCSIsCa
cmp eax, 65075 ; 0000fe33H
jl SHORT $LN5@xmlUCSIsCa
cmp eax, 65076 ; 0000fe34H
jle SHORT $LN4@xmlUCSIsCa
$LN5@xmlUCSIsCa:
cmp eax, 65101 ; 0000fe4dH
jl SHORT $LN6@xmlUCSIsCa
cmp eax, 65103 ; 0000fe4fH
jle SHORT $LN4@xmlUCSIsCa
$LN6@xmlUCSIsCa:
cmp eax, 65343 ; 0000ff3fH
je SHORT $LN4@xmlUCSIsCa
cmp eax, 65381 ; 0000ff65H
je SHORT $LN4@xmlUCSIsCa
xor eax, eax
; 2940 : ((code >= 0x203f) && (code <= 0x2040)) ||
; 2941 : (code == 0x2054) ||
; 2942 : (code == 0x30fb) ||
; 2943 : ((code >= 0xfe33) && (code <= 0xfe34)) ||
; 2944 : ((code >= 0xfe4d) && (code <= 0xfe4f)) ||
; 2945 : (code == 0xff3f) ||
; 2946 : (code == 0xff65));
; 2947 : }
pop ebp
ret 0
$LN4@xmlUCSIsCa:
; 2939 : return((code == 0x5f) ||
mov eax, 1
; 2940 : ((code >= 0x203f) && (code <= 0x2040)) ||
; 2941 : (code == 0x2054) ||
; 2942 : (code == 0x30fb) ||
; 2943 : ((code >= 0xfe33) && (code <= 0xfe34)) ||
; 2944 : ((code >= 0xfe4d) && (code <= 0xfe4f)) ||
; 2945 : (code == 0xff3f) ||
; 2946 : (code == 0xff65));
; 2947 : }
pop ebp
ret 0
_xmlUCSIsCatPc ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatP
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatP PROC ; COMDAT
; 2925 : xmlUCSIsCatP(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlPG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 2926 : return(xmlCharInRange((unsigned int)code, &xmlPG));
; 2927 : }
pop ebp
ret 0
_xmlUCSIsCatP ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatNo
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatNo PROC ; COMDAT
; 2912 : xmlUCSIsCatNo(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlNoG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 2913 : return(xmlCharInRange((unsigned int)code, &xmlNoG));
; 2914 : }
pop ebp
ret 0
_xmlUCSIsCatNo ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatNl
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatNl PROC ; COMDAT
; 2894 : xmlUCSIsCatNl(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
cmp eax, 5870 ; 000016eeH
jl SHORT $LN3@xmlUCSIsCa
; 2895 : return(((code >= 0x16ee) && (code <= 0x16f0)) ||
cmp eax, 5872 ; 000016f0H
jle SHORT $LN5@xmlUCSIsCa
$LN3@xmlUCSIsCa:
cmp eax, 8544 ; 00002160H
jl SHORT $LN4@xmlUCSIsCa
cmp eax, 8579 ; 00002183H
jle SHORT $LN5@xmlUCSIsCa
$LN4@xmlUCSIsCa:
cmp eax, 12295 ; 00003007H
je SHORT $LN5@xmlUCSIsCa
cmp eax, 12321 ; 00003021H
jl SHORT $LN6@xmlUCSIsCa
cmp eax, 12329 ; 00003029H
jle SHORT $LN5@xmlUCSIsCa
$LN6@xmlUCSIsCa:
cmp eax, 12344 ; 00003038H
jl SHORT $LN7@xmlUCSIsCa
cmp eax, 12346 ; 0000303aH
jle SHORT $LN5@xmlUCSIsCa
$LN7@xmlUCSIsCa:
cmp eax, 66378 ; 0001034aH
je SHORT $LN5@xmlUCSIsCa
xor eax, eax
; 2896 : ((code >= 0x2160) && (code <= 0x2183)) ||
; 2897 : (code == 0x3007) ||
; 2898 : ((code >= 0x3021) && (code <= 0x3029)) ||
; 2899 : ((code >= 0x3038) && (code <= 0x303a)) ||
; 2900 : (code == 0x1034a));
; 2901 : }
pop ebp
ret 0
$LN5@xmlUCSIsCa:
; 2895 : return(((code >= 0x16ee) && (code <= 0x16f0)) ||
mov eax, 1
; 2896 : ((code >= 0x2160) && (code <= 0x2183)) ||
; 2897 : (code == 0x3007) ||
; 2898 : ((code >= 0x3021) && (code <= 0x3029)) ||
; 2899 : ((code >= 0x3038) && (code <= 0x303a)) ||
; 2900 : (code == 0x1034a));
; 2901 : }
pop ebp
ret 0
_xmlUCSIsCatNl ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatNd
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatNd PROC ; COMDAT
; 2881 : xmlUCSIsCatNd(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlNdG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 2882 : return(xmlCharInRange((unsigned int)code, &xmlNdG));
; 2883 : }
pop ebp
ret 0
_xmlUCSIsCatNd ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatN
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatN PROC ; COMDAT
; 2868 : xmlUCSIsCatN(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlNG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 2869 : return(xmlCharInRange((unsigned int)code, &xmlNG));
; 2870 : }
pop ebp
ret 0
_xmlUCSIsCatN ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatMn
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatMn PROC ; COMDAT
; 2855 : xmlUCSIsCatMn(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlMnG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 2856 : return(xmlCharInRange((unsigned int)code, &xmlMnG));
; 2857 : }
pop ebp
ret 0
_xmlUCSIsCatMn ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatMe
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatMe PROC ; COMDAT
; 2839 : xmlUCSIsCatMe(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
cmp eax, 1160 ; 00000488H
jl SHORT $LN3@xmlUCSIsCa
; 2840 : return(((code >= 0x488) && (code <= 0x489)) ||
cmp eax, 1161 ; 00000489H
jle SHORT $LN4@xmlUCSIsCa
$LN3@xmlUCSIsCa:
cmp eax, 1758 ; 000006deH
je SHORT $LN4@xmlUCSIsCa
cmp eax, 8413 ; 000020ddH
jl SHORT $LN5@xmlUCSIsCa
cmp eax, 8416 ; 000020e0H
jle SHORT $LN4@xmlUCSIsCa
$LN5@xmlUCSIsCa:
cmp eax, 8418 ; 000020e2H
jl SHORT $LN6@xmlUCSIsCa
cmp eax, 8420 ; 000020e4H
jle SHORT $LN4@xmlUCSIsCa
$LN6@xmlUCSIsCa:
xor eax, eax
; 2841 : (code == 0x6de) ||
; 2842 : ((code >= 0x20dd) && (code <= 0x20e0)) ||
; 2843 : ((code >= 0x20e2) && (code <= 0x20e4)));
; 2844 : }
pop ebp
ret 0
$LN4@xmlUCSIsCa:
; 2840 : return(((code >= 0x488) && (code <= 0x489)) ||
mov eax, 1
; 2841 : (code == 0x6de) ||
; 2842 : ((code >= 0x20dd) && (code <= 0x20e0)) ||
; 2843 : ((code >= 0x20e2) && (code <= 0x20e4)));
; 2844 : }
pop ebp
ret 0
_xmlUCSIsCatMe ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatMc
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatMc PROC ; COMDAT
; 2826 : xmlUCSIsCatMc(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlMcG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 2827 : return(xmlCharInRange((unsigned int)code, &xmlMcG));
; 2828 : }
pop ebp
ret 0
_xmlUCSIsCatMc ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatM
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatM PROC ; COMDAT
; 2813 : xmlUCSIsCatM(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlMG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 2814 : return(xmlCharInRange((unsigned int)code, &xmlMG));
; 2815 : }
pop ebp
ret 0
_xmlUCSIsCatM ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatLu
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatLu PROC ; COMDAT
; 2800 : xmlUCSIsCatLu(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlLuG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 2801 : return(xmlCharInRange((unsigned int)code, &xmlLuG));
; 2802 : }
pop ebp
ret 0
_xmlUCSIsCatLu ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatLt
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatLt PROC ; COMDAT
; 2787 : xmlUCSIsCatLt(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlLtG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 2788 : return(xmlCharInRange((unsigned int)code, &xmlLtG));
; 2789 : }
pop ebp
ret 0
_xmlUCSIsCatLt ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatLo
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatLo PROC ; COMDAT
; 2774 : xmlUCSIsCatLo(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlLoG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 2775 : return(xmlCharInRange((unsigned int)code, &xmlLoG));
; 2776 : }
pop ebp
ret 0
_xmlUCSIsCatLo ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatLm
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatLm PROC ; COMDAT
; 2761 : xmlUCSIsCatLm(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlLmG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 2762 : return(xmlCharInRange((unsigned int)code, &xmlLmG));
; 2763 : }
pop ebp
ret 0
_xmlUCSIsCatLm ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatLl
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatLl PROC ; COMDAT
; 2748 : xmlUCSIsCatLl(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlLlG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 2749 : return(xmlCharInRange((unsigned int)code, &xmlLlG));
; 2750 : }
pop ebp
ret 0
_xmlUCSIsCatLl ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatL
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatL PROC ; COMDAT
; 2735 : xmlUCSIsCatL(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlLG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 2736 : return(xmlCharInRange((unsigned int)code, &xmlLG));
; 2737 : }
pop ebp
ret 0
_xmlUCSIsCatL ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatCs
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatCs PROC ; COMDAT
; 2719 : xmlUCSIsCatCs(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
cmp eax, 55296 ; 0000d800H
je SHORT $LN4@xmlUCSIsCa
; 2720 : return((code == 0xd800) ||
cmp eax, 56191 ; 0000db7fH
jl SHORT $LN3@xmlUCSIsCa
cmp eax, 56192 ; 0000db80H
jle SHORT $LN4@xmlUCSIsCa
$LN3@xmlUCSIsCa:
cmp eax, 56319 ; 0000dbffH
jl SHORT $LN5@xmlUCSIsCa
cmp eax, 56320 ; 0000dc00H
jle SHORT $LN4@xmlUCSIsCa
$LN5@xmlUCSIsCa:
cmp eax, 57343 ; 0000dfffH
je SHORT $LN4@xmlUCSIsCa
xor eax, eax
; 2721 : ((code >= 0xdb7f) && (code <= 0xdb80)) ||
; 2722 : ((code >= 0xdbff) && (code <= 0xdc00)) ||
; 2723 : (code == 0xdfff));
; 2724 : }
pop ebp
ret 0
$LN4@xmlUCSIsCa:
; 2720 : return((code == 0xd800) ||
mov eax, 1
; 2721 : ((code >= 0xdb7f) && (code <= 0xdb80)) ||
; 2722 : ((code >= 0xdbff) && (code <= 0xdc00)) ||
; 2723 : (code == 0xdfff));
; 2724 : }
pop ebp
ret 0
_xmlUCSIsCatCs ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatCo
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatCo PROC ; COMDAT
; 2701 : xmlUCSIsCatCo(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
cmp eax, 57344 ; 0000e000H
je SHORT $LN3@xmlUCSIsCa
; 2702 : return((code == 0xe000) ||
cmp eax, 63743 ; 0000f8ffH
je SHORT $LN3@xmlUCSIsCa
cmp eax, 983040 ; 000f0000H
je SHORT $LN3@xmlUCSIsCa
cmp eax, 1048573 ; 000ffffdH
je SHORT $LN3@xmlUCSIsCa
cmp eax, 1048576 ; 00100000H
je SHORT $LN3@xmlUCSIsCa
cmp eax, 1114109 ; 0010fffdH
je SHORT $LN3@xmlUCSIsCa
xor eax, eax
; 2703 : (code == 0xf8ff) ||
; 2704 : (code == 0xf0000) ||
; 2705 : (code == 0xffffd) ||
; 2706 : (code == 0x100000) ||
; 2707 : (code == 0x10fffd));
; 2708 : }
pop ebp
ret 0
$LN3@xmlUCSIsCa:
; 2702 : return((code == 0xe000) ||
mov eax, 1
; 2703 : (code == 0xf8ff) ||
; 2704 : (code == 0xf0000) ||
; 2705 : (code == 0xffffd) ||
; 2706 : (code == 0x100000) ||
; 2707 : (code == 0x10fffd));
; 2708 : }
pop ebp
ret 0
_xmlUCSIsCatCo ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatCf
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatCf PROC ; COMDAT
; 2688 : xmlUCSIsCatCf(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlCfG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 2689 : return(xmlCharInRange((unsigned int)code, &xmlCfG));
; 2690 : }
pop ebp
ret 0
_xmlUCSIsCatCf ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatCc
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatCc PROC ; COMDAT
; 2674 : xmlUCSIsCatCc(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
test eax, eax
js SHORT $LN3@xmlUCSIsCa
; 2675 : return(((code >= 0x0) && (code <= 0x1f)) ||
cmp eax, 31 ; 0000001fH
jle SHORT $LN5@xmlUCSIsCa
$LN3@xmlUCSIsCa:
add eax, -127 ; ffffff81H
cmp eax, 32 ; 00000020H
ja SHORT $LN4@xmlUCSIsCa
$LN5@xmlUCSIsCa:
mov eax, 1
; 2676 : ((code >= 0x7f) && (code <= 0x9f)));
; 2677 : }
pop ebp
ret 0
$LN4@xmlUCSIsCa:
; 2675 : return(((code >= 0x0) && (code <= 0x1f)) ||
xor eax, eax
; 2676 : ((code >= 0x7f) && (code <= 0x9f)));
; 2677 : }
pop ebp
ret 0
_xmlUCSIsCatCc ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCatC
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCatC PROC ; COMDAT
; 2661 : xmlUCSIsCatC(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push OFFSET _xmlCG
push DWORD PTR _code$[ebp]
call _xmlCharInRange
add esp, 8
; 2662 : return(xmlCharInRange((unsigned int)code, &xmlCG));
; 2663 : }
pop ebp
ret 0
_xmlUCSIsCatC ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsBlock
_TEXT SEGMENT
_code$ = 8 ; size = 4
_block$ = 12 ; size = 4
_xmlUCSIsBlock PROC ; COMDAT
; 2643 : xmlUCSIsBlock(int code, const char *block) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
push DWORD PTR _block$[ebp]
push OFFSET _xmlUnicodeBlockTbl
call _xmlUnicodeLookup
add esp, 8
test eax, eax
jne SHORT $LN2@xmlUCSIsBl
; 2644 : xmlIntFunc *func;
; 2645 :
; 2646 : func = xmlUnicodeLookup(&xmlUnicodeBlockTbl, block);
; 2647 : if (func == NULL)
; 2648 : return (-1);
or eax, -1
; 2650 : }
pop ebp
ret 0
$LN2@xmlUCSIsBl:
; 2649 : return (func(code));
push DWORD PTR _code$[ebp]
call eax
add esp, 4
; 2650 : }
pop ebp
ret 0
_xmlUCSIsBlock ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsYijingHexagramSymbols
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsYijingHexagramSymbols PROC ; COMDAT
; 2629 : xmlUCSIsYijingHexagramSymbols(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 63 ; 0000003fH
add eax, -19904 ; ffffb240H
cmp ecx, eax
sbb eax, eax
inc eax
; 2630 : return(((code >= 0x4DC0) && (code <= 0x4DFF)));
; 2631 : }
pop ebp
ret 0
_xmlUCSIsYijingHexagramSymbols ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsYiSyllables
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsYiSyllables PROC ; COMDAT
; 2616 : xmlUCSIsYiSyllables(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 1167 ; 0000048fH
add eax, -40960 ; ffff6000H
cmp ecx, eax
sbb eax, eax
inc eax
; 2617 : return(((code >= 0xA000) && (code <= 0xA48F)));
; 2618 : }
pop ebp
ret 0
_xmlUCSIsYiSyllables ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsYiRadicals
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsYiRadicals PROC ; COMDAT
; 2603 : xmlUCSIsYiRadicals(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 63 ; 0000003fH
add eax, -42128 ; ffff5b70H
cmp ecx, eax
sbb eax, eax
inc eax
; 2604 : return(((code >= 0xA490) && (code <= 0xA4CF)));
; 2605 : }
pop ebp
ret 0
_xmlUCSIsYiRadicals ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsVariationSelectorsSupplement
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsVariationSelectorsSupplement PROC ; COMDAT
; 2590 : xmlUCSIsVariationSelectorsSupplement(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 239 ; 000000efH
add eax, -917760 ; fff1ff00H
cmp ecx, eax
sbb eax, eax
inc eax
; 2591 : return(((code >= 0xE0100) && (code <= 0xE01EF)));
; 2592 : }
pop ebp
ret 0
_xmlUCSIsVariationSelectorsSupplement ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsVariationSelectors
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsVariationSelectors PROC ; COMDAT
; 2577 : xmlUCSIsVariationSelectors(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 15 ; 0000000fH
add eax, -65024 ; ffff0200H
cmp ecx, eax
sbb eax, eax
inc eax
; 2578 : return(((code >= 0xFE00) && (code <= 0xFE0F)));
; 2579 : }
pop ebp
ret 0
_xmlUCSIsVariationSelectors ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsUnifiedCanadianAboriginalSyllabics
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsUnifiedCanadianAboriginalSyllabics PROC ; COMDAT
; 2564 : xmlUCSIsUnifiedCanadianAboriginalSyllabics(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 639 ; 0000027fH
add eax, -5120 ; ffffec00H
cmp ecx, eax
sbb eax, eax
inc eax
; 2565 : return(((code >= 0x1400) && (code <= 0x167F)));
; 2566 : }
pop ebp
ret 0
_xmlUCSIsUnifiedCanadianAboriginalSyllabics ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsUgaritic
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsUgaritic PROC ; COMDAT
; 2551 : xmlUCSIsUgaritic(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 31 ; 0000001fH
add eax, -66432 ; fffefc80H
cmp ecx, eax
sbb eax, eax
inc eax
; 2552 : return(((code >= 0x10380) && (code <= 0x1039F)));
; 2553 : }
pop ebp
ret 0
_xmlUCSIsUgaritic ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsTibetan
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsTibetan PROC ; COMDAT
; 2538 : xmlUCSIsTibetan(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 255 ; 000000ffH
add eax, -3840 ; fffff100H
cmp ecx, eax
sbb eax, eax
inc eax
; 2539 : return(((code >= 0x0F00) && (code <= 0x0FFF)));
; 2540 : }
pop ebp
ret 0
_xmlUCSIsTibetan ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsThai
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsThai PROC ; COMDAT
; 2525 : xmlUCSIsThai(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -3584 ; fffff200H
cmp ecx, eax
sbb eax, eax
inc eax
; 2526 : return(((code >= 0x0E00) && (code <= 0x0E7F)));
; 2527 : }
pop ebp
ret 0
_xmlUCSIsThai ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsThaana
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsThaana PROC ; COMDAT
; 2512 : xmlUCSIsThaana(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 63 ; 0000003fH
add eax, -1920 ; fffff880H
cmp ecx, eax
sbb eax, eax
inc eax
; 2513 : return(((code >= 0x0780) && (code <= 0x07BF)));
; 2514 : }
pop ebp
ret 0
_xmlUCSIsThaana ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsTelugu
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsTelugu PROC ; COMDAT
; 2499 : xmlUCSIsTelugu(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -3072 ; fffff400H
cmp ecx, eax
sbb eax, eax
inc eax
; 2500 : return(((code >= 0x0C00) && (code <= 0x0C7F)));
; 2501 : }
pop ebp
ret 0
_xmlUCSIsTelugu ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsTamil
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsTamil PROC ; COMDAT
; 2486 : xmlUCSIsTamil(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -2944 ; fffff480H
cmp ecx, eax
sbb eax, eax
inc eax
; 2487 : return(((code >= 0x0B80) && (code <= 0x0BFF)));
; 2488 : }
pop ebp
ret 0
_xmlUCSIsTamil ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsTaiXuanJingSymbols
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsTaiXuanJingSymbols PROC ; COMDAT
; 2473 : xmlUCSIsTaiXuanJingSymbols(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 95 ; 0000005fH
add eax, -119552 ; fffe2d00H
cmp ecx, eax
sbb eax, eax
inc eax
; 2474 : return(((code >= 0x1D300) && (code <= 0x1D35F)));
; 2475 : }
pop ebp
ret 0
_xmlUCSIsTaiXuanJingSymbols ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsTaiLe
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsTaiLe PROC ; COMDAT
; 2460 : xmlUCSIsTaiLe(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 47 ; 0000002fH
add eax, -6480 ; ffffe6b0H
cmp ecx, eax
sbb eax, eax
inc eax
; 2461 : return(((code >= 0x1950) && (code <= 0x197F)));
; 2462 : }
pop ebp
ret 0
_xmlUCSIsTaiLe ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsTags
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsTags PROC ; COMDAT
; 2447 : xmlUCSIsTags(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -917504 ; fff20000H
cmp ecx, eax
sbb eax, eax
inc eax
; 2448 : return(((code >= 0xE0000) && (code <= 0xE007F)));
; 2449 : }
pop ebp
ret 0
_xmlUCSIsTags ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsTagbanwa
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsTagbanwa PROC ; COMDAT
; 2434 : xmlUCSIsTagbanwa(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 31 ; 0000001fH
add eax, -5984 ; ffffe8a0H
cmp ecx, eax
sbb eax, eax
inc eax
; 2435 : return(((code >= 0x1760) && (code <= 0x177F)));
; 2436 : }
pop ebp
ret 0
_xmlUCSIsTagbanwa ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsTagalog
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsTagalog PROC ; COMDAT
; 2421 : xmlUCSIsTagalog(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 31 ; 0000001fH
add eax, -5888 ; ffffe900H
cmp ecx, eax
sbb eax, eax
inc eax
; 2422 : return(((code >= 0x1700) && (code <= 0x171F)));
; 2423 : }
pop ebp
ret 0
_xmlUCSIsTagalog ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsSyriac
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsSyriac PROC ; COMDAT
; 2408 : xmlUCSIsSyriac(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 79 ; 0000004fH
add eax, -1792 ; fffff900H
cmp ecx, eax
sbb eax, eax
inc eax
; 2409 : return(((code >= 0x0700) && (code <= 0x074F)));
; 2410 : }
pop ebp
ret 0
_xmlUCSIsSyriac ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsSupplementaryPrivateUseAreaB
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsSupplementaryPrivateUseAreaB PROC ; COMDAT
; 2395 : xmlUCSIsSupplementaryPrivateUseAreaB(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 65535 ; 0000ffffH
add eax, -1048576 ; fff00000H
cmp ecx, eax
sbb eax, eax
inc eax
; 2396 : return(((code >= 0x100000) && (code <= 0x10FFFF)));
; 2397 : }
pop ebp
ret 0
_xmlUCSIsSupplementaryPrivateUseAreaB ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsSupplementaryPrivateUseAreaA
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsSupplementaryPrivateUseAreaA PROC ; COMDAT
; 2382 : xmlUCSIsSupplementaryPrivateUseAreaA(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 65535 ; 0000ffffH
add eax, -983040 ; fff10000H
cmp ecx, eax
sbb eax, eax
inc eax
; 2383 : return(((code >= 0xF0000) && (code <= 0xFFFFF)));
; 2384 : }
pop ebp
ret 0
_xmlUCSIsSupplementaryPrivateUseAreaA ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsSupplementalMathematicalOperators
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsSupplementalMathematicalOperators PROC ; COMDAT
; 2369 : xmlUCSIsSupplementalMathematicalOperators(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 255 ; 000000ffH
add eax, -10752 ; ffffd600H
cmp ecx, eax
sbb eax, eax
inc eax
; 2370 : return(((code >= 0x2A00) && (code <= 0x2AFF)));
; 2371 : }
pop ebp
ret 0
_xmlUCSIsSupplementalMathematicalOperators ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsSupplementalArrowsB
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsSupplementalArrowsB PROC ; COMDAT
; 2356 : xmlUCSIsSupplementalArrowsB(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -10496 ; ffffd700H
cmp ecx, eax
sbb eax, eax
inc eax
; 2357 : return(((code >= 0x2900) && (code <= 0x297F)));
; 2358 : }
pop ebp
ret 0
_xmlUCSIsSupplementalArrowsB ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsSupplementalArrowsA
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsSupplementalArrowsA PROC ; COMDAT
; 2343 : xmlUCSIsSupplementalArrowsA(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 15 ; 0000000fH
add eax, -10224 ; ffffd810H
cmp ecx, eax
sbb eax, eax
inc eax
; 2344 : return(((code >= 0x27F0) && (code <= 0x27FF)));
; 2345 : }
pop ebp
ret 0
_xmlUCSIsSupplementalArrowsA ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsSuperscriptsandSubscripts
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsSuperscriptsandSubscripts PROC ; COMDAT
; 2330 : xmlUCSIsSuperscriptsandSubscripts(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 47 ; 0000002fH
add eax, -8304 ; ffffdf90H
cmp ecx, eax
sbb eax, eax
inc eax
; 2331 : return(((code >= 0x2070) && (code <= 0x209F)));
; 2332 : }
pop ebp
ret 0
_xmlUCSIsSuperscriptsandSubscripts ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsSpecials
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsSpecials PROC ; COMDAT
; 2317 : xmlUCSIsSpecials(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 15 ; 0000000fH
add eax, -65520 ; ffff0010H
cmp ecx, eax
sbb eax, eax
inc eax
; 2318 : return(((code >= 0xFFF0) && (code <= 0xFFFF)));
; 2319 : }
pop ebp
ret 0
_xmlUCSIsSpecials ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsSpacingModifierLetters
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsSpacingModifierLetters PROC ; COMDAT
; 2304 : xmlUCSIsSpacingModifierLetters(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 79 ; 0000004fH
add eax, -688 ; fffffd50H
cmp ecx, eax
sbb eax, eax
inc eax
; 2305 : return(((code >= 0x02B0) && (code <= 0x02FF)));
; 2306 : }
pop ebp
ret 0
_xmlUCSIsSpacingModifierLetters ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsSmallFormVariants
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsSmallFormVariants PROC ; COMDAT
; 2291 : xmlUCSIsSmallFormVariants(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 31 ; 0000001fH
add eax, -65104 ; ffff01b0H
cmp ecx, eax
sbb eax, eax
inc eax
; 2292 : return(((code >= 0xFE50) && (code <= 0xFE6F)));
; 2293 : }
pop ebp
ret 0
_xmlUCSIsSmallFormVariants ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsSinhala
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsSinhala PROC ; COMDAT
; 2278 : xmlUCSIsSinhala(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -3456 ; fffff280H
cmp ecx, eax
sbb eax, eax
inc eax
; 2279 : return(((code >= 0x0D80) && (code <= 0x0DFF)));
; 2280 : }
pop ebp
ret 0
_xmlUCSIsSinhala ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsShavian
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsShavian PROC ; COMDAT
; 2265 : xmlUCSIsShavian(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 47 ; 0000002fH
add eax, -66640 ; fffefbb0H
cmp ecx, eax
sbb eax, eax
inc eax
; 2266 : return(((code >= 0x10450) && (code <= 0x1047F)));
; 2267 : }
pop ebp
ret 0
_xmlUCSIsShavian ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsRunic
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsRunic PROC ; COMDAT
; 2252 : xmlUCSIsRunic(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 95 ; 0000005fH
add eax, -5792 ; ffffe960H
cmp ecx, eax
sbb eax, eax
inc eax
; 2253 : return(((code >= 0x16A0) && (code <= 0x16FF)));
; 2254 : }
pop ebp
ret 0
_xmlUCSIsRunic ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsPrivateUseArea
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsPrivateUseArea PROC ; COMDAT
; 2239 : xmlUCSIsPrivateUseArea(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 6399 ; 000018ffH
add eax, -57344 ; ffff2000H
cmp ecx, eax
sbb eax, eax
inc eax
; 2240 : return(((code >= 0xE000) && (code <= 0xF8FF)));
; 2241 : }
pop ebp
ret 0
_xmlUCSIsPrivateUseArea ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsPrivateUse
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsPrivateUse PROC ; COMDAT
; 2224 : xmlUCSIsPrivateUse(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
cmp eax, 57344 ; 0000e000H
jl SHORT $LN3@xmlUCSIsPr
; 2225 : return(((code >= 0xE000) && (code <= 0xF8FF)) ||
cmp eax, 63743 ; 0000f8ffH
jle SHORT $LN5@xmlUCSIsPr
$LN3@xmlUCSIsPr:
cmp eax, 983040 ; 000f0000H
jl SHORT $LN4@xmlUCSIsPr
cmp eax, 1048575 ; 000fffffH
jle SHORT $LN5@xmlUCSIsPr
$LN4@xmlUCSIsPr:
add eax, -1048576 ; fff00000H
cmp eax, 65535 ; 0000ffffH
ja SHORT $LN6@xmlUCSIsPr
$LN5@xmlUCSIsPr:
mov eax, 1
; 2226 : ((code >= 0xF0000) && (code <= 0xFFFFF)) ||
; 2227 : ((code >= 0x100000) && (code <= 0x10FFFF)));
; 2228 : }
pop ebp
ret 0
$LN6@xmlUCSIsPr:
; 2225 : return(((code >= 0xE000) && (code <= 0xF8FF)) ||
xor eax, eax
; 2226 : ((code >= 0xF0000) && (code <= 0xFFFFF)) ||
; 2227 : ((code >= 0x100000) && (code <= 0x10FFFF)));
; 2228 : }
pop ebp
ret 0
_xmlUCSIsPrivateUse ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsPhoneticExtensions
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsPhoneticExtensions PROC ; COMDAT
; 2211 : xmlUCSIsPhoneticExtensions(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -7424 ; ffffe300H
cmp ecx, eax
sbb eax, eax
inc eax
; 2212 : return(((code >= 0x1D00) && (code <= 0x1D7F)));
; 2213 : }
pop ebp
ret 0
_xmlUCSIsPhoneticExtensions ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsOsmanya
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsOsmanya PROC ; COMDAT
; 2198 : xmlUCSIsOsmanya(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 47 ; 0000002fH
add eax, -66688 ; fffefb80H
cmp ecx, eax
sbb eax, eax
inc eax
; 2199 : return(((code >= 0x10480) && (code <= 0x104AF)));
; 2200 : }
pop ebp
ret 0
_xmlUCSIsOsmanya ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsOriya
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsOriya PROC ; COMDAT
; 2185 : xmlUCSIsOriya(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -2816 ; fffff500H
cmp ecx, eax
sbb eax, eax
inc eax
; 2186 : return(((code >= 0x0B00) && (code <= 0x0B7F)));
; 2187 : }
pop ebp
ret 0
_xmlUCSIsOriya ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsOpticalCharacterRecognition
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsOpticalCharacterRecognition PROC ; COMDAT
; 2172 : xmlUCSIsOpticalCharacterRecognition(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 31 ; 0000001fH
add eax, -9280 ; ffffdbc0H
cmp ecx, eax
sbb eax, eax
inc eax
; 2173 : return(((code >= 0x2440) && (code <= 0x245F)));
; 2174 : }
pop ebp
ret 0
_xmlUCSIsOpticalCharacterRecognition ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsOldItalic
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsOldItalic PROC ; COMDAT
; 2159 : xmlUCSIsOldItalic(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 47 ; 0000002fH
add eax, -66304 ; fffefd00H
cmp ecx, eax
sbb eax, eax
inc eax
; 2160 : return(((code >= 0x10300) && (code <= 0x1032F)));
; 2161 : }
pop ebp
ret 0
_xmlUCSIsOldItalic ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsOgham
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsOgham PROC ; COMDAT
; 2146 : xmlUCSIsOgham(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 31 ; 0000001fH
add eax, -5760 ; ffffe980H
cmp ecx, eax
sbb eax, eax
inc eax
; 2147 : return(((code >= 0x1680) && (code <= 0x169F)));
; 2148 : }
pop ebp
ret 0
_xmlUCSIsOgham ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsNumberForms
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsNumberForms PROC ; COMDAT
; 2133 : xmlUCSIsNumberForms(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 63 ; 0000003fH
add eax, -8528 ; ffffdeb0H
cmp ecx, eax
sbb eax, eax
inc eax
; 2134 : return(((code >= 0x2150) && (code <= 0x218F)));
; 2135 : }
pop ebp
ret 0
_xmlUCSIsNumberForms ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsMyanmar
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsMyanmar PROC ; COMDAT
; 2120 : xmlUCSIsMyanmar(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 159 ; 0000009fH
add eax, -4096 ; fffff000H
cmp ecx, eax
sbb eax, eax
inc eax
; 2121 : return(((code >= 0x1000) && (code <= 0x109F)));
; 2122 : }
pop ebp
ret 0
_xmlUCSIsMyanmar ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsMusicalSymbols
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsMusicalSymbols PROC ; COMDAT
; 2107 : xmlUCSIsMusicalSymbols(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 255 ; 000000ffH
add eax, -119040 ; fffe2f00H
cmp ecx, eax
sbb eax, eax
inc eax
; 2108 : return(((code >= 0x1D100) && (code <= 0x1D1FF)));
; 2109 : }
pop ebp
ret 0
_xmlUCSIsMusicalSymbols ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsMongolian
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsMongolian PROC ; COMDAT
; 2094 : xmlUCSIsMongolian(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 175 ; 000000afH
add eax, -6144 ; ffffe800H
cmp ecx, eax
sbb eax, eax
inc eax
; 2095 : return(((code >= 0x1800) && (code <= 0x18AF)));
; 2096 : }
pop ebp
ret 0
_xmlUCSIsMongolian ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsMiscellaneousTechnical
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsMiscellaneousTechnical PROC ; COMDAT
; 2081 : xmlUCSIsMiscellaneousTechnical(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 255 ; 000000ffH
add eax, -8960 ; ffffdd00H
cmp ecx, eax
sbb eax, eax
inc eax
; 2082 : return(((code >= 0x2300) && (code <= 0x23FF)));
; 2083 : }
pop ebp
ret 0
_xmlUCSIsMiscellaneousTechnical ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsMiscellaneousSymbolsandArrows
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsMiscellaneousSymbolsandArrows PROC ; COMDAT
; 2068 : xmlUCSIsMiscellaneousSymbolsandArrows(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 255 ; 000000ffH
add eax, -11008 ; ffffd500H
cmp ecx, eax
sbb eax, eax
inc eax
; 2069 : return(((code >= 0x2B00) && (code <= 0x2BFF)));
; 2070 : }
pop ebp
ret 0
_xmlUCSIsMiscellaneousSymbolsandArrows ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsMiscellaneousSymbols
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsMiscellaneousSymbols PROC ; COMDAT
; 2055 : xmlUCSIsMiscellaneousSymbols(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 255 ; 000000ffH
add eax, -9728 ; ffffda00H
cmp ecx, eax
sbb eax, eax
inc eax
; 2056 : return(((code >= 0x2600) && (code <= 0x26FF)));
; 2057 : }
pop ebp
ret 0
_xmlUCSIsMiscellaneousSymbols ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsMiscellaneousMathematicalSymbolsB
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsMiscellaneousMathematicalSymbolsB PROC ; COMDAT
; 2042 : xmlUCSIsMiscellaneousMathematicalSymbolsB(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -10624 ; ffffd680H
cmp ecx, eax
sbb eax, eax
inc eax
; 2043 : return(((code >= 0x2980) && (code <= 0x29FF)));
; 2044 : }
pop ebp
ret 0
_xmlUCSIsMiscellaneousMathematicalSymbolsB ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsMiscellaneousMathematicalSymbolsA
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsMiscellaneousMathematicalSymbolsA PROC ; COMDAT
; 2029 : xmlUCSIsMiscellaneousMathematicalSymbolsA(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 47 ; 0000002fH
add eax, -10176 ; ffffd840H
cmp ecx, eax
sbb eax, eax
inc eax
; 2030 : return(((code >= 0x27C0) && (code <= 0x27EF)));
; 2031 : }
pop ebp
ret 0
_xmlUCSIsMiscellaneousMathematicalSymbolsA ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsMathematicalOperators
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsMathematicalOperators PROC ; COMDAT
; 2016 : xmlUCSIsMathematicalOperators(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 255 ; 000000ffH
add eax, -8704 ; ffffde00H
cmp ecx, eax
sbb eax, eax
inc eax
; 2017 : return(((code >= 0x2200) && (code <= 0x22FF)));
; 2018 : }
pop ebp
ret 0
_xmlUCSIsMathematicalOperators ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsMathematicalAlphanumericSymbols
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsMathematicalAlphanumericSymbols PROC ; COMDAT
; 2003 : xmlUCSIsMathematicalAlphanumericSymbols(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 1023 ; 000003ffH
add eax, -119808 ; fffe2c00H
cmp ecx, eax
sbb eax, eax
inc eax
; 2004 : return(((code >= 0x1D400) && (code <= 0x1D7FF)));
; 2005 : }
pop ebp
ret 0
_xmlUCSIsMathematicalAlphanumericSymbols ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsMalayalam
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsMalayalam PROC ; COMDAT
; 1990 : xmlUCSIsMalayalam(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -3328 ; fffff300H
cmp ecx, eax
sbb eax, eax
inc eax
; 1991 : return(((code >= 0x0D00) && (code <= 0x0D7F)));
; 1992 : }
pop ebp
ret 0
_xmlUCSIsMalayalam ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsLowSurrogates
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsLowSurrogates PROC ; COMDAT
; 1977 : xmlUCSIsLowSurrogates(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 1023 ; 000003ffH
add eax, -56320 ; ffff2400H
cmp ecx, eax
sbb eax, eax
inc eax
; 1978 : return(((code >= 0xDC00) && (code <= 0xDFFF)));
; 1979 : }
pop ebp
ret 0
_xmlUCSIsLowSurrogates ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsLinearBSyllabary
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsLinearBSyllabary PROC ; COMDAT
; 1964 : xmlUCSIsLinearBSyllabary(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -65536 ; ffff0000H
cmp ecx, eax
sbb eax, eax
inc eax
; 1965 : return(((code >= 0x10000) && (code <= 0x1007F)));
; 1966 : }
pop ebp
ret 0
_xmlUCSIsLinearBSyllabary ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsLinearBIdeograms
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsLinearBIdeograms PROC ; COMDAT
; 1951 : xmlUCSIsLinearBIdeograms(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -65664 ; fffeff80H
cmp ecx, eax
sbb eax, eax
inc eax
; 1952 : return(((code >= 0x10080) && (code <= 0x100FF)));
; 1953 : }
pop ebp
ret 0
_xmlUCSIsLinearBIdeograms ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsLimbu
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsLimbu PROC ; COMDAT
; 1938 : xmlUCSIsLimbu(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 79 ; 0000004fH
add eax, -6400 ; ffffe700H
cmp ecx, eax
sbb eax, eax
inc eax
; 1939 : return(((code >= 0x1900) && (code <= 0x194F)));
; 1940 : }
pop ebp
ret 0
_xmlUCSIsLimbu ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsLetterlikeSymbols
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsLetterlikeSymbols PROC ; COMDAT
; 1925 : xmlUCSIsLetterlikeSymbols(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 79 ; 0000004fH
add eax, -8448 ; ffffdf00H
cmp ecx, eax
sbb eax, eax
inc eax
; 1926 : return(((code >= 0x2100) && (code <= 0x214F)));
; 1927 : }
pop ebp
ret 0
_xmlUCSIsLetterlikeSymbols ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsLatinExtendedAdditional
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsLatinExtendedAdditional PROC ; COMDAT
; 1912 : xmlUCSIsLatinExtendedAdditional(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 255 ; 000000ffH
add eax, -7680 ; ffffe200H
cmp ecx, eax
sbb eax, eax
inc eax
; 1913 : return(((code >= 0x1E00) && (code <= 0x1EFF)));
; 1914 : }
pop ebp
ret 0
_xmlUCSIsLatinExtendedAdditional ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsLatinExtendedB
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsLatinExtendedB PROC ; COMDAT
; 1899 : xmlUCSIsLatinExtendedB(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 207 ; 000000cfH
add eax, -384 ; fffffe80H
cmp ecx, eax
sbb eax, eax
inc eax
; 1900 : return(((code >= 0x0180) && (code <= 0x024F)));
; 1901 : }
pop ebp
ret 0
_xmlUCSIsLatinExtendedB ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsLatinExtendedA
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsLatinExtendedA PROC ; COMDAT
; 1886 : xmlUCSIsLatinExtendedA(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -256 ; ffffff00H
cmp ecx, eax
sbb eax, eax
inc eax
; 1887 : return(((code >= 0x0100) && (code <= 0x017F)));
; 1888 : }
pop ebp
ret 0
_xmlUCSIsLatinExtendedA ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsLatin1Supplement
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsLatin1Supplement PROC ; COMDAT
; 1873 : xmlUCSIsLatin1Supplement(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -128 ; ffffff80H
cmp ecx, eax
sbb eax, eax
inc eax
; 1874 : return(((code >= 0x0080) && (code <= 0x00FF)));
; 1875 : }
pop ebp
ret 0
_xmlUCSIsLatin1Supplement ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsLao
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsLao PROC ; COMDAT
; 1860 : xmlUCSIsLao(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -3712 ; fffff180H
cmp ecx, eax
sbb eax, eax
inc eax
; 1861 : return(((code >= 0x0E80) && (code <= 0x0EFF)));
; 1862 : }
pop ebp
ret 0
_xmlUCSIsLao ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsKhmerSymbols
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsKhmerSymbols PROC ; COMDAT
; 1847 : xmlUCSIsKhmerSymbols(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 31 ; 0000001fH
add eax, -6624 ; ffffe620H
cmp ecx, eax
sbb eax, eax
inc eax
; 1848 : return(((code >= 0x19E0) && (code <= 0x19FF)));
; 1849 : }
pop ebp
ret 0
_xmlUCSIsKhmerSymbols ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsKhmer
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsKhmer PROC ; COMDAT
; 1834 : xmlUCSIsKhmer(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -6016 ; ffffe880H
cmp ecx, eax
sbb eax, eax
inc eax
; 1835 : return(((code >= 0x1780) && (code <= 0x17FF)));
; 1836 : }
pop ebp
ret 0
_xmlUCSIsKhmer ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsKatakanaPhoneticExtensions
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsKatakanaPhoneticExtensions PROC ; COMDAT
; 1821 : xmlUCSIsKatakanaPhoneticExtensions(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 15 ; 0000000fH
add eax, -12784 ; ffffce10H
cmp ecx, eax
sbb eax, eax
inc eax
; 1822 : return(((code >= 0x31F0) && (code <= 0x31FF)));
; 1823 : }
pop ebp
ret 0
_xmlUCSIsKatakanaPhoneticExtensions ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsKatakana
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsKatakana PROC ; COMDAT
; 1808 : xmlUCSIsKatakana(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 95 ; 0000005fH
add eax, -12448 ; ffffcf60H
cmp ecx, eax
sbb eax, eax
inc eax
; 1809 : return(((code >= 0x30A0) && (code <= 0x30FF)));
; 1810 : }
pop ebp
ret 0
_xmlUCSIsKatakana ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsKannada
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsKannada PROC ; COMDAT
; 1795 : xmlUCSIsKannada(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -3200 ; fffff380H
cmp ecx, eax
sbb eax, eax
inc eax
; 1796 : return(((code >= 0x0C80) && (code <= 0x0CFF)));
; 1797 : }
pop ebp
ret 0
_xmlUCSIsKannada ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsKangxiRadicals
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsKangxiRadicals PROC ; COMDAT
; 1782 : xmlUCSIsKangxiRadicals(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 223 ; 000000dfH
add eax, -12032 ; ffffd100H
cmp ecx, eax
sbb eax, eax
inc eax
; 1783 : return(((code >= 0x2F00) && (code <= 0x2FDF)));
; 1784 : }
pop ebp
ret 0
_xmlUCSIsKangxiRadicals ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsKanbun
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsKanbun PROC ; COMDAT
; 1769 : xmlUCSIsKanbun(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 15 ; 0000000fH
add eax, -12688 ; ffffce70H
cmp ecx, eax
sbb eax, eax
inc eax
; 1770 : return(((code >= 0x3190) && (code <= 0x319F)));
; 1771 : }
pop ebp
ret 0
_xmlUCSIsKanbun ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsIdeographicDescriptionCharacters
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsIdeographicDescriptionCharacters PROC ; COMDAT
; 1756 : xmlUCSIsIdeographicDescriptionCharacters(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 15 ; 0000000fH
add eax, -12272 ; ffffd010H
cmp ecx, eax
sbb eax, eax
inc eax
; 1757 : return(((code >= 0x2FF0) && (code <= 0x2FFF)));
; 1758 : }
pop ebp
ret 0
_xmlUCSIsIdeographicDescriptionCharacters ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsIPAExtensions
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsIPAExtensions PROC ; COMDAT
; 1743 : xmlUCSIsIPAExtensions(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 95 ; 0000005fH
add eax, -592 ; fffffdb0H
cmp ecx, eax
sbb eax, eax
inc eax
; 1744 : return(((code >= 0x0250) && (code <= 0x02AF)));
; 1745 : }
pop ebp
ret 0
_xmlUCSIsIPAExtensions ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsHiragana
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsHiragana PROC ; COMDAT
; 1730 : xmlUCSIsHiragana(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 95 ; 0000005fH
add eax, -12352 ; ffffcfc0H
cmp ecx, eax
sbb eax, eax
inc eax
; 1731 : return(((code >= 0x3040) && (code <= 0x309F)));
; 1732 : }
pop ebp
ret 0
_xmlUCSIsHiragana ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsHighSurrogates
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsHighSurrogates PROC ; COMDAT
; 1717 : xmlUCSIsHighSurrogates(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 895 ; 0000037fH
add eax, -55296 ; ffff2800H
cmp ecx, eax
sbb eax, eax
inc eax
; 1718 : return(((code >= 0xD800) && (code <= 0xDB7F)));
; 1719 : }
pop ebp
ret 0
_xmlUCSIsHighSurrogates ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsHighPrivateUseSurrogates
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsHighPrivateUseSurrogates PROC ; COMDAT
; 1704 : xmlUCSIsHighPrivateUseSurrogates(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -56192 ; ffff2480H
cmp ecx, eax
sbb eax, eax
inc eax
; 1705 : return(((code >= 0xDB80) && (code <= 0xDBFF)));
; 1706 : }
pop ebp
ret 0
_xmlUCSIsHighPrivateUseSurrogates ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsHebrew
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsHebrew PROC ; COMDAT
; 1691 : xmlUCSIsHebrew(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 111 ; 0000006fH
add eax, -1424 ; fffffa70H
cmp ecx, eax
sbb eax, eax
inc eax
; 1692 : return(((code >= 0x0590) && (code <= 0x05FF)));
; 1693 : }
pop ebp
ret 0
_xmlUCSIsHebrew ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsHanunoo
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsHanunoo PROC ; COMDAT
; 1678 : xmlUCSIsHanunoo(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 31 ; 0000001fH
add eax, -5920 ; ffffe8e0H
cmp ecx, eax
sbb eax, eax
inc eax
; 1679 : return(((code >= 0x1720) && (code <= 0x173F)));
; 1680 : }
pop ebp
ret 0
_xmlUCSIsHanunoo ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsHangulSyllables
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsHangulSyllables PROC ; COMDAT
; 1665 : xmlUCSIsHangulSyllables(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 11183 ; 00002bafH
add eax, -44032 ; ffff5400H
cmp ecx, eax
sbb eax, eax
inc eax
; 1666 : return(((code >= 0xAC00) && (code <= 0xD7AF)));
; 1667 : }
pop ebp
ret 0
_xmlUCSIsHangulSyllables ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsHangulJamo
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsHangulJamo PROC ; COMDAT
; 1652 : xmlUCSIsHangulJamo(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 255 ; 000000ffH
add eax, -4352 ; ffffef00H
cmp ecx, eax
sbb eax, eax
inc eax
; 1653 : return(((code >= 0x1100) && (code <= 0x11FF)));
; 1654 : }
pop ebp
ret 0
_xmlUCSIsHangulJamo ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsHangulCompatibilityJamo
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsHangulCompatibilityJamo PROC ; COMDAT
; 1639 : xmlUCSIsHangulCompatibilityJamo(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 95 ; 0000005fH
add eax, -12592 ; ffffced0H
cmp ecx, eax
sbb eax, eax
inc eax
; 1640 : return(((code >= 0x3130) && (code <= 0x318F)));
; 1641 : }
pop ebp
ret 0
_xmlUCSIsHangulCompatibilityJamo ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsHalfwidthandFullwidthForms
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsHalfwidthandFullwidthForms PROC ; COMDAT
; 1626 : xmlUCSIsHalfwidthandFullwidthForms(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 239 ; 000000efH
add eax, -65280 ; ffff0100H
cmp ecx, eax
sbb eax, eax
inc eax
; 1627 : return(((code >= 0xFF00) && (code <= 0xFFEF)));
; 1628 : }
pop ebp
ret 0
_xmlUCSIsHalfwidthandFullwidthForms ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsGurmukhi
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsGurmukhi PROC ; COMDAT
; 1613 : xmlUCSIsGurmukhi(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -2560 ; fffff600H
cmp ecx, eax
sbb eax, eax
inc eax
; 1614 : return(((code >= 0x0A00) && (code <= 0x0A7F)));
; 1615 : }
pop ebp
ret 0
_xmlUCSIsGurmukhi ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsGujarati
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsGujarati PROC ; COMDAT
; 1600 : xmlUCSIsGujarati(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -2688 ; fffff580H
cmp ecx, eax
sbb eax, eax
inc eax
; 1601 : return(((code >= 0x0A80) && (code <= 0x0AFF)));
; 1602 : }
pop ebp
ret 0
_xmlUCSIsGujarati ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsGreekandCoptic
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsGreekandCoptic PROC ; COMDAT
; 1587 : xmlUCSIsGreekandCoptic(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 143 ; 0000008fH
add eax, -880 ; fffffc90H
cmp ecx, eax
sbb eax, eax
inc eax
; 1588 : return(((code >= 0x0370) && (code <= 0x03FF)));
; 1589 : }
pop ebp
ret 0
_xmlUCSIsGreekandCoptic ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsGreekExtended
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsGreekExtended PROC ; COMDAT
; 1574 : xmlUCSIsGreekExtended(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 255 ; 000000ffH
add eax, -7936 ; ffffe100H
cmp ecx, eax
sbb eax, eax
inc eax
; 1575 : return(((code >= 0x1F00) && (code <= 0x1FFF)));
; 1576 : }
pop ebp
ret 0
_xmlUCSIsGreekExtended ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsGreek
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsGreek PROC ; COMDAT
; 1561 : xmlUCSIsGreek(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 143 ; 0000008fH
add eax, -880 ; fffffc90H
cmp ecx, eax
sbb eax, eax
inc eax
; 1562 : return(((code >= 0x0370) && (code <= 0x03FF)));
; 1563 : }
pop ebp
ret 0
_xmlUCSIsGreek ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsGothic
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsGothic PROC ; COMDAT
; 1548 : xmlUCSIsGothic(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 31 ; 0000001fH
add eax, -66352 ; fffefcd0H
cmp ecx, eax
sbb eax, eax
inc eax
; 1549 : return(((code >= 0x10330) && (code <= 0x1034F)));
; 1550 : }
pop ebp
ret 0
_xmlUCSIsGothic ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsGeorgian
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsGeorgian PROC ; COMDAT
; 1535 : xmlUCSIsGeorgian(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 95 ; 0000005fH
add eax, -4256 ; ffffef60H
cmp ecx, eax
sbb eax, eax
inc eax
; 1536 : return(((code >= 0x10A0) && (code <= 0x10FF)));
; 1537 : }
pop ebp
ret 0
_xmlUCSIsGeorgian ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsGeometricShapes
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsGeometricShapes PROC ; COMDAT
; 1522 : xmlUCSIsGeometricShapes(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 95 ; 0000005fH
add eax, -9632 ; ffffda60H
cmp ecx, eax
sbb eax, eax
inc eax
; 1523 : return(((code >= 0x25A0) && (code <= 0x25FF)));
; 1524 : }
pop ebp
ret 0
_xmlUCSIsGeometricShapes ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsGeneralPunctuation
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsGeneralPunctuation PROC ; COMDAT
; 1509 : xmlUCSIsGeneralPunctuation(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 111 ; 0000006fH
add eax, -8192 ; ffffe000H
cmp ecx, eax
sbb eax, eax
inc eax
; 1510 : return(((code >= 0x2000) && (code <= 0x206F)));
; 1511 : }
pop ebp
ret 0
_xmlUCSIsGeneralPunctuation ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsEthiopic
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsEthiopic PROC ; COMDAT
; 1496 : xmlUCSIsEthiopic(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 383 ; 0000017fH
add eax, -4608 ; ffffee00H
cmp ecx, eax
sbb eax, eax
inc eax
; 1497 : return(((code >= 0x1200) && (code <= 0x137F)));
; 1498 : }
pop ebp
ret 0
_xmlUCSIsEthiopic ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsEnclosedCJKLettersandMonths
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsEnclosedCJKLettersandMonths PROC ; COMDAT
; 1483 : xmlUCSIsEnclosedCJKLettersandMonths(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 255 ; 000000ffH
add eax, -12800 ; ffffce00H
cmp ecx, eax
sbb eax, eax
inc eax
; 1484 : return(((code >= 0x3200) && (code <= 0x32FF)));
; 1485 : }
pop ebp
ret 0
_xmlUCSIsEnclosedCJKLettersandMonths ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsEnclosedAlphanumerics
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsEnclosedAlphanumerics PROC ; COMDAT
; 1470 : xmlUCSIsEnclosedAlphanumerics(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 159 ; 0000009fH
add eax, -9312 ; ffffdba0H
cmp ecx, eax
sbb eax, eax
inc eax
; 1471 : return(((code >= 0x2460) && (code <= 0x24FF)));
; 1472 : }
pop ebp
ret 0
_xmlUCSIsEnclosedAlphanumerics ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsDingbats
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsDingbats PROC ; COMDAT
; 1457 : xmlUCSIsDingbats(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 191 ; 000000bfH
add eax, -9984 ; ffffd900H
cmp ecx, eax
sbb eax, eax
inc eax
; 1458 : return(((code >= 0x2700) && (code <= 0x27BF)));
; 1459 : }
pop ebp
ret 0
_xmlUCSIsDingbats ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsDevanagari
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsDevanagari PROC ; COMDAT
; 1444 : xmlUCSIsDevanagari(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -2304 ; fffff700H
cmp ecx, eax
sbb eax, eax
inc eax
; 1445 : return(((code >= 0x0900) && (code <= 0x097F)));
; 1446 : }
pop ebp
ret 0
_xmlUCSIsDevanagari ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsDeseret
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsDeseret PROC ; COMDAT
; 1431 : xmlUCSIsDeseret(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 79 ; 0000004fH
add eax, -66560 ; fffefc00H
cmp ecx, eax
sbb eax, eax
inc eax
; 1432 : return(((code >= 0x10400) && (code <= 0x1044F)));
; 1433 : }
pop ebp
ret 0
_xmlUCSIsDeseret ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCyrillicSupplement
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCyrillicSupplement PROC ; COMDAT
; 1418 : xmlUCSIsCyrillicSupplement(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 47 ; 0000002fH
add eax, -1280 ; fffffb00H
cmp ecx, eax
sbb eax, eax
inc eax
; 1419 : return(((code >= 0x0500) && (code <= 0x052F)));
; 1420 : }
pop ebp
ret 0
_xmlUCSIsCyrillicSupplement ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCyrillic
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCyrillic PROC ; COMDAT
; 1405 : xmlUCSIsCyrillic(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 255 ; 000000ffH
add eax, -1024 ; fffffc00H
cmp ecx, eax
sbb eax, eax
inc eax
; 1406 : return(((code >= 0x0400) && (code <= 0x04FF)));
; 1407 : }
pop ebp
ret 0
_xmlUCSIsCyrillic ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCypriotSyllabary
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCypriotSyllabary PROC ; COMDAT
; 1392 : xmlUCSIsCypriotSyllabary(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 63 ; 0000003fH
add eax, -67584 ; fffef800H
cmp ecx, eax
sbb eax, eax
inc eax
; 1393 : return(((code >= 0x10800) && (code <= 0x1083F)));
; 1394 : }
pop ebp
ret 0
_xmlUCSIsCypriotSyllabary ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCurrencySymbols
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCurrencySymbols PROC ; COMDAT
; 1379 : xmlUCSIsCurrencySymbols(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 47 ; 0000002fH
add eax, -8352 ; ffffdf60H
cmp ecx, eax
sbb eax, eax
inc eax
; 1380 : return(((code >= 0x20A0) && (code <= 0x20CF)));
; 1381 : }
pop ebp
ret 0
_xmlUCSIsCurrencySymbols ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsControlPictures
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsControlPictures PROC ; COMDAT
; 1366 : xmlUCSIsControlPictures(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 63 ; 0000003fH
add eax, -9216 ; ffffdc00H
cmp ecx, eax
sbb eax, eax
inc eax
; 1367 : return(((code >= 0x2400) && (code <= 0x243F)));
; 1368 : }
pop ebp
ret 0
_xmlUCSIsControlPictures ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCombiningMarksforSymbols
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCombiningMarksforSymbols PROC ; COMDAT
; 1353 : xmlUCSIsCombiningMarksforSymbols(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 47 ; 0000002fH
add eax, -8400 ; ffffdf30H
cmp ecx, eax
sbb eax, eax
inc eax
; 1354 : return(((code >= 0x20D0) && (code <= 0x20FF)));
; 1355 : }
pop ebp
ret 0
_xmlUCSIsCombiningMarksforSymbols ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCombiningHalfMarks
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCombiningHalfMarks PROC ; COMDAT
; 1340 : xmlUCSIsCombiningHalfMarks(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 15 ; 0000000fH
add eax, -65056 ; ffff01e0H
cmp ecx, eax
sbb eax, eax
inc eax
; 1341 : return(((code >= 0xFE20) && (code <= 0xFE2F)));
; 1342 : }
pop ebp
ret 0
_xmlUCSIsCombiningHalfMarks ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCombiningDiacriticalMarksforSymbols
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCombiningDiacriticalMarksforSymbols PROC ; COMDAT
; 1327 : xmlUCSIsCombiningDiacriticalMarksforSymbols(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 47 ; 0000002fH
add eax, -8400 ; ffffdf30H
cmp ecx, eax
sbb eax, eax
inc eax
; 1328 : return(((code >= 0x20D0) && (code <= 0x20FF)));
; 1329 : }
pop ebp
ret 0
_xmlUCSIsCombiningDiacriticalMarksforSymbols ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCombiningDiacriticalMarks
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCombiningDiacriticalMarks PROC ; COMDAT
; 1314 : xmlUCSIsCombiningDiacriticalMarks(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 111 ; 0000006fH
add eax, -768 ; fffffd00H
cmp ecx, eax
sbb eax, eax
inc eax
; 1315 : return(((code >= 0x0300) && (code <= 0x036F)));
; 1316 : }
pop ebp
ret 0
_xmlUCSIsCombiningDiacriticalMarks ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCherokee
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCherokee PROC ; COMDAT
; 1301 : xmlUCSIsCherokee(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 95 ; 0000005fH
add eax, -5024 ; ffffec60H
cmp ecx, eax
sbb eax, eax
inc eax
; 1302 : return(((code >= 0x13A0) && (code <= 0x13FF)));
; 1303 : }
pop ebp
ret 0
_xmlUCSIsCherokee ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCJKUnifiedIdeographsExtensionB
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCJKUnifiedIdeographsExtensionB PROC ; COMDAT
; 1288 : xmlUCSIsCJKUnifiedIdeographsExtensionB(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 42719 ; 0000a6dfH
add eax, -131072 ; fffe0000H
cmp ecx, eax
sbb eax, eax
inc eax
; 1289 : return(((code >= 0x20000) && (code <= 0x2A6DF)));
; 1290 : }
pop ebp
ret 0
_xmlUCSIsCJKUnifiedIdeographsExtensionB ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCJKUnifiedIdeographsExtensionA
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCJKUnifiedIdeographsExtensionA PROC ; COMDAT
; 1275 : xmlUCSIsCJKUnifiedIdeographsExtensionA(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 6591 ; 000019bfH
add eax, -13312 ; ffffcc00H
cmp ecx, eax
sbb eax, eax
inc eax
; 1276 : return(((code >= 0x3400) && (code <= 0x4DBF)));
; 1277 : }
pop ebp
ret 0
_xmlUCSIsCJKUnifiedIdeographsExtensionA ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCJKUnifiedIdeographs
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCJKUnifiedIdeographs PROC ; COMDAT
; 1262 : xmlUCSIsCJKUnifiedIdeographs(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 20991 ; 000051ffH
add eax, -19968 ; ffffb200H
cmp ecx, eax
sbb eax, eax
inc eax
; 1263 : return(((code >= 0x4E00) && (code <= 0x9FFF)));
; 1264 : }
pop ebp
ret 0
_xmlUCSIsCJKUnifiedIdeographs ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCJKSymbolsandPunctuation
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCJKSymbolsandPunctuation PROC ; COMDAT
; 1249 : xmlUCSIsCJKSymbolsandPunctuation(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 63 ; 0000003fH
add eax, -12288 ; ffffd000H
cmp ecx, eax
sbb eax, eax
inc eax
; 1250 : return(((code >= 0x3000) && (code <= 0x303F)));
; 1251 : }
pop ebp
ret 0
_xmlUCSIsCJKSymbolsandPunctuation ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCJKRadicalsSupplement
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCJKRadicalsSupplement PROC ; COMDAT
; 1236 : xmlUCSIsCJKRadicalsSupplement(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -11904 ; ffffd180H
cmp ecx, eax
sbb eax, eax
inc eax
; 1237 : return(((code >= 0x2E80) && (code <= 0x2EFF)));
; 1238 : }
pop ebp
ret 0
_xmlUCSIsCJKRadicalsSupplement ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCJKCompatibilityIdeographsSupplement
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCJKCompatibilityIdeographsSupplement PROC ; COMDAT
; 1223 : xmlUCSIsCJKCompatibilityIdeographsSupplement(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 543 ; 0000021fH
add eax, -194560 ; fffd0800H
cmp ecx, eax
sbb eax, eax
inc eax
; 1224 : return(((code >= 0x2F800) && (code <= 0x2FA1F)));
; 1225 : }
pop ebp
ret 0
_xmlUCSIsCJKCompatibilityIdeographsSupplement ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCJKCompatibilityIdeographs
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCJKCompatibilityIdeographs PROC ; COMDAT
; 1210 : xmlUCSIsCJKCompatibilityIdeographs(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 511 ; 000001ffH
add eax, -63744 ; ffff0700H
cmp ecx, eax
sbb eax, eax
inc eax
; 1211 : return(((code >= 0xF900) && (code <= 0xFAFF)));
; 1212 : }
pop ebp
ret 0
_xmlUCSIsCJKCompatibilityIdeographs ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCJKCompatibilityForms
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCJKCompatibilityForms PROC ; COMDAT
; 1197 : xmlUCSIsCJKCompatibilityForms(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 31 ; 0000001fH
add eax, -65072 ; ffff01d0H
cmp ecx, eax
sbb eax, eax
inc eax
; 1198 : return(((code >= 0xFE30) && (code <= 0xFE4F)));
; 1199 : }
pop ebp
ret 0
_xmlUCSIsCJKCompatibilityForms ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsCJKCompatibility
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsCJKCompatibility PROC ; COMDAT
; 1184 : xmlUCSIsCJKCompatibility(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 255 ; 000000ffH
add eax, -13056 ; ffffcd00H
cmp ecx, eax
sbb eax, eax
inc eax
; 1185 : return(((code >= 0x3300) && (code <= 0x33FF)));
; 1186 : }
pop ebp
ret 0
_xmlUCSIsCJKCompatibility ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsByzantineMusicalSymbols
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsByzantineMusicalSymbols PROC ; COMDAT
; 1171 : xmlUCSIsByzantineMusicalSymbols(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 255 ; 000000ffH
add eax, -118784 ; fffe3000H
cmp ecx, eax
sbb eax, eax
inc eax
; 1172 : return(((code >= 0x1D000) && (code <= 0x1D0FF)));
; 1173 : }
pop ebp
ret 0
_xmlUCSIsByzantineMusicalSymbols ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsBuhid
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsBuhid PROC ; COMDAT
; 1158 : xmlUCSIsBuhid(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 31 ; 0000001fH
add eax, -5952 ; ffffe8c0H
cmp ecx, eax
sbb eax, eax
inc eax
; 1159 : return(((code >= 0x1740) && (code <= 0x175F)));
; 1160 : }
pop ebp
ret 0
_xmlUCSIsBuhid ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsBraillePatterns
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsBraillePatterns PROC ; COMDAT
; 1145 : xmlUCSIsBraillePatterns(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 255 ; 000000ffH
add eax, -10240 ; ffffd800H
cmp ecx, eax
sbb eax, eax
inc eax
; 1146 : return(((code >= 0x2800) && (code <= 0x28FF)));
; 1147 : }
pop ebp
ret 0
_xmlUCSIsBraillePatterns ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsBoxDrawing
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsBoxDrawing PROC ; COMDAT
; 1132 : xmlUCSIsBoxDrawing(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -9472 ; ffffdb00H
cmp ecx, eax
sbb eax, eax
inc eax
; 1133 : return(((code >= 0x2500) && (code <= 0x257F)));
; 1134 : }
pop ebp
ret 0
_xmlUCSIsBoxDrawing ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsBopomofoExtended
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsBopomofoExtended PROC ; COMDAT
; 1119 : xmlUCSIsBopomofoExtended(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 31 ; 0000001fH
add eax, -12704 ; ffffce60H
cmp ecx, eax
sbb eax, eax
inc eax
; 1120 : return(((code >= 0x31A0) && (code <= 0x31BF)));
; 1121 : }
pop ebp
ret 0
_xmlUCSIsBopomofoExtended ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsBopomofo
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsBopomofo PROC ; COMDAT
; 1106 : xmlUCSIsBopomofo(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 47 ; 0000002fH
add eax, -12544 ; ffffcf00H
cmp ecx, eax
sbb eax, eax
inc eax
; 1107 : return(((code >= 0x3100) && (code <= 0x312F)));
; 1108 : }
pop ebp
ret 0
_xmlUCSIsBopomofo ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsBlockElements
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsBlockElements PROC ; COMDAT
; 1093 : xmlUCSIsBlockElements(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 31 ; 0000001fH
add eax, -9600 ; ffffda80H
cmp ecx, eax
sbb eax, eax
inc eax
; 1094 : return(((code >= 0x2580) && (code <= 0x259F)));
; 1095 : }
pop ebp
ret 0
_xmlUCSIsBlockElements ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsBengali
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsBengali PROC ; COMDAT
; 1080 : xmlUCSIsBengali(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 127 ; 0000007fH
add eax, -2432 ; fffff680H
cmp ecx, eax
sbb eax, eax
inc eax
; 1081 : return(((code >= 0x0980) && (code <= 0x09FF)));
; 1082 : }
pop ebp
ret 0
_xmlUCSIsBengali ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsBasicLatin
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsBasicLatin PROC ; COMDAT
; 1067 : xmlUCSIsBasicLatin(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, 127 ; 0000007fH
cmp eax, DWORD PTR _code$[ebp]
sbb eax, eax
inc eax
; 1068 : return(((code >= 0x0000) && (code <= 0x007F)));
; 1069 : }
pop ebp
ret 0
_xmlUCSIsBasicLatin ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsArrows
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsArrows PROC ; COMDAT
; 1054 : xmlUCSIsArrows(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 111 ; 0000006fH
add eax, -8592 ; ffffde70H
cmp ecx, eax
sbb eax, eax
inc eax
; 1055 : return(((code >= 0x2190) && (code <= 0x21FF)));
; 1056 : }
pop ebp
ret 0
_xmlUCSIsArrows ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsArmenian
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsArmenian PROC ; COMDAT
; 1041 : xmlUCSIsArmenian(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 95 ; 0000005fH
add eax, -1328 ; fffffad0H
cmp ecx, eax
sbb eax, eax
inc eax
; 1042 : return(((code >= 0x0530) && (code <= 0x058F)));
; 1043 : }
pop ebp
ret 0
_xmlUCSIsArmenian ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsArabicPresentationFormsB
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsArabicPresentationFormsB PROC ; COMDAT
; 1028 : xmlUCSIsArabicPresentationFormsB(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 143 ; 0000008fH
add eax, -65136 ; ffff0190H
cmp ecx, eax
sbb eax, eax
inc eax
; 1029 : return(((code >= 0xFE70) && (code <= 0xFEFF)));
; 1030 : }
pop ebp
ret 0
_xmlUCSIsArabicPresentationFormsB ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsArabicPresentationFormsA
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsArabicPresentationFormsA PROC ; COMDAT
; 1015 : xmlUCSIsArabicPresentationFormsA(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 687 ; 000002afH
add eax, -64336 ; ffff04b0H
cmp ecx, eax
sbb eax, eax
inc eax
; 1016 : return(((code >= 0xFB50) && (code <= 0xFDFF)));
; 1017 : }
pop ebp
ret 0
_xmlUCSIsArabicPresentationFormsA ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsArabic
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsArabic PROC ; COMDAT
; 1002 : xmlUCSIsArabic(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 255 ; 000000ffH
add eax, -1536 ; fffffa00H
cmp ecx, eax
sbb eax, eax
inc eax
; 1003 : return(((code >= 0x0600) && (code <= 0x06FF)));
; 1004 : }
pop ebp
ret 0
_xmlUCSIsArabic ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsAlphabeticPresentationForms
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsAlphabeticPresentationForms PROC ; COMDAT
; 989 : xmlUCSIsAlphabeticPresentationForms(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 79 ; 0000004fH
add eax, -64256 ; ffff0500H
cmp ecx, eax
sbb eax, eax
inc eax
; 990 : return(((code >= 0xFB00) && (code <= 0xFB4F)));
; 991 : }
pop ebp
ret 0
_xmlUCSIsAlphabeticPresentationForms ENDP
_TEXT ENDS
; Function compile flags: /Ogtp
; File c:\users\dag\documents\_clients\codeproject authors group\windows on arm\libxml2\libxml2-2.9.9\xmlunicode.c
; COMDAT _xmlUCSIsAegeanNumbers
_TEXT SEGMENT
_code$ = 8 ; size = 4
_xmlUCSIsAegeanNumbers PROC ; COMDAT
; 976 : xmlUCSIsAegeanNumbers(int code) {
push ebp
mov ebp, esp
mov ecx, OFFSET __B18DBD6B_xmlunicode@c
call @__CheckForDebuggerJustMyCode@4
mov eax, DWORD PTR _code$[ebp]
mov ecx, 63 ; 0000003fH
add eax, -65792 ; fffeff00H
cmp ecx, eax
sbb eax, eax
inc eax
; 977 : return(((code >= 0x10100) && (code <= 0x1013F)));
; 978 : }
pop ebp
ret 0
_xmlUCSIsAegeanNumbers ENDP
_TEXT ENDS
END
|
src/Ints/Add/Comm.agda | ice1k/Theorems | 1 | 6607 | <reponame>ice1k/Theorems
module Ints.Add.Comm where
open import Ints
open import Nats.Add.Comm
open import Equality
------------------------------------------------------------------------
-- internal stuffs
private
a+b=b+a : ∀ a b → a + b ≡ b + a
a+b=b+a (+ a) (+ b) = + (a :+: b)
≡⟨ cong +_ (nat-add-comm a b) ⟩ + (b :+: a) QED
a+b=b+a (+ a ) (-[1+ b ])
rewrite nat-add-comm a b = refl
a+b=b+a (-[1+ a ]) (+ b )
rewrite nat-add-comm a b = refl
a+b=b+a (-[1+ a ]) (-[1+ b ])
rewrite nat-add-comm a b = refl
------------------------------------------------------------------------
-- public aliases
int-add-comm : ∀ a b → a + b ≡ b + a
int-add-comm = a+b=b+a
|
arm/block_transfer.asm | michelhe/gba-suite | 0 | 99593 | block_transfer:
; Tests for the block transfer instruction
mem equ r11
mov mem, IWRAM
add mem, 0x4500
t500:
; ARM 10: Fully ascending
mov r0, 32
mov r1, 64
stmfa r11!, {r0, r1}
ldmfa r11!, {r2, r3}
cmp r0, r2
bne f500
cmp r1, r3
bne f500
add mem, 32
b t501
f500:
failed 500
t501:
; ARM 10: Empty ascending
mov r0, 32
mov r1, 64
stmea r11!, {r0, r1}
ldmea r11!, {r2, r3}
cmp r0, r2
bne f501
cmp r1, r3
bne f501
add mem, 32
b t502
f501:
failed 501
t502:
; ARM 10: Fully descending
mov r0, 32
mov r1, 64
stmfd r11!, {r0, r1}
ldmfd r11!, {r2, r3}
cmp r0, r2
bne f502
cmp r1, r3
bne f502
add mem, 32
b t503
f502:
failed 502
t503:
; ARM 10: Empty descending
mov r0, 32
mov r1, 64
stmed r11!, {r0, r1}
ldmed r11!, {r2, r3}
cmp r0, r2
bne f503
cmp r1, r3
bne f503
add mem, 32
b t504
f503:
failed 503
t504:
; ARM 10: Location fully ascending
mov r0, 32
stmfa mem, {r0, r1}
ldr r1, [mem, 4]
cmp r1, r0
bne f504
add mem, 32
b t505
f504:
failed 504
t505:
; ARM 10: Location empty ascending
mov r0, 32
stmea mem, {r0, r1}
ldr r1, [mem]
cmp r1, r0
bne f505
add mem, 32
b t506
f505:
failed 505
t506:
; ARM 10: Location fully descending
mov r0, 32
stmfd mem, {r0, r1}
ldr r1, [mem, -8]
cmp r1, r0
bne f506
add mem, 32
b t507
f506:
failed 506
t507:
; ARM 10: Location empty descending
mov r0, 32
stmed mem, {r0, r1}
ldr r1, [mem, -4]
cmp r1, r0
bne f507
add mem, 32
b t508
f507:
failed 507
t508:
; ARM 10: Memory alignment
mov r0, 32
mov r1, 64
add r2, mem, 3
sub r3, mem, 5
stmfd r2!, {r0, r1}
ldmfd r3, {r4, r5}
cmp r0, r4
bne f508
cmp r1, r5
bne f508
cmp r2, r3
bne f508
add mem, 32
b t509
f508:
failed 508
t509:
; ARM 10: Load PC
adr r1, t510
stmfd r11!, {r0, r1}
ldmfd r11!, {r0, pc}
f509:
failed 509
t510:
; ARM 10: Store PC + 4
stmfd r11!, {r0, pc}
mov r0, pc
ldmfd r11!, {r1, r2}
cmp r0, r2
bne f510
add mem, 32
b t511
f510:
failed 510
t511:
; ARM 10: Store user registers
mov r0, mem
mov r8, 32
msr cpsr, MODE_FIQ
mov r8, 64
stmfd r0, {r8, r9}^
sub r0, 8
msr cpsr, MODE_SYS
ldmfd r0, {r1, r2}
cmp r1, 32
bne f511
add mem, 32
b t512
f511:
failed 511
t512:
; ARM 10: Load user registers
mov r0, mem
mov r1, 0xA
stmfd r0!, {r1, r2}
msr cpsr, MODE_FIQ
mov r8, 0xB
ldmfd r0, {r8, r9}^
cmp r8, 0xB
bne f512
msr cpsr, MODE_SYS
cmp r8, 0xA
bne f512
add mem, 32
b t513
f512:
failed 512
t513:
; ARM 10: Load empty rlist
adr r0, t514
str r0, [mem]
mov r0, mem
dw 0xE8B00000 ; ldmia r0!, {}
f513:
failed 513
t514:
sub r0, 0x40
cmp r0, mem
bne f514
add mem, 32
b t515
f514:
failed 514
t515:
; ARM 10: Store empty rlist
mov r0, mem
dw 0xE8A00000 ; stmia r0!, {}
mov r1, pc
ldr r2, [mem]
cmp r2, r1
bne f515
sub r0, 0x40
cmp r0, mem
bne f515
add mem, 32
b t516
f515:
failed 515
t516:
; ARM 10: Load writeback base first in rlist
mov r0, 0xA
mov r1, mem
stmfd r1!, {r0, r2}
dw 0xE8B10006 ; ldmfa r1!, {r1, r2}
cmp r1, 0xA
bne f516
add mem, 32
b t517
f516:
failed 516
t517:
; ARM 10: Load writeback base last in rlist
mov r2, 0xA
mov r1, mem
stmfd r1!, {r0, r2}
dw 0xE8B10003 ; ldmfa r1!, {r0, r1}
cmp r1, 0xA
bne f517
add mem, 32
b t518
f517:
failed 517
t518:
; ARM 10: STMFD base first in rlist
mov r0, mem
stmfd r0!, {r0, r1}
ldmfd r0!, {r1, r2}
cmp r1, mem
bne f518
add mem, 32
b t519
f518:
failed 518
t519:
; ARM 10: STMED base first in rlist
mov r0, mem
stmed r0!, {r0, r1}
ldmed r0!, {r1, r2}
cmp r1, mem
bne f519
add mem, 32
b t520
f519:
failed 519
t520:
; ARM 10: STMFA base first in rlist
mov r0, mem
stmfa r0!, {r0, r1}
ldmfa r0!, {r1, r2}
cmp r1, mem
bne f520
add mem, 32
b t521
f520:
failed 520
t521:
; ARM 10: STMEA base first in rlist
mov r0, mem
stmea r0!, {r0, r1}
ldmea r0!, {r1, r2}
cmp r1, mem
bne f521
add mem, 32
b t522
f521:
failed 521
t522:
; ARM 10: STMFD base in rlist
mov r1, mem
dw 0xE921000F ; stmfd r1!, {r0-r3}
ldmfd r1!, {r4-r7}
sub r0, mem, 16
cmp r0, r5
bne f522
add mem, 32
b t523
f522:
failed 522
t523:
; ARM 10: STMFD base in rlist
mov r2, mem
dw 0xE922000F ; stmfd r2!, {r0-r3}
ldmfd r2!, {r4-r7}
sub r0, mem, 16
cmp r0, r6
bne f523
add mem, 32
b t524
f523:
failed 523
t524:
; ARM 10: STMED base in rlist
mov r1, mem
dw 0xE821000F ; stmed r1!, {r0-r3}
ldmed r1!, {r4-r7}
sub r0, mem, 16
cmp r0, r5
bne f524
add mem, 32
b t525
f524:
failed 524
t525:
; ARM 10: STMED base in rlist
mov r2, mem
dw 0xE822000F ; stmed r2!, {r0-r3}
ldmed r2!, {r4-r7}
sub r0, mem, 16
cmp r0, r6
bne f525
add mem, 32
b t526
f525:
failed 525
t526:
; ARM 10: STMFA base in rlist
mov r1, mem
dw 0xE9A1000F ; stmfa r1!, {r0-r3}
ldmfa r1!, {r4-r7}
add r0, mem, 16
cmp r0, r5
bne f526
add mem, 32
b t527
f526:
failed 526
t527:
; ARM 10: STMFA base in rlist
mov r2, mem
dw 0xE9A2000F ; stmfa r2!, {r0-r3}
ldmfa r2!, {r4-r7}
add r0, mem, 16
cmp r0, r6
bne f527
add mem, 32
b t528
f527:
failed 527
t528:
; ARM 10: STMEA base in rlist
mov r1, mem
dw 0xE8A1000F ; stmea r1!, {r0-r3}
ldmea r1!, {r4-r7}
add r0, mem, 16
cmp r0, r5
bne f528
add mem, 32
b t529
f528:
failed 528
t529:
; ARM 10: STMEA base in rlist
mov r2, mem
dw 0xE8A2000F ; stmea r2!, {r0-r3}
ldmea r2!, {r4-r7}
add r0, mem, 16
cmp r0, r6
bne f529
add mem, 32
b block_transfer_passed
f529:
failed 529
block_transfer_passed:
restore mem
|
programs/oeis/052/A052678.asm | neoneye/loda | 22 | 1211 | ; A052678: E.g.f. x^3/(1-3x).
; 0,0,0,6,72,1080,19440,408240,9797760,264539520,7936185600,261894124800,9428188492800,367699351219200,15443372751206400,694951773804288000,33357685142605824000,1701241942272897024000
mov $1,2
lpb $0
sub $0,1
add $2,3
mul $1,$2
lpe
div $1,324
mul $1,6
mov $0,$1
|
GIOVANNI/gambatte/test/hwtests/sound/ch2_init_reset_env_counter_timing_5_dmg08_outaudio0_cgb04c_outaudio1.asm | ReallyEvilFish/1234 | 9 | 81919 | <gh_stars>1-10
.size 8000
.text@100
jp lbegin
.data@143
80
.text@150
lbegin:
ld b, 3e
ld c, 01
lwaitreset:
dec b
jrnz lwaitreset
dec c
jrnz lwaitreset
nop
nop
xor a, a
ldff(26), a
ld a, 80
ldff(26), a
ld a, 77
ldff(24), a
ld a, 22
ldff(25), a
ld a, 00
ldff(16), a
ld a, 09
ldff(17), a
ld a, 00
ldff(18), a
ld a, 87
ldff(19), a
ld b, e9
ld c, 11
lwait:
dec b
jrnz lwait
dec c
jrnz lwait
nop
nop
nop
ld a, 08
ldff(17), a
limbo:
jr limbo
|
Irvine/Examples/Lib32/Irvine32_Library/cmdtest.asm | alieonsido/ASM_TESTING | 0 | 172405 | ; cmdtest.asm
INCLUDE Irvine32.inc
.data
cmdline BYTE 144 DUP(0)
.code
main PROC
call ReadFloat
; get command-line arguments
mov edx, OFFSET cmdline
call GetCommandTail
; display command-line string
call Crlf
call Crlf
mov al, '>'
call WriteChar
mov edx, OFFSET cmdline
call WriteString
mov al, '<'
call WriteChar
call Crlf
call Crlf
exit
main ENDP
END main |
tests/rule_arg_simple/6.asm | NullMember/customasm | 414 | 177648 | #ruledef test
{
ld {x} => 0x55 @ x[7:0]
}
ld x ; error: failed / error: unknown |
rainbow-stitch/src/main/antlr4/org/sa/rainbow/im/parser/IM.g4 | cmendesce/rainbow-znn-deployment | 0 | 7642 | // Grammar for StitchV2 impact models.
// V0.1. <NAME> (7-31-2013)
grammar IM;
@header {
import java.util.*;
import java.lang.*;
}
@members {
HashMap archTypes = new HashMap();
HashMap<String,ArrayList> archVars = new HashMap<String,ArrayList>();
HashMap archVarMin = new HashMap();
HashMap archVarMax = new HashMap();
HashMap archVarInit = new HashMap();
HashMap sets = new HashMap();
HashMap functions = new HashMap();
}
init : architecture declaration* body
{
// Generates function definitions
String function_defs=new String("");
String q_function_defs= new String("");
String var_defs= new String("");
Iterator it = archTypes.entrySet().iterator();
while (it.hasNext()) {
Map.Entry pairs = (Map.Entry)it.next();
Iterator <String> it2 = archVars.get(pairs.getKey()).iterator();
while (it2.hasNext()){
String varName=it2.next();
String fullVarName=pairs.getKey()+"_"+varName;
Iterator itf = functions.entrySet().iterator();
while (itf.hasNext()){
Map.Entry function_pairs = (Map.Entry)itf.next();
function_defs=function_defs+"\n formula "+ fullVarName + "_" + function_pairs.getKey() + " = "
+ function_pairs.getValue().toString().replace("x", fullVarName) + ";" ;
String functionName=fullVarName + "_" + function_pairs.getKey();
q_function_defs=q_function_defs+"\n formula "+ "q_" + functionName + " = "
+ functionName + " >= " + archVarMin.get(fullVarName) + " ? (" + functionName + " <= "
+ archVarMax.get(fullVarName) + " ? floor(" + functionName +") : " + archVarMax.get(fullVarName)
+ ") : " + archVarMin.get(fullVarName);
}
var_defs=var_defs + "\n\t"+ fullVarName +" : ["+
archVarMin.get(fullVarName)+".."+archVarMax.get(fullVarName)+
"] init "+ archVarInit.get(fullVarName) +";";
}
it.remove(); // avoids a ConcurrentModificationException
}
System.out.println ("\n // Update function declarations \n"+function_defs);
System.out.println ("\n // Quantization function declarations \n"+q_function_defs);
// Generates arch module declarations with arch element variables, ranges, and initialization
System.out.println("\n module arch \n");
System.out.println (var_defs);
// Closing declaration of arch module
System.out.println ("\n endmodule");
}
;
// Basic arch declaration
architecture : 'architecture' ID '{' arch_declaration+ '}' ;
arch_declaration : archtype=COMP_ID compid=ID '{'arch_var_declaration+ '}' ;
arch_var_declaration : 'int' varname+=ID '[' varmin+=INTEGER ',' varmax+=INTEGER ']' ':' varinit+=INTEGER ';' ;
// Further declarations (Arch element sets, vars, functions...)
declaration : 'define' 'set' s=ID '=' '{' 'select' svar=ID ':' ingroup=COMP_ID 'in' COMP_ID ( '|' inexpr=expr )? '}' ';'
{sets.put($s.text, new ArrayList<String>(Arrays.asList($ingroup.text, $inexpr.text)));
System.out.println("* Set "+$s.text+" declared as " +sets.get($s.text));}
| 'define' ('int' | 'float') ID '=' expr ';'
| 'define' 'function' id=ID '(' ID? ')' '=' expression=expr ';'
{
functions.put($id.text,$expression.text);
}
;
body locals[HashMap commands=new HashMap()
] : 'impactmodel' imid=ID '{' (bucket)+ '}'
{
Iterator it = $commands.entrySet().iterator();
while (it.hasNext()){
Map.Entry command_pairs = (Map.Entry)it.next();
System.out.println ("[" + $imid.text + "]("+ command_pairs.getKey() +") -> " );
}
}
; // match keyword impact model followed by set of impact model "buckets" (i.e., pairs expression, probabilistic expression)
bucket : '(' guard=expr ')' ( '{' expression=prexpr '}' | expression=prexpr )
{
$body::commands.put($guard.text, $expression.text);
}
;
// Probabilistic expressions
prexpr : simple_prexpr
| foreach_prexpr
| forall_prexpr
| or_prexpr
| and_prexpr
;
simple_prexpr : primedvar=COMP_ID '\'' '=' uexpr=expr ;
foreach_prexpr : 'foreach' archvar=ID ':' set_expression '|' pexp=prexpr ;
forall_prexpr : 'forall' archvar=ID ':' set_expression '|' pexp=prexpr ;
and_prexpr :'{' prexpr ('&' prexpr )* '}' ;
or_prexpr : '{' or_prexpr_simple ('++' or_prexpr_simple )* '}' ;
or_prexpr_simple : '[' prob=probability ']' pexp=prexpr ;
probability : FLOAT | INTEGER | ID ;
// Other
set_expression : set_expression_id | set_expression_basic | set_expression_complex ;
set_expression_id : archvar=ID ;
set_expression_basic : archtype=COMP_ID 'in' COMP_ID ;
set_expression_complex : '{' archtype=COMP_ID 'in' COMP_ID ( '|' constraint=expr )? '}' ;
//comp_id : ID '.' ID ; // Identifier for property in architectural element E (e.g., "E.propname")
//Tokens
WS : [ \t\r\n]+ -> skip ; // skip spaces, tabs, newlines
COMP_ID : ID '.' ID ;
ID : LETTER (LETTER|DIGIT|'_')*;
INTEGER : DIGIT+ ;
FLOAT : DIGIT+ ('.' DIGIT+)? ;
LETTER : [a-zA-Z\u0080-\u00FF_] ;
DIGIT : [0-9] ;
BOOLEAN : 'true' | 'false' ;
// Expressions
expr : ID
| FLOAT
| INTEGER
| BOOLEAN
| COMP_ID
| expr OP_ARITH expr
| OP_LOGIC_UN expr
| expr OP_REL expr
| '(' expr ')'
| 'log' '(' expr ',' expr ')'
| ID '(' expr ')'
;
OP_ARITH : '*' | '-' | '+' | '/' ;
OP_REL : '>' | '<' | '>=' | '<=' | '==' | '!=' ;
OP_LOGIC_UN : '!' ;
OP_LOGIC : '&&' | '||' ;
ATOM : ID | FLOAT | BOOLEAN ;
|
programs/oeis/226/A226866.asm | karttu/loda | 0 | 100353 | <reponame>karttu/loda<gh_stars>0
; A226866: Number of n X 2 (-1,0,1) arrays of determinants of 2 X 2 subblocks of some (n+1) X 3 binary array with rows and columns of the latter in lexicographically nondecreasing order.
; 4,13,37,91,199,397,736,1285,2134,3397,5215,7759,11233,15877,21970,29833,39832,52381,67945,87043,110251,138205,171604,211213,257866,312469,376003,449527,534181,631189,741862,867601,1009900,1170349,1350637,1552555,1777999,2028973,2307592,2616085,2956798,3332197,3744871,4197535,4693033,5234341,5824570,6466969,7164928,7921981,8741809,9628243,10585267,11617021,12727804,13922077,15204466,16579765,18052939,19629127,21313645,23111989,25029838,27073057,29247700,31560013,34016437,36623611,39388375,42317773,45419056,48699685,52167334,55829893,59695471,63772399,68069233,72594757,77357986,82368169,87634792,93167581,98976505,105071779,111463867,118163485,125181604,132529453,140218522,148260565,156667603,165451927,174626101,184202965,194195638,204617521,215482300,226803949,238596733,250875211,263654239,276948973,290774872,305147701,320083534,335598757,351710071,368434495,385789369,403792357,422461450,441814969,461871568,482650237,504170305,526451443,549513667,573377341,598063180,623592253,649985986,677266165,705454939,734574823,764648701,795699829,827751838,860828737,894954916,930155149,966454597,1003878811,1042453735,1082205709,1123161472,1165348165,1208793334,1253524933,1299571327,1346961295,1395724033,1445889157,1497486706,1550547145,1605101368,1661180701,1718816905,1778042179,1838889163,1901390941,1965581044,2031493453,2099162602,2168623381,2239911139,2313061687,2388111301,2465096725,2544055174,2625024337,2708042380,2793147949,2880380173,2969778667,3061383535,3155235373,3251375272,3349844821,3450686110,3553941733,3659654791,3767868895,3878628169,3991977253,4107961306,4226626009,4348017568,4472182717,4599168721,4729023379,4861795027,4997532541,5136285340,5278103389,5423037202,5571137845,5722456939,5877046663,6034959757,6196249525,6360969838,6529175137,6700920436,6876261325,7055253973,7237955131,7424422135,7614712909,7808885968,8007000421,8209115974,8415292933,8625592207,8840075311,9058804369,9281842117,9509251906,9741097705,9977444104,10218356317
lpb $0,1
mov $1,$0
cal $1,227161 ; Number of n X 2 0,1 arrays indicating 2 X 2 subblocks of some larger (n+1) X 3 binary array having a sum of one or less, with rows and columns of the latter in lexicographically nondecreasing order.
sub $0,1
add $2,$1
div $1,420
add $1,$2
lpe
mul $1,3
add $1,4
|
src/miscellaneous/spatial_data-well_known_binary.ads | jrmarino/AdaBase | 30 | 3882 | -- This file is covered by the Internet Software Consortium (ISC) License
-- Reference: ../../License.txt
package Spatial_Data.Well_Known_Binary is
type WKB_Byte is mod 2 ** 8;
type WKB_Chain is array (Positive range <>) of WKB_Byte;
WKB_INVALID : exception;
function Translate_WKB (WKBinary : String) return Geometry;
function produce_WKT (WKBinary : CT.Text) return String;
private
type WKB_exponent is mod 2 ** 11;
type WKB_Identifier is mod 2 ** 12;
type WKB_Hex32 is mod 2 ** 32;
type WKB_IEEE754_Hex is mod 2 ** 64;
type WKB_Endianness is (big_endian, little_endian);
subtype WKB_Identifier_Chain is WKB_Chain (1 .. 4);
subtype WKB_Double_Precision_Chain is WKB_Chain (1 .. 8);
subtype WKB_Shape_Point_Chain is WKB_Chain (1 .. 16);
function convert (nv : String) return WKB_Chain;
function decode_endianness (value : WKB_Byte) return WKB_Endianness;
function decode_hex32 (direction : WKB_Endianness;
value : WKB_Identifier_Chain) return WKB_Hex32;
function decode_identifier (direction : WKB_Endianness;
value : WKB_Identifier_Chain)
return WKB_Identifier;
function get_collection_type (identifier : WKB_Identifier)
return Collection_Type;
function convert_to_IEEE754 (direction : WKB_Endianness;
chain : WKB_Double_Precision_Chain)
return Geometric_Real;
function handle_coordinate (direction : WKB_Endianness;
payload : WKB_Chain;
marker : in out Natural)
return Geometric_Real;
function handle_new_point (payload : WKB_Chain;
marker : in out Natural)
return Geometric_Point;
function handle_linestring (payload : WKB_Chain;
marker : in out Natural)
return Geometric_Line_String;
function handle_polyrings (direction : WKB_Endianness;
payload : WKB_Chain;
marker : in out Natural)
return Geometric_Ring;
function handle_polygon (payload : WKB_Chain;
marker : in out Natural)
return Geometric_Polygon;
procedure handle_unit_collection (flavor : Collection_Type;
payload : WKB_Chain;
marker : in out Natural;
collection : in out Geometry);
function round_to_16_digits (FP : Geometric_Real) return Geometric_Real;
end Spatial_Data.Well_Known_Binary;
|
BootloaderCommonPkg/Library/MultibootLib/X64/MultibootJump.nasm | smnarayanan/slimbootloader | 1 | 7912 | <reponame>smnarayanan/slimbootloader<gh_stars>1-10
;------------------------------------------------------------------------------
;
; Copyright (c) 2017 - 2020, Intel Corporation. All rights reserved.<BR>
; SPDX-License-Identifier: BSD-2-Clause-Patent
;
; Module Name:
;
; MultibootJump.nasm
;
; Abstract:
;
; This is the code that goes from payload to a Multiboot enabled OS.
;
;------------------------------------------------------------------------------
SECTION .text
;------------------------------------------------------------------------------
; VOID
; EFIAPI
; JumpToMultibootOs (
; IA32_BOOT_STATE state
; );
;------------------------------------------------------------------------------
global ASM_PFX(JumpToMultibootOs)
ASM_PFX(JumpToMultibootOs):
; TBD: Need porting
jmp $
ret
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.