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 |
|---|---|---|---|---|
source/directories/machine-w64-mingw32/s-nadivo.ads | ytomino/drake | 33 | 28112 | pragma License (Unrestricted);
-- implementation unit specialized for Windows
with C.winnt;
package System.Native_Directories.Volumes is
-- File system information.
pragma Preelaborate;
subtype File_Size is Ada.Streams.Stream_Element_Count;
type File_System is record
Root_Path : C.winnt.LPWSTR := null;
Root_Path_Length : C.size_t;
VolumeSerialNumber : aliased C.windef.DWORD;
FileSystemFlags : aliased C.windef.DWORD;
Valid : Boolean; -- VolumeSerialNumber and FileSystemFlags
Is_NTFS : Boolean;
Is_NTFS_Valid : Boolean;
end record;
pragma Suppress_Initialization (File_System);
function Is_Assigned (FS : File_System) return Boolean;
pragma Inline (Is_Assigned);
Disable_Controlled : constant Boolean := False;
procedure Get (Name : String; FS : aliased out File_System);
procedure Finalize (FS : in out File_System);
function Size (FS : File_System) return File_Size;
function Free_Space (FS : File_System) return File_Size;
function Format_Name (FS : aliased in out File_System) return String;
function Directory (FS : File_System) return String;
function Device (FS : File_System) return String; -- GUID
function Case_Preserving (FS : aliased in out File_System) return Boolean;
function Case_Sensitive (FS : aliased in out File_System) return Boolean;
function Is_HFS (FS : File_System) return Boolean is (False);
subtype File_System_Id is C.windef.DWORD;
function Identity (FS : aliased in out File_System) return File_System_Id;
-- unimplemented
function Owner (FS : File_System) return String
with Import, Convention => Ada, External_Name => "__drake_program_error";
end System.Native_Directories.Volumes;
|
arbitrary/extended_real-io.ads | jscparker/math_packages | 30 | 17125 | <filename>arbitrary/extended_real-io.ads
generic
package Extended_Real.IO is
-- E_real Text translation.
function e_Real_Image
(X : in e_Real;
Aft : in Positive := Positive'Last)
return String;
-- e_Real to Text translation.
-- Minimum length of Aft is 12. If less, it gets set to 12.
-- The number of digits in the result is the minimum of the 3 quantities:
-- Aft+1, Max_No_Of_Digits, and Max_Practical_String_Length. Aft is
-- input by the user: it's the number of decimal digits beyond the
-- decimal point. Max_No_Of_Digits is slightly greater than the
-- Desired_Decimal_Digit_Precision, the generic parameter. (see below.)
-- Text to E_real translation.
-- The following Sets define white space. In translation from ASCII to
-- e_Real only white space may separate the numbers in ASCII format.
-- The present setting is standard white space on UNIX workstations and
-- Crays. The parenthesis are used by complex numbers.
type Set is Array(Character) of Boolean;
pragma Pack (Set);
Is_White_Space : constant Set :=
(' ' | ',' | '(' | ')' => True, others => False);
Is_Exp_Symbol : constant Set :=
('E' | 'e' | 'D' | 'd' => True, others => False);
procedure e_Real_Val
(X : in String;
Y : out e_Real;
Last : out Natural);
-- Accepts many non Ada standard formats of the sort found in ascii output
-- on common machines. Also accepts formats of the sort one is likely
-- to type in at the key board. Accepts the following formats:
--
-- INTEGER : 1234567 or +1234567 or -1234567
-- DECIMAL : 12.34567 or -.1234567 or +.1234567 or 1234567.
-- EXPONENTIAL : 1234.567E+002 or .1234567E002 or 123467.E-03
-- NON_DECIMAL_EXPONENTIAL : -1234567E-003
--
-- Notice that
-- 0) Both the 'E' and the '.' are optional.
-- 1) If an 'E' exists, then the '.' may be anywhere to the left of the 'E'.
-- 2) The Leading sign is optional if its '+'.
-- 3) The sign of the exponent is optional if its '+'.
-- 4) The set Is_Exp_Symbol determines which Exp symbols are acceptible.
--
-- "Last" is the index of the last character of the Number. The purpose
-- is to allow one to read numbers sequentially from a string by inputting
-- string X(Last+1..X'Length) once the value of Last is determined.
--
-- We leave it up to the extended arithm. package to raise constraint_error
-- when the Exponent is out of range.
E_Format_Error : Exception;
private
-- Parameters that determine the maximum size of the output string:
No_Of_Decimal_Digits_Per_Chunk : constant := 6;
-- 8 is good if Radix is big enough (see next Assert).
pragma Assert (10.0**No_Of_Decimal_Digits_Per_Chunk < Radix_Minus_1);
-- The Decimal value of e_Real is actually calculated in
-- Radix 10.0**No_Of_Decimal_Digits_Per_Chunk. i.e. in chunks of 5-8 digits.
Bits_Per_e_Real : constant := No_Of_Bits_In_Radix * Mantissa'Length;
Decimal_Digits_Per_e_Real : constant := 1 + (Bits_Per_e_Real*1000 - 1) / 3322;
-- Ceiling (Bits_Per_e_Real / 3.322).
Chunks_Per_e_Real : constant :=
1 + (Decimal_Digits_Per_e_Real - 1) / No_Of_Decimal_Digits_Per_Chunk;
-- Ceiling (Decimal_Digits_Per_e_Real / No_Of_Decimal_Digits_Per_Chunk)
Max_No_Of_Digits : constant Positive :=
No_Of_Decimal_Digits_Per_Chunk * Chunks_Per_e_Real - 4;
--
-- Notice: it keeps some of the digits beyond the number supposedly held
-- in the input e_Real (Item). By keeping these extra digits at the end,
-- you reduce the Max error in translating from binary to ascii back to
-- binary again.
--
-- Subtract 4 because they always seem to be noise anyway.
pragma Assert (Max_Exponent <= 2 ** (e_Integer'Size - 5));
-- Just making sure. Doesn't work for excessively large Max_Exponent.
pragma Assert (e_Integer'Size <= Integer'Size);
-- Essentially requires 32 bit Integer or greater.
Max_Practical_String_Length : constant Positive := Max_No_Of_Digits + 19;
-- Maximum size of the output strings.
-- Set to whatever you think is appropriate.
-- Strings this size are actually created, so memory must be sufficient.
end Extended_Real.IO;
|
Data/ships/TestVector.asm | ped7g/EliteNext | 0 | 22995 | <gh_stars>0
TestVector: DB $03, $41, $23
DW TestVectorEdges
DB TestVectorEdgesSize
DB $54,$2A
DB TestVectorVertSize
DB TestVectorEdgesCnt
DB $00,$00
DB TestVectorNormalsSize
DB $32,$96,$1C
DW TestVectorNormals
DB $04,$01
DW TestVectorVertices
DB 0,0 ; Type and Tactics
TestVectorVertices DB $00,$40,$00,$1F,$00,$00
DB $00,$20,$00,$1F,$00,$00
DB $40,$00,$00,$1F,$01,$01
DB $20,$00,$00,$1F,$01,$01
DB $00,$00,$40,$1F,$02,$02
DB $00,$00,$20,$1F,$02,$02
DB $00,$00,$00,$1F,$03,$03
TestVectorVertSize equ $ - TestVectorVertices
TestVectorEdges DB $1F,$00,$00,$04
DB $1F,$00,$08,$0C
DB $1F,$00,$10,$14
DB $1F,$00,$18,$18
TestVectorEdgesSize equ $ - TestVectorEdges
TestVectorEdgesCnt equ TestVectorEdgesSize/4
; start normals #0 = top f,$on,$ p,$at,$ o,$ C,$br,$ Mk III
TestVectorNormals DB $1F,$00,$10,$00
DB $1F,$10,$00,$00
DB $1F,$00,$00,$10
DB $1F,$00,$00,$10
TestVectorNormalsSize equ $ - TestVectorNormals
TestVectorLen equ $ - TestVector
|
include/x86_64_linux_gnu_bits_stdint_uintn_h.ads | bmsauer/termbox-ada | 4 | 19575 | pragma Ada_2005;
pragma Style_Checks (Off);
with Interfaces.C; use Interfaces.C;
with x86_64_linux_gnu_bits_types_h;
package x86_64_linux_gnu_bits_stdint_uintn_h is
-- Define uintN_t types.
-- Copyright (C) 2017-2018 Free Software Foundation, Inc.
-- This file is part of the GNU C Library.
-- The GNU C Library is free software; you can redistribute it and/or
-- modify it under the terms of the GNU Lesser General Public
-- License as published by the Free Software Foundation; either
-- version 2.1 of the License, or (at your option) any later version.
-- The GNU C Library 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
-- Lesser General Public License for more details.
-- You should have received a copy of the GNU Lesser General Public
-- License along with the GNU C Library; if not, see
-- <http://www.gnu.org/licenses/>.
subtype uint8_t is x86_64_linux_gnu_bits_types_h.uu_uint8_t; -- /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:24
subtype uint16_t is x86_64_linux_gnu_bits_types_h.uu_uint16_t; -- /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:25
subtype uint32_t is x86_64_linux_gnu_bits_types_h.uu_uint32_t; -- /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:26
subtype uint64_t is x86_64_linux_gnu_bits_types_h.uu_uint64_t; -- /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:27
end x86_64_linux_gnu_bits_stdint_uintn_h;
|
gcc-gcc-7_3_0-release/gcc/ada/s-pooloc.adb | best08618/asylo | 7 | 25231 | <gh_stars>1-10
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . P O O L _ L O C A L --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2011, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Memory;
with Ada.Unchecked_Conversion;
package body System.Pool_Local is
package SSE renames System.Storage_Elements;
use type SSE.Storage_Offset;
Pointer_Size : constant SSE.Storage_Offset := Address'Size / Storage_Unit;
Pointers_Size : constant SSE.Storage_Offset := 2 * Pointer_Size;
type Acc_Address is access all Address;
function To_Acc_Address is
new Ada.Unchecked_Conversion (Address, Acc_Address);
-----------------------
-- Local Subprograms --
-----------------------
function Next (A : Address) return Acc_Address;
pragma Inline (Next);
-- Given an address of a block, return an access to the next block
function Prev (A : Address) return Acc_Address;
pragma Inline (Prev);
-- Given an address of a block, return an access to the previous block
--------------
-- Allocate --
--------------
procedure Allocate
(Pool : in out Unbounded_Reclaim_Pool;
Address : out System.Address;
Storage_Size : SSE.Storage_Count;
Alignment : SSE.Storage_Count)
is
pragma Warnings (Off, Alignment);
Allocated : constant System.Address :=
Memory.Alloc
(Memory.size_t (Storage_Size + Pointers_Size));
begin
-- The call to Alloc returns an address whose alignment is compatible
-- with the worst case alignment requirement for the machine; thus the
-- Alignment argument can be safely ignored.
if Allocated = Null_Address then
raise Storage_Error;
else
Address := Allocated + Pointers_Size;
Next (Allocated).all := Pool.First;
Prev (Allocated).all := Null_Address;
if Pool.First /= Null_Address then
Prev (Pool.First).all := Allocated;
end if;
Pool.First := Allocated;
end if;
end Allocate;
----------------
-- Deallocate --
----------------
procedure Deallocate
(Pool : in out Unbounded_Reclaim_Pool;
Address : System.Address;
Storage_Size : SSE.Storage_Count;
Alignment : SSE.Storage_Count)
is
pragma Warnings (Off, Storage_Size);
pragma Warnings (Off, Alignment);
Allocated : constant System.Address := Address - Pointers_Size;
begin
if Prev (Allocated).all = Null_Address then
Pool.First := Next (Allocated).all;
-- Comment needed
if Pool.First /= Null_Address then
Prev (Pool.First).all := Null_Address;
end if;
else
Next (Prev (Allocated).all).all := Next (Allocated).all;
end if;
if Next (Allocated).all /= Null_Address then
Prev (Next (Allocated).all).all := Prev (Allocated).all;
end if;
Memory.Free (Allocated);
end Deallocate;
--------------
-- Finalize --
--------------
procedure Finalize (Pool : in out Unbounded_Reclaim_Pool) is
N : System.Address := Pool.First;
Allocated : System.Address;
begin
while N /= Null_Address loop
Allocated := N;
N := Next (N).all;
Memory.Free (Allocated);
end loop;
end Finalize;
----------
-- Next --
----------
function Next (A : Address) return Acc_Address is
begin
return To_Acc_Address (A);
end Next;
----------
-- Prev --
----------
function Prev (A : Address) return Acc_Address is
begin
return To_Acc_Address (A + Pointer_Size);
end Prev;
end System.Pool_Local;
|
source/engine-dos/render.asm | baAlex/Sakurai | 0 | 165988 | ;
; MIT License
;
; Copyright (c) 2020 <NAME>
;
; 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.
; [render.asm]
; - <NAME> 2020
;==============================
RenderInit:
push ax
push bx ; Return of Get current video mode (Int 10/AH=0Fh)
push cx
push ds
push dx
mov dx, seg_data ; Messages, previous mode and palette...
mov ds, dx
mov dx, str_render_init
call near PrintLogString ; (ds:dx)
; Get current video mode (Int 10/AH=0Fh)
; http://www.ctyme.com/intr/rb-0108.htm
mov ah, 0x0F
int 0x10
mov [render_previous_mode], al
; Set VGA mode 13 (Int 10/AH=00h)
; http://www.ctyme.com/intr/rb-0069.htm
mov ah, 0x00
mov al, 0x13
int 0x10
; Get current video mode, again, to check (Int 10/AH=0Fh)
; Looks like different chips, return different values when
; the mode is set (above section). So we need to call this
; interrupt again.
mov ah, 0x0F
int 0x10
sub al, 0x13
jnz near RenderInit_failure
; Clean Vga memory
mov dx, VGA_SEGMENT
mov es, dx
mov di, VGA_OFFSET
mov cx, VGA_DATA_SIZE
call near MemoryClean
; Bye!
pop dx
pop ds
pop cx
pop bx
pop ax
ret
RenderInit_failure:
mov dx, str_vga_error
call near PrintOut ; (ds:dx)
mov al, EXIT_FAILURE
call near Exit ; (al)
;==============================
RenderStop:
push ax
push ds
push dx
mov ax, seg_data ; To retrieve previous mode
mov ds, ax
mov dx, str_render_stop
call near PrintLogString ; (ds:dx)
; Set previous mode (Int 10/AH=00h)
; http://www.ctyme.com/intr/rb-0069.htm
mov ah, 0x00
mov al, [render_previous_mode]
int 0x10
; Bye!
pop dx
pop ds
pop ax
ret
|
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_463.asm | ljhsiun2/medusa | 9 | 96205 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %r14
push %r8
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x1c4c, %rsi
lea addresses_WC_ht+0x1296c, %rdi
nop
nop
nop
dec %r8
mov $80, %rcx
rep movsw
nop
nop
nop
nop
nop
sub %r8, %r8
lea addresses_WC_ht+0x5f6c, %r14
nop
nop
nop
nop
dec %r12
movb $0x61, (%r14)
nop
nop
dec %r12
lea addresses_WC_ht+0x1a16c, %rsi
lea addresses_D_ht+0x1716c, %rdi
nop
nop
nop
add $6166, %r13
mov $80, %rcx
rep movsl
nop
add %r14, %r14
lea addresses_WC_ht+0xad6c, %rsi
lea addresses_A_ht+0x3aac, %rdi
nop
nop
nop
nop
sub $5894, %r14
mov $10, %rcx
rep movsl
nop
and %rdi, %rdi
lea addresses_D_ht+0x416c, %r12
nop
add %r13, %r13
mov (%r12), %rsi
sub %r13, %r13
lea addresses_D_ht+0x1baec, %rsi
lea addresses_normal_ht+0x1e93c, %rdi
clflush (%rsi)
nop
nop
nop
add %r11, %r11
mov $118, %rcx
rep movsb
nop
nop
nop
nop
sub %rcx, %rcx
lea addresses_WC_ht+0x137d5, %r13
nop
nop
nop
nop
nop
and $42295, %rcx
movb (%r13), %r8b
nop
nop
nop
nop
cmp %r12, %r12
lea addresses_WT_ht+0x696c, %rsi
lea addresses_WC_ht+0x4f4c, %rdi
nop
nop
nop
sub %r12, %r12
mov $64, %rcx
rep movsw
and $5074, %r12
pop %rsi
pop %rdi
pop %rcx
pop %r8
pop %r14
pop %r13
pop %r12
pop %r11
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %r13
push %r14
push %rax
push %rbp
push %rbx
// Load
lea addresses_PSE+0x6624, %r12
nop
nop
dec %r14
mov (%r12), %eax
cmp $19954, %r12
// Faulty Load
lea addresses_D+0x816c, %r10
nop
nop
nop
nop
nop
sub %rbx, %rbx
movups (%r10), %xmm1
vpextrq $1, %xmm1, %r14
lea oracles, %r10
and $0xff, %r14
shlq $12, %r14
mov (%r10,%r14,1), %r14
pop %rbx
pop %rbp
pop %rax
pop %r14
pop %r13
pop %r12
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_D', 'AVXalign': False, 'size': 1, 'NT': True, 'same': False, 'congruent': 0}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_PSE', 'AVXalign': False, 'size': 4, 'NT': False, 'same': False, 'congruent': 1}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'type': 'addresses_D', 'AVXalign': False, 'size': 16, 'NT': False, 'same': True, 'congruent': 0}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'type': 'addresses_WT_ht', 'congruent': 5, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_WC_ht', 'congruent': 9, 'same': True}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'AVXalign': False, 'size': 1, 'NT': False, 'same': False, 'congruent': 9}}
{'src': {'type': 'addresses_WC_ht', 'congruent': 11, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_D_ht', 'congruent': 11, 'same': False}}
{'src': {'type': 'addresses_WC_ht', 'congruent': 7, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_A_ht', 'congruent': 6, 'same': False}}
{'src': {'type': 'addresses_D_ht', 'AVXalign': False, 'size': 8, 'NT': False, 'same': False, 'congruent': 11}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_D_ht', 'congruent': 7, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_normal_ht', 'congruent': 4, 'same': False}}
{'src': {'type': 'addresses_WC_ht', 'AVXalign': False, 'size': 1, 'NT': False, 'same': False, 'congruent': 0}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_WT_ht', 'congruent': 11, 'same': True}, 'OP': 'REPM', 'dst': {'type': 'addresses_WC_ht', 'congruent': 4, 'same': False}}
{'36': 21829}
36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36
*/
|
oeis/010/A010805.asm | neoneye/loda-programs | 11 | 13561 | ; A010805: 17th powers: a(n) = n^17.
; 0,1,131072,129140163,17179869184,762939453125,16926659444736,232630513987207,2251799813685248,16677181699666569,100000000000000000,505447028499293771,2218611106740436992,8650415919381337933,30491346729331195904,98526125335693359375,295147905179352825856,827240261886336764177,2185911559738696531968,5480386857784802185939,13107200000000000000000,30041942495081691894741,66249952919459433152512,141050039560662968926103,290797794982682557415424,582076609134674072265625,1133827315385150725554176
pow $0,17
|
extern/gnat_sdl/gnat_sdl2/src/sdl_rect_h.ads | AdaCore/training_material | 15 | 15137 | pragma Ada_2005;
pragma Style_Checks (Off);
with Interfaces.C; use Interfaces.C;
with SDL_stdinc_h;
package SDL_rect_h is
-- Simple DirectMedia Layer
-- Copyright (C) 1997-2018 <NAME> <<EMAIL>>
-- This software is provided 'as-is', without any express or implied
-- warranty. In no event will the authors be held liable for any damages
-- arising from the use of this software.
-- Permission is granted to anyone to use this software for any purpose,
-- including commercial applications, and to alter it and redistribute it
-- freely, subject to the following restrictions:
-- 1. The origin of this software must not be misrepresented; you must not
-- claim that you wrote the original software. If you use this software
-- in a product, an acknowledgment in the product documentation would be
-- appreciated but is not required.
-- 2. Altered source versions must be plainly marked as such, and must not be
-- misrepresented as being the original software.
-- 3. This notice may not be removed or altered from any source distribution.
--
--*
-- * \file SDL_rect.h
-- *
-- * Header file for SDL_rect definition and management functions.
--
-- Set up for C function definitions, even when using C++
--*
-- * \brief The structure that defines a point
-- *
-- * \sa SDL_EnclosePoints
-- * \sa SDL_PointInRect
--
type SDL_Point is record
x : aliased int; -- ..\SDL2_tmp\SDL_rect.h:50
y : aliased int; -- ..\SDL2_tmp\SDL_rect.h:51
end record;
pragma Convention (C_Pass_By_Copy, SDL_Point); -- ..\SDL2_tmp\SDL_rect.h:48
--*
-- * \brief A rectangle, with the origin at the upper left.
-- *
-- * \sa SDL_RectEmpty
-- * \sa SDL_RectEquals
-- * \sa SDL_HasIntersection
-- * \sa SDL_IntersectRect
-- * \sa SDL_UnionRect
-- * \sa SDL_EnclosePoints
--
type SDL_Rect is record
x : aliased int; -- ..\SDL2_tmp\SDL_rect.h:66
y : aliased int; -- ..\SDL2_tmp\SDL_rect.h:66
w : aliased int; -- ..\SDL2_tmp\SDL_rect.h:67
h : aliased int; -- ..\SDL2_tmp\SDL_rect.h:67
end record;
pragma Convention (C_Pass_By_Copy, SDL_Rect); -- ..\SDL2_tmp\SDL_rect.h:64
--*
-- * \brief Returns true if point resides inside a rectangle.
--
function SDL_PointInRect (p : access constant SDL_Point; r : access constant SDL_Rect) return SDL_stdinc_h.SDL_bool; -- ..\SDL2_tmp\SDL_rect.h:73
pragma Import (C, SDL_PointInRect, "SDL_PointInRect");
--*
-- * \brief Returns true if the rectangle has no area.
--
function SDL_RectEmpty (r : access constant SDL_Rect) return SDL_stdinc_h.SDL_bool; -- ..\SDL2_tmp\SDL_rect.h:82
pragma Import (C, SDL_RectEmpty, "SDL_RectEmpty");
--*
-- * \brief Returns true if the two rectangles are equal.
--
function SDL_RectEquals (a : access constant SDL_Rect; b : access constant SDL_Rect) return SDL_stdinc_h.SDL_bool; -- ..\SDL2_tmp\SDL_rect.h:90
pragma Import (C, SDL_RectEquals, "SDL_RectEquals");
--*
-- * \brief Determine whether two rectangles intersect.
-- *
-- * \return SDL_TRUE if there is an intersection, SDL_FALSE otherwise.
--
function SDL_HasIntersection (A : access constant SDL_Rect; B : access constant SDL_Rect) return SDL_stdinc_h.SDL_bool; -- ..\SDL2_tmp\SDL_rect.h:101
pragma Import (C, SDL_HasIntersection, "SDL_HasIntersection");
--*
-- * \brief Calculate the intersection of two rectangles.
-- *
-- * \return SDL_TRUE if there is an intersection, SDL_FALSE otherwise.
--
function SDL_IntersectRect
(A : access constant SDL_Rect;
B : access constant SDL_Rect;
result : access SDL_Rect) return SDL_stdinc_h.SDL_bool; -- ..\SDL2_tmp\SDL_rect.h:109
pragma Import (C, SDL_IntersectRect, "SDL_IntersectRect");
--*
-- * \brief Calculate the union of two rectangles.
--
procedure SDL_UnionRect
(A : access constant SDL_Rect;
B : access constant SDL_Rect;
result : access SDL_Rect); -- ..\SDL2_tmp\SDL_rect.h:116
pragma Import (C, SDL_UnionRect, "SDL_UnionRect");
--*
-- * \brief Calculate a minimal rectangle enclosing a set of points
-- *
-- * \return SDL_TRUE if any points were within the clipping rect
--
function SDL_EnclosePoints
(points : access constant SDL_Point;
count : int;
clip : access constant SDL_Rect;
result : access SDL_Rect) return SDL_stdinc_h.SDL_bool; -- ..\SDL2_tmp\SDL_rect.h:125
pragma Import (C, SDL_EnclosePoints, "SDL_EnclosePoints");
--*
-- * \brief Calculate the intersection of a rectangle and line segment.
-- *
-- * \return SDL_TRUE if there is an intersection, SDL_FALSE otherwise.
--
function SDL_IntersectRectAndLine
(rect : access constant SDL_Rect;
X1 : access int;
Y1 : access int;
X2 : access int;
Y2 : access int) return SDL_stdinc_h.SDL_bool; -- ..\SDL2_tmp\SDL_rect.h:135
pragma Import (C, SDL_IntersectRectAndLine, "SDL_IntersectRectAndLine");
-- Ends C function definitions when using C++
-- vi: set ts=4 sw=4 expandtab:
end SDL_rect_h;
|
homotopy/RibbonCover.agda | danbornside/HoTT-Agda | 0 | 11672 | {-# OPTIONS --without-K #-}
{-
Ribbon is an explicit covering space construction.
This construction is given by <NAME>, Favonia
and <NAME> together.
-}
open import HoTT
-- A is the pointed base space.
-- El is intended to be a (group-)set,
module homotopy.RibbonCover {i : ULevel} where
-- The HIT ribbon---reconstructed covering space
private
π1 = fundamental-group
private
module _ (A∙ : Ptd i) {j} (gs : Gset (π1 A∙) j) where
private
A = fst A∙
a = snd A∙
El = Gset.El gs
El-level = Gset.El-level gs
_⊙_ = Gset.act gs
{-
What the following data type definition should be
when we have a proof assistant for HoTT:
data Ribbon (a₂ : A) : Set where
trace : El → a =₀ a₂ → Ribbon a₂
paste : ∀ el loop (p : a =₀ a₂)
→ trace (el ⊙ loop) p == trace el (loop ∙₀ p)
-}
data #Ribbon-aux (a₂ : A) : Type (lmax i j) where
#trace : El → a =₀ a₂ → #Ribbon-aux a₂
data #Ribbon (a₂ : A) : Type (lmax i j) where
#ribbon : #Ribbon-aux a₂ → (Unit → Unit) → #Ribbon a₂
Ribbon : ∀ (A∙ : Ptd i) {j} (gs : Gset (π1 A∙) j)
→ fst A∙ → Type (lmax i j)
Ribbon = #Ribbon
module _ {A∙ : Ptd i} {j} {gs : Gset (fundamental-group A∙) j} {a₂ : fst A∙} where
private
A = fst A∙
a = snd A∙
El = Gset.El gs
El-level = Gset.El-level gs
_⊙_ = Gset.act gs
-- A point in the fiber [a₂].
{-
[e] is a point in the [fiber a], and
[p] is a path to transport [y] to fiber [a₂].
-}
trace : El → a =₀ a₂ → Ribbon A∙ gs a₂
trace el p = #ribbon (#trace el p) _
{-
A loop based at [a] can used as a group action
or for concatination. Both should be equivalent.
-}
postulate -- HIT
paste : ∀ el loop (p : a =₀ a₂)
→ trace (el ⊙ loop) p == trace el (loop ∙₀ p)
{-
Make each fiber a set and cancel all higher structures
due to [paste].
-}
postulate -- HIT
Ribbon-is-set : is-set (Ribbon A∙ gs a₂)
Ribbon-level = Ribbon-is-set
-- Elimination rules.
module RibbonElim {j} {P : Ribbon A∙ gs a₂ → Type j}
(P-level : ∀ {r} → is-set (P r))
(trace* : ∀ el p → P (trace el p))
(paste* : ∀ el loop p
→ trace* (el ⊙ loop) p == trace* el (loop ∙₀ p)
[ P ↓ paste el loop p ]) where
f : Π (Ribbon A∙ gs a₂) P
f = f-aux phantom phantom where
f-aux : Phantom trace* → Phantom paste* → Π (Ribbon A∙ gs a₂) P
f-aux phantom phantom (#ribbon (#trace el p) _) = trace* el p
open RibbonElim public using () renaming (f to Ribbon-elim)
module RibbonRec {j} {P : Type j}
(P-level : is-set P)
(trace* : ∀ el p → P)
(paste* : ∀ el loop p
→ trace* (el ⊙ loop) p == trace* el (loop ∙₀ p)) where
private
module M = RibbonElim P-level trace*
(λ el loop p → ↓-cst-in (paste* el loop p))
f : Ribbon A∙ gs a₂ → P
f = M.f
open RibbonRec public using () renaming (f to Ribbon-rec)
-- This data structure gives a cover.
Ribbon-cover : ∀ (A∙ : Ptd i) {j} (gs : Gset (π1 A∙) j)
→ Cover (fst A∙) (lmax i j)
Ribbon-cover A∙ gs = record
{ Fiber = Ribbon A∙ gs
; Fiber-level = λ a → Ribbon-level
}
trans-trace : ∀ {A : Type i} {a₁} {j}
{gs : Gset (π1 (A , a₁)) j}
{a₂} (q : a₁ == a₂) y p
→ transport (Ribbon (A , a₁) gs) q (trace y p) == trace y (p ∙₀ [ q ])
trans-trace idp y p = ap (trace y) $ ! $ ∙₀-unit-r p
|
source/league/ucd/matreshka-internals-unicode-ucd-core_0027.ads | svn2github/matreshka | 24 | 3381 | <gh_stars>10-100
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012-2015, <NAME> <<EMAIL>> --
-- All rights reserved. --
-- --
-- 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 Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
pragma Restrictions (No_Elaboration_Code);
-- GNAT: enforce generation of preinitialized data section instead of
-- generation of elaboration code.
package Matreshka.Internals.Unicode.Ucd.Core_0027 is
pragma Preelaborate;
Group_0027 : aliased constant Core_Second_Stage
:= (16#00# .. 16#04# => -- 2700 .. 2704
(Other_Symbol, Neutral,
Other, Other, Other, Ideographic,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#08# .. 16#0D# => -- 2708 .. 270D
(Other_Symbol, Neutral,
Other, Other, Other, Ideographic,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#3D# => -- 273D
(Other_Symbol, Ambiguous,
Other, Other, Other, Alphabetic,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#57# => -- 2757
(Other_Symbol, Ambiguous,
Other, Other, Other, Ambiguous,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#5B# .. 16#60# => -- 275B .. 2760
(Other_Symbol, Neutral,
Other, Other, Close, Quotation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#62# .. 16#63# => -- 2762 .. 2763
(Other_Symbol, Neutral,
Other, Other, Other, Exclamation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#68# => -- 2768
(Open_Punctuation, Neutral,
Other, Other, Close, Open_Punctuation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#69# => -- 2769
(Close_Punctuation, Neutral,
Other, Other, Close, Close_Punctuation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#6A# => -- 276A
(Open_Punctuation, Neutral,
Other, Other, Close, Open_Punctuation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#6B# => -- 276B
(Close_Punctuation, Neutral,
Other, Other, Close, Close_Punctuation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#6C# => -- 276C
(Open_Punctuation, Neutral,
Other, Other, Close, Open_Punctuation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#6D# => -- 276D
(Close_Punctuation, Neutral,
Other, Other, Close, Close_Punctuation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#6E# => -- 276E
(Open_Punctuation, Neutral,
Other, Other, Close, Open_Punctuation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#6F# => -- 276F
(Close_Punctuation, Neutral,
Other, Other, Close, Close_Punctuation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#70# => -- 2770
(Open_Punctuation, Neutral,
Other, Other, Close, Open_Punctuation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#71# => -- 2771
(Close_Punctuation, Neutral,
Other, Other, Close, Close_Punctuation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#72# => -- 2772
(Open_Punctuation, Neutral,
Other, Other, Close, Open_Punctuation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#73# => -- 2773
(Close_Punctuation, Neutral,
Other, Other, Close, Close_Punctuation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#74# => -- 2774
(Open_Punctuation, Neutral,
Other, Other, Close, Open_Punctuation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#75# => -- 2775
(Close_Punctuation, Neutral,
Other, Other, Close, Close_Punctuation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#76# .. 16#7F# => -- 2776 .. 277F
(Other_Number, Ambiguous,
Other, Other, Other, Ambiguous,
(Grapheme_Base => True,
others => False)),
16#80# .. 16#93# => -- 2780 .. 2793
(Other_Number, Neutral,
Other, Other, Other, Ambiguous,
(Grapheme_Base => True,
others => False)),
16#C0# .. 16#C4# => -- 27C0 .. 27C4
(Math_Symbol, Neutral,
Other, Other, Other, Alphabetic,
(Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#C5# => -- 27C5
(Open_Punctuation, Neutral,
Other, Other, Close, Open_Punctuation,
(Other_Math
| Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#C6# => -- 27C6
(Close_Punctuation, Neutral,
Other, Other, Close, Close_Punctuation,
(Other_Math
| Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#C7# .. 16#E5# => -- 27C7 .. 27E5
(Math_Symbol, Neutral,
Other, Other, Other, Alphabetic,
(Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#E6# => -- 27E6
(Open_Punctuation, Narrow,
Other, Other, Close, Open_Punctuation,
(Other_Math
| Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#E7# => -- 27E7
(Close_Punctuation, Narrow,
Other, Other, Close, Close_Punctuation,
(Other_Math
| Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#E8# => -- 27E8
(Open_Punctuation, Narrow,
Other, Other, Close, Open_Punctuation,
(Other_Math
| Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#E9# => -- 27E9
(Close_Punctuation, Narrow,
Other, Other, Close, Close_Punctuation,
(Other_Math
| Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#EA# => -- 27EA
(Open_Punctuation, Narrow,
Other, Other, Close, Open_Punctuation,
(Other_Math
| Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#EB# => -- 27EB
(Close_Punctuation, Narrow,
Other, Other, Close, Close_Punctuation,
(Other_Math
| Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#EC# => -- 27EC
(Open_Punctuation, Narrow,
Other, Other, Close, Open_Punctuation,
(Other_Math
| Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#ED# => -- 27ED
(Close_Punctuation, Narrow,
Other, Other, Close, Close_Punctuation,
(Other_Math
| Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#EE# => -- 27EE
(Open_Punctuation, Neutral,
Other, Other, Close, Open_Punctuation,
(Other_Math
| Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#EF# => -- 27EF
(Close_Punctuation, Neutral,
Other, Other, Close, Close_Punctuation,
(Other_Math
| Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#F0# .. 16#FF# => -- 27F0 .. 27FF
(Math_Symbol, Neutral,
Other, Other, Other, Alphabetic,
(Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
others =>
(Other_Symbol, Neutral,
Other, Other, Other, Alphabetic,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)));
end Matreshka.Internals.Unicode.Ucd.Core_0027;
|
programs/oeis/017/A017437.asm | neoneye/loda | 22 | 87917 | ; A017437: a(n) = 11*n + 4.
; 4,15,26,37,48,59,70,81,92,103,114,125,136,147,158,169,180,191,202,213,224,235,246,257,268,279,290,301,312,323,334,345,356,367,378,389,400,411,422,433,444,455,466,477,488,499,510,521,532,543,554,565,576,587,598,609,620,631,642,653,664,675,686,697,708,719,730,741,752,763,774,785,796,807,818,829,840,851,862,873,884,895,906,917,928,939,950,961,972,983,994,1005,1016,1027,1038,1049,1060,1071,1082,1093
mul $0,11
add $0,4
|
presto-lucene/src/main/resources/LucenePushDown.g4 | photogamerun/weiwodb | 1 | 1411 | grammar LucenePushDown;
expr :(String)
|expr op=(AND|OR|NOT) expr
| LPAREN expr RPAREN
;
RPAREN : ')' ;
LPAREN : '(' ;
AND :'[AND]';
OR :'[OR]';
NOT :'[NOT]';
String : '\'' ( ~'\'' | '\'\'' )* '\'';
WS : [ \t\r\n]+ -> channel(HIDDEN) ; |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_940.asm | ljhsiun2/medusa | 9 | 88324 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r15
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0xdc1c, %r9
nop
nop
nop
cmp %rsi, %rsi
movups (%r9), %xmm3
vpextrq $0, %xmm3, %r11
nop
add $33339, %r15
lea addresses_WC_ht+0x19f1c, %rsi
lea addresses_WC_ht+0x17e9c, %rdi
nop
nop
nop
sub %r9, %r9
mov $4, %rcx
rep movsq
nop
xor $14372, %rcx
lea addresses_WT_ht+0x17a1c, %r11
nop
nop
nop
nop
nop
cmp %rdi, %rdi
movb $0x61, (%r11)
nop
nop
nop
nop
cmp %rsi, %rsi
lea addresses_WC_ht+0x689c, %rsi
nop
nop
nop
and $30641, %r8
movl $0x61626364, (%rsi)
nop
nop
nop
and %rcx, %rcx
lea addresses_WT_ht+0x4732, %r9
dec %r8
mov (%r9), %r11
nop
sub %rsi, %rsi
lea addresses_WC_ht+0x975c, %rsi
lea addresses_normal_ht+0x10d9c, %rdi
xor $32975, %r8
mov $35, %rcx
rep movsb
nop
nop
xor %r11, %r11
lea addresses_WC_ht+0x16e78, %rsi
lea addresses_A_ht+0x132de, %rdi
clflush (%rdi)
cmp $54100, %r10
mov $70, %rcx
rep movsq
and $50207, %rsi
pop %rsi
pop %rdi
pop %rcx
pop %r9
pop %r8
pop %r15
pop %r11
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r9
push %rbp
push %rcx
push %rdi
push %rdx
// Load
lea addresses_UC+0x13d43, %rdx
nop
nop
nop
nop
and %rdi, %rdi
mov (%rdx), %r9d
nop
sub %r10, %r10
// Faulty Load
lea addresses_WC+0x1aa9c, %rbp
nop
nop
add %r9, %r9
movb (%rbp), %cl
lea oracles, %rdx
and $0xff, %rcx
shlq $12, %rcx
mov (%rdx,%rcx,1), %rcx
pop %rdx
pop %rdi
pop %rcx
pop %rbp
pop %r9
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_WC', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_UC', 'size': 4, 'AVXalign': True, 'NT': False, 'congruent': 0, 'same': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_WC', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
<gen_prepare_buffer>
{'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 16, 'AVXalign': False, 'NT': False, 'congruent': 6, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_WC_ht', 'congruent': 7, 'same': False}, 'dst': {'type': 'addresses_WC_ht', 'congruent': 5, 'same': True}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 7, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'size': 4, 'AVXalign': True, 'NT': True, 'congruent': 8, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_WT_ht', 'size': 8, 'AVXalign': False, 'NT': True, 'congruent': 1, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_WC_ht', 'congruent': 3, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 8, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_WC_ht', 'congruent': 2, 'same': False}, 'dst': {'type': 'addresses_A_ht', 'congruent': 0, 'same': False}}
{'38': 21829}
38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38
*/
|
test/Succeed/Issue2320.agda | cruhland/agda | 1,989 | 15714 |
record R₁ : Set₁ where
field
A : Set
open R₁ ⦃ … ⦄
record R₂ : Set₁ where
field
⦃ r₁ ⦄ : R₁
B : Set
B = A
|
generated/natools-smaz-original_hash.adb | faelys/natools | 0 | 4600 | with Interfaces; use Interfaces;
package body Natools.Smaz.Original_Hash is
P : constant array (0 .. 3) of Natural :=
(1, 2, 3, 4);
T1 : constant array (0 .. 3) of Unsigned_16 :=
(205, 471, 343, 362);
T2 : constant array (0 .. 3) of Unsigned_16 :=
(421, 215, 438, 437);
G : constant array (0 .. 508) of Unsigned_8 :=
(19, 63, 226, 0, 0, 25, 0, 69, 0, 0, 14, 0, 0, 0, 73, 207, 92, 0, 0, 0,
48, 0, 62, 48, 123, 56, 0, 0, 11, 47, 0, 0, 167, 145, 0, 0, 0, 213,
114, 15, 0, 2, 214, 0, 161, 162, 0, 0, 0, 50, 0, 0, 0, 0, 0, 133, 0,
0, 54, 0, 0, 0, 33, 220, 0, 143, 1, 0, 0, 0, 0, 229, 0, 0, 0, 0, 0,
226, 0, 0, 110, 0, 0, 0, 209, 165, 0, 0, 0, 0, 99, 0, 0, 0, 0, 0, 0,
0, 0, 79, 0, 0, 235, 0, 0, 0, 195, 237, 0, 0, 0, 0, 238, 82, 0, 252,
26, 4, 0, 0, 205, 0, 0, 0, 0, 188, 0, 168, 0, 242, 0, 0, 0, 99, 191,
0, 103, 0, 230, 0, 0, 0, 0, 135, 0, 183, 21, 0, 11, 172, 119, 0, 208,
137, 0, 0, 0, 0, 0, 0, 180, 10, 183, 203, 0, 0, 86, 132, 8, 17, 0, 32,
0, 0, 92, 0, 0, 170, 0, 0, 94, 194, 50, 185, 0, 0, 42, 0, 185, 233,
177, 0, 0, 0, 0, 0, 0, 237, 218, 0, 0, 0, 119, 0, 181, 0, 0, 13, 0, 0,
0, 0, 0, 0, 0, 201, 0, 42, 0, 0, 0, 0, 216, 0, 0, 0, 0, 158, 0, 0, 0,
141, 36, 51, 0, 27, 234, 242, 0, 43, 0, 219, 78, 169, 164, 0, 59, 33,
0, 112, 0, 31, 0, 144, 40, 0, 0, 0, 0, 0, 158, 0, 0, 0, 227, 127, 0,
154, 241, 0, 0, 209, 0, 248, 0, 0, 68, 0, 119, 0, 0, 104, 174, 79, 0,
0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 0, 206, 0, 202, 0, 0, 0, 0, 133, 71,
209, 189, 134, 0, 69, 0, 0, 226, 68, 0, 0, 189, 0, 230, 16, 0, 0, 0,
0, 181, 246, 97, 0, 88, 25, 0, 49, 0, 34, 77, 30, 210, 0, 0, 0, 0,
128, 193, 0, 116, 2, 121, 16, 0, 214, 132, 22, 116, 68, 0, 148, 0, 0,
90, 165, 218, 157, 24, 0, 0, 192, 0, 81, 0, 0, 177, 0, 98, 81, 183, 0,
0, 0, 0, 7, 161, 0, 123, 106, 0, 0, 136, 82, 51, 48, 0, 0, 169, 5,
170, 138, 66, 211, 0, 112, 1, 0, 0, 84, 220, 167, 0, 0, 161, 252, 46,
175, 95, 170, 20, 216, 177, 0, 97, 76, 44, 0, 0, 20, 0, 0, 233, 0, 0,
0, 47, 8, 116, 147, 0, 212, 0, 0, 118, 94, 0, 89, 183, 0, 0, 105, 0,
0, 74, 196, 28, 4, 0, 103, 0, 5, 0, 131, 45, 0, 177, 232, 219, 19,
228, 1, 0, 31, 90, 0, 0, 150, 23, 92, 120, 238, 48, 1, 0, 0, 37, 3,
152, 0, 0, 110, 166, 35, 13, 115, 217, 0, 0, 0, 87, 0, 126, 163, 248,
80, 9, 12, 0, 0, 52, 10, 11, 89, 0);
function Hash (S : String) return Natural is
F : constant Natural := S'First - 1;
L : constant Natural := S'Length;
F1, F2 : Natural := 0;
J : Natural;
begin
for K in P'Range loop
exit when L < P (K);
J := Character'Pos (S (P (K) + F));
F1 := (F1 + Natural (T1 (K)) * J) mod 509;
F2 := (F2 + Natural (T2 (K)) * J) mod 509;
end loop;
return (Natural (G (F1)) + Natural (G (F2))) mod 254;
end Hash;
end Natools.Smaz.Original_Hash;
|
src/base/beans/util-beans-objects.adb | RREE/ada-util | 60 | 17248 | <filename>src/base/beans/util-beans-objects.adb
-----------------------------------------------------------------------
-- util-beans-objects -- Generic Typed Data Representation
-- Copyright (C) 2009, 2010, 2011, 2013, 2016, 2017, 2018, 2020 <NAME>
-- Written by <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.Conversions;
with Ada.Unchecked_Deallocation;
with Ada.Tags;
with Ada.Strings.UTF_Encoding.Wide_Wide_Strings;
with Util.Beans.Basic;
package body Util.Beans.Objects is
use Util.Concurrent.Counters;
use Ada.Characters.Conversions;
function UTF8_Decode (S : in String) return Wide_Wide_String
renames Ada.Strings.UTF_Encoding.Wide_Wide_Strings.Decode;
-- Find the data type to be used for an arithmetic operation between two objects.
function Get_Arithmetic_Type (Left, Right : Object) return Data_Type;
-- Find the data type to be used for a composition operation between two objects.
function Get_Compose_Type (Left, Right : Object) return Data_Type;
-- Find the best type to be used to compare two operands.
function Get_Compare_Type (Left, Right : Object) return Data_Type;
Integer_Type : aliased constant Int_Type := Int_Type '(null record);
Bool_Type : aliased constant Boolean_Type := Boolean_Type '(null record);
Str_Type : aliased constant String_Type := String_Type '(null record);
WString_Type : aliased constant Wide_String_Type := Wide_String_Type '(null record);
Flt_Type : aliased constant Float_Type := Float_Type '(null record);
Duration_Type : aliased constant Duration_Type_Def := Duration_Type_Def '(null record);
Bn_Type : aliased constant Bean_Type := Bean_Type '(null record);
Ar_Type : aliased constant Array_Type := Array_Type '(null record);
-- ------------------------------
-- Convert the value into a wide string.
-- ------------------------------
function To_Wide_Wide_String (Type_Def : in Basic_Type;
Value : in Object_Value) return Wide_Wide_String is
begin
return UTF8_Decode (Object_Type'Class (Type_Def).To_String (Value));
end To_Wide_Wide_String;
-- ------------------------------
-- Convert the value into a float.
-- ------------------------------
function To_Long_Float (Type_Def : in Basic_Type;
Value : in Object_Value) return Long_Long_Float is
pragma Unreferenced (Type_Def, Value);
begin
return 0.0;
end To_Long_Float;
-- ------------------------------
-- Convert the value into a boolean.
-- ------------------------------
function To_Boolean (Type_Def : in Basic_Type;
Value : in Object_Value) return Boolean is
pragma Unreferenced (Type_Def, Value);
begin
return False;
end To_Boolean;
-- ------------------------------
-- Convert the value into a duration.
-- ------------------------------
function To_Duration (Type_Def : in Basic_Type;
Value : in Object_Value) return Duration is
pragma Unreferenced (Type_Def, Value);
begin
return 0.0;
end To_Duration;
-- ------------------------------
-- Returns False
-- ------------------------------
function Is_Empty (Type_Def : in Basic_Type;
Value : in Object_Value) return Boolean is
pragma Unreferenced (Type_Def, Value);
begin
return False;
end Is_Empty;
-- ------------------------------
-- Null Type
-- ------------------------------
-- ------------------------------
-- Get the type name
-- ------------------------------
function Get_Name (Type_Def : Null_Type) return String is
pragma Unreferenced (Type_Def);
begin
return "Null";
end Get_Name;
-- ------------------------------
-- Get the base data type.
-- ------------------------------
function Get_Data_Type (Type_Def : Null_Type) return Data_Type is
pragma Unreferenced (Type_Def);
begin
return TYPE_NULL;
end Get_Data_Type;
-- ------------------------------
-- Convert the value into a string.
-- ------------------------------
function To_String (Type_Def : in Null_Type;
Value : in Object_Value) return String is
pragma Unreferenced (Type_Def, Value);
begin
return "null";
end To_String;
-- ------------------------------
-- Returns True
-- ------------------------------
function Is_Empty (Type_Def : in Null_Type;
Value : in Object_Value) return Boolean is
pragma Unreferenced (Type_Def, Value);
begin
return True;
end Is_Empty;
-- ------------------------------
-- Integer Type
-- ------------------------------
-- ------------------------------
-- Get the type name
-- ------------------------------
function Get_Name (Type_Def : Int_Type) return String is
pragma Unreferenced (Type_Def);
begin
return "Integer";
end Get_Name;
-- ------------------------------
-- Get the base data type.
-- ------------------------------
function Get_Data_Type (Type_Def : Int_Type) return Data_Type is
pragma Unreferenced (Type_Def);
begin
return TYPE_INTEGER;
end Get_Data_Type;
-- ------------------------------
-- Convert the value into a string.
-- ------------------------------
function To_String (Type_Def : in Int_Type;
Value : in Object_Value) return String is
pragma Unreferenced (Type_Def);
S : constant String := Long_Long_Integer'Image (Value.Int_Value);
begin
if Value.Int_Value >= 0 then
return S (S'First + 1 .. S'Last);
else
return S;
end if;
end To_String;
-- ------------------------------
-- Convert the value into an integer.
-- ------------------------------
function To_Long_Long (Type_Def : in Int_Type;
Value : in Object_Value) return Long_Long_Integer is
pragma Unreferenced (Type_Def);
begin
return Value.Int_Value;
end To_Long_Long;
-- ------------------------------
-- Convert the value into a float.
-- ------------------------------
function To_Long_Float (Type_Def : in Int_Type;
Value : in Object_Value) return Long_Long_Float is
pragma Unreferenced (Type_Def);
begin
return Long_Long_Float (Value.Int_Value);
end To_Long_Float;
-- ------------------------------
-- Convert the value into a boolean.
-- ------------------------------
function To_Boolean (Type_Def : in Int_Type;
Value : in Object_Value) return Boolean is
pragma Unreferenced (Type_Def);
begin
return Value.Int_Value /= 0;
end To_Boolean;
-- ------------------------------
-- Convert the value into a duration.
-- ------------------------------
function To_Duration (Type_Def : in Int_Type;
Value : in Object_Value) return Duration is
pragma Unreferenced (Type_Def);
begin
return Duration (Value.Int_Value);
end To_Duration;
-- ------------------------------
-- Float Type
-- ------------------------------
-- ------------------------------
-- Get the type name
-- ------------------------------
function Get_Name (Type_Def : in Float_Type) return String is
pragma Unreferenced (Type_Def);
begin
return "Float";
end Get_Name;
-- ------------------------------
-- Get the base data type.
-- ------------------------------
function Get_Data_Type (Type_Def : in Float_Type) return Data_Type is
pragma Unreferenced (Type_Def);
begin
return TYPE_FLOAT;
end Get_Data_Type;
-- ------------------------------
-- Convert the value into a string.
-- ------------------------------
function To_String (Type_Def : in Float_Type;
Value : in Object_Value) return String is
pragma Unreferenced (Type_Def);
begin
return Long_Long_Float'Image (Value.Float_Value);
end To_String;
-- ------------------------------
-- Convert the value into an integer.
-- ------------------------------
function To_Long_Long (Type_Def : in Float_Type;
Value : in Object_Value) return Long_Long_Integer is
pragma Unreferenced (Type_Def);
begin
return Long_Long_Integer (Value.Float_Value);
end To_Long_Long;
-- ------------------------------
-- Convert the value into a float.
-- ------------------------------
function To_Long_Float (Type_Def : in Float_Type;
Value : in Object_Value) return Long_Long_Float is
pragma Unreferenced (Type_Def);
begin
return Value.Float_Value;
end To_Long_Float;
-- ------------------------------
-- Convert the value into a boolean.
-- ------------------------------
function To_Boolean (Type_Def : in Float_Type;
Value : in Object_Value) return Boolean is
pragma Unreferenced (Type_Def);
begin
return Value.Float_Value /= 0.0;
end To_Boolean;
-- ------------------------------
-- Convert the value into a duration.
-- ------------------------------
function To_Duration (Type_Def : in Float_Type;
Value : in Object_Value) return Duration is
pragma Unreferenced (Type_Def);
begin
return Duration (Value.Float_Value);
end To_Duration;
-- ------------------------------
-- String Type
-- ------------------------------
-- ------------------------------
-- Get the type name
-- ------------------------------
function Get_Name (Type_Def : in String_Type) return String is
pragma Unreferenced (Type_Def);
begin
return "String";
end Get_Name;
-- ------------------------------
-- Get the base data type.
-- ------------------------------
function Get_Data_Type (Type_Def : in String_Type) return Data_Type is
pragma Unreferenced (Type_Def);
begin
return TYPE_STRING;
end Get_Data_Type;
-- ------------------------------
-- Convert the value into a string.
-- ------------------------------
function To_String (Type_Def : in String_Type;
Value : in Object_Value) return String is
pragma Unreferenced (Type_Def);
Proxy : constant String_Proxy_Access := Value.String_Proxy;
begin
if Proxy = null then
return "null";
else
return Proxy.Value;
end if;
end To_String;
-- ------------------------------
-- Convert the value into an integer.
-- ------------------------------
function To_Long_Long (Type_Def : in String_Type;
Value : in Object_Value) return Long_Long_Integer is
pragma Unreferenced (Type_Def);
Proxy : constant String_Proxy_Access := Value.String_Proxy;
begin
if Proxy = null then
return 0;
else
return Long_Long_Integer'Value (Proxy.Value);
end if;
end To_Long_Long;
-- ------------------------------
-- Convert the value into a float.
-- ------------------------------
function To_Long_Float (Type_Def : in String_Type;
Value : in Object_Value) return Long_Long_Float is
pragma Unreferenced (Type_Def);
Proxy : constant String_Proxy_Access := Value.String_Proxy;
begin
if Proxy = null then
return 0.0;
else
return Long_Long_Float'Value (Proxy.Value);
end if;
end To_Long_Float;
-- ------------------------------
-- Convert the value into a boolean.
-- ------------------------------
function To_Boolean (Type_Def : in String_Type;
Value : in Object_Value) return Boolean is
pragma Unreferenced (Type_Def);
Proxy : constant String_Proxy_Access := Value.String_Proxy;
begin
return Proxy /= null
and then (Proxy.Value = "true"
or Proxy.Value = "TRUE"
or Proxy.Value = "1");
end To_Boolean;
-- ------------------------------
-- Returns True if the value is empty.
-- ------------------------------
function Is_Empty (Type_Def : in String_Type;
Value : in Object_Value) return Boolean is
pragma Unreferenced (Type_Def);
Proxy : constant String_Proxy_Access := Value.String_Proxy;
begin
return Proxy = null or else Proxy.Value = "";
end Is_Empty;
-- ------------------------------
-- Convert the value into a duration.
-- ------------------------------
function To_Duration (Type_Def : in String_Type;
Value : in Object_Value) return Duration is
pragma Unreferenced (Type_Def);
Proxy : constant String_Proxy_Access := Value.String_Proxy;
begin
if Proxy = null then
return 0.0;
else
return Duration'Value (Proxy.Value);
end if;
end To_Duration;
-- ------------------------------
-- Wide String Type
-- ------------------------------
-- ------------------------------
-- Get the type name
-- ------------------------------
function Get_Name (Type_Def : in Wide_String_Type) return String is
pragma Unreferenced (Type_Def);
begin
return "WideString";
end Get_Name;
-- ------------------------------
-- Get the base data type.
-- ------------------------------
function Get_Data_Type (Type_Def : in Wide_String_Type) return Data_Type is
pragma Unreferenced (Type_Def);
begin
return TYPE_WIDE_STRING;
end Get_Data_Type;
-- ------------------------------
-- Convert the value into a string.
-- ------------------------------
function To_String (Type_Def : in Wide_String_Type;
Value : in Object_Value) return String is
pragma Unreferenced (Type_Def);
Proxy : constant Wide_String_Proxy_Access := Value.Wide_Proxy;
begin
if Proxy = null then
return "null";
else
return To_String (Proxy.Value);
end if;
end To_String;
-- ------------------------------
-- Convert the value into a wide string.
-- ------------------------------
function To_Wide_Wide_String (Type_Def : in Wide_String_Type;
Value : in Object_Value) return Wide_Wide_String is
pragma Unreferenced (Type_Def);
Proxy : constant Wide_String_Proxy_Access := Value.Wide_Proxy;
begin
if Proxy = null then
return "null";
else
return Proxy.Value;
end if;
end To_Wide_Wide_String;
-- ------------------------------
-- Convert the value into an integer.
-- ------------------------------
function To_Long_Long (Type_Def : in Wide_String_Type;
Value : in Object_Value) return Long_Long_Integer is
pragma Unreferenced (Type_Def);
Proxy : constant Wide_String_Proxy_Access := Value.Wide_Proxy;
begin
if Proxy = null then
return 0;
else
return Long_Long_Integer'Value (To_String (Proxy.Value));
end if;
end To_Long_Long;
-- ------------------------------
-- Convert the value into a float.
-- ------------------------------
function To_Long_Float (Type_Def : in Wide_String_Type;
Value : in Object_Value) return Long_Long_Float is
pragma Unreferenced (Type_Def);
Proxy : constant Wide_String_Proxy_Access := Value.Wide_Proxy;
begin
if Proxy = null then
return 0.0;
else
return Long_Long_Float'Value (To_String (Proxy.Value));
end if;
end To_Long_Float;
-- ------------------------------
-- Convert the value into a boolean.
-- ------------------------------
function To_Boolean (Type_Def : in Wide_String_Type;
Value : in Object_Value) return Boolean is
pragma Unreferenced (Type_Def);
Proxy : constant Wide_String_Proxy_Access := Value.Wide_Proxy;
begin
return Proxy /= null
and then (Proxy.Value = "true"
or Proxy.Value = "TRUE"
or Proxy.Value = "1");
end To_Boolean;
-- ------------------------------
-- Convert the value into a duration.
-- ------------------------------
function To_Duration (Type_Def : in Wide_String_Type;
Value : in Object_Value) return Duration is
pragma Unreferenced (Type_Def);
Proxy : constant Wide_String_Proxy_Access := Value.Wide_Proxy;
begin
if Proxy = null then
return 0.0;
else
return Duration'Value (To_String (Proxy.Value));
end if;
end To_Duration;
-- ------------------------------
-- Returns True if the value is empty.
-- ------------------------------
function Is_Empty (Type_Def : in Wide_String_Type;
Value : in Object_Value) return Boolean is
pragma Unreferenced (Type_Def);
Proxy : constant Wide_String_Proxy_Access := Value.Wide_Proxy;
begin
return Proxy = null or else Proxy.Value = "";
end Is_Empty;
-- ------------------------------
-- Boolean Type
-- ------------------------------
-- ------------------------------
-- Get the type name
-- ------------------------------
function Get_Name (Type_Def : in Boolean_Type) return String is
pragma Unreferenced (Type_Def);
begin
return "Boolean";
end Get_Name;
-- ------------------------------
-- Get the base data type.
-- ------------------------------
function Get_Data_Type (Type_Def : in Boolean_Type) return Data_Type is
pragma Unreferenced (Type_Def);
begin
return TYPE_BOOLEAN;
end Get_Data_Type;
-- ------------------------------
-- Convert the value into a string.
-- ------------------------------
function To_String (Type_Def : in Boolean_Type;
Value : in Object_Value) return String is
pragma Unreferenced (Type_Def);
begin
if Value.Bool_Value then
return "TRUE";
else
return "FALSE";
end if;
end To_String;
-- ------------------------------
-- Convert the value into an integer.
-- ------------------------------
function To_Long_Long (Type_Def : in Boolean_Type;
Value : in Object_Value) return Long_Long_Integer is
pragma Unreferenced (Type_Def);
begin
if Value.Bool_Value then
return 1;
else
return 0;
end if;
end To_Long_Long;
-- ------------------------------
-- Convert the value into a float.
-- ------------------------------
function To_Long_Float (Type_Def : in Boolean_Type;
Value : in Object_Value) return Long_Long_Float is
pragma Unreferenced (Type_Def);
begin
if Value.Bool_Value then
return 1.0;
else
return 0.0;
end if;
end To_Long_Float;
-- ------------------------------
-- Convert the value into a boolean.
-- ------------------------------
function To_Boolean (Type_Def : in Boolean_Type;
Value : in Object_Value) return Boolean is
pragma Unreferenced (Type_Def);
begin
return Value.Bool_Value;
end To_Boolean;
-- ------------------------------
-- Duration Type
-- ------------------------------
-- ------------------------------
-- Get the type name
-- ------------------------------
function Get_Name (Type_Def : in Duration_Type_Def) return String is
pragma Unreferenced (Type_Def);
begin
return "Duration";
end Get_Name;
-- ------------------------------
-- Get the base data type.
-- ------------------------------
function Get_Data_Type (Type_Def : in Duration_Type_Def) return Data_Type is
pragma Unreferenced (Type_Def);
begin
return TYPE_TIME;
end Get_Data_Type;
-- ------------------------------
-- Convert the value into a string.
-- ------------------------------
function To_String (Type_Def : in Duration_Type_Def;
Value : in Object_Value) return String is
pragma Unreferenced (Type_Def);
begin
return Duration'Image (Value.Time_Value);
end To_String;
-- ------------------------------
-- Convert the value into an integer.
-- ------------------------------
function To_Long_Long (Type_Def : in Duration_Type_Def;
Value : in Object_Value) return Long_Long_Integer is
pragma Unreferenced (Type_Def);
begin
return Long_Long_Integer (Value.Time_Value);
end To_Long_Long;
-- ------------------------------
-- Convert the value into a float.
-- ------------------------------
function To_Long_Float (Type_Def : in Duration_Type_Def;
Value : in Object_Value) return Long_Long_Float is
pragma Unreferenced (Type_Def);
begin
return Long_Long_Float (Value.Time_Value);
end To_Long_Float;
-- ------------------------------
-- Convert the value into a boolean.
-- ------------------------------
function To_Boolean (Type_Def : in Duration_Type_Def;
Value : in Object_Value) return Boolean is
pragma Unreferenced (Type_Def);
begin
return Value.Time_Value > 0.0;
end To_Boolean;
-- ------------------------------
-- Convert the value into a duration.
-- ------------------------------
function To_Duration (Type_Def : in Duration_Type_Def;
Value : in Object_Value) return Duration is
pragma Unreferenced (Type_Def);
begin
return Value.Time_Value;
end To_Duration;
-- ------------------------------
-- Bean Type
-- ------------------------------
-- ------------------------------
-- Get the type name
-- ------------------------------
function Get_Name (Type_Def : in Bean_Type) return String is
pragma Unreferenced (Type_Def);
begin
return "Bean";
end Get_Name;
-- ------------------------------
-- Get the base data type.
-- ------------------------------
function Get_Data_Type (Type_Def : in Bean_Type) return Data_Type is
pragma Unreferenced (Type_Def);
begin
return TYPE_BEAN;
end Get_Data_Type;
-- ------------------------------
-- Convert the value into a string.
-- ------------------------------
function To_String (Type_Def : in Bean_Type;
Value : in Object_Value) return String is
pragma Unreferenced (Type_Def);
begin
if Value.Proxy = null then
return "<null bean>";
else
return "<" & Ada.Tags.Expanded_Name (Value.Proxy'Tag) & ">";
end if;
end To_String;
-- ------------------------------
-- Convert the value into an integer.
-- ------------------------------
function To_Long_Long (Type_Def : in Bean_Type;
Value : in Object_Value) return Long_Long_Integer is
pragma Unreferenced (Type_Def, Value);
begin
return 0;
end To_Long_Long;
-- ------------------------------
-- Convert the value into a float.
-- ------------------------------
function To_Long_Float (Type_Def : in Bean_Type;
Value : in Object_Value) return Long_Long_Float is
pragma Unreferenced (Type_Def, Value);
begin
return 0.0;
end To_Long_Float;
-- ------------------------------
-- Convert the value into a boolean.
-- ------------------------------
function To_Boolean (Type_Def : in Bean_Type;
Value : in Object_Value) return Boolean is
pragma Unreferenced (Type_Def);
Proxy : constant Bean_Proxy_Access := Value.Proxy;
begin
return Proxy /= null;
end To_Boolean;
-- ------------------------------
-- Returns True if the value is empty.
-- ------------------------------
function Is_Empty (Type_Def : in Bean_Type;
Value : in Object_Value) return Boolean is
pragma Unreferenced (Type_Def);
Proxy : constant Bean_Proxy_Access := Value.Proxy;
begin
if Proxy = null then
return True;
end if;
if not (Proxy.all in Bean_Proxy'Class) then
return False;
end if;
if not (Bean_Proxy (Proxy.all).Bean.all in Util.Beans.Basic.List_Bean'Class) then
return False;
end if;
declare
L : constant Util.Beans.Basic.List_Bean_Access :=
Beans.Basic.List_Bean'Class (Bean_Proxy (Proxy.all).Bean.all)'Unchecked_Access;
begin
return L.Get_Count = 0;
end;
end Is_Empty;
-- ------------------------------
-- Array Type
-- ------------------------------
-- ------------------------------
-- Get the type name
-- ------------------------------
function Get_Name (Type_Def : in Array_Type) return String is
pragma Unreferenced (Type_Def);
begin
return "Array";
end Get_Name;
-- ------------------------------
-- Get the base data type.
-- ------------------------------
function Get_Data_Type (Type_Def : in Array_Type) return Data_Type is
pragma Unreferenced (Type_Def);
begin
return TYPE_ARRAY;
end Get_Data_Type;
-- ------------------------------
-- Convert the value into a string.
-- ------------------------------
function To_String (Type_Def : in Array_Type;
Value : in Object_Value) return String is
pragma Unreferenced (Type_Def);
begin
if Value.Array_Proxy = null then
return "<null array>";
else
return "<array>";
end if;
end To_String;
-- ------------------------------
-- Convert the value into an integer.
-- ------------------------------
function To_Long_Long (Type_Def : in Array_Type;
Value : in Object_Value) return Long_Long_Integer is
pragma Unreferenced (Type_Def, Value);
begin
return 0;
end To_Long_Long;
-- ------------------------------
-- Convert the value into a float.
-- ------------------------------
function To_Long_Float (Type_Def : in Array_Type;
Value : in Object_Value) return Long_Long_Float is
pragma Unreferenced (Type_Def, Value);
begin
return 0.0;
end To_Long_Float;
-- ------------------------------
-- Convert the value into a boolean.
-- ------------------------------
function To_Boolean (Type_Def : in Array_Type;
Value : in Object_Value) return Boolean is
pragma Unreferenced (Type_Def);
Proxy : constant Bean_Proxy_Access := Value.Proxy;
begin
return Proxy /= null;
end To_Boolean;
-- ------------------------------
-- Returns True if the value is empty.
-- ------------------------------
function Is_Empty (Type_Def : in Array_Type;
Value : in Object_Value) return Boolean is
pragma Unreferenced (Type_Def);
begin
if Value.Array_Proxy = null then
return True;
else
return Value.Array_Proxy.Len = 0;
end if;
end Is_Empty;
-- ------------------------------
-- Convert the value into a string.
-- ------------------------------
function To_Long_Long (Type_Def : in Basic_Type;
Value : in Object_Value) return Long_Long_Integer is
pragma Unreferenced (Type_Def, Value);
begin
return 0;
end To_Long_Long;
-- ------------------------------
-- Check whether the object contains a value.
-- Returns true if the object does not contain a value.
-- ------------------------------
function Is_Null (Value : in Object) return Boolean is
begin
return Value.V.Of_Type = TYPE_NULL;
end Is_Null;
-- ------------------------------
-- Check whether the object is empty.
-- If the object is null, returns true.
-- If the object is the empty string, returns true.
-- If the object is a list bean whose Get_Count is 0, returns true.
-- Otherwise returns false.
-- ------------------------------
function Is_Empty (Value : in Object) return Boolean is
begin
return Value.Type_Def.Is_Empty (Value.V);
end Is_Empty;
function Get_Array_Bean (Value : in Object) return access Util.Beans.Basic.Array_Bean'Class is
Bean : constant access Util.Beans.Basic.Readonly_Bean'Class := To_Bean (Value);
begin
if Bean = null or else not (Bean.all in Util.Beans.Basic.Array_Bean'Class) then
return null;
else
return Util.Beans.Basic.Array_Bean'Class (Bean.all)'Access;
end if;
end Get_Array_Bean;
-- ------------------------------
-- Returns True if the object is an array.
-- ------------------------------
function Is_Array (Value : in Object) return Boolean is
begin
if Value.V.Of_Type = TYPE_ARRAY then
return True;
elsif Value.V.Of_Type /= TYPE_BEAN then
return False;
else
return Get_Array_Bean (Value) /= null;
end if;
end Is_Array;
-- ------------------------------
-- Generic Object holding a value
-- ------------------------------
-- ------------------------------
-- Get the type name
-- ------------------------------
function Get_Type_Name (Value : in Object) return String is
begin
return Value.Type_Def.Get_Name;
end Get_Type_Name;
-- ------------------------------
-- Get a type identification for the object value.
-- ------------------------------
function Get_Type (Value : in Object) return Data_Type is
begin
return Value.V.Of_Type;
end Get_Type;
-- ------------------------------
-- Get the type definition of the object value.
-- ------------------------------
function Get_Type (Value : Object) return Object_Type_Access is
begin
return Value.Type_Def;
end Get_Type;
-- ------------------------------
-- Get the value identified by the name in the bean object.
-- If the value object is not a bean, returns the null object.
-- ------------------------------
function Get_Value (Value : in Object;
Name : in String) return Object is
Bean : constant access Util.Beans.Basic.Readonly_Bean'Class := To_Bean (Value);
begin
if Bean = null then
return Null_Object;
else
return Bean.Get_Value (Name);
end if;
end Get_Value;
-- ------------------------------
-- Set into the target object a value identified by the name.
-- The target object must be a <tt>Bean</tt> instance that implements the <tt>Set_Value</tt>
-- procedure. The operation does nothing if this is not the case.
-- ------------------------------
procedure Set_Value (Into : in Object;
Name : in String;
Value : in Object) is
Bean : constant access Util.Beans.Basic.Readonly_Bean'Class := To_Bean (Into);
begin
if Bean /= null and then Bean.all in Util.Beans.Basic.Bean'Class then
Util.Beans.Basic.Bean'Class (Bean.all).Set_Value (Name, Value);
end if;
end Set_Value;
-- ------------------------------
-- Get the number of elements in the array object.
-- Returns 0 if the object is not an array.
-- ------------------------------
function Get_Count (From : in Object) return Natural is
use type Util.Beans.Basic.Array_Bean_Access;
Bean : Util.Beans.Basic.Array_Bean_Access;
begin
if From.V.Of_Type = TYPE_ARRAY then
return From.V.Array_Proxy.Len;
elsif From.V.Of_Type /= TYPE_BEAN or else From.V.Proxy = null then
return 0;
else
Bean := Get_Array_Bean (From);
if Bean = null then
return 0;
else
return Bean.Get_Count;
end if;
end if;
end Get_Count;
-- ------------------------------
-- Get the array element at the given position.
-- ------------------------------
function Get_Value (From : in Object;
Position : in Positive) return Object is
use type Util.Beans.Basic.Array_Bean_Access;
Bean : Util.Beans.Basic.Array_Bean_Access;
begin
if From.V.Of_Type = TYPE_BEAN then
Bean := Get_Array_Bean (From);
if Bean /= null then
return Bean.Get_Row (Position);
else
return Null_Object;
end if;
elsif From.V.Of_Type /= TYPE_ARRAY then
return Null_Object;
elsif From.V.Array_Proxy.Len < Position then
return Null_Object;
else
return From.V.Array_Proxy.Values (Position);
end if;
end Get_Value;
-- ------------------------------
-- Convert the object to the corresponding type.
-- ------------------------------
function To_String (Value : Object) return String is
begin
return Value.Type_Def.To_String (Value.V);
end To_String;
-- ------------------------------
-- Convert the object to a wide string.
-- ------------------------------
function To_Wide_Wide_String (Value : Object) return Wide_Wide_String is
begin
return Value.Type_Def.To_Wide_Wide_String (Value.V);
end To_Wide_Wide_String;
-- ------------------------------
-- Convert the object to an unbounded string.
-- ------------------------------
function To_Unbounded_String (Value : Object) return Unbounded_String is
begin
case Value.V.Of_Type is
when TYPE_STRING =>
if Value.V.String_Proxy = null then
return To_Unbounded_String ("null");
end if;
return To_Unbounded_String (Value.V.String_Proxy.Value);
when others =>
return To_Unbounded_String (To_String (Value));
end case;
end To_Unbounded_String;
-- ------------------------------
-- Convert the object to an unbounded wide string.
-- ------------------------------
function To_Unbounded_Wide_Wide_String (Value : Object) return Unbounded_Wide_Wide_String is
begin
case Value.V.Of_Type is
when TYPE_WIDE_STRING =>
if Value.V.Wide_Proxy = null then
return To_Unbounded_Wide_Wide_String ("null");
end if;
return To_Unbounded_Wide_Wide_String (Value.V.Wide_Proxy.Value);
when TYPE_STRING =>
if Value.V.String_Proxy = null then
return To_Unbounded_Wide_Wide_String ("null");
end if;
return To_Unbounded_Wide_Wide_String
(UTF8_Decode (Value.V.String_Proxy.Value));
when others =>
return To_Unbounded_Wide_Wide_String (To_Wide_Wide_String (To_String (Value)));
end case;
end To_Unbounded_Wide_Wide_String;
-- ------------------------------
-- Convert the object to an integer.
-- ------------------------------
function To_Integer (Value : Object) return Integer is
begin
return Integer (Value.Type_Def.To_Long_Long (Value.V));
end To_Integer;
-- ------------------------------
-- Convert the object to an integer.
-- ------------------------------
function To_Long_Integer (Value : Object) return Long_Integer is
begin
return Long_Integer (Value.Type_Def.To_Long_Long (Value.V));
end To_Long_Integer;
-- ------------------------------
-- Convert the object to a long integer.
-- ------------------------------
function To_Long_Long_Integer (Value : Object) return Long_Long_Integer is
begin
return Value.Type_Def.To_Long_Long (Value.V);
end To_Long_Long_Integer;
-- ------------------------------
-- Convert the object to a duration.
-- ------------------------------
function To_Duration (Value : in Object) return Duration is
begin
return Value.Type_Def.To_Duration (Value.V);
end To_Duration;
function To_Bean (Value : in Object) return access Util.Beans.Basic.Readonly_Bean'Class is
-- Proxy : constant Bean_Proxy_Access;
begin
if Value.V.Of_Type = TYPE_BEAN and then Value.V.Proxy /= null then
return Bean_Proxy (Value.V.Proxy.all).Bean;
else
return null;
end if;
end To_Bean;
-- ------------------------------
-- Convert the object to a boolean.
-- ------------------------------
function To_Boolean (Value : Object) return Boolean is
begin
return Value.Type_Def.To_Boolean (Value.V);
end To_Boolean;
-- ------------------------------
-- Convert the object to a float.
-- ------------------------------
function To_Float (Value : Object) return Float is
begin
return Float (Value.Type_Def.To_Long_Float (Value.V));
end To_Float;
-- ------------------------------
-- Convert the object to a long float.
-- ------------------------------
function To_Long_Float (Value : Object) return Long_Float is
begin
return Long_Float (Value.Type_Def.To_Long_Float (Value.V));
end To_Long_Float;
-- ------------------------------
-- Convert the object to a long float.
-- ------------------------------
function To_Long_Long_Float (Value : Object) return Long_Long_Float is
begin
return Value.Type_Def.To_Long_Float (Value.V);
end To_Long_Long_Float;
-- ------------------------------
-- Convert an integer into a generic typed object.
-- ------------------------------
function To_Object (Value : Integer) return Object is
begin
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_INTEGER,
Int_Value => Long_Long_Integer (Value)),
Type_Def => Integer_Type'Access);
end To_Object;
-- ------------------------------
-- Convert an integer into a generic typed object.
-- ------------------------------
function To_Object (Value : Long_Integer) return Object is
begin
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_INTEGER,
Int_Value => Long_Long_Integer (Value)),
Type_Def => Integer_Type'Access);
end To_Object;
-- ------------------------------
-- Convert an integer into a generic typed object.
-- ------------------------------
function To_Object (Value : Long_Long_Integer) return Object is
begin
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_INTEGER,
Int_Value => Value),
Type_Def => Integer_Type'Access);
end To_Object;
-- ------------------------------
-- Convert a boolean into a generic typed object.
-- ------------------------------
function To_Object (Value : Boolean) return Object is
begin
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_BOOLEAN,
Bool_Value => Value),
Type_Def => Bool_Type'Access);
end To_Object;
-- ------------------------------
-- Convert a float into a generic typed object.
-- ------------------------------
function To_Object (Value : Float) return Object is
begin
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_FLOAT,
Float_Value => Long_Long_Float (Value)),
Type_Def => Flt_Type'Access);
end To_Object;
-- ------------------------------
-- Convert a long float into a generic typed object.
-- ------------------------------
function To_Object (Value : Long_Float) return Object is
begin
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_FLOAT,
Float_Value => Long_Long_Float (Value)),
Type_Def => Flt_Type'Access);
end To_Object;
-- ------------------------------
-- Convert a long long float into a generic typed object.
-- ------------------------------
function To_Object (Value : Long_Long_Float) return Object is
begin
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_FLOAT,
Float_Value => Value),
Type_Def => Flt_Type'Access);
end To_Object;
-- ------------------------------
-- Convert a duration into a generic typed object.
-- ------------------------------
function To_Object (Value : in Duration) return Object is
begin
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_TIME,
Time_Value => Value),
Type_Def => Duration_Type'Access);
end To_Object;
-- ------------------------------
-- Convert a string into a generic typed object.
-- ------------------------------
function To_Object (Value : String) return Object is
begin
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_STRING,
String_Proxy => new String_Proxy '(Ref_Counter => ONE,
Len => Value'Length,
Value => Value)),
Type_Def => Str_Type'Access);
end To_Object;
-- ------------------------------
-- Convert a wide string into a generic typed object.
-- ------------------------------
function To_Object (Value : Wide_Wide_String) return Object is
begin
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_WIDE_STRING,
Wide_Proxy => new Wide_String_Proxy
'(Ref_Counter => ONE,
Len => Value'Length,
Value => Value)),
Type_Def => WString_Type'Access);
end To_Object;
-- ------------------------------
-- Convert an unbounded string into a generic typed object.
-- ------------------------------
function To_Object (Value : Unbounded_String) return Object is
Len : constant Natural := Length (Value);
begin
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_STRING,
String_Proxy => new String_Proxy
'(Ref_Counter => ONE,
Len => Len,
Value => To_String (Value))),
Type_Def => Str_Type'Access);
end To_Object;
-- ------------------------------
-- Convert a unbounded wide string into a generic typed object.
-- ------------------------------
function To_Object (Value : Unbounded_Wide_Wide_String) return Object is
Len : constant Natural := Length (Value);
begin
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_WIDE_STRING,
Wide_Proxy => new Wide_String_Proxy
'(Ref_Counter => ONE,
Len => Len,
Value => To_Wide_Wide_String (Value))),
Type_Def => WString_Type'Access);
end To_Object;
function To_Object (Value : access Util.Beans.Basic.Readonly_Bean'Class;
Storage : in Storage_Type := DYNAMIC) return Object is
begin
if Value = null then
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_BEAN,
Proxy => null),
Type_Def => Bn_Type'Access);
else
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_BEAN,
Proxy => new Bean_Proxy '(Ref_Counter => ONE,
Bean => Value,
Storage => Storage)),
Type_Def => Bn_Type'Access);
end if;
end To_Object;
function To_Object (Value : in Object_Array) return Object is
begin
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_ARRAY,
Array_Proxy =>
new Array_Proxy '(Ref_Counter => ONE,
Len => Value'Length,
Count => Value'Length,
Values => Value)),
Type_Def => Ar_Type'Access);
end To_Object;
-- ------------------------------
-- Convert the object to an object of another time.
-- Force the object to be an integer.
-- ------------------------------
function Cast_Integer (Value : Object) return Object is
begin
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_INTEGER,
Int_Value => Value.Type_Def.To_Long_Long (Value.V)),
Type_Def => Integer_Type'Access);
end Cast_Integer;
-- ------------------------------
-- Force the object to be a float.
-- ------------------------------
function Cast_Float (Value : Object) return Object is
begin
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_FLOAT,
Float_Value => Value.Type_Def.To_Long_Float (Value.V)),
Type_Def => Flt_Type'Access);
end Cast_Float;
-- ------------------------------
-- Convert the object to an object of another time.
-- Force the object to be a duration.
-- ------------------------------
function Cast_Duration (Value : Object) return Object is
begin
return Object '(Controlled with
V => Object_Value '(Of_Type => TYPE_TIME,
Time_Value => Value.Type_Def.To_Duration (Value.V)),
Type_Def => Duration_Type'Access);
end Cast_Duration;
-- ------------------------------
-- Force the object to be a string.
-- ------------------------------
function Cast_String (Value : Object) return Object is
begin
if Value.V.Of_Type = TYPE_STRING or Value.V.Of_Type = TYPE_WIDE_STRING then
return Value;
else
return To_Object (To_Wide_Wide_String (Value));
end if;
end Cast_String;
-- ------------------------------
-- Find the best type to be used to compare two operands.
--
-- ------------------------------
function Get_Compare_Type (Left, Right : Object) return Data_Type is
begin
-- Operands are of the same type.
if Left.V.Of_Type = Right.V.Of_Type then
return Left.V.Of_Type;
end if;
-- 12 >= "23"
-- if Left.Of_Type = TYPE_STRING or
case Left.V.Of_Type is
when TYPE_BOOLEAN =>
case Right.V.Of_Type is
when TYPE_INTEGER | TYPE_BOOLEAN | TYPE_TIME =>
return TYPE_INTEGER;
when TYPE_FLOAT | TYPE_STRING | TYPE_WIDE_STRING =>
return Right.V.Of_Type;
when others =>
null;
end case;
when TYPE_INTEGER =>
case Right.V.Of_Type is
when TYPE_BOOLEAN | TYPE_TIME =>
return TYPE_INTEGER;
when TYPE_FLOAT =>
return TYPE_FLOAT;
when others =>
null;
end case;
when TYPE_TIME =>
case Right.V.Of_Type is
when TYPE_INTEGER | TYPE_BOOLEAN | TYPE_FLOAT =>
return TYPE_INTEGER;
when others =>
null;
end case;
when TYPE_FLOAT =>
case Right.V.Of_Type is
when TYPE_INTEGER | TYPE_BOOLEAN =>
return TYPE_FLOAT;
when TYPE_TIME =>
return TYPE_INTEGER;
when others =>
null;
end case;
when others =>
null;
end case;
return TYPE_STRING;
end Get_Compare_Type;
-- ------------------------------
-- Find the data type to be used for an arithmetic operation between two objects.
-- ------------------------------
function Get_Arithmetic_Type (Left, Right : Object) return Data_Type is
begin
if Left.V.Of_Type = TYPE_FLOAT or Right.V.Of_Type = TYPE_FLOAT then
return TYPE_FLOAT;
end if;
if Left.V.Of_Type = TYPE_INTEGER or Right.V.Of_Type = TYPE_INTEGER then
return TYPE_INTEGER;
end if;
if Left.V.Of_Type = TYPE_BOOLEAN and Right.V.Of_Type = TYPE_BOOLEAN then
return TYPE_BOOLEAN;
end if;
return TYPE_FLOAT;
end Get_Arithmetic_Type;
-- ------------------------------
-- Find the data type to be used for a composition operation between two objects.
-- ------------------------------
function Get_Compose_Type (Left, Right : Object) return Data_Type is
begin
if Left.V.Of_Type = Right.V.Of_Type then
return Left.V.Of_Type;
end if;
if Left.V.Of_Type = TYPE_FLOAT or Right.V.Of_Type = TYPE_FLOAT then
return TYPE_FLOAT;
end if;
if Left.V.Of_Type = TYPE_INTEGER or Right.V.Of_Type = TYPE_INTEGER then
return TYPE_INTEGER;
end if;
if Left.V.Of_Type = TYPE_TIME or Right.V.Of_Type = TYPE_TIME then
return TYPE_TIME;
end if;
if Left.V.Of_Type = TYPE_BOOLEAN and Right.V.Of_Type = TYPE_BOOLEAN then
return TYPE_BOOLEAN;
end if;
return TYPE_FLOAT;
end Get_Compose_Type;
-- ------------------------------
-- Comparison of objects
-- ------------------------------
generic
with function Int_Comparator (Left, Right : Long_Long_Integer) return Boolean;
with function Time_Comparator (Left, Right : Duration) return Boolean;
with function Boolean_Comparator (Left, Right : Boolean) return Boolean;
with function Float_Comparator (Left, Right : Long_Long_Float) return Boolean;
with function String_Comparator (Left, Right : String) return Boolean;
with function Wide_String_Comparator (Left, Right : Wide_Wide_String)
return Boolean;
function Compare (Left, Right : Object) return Boolean;
-- ------------------------------
-- Comparison of objects
-- ------------------------------
function Compare (Left, Right : Object) return Boolean is
T : constant Data_Type := Get_Compare_Type (Left, Right);
begin
case T is
when TYPE_BOOLEAN =>
return Boolean_Comparator (Left.Type_Def.To_Boolean (Left.V),
Right.Type_Def.To_Boolean (Right.V));
when TYPE_INTEGER =>
return Int_Comparator (Left.Type_Def.To_Long_Long (Left.V),
Right.Type_Def.To_Long_Long (Right.V));
when TYPE_TIME =>
return Time_Comparator (Left.Type_Def.To_Duration (Left.V),
Right.Type_Def.To_Duration (Right.V));
when TYPE_FLOAT =>
return Float_Comparator (Left.Type_Def.To_Long_Float (Left.V),
Right.Type_Def.To_Long_Float (Right.V));
when TYPE_STRING =>
return String_Comparator (To_String (Left), To_String (Right));
when TYPE_WIDE_STRING =>
return Wide_String_Comparator (To_Wide_Wide_String (Left),
To_Wide_Wide_String (Right));
when others =>
return False;
end case;
end Compare;
function ">" (Left, Right : Object) return Boolean is
function Cmp is new Compare (Int_Comparator => ">",
Time_Comparator => ">",
Boolean_Comparator => ">",
Float_Comparator => ">",
String_Comparator => ">",
Wide_String_Comparator => ">");
begin
return Cmp (Left, Right);
end ">";
function "<" (Left, Right : Object) return Boolean is
function Cmp is new Compare (Int_Comparator => "<",
Time_Comparator => "<",
Boolean_Comparator => "<",
Float_Comparator => "<",
String_Comparator => "<",
Wide_String_Comparator => "<");
begin
return Cmp (Left, Right);
end "<";
function "<=" (Left, Right : Object) return Boolean is
function Cmp is new Compare (Int_Comparator => "<=",
Time_Comparator => "<=",
Boolean_Comparator => "<=",
Float_Comparator => "<=",
String_Comparator => "<=",
Wide_String_Comparator => "<=");
begin
return Cmp (Left, Right);
end "<=";
function ">=" (Left, Right : Object) return Boolean is
function Cmp is new Compare (Int_Comparator => ">=",
Time_Comparator => ">=",
Boolean_Comparator => ">=",
Float_Comparator => ">=",
String_Comparator => ">=",
Wide_String_Comparator => ">=");
begin
return Cmp (Left, Right);
end ">=";
-- function "=" (Left, Right : Object) return Boolean;
function "=" (Left, Right : Object) return Boolean is
function Cmp is new Compare (Int_Comparator => "=",
Time_Comparator => "=",
Boolean_Comparator => "=",
Float_Comparator => "=",
String_Comparator => "=",
Wide_String_Comparator => "=");
begin
return Cmp (Left, Right);
end "=";
-- ------------------------------
-- Arithmetic operations of objects
-- ------------------------------
generic
with function Int_Operation (Left, Right : Long_Long_Integer)
return Long_Long_Integer;
with function Duration_Operation (Left, Right : Duration)
return Duration;
with function Float_Operation (Left, Right : Long_Long_Float)
return Long_Long_Float;
function Arith (Left, Right : Object) return Object;
-- Comparison of objects
function Arith (Left, Right : Object) return Object is
begin
-- If we have a time object, keep the time definition.
if Left.V.Of_Type = TYPE_TIME then
return Result : Object do
Result.Type_Def := Left.Type_Def;
Result.V := Object_Value
'(Of_Type => TYPE_TIME,
Time_Value => Duration_Operation
(Left.Type_Def.To_Duration (Left.V),
Right.Type_Def.To_Duration (Right.V)));
end return;
end if;
if Right.V.Of_Type = TYPE_TIME then
return Result : Object do
Result.Type_Def := Right.Type_Def;
Result.V := Object_Value
'(Of_Type => TYPE_TIME,
Time_Value => Duration_Operation (Left.Type_Def.To_Duration (Left.V),
Right.Type_Def.To_Duration (Right.V)));
end return;
end if;
declare
T : constant Data_Type := Get_Arithmetic_Type (Left, Right);
begin
case T is
when TYPE_INTEGER =>
return To_Object (Int_Operation (Left.Type_Def.To_Long_Long (Left.V),
Right.Type_Def.To_Long_Long (Right.V)));
when TYPE_FLOAT =>
return To_Object (Float_Operation (Left.Type_Def.To_Long_Float (Left.V),
Right.Type_Def.To_Long_Float (Right.V)));
when others =>
return Left;
end case;
end;
end Arith;
-- Arithmetic operations on objects
function "+" (Left, Right : Object) return Object is
function Operation is new Arith (Int_Operation => "+",
Duration_Operation => "+",
Float_Operation => "+");
begin
return Operation (Left, Right);
end "+";
function "-" (Left, Right : Object) return Object is
function Operation is new Arith (Int_Operation => "-",
Duration_Operation => "-",
Float_Operation => "-");
begin
return Operation (Left, Right);
end "-";
function "-" (Left : Object) return Object is
begin
case Left.V.Of_Type is
when TYPE_INTEGER =>
return To_Object (-Left.Type_Def.To_Long_Long (Left.V));
when TYPE_TIME =>
return To_Object (-Left.Type_Def.To_Duration (Left.V));
when TYPE_FLOAT =>
return To_Object (-(Left.Type_Def.To_Long_Float (Left.V)));
when others =>
return Left;
end case;
end "-";
function "*" (Left, Right : Object) return Object is
function Operation is new Arith (Int_Operation => "*",
Duration_Operation => "+",
Float_Operation => "*");
begin
return Operation (Left, Right);
end "*";
function "/" (Left, Right : Object) return Object is
function Operation is new Arith (Int_Operation => "/",
Duration_Operation => "-",
Float_Operation => "/");
begin
return Operation (Left, Right);
end "/";
function "mod" (Left, Right : Object) return Object is
function "mod" (Left, Right : Long_Long_Float) return Long_Long_Float;
function "mod" (Left, Right : Long_Long_Float) return Long_Long_Float is
L : constant Long_Long_Integer := Long_Long_Integer (Left);
R : constant Long_Long_Integer := Long_Long_Integer (Right);
begin
return Long_Long_Float (L mod R);
end "mod";
function Operation is new Arith (Int_Operation => "mod",
Duration_Operation => "-",
Float_Operation => "mod");
begin
return Operation (Left, Right);
end "mod";
function "&" (Left, Right : Object) return Object is
T : constant Data_Type := Get_Compose_Type (Left, Right);
begin
case T is
when TYPE_BOOLEAN =>
return To_Object (To_Boolean (Left) and To_Boolean (Right));
when others =>
return To_Object (To_String (Left) & To_String (Right));
end case;
end "&";
overriding
procedure Adjust (Obj : in out Object) is
begin
case Obj.V.Of_Type is
when TYPE_BEAN =>
if Obj.V.Proxy /= null then
Util.Concurrent.Counters.Increment (Obj.V.Proxy.Ref_Counter);
end if;
when TYPE_ARRAY =>
if Obj.V.Array_Proxy /= null then
Util.Concurrent.Counters.Increment (Obj.V.Array_Proxy.Ref_Counter);
end if;
when TYPE_STRING =>
if Obj.V.String_Proxy /= null then
Util.Concurrent.Counters.Increment (Obj.V.String_Proxy.Ref_Counter);
end if;
when TYPE_WIDE_STRING =>
if Obj.V.Wide_Proxy /= null then
Util.Concurrent.Counters.Increment (Obj.V.Wide_Proxy.Ref_Counter);
end if;
when others =>
null;
end case;
end Adjust;
procedure Free is
new Ada.Unchecked_Deallocation (Object => Basic.Readonly_Bean'Class,
Name => Basic.Readonly_Bean_Access);
procedure Free is
new Ada.Unchecked_Deallocation (Object => Array_Proxy,
Name => Array_Proxy_Access);
procedure Free is
new Ada.Unchecked_Deallocation (Object => Proxy'Class,
Name => Bean_Proxy_Access);
procedure Free is
new Ada.Unchecked_Deallocation (Object => String_Proxy,
Name => String_Proxy_Access);
procedure Free is
new Ada.Unchecked_Deallocation (Object => Wide_String_Proxy,
Name => Wide_String_Proxy_Access);
overriding
procedure Finalize (Obj : in out Object) is
Release : Boolean;
begin
case Obj.V.Of_Type is
when TYPE_STRING =>
if Obj.V.String_Proxy /= null then
Util.Concurrent.Counters.Decrement (Obj.V.String_Proxy.Ref_Counter, Release);
if Release then
Free (Obj.V.String_Proxy);
else
Obj.V.String_Proxy := null;
end if;
end if;
when TYPE_WIDE_STRING =>
if Obj.V.Wide_Proxy /= null then
Util.Concurrent.Counters.Decrement (Obj.V.Wide_Proxy.Ref_Counter, Release);
if Release then
Free (Obj.V.Wide_Proxy);
else
Obj.V.Wide_Proxy := null;
end if;
end if;
when TYPE_BEAN =>
if Obj.V.Proxy /= null then
Util.Concurrent.Counters.Decrement (Obj.V.Proxy.Ref_Counter, Release);
if Release then
Obj.V.Proxy.all.Release;
Free (Obj.V.Proxy);
else
Obj.V.Proxy := null;
end if;
end if;
when TYPE_ARRAY =>
if Obj.V.Array_Proxy /= null then
Util.Concurrent.Counters.Decrement (Obj.V.Array_Proxy.Ref_Counter, Release);
if Release then
Free (Obj.V.Array_Proxy);
else
Obj.V.Array_Proxy := null;
end if;
end if;
when others =>
null;
end case;
end Finalize;
-- ------------------------------
-- Release the object pointed to by the proxy (if necessary).
-- ------------------------------
overriding
procedure Release (P : in out Bean_Proxy) is
begin
if P.Storage = DYNAMIC and P.Bean /= null then
declare
Bean : Basic.Readonly_Bean_Access := P.Bean.all'Access;
begin
P.Bean := null;
Free (Bean);
end;
end if;
end Release;
end Util.Beans.Objects;
|
kernel/paging/paging_func.asm | kawasaki384/384OS-64 | 0 | 243163 | <reponame>kawasaki384/384OS-64
global SetCR3 ;void SetCR3(uint64_t value);
SetCR3:
mov cr3,rdi
ret |
oeis/255/A255044.asm | neoneye/loda-programs | 11 | 3148 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A255044: Array A read by upward antidiagonals: A(n,k) = ((2*n+1)*9^k-1)/2, n,k >= 0.
; Submitted by <NAME>
; 0,1,4,2,13,40,3,22,121,364,4,31,202,1093,3280,5,40,283,1822,9841,29524,6,49,364,2551,16402,88573,265720,7,58,445,3280,22963,147622,797161,2391484,8,67,526,4009,29524,206671,1328602,7174453,21523360
lpb $0
add $1,1
sub $0,$1
lpe
sub $1,$0
mul $1,6
add $1,3
lpb $0
sub $0,1
mul $1,9
lpe
mov $0,$1
div $0,6
|
uuu/src/cells/storage/seaborgium/seaborgium.asm | ekscrypto/Unununium | 7 | 10784 | <gh_stars>1-10
;; $Header: /cvsroot/uuu/uuu/src/cells/storage/seaborgium/seaborgium.asm,v 1.21 2001/12/10 16:58:27 instinc Exp $
;; Seaborgium cell Copyright 2001 <NAME>
;; A tempoary ramdisk Distrubited under the BSD license
;;
;; status:
;; -------
;; highly hacked; currently designed only to give a minimal, one disk, totally
;; worthless FS.
[bits 32]
; -----------------------------------
; defines
;==============================================================================
;%define _DEBUG_
%define _RAMDISK_SIZE_ 2000000 ; 2MB ( base 10 :P )
; -----------------------------------
; strucs
;==============================================================================
struc local_file_descriptor
.global: resb file_descriptor_size
.pos: resd 1
endstruc
; -----------------------------------
; cell init
;==============================================================================
section .c_init
jmp start
s_malloc_error: db "[Seaborgium] Error allocating memory for ramdisk",0
s_operational: db "[Seaborgium] Initialization completed ($Revision: 1.21 $)",0
s_device: db "/rd/0",0
malloc_error:
mov esi, s_malloc_error
externfunc sys_log.print_string
jmp finished
start:
pushad
; allocate memory for disk ---===---
mov ecx, _RAMDISK_SIZE_
xor edx, edx
externfunc mem.alloc
jc malloc_error
mov [p_disk], edi
dbg_print "ramdisk created at 0x",1
%ifdef _DEBUG_
push edx
mov edx, edi
externfunc hex_out, system_log
pop edx
externfunc terminate_log, system_log
%endif ; _DEBUG_
; register with devfs ---===---
mov ebx, _open
mov esi, s_device
externfunc devfs.register
mov esi, s_operational
externfunc sys_log.print_string
finished:
popad
; -----------------------------------
; section .text
;==============================================================================
section .text
; -----------------------------------
; __read
;==============================================================================
__read:
;>
;; parameters:
;; -----------
;; ECX = number of bytes
;; EDI = pointer to buffer to put data in
;; EBX = file handle
;;
;; returned values:
;; ----------------
;; EDI = unchanged
;; errors as usual
;<
dbg_print "reading",0
mov eax, [ebx+local_file_descriptor.pos]
.engage: ; __raw_read uses this
mov esi, eax
add esi, [p_disk] ; set up the source
; check to see if we can read that much
add eax, ecx
cmp eax, _RAMDISK_SIZE_
ja near _too_big
; engage! ---===---
push edi
rep movsb ; could probally be better with movsd, but this is a hack...
pop edi
clc
retn
; -----------------------------------
; __write
;==============================================================================
__write:
;>
;; parameters:
;; -----------
;; ECX = number of bytes
;; ESI = pointer to buffer to read data from
;; EBX = file handle
;;
;; returned values:
;; ----------------
;; errors as usual
;<
mov eax, [ebx+local_file_descriptor.pos]
.engage: ; __raw_write uses this
; calc the abs. pointer to where we write to ---===---
mov edi, eax
add edi, [p_disk]
; check to see if they write too much ---===---
add eax, ecx
cmp eax, _RAMDISK_SIZE_
ja _too_big
; engage! ---===---
dbg_print "writing to 0x",1
%ifdef _DEBUG_
push edx
mov edx, edi
externfunc hex_out, system_log
pop edx
externfunc terminate_log, system_log
%endif ; _DEBUG_
rep movsb
retn
; -----------------------------------
; __raw_read
;==============================================================================
__raw_read:
;>
;; reads as if this was a disk with 512b sector size
;;
;; parameters:
;; -----------
;; EDX:EAX = 64 bit LBA
;; ECX = number of sectors to read
;; EDI = pointer to buffer to put data in
;; EBX = pointer to file handle
;;
;; returned values:
;; ----------------
;; EDI = unchanged
;; errors as usual
;<
dbg_print "raw reading",0
test edx, edx
jnz _error
test eax, 0xff800000
jnz _error
shl eax, 9 ; mul by 512
shl ecx, 9
jmp __read.engage
; -----------------------------------
; __raw_write
;==============================================================================
__raw_write:
;>
;; writes as if this was a disk with 512b sector size
;;
;; parameters:
;; -----------
;; EDX:EAX = 64 bit LBA
;; ECX = number of sectors to read
;; ESI = pointer to buffer to read data from
;; EBX = file handle
;<
test edx, edx
jnz _error
test eax, 0xff800000
jnz _error
shl eax, 9 ; mul by 512
shl ecx, 9
jmp __write.engage
; -----------------------------------
; __seek_start
;==============================================================================
__seek_start:
;>
;; moves the position pointer of a file to specified point. This flavor moves
;; to an absloute position relitive to the start of the file.
;;
;; parameters:
;; -----------
;; EDX:EAX = position to seek to, unsigned
;; EBX = file handle
;;
;; returned values:
;; ----------------
;; EBX = unchanged
;; errors as usual
;<
test edx, edx
jnz _error ; we can't have more than 4gb of ram...so...eh..no.
cmp eax, _RAMDISK_SIZE_
jae _error
mov [ebx+local_file_descriptor.pos], eax
clc
retn
; -----------------------------------
; __seek_cur
;==============================================================================
__seek_cur:
;>
;; moves the position pointer of a file to specified point. This flavor moves
;; to a position relitive to the current location.
;;
;; parameters:
;; -----------
;; EDX:EAX = amount to seek, signed
;; EBX = file handle
;;
;; returned values:
;; ----------------
;; EBX = unchanged
;; errors as usual
;<
; XXX doesn't check to see if seek goes past file
test edx, 0x80000000
jnz .negitive ; jmp is seek is neg
test edx, edx
jnz _error ; we can't seek that much
add [ebx+local_file_descriptor.pos], eax
jmp .done
.negitive:
not edx
neg eax
sbb edx, -1 ; neg edx:eax
test edx, edx
jnz _error ; we can't seek that much
sub [ebx+local_file_descriptor.pos], eax
.done:
clc
retn
; -----------------------------------
; __seek_end
;==============================================================================
__seek_end:
;>
;; moves the position pointer of a file to specified point. This flavor moves
;; to a position relitive to the end of the file. That means that a 0 will get
;; you pointed at a new byte, and 1 will get you pointed at the last byte of
;; the file.
;;
;; parameters:
;; -----------
;; EDX:EAX = amount to seek back from the end, unsigned
;; EBX = file handle
;;
;; returned values:
;; ----------------
;; EBX = unchanged
;; errors as usual
;<
;; XXX doesn't expand the file in the case that it's appended to
test edx, edx
jnz _error
mov edx, _RAMDISK_SIZE_
sub edx, eax
js _error
mov [ebx+local_file_descriptor.pos], edx
clc
retn
; -----------------------------------
; __error
;==============================================================================
__error:
_error:
_too_big: ; jumped to when there is not enough space on the ramdisk
xor eax, eax
dec eax
stc
retn
; -----------------------------------
; _open
;==============================================================================
_open:
push edx
mov ecx, local_file_descriptor_size
externfunc mem.alloc
mov dword[edi+file_descriptor.op_table], our_op_table
pop dword[edi+file_descriptor.fs_descriptor]
xor edx, edx
mov [edi+local_file_descriptor.pos], edx
mov ebx, edi
retn
; -----------------------------------
; cell info
;==============================================================================
section .c_info
db 0, 0, 1, 'a'
dd str_cellname
dd str_author
dd str_copyrights
str_cellname: dd "Seaborgium - simple ramdisk"
str_author: dd 'Phil "Indigo" Frost (<EMAIL>)'
str_copyrights: dd 'Copyright 2001 by <NAME>; distributed under the BSD license'
; -----------------------------------
; data
;==============================================================================
section .data
align 4
global p_disk ; for fs_test
p_disk: dd 0 ; pointer to the disk's RAM chunk
our_file_descriptor: istruc local_file_descriptor
at local_file_descriptor.global
istruc file_descriptor
at file_descriptor.op_table, dd our_op_table
iend
at local_file_descriptor.pos, dd 0 ; position in the file
iend
our_op_table: istruc file_op_table
at file_op_table.close, dd __error
at file_op_table.read, dd __read
at file_op_table.write, dd __write
at file_op_table.raw_read, dd __raw_read
at file_op_table.raw_write, dd __raw_write
at file_op_table.seek_cur, dd __error
at file_op_table.seek_start, dd __error
at file_op_table.seek_end, dd __error
at file_op_table.read_fork, dd __error
at file_op_table.write_fork, dd __error
at file_op_table.link, dd __error
at file_op_table.unlink, dd __error
at file_op_table.create, dd __error
at file_op_table.rename, dd __error
at file_op_table.copy, dd __error
at file_op_table.truncate, dd __error
at file_op_table.attrib, dd __error
iend
|
programs/oeis/122/A122657.asm | neoneye/loda | 22 | 165576 | <filename>programs/oeis/122/A122657.asm
; A122657: a(n) = if n mod 2 = 1 then (n^2-1)*n^3/4 else n^5/4.
; 0,0,8,54,256,750,1944,4116,8192,14580,25000,39930,62208,92274,134456,189000,262144,353736,472392,617310,800000,1018710,1288408,1606044,1990656,2437500,2970344,3582306,4302592,5121690,6075000,7149840,8388608,9774864,11358856
mov $1,$0
pow $1,2
mul $0,$1
div $1,4
mul $0,$1
|
data/battle/stat_names.asm | Dev727/ancientplatinum | 28 | 16688 | StatNames:
; entries correspond to stat ids
db "ATTACK@"
db "DEFENSE@"
db "SPEED@"
db "SPCL.ATK@"
db "SPCL.DEF@"
db "ACCURACY@"
db "EVASION@"
db "ABILITY@" ; used for BattleCommand_Curse
|
libsrc/stdio_new/file/sscanf.asm | meesokim/z88dk | 8 | 168329 | ; int sscanf(char *s, const char *fmt,...)
; 05.2008 aralbrec
PUBLIC sscanf
EXTERN vsscanf_callee, stdio_varg, stdio_nextarg
EXTERN ASMDISP_VSSCANF_CALLEE
.sscanf
call stdio_varg
push de
exx
pop hl ; hl = char *s
exx
call stdio_nextarg ; de = char *fmt
ld c,l
ld b,h ; bc = top of parameter list
jp vsscanf_callee + ASMDISP_VSSCANF_CALLEE
|
programs/oeis/100/A100033.asm | neoneye/loda | 22 | 173146 | <gh_stars>10-100
; A100033: Bisection of A001700.
; 3,35,462,6435,92378,1352078,20058300,300540195,4537567650,68923264410,1052049481860,16123801841550,247959266474052,3824345300380220,59132290782430712,916312070471295267,14226520737620288370
mul $0,2
add $0,2
sub $1,$0
bin $1,$0
mov $0,$1
|
programs/oeis/099/A099479.asm | neoneye/loda | 22 | 87632 | <filename>programs/oeis/099/A099479.asm
; A099479: Count, repeating 4n three times for n > 0.
; 0,1,2,3,4,4,4,5,6,7,8,8,8,9,10,11,12,12,12,13,14,15,16,16,16,17,18,19,20,20,20,21,22,23,24,24,24,25,26,27,28,28,28,29,30,31,32,32,32,33,34,35,36,36,36,37,38,39,40,40,40,41,42,43,44,44,44,45,46,47,48,48,48,49,50,51,52,52,52,53,54,55,56,56,56,57,58,59,60,60,60,61,62,63,64,64,64,65,66,67
lpb $0
add $1,$0
trn $0,4
sub $1,$0
trn $0,2
lpe
mov $0,$1
|
oeis/028/A028027.asm | neoneye/loda-programs | 11 | 241233 | ; A028027: Expansion of 1 / ((1 - 3*x)*(1 - 4*x)*(1 - 5*x)*(1 - 8*x)).
; Submitted by <NAME>
; 1,20,257,2716,25809,230244,1975009,16524332,136058417,1108775668,8975764161,72350153148,581586939025,4666887733892,37407122372513,299621333407564,2398809490126833,19199738367402516,153644492886804865,1229389968857205980,9836294267257641041,78696244280866079140,629599475235554386017,5036943688020111026796,40296290059891886140849,322374027758847840301364,2579010776476119390280769,20632179055870355707068412,165057896955431594355005457,1320465499338512111807086788,10563735617794462024323013921
mov $1,1
mov $2,$0
mov $3,$0
lpb $2
mov $0,$3
sub $2,1
sub $0,$2
seq $0,17521 ; Expansion of 1/((1-3*x)*(1-5*x)*(1-8*x)).
sub $0,$1
mul $1,5
add $1,$0
lpe
mov $0,$1
|
install/lib/disk/setbpb.asm | minblock/msdos | 0 | 80840 | ;========================================================
COMMENT #
SET_BPB.ASM
Copyright (c) 1991 - Microsoft Corp.
All rights reserved.
Microsoft Confidential
=================================================
Uses the generic IOCTL call to set the default bpb for
specified a disk drive
int SetNewBpb( struct BPB *Bpb, char *WorkBuffer, int Drive );
ARGUMENTS: Bpb - The new BPB structure
Buffer - A work buffer for use by the function
Drive - The disk drive to set the new bpb for
RETURNS: int - 0 if successfull else -1
=================================================
johnhe - 06/06/89
END COMMENT #
; =======================================================
INCLUDE disk_io.inc
INCLUDE model.inc
; =======================================================
.CODE
; =======================================================
IF @DataSize
SetNewBpb PROC USES DS ES DI SI, Bpb:Ptr, Buffer:Ptr, Drive:WORD
ELSE
SetNewBpb PROC USES ES DI SI, Bpb:Ptr, Buffer:Ptr, Drive:WORD
ENDIF
mov AX,440dh ; IOCTL function function 0dh
mov BX,Drive ; Drive number in BL
mov CX,860h ; CH=Device Type - CL=minor funct. #
; lds SI,Buffer ; Load pointer to buffer
LoadPtr DS, SI, Buffer ; DS:SI --> Caller supplied buffer
mov DX,SI ; Move offset pointer to DX
mov BYTE PTR [SI],0 ; Set for get default params
int 21h
jc Error ; Check for error
SavePtr:
push DS ; Save DS:DX
push DX
; les DI,Buffer ; Set ES:DI for string copy
LoadPtr ES, DI, Buffer ; ES:DI --> Caller supplied buffer
add DI,07 ; Point to bpb in params
; lds SI,bpb ; Point DS:SI to new bpb
LoadPtr DS, SI, Bpb ; DS:SI --> Bpb structure
mov CX,BPB_SIZE ; Number of bytes in the bpb
cld
rep movsb ; Copy new bpb to params
pop DX ; Restore DS:DX
pop DS
SetNewCall:
mov AX,440dh ; IOCTL function 0dh
mov BX,Drive ; Put drive number in BL
mov CX,840h ; CH=Device Type - CL=minor funct. #
mov SI,DX ; Move offset pointer to SI
or BYTE PTR [SI],101b ; Set bit 0 for set default params
int 21h
jc Error ; Check for errors
xor AX,AX ; No errors so return OK
jmp SHORT SetBpbReturn
Error:
mov AX,-1
SetBpbReturn:
ret
SetNewBpb ENDP
; =======================================================
END
; =======================================================
|
osascript/run-jpegmini.applescript | Mu-L/ImageOptim-CLI | 0 | 3128 | #!/bin/osascript
on runJPEGmini(jpegDirectory, jpegMiniAppName)
(* OPEN AND FOCUS JPEGMINI *)
tell application jpegMiniAppName
activate
delay 3
activate
end tell
(* SPAWN THE FILE > OPEN MENU *)
tell application "System Events"
keystroke "o" using {command down}
delay 3
keystroke "g" using {command down, shift down}
delay 2
end tell
(* NAVIGATE TO OUR FOLDER OF IMAGES *)
tell application "System Events"
tell process jpegMiniAppName
(* < SIERRA, FILE PATH SELECTOR IS TEXT INPUT *)
if text field 1 of sheet 1 of sheet 1 of window 1 exists then
set value of text field 1 of sheet 1 of sheet 1 of window 1 to jpegDirectory
repeat
if (value of text field 1 of sheet 1 of sheet 1 of window 1) is not equal to jpegDirectory then
delay 1
else
exit repeat
end if
end repeat
end if
(* = SIERRA, FILE PATH SELECTOR IS COMBO BOX *)
if combo box 1 of sheet 1 of sheet 1 of window 1 exists then
set value of combo box 1 of sheet 1 of sheet 1 of window 1 to jpegDirectory
repeat
if (value of combo box 1 of sheet 1 of sheet 1 of window 1) is not equal to jpegDirectory then
delay 1
else
exit repeat
end if
end repeat
end if
(* HIGH SIERRA *)
if combo box 1 of sheet 1 of window 1 exists then
set value of combo box 1 of sheet 1 of window 1 to jpegDirectory
repeat
if (value of combo box 1 of sheet 1 of window 1) is not equal to jpegDirectory then
delay 1
else
exit repeat
end if
end repeat
end if
(* >= MONTEREY *)
if text field 1 of sheet 1 of window 1 exists then
set value of text field 1 of sheet 1 of window 1 to jpegDirectory
repeat
if (value of text field 1 of sheet 1 of window 1) is not equal to jpegDirectory then
delay 1
else
exit repeat
end if
end repeat
end if
-- give Finder time to resolve the path
delay 2
keystroke return
delay 2
keystroke return
-- start optimising (>= Yosemite)
-- click button "Go" of sheet 1 of window 1
-- start optimising (<= Mavericks)
-- click button "Open" of sheet 1 of window 1
end tell
end tell
(* WAIT FOR JPEGMINI TO FINISH RUNNING *)
tell application "System Events"
set timesIdle to 0
repeat
-- get all process information | filtered to JPEGmini
set getRawProcess to "ps aux | grep '/Applications/" & jpegMiniAppName & "'"
-- filter out JPEGmini grep | get column 3 of output (% CPU)
set filterRawProcess to "grep -v grep | awk '{print $3}'"
-- store above pipe chain in a variable
set getRawCpu to "RAWCPU=$(" & getRawProcess & " | " & filterRawProcess & ")"
-- round that variable to a whole number
set outputRoundedCpu to "$(printf \"%.0f\" $(echo \"scale=2;$RAWCPU\" | bc))"
-- join the two commands and echo it out to applescript
set getCpuPercent to getRawCpu & " && echo " & outputRoundedCpu
-- get raw terminal string output
set cpuPercent to (do shell script getCpuPercent) as number
-- give the app a little time to work
delay 0.5
-- if the app is idle
if (cpuPercent) < 1 then
-- increment number of times we've found the app consecutively idle
set timesIdle to timesIdle + 1
-- if it's been idle for long enough we can exit
if (timesIdle) > 5 then
exit repeat
end if
end if
-- (implied else: by not exiting we repeat again)
end repeat
delay 0.5
end tell
end runJPEGmini
on run argv
set jpegDirectory to item 1 of argv
set jpegMiniAppName to item 2 of argv
return runJPEGmini(jpegDirectory, jpegMiniAppName)
end run
|
oeis/138/A138416.asm | neoneye/loda-programs | 11 | 96568 | ; A138416: a(n) = (p^3 - p^2)/2, where p = prime(n).
; Submitted by <NAME>
; 2,9,50,147,605,1014,2312,3249,5819,11774,14415,24642,33620,38829,50807,73034,100949,111630,148137,176435,191844,243399,282449,348524,451632,510050,541059,606797,641574,715064,1016127,1115465,1276292,1333149,1642874,1710075,1922622,2152089,2314787,2573894,2851649,2948490,3465695,3575904,3803282,3920499,4674705,5519919,5822777,5978274,6297524,6797399,6969720,7875125,8454272,9061139,9696374,9914535,10588602,11054540,11292549,12533954,14420097,14991755,15283164,15877262,18077565,19079592,20830757
seq $0,40 ; The prime numbers.
mov $1,$0
sub $0,1
pow $1,2
mul $0,$1
div $0,2
|
programs/oeis/291/A291900.asm | karttu/loda | 1 | 178574 | <reponame>karttu/loda
; A291900: Sum of the divisors of 24*n - 1, divided by 24, minus n.
; 0,0,0,1,1,1,0,0,2,0,0,2,0,3,0,0,2,0,9,0,0,2,2,7,0,4,0,3,6,0,0,3,5,7,0,0,0,0,15,6,0,3,0,9,4,0,10,0,13,5,0,3,3,22,0,4,0,5,12,0,19,0,0,13,0,0,0,10,14,4,6,7,5,19,11,0,0,0,16,5,4,12,8,28,0,0,0,0,35,6,4,0,5,32,4,18,8,0,31,0,0,0,15,21,10,0,7,0,22,30,0,0,0,23,5,17,17,7,24,0,0,0,10,62,0,0,12,5,26,0,19,0,0,27,5,11,8,38,41,0,9,0,5,29,26,6,0,5,68,5,0,22,0,31,0,9,0,10,61,15,0,21,0,33,6,24,0,7,34,0,16,0,25,43,35,6,7,0,36,26,6,17,0,37,9,0,27,15,38,6,0,12,18,91,0,0,8,0,49,0,51,7,0,66,0,0,0,48,61,0,6,0,12,66,57,6,7,0,44,0,0,32,0,62,0,44,18,0,87,0,11,13,0,47,0,34,29,0,65,19,0,0,57,49,0,0,0,23,61,36
mov $2,$0
cal $0,280098 ; The sum of the divisors of 24*n - 1, divided by 24.
mov $1,6
add $1,$0
sub $1,$2
sub $1,7
|
data/mapObjects/Route22Gate.asm | AmateurPanda92/pokemon-rby-dx | 9 | 102287 | Route22Gate_Object:
db $a ; border block
db 4 ; warps
warp 4, 7, 0, -1
warp 5, 7, 0, -1
warp 4, 0, 0, -1
warp 5, 0, 1, -1
db 0 ; signs
db 1 ; objects
object SPRITE_GUARD, 6, 2, STAY, LEFT, 1 ; person
; warp-to
warp_to 4, 7, ROUTE_22_GATE_WIDTH
warp_to 5, 7, ROUTE_22_GATE_WIDTH
warp_to 4, 0, ROUTE_22_GATE_WIDTH
warp_to 5, 0, ROUTE_22_GATE_WIDTH
|
src/main/fragment/mos6502-common/vbuaa=vbuaa_bxor_vbuyy.asm | jbrandwood/kickc | 2 | 17491 | <filename>src/main/fragment/mos6502-common/vbuaa=vbuaa_bxor_vbuyy.asm
sty $ff
eor $ff |
scripts/edit.applescript | 521dimensions/ansible-vault-automator | 22 | 4644 | <filename>scripts/edit.applescript
on run {input, parameters}
set completedItems to {}
repeat with f in input
set f to (f as text)
tell application "Terminal" to do script "ansible-vault edit " & quoted form of POSIX path of f
set completedItems to (completedItems & f) --mark off items that are already completed
end repeat
activate application "Terminal"
end run |
src/MJSF/Examples/Integer.agda | metaborg/mj.agda | 10 | 6079 | module MJSF.Examples.Integer where
open import Prelude
open import Data.Maybe
open import Data.Star
open import Data.Bool
open import Data.List
open import Data.Integer
open import Data.List.Membership.Propositional
open import Data.List.Relation.Unary.Any
open import Data.List.Relation.Unary.All as All hiding (lookup)
open import Data.Product hiding (Σ)
open import Relation.Binary.PropositionalEquality
open import Relation.Nullary.Decidable
k : ℕ
k = 5
open import MJSF.Syntax k
open import ScopesFrames.ScopesFrames k Ty
{-
class Integer {
int x = 0;
void set(Integer b) {
this.x = b.get()
}
}
-}
classes : List Ty
classes = (cᵗ (# 0) (# 1) ∷ [])
intmethods intfields : List Ty
intfields =
{- x -} vᵗ int
∷ []
intmethods =
{- set -} mᵗ ((ref (# 1)) ∷ []) void
∷ []
Integer : Scope
Integer = # 1
g : Graph
-- root scope
g zero = classes , []
-- class scope of Integer class
g (suc zero)= (intmethods ++ intfields) , zero ∷ []
-- scope of Integer.set method
g (suc (suc zero)) = (vᵗ (ref (# 1)) ∷ []) , # 1 ∷ []
-- scopes of main
g (suc (suc (suc zero))) = vᵗ (ref Integer) ∷ [] , (# 0 ∷ [])
g (suc (suc (suc (suc zero)))) = vᵗ (ref Integer) ∷ [] , # 3 ∷ []
g (suc (suc (suc (suc (suc ())))))
open SyntaxG g
open UsesGraph g
IntegerImpl : Class (# 0) (# 1)
IntegerImpl = class0 {ms = intmethods}{intfields}{[]}
(-- methods
(#m' (meth (# 2) (body-void
(set
(this [] (here refl))
(path [] (there (here refl)))
(get (var (path [] (here refl))) (path [] (there (here refl))))
◅ ε)))) ∷ [])
(-- fields
(#v' tt) ∷ [])
[]
{-
int main() {
Integer x;
Integer y;
x = new Integer();
y = new Integer();
x.x = 9;
y.x = 18;
y.set(x);
return y.x;
}
-}
main : Body (# 0) int
main = body
(
loc (# 3) (ref Integer)
◅ loc (# 4) (ref Integer)
◅ asgn (path (here refl ∷ []) (here refl)) (new (path (here refl ∷ here refl ∷ []) (here refl)))
◅ asgn (path [] (here refl)) (new (path (here refl ∷ here refl ∷ []) (here refl)))
◅ set (var (path (here refl ∷ []) (here refl))) (path [] (there (here refl))) (num (+ 9))
◅ set (var (path [] (here refl))) (path [] (there (here refl))) (num (+ 18))
◅ run (call (var (path [] (here refl))) (path [] (here refl)) (var (path (here refl ∷ []) (here refl)) ∷ []))
◅ ε
)
(get (var (path [] (here refl))) (path [] (there (here refl))))
p : Program (# 0) int
p = program classes (#c' (IntegerImpl , # 1 , obj (# 1) ⦃ refl ⦄) ∷ []) main
open import MJSF.Semantics
open Semantics _ g
open import MJSF.Values
open ValuesG _ g
test : p ⇓⟨ 100 ⟩ (λ v → v ≡ num (+ 9) )
test = refl
|
src/Projects/Backup/eu_projects-identifiers-full.adb | fintatarta/eugen | 0 | 25186 | <filename>src/Projects/Backup/eu_projects-identifiers-full.adb
with Ada.Strings.Unbounded;
with Tokenize;
package body EU_Projects.Identifiers.Full is
---------
-- ">" --
---------
function "<" (X, Y : Full_ID) return Boolean is
use ID_Vectors;
Tx : ID_Vectors.Vector := X.Segments;
Ty : ID_Vectors.Vector := Y.Segments;
begin
while not (Tx.Is_Empty or Ty.Is_Empty) loop
if Tx.First_Element > Ty.First_Element then
return False;
elsif Tx.First_Element < Ty.First_Element then
return True;
else
Tx.Delete_First;
Ty.Delete_First;
end if;
end loop;
--
-- If Ty is not empty it means that Tx x, therefore X < Y.
-- If Ty is empty, it can be
--
-- + Also Tx is empty => X = Y
-- + Tx is not empty => X > Y
--
-- Therefore, X < Y iff Ty is empty
--
return not Ty.Is_Empty;
end "<";
-----------
-- Parse --
-----------
function Parse
(X : String)
return Full_ID
is
use Ada.Strings.Unbounded;
Segments : constant Tokenize.Token_List :=
Tokenize.Split (To_Be_Splitted => X,
Separator => '.');
Result : Full_ID;
begin
for Seg of Segments loop
Result.Segments.Append (To_ID (To_String (Seg)));
end loop;
return Result;
end Parse;
-----------
-- Image --
-----------
function Image (X : Full_ID) return String is
use Ada.Strings.Unbounded;
Result : Unbounded_String := Null_Unbounded_String;
begin
for Segment of X.Segments loop
if Result /= Null_Unbounded_String then
Result := Result & ".";
end if;
Result := Result & Image(Segment);
end loop;
return To_String (Result);
end Image;
------------
-- Header --
------------
function Header
(Item : Full_ID)
return Full_ID
is
Result : Full_ID := Item;
begin
Result.Segments.Delete_Last;
return Result;
end Header;
-------------
-- Trailer --
-------------
function Trailer
(Item : Full_ID)
return Full_ID
is
Result : Full_ID := Item;
begin
Result.Segments.Delete_First;
return Result;
end Trailer;
-------------
-- Resolve --
-------------
function Resolve
(Item : Full_ID;
Prefix : Full_ID;
Resolver : Resolver_Type'Class)
return Full_ID
is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Resolve unimplemented");
raise Program_Error with "Unimplemented function Resolve";
return Resolve (Item => Item, Prefix => Prefix, Resolver => Resolver);
end Resolve;
end EU_Projects.Identifiers.Full;
|
programs/oeis/039/A039733.asm | neoneye/loda | 22 | 20566 | ; A039733: a(n)=k such that prime(k) is the prime q<prime(n) for which (prime(n) mod q) is maximal.
; 1,2,3,4,4,5,5,6,7,7,8,9,9,10,10,11,11,12,12,12,13,14,15,16,16,16,17,17,17,19,19,20,20,22,22,22,23,24,24,25,25,25,25,26,26,28,30,31,31,31,31,31,31,32,33,33,33,34,35,35,35,37,37,37,38,39,40,41,41,41,42,43,43,43,44,45,46,47,47,47,47,48,48,48,48,49,50,51,51,52,53,54,54,54,55,55,56,56,58,59
seq $0,5097 ; (Odd primes - 1)/2.
seq $0,230980 ; Number of primes <= n, starting at n=0.
add $0,1
|
libsrc/osca/find_file.asm | andydansby/z88dk-mk2 | 1 | 245230 | ; int find_file (char *filename, struct flos_file file);
; CALLER linkage for function pointers
;
; $Id: find_file.asm,v 1.2 2012/03/08 07:16:46 stefano Exp $
;
XLIB find_file
LIB find_file_callee
XREF ASMDISP_FIND_FILE_CALLEE
find_file:
pop bc
pop de ; ptr to file struct
pop hl ; ptr to file name
push hl
push de
push bc
jp find_file_callee + ASMDISP_FIND_FILE_CALLEE
|
alloy4fun_models/trashltl/models/7/GLDxn2kzT4ZMRitND.als | Kaixi26/org.alloytools.alloy | 0 | 2345 | <reponame>Kaixi26/org.alloytools.alloy
open main
pred idGLDxn2kzT4ZMRitND_prop8 {
always (all f:File| some f.^link implies eventually f.*link in Trash)
}
pred __repair { idGLDxn2kzT4ZMRitND_prop8 }
check __repair { idGLDxn2kzT4ZMRitND_prop8 <=> prop8o } |
programs/oeis/003/A003417.asm | jmorken/loda | 1 | 10098 | ; A003417: Continued fraction for e.
; 2,1,2,1,1,4,1,1,6,1,1,8,1,1,10,1,1,12,1,1,14,1,1,16,1,1,18,1,1,20,1,1,22,1,1,24,1,1,26,1,1,28,1,1,30,1,1,32,1,1,34,1,1,36,1,1,38,1,1,40,1,1,42,1,1,44,1,1,46,1,1,48,1,1,50,1,1,52,1,1,54,1,1,56,1,1,58,1,1,60,1,1,62,1,1,64,1,1,66,1,1,68,1,1,70,1,1,72,1,1,74,1,1,76,1,1,78,1,1,80,1,1,82,1,1,84,1,1,86,1,1,88,1,1,90,1,1,92,1,1,94,1,1,96,1,1,98,1,1,100,1,1,102,1,1,104,1,1,106,1,1,108,1,1,110,1,1,112,1,1,114,1,1,116,1,1,118,1,1,120,1,1,122,1,1,124,1,1,126,1,1,128,1,1,130,1,1,132,1,1,134,1,1,136,1,1,138,1,1,140,1,1,142,1,1,144,1,1,146,1,1,148,1,1,150,1,1,152,1,1,154,1,1,156,1,1,158,1,1,160,1,1,162,1,1,164,1,1,166,1
mov $2,$0
add $0,2
mov $1,2
mov $3,$0
lpb $2
sub $3,2
lpb $0
add $0,$3
sub $0,3
add $4,$3
lpe
mov $1,$2
sub $3,1
trn $4,$2
sub $2,$4
trn $2,1
lpe
|
Application/XCDocumentation.applescript | boinx/XCDocumentation | 0 | 2172 | -- Returns the current $SRCROOT
on run
set sourceFilePath to activeSourceFilePath()
set myProject to projectForSourceFilePath(sourceFilePath)
set mySRCROOT to getSRCROOTofProject(myProject)
return mySRCROOT
end run
-- Opens the documentation file at $SRCROOT/Document/relativePath with its native editor application
on openDocumentation(relativePath)
set myPath to SRCROOT() & "Documentation/" & relativePath
tell application "Finder"
open file myPath
end tell
return relativePath
end openDocumentation
-- Creates a documentation file at $SRCROOT/Document/relativePath and returns the relativePath to it
on newDocumentation()
set relativePath to "new.pdf"
return relativePath
end openDocumentation
-- Returns the current SRCROOT, i.e. the directory containing the Xcode project file
on SRCROOT()
set sourceFilePath to activeSourceFilePath()
set myProject to projectForSourceFilePath(sourceFilePath)
set myPath to getSRCROOTofProject(myProject)
return myPath
end SRCROOT
-- Returns the path to the source file that is currently being edited in Xcode
on activeSourceFilePath()
tell application "Xcode"
-- alternative:
set myDocument to front source document
set myPath to path of myDocument
--set activeDocument to document 1 whose name ends with (word -1 of (get name of window 1))
--set myPath to path of activeDocument
end tell
return myPath
end activeSourceFilePath
-- Returns the Xcode project that contains the specified source file
on projectForSourceFilePath(sourceFilePath)
tell application "Xcode"
set myWorkspace to front workspace document
set myProjects to project of myWorkspace
set maxPathLength to 0
-- set myProject to first item of myProjects
repeat with myProject in myProjects
-- log (name of myProject) as text
set mySRCROOT to getSRCROOTofProject(myProject) of me
if mySRCROOT is not "" then
set isPrefix to offset of mySRCROOT in sourceFilePath
set mySRCROOTLength to length of mySRCROOT
if isPrefix is 1 and mySRCROOTLength > maxPathLength then
set resolvedProject to myProject
set resolvedSRCROOT to mySRCROOT
set maxPathLength to mySRCROOTLength
end if
end if
end repeat
end tell
return resolvedProject
end projectForSourceFilePath
-- Returns $SRCROOT for the specified Xcode project
on getSRCROOTofProject(myProject)
tell application "Xcode"
set myBuildConfiguration to first build configuration of myProject
set mySRCROOT to value of resolved build setting "SRCROOT" of myBuildConfiguration
end tell
return mySRCROOT
end getSRCROOTofProject
|
tentaplugg_albin/stonehedge/stone.adb | albinjal/ada_basic | 3 | 6066 | with Ada.Text_IO; use Ada.Text_IO;
with Ada.Command_Line; use Ada.Command_Line;
with Ada.Integer_Text_IO; use Ada.Integer_Text_IO;
procedure Stone is
I: Integer;
C: Character;
begin
--kollar om 2 argument finns
if Argument_Count = 2 then
--Tar in tecknet
C := Argument(1)(1);
--Omvandlar tecknet till integer
I := Character'Pos(C);
-- Lägger till argument 2 till integern
I := I + Integer'Value(Argument(2));
Put(Character'Val(I));
end if;
null;
end;
|
test-resources/ExamplesFromRoy/md_example7.ads | hergin/ada2fuml | 0 | 30765 | with Globals_Example1;
package Md_Example7 is
type T is tagged record
Attribute : Globals_Example1.Itype;
end record;
type T2 is new T with record
Child_Attribute : Globals_Example1.Itype;
end record;
type T3 is new T2 with null record;
end Md_Example7;
|
test/asm/symbol-override.asm | kimi-soft/rgbds | 522 | 103014 | <gh_stars>100-1000
V = 0
V = 1
PRINTLN "V={V}"
W equ 1
W = 0
rsset 1
X rb 0
X = 0
SECTION "Test", ROM0[1]
Y:
Y = 0
|
programs/oeis/070/A070716.asm | neoneye/loda | 22 | 6399 | ; A070716: n^7 mod 35.
; 0,1,23,17,4,5,6,28,22,9,10,11,33,27,14,15,16,3,32,19,20,21,8,2,24,25,26,13,7,29,30,31,18,12,34,0,1,23,17,4,5,6,28,22,9,10,11,33,27,14,15,16,3,32,19,20,21,8,2,24,25,26,13,7,29,30,31,18,12,34,0,1,23,17,4,5,6
pow $0,7
mod $0,35
|
source/gc.ads | ytomino/boehmgc-ada | 3 | 12055 | with System.Storage_Elements;
package GC is
pragma Preelaborate;
pragma Linker_Options ("-lgc");
function Version return String;
function Heap_Size return System.Storage_Elements.Storage_Count;
procedure Collect;
end GC;
|
testsuite/tests/virtual_file_system/src/helpers.ads | morbos/Ada_Drivers_Library | 2 | 12799 | <filename>testsuite/tests/virtual_file_system/src/helpers.ads
with Ada.Unchecked_Deallocation;
with HAL; use HAL;
with HAL.Filesystem; use HAL.Filesystem;
with Native.Filesystem;
with Virtual_File_System; use Virtual_File_System;
-- Helpers for Virtual_File_System testcases
package Helpers is
procedure Test (Status : Status_Kind);
-- Check that status is Status_Ok
function Create
(Root_Dir : Pathname;
Create_If_Missing : Boolean := False)
return Native.Filesystem.Native_FS_Driver_Ref;
-- Create a native FS driver rooted at Root_Dir, in the Material_Name
-- material directory.
function Read_File (File : in out File_Handle'Class) return UInt8_Array;
-- Read the whole content of File and return it. Raise a Program_Error if
-- anything goes wrong.
function Quote_Bytes (Bytes : UInt8_Array) return String;
-- Return a human-readable representation of Bytes, considered as ASCII
procedure Dump (FS : in out FS_Driver'Class; Dir : Pathname);
-- Dump the content of the Dir directory in FS to the standard output
procedure Destroy is new Ada.Unchecked_Deallocation
(FS_Driver'Class, Any_FS_Driver);
procedure Destroy is new Ada.Unchecked_Deallocation
(Virtual_File_System.VFS'Class, Virtual_File_System.Any_VFS);
end Helpers;
|
programs/oeis/173/A173529.asm | karttu/loda | 0 | 170333 | <filename>programs/oeis/173/A173529.asm
; A173529: a(n) = 1 + A053830(n-1), where A053830 is the sum of the digits of its argument in base 9.
; 1,2,3,4,5,6,7,8,9,2,3,4,5,6,7,8,9,10,3,4,5,6,7,8,9,10,11,4,5,6,7,8,9,10,11,12,5,6,7,8,9,10,11,12,13,6,7,8,9,10,11,12,13,14,7,8,9,10,11,12,13,14,15,8,9,10,11,12,13,14,15,16,9,10,11,12,13,14,15,16,17,2,3,4,5,6,7,8,9,10,3,4,5,6,7,8,9,10,11,4
lpb $0,1
mov $2,$0
lpb $2,1
mod $2,9
lpe
div $0,9
add $1,$2
lpe
add $1,1
|
src/frontend/Experimental_Ada_ROSE_Connection/dot_asis/dot_asis_library/include/a_nodes_h.ads | sourceryinstitute/rose-sourcery-institute | 0 | 19374 | pragma Ada_2012;
pragma Style_Checks (Off);
with Interfaces.C; use Interfaces.C;
with Interfaces.C.Strings;
with Interfaces.C.Extensions;
package a_nodes_h is
type Program_Text is new Interfaces.C.Strings.chars_ptr; -- a_nodes.h:11
subtype ASIS_Integer is int; -- a_nodes.h:12
subtype Element_ID is int; -- a_nodes.h:19
type Element_ID_Ptr is access all Element_ID; -- a_nodes.h:36
type u_Element_ID_Array_Struct is record
Length : aliased int; -- a_nodes.h:41
IDs : Element_ID_Ptr; -- a_nodes.h:42
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:40
subtype Element_ID_Array_Struct is u_Element_ID_Array_Struct; -- a_nodes.h:43
subtype Element_ID_List is Element_ID_Array_Struct; -- a_nodes.h:45
type Element_Kinds is
(Not_An_Element,
A_Pragma,
A_Defining_Name,
A_Declaration,
A_Definition,
An_Expression,
An_Association,
A_Statement,
A_Path,
A_Clause,
An_Exception_Handler)
with Convention => C; -- a_nodes.h:47
subtype Access_Type_Definition is Element_ID; -- a_nodes.h:69
subtype Association is Element_ID; -- a_nodes.h:70
subtype Association_List is Element_ID_List; -- a_nodes.h:71
subtype Case_Statement_Alternative is Element_ID; -- a_nodes.h:72
subtype Clause is Element_ID; -- a_nodes.h:73
subtype Component_Clause is Element_ID; -- a_nodes.h:74
subtype Component_Clause_List is Element_ID_List; -- a_nodes.h:75
subtype Component_Declaration is Element_ID; -- a_nodes.h:76
subtype Component_Definition is Element_ID; -- a_nodes.h:77
subtype Constraint_ID is Element_ID; -- a_nodes.h:78
subtype Constraint is Element_ID; -- a_nodes.h:79
subtype Context_Clause is Element_ID; -- a_nodes.h:80
subtype Context_Clause_List is Element_ID_List; -- a_nodes.h:81
subtype Declaration is Element_ID; -- a_nodes.h:82
subtype Declaration_ID is Element_ID; -- a_nodes.h:83
subtype Declaration_List is Element_ID_List; -- a_nodes.h:84
subtype Declarative_Item_List is Element_ID_List; -- a_nodes.h:85
subtype Defining_Name_ID is Element_ID; -- a_nodes.h:86
subtype Definition is Element_ID; -- a_nodes.h:87
subtype Definition_ID is Element_ID; -- a_nodes.h:88
subtype Definition_List is Element_ID_List; -- a_nodes.h:89
subtype Discrete_Range is Element_ID; -- a_nodes.h:90
subtype Discrete_Range_ID is Element_ID; -- a_nodes.h:91
subtype Discrete_Range_List is Element_ID_List; -- a_nodes.h:92
subtype Discrete_Subtype_Definition is Element_ID; -- a_nodes.h:93
subtype Discrete_Subtype_Definition_ID is Element_ID; -- a_nodes.h:94
subtype Discriminant_Association is Element_ID; -- a_nodes.h:95
subtype Discriminant_Association_List is Element_ID_List; -- a_nodes.h:96
subtype Discriminant_Specification_List is Element_ID_List; -- a_nodes.h:97
subtype Defining_Name is Element_ID; -- a_nodes.h:98
subtype Defining_Name_List is Element_ID_List; -- a_nodes.h:99
subtype Exception_Handler is Element_ID; -- a_nodes.h:100
subtype Exception_Handler_List is Element_ID_List; -- a_nodes.h:101
subtype Expression is Element_ID; -- a_nodes.h:102
subtype Expression_ID is Element_ID; -- a_nodes.h:103
subtype Expression_List is Element_ID_List; -- a_nodes.h:104
subtype Expression_Path_List is Element_ID_List; -- a_nodes.h:105
subtype Formal_Type_Definition is Element_ID; -- a_nodes.h:106
subtype Generic_Formal_Parameter is Element_ID; -- a_nodes.h:107
subtype Generic_Formal_Parameter_List is Element_ID_List; -- a_nodes.h:108
subtype Identifier is Element_ID; -- a_nodes.h:109
subtype Identifier_List is Element_ID_List; -- a_nodes.h:110
subtype Name is Element_ID; -- a_nodes.h:111
subtype Name_ID is Element_ID; -- a_nodes.h:112
subtype Name_List is Element_ID_List; -- a_nodes.h:113
subtype Parameter_Specification is Element_ID; -- a_nodes.h:114
subtype Parameter_Specification_List is Element_ID_List; -- a_nodes.h:115
subtype Path is Element_ID; -- a_nodes.h:116
subtype Path_List is Element_ID_List; -- a_nodes.h:117
subtype Pragma_Element is Element_ID; -- a_nodes.h:118
subtype Pragma_Element_ID_List is Element_ID_List; -- a_nodes.h:119
subtype Range_Constraint is Element_ID; -- a_nodes.h:120
subtype Record_Component is Element_ID; -- a_nodes.h:121
subtype Record_Component_List is Element_ID_List; -- a_nodes.h:122
subtype Record_Definition is Element_ID; -- a_nodes.h:123
subtype Representation_Clause is Element_ID; -- a_nodes.h:124
subtype Representation_Clause_List is Element_ID_List; -- a_nodes.h:125
subtype Root_Type_Definition is Element_ID; -- a_nodes.h:126
subtype Select_Alternative is Element_ID; -- a_nodes.h:127
subtype Statement is Element_ID; -- a_nodes.h:128
subtype Statement_ID is Element_ID; -- a_nodes.h:129
subtype Statement_List is Element_ID_List; -- a_nodes.h:130
subtype Subtype_Indication is Element_ID; -- a_nodes.h:131
subtype Subtype_Indication_ID is Element_ID; -- a_nodes.h:132
subtype Subtype_Mark is Element_ID; -- a_nodes.h:133
subtype Type_Definition is Element_ID; -- a_nodes.h:134
subtype Type_Definition_ID is Element_ID; -- a_nodes.h:135
subtype Variant is Element_ID; -- a_nodes.h:136
subtype Variant_Component_List is Element_ID_List; -- a_nodes.h:137
subtype Variant_List is Element_ID_List; -- a_nodes.h:138
type Operator_Kinds is
(Not_An_Operator,
An_And_Operator,
An_Or_Operator,
An_Xor_Operator,
An_Equal_Operator,
A_Not_Equal_Operator,
A_Less_Than_Operator,
A_Less_Than_Or_Equal_Operator,
A_Greater_Than_Operator,
A_Greater_Than_Or_Equal_Operator,
A_Plus_Operator,
A_Minus_Operator,
A_Concatenate_Operator,
A_Unary_Plus_Operator,
A_Unary_Minus_Operator,
A_Multiply_Operator,
A_Divide_Operator,
A_Mod_Operator,
A_Rem_Operator,
An_Exponentiate_Operator,
An_Abs_Operator,
A_Not_Operator)
with Convention => C; -- a_nodes.h:142
type Pragma_Kinds is
(Not_A_Pragma,
An_All_Calls_Remote_Pragma,
An_Assert_Pragma,
An_Assertion_Policy_Pragma,
An_Asynchronous_Pragma,
An_Atomic_Pragma,
An_Atomic_Components_Pragma,
An_Attach_Handler_Pragma,
A_Controlled_Pragma,
A_Convention_Pragma,
A_CPU_Pragma,
A_Default_Storage_Pool_Pragma,
A_Detect_Blocking_Pragma,
A_Discard_Names_Pragma,
A_Dispatching_Domain_Pragma,
An_Elaborate_Pragma,
An_Elaborate_All_Pragma,
An_Elaborate_Body_Pragma,
An_Export_Pragma,
An_Independent_Pragma,
A_Independent_Components_Pragma,
An_Import_Pragma,
An_Inline_Pragma,
An_Inspection_Point_Pragma,
An_Interrupt_Handler_Pragma,
An_Interrupt_Priority_Pragma,
A_Linker_Options_Pragma,
A_List_Pragma,
A_Locking_Policy_Pragma,
A_No_Return_Pragma,
A_Normalize_Scalars_Pragma,
An_Optimize_Pragma,
A_Pack_Pragma,
A_Page_Pragma,
A_Partition_Elaboration_Policy_Pragma,
A_Preelaborable_Initialization_Pragma,
A_Preelaborate_Pragma,
A_Priority_Pragma,
A_Priority_Specific_Dispatching_Pragma,
A_Profile_Pragma,
A_Pure_Pragma,
A_Queuing_Policy_Pragma,
A_Relative_Deadline_Pragma,
A_Remote_Call_Interface_Pragma,
A_Remote_Types_Pragma,
A_Restrictions_Pragma,
A_Reviewable_Pragma,
A_Shared_Passive_Pragma,
A_Storage_Size_Pragma,
A_Suppress_Pragma,
A_Task_Dispatching_Policy_Pragma,
An_Unchecked_Union_Pragma,
An_Unsuppress_Pragma,
A_Volatile_Pragma,
A_Volatile_Components_Pragma,
An_Implementation_Defined_Pragma)
with Convention => C; -- a_nodes.h:172
type Pragma_Struct is record
Pragma_Kind : aliased Pragma_Kinds; -- a_nodes.h:233
Pragmas : aliased Pragma_Element_ID_List; -- a_nodes.h:234
Pragma_Name_Image : Program_Text; -- a_nodes.h:235
Pragma_Argument_Associations : aliased Association_List; -- a_nodes.h:236
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:232
type Defining_Name_Kinds is
(Not_A_Defining_Name,
A_Defining_Identifier,
A_Defining_Character_Literal,
A_Defining_Enumeration_Literal,
A_Defining_Operator_Symbol,
A_Defining_Expanded_Name)
with Convention => C; -- a_nodes.h:247
type Defining_Name_Struct is record
Defining_Name_Kind : aliased Defining_Name_Kinds; -- a_nodes.h:258
Defining_Name_Image : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:259
References : aliased Name_List; -- a_nodes.h:260
Is_Referenced : aliased Extensions.bool; -- a_nodes.h:261
Operator_Kind : aliased Operator_Kinds; -- a_nodes.h:265
Position_Number_Image : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:268
Representation_Value_Image : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:269
Defining_Prefix : aliased Name_ID; -- a_nodes.h:271
Defining_Selector : aliased Defining_Name_ID; -- a_nodes.h:272
Corresponding_Constant_Declaration : aliased Declaration_ID; -- a_nodes.h:274
Corresponding_Generic_Element : aliased Defining_Name_ID; -- a_nodes.h:277
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:257
type Declaration_Kinds is
(Not_A_Declaration,
An_Ordinary_Type_Declaration,
A_Task_Type_Declaration,
A_Protected_Type_Declaration,
An_Incomplete_Type_Declaration,
A_Tagged_Incomplete_Type_Declaration,
A_Private_Type_Declaration,
A_Private_Extension_Declaration,
A_Subtype_Declaration,
A_Variable_Declaration,
A_Constant_Declaration,
A_Deferred_Constant_Declaration,
A_Single_Task_Declaration,
A_Single_Protected_Declaration,
An_Integer_Number_Declaration,
A_Real_Number_Declaration,
An_Enumeration_Literal_Specification,
A_Discriminant_Specification,
A_Component_Declaration,
A_Loop_Parameter_Specification,
A_Generalized_Iterator_Specification,
An_Element_Iterator_Specification,
A_Procedure_Declaration,
A_Function_Declaration,
A_Parameter_Specification,
A_Procedure_Body_Declaration,
A_Function_Body_Declaration,
A_Return_Variable_Specification,
A_Return_Constant_Specification,
A_Null_Procedure_Declaration,
An_Expression_Function_Declaration,
A_Package_Declaration,
A_Package_Body_Declaration,
An_Object_Renaming_Declaration,
An_Exception_Renaming_Declaration,
A_Package_Renaming_Declaration,
A_Procedure_Renaming_Declaration,
A_Function_Renaming_Declaration,
A_Generic_Package_Renaming_Declaration,
A_Generic_Procedure_Renaming_Declaration,
A_Generic_Function_Renaming_Declaration,
A_Task_Body_Declaration,
A_Protected_Body_Declaration,
An_Entry_Declaration,
An_Entry_Body_Declaration,
An_Entry_Index_Specification,
A_Procedure_Body_Stub,
A_Function_Body_Stub,
A_Package_Body_Stub,
A_Task_Body_Stub,
A_Protected_Body_Stub,
An_Exception_Declaration,
A_Choice_Parameter_Specification,
A_Generic_Procedure_Declaration,
A_Generic_Function_Declaration,
A_Generic_Package_Declaration,
A_Package_Instantiation,
A_Procedure_Instantiation,
A_Function_Instantiation,
A_Formal_Object_Declaration,
A_Formal_Type_Declaration,
A_Formal_Incomplete_Type_Declaration,
A_Formal_Procedure_Declaration,
A_Formal_Function_Declaration,
A_Formal_Package_Declaration,
A_Formal_Package_Declaration_With_Box)
with Convention => C; -- a_nodes.h:288
type Declaration_Origins is
(Not_A_Declaration_Origin,
An_Explicit_Declaration,
An_Implicit_Predefined_Declaration,
An_Implicit_Inherited_Declaration)
with Convention => C; -- a_nodes.h:392
type Mode_Kinds is
(Not_A_Mode,
A_Default_In_Mode,
An_In_Mode,
An_Out_Mode,
An_In_Out_Mode)
with Convention => C; -- a_nodes.h:408
type Subprogram_Default_Kinds is
(Not_A_Default,
A_Name_Default,
A_Box_Default,
A_Null_Default,
A_Nil_Default)
with Convention => C; -- a_nodes.h:418
type Declaration_Struct is record
Declaration_Kind : aliased Declaration_Kinds; -- a_nodes.h:431
Declaration_Origin : aliased Declaration_Origins; -- a_nodes.h:432
Corresponding_Pragmas : aliased Pragma_Element_ID_List; -- a_nodes.h:433
Names : aliased Defining_Name_List; -- a_nodes.h:434
Aspect_Specifications : aliased Element_ID_List; -- a_nodes.h:435
Corresponding_Representation_Clauses : aliased Representation_Clause_List; -- a_nodes.h:436
Has_Abstract : aliased Extensions.bool; -- a_nodes.h:446
Has_Aliased : aliased Extensions.bool; -- a_nodes.h:453
Has_Limited : aliased Extensions.bool; -- a_nodes.h:457
Has_Private : aliased Extensions.bool; -- a_nodes.h:460
Has_Protected : aliased Extensions.bool; -- a_nodes.h:465
Has_Reverse : aliased Extensions.bool; -- a_nodes.h:469
Has_Task : aliased Extensions.bool; -- a_nodes.h:474
Has_Null_Exclusion : aliased Extensions.bool; -- a_nodes.h:478
Is_Not_Null_Return : aliased Extensions.bool; -- a_nodes.h:486
Mode_Kind : aliased Mode_Kinds; -- a_nodes.h:489
Default_Kind : aliased Subprogram_Default_Kinds; -- a_nodes.h:492
Pragmas : aliased Pragma_Element_ID_List; -- a_nodes.h:512
Corresponding_End_Name : aliased Element_ID; -- a_nodes.h:525
Discriminant_Part : aliased Definition_ID; -- a_nodes.h:534
Type_Declaration_View : aliased Definition_ID; -- a_nodes.h:541
Object_Declaration_View : aliased Definition_ID; -- a_nodes.h:553
Initialization_Expression : aliased Expression_ID; -- a_nodes.h:563
Corresponding_Type_Declaration : aliased Declaration_ID; -- a_nodes.h:571
Corresponding_Type_Completion : aliased Declaration_ID; -- a_nodes.h:576
Corresponding_Type_Partial_View : aliased Declaration_ID; -- a_nodes.h:582
Corresponding_First_Subtype : aliased Declaration_ID; -- a_nodes.h:590
Corresponding_Last_Constraint : aliased Declaration_ID; -- a_nodes.h:591
Corresponding_Last_Subtype : aliased Declaration_ID; -- a_nodes.h:592
Specification_Subtype_Definition : aliased Discrete_Subtype_Definition_ID; -- a_nodes.h:595
Iteration_Scheme_Name : aliased Element_ID; -- a_nodes.h:598
Subtype_Indication : aliased Element_ID; -- a_nodes.h:600
Parameter_Profile : aliased Parameter_Specification_List; -- a_nodes.h:617
Result_Profile : aliased Element_ID; -- a_nodes.h:625
Result_Expression : aliased Expression_ID; -- a_nodes.h:627
Is_Overriding_Declaration : aliased Extensions.bool; -- a_nodes.h:643
Is_Not_Overriding_Declaration : aliased Extensions.bool; -- a_nodes.h:644
Body_Declarative_Items : aliased Element_ID_List; -- a_nodes.h:650
Body_Statements : aliased Statement_List; -- a_nodes.h:651
Body_Exception_Handlers : aliased Exception_Handler_List; -- a_nodes.h:652
Body_Block_Statement : aliased Declaration_ID; -- a_nodes.h:653
Is_Name_Repeated : aliased Extensions.bool; -- a_nodes.h:666
Corresponding_Declaration : aliased Declaration_ID; -- a_nodes.h:702
Corresponding_Body : aliased Declaration_ID; -- a_nodes.h:718
Corresponding_Subprogram_Derivation : aliased Declaration_ID; -- a_nodes.h:721
Corresponding_Type : aliased Type_Definition_ID; -- a_nodes.h:725
Corresponding_Equality_Operator : aliased Declaration_ID; -- a_nodes.h:727
Visible_Part_Declarative_Items : aliased Declarative_Item_List; -- a_nodes.h:730
Is_Private_Present : aliased Extensions.bool; -- a_nodes.h:731
Private_Part_Declarative_Items : aliased Declarative_Item_List; -- a_nodes.h:732
Declaration_Interface_List : aliased Expression_List; -- a_nodes.h:737
Renamed_Entity : aliased Expression_ID; -- a_nodes.h:746
Corresponding_Base_Entity : aliased Expression_ID; -- a_nodes.h:747
Protected_Operation_Items : aliased Declaration_List; -- a_nodes.h:749
Entry_Family_Definition : aliased Discrete_Subtype_Definition_ID; -- a_nodes.h:751
Entry_Index_Specification : aliased Declaration_ID; -- a_nodes.h:753
Entry_Barrier : aliased Expression_ID; -- a_nodes.h:754
Corresponding_Subunit : aliased Declaration_ID; -- a_nodes.h:760
Is_Subunit : aliased Extensions.bool; -- a_nodes.h:766
Corresponding_Body_Stub : aliased Declaration_ID; -- a_nodes.h:767
Generic_Formal_Part : aliased Element_ID_List; -- a_nodes.h:771
Generic_Unit_Name : aliased Expression_ID; -- a_nodes.h:777
Generic_Actual_Part : aliased Association_List; -- a_nodes.h:778
Formal_Subprogram_Default : aliased Expression_ID; -- a_nodes.h:781
Is_Dispatching_Operation : aliased Extensions.bool; -- a_nodes.h:792
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:430
type Definition_Kinds is
(Not_A_Definition,
A_Type_Definition,
A_Subtype_Indication,
A_Constraint,
A_Component_Definition,
A_Discrete_Subtype_Definition,
A_Discrete_Range,
An_Unknown_Discriminant_Part,
A_Known_Discriminant_Part,
A_Record_Definition,
A_Null_Record_Definition,
A_Null_Component,
A_Variant_Part,
A_Variant,
An_Others_Choice,
An_Access_Definition,
A_Private_Type_Definition,
A_Tagged_Private_Type_Definition,
A_Private_Extension_Definition,
A_Task_Definition,
A_Protected_Definition,
A_Formal_Type_Definition,
An_Aspect_Specification)
with Convention => C; -- a_nodes.h:803
type u_Type_Kinds is
(Not_A_Type_Definition,
A_Derived_Type_Definition,
A_Derived_Record_Extension_Definition,
An_Enumeration_Type_Definition,
A_Signed_Integer_Type_Definition,
A_Modular_Type_Definition,
A_Root_Type_Definition,
A_Floating_Point_Definition,
An_Ordinary_Fixed_Point_Definition,
A_Decimal_Fixed_Point_Definition,
An_Unconstrained_Array_Definition,
A_Constrained_Array_Definition,
A_Record_Type_Definition,
A_Tagged_Record_Type_Definition,
An_Interface_Type_Definition,
An_Access_Type_Definition)
with Convention => C; -- a_nodes.h:836
subtype Type_Kinds is u_Type_Kinds; -- a_nodes.h:858
type u_Constraint_Kinds is
(Not_A_Constraint,
A_Range_Attribute_Reference,
A_Simple_Expression_Range,
A_Digits_Constraint,
A_Delta_Constraint,
An_Index_Constraint,
A_Discriminant_Constraint)
with Convention => C; -- a_nodes.h:860
subtype Constraint_Kinds is u_Constraint_Kinds; -- a_nodes.h:868
type u_Interface_Kinds is
(Not_An_Interface,
An_Ordinary_Interface,
A_Limited_Interface,
A_Task_Interface,
A_Protected_Interface,
A_Synchronized_Interface)
with Convention => C; -- a_nodes.h:870
subtype Interface_Kinds is u_Interface_Kinds; -- a_nodes.h:877
type u_Root_Type_Kinds is
(Not_A_Root_Type_Definition,
A_Root_Integer_Definition,
A_Root_Real_Definition,
A_Universal_Integer_Definition,
A_Universal_Real_Definition,
A_Universal_Fixed_Definition)
with Convention => C; -- a_nodes.h:879
subtype Root_Type_Kinds is u_Root_Type_Kinds; -- a_nodes.h:886
type u_Discrete_Range_Kinds is
(Not_A_Discrete_Range,
A_Discrete_Subtype_Indication,
A_Discrete_Range_Attribute_Reference,
A_Discrete_Simple_Expression_Range)
with Convention => C; -- a_nodes.h:888
subtype Discrete_Range_Kinds is u_Discrete_Range_Kinds; -- a_nodes.h:893
type u_Formal_Type_Kinds is
(Not_A_Formal_Type_Definition,
A_Formal_Private_Type_Definition,
A_Formal_Tagged_Private_Type_Definition,
A_Formal_Derived_Type_Definition,
A_Formal_Discrete_Type_Definition,
A_Formal_Signed_Integer_Type_Definition,
A_Formal_Modular_Type_Definition,
A_Formal_Floating_Point_Definition,
A_Formal_Ordinary_Fixed_Point_Definition,
A_Formal_Decimal_Fixed_Point_Definition,
A_Formal_Interface_Type_Definition,
A_Formal_Unconstrained_Array_Definition,
A_Formal_Constrained_Array_Definition,
A_Formal_Access_Type_Definition)
with Convention => C; -- a_nodes.h:895
subtype Formal_Type_Kinds is u_Formal_Type_Kinds; -- a_nodes.h:915
type u_Access_Type_Kinds is
(Not_An_Access_Type_Definition,
A_Pool_Specific_Access_To_Variable,
An_Access_To_Variable,
An_Access_To_Constant,
An_Access_To_Procedure,
An_Access_To_Protected_Procedure,
An_Access_To_Function,
An_Access_To_Protected_Function)
with Convention => C; -- a_nodes.h:917
subtype Access_Type_Kinds is u_Access_Type_Kinds; -- a_nodes.h:926
type u_Access_Definition_Kinds is
(Not_An_Access_Definition,
An_Anonymous_Access_To_Variable,
An_Anonymous_Access_To_Constant,
An_Anonymous_Access_To_Procedure,
An_Anonymous_Access_To_Protected_Procedure,
An_Anonymous_Access_To_Function,
An_Anonymous_Access_To_Protected_Function)
with Convention => C; -- a_nodes.h:928
subtype Access_Definition_Kinds is u_Access_Definition_Kinds; -- a_nodes.h:936
type u_Access_Type_Struct is record
Access_Type_Kind : aliased Access_Type_Kinds; -- a_nodes.h:939
Has_Null_Exclusion : aliased Extensions.bool; -- a_nodes.h:940
Is_Not_Null_Return : aliased Extensions.bool; -- a_nodes.h:944
Access_To_Object_Definition : aliased Subtype_Indication; -- a_nodes.h:948
Access_To_Subprogram_Parameter_Profile : aliased Parameter_Specification_List; -- a_nodes.h:953
Access_To_Function_Result_Profile : aliased Element_ID; -- a_nodes.h:956
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:938
subtype Access_Type_Struct is u_Access_Type_Struct; -- a_nodes.h:957
type u_Type_Definition_Struct is record
Type_Kind : aliased Type_Kinds; -- a_nodes.h:960
Has_Abstract : aliased Extensions.bool; -- a_nodes.h:961
Has_Limited : aliased Extensions.bool; -- a_nodes.h:962
Has_Private : aliased Extensions.bool; -- a_nodes.h:963
Corresponding_Type_Operators : aliased Declaration_List; -- a_nodes.h:964
Has_Protected : aliased Extensions.bool; -- a_nodes.h:967
Has_Synchronized : aliased Extensions.bool; -- a_nodes.h:968
Has_Tagged : aliased Extensions.bool; -- a_nodes.h:970
Has_Task : aliased Extensions.bool; -- a_nodes.h:972
Has_Null_Exclusion : aliased Extensions.bool; -- a_nodes.h:977
Interface_Kind : aliased Interface_Kinds; -- a_nodes.h:979
Root_Type_Kind : aliased Root_Type_Kinds; -- a_nodes.h:981
Parent_Subtype_Indication : aliased Subtype_Indication; -- a_nodes.h:984
Record_Definition : aliased Definition; -- a_nodes.h:988
Implicit_Inherited_Declarations : aliased Declaration_List; -- a_nodes.h:991
Implicit_Inherited_Subprograms : aliased Declaration_List; -- a_nodes.h:992
Corresponding_Parent_Subtype : aliased Declaration; -- a_nodes.h:993
Corresponding_Root_Type : aliased Declaration; -- a_nodes.h:994
Corresponding_Type_Structure : aliased Declaration; -- a_nodes.h:995
Enumeration_Literal_Declarations : aliased Declaration_List; -- a_nodes.h:997
Integer_Constraint : aliased Range_Constraint; -- a_nodes.h:999
Mod_Static_Expression : aliased Expression; -- a_nodes.h:1001
Digits_Expression : aliased Expression; -- a_nodes.h:1004
Delta_Expression : aliased Expression; -- a_nodes.h:1007
Real_Range_Constraint : aliased Range_Constraint; -- a_nodes.h:1011
Index_Subtype_Definitions : aliased Expression_List; -- a_nodes.h:1013
Discrete_Subtype_Definitions : aliased Expression_List; -- a_nodes.h:1015
Array_Component_Definition : aliased Component_Definition; -- a_nodes.h:1018
Definition_Interface_List : aliased Expression_List; -- a_nodes.h:1021
Access_Type : aliased Access_Type_Struct; -- a_nodes.h:1023
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:959
subtype Type_Definition_Struct is u_Type_Definition_Struct; -- a_nodes.h:1024
type u_Subtype_Indication_Struct is record
Has_Null_Exclusion : aliased Extensions.bool; -- a_nodes.h:1027
Subtype_Mark : aliased Expression; -- a_nodes.h:1028
Subtype_Constraint : aliased Constraint; -- a_nodes.h:1029
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1026
subtype Subtype_Indication_Struct is u_Subtype_Indication_Struct; -- a_nodes.h:1030
type u_Constraint_Struct is record
Constraint_Kind : aliased Constraint_Kinds; -- a_nodes.h:1033
Digits_Expression : aliased Expression; -- a_nodes.h:1036
Delta_Expression : aliased Expression; -- a_nodes.h:1038
Real_Range_Constraint : aliased Range_Constraint; -- a_nodes.h:1041
Lower_Bound : aliased Expression; -- a_nodes.h:1043
Upper_Bound : aliased Expression; -- a_nodes.h:1044
Range_Attribute : aliased Expression; -- a_nodes.h:1046
Discrete_Ranges : aliased Discrete_Range_List; -- a_nodes.h:1048
Discriminant_Associations : aliased Discriminant_Association_List; -- a_nodes.h:1050
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1032
subtype Constraint_Struct is u_Constraint_Struct; -- a_nodes.h:1051
type u_Component_Definition_Struct is record
Component_Definition_View : aliased Definition; -- a_nodes.h:1054
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1053
subtype Component_Definition_Struct is u_Component_Definition_Struct; -- a_nodes.h:1055
type u_Discrete_Subtype_Definition_Struct is record
Discrete_Range_Kind : aliased Discrete_Range_Kinds; -- a_nodes.h:1058
Subtype_Mark : aliased Expression; -- a_nodes.h:1061
Subtype_Constraint : aliased Constraint; -- a_nodes.h:1062
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1057
subtype Discrete_Subtype_Definition_Struct is u_Discrete_Subtype_Definition_Struct; -- a_nodes.h:1063
type u_Discrete_Range_Struct is record
Discrete_Range_Kind : aliased Discrete_Range_Kinds; -- a_nodes.h:1066
Subtype_Mark : aliased Expression; -- a_nodes.h:1069
Subtype_Constraint : aliased Constraint; -- a_nodes.h:1070
Lower_Bound : aliased Expression; -- a_nodes.h:1072
Upper_Bound : aliased Expression; -- a_nodes.h:1073
Range_Attribute : aliased Expression; -- a_nodes.h:1075
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1065
subtype Discrete_Range_Struct is u_Discrete_Range_Struct; -- a_nodes.h:1076
type u_Known_Discriminant_Part_Struct is record
Discriminants : aliased Discriminant_Specification_List; -- a_nodes.h:1079
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1078
subtype Known_Discriminant_Part_Struct is u_Known_Discriminant_Part_Struct; -- a_nodes.h:1080
type u_Record_Definition_Struct is record
Record_Components : aliased Record_Component_List; -- a_nodes.h:1083
Implicit_Components : aliased Record_Component_List; -- a_nodes.h:1084
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1082
subtype Record_Definition_Struct is u_Record_Definition_Struct; -- a_nodes.h:1085
type u_Variant_Part_Struct is record
Discriminant_Direct_Name : aliased Name; -- a_nodes.h:1088
Variants : aliased Variant_List; -- a_nodes.h:1089
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1087
subtype Variant_Part_Struct is u_Variant_Part_Struct; -- a_nodes.h:1090
type u_Variant_Struct is record
Record_Components : aliased Record_Component_List; -- a_nodes.h:1093
Implicit_Components : aliased Record_Component_List; -- a_nodes.h:1094
Variant_Choices : aliased Element_ID_List; -- a_nodes.h:1095
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1092
subtype Variant_Struct is u_Variant_Struct; -- a_nodes.h:1096
type u_Access_Definition_Struct is record
Access_Definition_Kind : aliased Access_Definition_Kinds; -- a_nodes.h:1099
Has_Null_Exclusion : aliased Extensions.bool; -- a_nodes.h:1100
Is_Not_Null_Return : aliased Extensions.bool; -- a_nodes.h:1104
Anonymous_Access_To_Object_Subtype_Mark : aliased Expression; -- a_nodes.h:1107
Access_To_Subprogram_Parameter_Profile : aliased Parameter_Specification_List; -- a_nodes.h:1112
Access_To_Function_Result_Profile : aliased Element_ID; -- a_nodes.h:1115
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1098
subtype Access_Definition_Struct is u_Access_Definition_Struct; -- a_nodes.h:1116
type u_Private_Type_Definition_Struct is record
Has_Abstract : aliased Extensions.bool; -- a_nodes.h:1119
Has_Limited : aliased Extensions.bool; -- a_nodes.h:1120
Has_Private : aliased Extensions.bool; -- a_nodes.h:1121
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1118
subtype Private_Type_Definition_Struct is u_Private_Type_Definition_Struct; -- a_nodes.h:1122
type u_Tagged_Private_Type_Definition_Struct is record
Has_Abstract : aliased Extensions.bool; -- a_nodes.h:1125
Has_Limited : aliased Extensions.bool; -- a_nodes.h:1126
Has_Private : aliased Extensions.bool; -- a_nodes.h:1127
Has_Tagged : aliased Extensions.bool; -- a_nodes.h:1128
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1124
subtype Tagged_Private_Type_Definition_Struct is u_Tagged_Private_Type_Definition_Struct; -- a_nodes.h:1129
type u_Private_Extension_Definition_Struct is record
Has_Abstract : aliased Extensions.bool; -- a_nodes.h:1132
Has_Limited : aliased Extensions.bool; -- a_nodes.h:1133
Has_Private : aliased Extensions.bool; -- a_nodes.h:1134
Has_Synchronized : aliased Extensions.bool; -- a_nodes.h:1135
Implicit_Inherited_Declarations : aliased Declaration_List; -- a_nodes.h:1136
Implicit_Inherited_Subprograms : aliased Declaration_List; -- a_nodes.h:1137
Definition_Interface_List : aliased Expression_List; -- a_nodes.h:1138
Ancestor_Subtype_Indication : aliased Subtype_Indication; -- a_nodes.h:1139
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1131
subtype Private_Extension_Definition_Struct is u_Private_Extension_Definition_Struct; -- a_nodes.h:1140
type u_Task_Definition_Struct is record
Has_Task : aliased Extensions.bool; -- a_nodes.h:1143
Visible_Part_Items : aliased Declarative_Item_List; -- a_nodes.h:1144
Private_Part_Items : aliased Declarative_Item_List; -- a_nodes.h:1145
Is_Private_Present : aliased Extensions.bool; -- a_nodes.h:1146
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1142
subtype Task_Definition_Struct is u_Task_Definition_Struct; -- a_nodes.h:1147
type u_Protected_Definition_Struct is record
Has_Protected : aliased Extensions.bool; -- a_nodes.h:1150
Visible_Part_Items : aliased Declarative_Item_List; -- a_nodes.h:1151
Private_Part_Items : aliased Declarative_Item_List; -- a_nodes.h:1152
Is_Private_Present : aliased Extensions.bool; -- a_nodes.h:1153
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1149
subtype Protected_Definition_Struct is u_Protected_Definition_Struct; -- a_nodes.h:1154
type u_Formal_Type_Definition_Struct is record
Formal_Type_Kind : aliased Formal_Type_Kinds; -- a_nodes.h:1157
Corresponding_Type_Operators : aliased Declaration_List; -- a_nodes.h:1158
Has_Abstract : aliased Extensions.bool; -- a_nodes.h:1163
Has_Limited : aliased Extensions.bool; -- a_nodes.h:1164
Has_Private : aliased Extensions.bool; -- a_nodes.h:1167
Has_Synchronized : aliased Extensions.bool; -- a_nodes.h:1169
Has_Tagged : aliased Extensions.bool; -- a_nodes.h:1171
Interface_Kind : aliased Interface_Kinds; -- a_nodes.h:1173
Implicit_Inherited_Declarations : aliased Declaration_List; -- a_nodes.h:1175
Implicit_Inherited_Subprograms : aliased Declaration_List; -- a_nodes.h:1176
Index_Subtype_Definitions : aliased Expression_List; -- a_nodes.h:1178
Discrete_Subtype_Definitions : aliased Expression_List; -- a_nodes.h:1180
Array_Component_Definition : aliased Component_Definition; -- a_nodes.h:1183
Subtype_Mark : aliased Expression; -- a_nodes.h:1185
Definition_Interface_List : aliased Expression_List; -- a_nodes.h:1188
Access_Type : aliased Access_Type_Struct; -- a_nodes.h:1190
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1156
subtype Formal_Type_Definition_Struct is u_Formal_Type_Definition_Struct; -- a_nodes.h:1191
type u_Aspect_Specification_Struct is record
Aspect_Mark : aliased Element_ID; -- a_nodes.h:1194
Aspect_Definition : aliased Element_ID; -- a_nodes.h:1195
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1193
subtype Aspect_Specification_Struct is u_Aspect_Specification_Struct; -- a_nodes.h:1196
subtype No_Struct is int; -- a_nodes.h:1198
subtype Unknown_Discriminant_Part_Struct is No_Struct; -- a_nodes.h:1199
subtype Null_Record_Definition_Struct is No_Struct; -- a_nodes.h:1200
subtype Null_Component_Struct is No_Struct; -- a_nodes.h:1201
subtype Others_Choice_Struct is No_Struct; -- a_nodes.h:1202
type u_Definition_Union (discr : unsigned := 0) is record
case discr is
when 0 =>
Dummy_Member : aliased int; -- a_nodes.h:1205
when 1 =>
The_Type_Definition : aliased Type_Definition_Struct; -- a_nodes.h:1206
when 2 =>
The_Subtype_Indication : aliased Subtype_Indication_Struct; -- a_nodes.h:1207
when 3 =>
The_Constraint : aliased Constraint_Struct; -- a_nodes.h:1208
when 4 =>
The_Component_Definition : aliased Component_Definition_Struct; -- a_nodes.h:1209
when 5 =>
The_Discrete_Subtype_Definition : aliased Discrete_Subtype_Definition_Struct; -- a_nodes.h:1210
when 6 =>
The_Discrete_Range : aliased Discrete_Range_Struct; -- a_nodes.h:1211
when 7 =>
The_Unknown_Discriminant_Part : aliased Unknown_Discriminant_Part_Struct; -- a_nodes.h:1212
when 8 =>
The_Known_Discriminant_Part : aliased Known_Discriminant_Part_Struct; -- a_nodes.h:1213
when 9 =>
The_Record_Definition : aliased Record_Definition_Struct; -- a_nodes.h:1214
when 10 =>
The_Null_Record_Definition : aliased Null_Record_Definition_Struct; -- a_nodes.h:1215
when 11 =>
The_Null_Component : aliased Null_Component_Struct; -- a_nodes.h:1216
when 12 =>
The_Variant_Part : aliased Variant_Part_Struct; -- a_nodes.h:1217
when 13 =>
The_Variant : aliased Variant_Struct; -- a_nodes.h:1218
when 14 =>
The_Others_Choice : aliased Others_Choice_Struct; -- a_nodes.h:1219
when 15 =>
The_Access_Definition : aliased Access_Definition_Struct; -- a_nodes.h:1220
when 16 =>
The_Private_Type_Definition : aliased Private_Type_Definition_Struct; -- a_nodes.h:1221
when 17 =>
The_Tagged_Private_Type_Definition : aliased Tagged_Private_Type_Definition_Struct; -- a_nodes.h:1222
when 18 =>
The_Private_Extension_Definition : aliased Private_Extension_Definition_Struct; -- a_nodes.h:1223
when 19 =>
The_Task_Definition : aliased Task_Definition_Struct; -- a_nodes.h:1224
when 20 =>
The_Protected_Definition : aliased Protected_Definition_Struct; -- a_nodes.h:1225
when 21 =>
The_Formal_Type_Definition : aliased Formal_Type_Definition_Struct; -- a_nodes.h:1226
when others =>
The_Aspect_Specification : aliased Aspect_Specification_Struct; -- a_nodes.h:1227
end case;
end record
with Convention => C_Pass_By_Copy,
Unchecked_Union => True; -- a_nodes.h:1204
subtype Definition_Union is u_Definition_Union; -- a_nodes.h:1228
type Definition_Struct is record
Definition_Kind : aliased Definition_Kinds; -- a_nodes.h:1232
The_Union : aliased Definition_Union; -- a_nodes.h:1233
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1231
type Expression_Kinds is
(Not_An_Expression,
A_Box_Expression,
An_Integer_Literal,
A_Real_Literal,
A_String_Literal,
An_Identifier,
An_Operator_Symbol,
A_Character_Literal,
An_Enumeration_Literal,
An_Explicit_Dereference,
A_Function_Call,
An_Indexed_Component,
A_Slice,
A_Selected_Component,
An_Attribute_Reference,
A_Record_Aggregate,
An_Extension_Aggregate,
A_Positional_Array_Aggregate,
A_Named_Array_Aggregate,
An_And_Then_Short_Circuit,
An_Or_Else_Short_Circuit,
An_In_Membership_Test,
A_Not_In_Membership_Test,
A_Null_Literal,
A_Parenthesized_Expression,
A_Raise_Expression,
A_Type_Conversion,
A_Qualified_Expression,
An_Allocation_From_Subtype,
An_Allocation_From_Qualified_Expression,
A_Case_Expression,
An_If_Expression,
A_For_All_Quantified_Expression,
A_For_Some_Quantified_Expression)
with Convention => C; -- a_nodes.h:1244
type Attribute_Kinds is
(Not_An_Attribute,
An_Access_Attribute,
An_Address_Attribute,
An_Adjacent_Attribute,
An_Aft_Attribute,
An_Alignment_Attribute,
A_Base_Attribute,
A_Bit_Order_Attribute,
A_Body_Version_Attribute,
A_Callable_Attribute,
A_Caller_Attribute,
A_Ceiling_Attribute,
A_Class_Attribute,
A_Component_Size_Attribute,
A_Compose_Attribute,
A_Constrained_Attribute,
A_Copy_Sign_Attribute,
A_Count_Attribute,
A_Definite_Attribute,
A_Delta_Attribute,
A_Denorm_Attribute,
A_Digits_Attribute,
An_Exponent_Attribute,
An_External_Tag_Attribute,
A_First_Attribute,
A_First_Bit_Attribute,
A_Floor_Attribute,
A_Fore_Attribute,
A_Fraction_Attribute,
An_Identity_Attribute,
An_Image_Attribute,
An_Input_Attribute,
A_Last_Attribute,
A_Last_Bit_Attribute,
A_Leading_Part_Attribute,
A_Length_Attribute,
A_Machine_Attribute,
A_Machine_Emax_Attribute,
A_Machine_Emin_Attribute,
A_Machine_Mantissa_Attribute,
A_Machine_Overflows_Attribute,
A_Machine_Radix_Attribute,
A_Machine_Rounds_Attribute,
A_Max_Attribute,
A_Max_Size_In_Storage_Elements_Attribute,
A_Min_Attribute,
A_Model_Attribute,
A_Model_Emin_Attribute,
A_Model_Epsilon_Attribute,
A_Model_Mantissa_Attribute,
A_Model_Small_Attribute,
A_Modulus_Attribute,
An_Output_Attribute,
A_Partition_ID_Attribute,
A_Pos_Attribute,
A_Position_Attribute,
A_Pred_Attribute,
A_Range_Attribute,
A_Read_Attribute,
A_Remainder_Attribute,
A_Round_Attribute,
A_Rounding_Attribute,
A_Safe_First_Attribute,
A_Safe_Last_Attribute,
A_Scale_Attribute,
A_Scaling_Attribute,
A_Signed_Zeros_Attribute,
A_Size_Attribute,
A_Small_Attribute,
A_Storage_Pool_Attribute,
A_Storage_Size_Attribute,
A_Succ_Attribute,
A_Tag_Attribute,
A_Terminated_Attribute,
A_Truncation_Attribute,
An_Unbiased_Rounding_Attribute,
An_Unchecked_Access_Attribute,
A_Val_Attribute,
A_Valid_Attribute,
A_Value_Attribute,
A_Version_Attribute,
A_Wide_Image_Attribute,
A_Wide_Value_Attribute,
A_Wide_Width_Attribute,
A_Width_Attribute,
A_Write_Attribute,
A_Machine_Rounding_Attribute,
A_Mod_Attribute,
A_Priority_Attribute,
A_Stream_Size_Attribute,
A_Wide_Wide_Image_Attribute,
A_Wide_Wide_Value_Attribute,
A_Wide_Wide_Width_Attribute,
A_Max_Alignment_For_Allocation_Attribute,
An_Overlaps_Storage_Attribute,
An_Implementation_Defined_Attribute,
An_Unknown_Attribute)
with Convention => C; -- a_nodes.h:1289
type Expression_Struct is record
Expression_Kind : aliased Expression_Kinds; -- a_nodes.h:1402
Is_Prefix_Notation : aliased Extensions.bool; -- a_nodes.h:1403
Corresponding_Expression_Type : aliased Declaration_ID; -- a_nodes.h:1404
Corresponding_Expression_Type_Definition : aliased Element_ID; -- a_nodes.h:1405
Operator_Kind : aliased Operator_Kinds; -- a_nodes.h:1409
Attribute_Kind : aliased Attribute_Kinds; -- a_nodes.h:1414
Value_Image : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:1415
Name_Image : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:1420
Corresponding_Name_Definition : aliased Defining_Name_ID; -- a_nodes.h:1421
Corresponding_Name_Definition_List : aliased Defining_Name_List; -- a_nodes.h:1422
Corresponding_Name_Declaration : aliased Element_ID; -- a_nodes.h:1423
Prefix : aliased Expression_ID; -- a_nodes.h:1430
Index_Expressions : aliased Expression_List; -- a_nodes.h:1432
Slice_Range : aliased Discrete_Range_ID; -- a_nodes.h:1434
Selector : aliased Expression_ID; -- a_nodes.h:1436
Attribute_Designator_Identifier : aliased Expression_ID; -- a_nodes.h:1438
Attribute_Designator_Expressions : aliased Expression_List; -- a_nodes.h:1447
Record_Component_Associations : aliased Association_List; -- a_nodes.h:1450
Extension_Aggregate_Expression : aliased Expression_ID; -- a_nodes.h:1452
Array_Component_Associations : aliased Association_List; -- a_nodes.h:1455
Expression_Parenthesized : aliased Expression_ID; -- a_nodes.h:1457
Is_Prefix_Call : aliased Extensions.bool; -- a_nodes.h:1459
Corresponding_Called_Function : aliased Declaration_ID; -- a_nodes.h:1462
Function_Call_Parameters : aliased Element_ID_List; -- a_nodes.h:1464
Short_Circuit_Operation_Left_Expression : aliased Expression_ID; -- a_nodes.h:1467
Short_Circuit_Operation_Right_Expression : aliased Expression_ID; -- a_nodes.h:1468
Membership_Test_Expression : aliased Expression_ID; -- a_nodes.h:1471
Membership_Test_Choices : aliased Element_ID_List; -- a_nodes.h:1472
Converted_Or_Qualified_Subtype_Mark : aliased Expression_ID; -- a_nodes.h:1475
Converted_Or_Qualified_Expression : aliased Expression_ID; -- a_nodes.h:1476
Allocator_Subtype_Indication : aliased Subtype_Indication_ID; -- a_nodes.h:1478
Allocator_Qualified_Expression : aliased Expression_ID; -- a_nodes.h:1480
Expression_Paths : aliased Expression_Path_List; -- a_nodes.h:1483
Is_Generalized_Indexing : aliased Extensions.bool; -- a_nodes.h:1485
Is_Generalized_Reference : aliased Extensions.bool; -- a_nodes.h:1487
Iterator_Specification : aliased Declaration_ID; -- a_nodes.h:1490
Predicate : aliased Expression_ID; -- a_nodes.h:1493
Subpool_Name : aliased Expression_ID; -- a_nodes.h:1496
Corresponding_Generic_Element : aliased Defining_Name_ID; -- a_nodes.h:1501
Is_Dispatching_Call : aliased Extensions.bool; -- a_nodes.h:1503
Is_Call_On_Dispatching_Operation : aliased Extensions.bool; -- a_nodes.h:1504
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1401
type Association_Kinds is
(Not_An_Association,
A_Pragma_Argument_Association,
A_Discriminant_Association,
A_Record_Component_Association,
An_Array_Component_Association,
A_Parameter_Association,
A_Generic_Association)
with Convention => C; -- a_nodes.h:1515
type Association_Struct is record
Association_Kind : aliased Association_Kinds; -- a_nodes.h:1528
Array_Component_Choices : aliased Expression_List; -- a_nodes.h:1531
Record_Component_Choices : aliased Expression_List; -- a_nodes.h:1533
Component_Expression : aliased Expression_ID; -- a_nodes.h:1536
Formal_Parameter : aliased Expression_ID; -- a_nodes.h:1540
Actual_Parameter : aliased Expression_ID; -- a_nodes.h:1541
Discriminant_Selector_Names : aliased Expression_List; -- a_nodes.h:1543
Discriminant_Expression : aliased Expression_ID; -- a_nodes.h:1544
Is_Normalized : aliased Extensions.bool; -- a_nodes.h:1549
Is_Defaulted_Association : aliased Extensions.bool; -- a_nodes.h:1553
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1527
type Statement_Kinds is
(Not_A_Statement,
A_Null_Statement,
An_Assignment_Statement,
An_If_Statement,
A_Case_Statement,
A_Loop_Statement,
A_While_Loop_Statement,
A_For_Loop_Statement,
A_Block_Statement,
An_Exit_Statement,
A_Goto_Statement,
A_Procedure_Call_Statement,
A_Return_Statement,
An_Extended_Return_Statement,
An_Accept_Statement,
An_Entry_Call_Statement,
A_Requeue_Statement,
A_Requeue_Statement_With_Abort,
A_Delay_Until_Statement,
A_Delay_Relative_Statement,
A_Terminate_Alternative_Statement,
A_Selective_Accept_Statement,
A_Timed_Entry_Call_Statement,
A_Conditional_Entry_Call_Statement,
An_Asynchronous_Select_Statement,
An_Abort_Statement,
A_Raise_Statement,
A_Code_Statement)
with Convention => C; -- a_nodes.h:1564
type Statement_Struct is record
Statement_Kind : aliased Statement_Kinds; -- a_nodes.h:1601
Corresponding_Pragmas : aliased Pragma_Element_ID_List; -- a_nodes.h:1602
Label_Names : aliased Defining_Name_List; -- a_nodes.h:1603
Is_Prefix_Notation : aliased Extensions.bool; -- a_nodes.h:1607
Pragmas : aliased Pragma_Element_ID_List; -- a_nodes.h:1614
Corresponding_End_Name : aliased Element_ID; -- a_nodes.h:1620
Assignment_Variable_Name : aliased Expression_ID; -- a_nodes.h:1622
Assignment_Expression : aliased Expression_ID; -- a_nodes.h:1623
Statement_Paths : aliased Path_List; -- a_nodes.h:1630
Case_Expression : aliased Expression_ID; -- a_nodes.h:1632
Statement_Identifier : aliased Defining_Name_ID; -- a_nodes.h:1637
Is_Name_Repeated : aliased Extensions.bool; -- a_nodes.h:1641
While_Condition : aliased Expression_ID; -- a_nodes.h:1643
For_Loop_Parameter_Specification : aliased Declaration_ID; -- a_nodes.h:1645
Loop_Statements : aliased Statement_List; -- a_nodes.h:1649
Is_Declare_Block : aliased Extensions.bool; -- a_nodes.h:1651
Block_Declarative_Items : aliased Declarative_Item_List; -- a_nodes.h:1652
Block_Statements : aliased Statement_List; -- a_nodes.h:1653
Block_Exception_Handlers : aliased Exception_Handler_List; -- a_nodes.h:1654
Exit_Loop_Name : aliased Expression_ID; -- a_nodes.h:1656
Exit_Condition : aliased Expression_ID; -- a_nodes.h:1657
Corresponding_Loop_Exited : aliased Expression_ID; -- a_nodes.h:1658
Return_Expression : aliased Expression_ID; -- a_nodes.h:1660
Return_Object_Declaration : aliased Declaration_ID; -- a_nodes.h:1663
Extended_Return_Statements : aliased Statement_List; -- a_nodes.h:1664
Extended_Return_Exception_Handlers : aliased Exception_Handler_List; -- a_nodes.h:1665
Goto_Label : aliased Expression_ID; -- a_nodes.h:1667
Corresponding_Destination_Statement : aliased Statement_ID; -- a_nodes.h:1668
Called_Name : aliased Expression_ID; -- a_nodes.h:1671
Corresponding_Called_Entity : aliased Declaration_ID; -- a_nodes.h:1672
Call_Statement_Parameters : aliased Association_List; -- a_nodes.h:1673
Accept_Entry_Index : aliased Expression_ID; -- a_nodes.h:1676
Accept_Entry_Direct_Name : aliased Name_ID; -- a_nodes.h:1677
Accept_Parameters : aliased Parameter_Specification_List; -- a_nodes.h:1679
Accept_Body_Statements : aliased Statement_List; -- a_nodes.h:1680
Accept_Body_Exception_Handlers : aliased Statement_List; -- a_nodes.h:1681
Corresponding_Entry : aliased Declaration_ID; -- a_nodes.h:1682
Requeue_Entry_Name : aliased Name_ID; -- a_nodes.h:1685
Delay_Expression : aliased Expression_ID; -- a_nodes.h:1688
Aborted_Tasks : aliased Expression_List; -- a_nodes.h:1690
Raised_Exception : aliased Expression_ID; -- a_nodes.h:1692
Associated_Message : aliased Expression_ID; -- a_nodes.h:1693
Qualified_Expression : aliased Expression_ID; -- a_nodes.h:1695
Is_Dispatching_Call : aliased Extensions.bool; -- a_nodes.h:1697
Is_Call_On_Dispatching_Operation : aliased Extensions.bool; -- a_nodes.h:1698
Corresponding_Called_Entity_Unwound : aliased Declaration; -- a_nodes.h:1701
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1600
type Path_Kinds is
(Not_A_Path,
An_If_Path,
An_Elsif_Path,
An_Else_Path,
A_Case_Path,
A_Select_Path,
An_Or_Path,
A_Then_Abort_Path,
A_Case_Expression_Path,
An_If_Expression_Path,
An_Elsif_Expression_Path,
An_Else_Expression_Path)
with Convention => C; -- a_nodes.h:1712
type Path_Struct is record
Path_Kind : aliased Path_Kinds; -- a_nodes.h:1768
Sequence_Of_Statements : aliased Statement_List; -- a_nodes.h:1769
Dependent_Expression : aliased Expression; -- a_nodes.h:1770
Condition_Expression : aliased Expression_ID; -- a_nodes.h:1775
Case_Path_Alternative_Choices : aliased Element_ID_List; -- a_nodes.h:1778
Guard : aliased Expression_ID; -- a_nodes.h:1781
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1767
type Clause_Kinds is
(Not_A_Clause,
A_Use_Package_Clause,
A_Use_Type_Clause,
A_Use_All_Type_Clause,
A_With_Clause,
A_Representation_Clause,
A_Component_Clause)
with Convention => C; -- a_nodes.h:1792
type u_Representation_Clause_Kinds is
(Not_A_Representation_Clause,
An_Attribute_Definition_Clause,
An_Enumeration_Representation_Clause,
A_Record_Representation_Clause,
An_At_Clause)
with Convention => C; -- a_nodes.h:1804
subtype Representation_Clause_Kinds is u_Representation_Clause_Kinds; -- a_nodes.h:1810
type u_Representation_Clause_Struct is record
Representation_Clause_Kind : aliased Representation_Clause_Kinds; -- a_nodes.h:1813
Representation_Clause_Name : aliased Name; -- a_nodes.h:1814
Pragmas : aliased Pragma_Element_ID_List; -- a_nodes.h:1818
Representation_Clause_Expression : aliased Expression; -- a_nodes.h:1822
Mod_Clause_Expression : aliased Expression; -- a_nodes.h:1824
Component_Clauses : aliased Component_Clause_List; -- a_nodes.h:1825
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1812
subtype Representation_Clause_Struct is u_Representation_Clause_Struct; -- a_nodes.h:1826
type Clause_Struct is record
Clause_Kind : aliased Clause_Kinds; -- a_nodes.h:1830
Has_Limited : aliased Extensions.bool; -- a_nodes.h:1833
Clause_Names : aliased Name_List; -- a_nodes.h:1838
Representation_Clause_Name : aliased Name_ID; -- a_nodes.h:1840
Representation_Clause_Expression : aliased Expression_ID; -- a_nodes.h:1841
Mod_Clause_Expression : aliased Expression_ID; -- a_nodes.h:1842
Component_Clauses : aliased Element_ID_List; -- a_nodes.h:1843
Component_Clause_Position : aliased Expression_ID; -- a_nodes.h:1844
Component_Clause_Range : aliased Element_ID; -- a_nodes.h:1845
Representation_Clause : aliased Representation_Clause_Struct; -- a_nodes.h:1848
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1829
type Exception_Handler_Struct is record
Pragmas : aliased Pragma_Element_ID_List; -- a_nodes.h:1864
Choice_Parameter_Specification : aliased Declaration_ID; -- a_nodes.h:1865
Exception_Choices : aliased Element_ID_List; -- a_nodes.h:1866
Handler_Statements : aliased Statement_List; -- a_nodes.h:1867
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1863
type Element_Union (discr : unsigned := 0) is record
case discr is
when 0 =>
Dummy_Member : aliased int; -- a_nodes.h:1880
when 1 =>
The_Pragma : aliased Pragma_Struct; -- a_nodes.h:1881
when 2 =>
Defining_Name : aliased Defining_Name_Struct; -- a_nodes.h:1882
when 3 =>
Declaration : aliased Declaration_Struct; -- a_nodes.h:1883
when 4 =>
Definition : aliased Definition_Struct; -- a_nodes.h:1884
when 5 =>
Expression : aliased Expression_Struct; -- a_nodes.h:1885
when 6 =>
Association : aliased Association_Struct; -- a_nodes.h:1886
when 7 =>
Statement : aliased Statement_Struct; -- a_nodes.h:1887
when 8 =>
Path : aliased Path_Struct; -- a_nodes.h:1888
when 9 =>
Clause : aliased Clause_Struct; -- a_nodes.h:1889
when others =>
Exception_Handler : aliased Exception_Handler_Struct; -- a_nodes.h:1890
end case;
end record
with Convention => C_Pass_By_Copy,
Unchecked_Union => True; -- a_nodes.h:1879
type Enclosing_Kinds is
(Not_Enclosing,
Enclosing_Element,
Enclosing_Unit)
with Convention => C; -- a_nodes.h:1893
type Source_Location_Struct is record
Unit_Name : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:1901
First_Line : aliased int; -- a_nodes.h:1902
First_Column : aliased int; -- a_nodes.h:1903
Last_Line : aliased int; -- a_nodes.h:1904
Last_Column : aliased int; -- a_nodes.h:1905
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1900
subtype Unit_ID is int; -- a_nodes.h:1909
type u_Element_Struct is record
ID : aliased Element_ID; -- a_nodes.h:1913
Element_Kind : aliased Element_Kinds; -- a_nodes.h:1914
Enclosing_Compilation_Unit : aliased Unit_ID; -- a_nodes.h:1915
Is_Part_Of_Implicit : aliased Extensions.bool; -- a_nodes.h:1916
Is_Part_Of_Inherited : aliased Extensions.bool; -- a_nodes.h:1917
Is_Part_Of_Instance : aliased Extensions.bool; -- a_nodes.h:1918
Hash : aliased ASIS_Integer; -- a_nodes.h:1919
Enclosing_Element_ID : aliased Element_ID; -- a_nodes.h:1920
Enclosing_Kind : aliased Enclosing_Kinds; -- a_nodes.h:1921
Source_Location : aliased Source_Location_Struct; -- a_nodes.h:1922
Debug_Image : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:1923
The_Union : aliased Element_Union; -- a_nodes.h:1924
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1912
subtype Element_Struct is u_Element_Struct; -- a_nodes.h:1925
type Unit_ID_Ptr is access all Unit_ID; -- a_nodes.h:1935
type Unit_ID_Array_Struct is record
Length : aliased int; -- a_nodes.h:1940
IDs : Unit_ID_Ptr; -- a_nodes.h:1941
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:1939
subtype Unit_List is Unit_ID_Array_Struct; -- a_nodes.h:1943
type Unit_Kinds is
(Not_A_Unit,
A_Procedure,
A_Function,
A_Package,
A_Generic_Procedure,
A_Generic_Function,
A_Generic_Package,
A_Procedure_Instance,
A_Function_Instance,
A_Package_Instance,
A_Procedure_Renaming,
A_Function_Renaming,
A_Package_Renaming,
A_Generic_Procedure_Renaming,
A_Generic_Function_Renaming,
A_Generic_Package_Renaming,
A_Procedure_Body,
A_Function_Body,
A_Package_Body,
A_Procedure_Body_Subunit,
A_Function_Body_Subunit,
A_Package_Body_Subunit,
A_Task_Body_Subunit,
A_Protected_Body_Subunit,
A_Nonexistent_Declaration,
A_Nonexistent_Body,
A_Configuration_Compilation,
An_Unknown_Unit)
with Convention => C; -- a_nodes.h:1945
type Unit_Classes is
(Not_A_Class,
A_Public_Declaration,
A_Public_Body,
A_Public_Declaration_And_Body,
A_Private_Declaration,
A_Private_Body,
A_Separate_Body)
with Convention => C; -- a_nodes.h:2012
type Unit_Origins is
(Not_An_Origin,
A_Predefined_Unit,
An_Implementation_Unit,
An_Application_Unit)
with Convention => C; -- a_nodes.h:2033
type u_Unit_Struct is record
ID : aliased Unit_ID; -- a_nodes.h:2053
Unit_Kind : aliased Unit_Kinds; -- a_nodes.h:2054
Unit_Class : aliased Unit_Classes; -- a_nodes.h:2055
Unit_Origin : aliased Unit_Origins; -- a_nodes.h:2056
Unit_Full_Name : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:2057
Unique_Name : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:2058
Exists : aliased Extensions.bool; -- a_nodes.h:2059
Can_Be_Main_Program : aliased Extensions.bool; -- a_nodes.h:2060
Is_Body_Required : aliased Extensions.bool; -- a_nodes.h:2061
Text_Name : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:2062
Text_Form : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:2063
Object_Name : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:2064
Object_Form : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:2065
Compilation_Command_Line_Options : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:2066
Debug_Image : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:2067
Unit_Declaration : aliased Declaration_ID; -- a_nodes.h:2068
Context_Clause_Elements : aliased Context_Clause_List; -- a_nodes.h:2069
Compilation_Pragmas : aliased Pragma_Element_ID_List; -- a_nodes.h:2070
Is_Standard : aliased Extensions.bool; -- a_nodes.h:2071
Corresponding_Children : aliased Unit_List; -- a_nodes.h:2077
Corresponding_Parent_Declaration : aliased Unit_ID; -- a_nodes.h:2096
Corresponding_Declaration : aliased Unit_ID; -- a_nodes.h:2101
Corresponding_Body : aliased Unit_ID; -- a_nodes.h:2109
Subunits : aliased Unit_List; -- a_nodes.h:2118
Corresponding_Subunit_Parent_Body : aliased Unit_ID; -- a_nodes.h:2124
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:2052
subtype Unit_Struct is u_Unit_Struct; -- a_nodes.h:2125
type u_Context_Struct is record
name : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:2135
parameters : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:2136
debug_image : Interfaces.C.Strings.chars_ptr; -- a_nodes.h:2137
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:2134
subtype Context_Struct is u_Context_Struct; -- a_nodes.h:2138
type u_Unit_Struct_List_Struct;
type u_Unit_Struct_List_Struct is record
Unit : aliased Unit_Struct; -- a_nodes.h:2145
Next : access u_Unit_Struct_List_Struct; -- a_nodes.h:2146
Next_Count : aliased int; -- a_nodes.h:2147
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:2144
subtype Unit_Struct_List_Struct is u_Unit_Struct_List_Struct; -- a_nodes.h:2148
type Unit_Structs_Ptr is access all Unit_Struct_List_Struct; -- a_nodes.h:2150
type u_Element_Struct_List_Struct;
type u_Element_Struct_List_Struct is record
Element : aliased Element_Struct; -- a_nodes.h:2153
Next : access u_Element_Struct_List_Struct; -- a_nodes.h:2154
Next_Count : aliased int; -- a_nodes.h:2155
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:2152
subtype Element_Struct_List_Struct is u_Element_Struct_List_Struct; -- a_nodes.h:2156
type Element_Structs_Ptr is access all Element_Struct_List_Struct; -- a_nodes.h:2158
type u_Nodes_Struct is record
Context : aliased Context_Struct; -- a_nodes.h:2161
Units : Unit_Structs_Ptr; -- a_nodes.h:2162
Elements : Element_Structs_Ptr; -- a_nodes.h:2163
end record
with Convention => C_Pass_By_Copy; -- a_nodes.h:2160
subtype Nodes_Struct is u_Nodes_Struct; -- a_nodes.h:2164
end a_nodes_h;
|
work/ff3_field_window_driver.asm | ypyp-pprn-mnmn/ff3_hack | 4 | 1304 | ; encoding: utf-8
; ff3_field_window_driver.asm
;
; description:
; replaces field::draw_window_box($3f:ed02) related codes.
; this file implements 'driver'-like logics,
; which drives underlying functions to show up windows on screen.
; these logics are originally placed around $3f:eb2d - $3f:eefa.
;
; version:
; 0.2.0
;==================================================================================================
ff3_field_window_driver_begin:
;--------------------------------------------------------------------------------------------------
.ifdef _OPTIMIZE_FIELD_WINDOW
INIT_PATCH_EX field.window.driver, $3f, $eb2d, $eefa, $eb2d
;------------------------------------------------------------------------------------------------------
;;$3f:ecfa field::draw_in_place_window
;; typically called when object's message is to be shown
;;callers:
;; $3f:ec8d field::show_window (original implementation only)
;; $3f:ec83 field::show_message_UNKNOWN
field.draw_inplace_window:
;; patch out external callers {
;;}
DECLARE_WINDOW_VARIABLES
;.window_id = $96
sta <.window_type
lda #0
sta <.a_button_down ;<$24
sta <.b_button_down ;<$25
;;originally fall through to $3f:ed02 field::draw_window_box
FALL_THROUGH_TO field.draw_window_box
;VERIFY_PC $ed02
;------------------------------------------------------------------------------------------------------
;;$3f:ed02 field::draw_window_box
;; This logic plays key role in drawing window, both for menu windows and in-place windows.
;; Usually window drawing is performed as follows:
;; 1) Call this logic to fill in background with window parts
;; and setup BG attributes if necessary (the in-palce window case).
;; In cases of the menu window, BG attributes have alreday been setup in another logic
;; and should not be changed.
;; 2) Subsequently call other drawing logics which overwrites background with
;; content (aka string) in the window, 2 consecutive window rows,
;; which is equivalent to 1 text line, per 1 frame.
;; These logics rely on window metrics variables, which is initially setup on this logic,
;; and they don't change BG attributes anyway.
;;NOTEs:
;; in the scope of this logic, it is safe to use the address range $0780-$07ff (inclusive) in a destructive way.
;; The original code uses this area as temporary buffer for rendering purporses
;; and discards its contents on exit.
;; more specifically, address are utilized as follows:
;; $0780-$07bf: used for PPU name table buffer,
;; $07c0-$07cf: used for PPU attr table buffer,
;; $07d0-$07ff: used for 3-tuple of array that in each entry defines
;; (vram address(high&low), value to tranfer)
;;callers:
;; 1E:8EFD:20 02 ED JSR field::draw_window_box @ $3c:8ef5 ?; window_type = 0
;; 1E:8F0E:20 02 ED JSR field::draw_window_box @ $3c:8f04 ?; window_type = 1
;; 1E:8FD5:20 02 ED JSR field::draw_window_box @ $3c:8fd1 ?; window_type = 3
;; 1E:90B1:20 02 ED JSR field::draw_window_box @ $3c:90ad ?; window_type = 2
;; 1E:AAF4:4C 02 ED JMP field::draw_window_box @ $3d:aaf1 field::draw_menu_window_box
;; (by falling through) @$3f:ecfa field::draw_in_place_window
field.draw_window_box: ;;$ed02
;; patch out external callers {
FIX_ADDR_ON_CALLER $3c,$8efd+1
FIX_ADDR_ON_CALLER $3c,$8f0e+1
FIX_ADDR_ON_CALLER $3c,$8fd5+1
FIX_ADDR_ON_CALLER $3c,$90b1+1
FIX_ADDR_ON_CALLER $3d,$aaf4+1
;;}
;;[in]
.window_type = $96
ldx <.window_type
jsr field.get_window_region ;$ed61
field_x.draw_window_box_with_region:
DECLARE_WINDOW_VARIABLES
;; ---
.ifdef _FEATURE_DEFERRED_RENDERING
jsr field_x.shrink_window_metrics
;; notes:
;; initializing renderer here will interfere with `menu.erase_box_from_bottom`
;; and may result in glitches on screen or even worse, crashing the game.
;; it is necessary to tell the renderer to draw border in somewhere before rendering,
;; but doing it here is not reliable as it can't be assumed that
;; rendering of a box and its contents is always tightly coupled.
;; there exists cases out-of-order execution of the following:
;; 1. render a box
;; 2. erase a box (possibly not the same as #1)
;; 3. render contents in a box (possibly not the same as #1)
;; thus, it is deliberately chosen not to make the init here.
jsr field_x.begin_ppu_update
jsr field_x.end_ppu_update
jmp field.restore_banks ;$ecf5
.else ;;_FEATURE_DEFERRED_RENDERING
lda <.window_top ; ED07 A5 39
sta <.offset_y ; ED09 85 3B
jsr field.calc_draw_width_and_init_window_tile_buffer; ED0B 20 70 F6
jsr field.init_window_attr_buffer ; ED0E 20 56 ED
lda <.window_height ; ED11 A5 3D
sec ; ED13 38
sbc #$02 ; ED14 E9 02
pha ; ED16 48
jsr field.get_window_top_tiles ; ED17 20 F6 ED
jsr field.draw_window_row ; ED1A 20 C6 ED
pla ; ED1D 68
sec ; ED1E 38
sbc #$02 ; ED1F E9 02
beq .render_bottom ; ED21 F0 18
bcs .render_body ; ED23 B0 05
dec <.offset_y ; ED25 C6 3B
jmp .render_bottom ; ED27 4C 3B ED
.render_body:
pha ; ED2A 48
jsr field.get_window_middle_tiles ; ED2B 20 1D EE
jsr field.draw_window_row ; ED2E 20 C6 ED
pla ; ED31 68
sec ; ED32 38
sbc #$02 ; ED33 E9 02
beq .render_bottom ; ED35 F0 04
bcs .render_body ; ED37 B0 F1
dec <.offset_y ; ED39 C6 3B
.render_bottom:
jsr field.get_window_bottom_tiles ; ED3B 20 3E EE
jsr field.draw_window_row ; ED3E 20 C6 ED
inc <.window_left ; ED41 E6 38
inc <.window_top ; ED43 E6 39
lda <.window_width ; ED45 A5 3C
sec ; ED47 38
sbc #$02 ; ED48 E9 02
sta <.window_width ; ED4A 85 3C
lda <.window_height ; ED4C A5 3D
sec ; ED4E 38
sbc #$02 ; ED4F E9 02
sta <.window_height ; ED51 85 3D
jmp field.restore_banks ; ED53 4C F5 EC
.endif ;;_FEATURE_DEFERRED_RENDERING
;VERIFY_PC $ed56
;--------------------------------------------------------------------------------------------------
;INIT_PATCH $3f,$edc6,$ede1
.ifndef _FEATURE_DEFERRED_RENDERING
field.draw_window_row: ;;$3f:edc6 field::draw_window_row
;;callers:
;; $3f:ece5 field::draw_window_top
;; $3f:ed02 field::draw_window_box (only the original implementation)
DECLARE_WINDOW_VARIABLES
lda <.window_width
sta <.output_index
jsr field.update_window_attr_buff ;$c98f
jsr field_x.begin_ppu_update
jsr field.upload_window_content ;$f6aa
jsr field.set_bg_attr_for_window ;$c9a9
;;fall through.
.endif ;;_FEATURE_DEFERRED_RENDERING
;--------------------------------------------------------------------------------------------------
field_x.end_ppu_update:
jsr field.sync_ppu_scroll ;$ede1
jmp field.call_sound_driver ;$c750
field_x.begin_ppu_update:
jsr waitNmiBySetHandler ;$ff00
jmp ppud.do_sprite_dma
;VERIFY_PC $ede1
;--------------------------------------------------------------------------------------------------
;;# $3f:eb2d field.scrolldown_item_window
;;
;;## args:
;;+ [in,out] ptr $1c: pointer to text
;;+ [in,out] ptr $3e: pointer to text
;;+ [in] u8 $93: bank number of the text
;;+ [in] u8 $a3: ?
;;+ [out] u8 $b4: ? (= 0x40(if aborted) or 0xC0(if scrolled))
;;+ [in,out] u16 ($79f0,$79f2): ?
;;+ [out] bool carry: 1: scroll aborted, 0: otherwise
;;## callers:
;;+ `1E:9255:20 2D EB JSR field.scrolldown_item_window` @
field.scrolldown_item_window: ;;$3f:eb2d
;; fixups
FIX_ADDR_ON_CALLER $3c,$9255+1 ;;@ $3c:920d menu.window3.get_input_and_scroll
;; ---
;.text_bank = $93
.p_text = $1c
.p_text_end = $3e
jsr field_x.switch_to_text_bank
ldy #0
lda [.p_text_end],y
bne field.do_scrolldown_item_window
lda #$40
FALL_THROUGH_TO field.abort_item_window_scroll
;--------------------------------------------------------------------------------------------------
;;# $3f$eb3c field.abort_item_window_scroll
;;<details>
;;
;;## args:
;;+ [in] u8 $57: bank number to restore
;;+ [out] bool carry: always 1. (scroll aborted)
;;## callers:
;;+ `1F:EBA6:4C 3C EB JMP field.abort_item_window_scroll` @ $3f$eb69 field.scrollup_item_window
;;## code:
field.abort_item_window_scroll: ;;$3f$eb3c
;; fixups
;; ---
sta <$b4
;sec ;;aborted scrolinng item window
field_x.restore_banks_with_carry_set:
;php
jsr field.restore_banks ;;note: here original implementation calls $ff03, not $ecf5
;plp
sec ;;aborted scrolinng item window
rts
;--------------------------------------------------------------------------------------------------
;;# $3f$eb43 field.do_scrolldown_item_window
;;<details>
;;
;;## args:
;;+ [out] bool carry: always 0. (= scroll successful)
;;## callers:
;;+ `1F:EB36:D0 0B BNE field.scrolldown_item_window` @ $3f$eb2d field.scrolldown_item_window
field.do_scrolldown_item_window: ;;$3f$eb43
lda <$a3
cmp #2
bne .by_line
;; ($79f0,$79f2) -= 8
sec
lda $79f0
sbc #8
sta $79f0
bcs .low_byte_only
dec $79f2
.low_byte_only:
.by_line:
jsr field.seek_text_to_next_line
field_x.reflect_item_window_scroll:
lda #$c0
sta <$b4
FALL_THROUGH_TO field.reflect_window_scroll
;--------------------------------------------------------------------------------------------------
;;# $3f$eb61 field.reflect_window_scroll
;;
;;## args:
;;+ [in] u8 $57: bank number to restore
;;+ [out] bool carry: always 0. (= scroll successful)
;;## callers:
;;+ `1E:9F92:20 61 EB JSR field.reflect_item_window_scro` @ $3c:9ec2 menu.items.main_loop
;;+ `1E:A889:4C 61 EB JMP field.reflect_item_window_scro` @ $3d:a87a menu.draw_view_of_buffered_string
;;+ `1E:B436:20 61 EB JSR field.reflect_item_window_scro`
;;+ `1E:B616:4C 61 EB JMP field.reflect_item_window_scro`
;;+ `1E:B624:4C 61 EB JMP field.reflect_item_window_scro`
;;+ `1E:BC0F:4C 61 EB JMP field.reflect_item_window_scro`
;;+ `1F:EB9F:4C 61 EB JMP field.reflect_item_window_scroll` @ $3f$eb69 field.scrollup_item_window
field_x.reflect_window_scroll_without_borders
FIX_ADDR_ON_CALLER $3c,$9f92+1 ;;@ $3c:9ec2 menu.items.main_loop
.ifdef _FEATURE_DEFERRED_RENDERING
;;note:
;; the item window could be rendered with border
;; and doing so does not impact the resulting contents.
;; however, borders takes extra 1f to render
;; and there are cases that borders cascaded
;; in different order than the original implementation would.
;; so here request to omit borders as a speed optimizaion.
;; this logic is called on both in menu mode and in floor (use item to object)
jsr render_x.init_as_no_borders
.endif
field.reflect_window_scroll: ;;$3f$eb61
;; fixups:
;FIX_ADDR_ON_CALLER $3c,$9f92+1 ;;@ $3c:9ec2 menu.items.main_loop
FIX_ADDR_ON_CALLER $3d,$a889+1 ;;@ $3d:a87a menu.draw_view_of_buffered_string
FIX_ADDR_ON_CALLER $3d,$b436+1
FIX_ADDR_ON_CALLER $3d,$b616+1
FIX_ADDR_ON_CALLER $3d,$b624+1 ;;shop, right after selected to sell item
FIX_ADDR_ON_CALLER $3d,$bc0f+1
;; ---
.ifdef _FEATURE_DEFERRED_RENDERING
;; as name entry window is solely rendered with this function,
;; it is required to default to be with border here, in order to render safely.
jsr render_x.defer_window_text_with_border
.else
jsr field.draw_string_in_window ;$eec0
.endif
;clc ;successfully scrolled the item window
;bcc field_x.restore_banks_with_status
jmp field.restore_banks ;carry will be cleared by this routine
;--------------------------------------------------------------------------------------------------
;;# $3f$eb69 field.scrollup_item_window
;;
;;## args:
;;+ [in,out] ptr $1c: pointer to text
;;+ [in] u8 $93: bank number of the text
;;+ [in] u8 $a3: ?
;;+ [out] u8 $b4: ? (= 0xc0 if scrolled, or 0x80 if aborted)
;;+ [in,out] u16 ($79f0,$79f2): ?
;;+ [out] bool carry: 1: scroll aborted, 0: scroll successful
;;## callers:
;;+ `1E:9233:20 69 EB JSR field.scrollup_item_window` @ ?
field.scrollup_item_window: ;;$3f$eb69
;; fixups:
FIX_ADDR_ON_CALLER $3c,$9233+1 ;;@ $3c:920d menu.window3.get_input_and_scroll
;; ---
.p_text = $1c
.p_text_end = $3e
;.text_bank = $93
;; ---
jsr field_x.unseek_window_text
jsr field_x.unseek_window_text
jsr field_x.switch_to_text_bank
ldy #1
lda [.p_text],y
beq .abort_scroll
jsr field.unseek_text_to_line_beginning
lda <$a3
cmp #2
bne field_x.reflect_item_window_scroll
;; ($79f0,$79f2) += 8
lda $79f0
clc
adc #8
sta $79f0
bcc field_x.reflect_item_window_scroll
inc $79f2
bcs field_x.reflect_item_window_scroll
.abort_scroll: ;$eba2
lda #$80
bne field.abort_item_window_scroll
;VERIFY_PC $eba9
;--------------------------------------------------------------------------------------------------
;INIT_PATCH $3f, $eba9, $ee9a
;;
;;# $3f:eba9 field::seek_text_to_next_line
;;<details>
;;
;;## args:
;;+ [in,out] ptr $1c: pointer to text to seek with
;;+ [out] ptr $3e: pointer to the text, pointing the beginning of next line
;;## callers:
;;+ `1F:EB5E:20 A9 EB JSR field::seek_to_next_line`
;;+ $3f:ee65 field::stream_string_in_window
;;## code:
field_x.seek_text_to_next:
.p_text = $1c
IS_PRINTABLE_CHAR
bcs field.seek_text_to_next_line ;printable.
;: skip operand value of the replacement char
inc <.p_text
bne field.seek_text_to_next_line
inc <.p_text+1
FALL_THROUGH_TO field.seek_text_to_next_line
field.seek_text_to_next_line:
;; fixup callers
;FIX_ADDR_ON_CALLER $3f,$eb5e+1
;; ---
ldy #0
field_x.find_next_eol:
.p_text = $1c
.p_out = $3e
;; ---
;.loop:
lda [.p_text],y
;; p_text++
inc <.p_text
bne .low_only
inc <.p_text+1
.low_only:
cmp #CHAR.EOL
bne field_x.seek_text_to_next
.found:
lda <.p_text
sta <.p_out
lda <.p_text+1
sta <.p_out+1
rts
;field_x.seek_window_text:
;; on exit, zero is always cleared
;; as either low byte of ptr or high byte has non-zero value after increment
;.p_text = $1c
; inc <.p_text
; bne .return
; inc <.p_text+1
;.return
; rts
;--------------------------------------------------------------------------------------------------
;;# $3f:ebd1 field::unseek_text_to_line_beginning
;;<details>
;;
;;## args:
;;+ [in,out] ptr $1c: pointer to text to seek with
;;+ [out] ptr $3e: pointer to the text, pointing the beginning of line
;;## callers:
;;+ `1F:EB81:20 D1 EB JSR field.unseek_to_line_beginning`
;;## notes:
;;used to scroll back texts, in particular when a cursor moved up in item window.
;;
field.unseek_text_to_line_beginning: ;;$3f:ebd1
;; fixup callers:
;FIX_ADDR_ON_CALLER $3f,$eb81+1
;; ---
;;note: in this logic this points to the byte immeditely preceding the current position
.p_text = $1c
.p_out = $3e
;; ---
.loop:
jsr field_x.unseek_window_text
ldy #0
lda [.p_text],y
;; checking if the char at right before the pointer
;; is a replacement code
;jsr field_x.is_printable_char
IS_PRINTABLE_CHAR
bcs .printable_char ;printable.
;; if it is, then seek back 2 chars to skip operand byte.
;; this is bit tricky however it works.
jsr field_x.unseek_window_text
bne .loop ;always set
.printable_char:
;; if the
iny
lda [.p_text],y
lsr A
bne .loop ;char is neither CHAR.NULL or CHAR.EOL
.found:
;$3c <- ($1c + 2)
lda #2
clc
adc <.p_text
sta <.p_out
ldy <.p_text+1
bcc .return
iny
.return:
sty <.p_out+1
rts
field_x.unseek_window_text:
.p_text = $1c
lda <.p_text
bne .low_byte_only
dec <.p_text+1
.low_byte_only:
dec <.p_text
rts
;VERIFY_PC $ec0c
;INIT_PATCH $3f, $ec0c, $ee9a
;------------------------------------------------------------------------------------------------------
;;below 2 logics are moved for space optimization:
;;# $3f:ec0c field::show_sprites_on_lower_half_screen
;;# $3f:ec12 field::show_sprites_on_region7 (bug?)
;--------------------------------------------------------------------------------------------------
;$3f:ed61 field::get_window_region
;//[in]
;// u8 $37: skipAttrUpdate
;// u8 X: window_type (0...4)
;// 0: object's message?
;// 1: choose dialog (Yes/No) (can be checked at INN)
;// 2: use item to object
;// 3: Gil (can be checked at INN)
;// 4: floor name
;INIT_PATCH $3f,$ed61,$edc6
;;$3f:ed61 field::get_window_region
;;callers:
;; $3f:ed02 field::draw_window_box
;;NOTEs:
;; 1) to reflect changes in screen those made by 'field.hide_sprites_around_window',
;; which is called within this function,
;; caller must update sprite attr such as:
;; lda #2
;; sta $4014 ;DMA
;; 2) this logic is very simlar to $3d:aabc field::get_menu_window_metrics.
;; the difference is:
;; A) this logic takes care of wrap-around unlike the other one, which does not.
;; B) target window and the address of table where the corresponding metrics defined at
field.get_window_region: ;;$3f:ed61 field::get_window_metrics
;[in]
.viewport_left = $29 ;in 16x16 unit
.viewport_top = $2f ;in 16x16 unit
.skip_attr_update = $37
;[out]
.left = $38 ;in 8x8 unit
.top = $39 ;in 8x8 unit
.width = $3c
.height = $3d
.offset_x = $97
.offset_y = $98
.internal_top = $b5
.internal_left = $b6
.internal_bottom = $b7
.internal_right = $b8
lda <.skip_attr_update
bne field_x.rts_1 ;rts (original: bne $ed60)
;; calculate left coordinates
lda field.window_attr_table_x,x
sta <.internal_left
sta <.offset_x
dec <.offset_x
lda <.viewport_left ;assert(.object_x < 0x80)
asl a
adc <.internal_left
and #$3f
sta <.left
;; calculate top coordinates
lda field.window_attr_table_y,x
;clc ;here always clear
adc #2
sta <.offset_y
sta <.internal_top
dec <.internal_top
lda <.viewport_top
asl a
adc field.window_attr_table_y,x
cmp #$1e
bcc .no_wrap
;sec ;here always set
sbc #$1e
.no_wrap:
sta <.top
;; calculate right coordinates
lda field.window_attr_table_width,x
sta <.width
clc
adc <.internal_left
sta <.internal_right
dec <.internal_right
;; calculate bottom coordinates
lda field.window_attr_table_height,x
sta <.height
clc
adc <.internal_top
;sec ;here always clear
sbc #2 ;effectively -3
sta <.internal_bottom
;; done calcs
;; here X must have window_type (as an argument to the call below)
FALL_THROUGH_TO field.hide_sprites_under_window
;jmp field.hide_sprites_under_window ;$ec18
;rts
;VERIFY_PC $edb2
;--------------------------------------------------------------------------------------------------
;;# $3f:ec18 field::hide_sprites_under_window
;;<details>
;;
;;## args:
;;+ [in] u8 X: window_type (0...4)
;;## callers:
;;+ $3f$ed61 field::get_window_region
;;## code:
field.hide_sprites_under_window:
lda #0
FALL_THROUGH_TO field.showhide_sprites_by_region
;--------------------------------------------------------------------------------------------------
;;# $3f:ec1a field::showhide_sprites_by_region
;;## args:
;;+ [in] u8 A: show/hide.
;; + 1: show
;; + 0: hide
;;+ [in] u8 X: region_type (0..6; with 0 to 4 being shared with window_type)
;;## callers:
;;+ $3f:ec0c field::show_sprites_on_lower_half_screen
;;+ $3f:ec12 field::show_sprites_on_region7 (with X set to 7)
;;+ $3f:ec18 field::showhide_sprites_by_window_region
;;## local variables:
;;+ u8 $80: region boundary in pixels, left, inclusive.
;;+ u8 $81: region boundary in pixels, right, exclusive.
;;+ u8 $82: region boundary in pixels, top, inclusive.
;;+ u8 $83: region boundary in pixels, bottom, exclusive.
;;+ u8 $84: show/hide flag
field.showhide_sprites_by_region:
;; --- fixups
;; all callers have got replaced their implementation within this file
;; ---
;.region_left = $80 ;in pixels
;.region_right = $81 ;in pixels
;.region_top = $82 ;in pixels
;.region_bottom = $83;in pixels
.is_to_show = $84
.sprite_buffer.x = $0203
.sprite_buffer.y = $0200
.sprite_buffer.attr = $0202
sta <.is_to_show
ldy #$40 ;don't change player and cursor (stored at before $0240) anyways
.for_each_sprites:
;; if (x < left || right <= x) { continue; }
lda .sprite_buffer.x, y
sec
sbc field.region_bounds.left, x
cmp field.region_bounds.width, x
bcs .next
;; if (y < top || bottom <= y) { continue; }
lda .sprite_buffer.y, y
;;here carry is always clear
sbc field.region_bounds.top, x ;;top is adjusted to account carry
cmp field.region_bounds.height, x
bcs .next
lda .sprite_buffer.attr, y
and #$df ;bit 5 <- 0: sprite in front of BG
bit <.is_to_show
bne .update
ora #$20 ;bit 5 <- 1: sprite behind BG
.update:
sta .sprite_buffer.attr, y
.next:
iny
iny
iny
iny
bne .for_each_sprites
field_x.rts_1:
rts
;--------------------------------------------------------------------------------------------------
;;# $3f:ec0c field::show_sprites_on_lower_half_screen
;;<details>
;;
;;## callers:
;;+ `1F:C9B6:20 0C EC JSR field.show_sprites_on_region6`
field.show_sprites_on_lower_half_screen:
;; --- fixup address on callers
FIX_ADDR_ON_CALLER $3e,$c9b6+1
;; ---
ldx #6
bne field.show_sprites_by_region
;--------------------------------------------------------------------------------------------------
;;# $3f:ec12 field::show_sprites_on_region7 (bug?)
;;<details>
;;
;;## callers:
;;+ `1F:C9C1:20 12 EC JSR field.show_sprites_on_region7`
field.show_sprites_on_region7:
;; --- fixup address on callers
FIX_ADDR_ON_CALLER $3e,$c9c1+1
;; --- begin
ldx #7 ;;invalid region type. seems to be a bug.
field.show_sprites_by_region:
lda #1
bne field.showhide_sprites_by_region
;------------------------------------------------------------------------------------------------------
field.region_bounds.left: ;$ec67 left (inclusive)
DB $0A,$0A,$0A,$8A,$0A,$0A,$0A
;field.region_bounds.right: ;$ec6e right (excludive, out of the box)
;DB $EF,$4F,$EF,$EF,$EF,$EF,$EF
field.region_bounds.width:
DB $E5,$45,$E5,$65,$E5,$E5,$E5 ;width
field.region_bounds.top: ;$ec75 top (inclusive)
;DB $0A,$8A,$8A,$6A,$0A,$0A,$6A
DB $09,$89,$89,$69,$09,$09,$69 ;top - 1.(accounted for optimization)
;field.region_bounds.bottom: ;$ec7c bottom (exclusive)
;DB $57,$D7,$D7,$87,$2A,$57,$D7
field.region_bounds.height:
DB $4d,$4d,$4d,$1d,$20,$4d,$6d ;height
;VERIFY_PC $ec83
;------------------------------------------------------------------------------------------------------
;.org $edb2
field.window_attr_table_x: ; = $edb2
.db $02, $02, $02, $12, $02
field.window_attr_table_y: ; = $edb7
.db $02, $12, $12, $0e, $02
field.window_attr_table_width: ; = $edbc
.db $1c, $08, $1c, $0c, $1c
field.window_attr_table_height: ; = $edc1
.db $0a, $0a, $0a, $04, $04
;VERIFY_PC $edc6
;------------------------------------------------------------------------------------------------------
;INIT_PATCH $3f,$ec83,$ee9a
;;$3f:ec83 field::show_message_UNKNOWN:
;; 1F:EC83:A9 00 LDA #$00
;; 1F:EC85:20 FA EC JSR field::draw_inplace_window
;; 1F:EC88:4C 65 EE JMP field::stream_string_in_window
field.show_off_message_window:
lda #0
field_x.show_off_window:
jsr field.draw_inplace_window ;$ecfa
jmp field.stream_string_in_window ;$ee65
;------------------------------------------------------------------------------------------------------
;;$3f:ec8b field::show_message_window:
;;callers:
;; 1F:E237:20 8B EC JSR field::show_message_window
;;
field.show_message_window:
;;patch out callers
FIX_ADDR_ON_CALLER $3f,$e237+1
;;
lda #0
FALL_THROUGH_TO field.show_window
;------------------------------------------------------------------------------------------------------
;;$3f:ec8d field::show_window:
;;callers:
;; 1F:E264:20 8D EC JSR $EC8D
;;in:
;; u8 A : window_type
field.show_window:
;;patch out external callers {
FIX_ADDR_ON_CALLER $3f,$e264+1
;;}
.field.pad1_inputs = $20
;jsr field.draw_inplace_window ;$ecfa
;jsr field.stream_string_in_window ;$ee65
jsr field_x.show_off_window
jsr field.await_and_get_next_input ;$ecab
lda <$7d
;beq .leave ;$eca8
bne .enter_input_loop
.leave: ;$eca8
jmp $c9b6
.input_loop: ;$ec9e
jsr field.get_next_input
.enter_input_loop: ;$ec9a
lda <.field.pad1_inputs
bpl .input_loop
.on_a_button_down: ;$eca4
lda #0
sta <$7d
beq .leave ;always met
;------------------------------------------------------------------------------------------------------
;;$3f:ECAB field::await_and_get_new_input:
;;callers:
;; 1F:EC93:20 AB EC JSR field::await_and_get_new_input ($3f:ec8b field::show_message_window)
;; 1F:ECBA:4C AB EC JMP field::await_and_get_new_input (tail recursion)
;; 1F:EE6A:20 AB EC JSR field::await_and_get_new_input ($3f:ee65 field::stream_string_in_window)
field.await_and_get_next_input:
jsr field_x.get_input_with_result ;on exit, A have the value from $20
beq field.get_next_input_in_this_frame
jsr field_x.advance_frame
jmp field.await_and_get_next_input
;------------------------------------------------------------------------------------------------------
;;$3f:ECc4 field::get_next_input:
;;callers:
;; 1F:EC9E:20 C4 EC JSR field::get_next_input
field.get_next_input:
;.field.pad1_inputs = $20 ;bit7 <- A ... -> bit0
;;$ecc4:
jsr field_x.advance_frame
;;fall through
field.get_next_input_in_this_frame:
.field.input_cache = $21
;;$ecbd:
jsr field_x.get_input_with_result ;on exit, A have the value from $20
beq field.get_next_input
;;$eccf
sta <.field.input_cache
bne field_x.switch_to_text_bank
;------------------------------------------------------------------------------------------------------
;;$3f:ecd8 field::advance_frame_with_sound
;;callers:
;; 1F:EE74:20 D8 EC JSR field::advance_frame_w_sound ($3f:ee65 field::stream_string_in_window)
field.advance_frame_and_set_bank:
jsr field_x.advance_frame
;;jmp field_x.switch_to_text_bank
FALL_THROUGH_TO field_x.switch_to_text_bank
;------------------------------------------------------------------------------------------------------
field_x.switch_to_text_bank:
.content_string_bank = $93
lda <.content_string_bank
jmp call_switch_2banks
field_x.advance_frame:
jsr waitNmiBySetHandler
field_x.advance_frame_no_wait:
inc <field.frame_counter
jmp field.call_sound_driver
field_x.get_input_with_result:
.field.pad1_inputs = $20 ;bit7 <- A ... -> bit0
jsr field.get_input
lda <.field.pad1_inputs
rts
;VERIFY_PC $ece5
;------------------------------------------------------------------------------------------------------
;INIT_PATCH $3f,$ece5,$ecf5
;;$3f:ece5 field::draw_window_top:
;;NOTEs:
;; called when executed actions the below in item window from menu
;; 1) exchange of position
;; 2) use of item
;;callers:
;; 1E:AAA3:4C E5 EC JMP field::draw_window_top
;;original code:
;1F:ECE5:A5 39 LDA window_top = #$0B
;1F:ECE7:85 3B STA window_row_in_draw = #$0F
;1F:ECE9:20 70 F6 JSR field::calc_size_and_init_buff
;1F:ECEC:20 56 ED JSR field::init_window_attr_buffer
;1F:ECEF:20 F6 ED JSR field::get_window_top_tiles
;1F:ECF2:20 C6 ED JSR field::draw_window_row
field.draw_window_top:
;; patch out callers external to current implementation {
FIX_ADDR_ON_CALLER $3d,$aaa3+1
;;}
.window_top = $39
.window_row_in_drawing = $3b
.ifdef _FEATURE_DEFERRED_RENDERING
jsr field_x.shrink_window_metrics
ldx #(render_x.NEED_TOP_BORDER|render_x.PENDING_INIT|render_x.RENDER_RUNNING|render_x.SKIP_CONTENTS)
jsr render_x.setup_deferred_rendering
;; contents of the item window will be redrawn after the border rendered.
;; so it is ok to fill content area with empty background, though not looking good.
;jsr field.draw_window_content
jsr render_x.queue_top_border
jsr render_x.finalize
;; HACK ---> TODO: do it cleaner way
lda #0
sta render_x.q.init_flags
;; <--- HACK
.else ;;ifdef _FEATURE_DEFERRED_RENDERING
lda <.window_top
sta <.window_row_in_drawing
jsr field.calc_draw_width_and_init_window_tile_buffer
jsr field.init_window_attr_buffer
jsr field.get_window_top_tiles
jsr field.draw_window_row
.endif ;;ifdef _FEATURE_DEFERRED_RENDERING
;; fall through (into $ecf5: field.restore_banks)
;jmp field.restore_banks ;$ecf5
FALL_THROUGH_TO field.restore_banks
;VERIFY_PC $ecf5
;------------------------------------------------------------------------------------------------------
;;$3f:ecf5 restoreBanksBy$57
;;callers:
;; 1F:EB64:20 F5 EC JSR field::restore_banks (in $3f:eb61 field::drawEncodedStringInWindowAndRestoreBanks)
;; 1F:F49E:4C F5 EC JMP field::restore_banks
;; field::draw_window_top (by falling thourgh)
;; field::draw_window_box
field.restore_banks:
;; patch out external callers {
;FIX_ADDR_ON_CALLER $3f,$eb64+1
FIX_ADDR_ON_CALLER $3f,$f49e+1
;;}
.program_bank = $57
lda <.program_bank
jmp call_switch_2banks
;VERIFY_PC $ecfa
;------------------------------------------------------------------------------------------------------
;;$3f:ed56 field::fill_07c0_ff
;;callers:
;; $3f:ece5 field::draw_window_top
;; $3f:ed02 field::draw_window_box
field.init_window_attr_buffer:
.window_attr_buffer = $07c0
ldx #$0f
lda #$ff
.fill:
sta .window_attr_buffer,x
dex
bpl .fill
rts
;VERIFY_PC $ed61
;;for optimzation,
;;$3f$ed61 field.get_window_metrics is relocated to nearby $3f$ec1a field.showhide_sprites_by_region
;------------------------------------------------------------------------------------------------------
;$3f:ede1 field::sync_ppu_scroll
;{
; if ($37 == 0) { //bne ede8
; return $e571();
; }
;$ede8:
; $2000 = $ff;
; $2005 = 0; $2005 = 0;
; return;
;$edf6:
;}
;INIT_PATCH $3f,$ede1,$edf6
;;$3f:ede1 field::sync_ppu_scroll
;;callers:
;; $3f:edc6 field.draw_window_row
;; $3f:f692 field.draw_window_content
field.sync_ppu_scroll:
.in_menu_mode = $37
.ppu_ctrl_cache = $ff
lda <.in_menu_mode
bne .set_ppu_ctrl
jmp field.sync_ppu_scroll_with_player ;$e571
.set_ppu_ctrl:
lda <.ppu_ctrl_cache
sta $2000
lda #00
sta $2005
sta $2005
rts
;VERIFY_PC $edf6
;------------------------------------------------------------------------------------------------------
.ifndef _FEATURE_DEFERRED_RENDERING
;INIT_PATCH $3f,$edf6,$ee65
;;$3f:edf6 field::getWindowTilesForTop
;;callers:
;; $3f:ece5 field::draw_window_top
;; $3f:ed02 field::draw_window_box
field.get_window_top_tiles:
lda #$00
jsr field_x.get_window_tiles
;lda #$07
;;fall through
field_x.get_window_tiles:
.width = $3c
.eol = $3c
.window_tiles_buffer_upper_row = $0780
;.window_tiles_buffer_lower_row = $07a0
;;in: A := lower 1bits: 0: fill in upper row; 1: fill in lower row
;; higher 7bits: offset into tile table
pha
lsr A
tay
ldx #0
bcc .save_width
ldx #$20
.save_width:
lda <.width
pha ;width
.left_tile:
lda field_x.window_parts,y
sta .window_tiles_buffer_upper_row,x
txa
clc
adc <.width
sta <.eol ;width + offset
inx
.center_tiles:
lda field_x.window_parts+1,y
sta .window_tiles_buffer_upper_row,x
inx
cpx <.eol
bcc .center_tiles
.right_tile:
lda field_x.window_parts+2,y
sta .window_tiles_buffer_upper_row-1,x
pla ;original width
sta <.width
pla
;here always carry is set
;adc #$22 ;effectively +23
adc #$06
rts
;;$3f:ee3e field::getWindowTilesForBottom
;;callers:
;; $3f:ed02 field::draw_window_box
field.get_window_bottom_tiles: ;ed3b
lda #$03<<1
jsr field_x.get_window_tiles
bne field_x.get_window_tiles
;;$3f:ee1d field::getWindowTilesForMiddle
;;callers:
;; $3f:ed02 field::draw_window_box
field.get_window_middle_tiles: ;ee1d
lda #$03<<1
jsr field_x.get_window_tiles
lda #$03<<1|1
bne field_x.get_window_tiles
field_x.window_parts:
db $f7, $f8, $f9
db $fa, $ff, $fb
db $fc, $fd, $fe
.else ;.ifndef _FEATURE_DEFERRED_RENDERING
field_x.window_parts:
db $f7, $f8, $f9
db $fc, $fd, $fe
.endif ;.ifndef _FEATURE_DEFERRED_RENDERING
;VERIFY_PC $ee65
;------------------------------------------------------------------------------------------------------
;INIT_PATCH $3f,$ee65,$ee9a
;;$3f:ee65 field::stream_string_in_window
;;callers:
;; 1E:9109:4C 65 EE JMP $EE65 @ $3c:90ff ?
;; 1E:A675:4C 65 EE JMP $EE65 @ $3d:a66b field.draw_menu_window_content
;; 1F:EC88:4C 65 EE JMP $EE65 @ $3f:ec83 field::show_off_message_window
;; 1F:EC90:20 65 EE JSR $EE65 @ $3f:ec8b field::show_message_window
field.stream_string_in_window:
;; patch out callers external to this implementation {
FIX_ADDR_ON_CALLER $3c,$9109+1
FIX_ADDR_ON_CALLER $3d,$a675+1
;; }
.viewport_left = $29 ;in 16x16 unit
.viewport_top = $2f ;in 16x16 unit
.in_menu_mode = $37
.window_left = $38 ;in 8x8 unit
.window_top = $39 ;in 8x8 unit
.window_width = $3c
.window_height = $3d
.offset_x = $97
.offset_y = $98
;; ---
;; all of the callers are fine to render with borders (the default of 'load_and_draw_string').
jsr field.load_and_draw_string ;$ee9a.
;; on exit from above, carry has a boolean value.
;; 1: more to draw, 0: completed drawing.
bcc .do_return
.paging:
jsr field.await_and_get_next_input
lda <.window_height
clc
adc #1 ;round up to next mod 2
lsr A
.streaming:
sec
sbc #1
pha ;# of text lines available to draw
lda #0
sta <field.frame_counter
.delay_loop:
jsr field.advance_frame_and_set_bank ;$ecd8
lda <field.frame_counter
and #FIELD_WINDOW_SCROLL_FRAMES ;;originally 1
bne .delay_loop
jsr field.seek_text_to_next_line ;$eba9
jsr field.draw_string_in_window ;$eec0
;; on exit from above, carry has a boolean value.
;; 1: more to draw, 0: completed drawing.
pla ;# of text lines available to draw
bne .streaming ;there is more space to fill in
bcs .paging ;there is more text to draw
;;content space is filled with reaching end of text
.do_return:
rts
;VERIFY_PC $ee9a
;INIT_PATCH $3f,$ee9a,$eec0
;------------------------------------------------------------------------------------------------------
;;# $3f:ee9a field::load_and_draw_string
;;### args:
;;
;;#### in:
;;+ u8 $92: string_id
;;+ ptr $94: offset to string ptr table
;;
;;#### out:
;;+ bool carry: more_to_draw //flagged cases could be tested at サロニアの図書館(オーエンのほん1)
;;+ ptr $3e: offset to the string, assuming the bank it to be loaded is at 1st page (starting at $8000)
;;+ u8 $93: bank number which the string would be loaded from
;;
;;### callers:
;;+ `1F:C036:20 9A EE JSR field::load_and_draw_string` @ opening title
;;+ `1F:EE65:20 9A EE JSR field::load_and_draw_string` @ $3f:ee65 field::stream_string_in_window
;;+ `3c:9116 jmp $EE9A ` @ some menu content
;;+ `3d:a682 jmp $EE9A ` @ $3d:a678 menu.draw_window_content
field_x.load_and_draw_string_without_border:
FIX_ADDR_ON_CALLER $3e, $c036+1
.ifdef _FEATURE_DEFERRED_RENDERING
;; opening title roll should be rendered without border.
;; however, this call is made after a call into 'menu.get_window_content_metrics'.
;; as of patch version 0.8.2, that function does equivalent initialization.
;; so we no longer need do it again here.
;jsr render_x.init_as_no_borders
.endif ;;_FEATURE_DEFERRED_RENDERING
field.load_and_draw_string: ;;$ee9a
;; fixups.
FIX_ADDR_ON_CALLER $3c, $9116+1 ;;menu content
FIX_ADDR_ON_CALLER $3d, $a682+1 ;;menu content. called when shop offerings is about to open.
;FIX_ADDR_ON_CALLER $3e, $c036+1
;; ---
.p_text = $3e
.text_id = $92
.text_bank = $93
.p_text_table = $94 ;;stores offset from $30000(18:8000) to the text
;; ---
lda <.text_id
ldx <.p_text_table+1
ldy <.p_text_table
;; unlike the original implementation, the below function destructs $80,81.
;; as these are generic temporary variable, this should be fine.
jsr textd_x.load_text_ptr
;; here A = text_bank.
sta <.text_bank
;FALL_THROUGH_TO field.draw_string_in_window
FALL_THROUGH_TO render_x.defer_window_text_with_border
;------------------------------------------------------------------------------------------------------
render_x.defer_window_text_with_border:
.ifdef _FEATURE_DEFERRED_RENDERING
;; request deferred rendering with borders.
;ldx #(render_x.PENDING_INIT|render_x.RENDER_RUNNING|render_x.NEED_TOP_BORDER|render_x.NEED_BOTTOM_BORDER)
.flags1 = render_x.PENDING_INIT|render_x.RENDER_RUNNING
.init_flags = .flags1 | render_x.NEED_TOP_BORDER|render_x.NEED_BOTTOM_BORDER|render_x.NEED_ATTRIBUTES
ldx #(.init_flags)
jsr render_x.setup_deferred_rendering
.endif ;_FEATURE_DEFERRED_RENDERING
;------------------------------------------------------------------------------------------------------
;INIT_PATCH $3f,$eec0,$eefa
;;# $3f:eec0 field.draw_string_in_window
;;
;;
;;### args:
;;+ [in] ptr $3e : string offset
;;+ [in] u8 $93 : string bank
;;+ [out] bool carry: more_to_draw
;;
;;### callers:
;;+ `1F:EB61:20 C0 EE JSR field::draw_string_in_window` @ $3f:eb61 field.reflect_window_scroll
;;+ `1F:EE80:20 C0 EE JSR field::draw_string_in_window` @ $3f:ee65 field::stream_string_in_window
;;+ `1F:EEBE:85 93 STA field.window_text_bank = #$18` (fall through)@ $3f:ee9a field::load_and_draw_string
field.draw_string_in_window: ;;$eec0
;; fixups.
;; every caller is implemented within this file.
;; ---
.output_index = $90
.text_bank = $93
.p_text = $3e
.p_text_line = $1c
.menu_item_continue_building = $1e
.lines_drawn = $1f
;; ---
.program_bank = $57
;; --- window related
.in_menu_mode = $37
.window_left = $38
.window_top = $39
.offset_x = $3a
.offset_y = $3b
.window_width = $3c
.window_height = $3d
;; ---
lda <.text_bank
jsr call_switch_2banks ;$FF03
lda <.p_text
sta <.p_text_line
lda <.p_text+1
sta <.p_text_line+1
lda <.window_left ;$38
sta <.offset_x ;$3A
lda <.window_top ;$39
sta <.offset_y ;$3B
jsr field.calc_draw_width_and_init_window_tile_buffer ;$f670
lda #$00
sta <.output_index ;$90
sta <.lines_drawn ;$1F
sta <.menu_item_continue_building ;$1e
jsr textd.draw_in_box ;$eefa
bcc .completed
;$eef3
.more_to_draw:
jmp field_x.restore_banks_with_carry_set
;lda <.program_bank ; $57
;jsr call_switch_2banks ;$FF03
;sec
;rts
.completed:
.ifdef _FEATURE_DEFERRED_RENDERING
jsr render_x.fill_to_bottom
.else
jsr field.draw_window_content ;$f692
.endif
;lda <.program_bank ; $57
;jsr call_switch_2banks ;$FF03
jmp field.restore_banks ;carry will be implictly cleared
;$eef1
;field_x.clc_return:
;FIX_OFFSET_ON_CALLER $3f,$eefe+1
; clc
; rts
;--------------------------------------------------------------------------------------------------
;VERIFY_PC $eefa
VERIFY_PC_TO_PATCH_END field.window.driver
field.window.driver.BULK_PATCH_FREE_BEGIN:
.endif ;_OPTIMIZE_FIELD_WINDOW
;======================================================================================================
;RESTORE_PC ff3_field_window_driver_begin |
src/gnat/erroutc.adb | Letractively/ada-gen | 0 | 16727 | <gh_stars>0
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- E R R O U T C --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2010, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- You should have received a copy of the GNU General Public License along --
-- with this program; see file COPYING3. If not see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Warning! Error messages can be generated during Gigi processing by direct
-- calls to error message routines, so it is essential that the processing
-- in this body be consistent with the requirements for the Gigi processing
-- environment, and that in particular, no disallowed table expansion is
-- allowed to occur.
with Casing; use Casing;
with Debug; use Debug;
with Err_Vars; use Err_Vars;
with Namet; use Namet;
with Opt; use Opt;
with Output; use Output;
with Sinput; use Sinput;
with Snames; use Snames;
with Targparm; use Targparm;
with Uintp; use Uintp;
package body Erroutc is
---------------
-- Add_Class --
---------------
procedure Add_Class is
begin
if Class_Flag then
Class_Flag := False;
Set_Msg_Char (''');
Get_Name_String (Name_Class);
Set_Casing (Identifier_Casing (Flag_Source), Mixed_Case);
Set_Msg_Name_Buffer;
end if;
end Add_Class;
----------------------
-- Buffer_Ends_With --
----------------------
function Buffer_Ends_With (S : String) return Boolean is
Len : constant Natural := S'Length;
begin
return
Msglen > Len
and then Msg_Buffer (Msglen - Len) = ' '
and then Msg_Buffer (Msglen - Len + 1 .. Msglen) = S;
end Buffer_Ends_With;
-------------------
-- Buffer_Remove --
-------------------
procedure Buffer_Remove (S : String) is
begin
if Buffer_Ends_With (S) then
Msglen := Msglen - S'Length;
end if;
end Buffer_Remove;
-----------------------------
-- Check_Duplicate_Message --
-----------------------------
procedure Check_Duplicate_Message (M1, M2 : Error_Msg_Id) is
L1, L2 : Error_Msg_Id;
N1, N2 : Error_Msg_Id;
procedure Delete_Msg (Delete, Keep : Error_Msg_Id);
-- Called to delete message Delete, keeping message Keep. Marks
-- all messages of Delete with deleted flag set to True, and also
-- makes sure that for the error messages that are retained the
-- preferred message is the one retained (we prefer the shorter
-- one in the case where one has an Instance tag). Note that we
-- always know that Keep has at least as many continuations as
-- Delete (since we always delete the shorter sequence).
----------------
-- Delete_Msg --
----------------
procedure Delete_Msg (Delete, Keep : Error_Msg_Id) is
D, K : Error_Msg_Id;
begin
D := Delete;
K := Keep;
loop
Errors.Table (D).Deleted := True;
-- Adjust error message count
if Errors.Table (D).Warn or else Errors.Table (D).Style then
Warnings_Detected := Warnings_Detected - 1;
else
Total_Errors_Detected := Total_Errors_Detected - 1;
if Errors.Table (D).Serious then
Serious_Errors_Detected := Serious_Errors_Detected - 1;
end if;
end if;
-- Substitute shorter of the two error messages
if Errors.Table (K).Text'Length > Errors.Table (D).Text'Length then
Errors.Table (K).Text := Errors.Table (D).Text;
end if;
D := Errors.Table (D).Next;
K := Errors.Table (K).Next;
if D = No_Error_Msg or else not Errors.Table (D).Msg_Cont then
return;
end if;
end loop;
end Delete_Msg;
-- Start of processing for Check_Duplicate_Message
begin
-- Both messages must be non-continuation messages and not deleted
if Errors.Table (M1).Msg_Cont
or else Errors.Table (M2).Msg_Cont
or else Errors.Table (M1).Deleted
or else Errors.Table (M2).Deleted
then
return;
end if;
-- Definitely not equal if message text does not match
if not Same_Error (M1, M2) then
return;
end if;
-- Same text. See if all continuations are also identical
L1 := M1;
L2 := M2;
loop
N1 := Errors.Table (L1).Next;
N2 := Errors.Table (L2).Next;
-- If M1 continuations have run out, we delete M1, either the
-- messages have the same number of continuations, or M2 has
-- more and we prefer the one with more anyway.
if N1 = No_Error_Msg or else not Errors.Table (N1).Msg_Cont then
Delete_Msg (M1, M2);
return;
-- If M2 continuations have run out, we delete M2
elsif N2 = No_Error_Msg or else not Errors.Table (N2).Msg_Cont then
Delete_Msg (M2, M1);
return;
-- Otherwise see if continuations are the same, if not, keep both
-- sequences, a curious case, but better to keep everything!
elsif not Same_Error (N1, N2) then
return;
-- If continuations are the same, continue scan
else
L1 := N1;
L2 := N2;
end if;
end loop;
end Check_Duplicate_Message;
------------------------
-- Compilation_Errors --
------------------------
function Compilation_Errors return Boolean is
begin
return Total_Errors_Detected /= 0
or else (Warnings_Detected /= 0
and then Warning_Mode = Treat_As_Error);
end Compilation_Errors;
------------------
-- Debug_Output --
------------------
procedure Debug_Output (N : Node_Id) is
begin
if Debug_Flag_1 then
Write_Str ("*** following error message posted on node id = #");
Write_Int (Int (N));
Write_Str (" ***");
Write_Eol;
end if;
end Debug_Output;
----------
-- dmsg --
----------
procedure dmsg (Id : Error_Msg_Id) is
E : Error_Msg_Object renames Errors.Table (Id);
begin
w ("Dumping error message, Id = ", Int (Id));
w (" Text = ", E.Text.all);
w (" Next = ", Int (E.Next));
w (" Sfile = ", Int (E.Sfile));
Write_Str
(" Sptr = ");
Write_Location (E.Sptr);
Write_Eol;
Write_Str
(" Optr = ");
Write_Location (E.Optr);
Write_Eol;
w (" Line = ", Int (E.Line));
w (" Col = ", Int (E.Col));
w (" Warn = ", E.Warn);
w (" Style = ", E.Style);
w (" Serious = ", E.Serious);
w (" Uncond = ", E.Uncond);
w (" Msg_Cont = ", E.Msg_Cont);
w (" Deleted = ", E.Deleted);
Write_Eol;
end dmsg;
------------------
-- Get_Location --
------------------
function Get_Location (E : Error_Msg_Id) return Source_Ptr is
begin
return Errors.Table (E).Sptr;
end Get_Location;
----------------
-- Get_Msg_Id --
----------------
function Get_Msg_Id return Error_Msg_Id is
begin
return Cur_Msg;
end Get_Msg_Id;
-----------------------
-- Output_Error_Msgs --
-----------------------
procedure Output_Error_Msgs (E : in out Error_Msg_Id) is
P : Source_Ptr;
T : Error_Msg_Id;
S : Error_Msg_Id;
Flag_Num : Pos;
Mult_Flags : Boolean := False;
begin
S := E;
-- Skip deleted messages at start
if Errors.Table (S).Deleted then
Set_Next_Non_Deleted_Msg (S);
end if;
-- Figure out if we will place more than one error flag on this line
T := S;
while T /= No_Error_Msg
and then Errors.Table (T).Line = Errors.Table (E).Line
and then Errors.Table (T).Sfile = Errors.Table (E).Sfile
loop
if Errors.Table (T).Sptr > Errors.Table (E).Sptr then
Mult_Flags := True;
end if;
Set_Next_Non_Deleted_Msg (T);
end loop;
-- Output the error flags. The circuit here makes sure that the tab
-- characters in the original line are properly accounted for. The
-- eight blanks at the start are to match the line number.
if not Debug_Flag_2 then
Write_Str (" ");
P := Line_Start (Errors.Table (E).Sptr);
Flag_Num := 1;
-- Loop through error messages for this line to place flags
T := S;
while T /= No_Error_Msg
and then Errors.Table (T).Line = Errors.Table (E).Line
and then Errors.Table (T).Sfile = Errors.Table (E).Sfile
loop
-- Loop to output blanks till current flag position
while P < Errors.Table (T).Sptr loop
if Source_Text (Errors.Table (T).Sfile) (P) = ASCII.HT then
Write_Char (ASCII.HT);
else
Write_Char (' ');
end if;
P := P + 1;
end loop;
-- Output flag (unless already output, this happens if more
-- than one error message occurs at the same flag position).
if P = Errors.Table (T).Sptr then
if (Flag_Num = 1 and then not Mult_Flags)
or else Flag_Num > 9
then
Write_Char ('|');
else
Write_Char (Character'Val (Character'Pos ('0') + Flag_Num));
end if;
P := P + 1;
end if;
Set_Next_Non_Deleted_Msg (T);
Flag_Num := Flag_Num + 1;
end loop;
Write_Eol;
end if;
-- Now output the error messages
T := S;
while T /= No_Error_Msg
and then Errors.Table (T).Line = Errors.Table (E).Line
and then Errors.Table (T).Sfile = Errors.Table (E).Sfile
loop
Write_Str (" >>> ");
Output_Msg_Text (T);
if Debug_Flag_2 then
while Column < 74 loop
Write_Char (' ');
end loop;
Write_Str (" <<<");
end if;
Write_Eol;
Set_Next_Non_Deleted_Msg (T);
end loop;
E := T;
end Output_Error_Msgs;
------------------------
-- Output_Line_Number --
------------------------
procedure Output_Line_Number (L : Logical_Line_Number) is
D : Int; -- next digit
C : Character; -- next character
Z : Boolean; -- flag for zero suppress
N, M : Int; -- temporaries
begin
if L = No_Line_Number then
Write_Str (" ");
else
Z := False;
N := Int (L);
M := 100_000;
while M /= 0 loop
D := Int (N / M);
N := N rem M;
M := M / 10;
if D = 0 then
if Z then
C := '0';
else
C := ' ';
end if;
else
Z := True;
C := Character'Val (D + 48);
end if;
Write_Char (C);
end loop;
Write_Str (". ");
end if;
end Output_Line_Number;
---------------------
-- Output_Msg_Text --
---------------------
procedure Output_Msg_Text (E : Error_Msg_Id) is
Offs : constant Nat := Column - 1;
-- Offset to start of message, used for continuations
Max : Integer;
-- Maximum characters to output on next line
Length : Nat;
-- Maximum total length of lines
Txt : constant String_Ptr := Errors.Table (E).Text;
Len : constant Natural := Txt'Length;
Ptr : Natural;
Split : Natural;
Start : Natural;
begin
if Error_Msg_Line_Length = 0 then
Length := Nat'Last;
else
Length := Error_Msg_Line_Length;
end if;
Max := Integer (Length - Column + 1);
-- For warning message, add "warning: " unless msg starts with "info: "
if Errors.Table (E).Warn then
if Len < 6 or else Txt (Txt'First .. Txt'First + 5) /= "info: " then
Write_Str ("warning: ");
Max := Max - 9;
end if;
-- No prefix needed for style message, since "(style)" is there already
elsif Errors.Table (E).Style then
null;
-- All other cases, add "error: "
elsif Opt.Unique_Error_Tag then
Write_Str ("error: ");
Max := Max - 7;
end if;
-- Here we have to split the message up into multiple lines
Ptr := 1;
loop
-- Make sure we do not have ludicrously small line
Max := Integer'Max (Max, 20);
-- If remaining text fits, output it respecting LF and we are done
if Len - Ptr < Max then
for J in Ptr .. Len loop
if Txt (J) = ASCII.LF then
Write_Eol;
Write_Spaces (Offs);
else
Write_Char (Txt (J));
end if;
end loop;
return;
-- Line does not fit
else
Start := Ptr;
-- First scan forward looking for a hard end of line
for Scan in Ptr .. Ptr + Max - 1 loop
if Txt (Scan) = ASCII.LF then
Split := Scan - 1;
Ptr := Scan + 1;
goto Continue;
end if;
end loop;
-- Otherwise scan backwards looking for a space
for Scan in reverse Ptr .. Ptr + Max - 1 loop
if Txt (Scan) = ' ' then
Split := Scan - 1;
Ptr := Scan + 1;
goto Continue;
end if;
end loop;
-- If we fall through, no space, so split line arbitrarily
Split := Ptr + Max - 1;
Ptr := Split + 1;
end if;
<<Continue>>
if Start <= Split then
Write_Line (Txt (Start .. Split));
Write_Spaces (Offs);
end if;
Max := Integer (Length - Column + 1);
end loop;
end Output_Msg_Text;
--------------------
-- Purge_Messages --
--------------------
procedure Purge_Messages (From : Source_Ptr; To : Source_Ptr) is
E : Error_Msg_Id;
function To_Be_Purged (E : Error_Msg_Id) return Boolean;
-- Returns True for a message that is to be purged. Also adjusts
-- error counts appropriately.
------------------
-- To_Be_Purged --
------------------
function To_Be_Purged (E : Error_Msg_Id) return Boolean is
begin
if E /= No_Error_Msg
and then Errors.Table (E).Sptr > From
and then Errors.Table (E).Sptr < To
then
if Errors.Table (E).Warn or else Errors.Table (E).Style then
Warnings_Detected := Warnings_Detected - 1;
else
Total_Errors_Detected := Total_Errors_Detected - 1;
if Errors.Table (E).Serious then
Serious_Errors_Detected := Serious_Errors_Detected - 1;
end if;
end if;
return True;
else
return False;
end if;
end To_Be_Purged;
-- Start of processing for Purge_Messages
begin
while To_Be_Purged (First_Error_Msg) loop
First_Error_Msg := Errors.Table (First_Error_Msg).Next;
end loop;
E := First_Error_Msg;
while E /= No_Error_Msg loop
while To_Be_Purged (Errors.Table (E).Next) loop
Errors.Table (E).Next :=
Errors.Table (Errors.Table (E).Next).Next;
end loop;
E := Errors.Table (E).Next;
end loop;
end Purge_Messages;
----------------
-- Same_Error --
----------------
function Same_Error (M1, M2 : Error_Msg_Id) return Boolean is
Msg1 : constant String_Ptr := Errors.Table (M1).Text;
Msg2 : constant String_Ptr := Errors.Table (M2).Text;
Msg2_Len : constant Integer := Msg2'Length;
Msg1_Len : constant Integer := Msg1'Length;
begin
return
Msg1.all = Msg2.all
or else
(Msg1_Len - 10 > Msg2_Len
and then
Msg2.all = Msg1.all (1 .. Msg2_Len)
and then
Msg1 (Msg2_Len + 1 .. Msg2_Len + 10) = ", instance")
or else
(Msg2_Len - 10 > Msg1_Len
and then
Msg1.all = Msg2.all (1 .. Msg1_Len)
and then
Msg2 (Msg1_Len + 1 .. Msg1_Len + 10) = ", instance");
end Same_Error;
-------------------
-- Set_Msg_Blank --
-------------------
procedure Set_Msg_Blank is
begin
if Msglen > 0
and then Msg_Buffer (Msglen) /= ' '
and then Msg_Buffer (Msglen) /= '('
and then Msg_Buffer (Msglen) /= '-'
and then not Manual_Quote_Mode
then
Set_Msg_Char (' ');
end if;
end Set_Msg_Blank;
-------------------------------
-- Set_Msg_Blank_Conditional --
-------------------------------
procedure Set_Msg_Blank_Conditional is
begin
if Msglen > 0
and then Msg_Buffer (Msglen) /= ' '
and then Msg_Buffer (Msglen) /= '('
and then Msg_Buffer (Msglen) /= '"'
and then not Manual_Quote_Mode
then
Set_Msg_Char (' ');
end if;
end Set_Msg_Blank_Conditional;
------------------
-- Set_Msg_Char --
------------------
procedure Set_Msg_Char (C : Character) is
begin
-- The check for message buffer overflow is needed to deal with cases
-- where insertions get too long (in particular a child unit name can
-- be very long).
if Msglen < Max_Msg_Length then
Msglen := Msglen + 1;
Msg_Buffer (Msglen) := C;
end if;
end Set_Msg_Char;
---------------------------------
-- Set_Msg_Insertion_File_Name --
---------------------------------
procedure Set_Msg_Insertion_File_Name is
begin
if Error_Msg_File_1 = No_File then
null;
elsif Error_Msg_File_1 = Error_File_Name then
Set_Msg_Blank;
Set_Msg_Str ("<error>");
else
Set_Msg_Blank;
Get_Name_String (Error_Msg_File_1);
Set_Msg_Quote;
Set_Msg_Name_Buffer;
Set_Msg_Quote;
end if;
-- The following assignments ensure that the second and third {
-- insertion characters will correspond to the Error_Msg_File_2 and
-- Error_Msg_File_3 values and We suppress possible validity checks in
-- case operating in -gnatVa mode, and Error_Msg_File_2 or
-- Error_Msg_File_3 is not needed and has not been set.
declare
pragma Suppress (Range_Check);
begin
Error_Msg_File_1 := Error_Msg_File_2;
Error_Msg_File_2 := Error_Msg_File_3;
end;
end Set_Msg_Insertion_File_Name;
-----------------------------------
-- Set_Msg_Insertion_Line_Number --
-----------------------------------
procedure Set_Msg_Insertion_Line_Number (Loc, Flag : Source_Ptr) is
Sindex_Loc : Source_File_Index;
Sindex_Flag : Source_File_Index;
procedure Set_At;
-- Outputs "at " unless last characters in buffer are " from ". Certain
-- messages read better with from than at.
------------
-- Set_At --
------------
procedure Set_At is
begin
if Msglen < 6
or else Msg_Buffer (Msglen - 5 .. Msglen) /= " from "
then
Set_Msg_Str ("at ");
end if;
end Set_At;
-- Start of processing for Set_Msg_Insertion_Line_Number
begin
Set_Msg_Blank;
if Loc = No_Location then
Set_At;
Set_Msg_Str ("unknown location");
elsif Loc = System_Location then
Set_Msg_Str ("in package System");
Set_Msg_Insertion_Run_Time_Name;
elsif Loc = Standard_Location then
Set_Msg_Str ("in package Standard");
elsif Loc = Standard_ASCII_Location then
Set_Msg_Str ("in package Standard.ASCII");
else
-- Add "at file-name:" if reference is to other than the source
-- file in which the error message is placed. Note that we check
-- full file names, rather than just the source indexes, to
-- deal with generic instantiations from the current file.
Sindex_Loc := Get_Source_File_Index (Loc);
Sindex_Flag := Get_Source_File_Index (Flag);
if Full_File_Name (Sindex_Loc) /= Full_File_Name (Sindex_Flag) then
Set_At;
Get_Name_String
(Reference_Name (Get_Source_File_Index (Loc)));
Set_Msg_Name_Buffer;
Set_Msg_Char (':');
-- If in current file, add text "at line "
else
Set_At;
Set_Msg_Str ("line ");
end if;
-- Output line number for reference
Set_Msg_Int (Int (Get_Logical_Line_Number (Loc)));
-- Deal with the instantiation case. We may have a reference to,
-- e.g. a type, that is declared within a generic template, and
-- what we are really referring to is the occurrence in an instance.
-- In this case, the line number of the instantiation is also of
-- interest, and we add a notation:
-- , instance at xxx
-- where xxx is a line number output using this same routine (and
-- the recursion can go further if the instantiation is itself in
-- a generic template).
-- The flag location passed to us in this situation is indeed the
-- line number within the template, but as described in Sinput.L
-- (file sinput-l.ads, section "Handling Generic Instantiations")
-- we can retrieve the location of the instantiation itself from
-- this flag location value.
-- Note: this processing is suppressed if Suppress_Instance_Location
-- is set True. This is used to prevent redundant annotations of the
-- location of the instantiation in the case where we are placing
-- the messages on the instantiation in any case.
if Instantiation (Sindex_Loc) /= No_Location
and then not Suppress_Instance_Location
then
Set_Msg_Str (", instance ");
Set_Msg_Insertion_Line_Number (Instantiation (Sindex_Loc), Flag);
end if;
end if;
end Set_Msg_Insertion_Line_Number;
----------------------------
-- Set_Msg_Insertion_Name --
----------------------------
procedure Set_Msg_Insertion_Name is
begin
if Error_Msg_Name_1 = No_Name then
null;
elsif Error_Msg_Name_1 = Error_Name then
Set_Msg_Blank;
Set_Msg_Str ("<error>");
else
Set_Msg_Blank_Conditional;
Get_Unqualified_Decoded_Name_String (Error_Msg_Name_1);
-- Remove %s or %b at end. These come from unit names. If the
-- caller wanted the (unit) or (body), then they would have used
-- the $ insertion character. Certainly no error message should
-- ever have %b or %s explicitly occurring.
if Name_Len > 2
and then Name_Buffer (Name_Len - 1) = '%'
and then (Name_Buffer (Name_Len) = 'b'
or else
Name_Buffer (Name_Len) = 's')
then
Name_Len := Name_Len - 2;
end if;
-- Remove upper case letter at end, again, we should not be getting
-- such names, and what we hope is that the remainder makes sense.
if Name_Len > 1
and then Name_Buffer (Name_Len) in 'A' .. 'Z'
then
Name_Len := Name_Len - 1;
end if;
-- If operator name or character literal name, just print it as is
-- Also print as is if it ends in a right paren (case of x'val(nnn))
if Name_Buffer (1) = '"'
or else Name_Buffer (1) = '''
or else Name_Buffer (Name_Len) = ')'
then
Set_Msg_Name_Buffer;
-- Else output with surrounding quotes in proper casing mode
else
Set_Casing (Identifier_Casing (Flag_Source), Mixed_Case);
Set_Msg_Quote;
Set_Msg_Name_Buffer;
Set_Msg_Quote;
end if;
end if;
-- The following assignments ensure that the second and third percent
-- insertion characters will correspond to the Error_Msg_Name_2 and
-- Error_Msg_Name_3 as required. We suppress possible validity checks in
-- case operating in -gnatVa mode, and Error_Msg_Name_1/2 is not needed
-- and has not been set.
declare
pragma Suppress (Range_Check);
begin
Error_Msg_Name_1 := Error_Msg_Name_2;
Error_Msg_Name_2 := Error_Msg_Name_3;
end;
end Set_Msg_Insertion_Name;
------------------------------------
-- Set_Msg_Insertion_Name_Literal --
------------------------------------
procedure Set_Msg_Insertion_Name_Literal is
begin
if Error_Msg_Name_1 = No_Name then
null;
elsif Error_Msg_Name_1 = Error_Name then
Set_Msg_Blank;
Set_Msg_Str ("<error>");
else
Set_Msg_Blank;
Get_Name_String (Error_Msg_Name_1);
Set_Msg_Quote;
Set_Msg_Name_Buffer;
Set_Msg_Quote;
end if;
-- The following assignments ensure that the second and third % or %%
-- insertion characters will correspond to the Error_Msg_Name_2 and
-- Error_Msg_Name_3 values and We suppress possible validity checks in
-- case operating in -gnatVa mode, and Error_Msg_Name_2 or
-- Error_Msg_Name_3 is not needed and has not been set.
declare
pragma Suppress (Range_Check);
begin
Error_Msg_Name_1 := Error_Msg_Name_2;
Error_Msg_Name_2 := Error_Msg_Name_3;
end;
end Set_Msg_Insertion_Name_Literal;
-------------------------------------
-- Set_Msg_Insertion_Reserved_Name --
-------------------------------------
procedure Set_Msg_Insertion_Reserved_Name is
begin
Set_Msg_Blank_Conditional;
Get_Name_String (Error_Msg_Name_1);
Set_Msg_Quote;
Set_Casing (Keyword_Casing (Flag_Source), All_Lower_Case);
Set_Msg_Name_Buffer;
Set_Msg_Quote;
end Set_Msg_Insertion_Reserved_Name;
-------------------------------------
-- Set_Msg_Insertion_Reserved_Word --
-------------------------------------
procedure Set_Msg_Insertion_Reserved_Word
(Text : String;
J : in out Integer)
is
begin
Set_Msg_Blank_Conditional;
Name_Len := 0;
while J <= Text'Last and then Text (J) in 'A' .. 'Z' loop
Add_Char_To_Name_Buffer (Text (J));
J := J + 1;
end loop;
-- Here is where we make the special exception for RM
if Name_Len = 2 and then Name_Buffer (1 .. 2) = "RM" then
Set_Msg_Name_Buffer;
-- Not RM: case appropriately and add surrounding quotes
else
Set_Casing (Keyword_Casing (Flag_Source), All_Lower_Case);
Set_Msg_Quote;
Set_Msg_Name_Buffer;
Set_Msg_Quote;
end if;
end Set_Msg_Insertion_Reserved_Word;
-------------------------------------
-- Set_Msg_Insertion_Run_Time_Name --
-------------------------------------
procedure Set_Msg_Insertion_Run_Time_Name is
begin
if Targparm.Run_Time_Name_On_Target /= No_Name then
Set_Msg_Blank_Conditional;
Set_Msg_Char ('(');
Get_Name_String (Targparm.Run_Time_Name_On_Target);
Set_Casing (Mixed_Case);
Set_Msg_Str (Name_Buffer (1 .. Name_Len));
Set_Msg_Char (')');
end if;
end Set_Msg_Insertion_Run_Time_Name;
----------------------------
-- Set_Msg_Insertion_Uint --
----------------------------
procedure Set_Msg_Insertion_Uint is
begin
Set_Msg_Blank;
UI_Image (Error_Msg_Uint_1);
for J in 1 .. UI_Image_Length loop
Set_Msg_Char (UI_Image_Buffer (J));
end loop;
-- The following assignment ensures that a second caret insertion
-- character will correspond to the Error_Msg_Uint_2 parameter. We
-- suppress possible validity checks in case operating in -gnatVa mode,
-- and Error_Msg_Uint_2 is not needed and has not been set.
declare
pragma Suppress (Range_Check);
begin
Error_Msg_Uint_1 := Error_Msg_Uint_2;
end;
end Set_Msg_Insertion_Uint;
-----------------
-- Set_Msg_Int --
-----------------
procedure Set_Msg_Int (Line : Int) is
begin
if Line > 9 then
Set_Msg_Int (Line / 10);
end if;
Set_Msg_Char (Character'Val (Character'Pos ('0') + (Line rem 10)));
end Set_Msg_Int;
-------------------------
-- Set_Msg_Name_Buffer --
-------------------------
procedure Set_Msg_Name_Buffer is
begin
for J in 1 .. Name_Len loop
Set_Msg_Char (Name_Buffer (J));
end loop;
end Set_Msg_Name_Buffer;
-------------------
-- Set_Msg_Quote --
-------------------
procedure Set_Msg_Quote is
begin
if not Manual_Quote_Mode then
Set_Msg_Char ('"');
end if;
end Set_Msg_Quote;
-----------------
-- Set_Msg_Str --
-----------------
procedure Set_Msg_Str (Text : String) is
begin
for J in Text'Range loop
Set_Msg_Char (Text (J));
end loop;
end Set_Msg_Str;
------------------------------
-- Set_Next_Non_Deleted_Msg --
------------------------------
procedure Set_Next_Non_Deleted_Msg (E : in out Error_Msg_Id) is
begin
if E = No_Error_Msg then
return;
else
loop
E := Errors.Table (E).Next;
exit when E = No_Error_Msg or else not Errors.Table (E).Deleted;
end loop;
end if;
end Set_Next_Non_Deleted_Msg;
------------------------------
-- Set_Specific_Warning_Off --
------------------------------
procedure Set_Specific_Warning_Off
(Loc : Source_Ptr;
Msg : String;
Config : Boolean)
is
begin
Specific_Warnings.Append
((Start => Loc,
Msg => new String'(Msg),
Stop => Source_Last (Current_Source_File),
Open => True,
Used => False,
Config => Config));
end Set_Specific_Warning_Off;
-----------------------------
-- Set_Specific_Warning_On --
-----------------------------
procedure Set_Specific_Warning_On
(Loc : Source_Ptr;
Msg : String;
Err : out Boolean)
is
begin
for J in 1 .. Specific_Warnings.Last loop
declare
SWE : Specific_Warning_Entry renames Specific_Warnings.Table (J);
begin
if Msg = SWE.Msg.all
and then Loc > SWE.Start
and then SWE.Open
and then Get_Source_File_Index (SWE.Start) =
Get_Source_File_Index (Loc)
then
SWE.Stop := Loc;
SWE.Open := False;
Err := False;
-- If a config pragma is specifically cancelled, consider
-- that it is no longer active as a configuration pragma.
SWE.Config := False;
return;
end if;
end;
end loop;
Err := True;
end Set_Specific_Warning_On;
---------------------------
-- Set_Warnings_Mode_Off --
---------------------------
procedure Set_Warnings_Mode_Off (Loc : Source_Ptr) is
begin
-- Don't bother with entries from instantiation copies, since we
-- will already have a copy in the template, which is what matters
if Instantiation (Get_Source_File_Index (Loc)) /= No_Location then
return;
end if;
-- If last entry in table already covers us, this is a redundant
-- pragma Warnings (Off) and can be ignored. This also handles the
-- case where all warnings are suppressed by command line switch.
if Warnings.Last >= Warnings.First
and then Warnings.Table (Warnings.Last).Start <= Loc
and then Loc <= Warnings.Table (Warnings.Last).Stop
then
return;
-- Otherwise establish a new entry, extending from the location of
-- the pragma to the end of the current source file. This ending
-- point will be adjusted by a subsequent pragma Warnings (On).
else
Warnings.Increment_Last;
Warnings.Table (Warnings.Last).Start := Loc;
Warnings.Table (Warnings.Last).Stop :=
Source_Last (Current_Source_File);
end if;
end Set_Warnings_Mode_Off;
--------------------------
-- Set_Warnings_Mode_On --
--------------------------
procedure Set_Warnings_Mode_On (Loc : Source_Ptr) is
begin
-- Don't bother with entries from instantiation copies, since we
-- will already have a copy in the template, which is what matters
if Instantiation (Get_Source_File_Index (Loc)) /= No_Location then
return;
end if;
-- Nothing to do unless command line switch to suppress all warnings
-- is off, and the last entry in the warnings table covers this
-- pragma Warnings (On), in which case adjust the end point.
if (Warnings.Last >= Warnings.First
and then Warnings.Table (Warnings.Last).Start <= Loc
and then Loc <= Warnings.Table (Warnings.Last).Stop)
and then Warning_Mode /= Suppress
then
Warnings.Table (Warnings.Last).Stop := Loc;
end if;
end Set_Warnings_Mode_On;
------------------------------------
-- Test_Style_Warning_Serious_Msg --
------------------------------------
procedure Test_Style_Warning_Serious_Msg (Msg : String) is
begin
if Msg (Msg'First) = '\' then
return;
end if;
Is_Serious_Error := True;
Is_Warning_Msg := False;
Is_Style_Msg :=
(Msg'Length > 7 and then Msg (Msg'First .. Msg'First + 6) = "(style)");
if Is_Style_Msg then
Is_Serious_Error := False;
end if;
for J in Msg'Range loop
if Msg (J) = '?'
and then (J = Msg'First or else Msg (J - 1) /= ''')
then
Is_Warning_Msg := True;
elsif Msg (J) = '<'
and then (J = Msg'First or else Msg (J - 1) /= ''')
then
Is_Warning_Msg := Error_Msg_Warn;
elsif Msg (J) = '|'
and then (J = Msg'First or else Msg (J - 1) /= ''')
then
Is_Serious_Error := False;
end if;
end loop;
if Is_Warning_Msg or Is_Style_Msg then
Is_Serious_Error := False;
end if;
end Test_Style_Warning_Serious_Msg;
--------------------------------
-- Validate_Specific_Warnings --
--------------------------------
procedure Validate_Specific_Warnings (Eproc : Error_Msg_Proc) is
begin
for J in Specific_Warnings.First .. Specific_Warnings.Last loop
declare
SWE : Specific_Warning_Entry renames Specific_Warnings.Table (J);
begin
if not SWE.Config then
if SWE.Open then
Eproc.all
("?pragma Warnings Off with no matching Warnings On",
SWE.Start);
elsif not SWE.Used then
Eproc.all
("?no warning suppressed by this pragma", SWE.Start);
end if;
end if;
end;
end loop;
end Validate_Specific_Warnings;
-------------------------------------
-- Warning_Specifically_Suppressed --
-------------------------------------
function Warning_Specifically_Suppressed
(Loc : Source_Ptr;
Msg : String_Ptr) return Boolean
is
function Matches (S : String; P : String) return Boolean;
-- Returns true if the String S patches the pattern P, which can contain
-- wild card chars (*). The entire pattern must match the entire string.
-------------
-- Matches --
-------------
function Matches (S : String; P : String) return Boolean is
Slast : constant Natural := S'Last;
PLast : constant Natural := P'Last;
SPtr : Natural := S'First;
PPtr : Natural := P'First;
begin
-- Loop advancing through characters of string and pattern
SPtr := S'First;
PPtr := P'First;
loop
-- Return True if pattern is a single asterisk
if PPtr = PLast and then P (PPtr) = '*' then
return True;
-- Return True if both pattern and string exhausted
elsif PPtr > PLast and then SPtr > Slast then
return True;
-- Return False, if one exhausted and not the other
elsif PPtr > PLast or else SPtr > Slast then
return False;
-- Case where pattern starts with asterisk
elsif P (PPtr) = '*' then
-- Try all possible starting positions in S for match with
-- the remaining characters of the pattern. This is the
-- recursive call that implements the scanner backup.
for J in SPtr .. Slast loop
if Matches (S (J .. Slast), P (PPtr + 1 .. PLast)) then
return True;
end if;
end loop;
return False;
-- Dealt with end of string and *, advance if we have a match
elsif S (SPtr) = P (PPtr) then
SPtr := SPtr + 1;
PPtr := PPtr + 1;
-- If first characters do not match, that's decisive
else
return False;
end if;
end loop;
end Matches;
-- Start of processing for Warning_Specifically_Suppressed
begin
-- Loop through specific warning suppression entries
for J in Specific_Warnings.First .. Specific_Warnings.Last loop
declare
SWE : Specific_Warning_Entry renames Specific_Warnings.Table (J);
begin
-- Pragma applies if it is a configuration pragma, or if the
-- location is in range of a specific non-configuration pragma.
if SWE.Config
or else (SWE.Start <= Loc and then Loc <= SWE.Stop)
then
if Matches (Msg.all, SWE.Msg.all) then
SWE.Used := True;
return True;
end if;
end if;
end;
end loop;
return False;
end Warning_Specifically_Suppressed;
-------------------------
-- Warnings_Suppressed --
-------------------------
function Warnings_Suppressed (Loc : Source_Ptr) return Boolean is
begin
if Warning_Mode = Suppress then
return True;
end if;
-- Loop through table of ON/OFF warnings
for J in Warnings.First .. Warnings.Last loop
if Warnings.Table (J).Start <= Loc
and then Loc <= Warnings.Table (J).Stop
then
return True;
end if;
end loop;
return False;
end Warnings_Suppressed;
end Erroutc;
|
src/pipe_streams.adb | aeszter/sharepoint2ics | 0 | 15163 | <reponame>aeszter/sharepoint2ics
with Ada.IO_Exceptions;
with POSIX.Process_Primitives; use POSIX.Process_Primitives;
with POSIX.Process_Identification; use POSIX.Process_Identification;
with POSIX.Process_Environment; use POSIX.Process_Environment;
package body Pipe_Streams is
---------------
-- Next_Char --
---------------
overriding procedure Next_Char
(From : in out Pipe_Stream;
C : out Unicode.Unicode_Char) is
begin
if From.Position >= Integer (From.Last_Read) then
POSIX.IO.Read (File => From.Pipe,
Buffer => From.Buffer,
Last => From.Last_Read);
From.Position := 0;
end if;
From.Position := From.Position + 1;
C := Unicode.To_Unicode (Standard.Character (From.Buffer (From.Position)));
exception
when Ada.IO_Exceptions.End_Error =>
From.Eof_Reached := True;
C := Unicode.To_Unicode (Standard.Character (LF));
end Next_Char;
---------
-- Eof --
---------
overriding function Eof (From : Pipe_Stream) return Boolean is
begin
return From.Eof_Reached;
end Eof;
-----------
-- Close --
-----------
overriding procedure Close (Input : in out Pipe_Stream) is
Status : Termination_Status;
begin
Wait_For_Child_Process (Status => Status, Child => Input.PID);
Input_Sources.Close (Input_Source (Input));
case Exit_Status_Of (Status) is
when Normal_Exit => return;
when Failed_Creation_Exit => raise Failed_Creation_Error;
when Unhandled_Exception_Exit => raise Exception_Error;
when others => raise Other_Error with Exit_Status_Of (Status)'Img;
end case;
end Close;
-------------
-- execute --
-------------
procedure Execute (P : in out Pipe_Stream;
Command : String;
Arguments : POSIX_String_List)
is
To_QView : POSIX.IO.File_Descriptor;
Template : Process_Template;
Env : POSIX.Process_Environment.Environment;
begin
POSIX.IO.Create_Pipe (Read_End => P.Pipe,
Write_End => To_QView);
Open_Template (Template);
Set_File_Action_To_Close (Template => Template,
File => P.Pipe);
Set_File_Action_To_Duplicate (Template => Template,
File => Standard_Output,
From_File => To_QView);
Start_Process (Child => P.PID,
Pathname => To_POSIX_String (Command),
Template => Template,
Arg_List => Arguments,
Env_List => Env);
Close (File => To_QView);
end Execute;
end Pipe_Streams;
|
Automaton/NonDeterministic.agda | Lolirofle/stuff-in-agda | 6 | 750 | module Automaton.NonDeterministic where
import Lvl
open import Data.Boolean
import Data.Boolean.Operators
open Data.Boolean.Operators.Programming
open import Data.List using (List) renaming (∅ to ε ; _⊰_ to _·_)
open import Functional
open import Logic
open import Sets.ExtensionalPredicateSet
open import Structure.Setoid
open import Type
-- Non-deterministic Automata
-- `State` (Q) is the set of states.
-- `Alphabet` (Σ) is the set of symbols/the alphabet.
-- `transition` (δ) is the transition function.
-- `start` (q₀) is the start state.
-- `Final` (F) is the subset of State which are the final/accepting states.
record NonDeterministic {ℓₚ ℓₛ ℓₑ ℓₐ} (State : Type{ℓₛ}) ⦃ equiv-state : Equiv{ℓₑ}(State) ⦄ (Alphabet : Type{ℓₐ}) : Type{ℓₛ Lvl.⊔ ℓₑ Lvl.⊔ ℓₐ Lvl.⊔ Lvl.𝐒(ℓₚ)} where
constructor nondeterministic
field
transition : State → Alphabet → PredSet{ℓₚ}(State)
start : State
Final : PredSet{ℓₚ}(State)
Word = List(Alphabet)
-- Chained transition using a word (list of characters).
wordTransition : State → Word → PredSet{ℓₑ}(State)
wordTransition initialState ε = • initialState
wordTransition initialState (a · l) = {!⋃ ?!} -- wordTransition (transition initialState a) l
{-
module LetterNotation where
Q = State
Σ = Alphabet
δ = transition
δ̂ = wordTransition
q₀ = start
F = Final
-- A word is accepted by the automaton when it can transition from the start state to a final state.
AcceptsWord : Word → Stmt
AcceptsWord = (_∈ Final) ∘ wordTransition start
-- The subset of State which are the accessible states from the start state by chained transitions.
Accessible : PredSet(State)
Accessible = ⊶(wordTransition start)
automatonTransition : Alphabet → NonDeterministic(State)(Alphabet)
transition (automatonTransition _) = transition
start (automatonTransition c) = transition start c
Final (automatonTransition _) = Final
automatonTransitionWord : Word → NonDeterministic(State)(Alphabet)
transition (automatonTransitionWord _) = transition
start (automatonTransitionWord w) = wordTransition start w
Final (automatonTransitionWord _) = Final
-}
|
code/FFmpeg/SMP/config.asm | timkingh/FFmpeg_VS | 0 | 28134 | ;******* Automatically generated configuration values
;*
;* 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.
;******
%define ARCH_AARCH64 0
%define ARCH_ALPHA 0
%define ARCH_ARM 0
%define ARCH_AVR32 0
%define ARCH_AVR32_AP 0
%define ARCH_AVR32_UC 0
%define ARCH_BFIN 0
%define ARCH_IA64 0
%define ARCH_M68K 0
%define ARCH_MIPS 0
%define ARCH_MIPS64 0
%define ARCH_PARISC 0
%define ARCH_PPC 0
%define ARCH_PPC64 0
%define ARCH_S390 0
%define ARCH_SH4 0
%define ARCH_SPARC 0
%define ARCH_SPARC64 0
%define ARCH_TILEGX 0
%define ARCH_TILEPRO 0
%define ARCH_TOMI 0
%define ARCH_X86 1
%if __BITS__ = 64
%define ARCH_X86_32 0
%elif __BITS__ = 32
%define ARCH_X86_32 1
%define PREFIX
%endif
%if __BITS__ = 64
%define ARCH_X86_64 1
%elif __BITS__ = 32
%define ARCH_X86_64 0
%endif
%define HAVE_ARMV5TE 0
%define HAVE_ARMV6 0
%define HAVE_ARMV6T2 0
%define HAVE_ARMV8 0
%define HAVE_NEON 0
%define HAVE_VFP 0
%define HAVE_VFPV3 0
%define HAVE_SETEND 0
%define HAVE_ALTIVEC 0
%define HAVE_DCBZL 0
%define HAVE_LDBRX 0
%define HAVE_POWER8 0
%define HAVE_PPC4XX 0
%define HAVE_VSX 0
%define HAVE_AESNI 1
%define HAVE_AMD3DNOW 1
%define HAVE_AMD3DNOWEXT 1
%define HAVE_AVX 1
%define HAVE_AVX2 1
%define HAVE_AVX512 1
%define HAVE_FMA3 1
%define HAVE_FMA4 1
%define HAVE_MMX 1
%define HAVE_MMXEXT 1
%define HAVE_SSE 1
%define HAVE_SSE2 1
%define HAVE_SSE3 1
%define HAVE_SSE4 1
%define HAVE_SSE42 1
%define HAVE_SSSE3 1
%define HAVE_XOP 1
%define HAVE_CPUNOP 0
%define HAVE_I686 1
%define HAVE_MIPSFPU 0
%define HAVE_MIPS32R2 0
%define HAVE_MIPS32R5 0
%define HAVE_MIPS64R2 0
%define HAVE_MIPS32R6 0
%define HAVE_MIPS64R6 0
%define HAVE_MIPSDSP 0
%define HAVE_MIPSDSPR2 0
%define HAVE_MSA 0
%define HAVE_LOONGSON2 0
%define HAVE_LOONGSON3 0
%define HAVE_MMI 0
%define HAVE_ARMV5TE_EXTERNAL 0
%define HAVE_ARMV6_EXTERNAL 0
%define HAVE_ARMV6T2_EXTERNAL 0
%define HAVE_ARMV8_EXTERNAL 0
%define HAVE_NEON_EXTERNAL 0
%define HAVE_VFP_EXTERNAL 0
%define HAVE_VFPV3_EXTERNAL 0
%define HAVE_SETEND_EXTERNAL 0
%define HAVE_ALTIVEC_EXTERNAL 0
%define HAVE_DCBZL_EXTERNAL 0
%define HAVE_LDBRX_EXTERNAL 0
%define HAVE_POWER8_EXTERNAL 0
%define HAVE_PPC4XX_EXTERNAL 0
%define HAVE_VSX_EXTERNAL 0
%define HAVE_AESNI_EXTERNAL 1
%define HAVE_AMD3DNOW_EXTERNAL 1
%define HAVE_AMD3DNOWEXT_EXTERNAL 1
%define HAVE_AVX_EXTERNAL 1
%define HAVE_AVX2_EXTERNAL 1
%define HAVE_AVX512_EXTERNAL 1
%define HAVE_FMA3_EXTERNAL 1
%define HAVE_FMA4_EXTERNAL 1
%define HAVE_MMX_EXTERNAL 1
%define HAVE_MMXEXT_EXTERNAL 1
%define HAVE_SSE_EXTERNAL 1
%define HAVE_SSE2_EXTERNAL 1
%define HAVE_SSE3_EXTERNAL 1
%define HAVE_SSE4_EXTERNAL 1
%define HAVE_SSE42_EXTERNAL 1
%define HAVE_SSSE3_EXTERNAL 1
%define HAVE_XOP_EXTERNAL 1
%define HAVE_CPUNOP_EXTERNAL 0
%define HAVE_I686_EXTERNAL 1
%define HAVE_MIPSFPU_EXTERNAL 0
%define HAVE_MIPS32R2_EXTERNAL 0
%define HAVE_MIPS32R5_EXTERNAL 0
%define HAVE_MIPS64R2_EXTERNAL 0
%define HAVE_MIPS32R6_EXTERNAL 0
%define HAVE_MIPS64R6_EXTERNAL 0
%define HAVE_MIPSDSP_EXTERNAL 0
%define HAVE_MIPSDSPR2_EXTERNAL 0
%define HAVE_MSA_EXTERNAL 0
%define HAVE_LOONGSON2_EXTERNAL 0
%define HAVE_LOONGSON3_EXTERNAL 0
%define HAVE_MMI_EXTERNAL 0
%define HAVE_ARMV5TE_INLINE 0
%define HAVE_ARMV6_INLINE 0
%define HAVE_ARMV6T2_INLINE 0
%define HAVE_ARMV8_INLINE 0
%define HAVE_NEON_INLINE 0
%define HAVE_VFP_INLINE 0
%define HAVE_VFPV3_INLINE 0
%define HAVE_SETEND_INLINE 0
%define HAVE_ALTIVEC_INLINE 0
%define HAVE_DCBZL_INLINE 0
%define HAVE_LDBRX_INLINE 0
%define HAVE_POWER8_INLINE 0
%define HAVE_PPC4XX_INLINE 0
%define HAVE_VSX_INLINE 0
%define HAVE_AESNI_INLINE 1
%define HAVE_AMD3DNOW_INLINE 1
%define HAVE_AMD3DNOWEXT_INLINE 1
%define HAVE_AVX_INLINE 1
%define HAVE_AVX2_INLINE 1
%define HAVE_AVX512_INLINE 1
%define HAVE_FMA3_INLINE 1
%define HAVE_FMA4_INLINE 1
%define HAVE_MMX_INLINE 1
%define HAVE_MMXEXT_INLINE 1
%define HAVE_SSE_INLINE 1
%define HAVE_SSE2_INLINE 1
%define HAVE_SSE3_INLINE 1
%define HAVE_SSE4_INLINE 1
%define HAVE_SSE42_INLINE 1
%define HAVE_SSSE3_INLINE 1
%define HAVE_XOP_INLINE 1
%define HAVE_CPUNOP_INLINE 1
%define HAVE_I686_INLINE 1
%define HAVE_MIPSFPU_INLINE 0
%define HAVE_MIPS32R2_INLINE 0
%define HAVE_MIPS32R5_INLINE 0
%define HAVE_MIPS64R2_INLINE 0
%define HAVE_MIPS32R6_INLINE 0
%define HAVE_MIPS64R6_INLINE 0
%define HAVE_MIPSDSP_INLINE 0
%define HAVE_MIPSDSPR2_INLINE 0
%define HAVE_MSA_INLINE 0
%define HAVE_LOONGSON2_INLINE 0
%define HAVE_LOONGSON3_INLINE 0
%define HAVE_MMI_INLINE 0
%if __BITS__ = 64
%define HAVE_ALIGNED_STACK 1
%elif __BITS__ = 32
%define HAVE_ALIGNED_STACK 0
%endif
%if __BITS__ = 64
%define HAVE_FAST_64BIT 1
%elif __BITS__ = 32
%define HAVE_FAST_64BIT 0
%endif
%define HAVE_FAST_CLZ 1
%define HAVE_FAST_CMOV 1
%define HAVE_LOCAL_ALIGNED 1
%define HAVE_SIMD_ALIGN_16 1
%define HAVE_SIMD_ALIGN_32 1
%define HAVE_SIMD_ALIGN_64 1
%define HAVE_ATOMIC_CAS_PTR 0
%define HAVE_MACHINE_RW_BARRIER 0
%define HAVE_MEMORYBARRIER 1
%define HAVE_MM_EMPTY 1
%define HAVE_RDTSC 1
%define HAVE_SEM_TIMEDWAIT 0
%define HAVE_SYNC_VAL_COMPARE_AND_SWAP 0
%define HAVE_CABS 0
%define HAVE_CEXP 0
%define HAVE_INLINE_ASM 1
%define HAVE_SYMVER 0
%define HAVE_X86ASM 1
%define HAVE_BIGENDIAN 0
%define HAVE_FAST_UNALIGNED 1
%define HAVE_ARPA_INET_H 0
%define HAVE_ASM_TYPES_H 0
%define HAVE_CDIO_PARANOIA_H 0
%define HAVE_CDIO_PARANOIA_PARANOIA_H 1
%define HAVE_CUDA_H 0
%define HAVE_DISPATCH_DISPATCH_H 0
%define HAVE_DEV_BKTR_IOCTL_BT848_H 0
%define HAVE_DEV_BKTR_IOCTL_METEOR_H 0
%define HAVE_DEV_IC_BT8XX_H 0
%define HAVE_DEV_VIDEO_BKTR_IOCTL_BT848_H 0
%define HAVE_DEV_VIDEO_METEOR_IOCTL_METEOR_H 0
%define HAVE_DIRECT_H 1
%define HAVE_DIRENT_H 0
%define HAVE_DXGIDEBUG_H 1
%define HAVE_DXVA_H 1
%define HAVE_ES2_GL_H 0
%define HAVE_GSM_H 0
%define HAVE_IO_H 1
%define HAVE_LINUX_PERF_EVENT_H 0
%define HAVE_MACHINE_IOCTL_BT848_H 0
%define HAVE_MACHINE_IOCTL_METEOR_H 0
%define HAVE_MALLOC_H 1
%define HAVE_OPENCV2_CORE_CORE_C_H 0
%define HAVE_OPENGL_GL3_H 0
%define HAVE_POLL_H 0
%define HAVE_SYS_PARAM_H 0
%define HAVE_SYS_RESOURCE_H 0
%define HAVE_SYS_SELECT_H 0
%define HAVE_SYS_SOUNDCARD_H 0
%define HAVE_SYS_TIME_H 0
%define HAVE_SYS_UN_H 0
%define HAVE_SYS_VIDEOIO_H 0
%define HAVE_TERMIOS_H 0
%define HAVE_UDPLITE_H 0
%define HAVE_UNISTD_H 1
%define HAVE_VALGRIND_VALGRIND_H 0
%define HAVE_WINDOWS_H 1
%define HAVE_WINSOCK2_H 1
%define HAVE_INTRINSICS_NEON 0
%define HAVE_ATANF 1
%define HAVE_ATAN2F 1
%define HAVE_CBRT 1
%define HAVE_CBRTF 1
%define HAVE_COPYSIGN 1
%define HAVE_COSF 1
%define HAVE_ERF 1
%define HAVE_EXP2 1
%define HAVE_EXP2F 1
%define HAVE_EXPF 1
%define HAVE_HYPOT 1
%define HAVE_ISFINITE 1
%define HAVE_ISINF 1
%define HAVE_ISNAN 1
%define HAVE_LDEXPF 1
%define HAVE_LLRINT 1
%define HAVE_LLRINTF 1
%define HAVE_LOG2 1
%define HAVE_LOG2F 1
%define HAVE_LOG10F 1
%define HAVE_LRINT 1
%define HAVE_LRINTF 1
%define HAVE_POWF 1
%define HAVE_RINT 1
%define HAVE_ROUND 1
%define HAVE_ROUNDF 1
%define HAVE_SINF 1
%define HAVE_TRUNC 1
%define HAVE_TRUNCF 1
%define HAVE_DOS_PATHS 1
%define HAVE_LIBC_MSVCRT 1
%define HAVE_MMAL_PARAMETER_VIDEO_MAX_NUM_CALLBACKS 0
%define HAVE_SECTION_DATA_REL_RO 0
%define HAVE_THREADS 1
%define HAVE_UWP 0
%define HAVE_WINRT 0
%define HAVE_ACCESS 1
%define HAVE_ALIGNED_MALLOC 1
%define HAVE_ARC4RANDOM 0
%define HAVE_CLOCK_GETTIME 0
%define HAVE_CLOSESOCKET 1
%define HAVE_COMMANDLINETOARGVW 1
%define HAVE_FCNTL 0
%define HAVE_GETADDRINFO 1
%define HAVE_GETHRTIME 0
%define HAVE_GETOPT 0
%define HAVE_GETPROCESSAFFINITYMASK 1
%define HAVE_GETPROCESSMEMORYINFO 1
%define HAVE_GETPROCESSTIMES 1
%define HAVE_GETRUSAGE 0
%define HAVE_GETSYSTEMTIMEASFILETIME 1
%define HAVE_GETTIMEOFDAY 0
%define HAVE_GLOB 0
%define HAVE_GLXGETPROCADDRESS 0
%define HAVE_GMTIME_R 0
%define HAVE_INET_ATON 0
%define HAVE_ISATTY 1
%define HAVE_KBHIT 1
%define HAVE_LOCALTIME_R 0
%define HAVE_LSTAT 0
%define HAVE_LZO1X_999_COMPRESS 0
%define HAVE_MACH_ABSOLUTE_TIME 0
%define HAVE_MAPVIEWOFFILE 1
%define HAVE_MEMALIGN 0
%define HAVE_MKSTEMP 0
%define HAVE_MMAP 0
%define HAVE_MPROTECT 0
%define HAVE_NANOSLEEP 0
%define HAVE_PEEKNAMEDPIPE 1
%define HAVE_POSIX_MEMALIGN 0
%define HAVE_PTHREAD_CANCEL 0
%define HAVE_SCHED_GETAFFINITY 0
%define HAVE_SECITEMIMPORT 0
%define HAVE_SETCONSOLETEXTATTRIBUTE 1
%define HAVE_SETCONSOLECTRLHANDLER 1
%define HAVE_SETMODE 1
%define HAVE_SETRLIMIT 0
%define HAVE_SLEEP 1
%define HAVE_STRERROR_R 0
%define HAVE_SYSCONF 0
%define HAVE_SYSCTL 0
%define HAVE_USLEEP 0
%define HAVE_UTGETOSTYPEFROMSTRING 0
%define HAVE_VIRTUALALLOC 1
%define HAVE_WGLGETPROCADDRESS 1
%define HAVE_BCRYPT 1
%define HAVE_VAAPI_DRM 0
%define HAVE_VAAPI_X11 0
%define HAVE_VDPAU_X11 0
%define HAVE_PTHREADS 0
%define HAVE_OS2THREADS 0
%define HAVE_W32THREADS 1
%define HAVE_AS_ARCH_DIRECTIVE 0
%define HAVE_AS_DN_DIRECTIVE 0
%define HAVE_AS_FPU_DIRECTIVE 0
%define HAVE_AS_FUNC 0
%define HAVE_AS_OBJECT_ARCH 0
%define HAVE_ASM_MOD_Q 0
%define HAVE_BLOCKS_EXTENSION 0
%define HAVE_EBP_AVAILABLE 1
%define HAVE_EBX_AVAILABLE 1
%define HAVE_GNU_AS 0
%define HAVE_GNU_WINDRES 0
%define HAVE_IBM_ASM 0
%define HAVE_INLINE_ASM_DIRECT_SYMBOL_REFS 0
%define HAVE_INLINE_ASM_LABELS 1
%define HAVE_INLINE_ASM_NONLOCAL_LABELS 0
%define HAVE_PRAGMA_DEPRECATED 1
%define HAVE_RSYNC_CONTIMEOUT 1
%define HAVE_SYMVER_ASM_LABEL 0
%define HAVE_SYMVER_GNU_ASM 0
%define HAVE_VFP_ARGS 0
%define HAVE_XFORM_ASM 0
%define HAVE_XMM_CLOBBERS 1
%define HAVE_KCMVIDEOCODECTYPE_HEVC 0
%define HAVE_SOCKLEN_T 1
%define HAVE_STRUCT_ADDRINFO 1
%define HAVE_STRUCT_GROUP_SOURCE_REQ 1
%define HAVE_STRUCT_IP_MREQ_SOURCE 1
%define HAVE_STRUCT_IPV6_MREQ 1
%define HAVE_STRUCT_MSGHDR_MSG_FLAGS 0
%define HAVE_STRUCT_POLLFD 1
%define HAVE_STRUCT_RUSAGE_RU_MAXRSS 0
%define HAVE_STRUCT_SCTP_EVENT_SUBSCRIBE 0
%define HAVE_STRUCT_SOCKADDR_IN6 1
%define HAVE_STRUCT_SOCKADDR_SA_LEN 0
%define HAVE_STRUCT_SOCKADDR_STORAGE 1
%define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 0
%define HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE 0
%define HAVE_MAKEINFO 0
%define HAVE_MAKEINFO_HTML 0
%define HAVE_OPENCL_D3D11 0
%define HAVE_OPENCL_DRM_ARM 0
%define HAVE_OPENCL_DRM_BEIGNET 0
%define HAVE_OPENCL_DXVA2 0
%define HAVE_OPENCL_VAAPI_BEIGNET 0
%define HAVE_OPENCL_VAAPI_INTEL_MEDIA 0
%define HAVE_PERL 0
%define HAVE_POD2MAN 0
%define HAVE_TEXI2HTML 0
%define CONFIG_DOC 0
%define CONFIG_HTMLPAGES 0
%define CONFIG_MANPAGES 0
%define CONFIG_PODPAGES 0
%define CONFIG_TXTPAGES 0
%define CONFIG_AVIO_DIR_CMD_EXAMPLE 0
%define CONFIG_AVIO_READING_EXAMPLE 0
%define CONFIG_DECODE_AUDIO_EXAMPLE 0
%define CONFIG_DECODE_VIDEO_EXAMPLE 0
%define CONFIG_DEMUXING_DECODING_EXAMPLE 0
%define CONFIG_ENCODE_AUDIO_EXAMPLE 0
%define CONFIG_ENCODE_VIDEO_EXAMPLE 0
%define CONFIG_EXTRACT_MVS_EXAMPLE 0
%define CONFIG_FILTER_AUDIO_EXAMPLE 0
%define CONFIG_FILTERING_AUDIO_EXAMPLE 0
%define CONFIG_FILTERING_VIDEO_EXAMPLE 0
%define CONFIG_HTTP_MULTICLIENT_EXAMPLE 0
%define CONFIG_HW_DECODE_EXAMPLE 0
%define CONFIG_METADATA_EXAMPLE 0
%define CONFIG_MUXING_EXAMPLE 0
%define CONFIG_QSVDEC_EXAMPLE 0
%define CONFIG_REMUXING_EXAMPLE 0
%define CONFIG_RESAMPLING_AUDIO_EXAMPLE 0
%define CONFIG_SCALING_VIDEO_EXAMPLE 0
%define CONFIG_TRANSCODE_AAC_EXAMPLE 0
%define CONFIG_TRANSCODING_EXAMPLE 0
%define CONFIG_VAAPI_ENCODE_EXAMPLE 0
%define CONFIG_VAAPI_TRANSCODE_EXAMPLE 0
%define CONFIG_AVISYNTH 1
%define CONFIG_FREI0R 0
%define CONFIG_LIBCDIO 1
%define CONFIG_LIBDAVS2 0
%define CONFIG_LIBRUBBERBAND 0
%define CONFIG_LIBVIDSTAB 0
%define CONFIG_LIBX264 1
%define CONFIG_LIBX265 1
%define CONFIG_LIBXAVS 0
%define CONFIG_LIBXAVS2 0
%define CONFIG_LIBXVID 1
%define CONFIG_DECKLINK 0
%define CONFIG_LIBNDI_NEWTEK 0
%define CONFIG_LIBFDK_AAC 0
%define CONFIG_OPENSSL 0
%define CONFIG_LIBTLS 0
%define CONFIG_GMP 0
%define CONFIG_LIBLENSFUN 0
%define CONFIG_LIBOPENCORE_AMRNB 0
%define CONFIG_LIBOPENCORE_AMRWB 0
%define CONFIG_LIBVMAF 0
%define CONFIG_LIBVO_AMRWBENC 0
%define CONFIG_MBEDTLS 0
%define CONFIG_RKMPP 0
%define CONFIG_LIBSMBCLIENT 0
%define CONFIG_CHROMAPRINT 0
%define CONFIG_GCRYPT 1
%define CONFIG_GNUTLS 1
%define CONFIG_JNI 0
%define CONFIG_LADSPA 0
%define CONFIG_LIBAOM 0
%define CONFIG_LIBASS 1
%define CONFIG_LIBBLURAY 1
%define CONFIG_LIBBS2B 0
%define CONFIG_LIBCACA 0
%define CONFIG_LIBCELT 0
%define CONFIG_LIBCODEC2 0
%define CONFIG_LIBDAV1D 0
%define CONFIG_LIBDC1394 0
%define CONFIG_LIBDRM 0
%define CONFIG_LIBFLITE 0
%define CONFIG_LIBFONTCONFIG 1
%define CONFIG_LIBFREETYPE 1
%define CONFIG_LIBFRIBIDI 1
%define CONFIG_LIBGME 1
%define CONFIG_LIBGSM 0
%define CONFIG_LIBIEC61883 0
%define CONFIG_LIBILBC 1
%define CONFIG_LIBJACK 0
%define CONFIG_LIBKLVANC 0
%define CONFIG_LIBKVAZAAR 0
%define CONFIG_LIBMODPLUG 1
%define CONFIG_LIBMP3LAME 1
%define CONFIG_LIBMYSOFA 0
%define CONFIG_LIBOPENCV 0
%define CONFIG_LIBOPENH264 0
%define CONFIG_LIBOPENJPEG 0
%define CONFIG_LIBOPENMPT 0
%define CONFIG_LIBOPUS 1
%define CONFIG_LIBPULSE 0
%define CONFIG_LIBRSVG 0
%define CONFIG_LIBRTMP 0
%define CONFIG_LIBSHINE 0
%define CONFIG_LIBSMBCLIENT 0
%define CONFIG_LIBSNAPPY 0
%define CONFIG_LIBSOXR 1
%define CONFIG_LIBSPEEX 1
%define CONFIG_LIBSRT 0
%define CONFIG_LIBSSH 1
%define CONFIG_LIBTENSORFLOW 0
%define CONFIG_LIBTESSERACT 0
%define CONFIG_LIBTHEORA 1
%define CONFIG_LIBTWOLAME 0
%define CONFIG_LIBV4L2 0
%define CONFIG_LIBVORBIS 1
%define CONFIG_LIBVPX 1
%define CONFIG_LIBWAVPACK 0
%define CONFIG_LIBWEBP 0
%define CONFIG_LIBXML2 1
%define CONFIG_LIBZIMG 0
%define CONFIG_LIBZMQ 0
%define CONFIG_LIBZVBI 0
%define CONFIG_LV2 0
%define CONFIG_MEDIACODEC 0
%define CONFIG_OPENAL 0
%define CONFIG_OPENGL 1
%define CONFIG_VAPOURSYNTH 0
%define CONFIG_ALSA 0
%define CONFIG_APPKIT 0
%define CONFIG_AVFOUNDATION 0
%define CONFIG_BZLIB 1
%define CONFIG_COREIMAGE 0
%define CONFIG_ICONV 1
%define CONFIG_LIBXCB 0
%define CONFIG_LIBXCB_SHM 0
%define CONFIG_LIBXCB_SHAPE 0
%define CONFIG_LIBXCB_XFIXES 0
%define CONFIG_LZMA 1
%define CONFIG_SCHANNEL 0
%define CONFIG_SDL2 1
%define CONFIG_SECURETRANSPORT 0
%define CONFIG_SNDIO 0
%define CONFIG_XLIB 0
%define CONFIG_ZLIB 1
%define CONFIG_CUDA_SDK 0
%define CONFIG_LIBNPP 0
%define CONFIG_LIBMFX 1
%define CONFIG_MMAL 0
%define CONFIG_OMX 0
%define CONFIG_OPENCL 0
%define CONFIG_AMF 1
%define CONFIG_AUDIOTOOLBOX 0
%define CONFIG_CRYSTALHD 0
%define CONFIG_CUDA 1
%define CONFIG_CUVID 1
%define CONFIG_D3D11VA 1
%define CONFIG_DXVA2 1
%define CONFIG_FFNVCODEC 1
%define CONFIG_NVDEC 1
%define CONFIG_NVENC 1
%define CONFIG_VAAPI 0
%define CONFIG_VDPAU 0
%define CONFIG_VIDEOTOOLBOX 0
%define CONFIG_V4L2_M2M 0
%define CONFIG_XVMC 0
%define CONFIG_FTRAPV 0
%define CONFIG_GRAY 0
%define CONFIG_HARDCODED_TABLES 0
%define CONFIG_OMX_RPI 0
%define CONFIG_RUNTIME_CPUDETECT 1
%define CONFIG_SAFE_BITSTREAM_READER 1
%define CONFIG_SHARED 1
%define CONFIG_SMALL 0
%define CONFIG_STATIC 1
%define CONFIG_SWSCALE_ALPHA 1
%define CONFIG_GPL 1
%define CONFIG_NONFREE 0
%define CONFIG_VERSION3 1
%define CONFIG_AVDEVICE 1
%define CONFIG_AVFILTER 1
%define CONFIG_SWSCALE 1
%define CONFIG_POSTPROC 1
%define CONFIG_AVFORMAT 1
%define CONFIG_AVCODEC 1
%define CONFIG_SWRESAMPLE 1
%define CONFIG_AVRESAMPLE 0
%define CONFIG_AVUTIL 1
%define CONFIG_FFPLAY 1
%define CONFIG_FFPROBE 1
%define CONFIG_FFMPEG 1
%define CONFIG_DCT 1
%define CONFIG_DWT 1
%define CONFIG_ERROR_RESILIENCE 1
%define CONFIG_FAAN 1
%define CONFIG_FAST_UNALIGNED 1
%define CONFIG_FFT 1
%define CONFIG_LSP 1
%define CONFIG_LZO 1
%define CONFIG_MDCT 1
%define CONFIG_PIXELUTILS 1
%define CONFIG_NETWORK 1
%define CONFIG_RDFT 1
%define CONFIG_AUTODETECT 1
%define CONFIG_FONTCONFIG 1
%define CONFIG_LINUX_PERF 0
%define CONFIG_MEMORY_POISONING 0
%define CONFIG_NEON_CLOBBER_TEST 0
%define CONFIG_OSSFUZZ 0
%define CONFIG_PIC 0
%define CONFIG_THUMB 0
%define CONFIG_VALGRIND_BACKTRACE 0
%define CONFIG_XMM_CLOBBER_TEST 0
%define CONFIG_BSFS 1
%define CONFIG_DECODERS 1
%define CONFIG_ENCODERS 1
%define CONFIG_HWACCELS 1
%define CONFIG_PARSERS 1
%define CONFIG_INDEVS 1
%define CONFIG_OUTDEVS 1
%define CONFIG_FILTERS 1
%define CONFIG_DEMUXERS 1
%define CONFIG_MUXERS 1
%define CONFIG_PROTOCOLS 1
%define CONFIG_AANDCTTABLES 1
%define CONFIG_AC3DSP 1
%define CONFIG_ADTS_HEADER 1
%define CONFIG_AUDIO_FRAME_QUEUE 1
%define CONFIG_AUDIODSP 1
%define CONFIG_BLOCKDSP 1
%define CONFIG_BSWAPDSP 1
%define CONFIG_CABAC 1
%define CONFIG_CBS 1
%define CONFIG_CBS_AV1 1
%define CONFIG_CBS_H264 1
%define CONFIG_CBS_H265 1
%define CONFIG_CBS_JPEG 1
%define CONFIG_CBS_MPEG2 1
%define CONFIG_CBS_VP9 1
%define CONFIG_DIRAC_PARSE 1
%define CONFIG_DNN 1
%define CONFIG_DVPROFILE 1
%define CONFIG_EXIF 1
%define CONFIG_FAANDCT 1
%define CONFIG_FAANIDCT 1
%define CONFIG_FDCTDSP 1
%define CONFIG_FLACDSP 1
%define CONFIG_FMTCONVERT 1
%define CONFIG_FRAME_THREAD_ENCODER 1
%define CONFIG_G722DSP 1
%define CONFIG_GOLOMB 1
%define CONFIG_GPLV3 1
%define CONFIG_H263DSP 1
%define CONFIG_H264CHROMA 1
%define CONFIG_H264DSP 1
%define CONFIG_H264PARSE 1
%define CONFIG_H264PRED 1
%define CONFIG_H264QPEL 1
%define CONFIG_HEVCPARSE 1
%define CONFIG_HPELDSP 1
%define CONFIG_HUFFMAN 1
%define CONFIG_HUFFYUVDSP 1
%define CONFIG_HUFFYUVENCDSP 1
%define CONFIG_IDCTDSP 1
%define CONFIG_IIRFILTER 1
%define CONFIG_MDCT15 1
%define CONFIG_INTRAX8 1
%define CONFIG_ISO_MEDIA 1
%define CONFIG_IVIDSP 1
%define CONFIG_JPEGTABLES 1
%define CONFIG_LGPLV3 0
%define CONFIG_LIBX262 0
%define CONFIG_LLAUDDSP 1
%define CONFIG_LLVIDDSP 1
%define CONFIG_LLVIDENCDSP 1
%define CONFIG_LPC 1
%define CONFIG_LZF 1
%define CONFIG_ME_CMP 1
%define CONFIG_MPEG_ER 1
%define CONFIG_MPEGAUDIO 1
%define CONFIG_MPEGAUDIODSP 1
%define CONFIG_MPEGAUDIOHEADER 1
%define CONFIG_MPEGVIDEO 1
%define CONFIG_MPEGVIDEOENC 1
%define CONFIG_MSS34DSP 1
%define CONFIG_PIXBLOCKDSP 1
%define CONFIG_QPELDSP 1
%define CONFIG_QSV 1
%define CONFIG_QSVDEC 1
%define CONFIG_QSVENC 1
%define CONFIG_QSVVPP 1
%define CONFIG_RANGECODER 1
%define CONFIG_RIFFDEC 1
%define CONFIG_RIFFENC 1
%define CONFIG_RTPDEC 1
%define CONFIG_RTPENC_CHAIN 1
%define CONFIG_RV34DSP 1
%define CONFIG_SCENE_SAD 1
%define CONFIG_SINEWIN 1
%define CONFIG_SNAPPY 1
%define CONFIG_SRTP 1
%define CONFIG_STARTCODE 1
%define CONFIG_TEXTUREDSP 1
%define CONFIG_TEXTUREDSPENC 1
%define CONFIG_TPELDSP 1
%define CONFIG_VAAPI_1 0
%define CONFIG_VAAPI_ENCODE 0
%define CONFIG_VC1DSP 1
%define CONFIG_VIDEODSP 1
%define CONFIG_VP3DSP 1
%define CONFIG_VP56DSP 1
%define CONFIG_VP8DSP 1
%define CONFIG_WMA_FREQS 1
%define CONFIG_WMV2DSP 1
%define CONFIG_AAC_ADTSTOASC_BSF 1
%define CONFIG_AV1_METADATA_BSF 1
%define CONFIG_CHOMP_BSF 1
%define CONFIG_DUMP_EXTRADATA_BSF 1
%define CONFIG_DCA_CORE_BSF 1
%define CONFIG_EAC3_CORE_BSF 1
%define CONFIG_EXTRACT_EXTRADATA_BSF 1
%define CONFIG_FILTER_UNITS_BSF 1
%define CONFIG_H264_METADATA_BSF 1
%define CONFIG_H264_MP4TOANNEXB_BSF 1
%define CONFIG_H264_REDUNDANT_PPS_BSF 1
%define CONFIG_HAPQA_EXTRACT_BSF 1
%define CONFIG_HEVC_METADATA_BSF 1
%define CONFIG_HEVC_MP4TOANNEXB_BSF 1
%define CONFIG_IMX_DUMP_HEADER_BSF 1
%define CONFIG_MJPEG2JPEG_BSF 1
%define CONFIG_MJPEGA_DUMP_HEADER_BSF 1
%define CONFIG_MP3_HEADER_DECOMPRESS_BSF 1
%define CONFIG_MPEG2_METADATA_BSF 1
%define CONFIG_MPEG4_UNPACK_BFRAMES_BSF 1
%define CONFIG_MOV2TEXTSUB_BSF 1
%define CONFIG_NOISE_BSF 1
%define CONFIG_NULL_BSF 1
%define CONFIG_PRORES_METADATA_BSF 1
%define CONFIG_REMOVE_EXTRADATA_BSF 1
%define CONFIG_TEXT2MOVSUB_BSF 1
%define CONFIG_TRACE_HEADERS_BSF 1
%define CONFIG_TRUEHD_CORE_BSF 1
%define CONFIG_VP9_METADATA_BSF 1
%define CONFIG_VP9_RAW_REORDER_BSF 1
%define CONFIG_VP9_SUPERFRAME_BSF 1
%define CONFIG_VP9_SUPERFRAME_SPLIT_BSF 1
%define CONFIG_AASC_DECODER 1
%define CONFIG_AIC_DECODER 1
%define CONFIG_ALIAS_PIX_DECODER 1
%define CONFIG_AMV_DECODER 1
%define CONFIG_ANM_DECODER 1
%define CONFIG_ANSI_DECODER 1
%define CONFIG_APNG_DECODER 1
%define CONFIG_ASV1_DECODER 1
%define CONFIG_ASV2_DECODER 1
%define CONFIG_AURA_DECODER 1
%define CONFIG_AURA2_DECODER 1
%define CONFIG_AVRP_DECODER 1
%define CONFIG_AVRN_DECODER 1
%define CONFIG_AVS_DECODER 1
%define CONFIG_AVUI_DECODER 1
%define CONFIG_AYUV_DECODER 1
%define CONFIG_BETHSOFTVID_DECODER 1
%define CONFIG_BFI_DECODER 1
%define CONFIG_BINK_DECODER 1
%define CONFIG_BITPACKED_DECODER 1
%define CONFIG_BMP_DECODER 1
%define CONFIG_BMV_VIDEO_DECODER 1
%define CONFIG_BRENDER_PIX_DECODER 1
%define CONFIG_C93_DECODER 1
%define CONFIG_CAVS_DECODER 1
%define CONFIG_CDGRAPHICS_DECODER 1
%define CONFIG_CDXL_DECODER 1
%define CONFIG_CFHD_DECODER 1
%define CONFIG_CINEPAK_DECODER 1
%define CONFIG_CLEARVIDEO_DECODER 1
%define CONFIG_CLJR_DECODER 1
%define CONFIG_CLLC_DECODER 1
%define CONFIG_COMFORTNOISE_DECODER 1
%define CONFIG_CPIA_DECODER 1
%define CONFIG_CSCD_DECODER 1
%define CONFIG_CYUV_DECODER 1
%define CONFIG_DDS_DECODER 1
%define CONFIG_DFA_DECODER 1
%define CONFIG_DIRAC_DECODER 1
%define CONFIG_DNXHD_DECODER 1
%define CONFIG_DPX_DECODER 1
%define CONFIG_DSICINVIDEO_DECODER 1
%define CONFIG_DVAUDIO_DECODER 1
%define CONFIG_DVVIDEO_DECODER 1
%define CONFIG_DXA_DECODER 1
%define CONFIG_DXTORY_DECODER 1
%define CONFIG_DXV_DECODER 1
%define CONFIG_EACMV_DECODER 1
%define CONFIG_EAMAD_DECODER 1
%define CONFIG_EATGQ_DECODER 1
%define CONFIG_EATGV_DECODER 1
%define CONFIG_EATQI_DECODER 1
%define CONFIG_EIGHTBPS_DECODER 1
%define CONFIG_EIGHTSVX_EXP_DECODER 1
%define CONFIG_EIGHTSVX_FIB_DECODER 1
%define CONFIG_ESCAPE124_DECODER 1
%define CONFIG_ESCAPE130_DECODER 1
%define CONFIG_EXR_DECODER 1
%define CONFIG_FFV1_DECODER 1
%define CONFIG_FFVHUFF_DECODER 1
%define CONFIG_FIC_DECODER 1
%define CONFIG_FITS_DECODER 1
%define CONFIG_FLASHSV_DECODER 1
%define CONFIG_FLASHSV2_DECODER 1
%define CONFIG_FLIC_DECODER 1
%define CONFIG_FLV_DECODER 1
%define CONFIG_FMVC_DECODER 1
%define CONFIG_FOURXM_DECODER 1
%define CONFIG_FRAPS_DECODER 1
%define CONFIG_FRWU_DECODER 1
%define CONFIG_G2M_DECODER 1
%define CONFIG_GDV_DECODER 1
%define CONFIG_GIF_DECODER 1
%define CONFIG_H261_DECODER 1
%define CONFIG_H263_DECODER 1
%define CONFIG_H263I_DECODER 1
%define CONFIG_H263P_DECODER 1
%define CONFIG_H263_V4L2M2M_DECODER 0
%define CONFIG_H264_DECODER 1
%define CONFIG_H264_CRYSTALHD_DECODER 0
%define CONFIG_H264_V4L2M2M_DECODER 0
%define CONFIG_H264_MEDIACODEC_DECODER 0
%define CONFIG_H264_MMAL_DECODER 0
%define CONFIG_H264_QSV_DECODER 1
%define CONFIG_H264_RKMPP_DECODER 0
%define CONFIG_HAP_DECODER 1
%define CONFIG_HEVC_DECODER 1
%define CONFIG_HEVC_QSV_DECODER 1
%define CONFIG_HEVC_RKMPP_DECODER 0
%define CONFIG_HEVC_V4L2M2M_DECODER 0
%define CONFIG_HNM4_VIDEO_DECODER 1
%define CONFIG_HQ_HQA_DECODER 1
%define CONFIG_HQX_DECODER 1
%define CONFIG_HUFFYUV_DECODER 1
%define CONFIG_IDCIN_DECODER 1
%define CONFIG_IFF_ILBM_DECODER 1
%define CONFIG_IMM4_DECODER 1
%define CONFIG_INDEO2_DECODER 1
%define CONFIG_INDEO3_DECODER 1
%define CONFIG_INDEO4_DECODER 1
%define CONFIG_INDEO5_DECODER 1
%define CONFIG_INTERPLAY_VIDEO_DECODER 1
%define CONFIG_JPEG2000_DECODER 1
%define CONFIG_JPEGLS_DECODER 1
%define CONFIG_JV_DECODER 1
%define CONFIG_KGV1_DECODER 1
%define CONFIG_KMVC_DECODER 1
%define CONFIG_LAGARITH_DECODER 1
%define CONFIG_LOCO_DECODER 1
%define CONFIG_M101_DECODER 1
%define CONFIG_MAGICYUV_DECODER 1
%define CONFIG_MDEC_DECODER 1
%define CONFIG_MIMIC_DECODER 1
%define CONFIG_MJPEG_DECODER 1
%define CONFIG_MJPEGB_DECODER 1
%define CONFIG_MMVIDEO_DECODER 1
%define CONFIG_MOTIONPIXELS_DECODER 1
%define CONFIG_MPEG1VIDEO_DECODER 1
%define CONFIG_MPEG2VIDEO_DECODER 1
%define CONFIG_MPEG4_DECODER 1
%define CONFIG_MPEG4_CRYSTALHD_DECODER 0
%define CONFIG_MPEG4_V4L2M2M_DECODER 0
%define CONFIG_MPEG4_MMAL_DECODER 0
%define CONFIG_MPEGVIDEO_DECODER 1
%define CONFIG_MPEG1_V4L2M2M_DECODER 0
%define CONFIG_MPEG2_MMAL_DECODER 0
%define CONFIG_MPEG2_CRYSTALHD_DECODER 0
%define CONFIG_MPEG2_V4L2M2M_DECODER 0
%define CONFIG_MPEG2_QSV_DECODER 1
%define CONFIG_MPEG2_MEDIACODEC_DECODER 0
%define CONFIG_MSA1_DECODER 1
%define CONFIG_MSCC_DECODER 1
%define CONFIG_MSMPEG4V1_DECODER 1
%define CONFIG_MSMPEG4V2_DECODER 1
%define CONFIG_MSMPEG4V3_DECODER 1
%define CONFIG_MSMPEG4_CRYSTALHD_DECODER 0
%define CONFIG_MSRLE_DECODER 1
%define CONFIG_MSS1_DECODER 1
%define CONFIG_MSS2_DECODER 1
%define CONFIG_MSVIDEO1_DECODER 1
%define CONFIG_MSZH_DECODER 1
%define CONFIG_MTS2_DECODER 1
%define CONFIG_MVC1_DECODER 1
%define CONFIG_MVC2_DECODER 1
%define CONFIG_MWSC_DECODER 1
%define CONFIG_MXPEG_DECODER 1
%define CONFIG_NUV_DECODER 1
%define CONFIG_PAF_VIDEO_DECODER 1
%define CONFIG_PAM_DECODER 1
%define CONFIG_PBM_DECODER 1
%define CONFIG_PCX_DECODER 1
%define CONFIG_PGM_DECODER 1
%define CONFIG_PGMYUV_DECODER 1
%define CONFIG_PICTOR_DECODER 1
%define CONFIG_PIXLET_DECODER 1
%define CONFIG_PNG_DECODER 1
%define CONFIG_PPM_DECODER 1
%define CONFIG_PRORES_DECODER 1
%define CONFIG_PROSUMER_DECODER 1
%define CONFIG_PSD_DECODER 1
%define CONFIG_PTX_DECODER 1
%define CONFIG_QDRAW_DECODER 1
%define CONFIG_QPEG_DECODER 1
%define CONFIG_QTRLE_DECODER 1
%define CONFIG_R10K_DECODER 1
%define CONFIG_R210_DECODER 1
%define CONFIG_RASC_DECODER 1
%define CONFIG_RAWVIDEO_DECODER 1
%define CONFIG_RL2_DECODER 1
%define CONFIG_ROQ_DECODER 1
%define CONFIG_RPZA_DECODER 1
%define CONFIG_RSCC_DECODER 1
%define CONFIG_RV10_DECODER 1
%define CONFIG_RV20_DECODER 1
%define CONFIG_RV30_DECODER 1
%define CONFIG_RV40_DECODER 1
%define CONFIG_S302M_DECODER 1
%define CONFIG_SANM_DECODER 1
%define CONFIG_SCPR_DECODER 1
%define CONFIG_SCREENPRESSO_DECODER 1
%define CONFIG_SDX2_DPCM_DECODER 1
%define CONFIG_SGI_DECODER 1
%define CONFIG_SGIRLE_DECODER 1
%define CONFIG_SHEERVIDEO_DECODER 1
%define CONFIG_SMACKER_DECODER 1
%define CONFIG_SMC_DECODER 1
%define CONFIG_SMVJPEG_DECODER 1
%define CONFIG_SNOW_DECODER 1
%define CONFIG_SP5X_DECODER 1
%define CONFIG_SPEEDHQ_DECODER 1
%define CONFIG_SRGC_DECODER 1
%define CONFIG_SUNRAST_DECODER 1
%define CONFIG_SVQ1_DECODER 1
%define CONFIG_SVQ3_DECODER 1
%define CONFIG_TARGA_DECODER 1
%define CONFIG_TARGA_Y216_DECODER 1
%define CONFIG_TDSC_DECODER 1
%define CONFIG_THEORA_DECODER 1
%define CONFIG_THP_DECODER 1
%define CONFIG_TIERTEXSEQVIDEO_DECODER 1
%define CONFIG_TIFF_DECODER 1
%define CONFIG_TMV_DECODER 1
%define CONFIG_TRUEMOTION1_DECODER 1
%define CONFIG_TRUEMOTION2_DECODER 1
%define CONFIG_TRUEMOTION2RT_DECODER 1
%define CONFIG_TSCC_DECODER 1
%define CONFIG_TSCC2_DECODER 1
%define CONFIG_TXD_DECODER 1
%define CONFIG_ULTI_DECODER 1
%define CONFIG_UTVIDEO_DECODER 1
%define CONFIG_V210_DECODER 1
%define CONFIG_V210X_DECODER 1
%define CONFIG_V308_DECODER 1
%define CONFIG_V408_DECODER 1
%define CONFIG_V410_DECODER 1
%define CONFIG_VB_DECODER 1
%define CONFIG_VBLE_DECODER 1
%define CONFIG_VC1_DECODER 1
%define CONFIG_VC1_CRYSTALHD_DECODER 0
%define CONFIG_VC1IMAGE_DECODER 1
%define CONFIG_VC1_MMAL_DECODER 0
%define CONFIG_VC1_QSV_DECODER 1
%define CONFIG_VC1_V4L2M2M_DECODER 0
%define CONFIG_VCR1_DECODER 1
%define CONFIG_VMDVIDEO_DECODER 1
%define CONFIG_VMNC_DECODER 1
%define CONFIG_VP3_DECODER 1
%define CONFIG_VP5_DECODER 1
%define CONFIG_VP6_DECODER 1
%define CONFIG_VP6A_DECODER 1
%define CONFIG_VP6F_DECODER 1
%define CONFIG_VP7_DECODER 1
%define CONFIG_VP8_DECODER 1
%define CONFIG_VP8_RKMPP_DECODER 0
%define CONFIG_VP8_V4L2M2M_DECODER 0
%define CONFIG_VP9_DECODER 1
%define CONFIG_VP9_RKMPP_DECODER 0
%define CONFIG_VP9_V4L2M2M_DECODER 0
%define CONFIG_VQA_DECODER 1
%define CONFIG_WEBP_DECODER 1
%define CONFIG_WCMV_DECODER 1
%define CONFIG_WRAPPED_AVFRAME_DECODER 1
%define CONFIG_WMV1_DECODER 1
%define CONFIG_WMV2_DECODER 1
%define CONFIG_WMV3_DECODER 1
%define CONFIG_WMV3_CRYSTALHD_DECODER 0
%define CONFIG_WMV3IMAGE_DECODER 1
%define CONFIG_WNV1_DECODER 1
%define CONFIG_XAN_WC3_DECODER 1
%define CONFIG_XAN_WC4_DECODER 1
%define CONFIG_XBM_DECODER 1
%define CONFIG_XFACE_DECODER 1
%define CONFIG_XL_DECODER 1
%define CONFIG_XPM_DECODER 1
%define CONFIG_XWD_DECODER 1
%define CONFIG_Y41P_DECODER 1
%define CONFIG_YLC_DECODER 1
%define CONFIG_YOP_DECODER 1
%define CONFIG_YUV4_DECODER 1
%define CONFIG_ZERO12V_DECODER 1
%define CONFIG_ZEROCODEC_DECODER 1
%define CONFIG_ZLIB_DECODER 1
%define CONFIG_ZMBV_DECODER 1
%define CONFIG_AAC_DECODER 1
%define CONFIG_AAC_FIXED_DECODER 1
%define CONFIG_AAC_LATM_DECODER 1
%define CONFIG_AC3_DECODER 1
%define CONFIG_AC3_FIXED_DECODER 1
%define CONFIG_ALAC_DECODER 1
%define CONFIG_ALS_DECODER 1
%define CONFIG_AMRNB_DECODER 1
%define CONFIG_AMRWB_DECODER 1
%define CONFIG_APE_DECODER 1
%define CONFIG_APTX_DECODER 1
%define CONFIG_APTX_HD_DECODER 1
%define CONFIG_ATRAC1_DECODER 1
%define CONFIG_ATRAC3_DECODER 1
%define CONFIG_ATRAC3AL_DECODER 1
%define CONFIG_ATRAC3P_DECODER 1
%define CONFIG_ATRAC3PAL_DECODER 1
%define CONFIG_ATRAC9_DECODER 1
%define CONFIG_BINKAUDIO_DCT_DECODER 1
%define CONFIG_BINKAUDIO_RDFT_DECODER 1
%define CONFIG_BMV_AUDIO_DECODER 1
%define CONFIG_COOK_DECODER 1
%define CONFIG_DCA_DECODER 1
%define CONFIG_DOLBY_E_DECODER 1
%define CONFIG_DSD_LSBF_DECODER 1
%define CONFIG_DSD_MSBF_DECODER 1
%define CONFIG_DSD_LSBF_PLANAR_DECODER 1
%define CONFIG_DSD_MSBF_PLANAR_DECODER 1
%define CONFIG_DSICINAUDIO_DECODER 1
%define CONFIG_DSS_SP_DECODER 1
%define CONFIG_DST_DECODER 1
%define CONFIG_EAC3_DECODER 1
%define CONFIG_EVRC_DECODER 1
%define CONFIG_FFWAVESYNTH_DECODER 1
%define CONFIG_FLAC_DECODER 1
%define CONFIG_G723_1_DECODER 1
%define CONFIG_G729_DECODER 1
%define CONFIG_GSM_DECODER 1
%define CONFIG_GSM_MS_DECODER 1
%define CONFIG_IAC_DECODER 1
%define CONFIG_ILBC_DECODER 1
%define CONFIG_IMC_DECODER 1
%define CONFIG_INTERPLAY_ACM_DECODER 1
%define CONFIG_MACE3_DECODER 1
%define CONFIG_MACE6_DECODER 1
%define CONFIG_METASOUND_DECODER 1
%define CONFIG_MLP_DECODER 1
%define CONFIG_MP1_DECODER 1
%define CONFIG_MP1FLOAT_DECODER 1
%define CONFIG_MP2_DECODER 1
%define CONFIG_MP2FLOAT_DECODER 1
%define CONFIG_MP3FLOAT_DECODER 1
%define CONFIG_MP3_DECODER 1
%define CONFIG_MP3ADUFLOAT_DECODER 1
%define CONFIG_MP3ADU_DECODER 1
%define CONFIG_MP3ON4FLOAT_DECODER 1
%define CONFIG_MP3ON4_DECODER 1
%define CONFIG_MPC7_DECODER 1
%define CONFIG_MPC8_DECODER 1
%define CONFIG_NELLYMOSER_DECODER 1
%define CONFIG_ON2AVC_DECODER 1
%define CONFIG_OPUS_DECODER 1
%define CONFIG_PAF_AUDIO_DECODER 1
%define CONFIG_QCELP_DECODER 1
%define CONFIG_QDM2_DECODER 1
%define CONFIG_QDMC_DECODER 1
%define CONFIG_RA_144_DECODER 1
%define CONFIG_RA_288_DECODER 1
%define CONFIG_RALF_DECODER 1
%define CONFIG_SBC_DECODER 1
%define CONFIG_SHORTEN_DECODER 1
%define CONFIG_SIPR_DECODER 1
%define CONFIG_SMACKAUD_DECODER 1
%define CONFIG_SONIC_DECODER 1
%define CONFIG_TAK_DECODER 1
%define CONFIG_TRUEHD_DECODER 1
%define CONFIG_TRUESPEECH_DECODER 1
%define CONFIG_TTA_DECODER 1
%define CONFIG_TWINVQ_DECODER 1
%define CONFIG_VMDAUDIO_DECODER 1
%define CONFIG_VORBIS_DECODER 1
%define CONFIG_WAVPACK_DECODER 1
%define CONFIG_WMALOSSLESS_DECODER 1
%define CONFIG_WMAPRO_DECODER 1
%define CONFIG_WMAV1_DECODER 1
%define CONFIG_WMAV2_DECODER 1
%define CONFIG_WMAVOICE_DECODER 1
%define CONFIG_WS_SND1_DECODER 1
%define CONFIG_XMA1_DECODER 1
%define CONFIG_XMA2_DECODER 1
%define CONFIG_PCM_ALAW_DECODER 1
%define CONFIG_PCM_BLURAY_DECODER 1
%define CONFIG_PCM_DVD_DECODER 1
%define CONFIG_PCM_F16LE_DECODER 1
%define CONFIG_PCM_F24LE_DECODER 1
%define CONFIG_PCM_F32BE_DECODER 1
%define CONFIG_PCM_F32LE_DECODER 1
%define CONFIG_PCM_F64BE_DECODER 1
%define CONFIG_PCM_F64LE_DECODER 1
%define CONFIG_PCM_LXF_DECODER 1
%define CONFIG_PCM_MULAW_DECODER 1
%define CONFIG_PCM_S8_DECODER 1
%define CONFIG_PCM_S8_PLANAR_DECODER 1
%define CONFIG_PCM_S16BE_DECODER 1
%define CONFIG_PCM_S16BE_PLANAR_DECODER 1
%define CONFIG_PCM_S16LE_DECODER 1
%define CONFIG_PCM_S16LE_PLANAR_DECODER 1
%define CONFIG_PCM_S24BE_DECODER 1
%define CONFIG_PCM_S24DAUD_DECODER 1
%define CONFIG_PCM_S24LE_DECODER 1
%define CONFIG_PCM_S24LE_PLANAR_DECODER 1
%define CONFIG_PCM_S32BE_DECODER 1
%define CONFIG_PCM_S32LE_DECODER 1
%define CONFIG_PCM_S32LE_PLANAR_DECODER 1
%define CONFIG_PCM_S64BE_DECODER 1
%define CONFIG_PCM_S64LE_DECODER 1
%define CONFIG_PCM_U8_DECODER 1
%define CONFIG_PCM_U16BE_DECODER 1
%define CONFIG_PCM_U16LE_DECODER 1
%define CONFIG_PCM_U24BE_DECODER 1
%define CONFIG_PCM_U24LE_DECODER 1
%define CONFIG_PCM_U32BE_DECODER 1
%define CONFIG_PCM_U32LE_DECODER 1
%define CONFIG_PCM_VIDC_DECODER 1
%define CONFIG_PCM_ZORK_DECODER 1
%define CONFIG_GREMLIN_DPCM_DECODER 1
%define CONFIG_INTERPLAY_DPCM_DECODER 1
%define CONFIG_ROQ_DPCM_DECODER 1
%define CONFIG_SOL_DPCM_DECODER 1
%define CONFIG_XAN_DPCM_DECODER 1
%define CONFIG_ADPCM_4XM_DECODER 1
%define CONFIG_ADPCM_ADX_DECODER 1
%define CONFIG_ADPCM_AFC_DECODER 1
%define CONFIG_ADPCM_AICA_DECODER 1
%define CONFIG_ADPCM_CT_DECODER 1
%define CONFIG_ADPCM_DTK_DECODER 1
%define CONFIG_ADPCM_EA_DECODER 1
%define CONFIG_ADPCM_EA_MAXIS_XA_DECODER 1
%define CONFIG_ADPCM_EA_R1_DECODER 1
%define CONFIG_ADPCM_EA_R2_DECODER 1
%define CONFIG_ADPCM_EA_R3_DECODER 1
%define CONFIG_ADPCM_EA_XAS_DECODER 1
%define CONFIG_ADPCM_G722_DECODER 1
%define CONFIG_ADPCM_G726_DECODER 1
%define CONFIG_ADPCM_G726LE_DECODER 1
%define CONFIG_ADPCM_IMA_AMV_DECODER 1
%define CONFIG_ADPCM_IMA_APC_DECODER 1
%define CONFIG_ADPCM_IMA_DAT4_DECODER 1
%define CONFIG_ADPCM_IMA_DK3_DECODER 1
%define CONFIG_ADPCM_IMA_DK4_DECODER 1
%define CONFIG_ADPCM_IMA_EA_EACS_DECODER 1
%define CONFIG_ADPCM_IMA_EA_SEAD_DECODER 1
%define CONFIG_ADPCM_IMA_ISS_DECODER 1
%define CONFIG_ADPCM_IMA_OKI_DECODER 1
%define CONFIG_ADPCM_IMA_QT_DECODER 1
%define CONFIG_ADPCM_IMA_RAD_DECODER 1
%define CONFIG_ADPCM_IMA_SMJPEG_DECODER 1
%define CONFIG_ADPCM_IMA_WAV_DECODER 1
%define CONFIG_ADPCM_IMA_WS_DECODER 1
%define CONFIG_ADPCM_MS_DECODER 1
%define CONFIG_ADPCM_MTAF_DECODER 1
%define CONFIG_ADPCM_PSX_DECODER 1
%define CONFIG_ADPCM_SBPRO_2_DECODER 1
%define CONFIG_ADPCM_SBPRO_3_DECODER 1
%define CONFIG_ADPCM_SBPRO_4_DECODER 1
%define CONFIG_ADPCM_SWF_DECODER 1
%define CONFIG_ADPCM_THP_DECODER 1
%define CONFIG_ADPCM_THP_LE_DECODER 1
%define CONFIG_ADPCM_VIMA_DECODER 1
%define CONFIG_ADPCM_XA_DECODER 1
%define CONFIG_ADPCM_YAMAHA_DECODER 1
%define CONFIG_SSA_DECODER 1
%define CONFIG_ASS_DECODER 1
%define CONFIG_CCAPTION_DECODER 1
%define CONFIG_DVBSUB_DECODER 1
%define CONFIG_DVDSUB_DECODER 1
%define CONFIG_JACOSUB_DECODER 1
%define CONFIG_MICRODVD_DECODER 1
%define CONFIG_MOVTEXT_DECODER 1
%define CONFIG_MPL2_DECODER 1
%define CONFIG_PGSSUB_DECODER 1
%define CONFIG_PJS_DECODER 1
%define CONFIG_REALTEXT_DECODER 1
%define CONFIG_SAMI_DECODER 1
%define CONFIG_SRT_DECODER 1
%define CONFIG_STL_DECODER 1
%define CONFIG_SUBRIP_DECODER 1
%define CONFIG_SUBVIEWER_DECODER 1
%define CONFIG_SUBVIEWER1_DECODER 1
%define CONFIG_TEXT_DECODER 1
%define CONFIG_VPLAYER_DECODER 1
%define CONFIG_WEBVTT_DECODER 1
%define CONFIG_XSUB_DECODER 1
%define CONFIG_AAC_AT_DECODER 0
%define CONFIG_AC3_AT_DECODER 0
%define CONFIG_ADPCM_IMA_QT_AT_DECODER 0
%define CONFIG_ALAC_AT_DECODER 0
%define CONFIG_AMR_NB_AT_DECODER 0
%define CONFIG_EAC3_AT_DECODER 0
%define CONFIG_GSM_MS_AT_DECODER 0
%define CONFIG_ILBC_AT_DECODER 0
%define CONFIG_MP1_AT_DECODER 0
%define CONFIG_MP2_AT_DECODER 0
%define CONFIG_MP3_AT_DECODER 0
%define CONFIG_PCM_ALAW_AT_DECODER 0
%define CONFIG_PCM_MULAW_AT_DECODER 0
%define CONFIG_QDMC_AT_DECODER 0
%define CONFIG_QDM2_AT_DECODER 0
%define CONFIG_LIBAOM_AV1_DECODER 0
%define CONFIG_LIBCELT_DECODER 0
%define CONFIG_LIBCODEC2_DECODER 0
%define CONFIG_LIBDAV1D_DECODER 0
%define CONFIG_LIBDAVS2_DECODER 0
%define CONFIG_LIBFDK_AAC_DECODER 0
%define CONFIG_LIBGSM_DECODER 0
%define CONFIG_LIBGSM_MS_DECODER 0
%define CONFIG_LIBILBC_DECODER 1
%define CONFIG_LIBOPENCORE_AMRNB_DECODER 0
%define CONFIG_LIBOPENCORE_AMRWB_DECODER 0
%define CONFIG_LIBOPENJPEG_DECODER 0
%define CONFIG_LIBOPUS_DECODER 1
%define CONFIG_LIBRSVG_DECODER 0
%define CONFIG_LIBSPEEX_DECODER 1
%define CONFIG_LIBVORBIS_DECODER 1
%define CONFIG_LIBVPX_VP8_DECODER 1
%define CONFIG_LIBVPX_VP9_DECODER 1
%define CONFIG_LIBZVBI_TELETEXT_DECODER 0
%define CONFIG_BINTEXT_DECODER 1
%define CONFIG_XBIN_DECODER 1
%define CONFIG_IDF_DECODER 1
%define CONFIG_LIBOPENH264_DECODER 0
%define CONFIG_H264_CUVID_DECODER 1
%define CONFIG_HEVC_CUVID_DECODER 1
%define CONFIG_HEVC_MEDIACODEC_DECODER 0
%define CONFIG_MJPEG_CUVID_DECODER 1
%define CONFIG_MPEG1_CUVID_DECODER 1
%define CONFIG_MPEG2_CUVID_DECODER 1
%define CONFIG_MPEG4_CUVID_DECODER 1
%define CONFIG_MPEG4_MEDIACODEC_DECODER 0
%define CONFIG_VC1_CUVID_DECODER 1
%define CONFIG_VP8_CUVID_DECODER 1
%define CONFIG_VP8_MEDIACODEC_DECODER 0
%define CONFIG_VP8_QSV_DECODER 1
%define CONFIG_VP9_CUVID_DECODER 1
%define CONFIG_VP9_MEDIACODEC_DECODER 0
%define CONFIG_A64MULTI_ENCODER 1
%define CONFIG_A64MULTI5_ENCODER 1
%define CONFIG_ALIAS_PIX_ENCODER 1
%define CONFIG_AMV_ENCODER 1
%define CONFIG_APNG_ENCODER 1
%define CONFIG_ASV1_ENCODER 1
%define CONFIG_ASV2_ENCODER 1
%define CONFIG_AVRP_ENCODER 1
%define CONFIG_AVUI_ENCODER 1
%define CONFIG_AYUV_ENCODER 1
%define CONFIG_BMP_ENCODER 1
%define CONFIG_CINEPAK_ENCODER 1
%define CONFIG_CLJR_ENCODER 1
%define CONFIG_COMFORTNOISE_ENCODER 1
%define CONFIG_DNXHD_ENCODER 1
%define CONFIG_DPX_ENCODER 1
%define CONFIG_DVVIDEO_ENCODER 1
%define CONFIG_FFV1_ENCODER 1
%define CONFIG_FFVHUFF_ENCODER 1
%define CONFIG_FITS_ENCODER 1
%define CONFIG_FLASHSV_ENCODER 1
%define CONFIG_FLASHSV2_ENCODER 1
%define CONFIG_FLV_ENCODER 1
%define CONFIG_GIF_ENCODER 1
%define CONFIG_H261_ENCODER 1
%define CONFIG_H263_ENCODER 1
%define CONFIG_H263P_ENCODER 1
%define CONFIG_HAP_ENCODER 0
%define CONFIG_HUFFYUV_ENCODER 1
%define CONFIG_JPEG2000_ENCODER 1
%define CONFIG_JPEGLS_ENCODER 1
%define CONFIG_LJPEG_ENCODER 1
%define CONFIG_MAGICYUV_ENCODER 1
%define CONFIG_MJPEG_ENCODER 1
%define CONFIG_MPEG1VIDEO_ENCODER 1
%define CONFIG_MPEG2VIDEO_ENCODER 1
%define CONFIG_MPEG4_ENCODER 1
%define CONFIG_MSMPEG4V2_ENCODER 1
%define CONFIG_MSMPEG4V3_ENCODER 1
%define CONFIG_MSVIDEO1_ENCODER 1
%define CONFIG_PAM_ENCODER 1
%define CONFIG_PBM_ENCODER 1
%define CONFIG_PCX_ENCODER 1
%define CONFIG_PGM_ENCODER 1
%define CONFIG_PGMYUV_ENCODER 1
%define CONFIG_PNG_ENCODER 1
%define CONFIG_PPM_ENCODER 1
%define CONFIG_PRORES_ENCODER 1
%define CONFIG_PRORES_AW_ENCODER 1
%define CONFIG_PRORES_KS_ENCODER 1
%define CONFIG_QTRLE_ENCODER 1
%define CONFIG_R10K_ENCODER 1
%define CONFIG_R210_ENCODER 1
%define CONFIG_RAWVIDEO_ENCODER 1
%define CONFIG_ROQ_ENCODER 1
%define CONFIG_RV10_ENCODER 1
%define CONFIG_RV20_ENCODER 1
%define CONFIG_S302M_ENCODER 1
%define CONFIG_SGI_ENCODER 1
%define CONFIG_SNOW_ENCODER 1
%define CONFIG_SUNRAST_ENCODER 1
%define CONFIG_SVQ1_ENCODER 1
%define CONFIG_TARGA_ENCODER 1
%define CONFIG_TIFF_ENCODER 1
%define CONFIG_UTVIDEO_ENCODER 1
%define CONFIG_V210_ENCODER 1
%define CONFIG_V308_ENCODER 1
%define CONFIG_V408_ENCODER 1
%define CONFIG_V410_ENCODER 1
%define CONFIG_VC2_ENCODER 1
%define CONFIG_WRAPPED_AVFRAME_ENCODER 1
%define CONFIG_WMV1_ENCODER 1
%define CONFIG_WMV2_ENCODER 1
%define CONFIG_XBM_ENCODER 1
%define CONFIG_XFACE_ENCODER 1
%define CONFIG_XWD_ENCODER 1
%define CONFIG_Y41P_ENCODER 1
%define CONFIG_YUV4_ENCODER 1
%define CONFIG_ZLIB_ENCODER 1
%define CONFIG_ZMBV_ENCODER 1
%define CONFIG_AAC_ENCODER 1
%define CONFIG_AC3_ENCODER 1
%define CONFIG_AC3_FIXED_ENCODER 1
%define CONFIG_ALAC_ENCODER 1
%define CONFIG_APTX_ENCODER 1
%define CONFIG_APTX_HD_ENCODER 1
%define CONFIG_DCA_ENCODER 1
%define CONFIG_EAC3_ENCODER 1
%define CONFIG_FLAC_ENCODER 1
%define CONFIG_G723_1_ENCODER 1
%define CONFIG_MLP_ENCODER 1
%define CONFIG_MP2_ENCODER 1
%define CONFIG_MP2FIXED_ENCODER 1
%define CONFIG_NELLYMOSER_ENCODER 1
%define CONFIG_OPUS_ENCODER 1
%define CONFIG_RA_144_ENCODER 1
%define CONFIG_SBC_ENCODER 1
%define CONFIG_SONIC_ENCODER 1
%define CONFIG_SONIC_LS_ENCODER 1
%define CONFIG_TRUEHD_ENCODER 1
%define CONFIG_TTA_ENCODER 1
%define CONFIG_VORBIS_ENCODER 1
%define CONFIG_WAVPACK_ENCODER 1
%define CONFIG_WMAV1_ENCODER 1
%define CONFIG_WMAV2_ENCODER 1
%define CONFIG_PCM_ALAW_ENCODER 1
%define CONFIG_PCM_DVD_ENCODER 1
%define CONFIG_PCM_F32BE_ENCODER 1
%define CONFIG_PCM_F32LE_ENCODER 1
%define CONFIG_PCM_F64BE_ENCODER 1
%define CONFIG_PCM_F64LE_ENCODER 1
%define CONFIG_PCM_MULAW_ENCODER 1
%define CONFIG_PCM_S8_ENCODER 1
%define CONFIG_PCM_S8_PLANAR_ENCODER 1
%define CONFIG_PCM_S16BE_ENCODER 1
%define CONFIG_PCM_S16BE_PLANAR_ENCODER 1
%define CONFIG_PCM_S16LE_ENCODER 1
%define CONFIG_PCM_S16LE_PLANAR_ENCODER 1
%define CONFIG_PCM_S24BE_ENCODER 1
%define CONFIG_PCM_S24DAUD_ENCODER 1
%define CONFIG_PCM_S24LE_ENCODER 1
%define CONFIG_PCM_S24LE_PLANAR_ENCODER 1
%define CONFIG_PCM_S32BE_ENCODER 1
%define CONFIG_PCM_S32LE_ENCODER 1
%define CONFIG_PCM_S32LE_PLANAR_ENCODER 1
%define CONFIG_PCM_S64BE_ENCODER 1
%define CONFIG_PCM_S64LE_ENCODER 1
%define CONFIG_PCM_U8_ENCODER 1
%define CONFIG_PCM_U16BE_ENCODER 1
%define CONFIG_PCM_U16LE_ENCODER 1
%define CONFIG_PCM_U24BE_ENCODER 1
%define CONFIG_PCM_U24LE_ENCODER 1
%define CONFIG_PCM_U32BE_ENCODER 1
%define CONFIG_PCM_U32LE_ENCODER 1
%define CONFIG_PCM_VIDC_ENCODER 1
%define CONFIG_ROQ_DPCM_ENCODER 1
%define CONFIG_ADPCM_ADX_ENCODER 1
%define CONFIG_ADPCM_G722_ENCODER 1
%define CONFIG_ADPCM_G726_ENCODER 1
%define CONFIG_ADPCM_G726LE_ENCODER 1
%define CONFIG_ADPCM_IMA_QT_ENCODER 1
%define CONFIG_ADPCM_IMA_WAV_ENCODER 1
%define CONFIG_ADPCM_MS_ENCODER 1
%define CONFIG_ADPCM_SWF_ENCODER 1
%define CONFIG_ADPCM_YAMAHA_ENCODER 1
%define CONFIG_SSA_ENCODER 1
%define CONFIG_ASS_ENCODER 1
%define CONFIG_DVBSUB_ENCODER 1
%define CONFIG_DVDSUB_ENCODER 1
%define CONFIG_MOVTEXT_ENCODER 1
%define CONFIG_SRT_ENCODER 1
%define CONFIG_SUBRIP_ENCODER 1
%define CONFIG_TEXT_ENCODER 1
%define CONFIG_WEBVTT_ENCODER 1
%define CONFIG_XSUB_ENCODER 1
%define CONFIG_AAC_AT_ENCODER 0
%define CONFIG_ALAC_AT_ENCODER 0
%define CONFIG_ILBC_AT_ENCODER 0
%define CONFIG_PCM_ALAW_AT_ENCODER 0
%define CONFIG_PCM_MULAW_AT_ENCODER 0
%define CONFIG_LIBAOM_AV1_ENCODER 0
%define CONFIG_LIBCODEC2_ENCODER 0
%define CONFIG_LIBFDK_AAC_ENCODER 0
%define CONFIG_LIBGSM_ENCODER 0
%define CONFIG_LIBGSM_MS_ENCODER 0
%define CONFIG_LIBILBC_ENCODER 1
%define CONFIG_LIBMP3LAME_ENCODER 1
%define CONFIG_LIBOPENCORE_AMRNB_ENCODER 0
%define CONFIG_LIBOPENJPEG_ENCODER 0
%define CONFIG_LIBOPUS_ENCODER 1
%define CONFIG_LIBSHINE_ENCODER 0
%define CONFIG_LIBSPEEX_ENCODER 1
%define CONFIG_LIBTHEORA_ENCODER 1
%define CONFIG_LIBTWOLAME_ENCODER 0
%define CONFIG_LIBVO_AMRWBENC_ENCODER 0
%define CONFIG_LIBVORBIS_ENCODER 1
%define CONFIG_LIBVPX_VP8_ENCODER 1
%define CONFIG_LIBVPX_VP9_ENCODER 1
%define CONFIG_LIBWAVPACK_ENCODER 0
%define CONFIG_LIBWEBP_ANIM_ENCODER 0
%define CONFIG_LIBWEBP_ENCODER 0
%define CONFIG_LIBX262_ENCODER 0
%define CONFIG_LIBX264_ENCODER 1
%define CONFIG_LIBX264RGB_ENCODER 1
%define CONFIG_LIBX265_ENCODER 1
%define CONFIG_LIBXAVS_ENCODER 0
%define CONFIG_LIBXAVS2_ENCODER 0
%define CONFIG_LIBXVID_ENCODER 1
%define CONFIG_H263_V4L2M2M_ENCODER 0
%define CONFIG_LIBOPENH264_ENCODER 0
%define CONFIG_H264_AMF_ENCODER 1
%define CONFIG_H264_NVENC_ENCODER 1
%define CONFIG_H264_OMX_ENCODER 0
%define CONFIG_H264_QSV_ENCODER 1
%define CONFIG_H264_V4L2M2M_ENCODER 0
%define CONFIG_H264_VAAPI_ENCODER 0
%define CONFIG_H264_VIDEOTOOLBOX_ENCODER 0
%define CONFIG_NVENC_ENCODER 1
%define CONFIG_NVENC_H264_ENCODER 1
%define CONFIG_NVENC_HEVC_ENCODER 1
%define CONFIG_HEVC_AMF_ENCODER 1
%define CONFIG_HEVC_NVENC_ENCODER 1
%define CONFIG_HEVC_QSV_ENCODER 1
%define CONFIG_HEVC_V4L2M2M_ENCODER 0
%define CONFIG_HEVC_VAAPI_ENCODER 0
%define CONFIG_HEVC_VIDEOTOOLBOX_ENCODER 0
%define CONFIG_LIBKVAZAAR_ENCODER 0
%define CONFIG_MJPEG_QSV_ENCODER 1
%define CONFIG_MJPEG_VAAPI_ENCODER 0
%define CONFIG_MPEG2_QSV_ENCODER 1
%define CONFIG_MPEG2_VAAPI_ENCODER 0
%define CONFIG_MPEG4_V4L2M2M_ENCODER 0
%define CONFIG_VP8_V4L2M2M_ENCODER 0
%define CONFIG_VP8_VAAPI_ENCODER 0
%define CONFIG_VP9_VAAPI_ENCODER 0
%define CONFIG_H263_VAAPI_HWACCEL 0
%define CONFIG_H263_VIDEOTOOLBOX_HWACCEL 0
%define CONFIG_H264_D3D11VA_HWACCEL 1
%define CONFIG_H264_D3D11VA2_HWACCEL 1
%define CONFIG_H264_DXVA2_HWACCEL 1
%define CONFIG_H264_NVDEC_HWACCEL 1
%define CONFIG_H264_VAAPI_HWACCEL 0
%define CONFIG_H264_VDPAU_HWACCEL 0
%define CONFIG_H264_VIDEOTOOLBOX_HWACCEL 0
%define CONFIG_HEVC_D3D11VA_HWACCEL 1
%define CONFIG_HEVC_D3D11VA2_HWACCEL 1
%define CONFIG_HEVC_DXVA2_HWACCEL 1
%define CONFIG_HEVC_NVDEC_HWACCEL 1
%define CONFIG_HEVC_VAAPI_HWACCEL 0
%define CONFIG_HEVC_VDPAU_HWACCEL 0
%define CONFIG_HEVC_VIDEOTOOLBOX_HWACCEL 0
%define CONFIG_MJPEG_NVDEC_HWACCEL 1
%define CONFIG_MJPEG_VAAPI_HWACCEL 0
%define CONFIG_MPEG1_NVDEC_HWACCEL 1
%define CONFIG_MPEG1_VDPAU_HWACCEL 0
%define CONFIG_MPEG1_VIDEOTOOLBOX_HWACCEL 0
%define CONFIG_MPEG1_XVMC_HWACCEL 0
%define CONFIG_MPEG2_D3D11VA_HWACCEL 1
%define CONFIG_MPEG2_D3D11VA2_HWACCEL 1
%define CONFIG_MPEG2_NVDEC_HWACCEL 1
%define CONFIG_MPEG2_DXVA2_HWACCEL 1
%define CONFIG_MPEG2_VAAPI_HWACCEL 0
%define CONFIG_MPEG2_VDPAU_HWACCEL 0
%define CONFIG_MPEG2_VIDEOTOOLBOX_HWACCEL 0
%define CONFIG_MPEG2_XVMC_HWACCEL 0
%define CONFIG_MPEG4_NVDEC_HWACCEL 1
%define CONFIG_MPEG4_VAAPI_HWACCEL 0
%define CONFIG_MPEG4_VDPAU_HWACCEL 0
%define CONFIG_MPEG4_VIDEOTOOLBOX_HWACCEL 0
%define CONFIG_VC1_D3D11VA_HWACCEL 1
%define CONFIG_VC1_D3D11VA2_HWACCEL 1
%define CONFIG_VC1_DXVA2_HWACCEL 1
%define CONFIG_VC1_NVDEC_HWACCEL 1
%define CONFIG_VC1_VAAPI_HWACCEL 0
%define CONFIG_VC1_VDPAU_HWACCEL 0
%define CONFIG_VP8_NVDEC_HWACCEL 1
%define CONFIG_VP8_VAAPI_HWACCEL 0
%define CONFIG_VP9_D3D11VA_HWACCEL 1
%define CONFIG_VP9_D3D11VA2_HWACCEL 1
%define CONFIG_VP9_DXVA2_HWACCEL 1
%define CONFIG_VP9_NVDEC_HWACCEL 1
%define CONFIG_VP9_VAAPI_HWACCEL 0
%define CONFIG_WMV3_D3D11VA_HWACCEL 1
%define CONFIG_WMV3_D3D11VA2_HWACCEL 1
%define CONFIG_WMV3_DXVA2_HWACCEL 1
%define CONFIG_WMV3_NVDEC_HWACCEL 1
%define CONFIG_WMV3_VAAPI_HWACCEL 0
%define CONFIG_WMV3_VDPAU_HWACCEL 0
%define CONFIG_AAC_PARSER 1
%define CONFIG_AAC_LATM_PARSER 1
%define CONFIG_AC3_PARSER 1
%define CONFIG_ADX_PARSER 1
%define CONFIG_AV1_PARSER 1
%define CONFIG_AVS2_PARSER 1
%define CONFIG_BMP_PARSER 1
%define CONFIG_CAVSVIDEO_PARSER 1
%define CONFIG_COOK_PARSER 1
%define CONFIG_DCA_PARSER 1
%define CONFIG_DIRAC_PARSER 1
%define CONFIG_DNXHD_PARSER 1
%define CONFIG_DPX_PARSER 1
%define CONFIG_DVAUDIO_PARSER 1
%define CONFIG_DVBSUB_PARSER 1
%define CONFIG_DVDSUB_PARSER 1
%define CONFIG_DVD_NAV_PARSER 1
%define CONFIG_FLAC_PARSER 1
%define CONFIG_G729_PARSER 1
%define CONFIG_GSM_PARSER 1
%define CONFIG_H261_PARSER 1
%define CONFIG_H263_PARSER 1
%define CONFIG_H264_PARSER 1
%define CONFIG_HEVC_PARSER 1
%define CONFIG_MJPEG_PARSER 1
%define CONFIG_MLP_PARSER 1
%define CONFIG_MPEG4VIDEO_PARSER 1
%define CONFIG_MPEGAUDIO_PARSER 1
%define CONFIG_MPEGVIDEO_PARSER 1
%define CONFIG_OPUS_PARSER 1
%define CONFIG_PNG_PARSER 1
%define CONFIG_PNM_PARSER 1
%define CONFIG_RV30_PARSER 1
%define CONFIG_RV40_PARSER 1
%define CONFIG_SBC_PARSER 1
%define CONFIG_SIPR_PARSER 1
%define CONFIG_TAK_PARSER 1
%define CONFIG_VC1_PARSER 1
%define CONFIG_VORBIS_PARSER 1
%define CONFIG_VP3_PARSER 1
%define CONFIG_VP8_PARSER 1
%define CONFIG_VP9_PARSER 1
%define CONFIG_XMA_PARSER 1
%define CONFIG_ALSA_INDEV 0
%define CONFIG_ANDROID_CAMERA_INDEV 0
%define CONFIG_AVFOUNDATION_INDEV 0
%define CONFIG_BKTR_INDEV 0
%define CONFIG_DECKLINK_INDEV 0
%define CONFIG_LIBNDI_NEWTEK_INDEV 0
%define CONFIG_DSHOW_INDEV 1
%define CONFIG_FBDEV_INDEV 0
%define CONFIG_GDIGRAB_INDEV 1
%define CONFIG_IEC61883_INDEV 0
%define CONFIG_JACK_INDEV 0
%define CONFIG_KMSGRAB_INDEV 0
%define CONFIG_LAVFI_INDEV 1
%define CONFIG_OPENAL_INDEV 0
%define CONFIG_OSS_INDEV 0
%define CONFIG_PULSE_INDEV 0
%define CONFIG_SNDIO_INDEV 0
%define CONFIG_V4L2_INDEV 0
%define CONFIG_VFWCAP_INDEV 1
%define CONFIG_XCBGRAB_INDEV 0
%define CONFIG_LIBCDIO_INDEV 1
%define CONFIG_LIBDC1394_INDEV 0
%define CONFIG_ALSA_OUTDEV 0
%define CONFIG_CACA_OUTDEV 0
%define CONFIG_DECKLINK_OUTDEV 0
%define CONFIG_LIBNDI_NEWTEK_OUTDEV 0
%define CONFIG_FBDEV_OUTDEV 0
%define CONFIG_OPENGL_OUTDEV 1
%define CONFIG_OSS_OUTDEV 0
%define CONFIG_PULSE_OUTDEV 0
%define CONFIG_SDL2_OUTDEV 1
%define CONFIG_SNDIO_OUTDEV 0
%define CONFIG_V4L2_OUTDEV 0
%define CONFIG_XV_OUTDEV 0
%define CONFIG_ABENCH_FILTER 1
%define CONFIG_ACOMPRESSOR_FILTER 1
%define CONFIG_ACONTRAST_FILTER 1
%define CONFIG_ACOPY_FILTER 1
%define CONFIG_ACUE_FILTER 1
%define CONFIG_ACROSSFADE_FILTER 1
%define CONFIG_ACROSSOVER_FILTER 1
%define CONFIG_ACRUSHER_FILTER 1
%define CONFIG_ADECLICK_FILTER 1
%define CONFIG_ADECLIP_FILTER 1
%define CONFIG_ADELAY_FILTER 1
%define CONFIG_ADERIVATIVE_FILTER 1
%define CONFIG_AECHO_FILTER 1
%define CONFIG_AEMPHASIS_FILTER 1
%define CONFIG_AEVAL_FILTER 1
%define CONFIG_AFADE_FILTER 1
%define CONFIG_AFFTDN_FILTER 1
%define CONFIG_AFFTFILT_FILTER 1
%define CONFIG_AFIR_FILTER 1
%define CONFIG_AFORMAT_FILTER 1
%define CONFIG_AGATE_FILTER 1
%define CONFIG_AIIR_FILTER 1
%define CONFIG_AINTEGRAL_FILTER 1
%define CONFIG_AINTERLEAVE_FILTER 1
%define CONFIG_ALIMITER_FILTER 1
%define CONFIG_ALLPASS_FILTER 1
%define CONFIG_ALOOP_FILTER 1
%define CONFIG_AMERGE_FILTER 1
%define CONFIG_AMETADATA_FILTER 1
%define CONFIG_AMIX_FILTER 1
%define CONFIG_AMULTIPLY_FILTER 1
%define CONFIG_ANEQUALIZER_FILTER 1
%define CONFIG_ANULL_FILTER 1
%define CONFIG_APAD_FILTER 1
%define CONFIG_APERMS_FILTER 1
%define CONFIG_APHASER_FILTER 1
%define CONFIG_APULSATOR_FILTER 1
%define CONFIG_AREALTIME_FILTER 1
%define CONFIG_ARESAMPLE_FILTER 1
%define CONFIG_AREVERSE_FILTER 1
%define CONFIG_ASELECT_FILTER 1
%define CONFIG_ASENDCMD_FILTER 1
%define CONFIG_ASETNSAMPLES_FILTER 1
%define CONFIG_ASETPTS_FILTER 1
%define CONFIG_ASETRATE_FILTER 1
%define CONFIG_ASETTB_FILTER 1
%define CONFIG_ASHOWINFO_FILTER 1
%define CONFIG_ASIDEDATA_FILTER 1
%define CONFIG_ASPLIT_FILTER 1
%define CONFIG_ASTATS_FILTER 1
%define CONFIG_ASTREAMSELECT_FILTER 1
%define CONFIG_ATEMPO_FILTER 1
%define CONFIG_ATRIM_FILTER 1
%define CONFIG_AZMQ_FILTER 0
%define CONFIG_BANDPASS_FILTER 1
%define CONFIG_BANDREJECT_FILTER 1
%define CONFIG_BASS_FILTER 1
%define CONFIG_BIQUAD_FILTER 1
%define CONFIG_BS2B_FILTER 0
%define CONFIG_CHANNELMAP_FILTER 1
%define CONFIG_CHANNELSPLIT_FILTER 1
%define CONFIG_CHORUS_FILTER 1
%define CONFIG_COMPAND_FILTER 1
%define CONFIG_COMPENSATIONDELAY_FILTER 1
%define CONFIG_CROSSFEED_FILTER 1
%define CONFIG_CRYSTALIZER_FILTER 1
%define CONFIG_DCSHIFT_FILTER 1
%define CONFIG_DRMETER_FILTER 1
%define CONFIG_DYNAUDNORM_FILTER 1
%define CONFIG_EARWAX_FILTER 1
%define CONFIG_EBUR128_FILTER 1
%define CONFIG_EQUALIZER_FILTER 1
%define CONFIG_EXTRASTEREO_FILTER 1
%define CONFIG_FIREQUALIZER_FILTER 1
%define CONFIG_FLANGER_FILTER 1
%define CONFIG_HAAS_FILTER 1
%define CONFIG_HDCD_FILTER 1
%define CONFIG_HEADPHONE_FILTER 1
%define CONFIG_HIGHPASS_FILTER 1
%define CONFIG_HIGHSHELF_FILTER 1
%define CONFIG_JOIN_FILTER 1
%define CONFIG_LADSPA_FILTER 0
%define CONFIG_LOUDNORM_FILTER 1
%define CONFIG_LOWPASS_FILTER 1
%define CONFIG_LOWSHELF_FILTER 1
%define CONFIG_LV2_FILTER 0
%define CONFIG_MCOMPAND_FILTER 1
%define CONFIG_PAN_FILTER 1
%define CONFIG_REPLAYGAIN_FILTER 1
%define CONFIG_RESAMPLE_FILTER 0
%define CONFIG_RUBBERBAND_FILTER 0
%define CONFIG_SIDECHAINCOMPRESS_FILTER 1
%define CONFIG_SIDECHAINGATE_FILTER 1
%define CONFIG_SILENCEDETECT_FILTER 1
%define CONFIG_SILENCEREMOVE_FILTER 1
%define CONFIG_SOFALIZER_FILTER 0
%define CONFIG_STEREOTOOLS_FILTER 1
%define CONFIG_STEREOWIDEN_FILTER 1
%define CONFIG_SUPEREQUALIZER_FILTER 1
%define CONFIG_SURROUND_FILTER 1
%define CONFIG_TREBLE_FILTER 1
%define CONFIG_TREMOLO_FILTER 1
%define CONFIG_VIBRATO_FILTER 1
%define CONFIG_VOLUME_FILTER 1
%define CONFIG_VOLUMEDETECT_FILTER 1
%define CONFIG_AEVALSRC_FILTER 1
%define CONFIG_ANOISESRC_FILTER 1
%define CONFIG_ANULLSRC_FILTER 1
%define CONFIG_FLITE_FILTER 0
%define CONFIG_HILBERT_FILTER 1
%define CONFIG_SINC_FILTER 1
%define CONFIG_SINE_FILTER 1
%define CONFIG_ANULLSINK_FILTER 1
%define CONFIG_ALPHAEXTRACT_FILTER 1
%define CONFIG_ALPHAMERGE_FILTER 1
%define CONFIG_AMPLIFY_FILTER 1
%define CONFIG_ASS_FILTER 1
%define CONFIG_ATADENOISE_FILTER 1
%define CONFIG_AVGBLUR_FILTER 1
%define CONFIG_AVGBLUR_OPENCL_FILTER 0
%define CONFIG_BBOX_FILTER 1
%define CONFIG_BENCH_FILTER 1
%define CONFIG_BITPLANENOISE_FILTER 1
%define CONFIG_BLACKDETECT_FILTER 1
%define CONFIG_BLACKFRAME_FILTER 1
%define CONFIG_BLEND_FILTER 1
%define CONFIG_BM3D_FILTER 1
%define CONFIG_BOXBLUR_FILTER 1
%define CONFIG_BOXBLUR_OPENCL_FILTER 0
%define CONFIG_BWDIF_FILTER 1
%define CONFIG_CHROMAHOLD_FILTER 1
%define CONFIG_CHROMAKEY_FILTER 1
%define CONFIG_CHROMASHIFT_FILTER 1
%define CONFIG_CIESCOPE_FILTER 1
%define CONFIG_CODECVIEW_FILTER 1
%define CONFIG_COLORBALANCE_FILTER 1
%define CONFIG_COLORCHANNELMIXER_FILTER 1
%define CONFIG_COLORKEY_FILTER 1
%define CONFIG_COLORLEVELS_FILTER 1
%define CONFIG_COLORMATRIX_FILTER 1
%define CONFIG_COLORSPACE_FILTER 1
%define CONFIG_CONVOLUTION_FILTER 1
%define CONFIG_CONVOLUTION_OPENCL_FILTER 0
%define CONFIG_CONVOLVE_FILTER 1
%define CONFIG_COPY_FILTER 1
%define CONFIG_COREIMAGE_FILTER 0
%define CONFIG_COVER_RECT_FILTER 1
%define CONFIG_CROP_FILTER 1
%define CONFIG_CROPDETECT_FILTER 1
%define CONFIG_CUE_FILTER 1
%define CONFIG_CURVES_FILTER 1
%define CONFIG_DATASCOPE_FILTER 1
%define CONFIG_DCTDNOIZ_FILTER 1
%define CONFIG_DEBAND_FILTER 1
%define CONFIG_DEBLOCK_FILTER 1
%define CONFIG_DECIMATE_FILTER 1
%define CONFIG_DECONVOLVE_FILTER 1
%define CONFIG_DEDOT_FILTER 1
%define CONFIG_DEFLATE_FILTER 1
%define CONFIG_DEFLICKER_FILTER 1
%define CONFIG_DEINTERLACE_QSV_FILTER 1
%define CONFIG_DEINTERLACE_VAAPI_FILTER 0
%define CONFIG_DEJUDDER_FILTER 1
%define CONFIG_DELOGO_FILTER 1
%define CONFIG_DENOISE_VAAPI_FILTER 0
%define CONFIG_DESHAKE_FILTER 1
%define CONFIG_DESPILL_FILTER 1
%define CONFIG_DETELECINE_FILTER 1
%define CONFIG_DILATION_FILTER 1
%define CONFIG_DILATION_OPENCL_FILTER 0
%define CONFIG_DISPLACE_FILTER 1
%define CONFIG_DOUBLEWEAVE_FILTER 1
%define CONFIG_DRAWBOX_FILTER 1
%define CONFIG_DRAWGRAPH_FILTER 1
%define CONFIG_DRAWGRID_FILTER 1
%define CONFIG_DRAWTEXT_FILTER 1
%define CONFIG_EDGEDETECT_FILTER 1
%define CONFIG_ELBG_FILTER 1
%define CONFIG_ENTROPY_FILTER 1
%define CONFIG_EQ_FILTER 1
%define CONFIG_EROSION_FILTER 1
%define CONFIG_EROSION_OPENCL_FILTER 0
%define CONFIG_EXTRACTPLANES_FILTER 1
%define CONFIG_FADE_FILTER 1
%define CONFIG_FFTDNOIZ_FILTER 1
%define CONFIG_FFTFILT_FILTER 1
%define CONFIG_FIELD_FILTER 1
%define CONFIG_FIELDHINT_FILTER 1
%define CONFIG_FIELDMATCH_FILTER 1
%define CONFIG_FIELDORDER_FILTER 1
%define CONFIG_FILLBORDERS_FILTER 1
%define CONFIG_FIND_RECT_FILTER 1
%define CONFIG_FLOODFILL_FILTER 1
%define CONFIG_FORMAT_FILTER 1
%define CONFIG_FPS_FILTER 1
%define CONFIG_FRAMEPACK_FILTER 1
%define CONFIG_FRAMERATE_FILTER 1
%define CONFIG_FRAMESTEP_FILTER 1
%define CONFIG_FREEZEDETECT_FILTER 1
%define CONFIG_FREI0R_FILTER 0
%define CONFIG_FSPP_FILTER 1
%define CONFIG_GBLUR_FILTER 1
%define CONFIG_GEQ_FILTER 1
%define CONFIG_GRADFUN_FILTER 1
%define CONFIG_GRAPHMONITOR_FILTER 1
%define CONFIG_GREYEDGE_FILTER 1
%define CONFIG_HALDCLUT_FILTER 1
%define CONFIG_HFLIP_FILTER 1
%define CONFIG_HISTEQ_FILTER 1
%define CONFIG_HISTOGRAM_FILTER 1
%define CONFIG_HQDN3D_FILTER 1
%define CONFIG_HQX_FILTER 1
%define CONFIG_HSTACK_FILTER 1
%define CONFIG_HUE_FILTER 1
%define CONFIG_HWDOWNLOAD_FILTER 1
%define CONFIG_HWMAP_FILTER 1
%define CONFIG_HWUPLOAD_FILTER 1
%define CONFIG_HWUPLOAD_CUDA_FILTER 1
%define CONFIG_HYSTERESIS_FILTER 1
%define CONFIG_IDET_FILTER 1
%define CONFIG_IL_FILTER 1
%define CONFIG_INFLATE_FILTER 1
%define CONFIG_INTERLACE_FILTER 1
%define CONFIG_INTERLEAVE_FILTER 1
%define CONFIG_KERNDEINT_FILTER 1
%define CONFIG_LENSCORRECTION_FILTER 1
%define CONFIG_LENSFUN_FILTER 0
%define CONFIG_LIBVMAF_FILTER 0
%define CONFIG_LIMITER_FILTER 1
%define CONFIG_LOOP_FILTER 1
%define CONFIG_LUMAKEY_FILTER 1
%define CONFIG_LUT_FILTER 1
%define CONFIG_LUT1D_FILTER 1
%define CONFIG_LUT2_FILTER 1
%define CONFIG_LUT3D_FILTER 1
%define CONFIG_LUTRGB_FILTER 1
%define CONFIG_LUTYUV_FILTER 1
%define CONFIG_MASKEDCLAMP_FILTER 1
%define CONFIG_MASKEDMERGE_FILTER 1
%define CONFIG_MCDEINT_FILTER 1
%define CONFIG_MERGEPLANES_FILTER 1
%define CONFIG_MESTIMATE_FILTER 1
%define CONFIG_METADATA_FILTER 1
%define CONFIG_MIDEQUALIZER_FILTER 1
%define CONFIG_MINTERPOLATE_FILTER 1
%define CONFIG_MIX_FILTER 1
%define CONFIG_MPDECIMATE_FILTER 1
%define CONFIG_NEGATE_FILTER 1
%define CONFIG_NLMEANS_FILTER 1
%define CONFIG_NNEDI_FILTER 1
%define CONFIG_NOFORMAT_FILTER 1
%define CONFIG_NOISE_FILTER 1
%define CONFIG_NORMALIZE_FILTER 1
%define CONFIG_NULL_FILTER 1
%define CONFIG_OCR_FILTER 0
%define CONFIG_OCV_FILTER 0
%define CONFIG_OSCILLOSCOPE_FILTER 1
%define CONFIG_OVERLAY_FILTER 1
%define CONFIG_OVERLAY_OPENCL_FILTER 0
%define CONFIG_OVERLAY_QSV_FILTER 1
%define CONFIG_OWDENOISE_FILTER 1
%define CONFIG_PAD_FILTER 1
%define CONFIG_PALETTEGEN_FILTER 1
%define CONFIG_PALETTEUSE_FILTER 1
%define CONFIG_PERMS_FILTER 1
%define CONFIG_PERSPECTIVE_FILTER 1
%define CONFIG_PHASE_FILTER 1
%define CONFIG_PIXDESCTEST_FILTER 1
%define CONFIG_PIXSCOPE_FILTER 1
%define CONFIG_PP_FILTER 1
%define CONFIG_PP7_FILTER 1
%define CONFIG_PREMULTIPLY_FILTER 1
%define CONFIG_PREWITT_FILTER 1
%define CONFIG_PREWITT_OPENCL_FILTER 0
%define CONFIG_PROCAMP_VAAPI_FILTER 0
%define CONFIG_PROGRAM_OPENCL_FILTER 0
%define CONFIG_PSEUDOCOLOR_FILTER 1
%define CONFIG_PSNR_FILTER 1
%define CONFIG_PULLUP_FILTER 1
%define CONFIG_QP_FILTER 1
%define CONFIG_RANDOM_FILTER 1
%define CONFIG_READEIA608_FILTER 1
%define CONFIG_READVITC_FILTER 1
%define CONFIG_REALTIME_FILTER 1
%define CONFIG_REMAP_FILTER 1
%define CONFIG_REMOVEGRAIN_FILTER 1
%define CONFIG_REMOVELOGO_FILTER 1
%define CONFIG_REPEATFIELDS_FILTER 1
%define CONFIG_REVERSE_FILTER 1
%define CONFIG_RGBASHIFT_FILTER 1
%define CONFIG_ROBERTS_FILTER 1
%define CONFIG_ROBERTS_OPENCL_FILTER 0
%define CONFIG_ROTATE_FILTER 1
%define CONFIG_SAB_FILTER 1
%define CONFIG_SCALE_FILTER 1
%define CONFIG_SCALE_CUDA_FILTER 0
%define CONFIG_SCALE_NPP_FILTER 0
%define CONFIG_SCALE_QSV_FILTER 1
%define CONFIG_SCALE_VAAPI_FILTER 0
%define CONFIG_SCALE2REF_FILTER 1
%define CONFIG_SELECT_FILTER 1
%define CONFIG_SELECTIVECOLOR_FILTER 1
%define CONFIG_SENDCMD_FILTER 1
%define CONFIG_SEPARATEFIELDS_FILTER 1
%define CONFIG_SETDAR_FILTER 1
%define CONFIG_SETFIELD_FILTER 1
%define CONFIG_SETPARAMS_FILTER 1
%define CONFIG_SETPTS_FILTER 1
%define CONFIG_SETRANGE_FILTER 1
%define CONFIG_SETSAR_FILTER 1
%define CONFIG_SETTB_FILTER 1
%define CONFIG_SHARPNESS_VAAPI_FILTER 0
%define CONFIG_SHOWINFO_FILTER 1
%define CONFIG_SHOWPALETTE_FILTER 1
%define CONFIG_SHUFFLEFRAMES_FILTER 1
%define CONFIG_SHUFFLEPLANES_FILTER 1
%define CONFIG_SIDEDATA_FILTER 1
%define CONFIG_SIGNALSTATS_FILTER 1
%define CONFIG_SIGNATURE_FILTER 1
%define CONFIG_SMARTBLUR_FILTER 1
%define CONFIG_SOBEL_FILTER 1
%define CONFIG_SOBEL_OPENCL_FILTER 0
%define CONFIG_SPLIT_FILTER 1
%define CONFIG_SPP_FILTER 1
%define CONFIG_SR_FILTER 1
%define CONFIG_SSIM_FILTER 1
%define CONFIG_STEREO3D_FILTER 1
%define CONFIG_STREAMSELECT_FILTER 1
%define CONFIG_SUBTITLES_FILTER 1
%define CONFIG_SUPER2XSAI_FILTER 1
%define CONFIG_SWAPRECT_FILTER 1
%define CONFIG_SWAPUV_FILTER 1
%define CONFIG_TBLEND_FILTER 1
%define CONFIG_TELECINE_FILTER 1
%define CONFIG_THRESHOLD_FILTER 1
%define CONFIG_THUMBNAIL_FILTER 1
%define CONFIG_THUMBNAIL_CUDA_FILTER 0
%define CONFIG_TILE_FILTER 1
%define CONFIG_TINTERLACE_FILTER 1
%define CONFIG_TLUT2_FILTER 1
%define CONFIG_TMIX_FILTER 1
%define CONFIG_TONEMAP_FILTER 1
%define CONFIG_TONEMAP_OPENCL_FILTER 0
%define CONFIG_TPAD_FILTER 1
%define CONFIG_TRANSPOSE_FILTER 1
%define CONFIG_TRANSPOSE_NPP_FILTER 0
%define CONFIG_TRANSPOSE_OPENCL_FILTER 0
%define CONFIG_TRIM_FILTER 1
%define CONFIG_UNPREMULTIPLY_FILTER 1
%define CONFIG_UNSHARP_FILTER 1
%define CONFIG_UNSHARP_OPENCL_FILTER 0
%define CONFIG_USPP_FILTER 1
%define CONFIG_VAGUEDENOISER_FILTER 1
%define CONFIG_VECTORSCOPE_FILTER 1
%define CONFIG_VFLIP_FILTER 1
%define CONFIG_VFRDET_FILTER 1
%define CONFIG_VIBRANCE_FILTER 1
%define CONFIG_VIDSTABDETECT_FILTER 0
%define CONFIG_VIDSTABTRANSFORM_FILTER 0
%define CONFIG_VIGNETTE_FILTER 1
%define CONFIG_VMAFMOTION_FILTER 1
%define CONFIG_VPP_QSV_FILTER 1
%define CONFIG_VSTACK_FILTER 1
%define CONFIG_W3FDIF_FILTER 1
%define CONFIG_WAVEFORM_FILTER 1
%define CONFIG_WEAVE_FILTER 1
%define CONFIG_XBR_FILTER 1
%define CONFIG_XSTACK_FILTER 1
%define CONFIG_YADIF_FILTER 1
%define CONFIG_YADIF_CUDA_FILTER 0
%define CONFIG_ZMQ_FILTER 0
%define CONFIG_ZOOMPAN_FILTER 1
%define CONFIG_ZSCALE_FILTER 0
%define CONFIG_ALLRGB_FILTER 1
%define CONFIG_ALLYUV_FILTER 1
%define CONFIG_CELLAUTO_FILTER 1
%define CONFIG_COLOR_FILTER 1
%define CONFIG_COREIMAGESRC_FILTER 0
%define CONFIG_FREI0R_SRC_FILTER 0
%define CONFIG_HALDCLUTSRC_FILTER 1
%define CONFIG_LIFE_FILTER 1
%define CONFIG_MANDELBROT_FILTER 1
%define CONFIG_MPTESTSRC_FILTER 1
%define CONFIG_NULLSRC_FILTER 1
%define CONFIG_OPENCLSRC_FILTER 0
%define CONFIG_PAL75BARS_FILTER 1
%define CONFIG_PAL100BARS_FILTER 1
%define CONFIG_RGBTESTSRC_FILTER 1
%define CONFIG_SMPTEBARS_FILTER 1
%define CONFIG_SMPTEHDBARS_FILTER 1
%define CONFIG_TESTSRC_FILTER 1
%define CONFIG_TESTSRC2_FILTER 1
%define CONFIG_YUVTESTSRC_FILTER 1
%define CONFIG_NULLSINK_FILTER 1
%define CONFIG_ABITSCOPE_FILTER 1
%define CONFIG_ADRAWGRAPH_FILTER 1
%define CONFIG_AGRAPHMONITOR_FILTER 1
%define CONFIG_AHISTOGRAM_FILTER 1
%define CONFIG_APHASEMETER_FILTER 1
%define CONFIG_AVECTORSCOPE_FILTER 1
%define CONFIG_CONCAT_FILTER 1
%define CONFIG_SHOWCQT_FILTER 1
%define CONFIG_SHOWFREQS_FILTER 1
%define CONFIG_SHOWSPECTRUM_FILTER 1
%define CONFIG_SHOWSPECTRUMPIC_FILTER 1
%define CONFIG_SHOWVOLUME_FILTER 1
%define CONFIG_SHOWWAVES_FILTER 1
%define CONFIG_SHOWWAVESPIC_FILTER 1
%define CONFIG_SPECTRUMSYNTH_FILTER 1
%define CONFIG_AMOVIE_FILTER 1
%define CONFIG_MOVIE_FILTER 1
%define CONFIG_AFIFO_FILTER 1
%define CONFIG_FIFO_FILTER 1
%define CONFIG_AA_DEMUXER 1
%define CONFIG_AAC_DEMUXER 1
%define CONFIG_AC3_DEMUXER 1
%define CONFIG_ACM_DEMUXER 1
%define CONFIG_ACT_DEMUXER 1
%define CONFIG_ADF_DEMUXER 1
%define CONFIG_ADP_DEMUXER 1
%define CONFIG_ADS_DEMUXER 1
%define CONFIG_ADX_DEMUXER 1
%define CONFIG_AEA_DEMUXER 1
%define CONFIG_AFC_DEMUXER 1
%define CONFIG_AIFF_DEMUXER 1
%define CONFIG_AIX_DEMUXER 1
%define CONFIG_AMR_DEMUXER 1
%define CONFIG_AMRNB_DEMUXER 1
%define CONFIG_AMRWB_DEMUXER 1
%define CONFIG_ANM_DEMUXER 1
%define CONFIG_APC_DEMUXER 1
%define CONFIG_APE_DEMUXER 1
%define CONFIG_APNG_DEMUXER 1
%define CONFIG_APTX_DEMUXER 1
%define CONFIG_APTX_HD_DEMUXER 1
%define CONFIG_AQTITLE_DEMUXER 1
%define CONFIG_ASF_DEMUXER 1
%define CONFIG_ASF_O_DEMUXER 1
%define CONFIG_ASS_DEMUXER 1
%define CONFIG_AST_DEMUXER 1
%define CONFIG_AU_DEMUXER 1
%define CONFIG_AVI_DEMUXER 1
%define CONFIG_AVISYNTH_DEMUXER 1
%define CONFIG_AVR_DEMUXER 1
%define CONFIG_AVS_DEMUXER 1
%define CONFIG_AVS2_DEMUXER 1
%define CONFIG_BETHSOFTVID_DEMUXER 1
%define CONFIG_BFI_DEMUXER 1
%define CONFIG_BINTEXT_DEMUXER 1
%define CONFIG_BINK_DEMUXER 1
%define CONFIG_BIT_DEMUXER 1
%define CONFIG_BMV_DEMUXER 1
%define CONFIG_BFSTM_DEMUXER 1
%define CONFIG_BRSTM_DEMUXER 1
%define CONFIG_BOA_DEMUXER 1
%define CONFIG_C93_DEMUXER 1
%define CONFIG_CAF_DEMUXER 1
%define CONFIG_CAVSVIDEO_DEMUXER 1
%define CONFIG_CDG_DEMUXER 1
%define CONFIG_CDXL_DEMUXER 1
%define CONFIG_CINE_DEMUXER 1
%define CONFIG_CODEC2_DEMUXER 1
%define CONFIG_CODEC2RAW_DEMUXER 1
%define CONFIG_CONCAT_DEMUXER 1
%define CONFIG_DASH_DEMUXER 1
%define CONFIG_DATA_DEMUXER 1
%define CONFIG_DAUD_DEMUXER 1
%define CONFIG_DCSTR_DEMUXER 1
%define CONFIG_DFA_DEMUXER 1
%define CONFIG_DHAV_DEMUXER 1
%define CONFIG_DIRAC_DEMUXER 1
%define CONFIG_DNXHD_DEMUXER 1
%define CONFIG_DSF_DEMUXER 1
%define CONFIG_DSICIN_DEMUXER 1
%define CONFIG_DSS_DEMUXER 1
%define CONFIG_DTS_DEMUXER 1
%define CONFIG_DTSHD_DEMUXER 1
%define CONFIG_DV_DEMUXER 1
%define CONFIG_DVBSUB_DEMUXER 1
%define CONFIG_DVBTXT_DEMUXER 1
%define CONFIG_DXA_DEMUXER 1
%define CONFIG_EA_DEMUXER 1
%define CONFIG_EA_CDATA_DEMUXER 1
%define CONFIG_EAC3_DEMUXER 1
%define CONFIG_EPAF_DEMUXER 1
%define CONFIG_FFMETADATA_DEMUXER 1
%define CONFIG_FILMSTRIP_DEMUXER 1
%define CONFIG_FITS_DEMUXER 1
%define CONFIG_FLAC_DEMUXER 1
%define CONFIG_FLIC_DEMUXER 1
%define CONFIG_FLV_DEMUXER 1
%define CONFIG_LIVE_FLV_DEMUXER 1
%define CONFIG_FOURXM_DEMUXER 1
%define CONFIG_FRM_DEMUXER 1
%define CONFIG_FSB_DEMUXER 1
%define CONFIG_G722_DEMUXER 1
%define CONFIG_G723_1_DEMUXER 1
%define CONFIG_G726_DEMUXER 1
%define CONFIG_G726LE_DEMUXER 1
%define CONFIG_G729_DEMUXER 1
%define CONFIG_GDV_DEMUXER 1
%define CONFIG_GENH_DEMUXER 1
%define CONFIG_GIF_DEMUXER 1
%define CONFIG_GSM_DEMUXER 1
%define CONFIG_GXF_DEMUXER 1
%define CONFIG_H261_DEMUXER 1
%define CONFIG_H263_DEMUXER 1
%define CONFIG_H264_DEMUXER 1
%define CONFIG_HEVC_DEMUXER 1
%define CONFIG_HLS_DEMUXER 1
%define CONFIG_HNM_DEMUXER 1
%define CONFIG_ICO_DEMUXER 1
%define CONFIG_IDCIN_DEMUXER 1
%define CONFIG_IDF_DEMUXER 1
%define CONFIG_IFF_DEMUXER 1
%define CONFIG_ILBC_DEMUXER 1
%define CONFIG_IMAGE2_DEMUXER 1
%define CONFIG_IMAGE2PIPE_DEMUXER 1
%define CONFIG_IMAGE2_ALIAS_PIX_DEMUXER 1
%define CONFIG_IMAGE2_BRENDER_PIX_DEMUXER 1
%define CONFIG_INGENIENT_DEMUXER 1
%define CONFIG_IPMOVIE_DEMUXER 1
%define CONFIG_IRCAM_DEMUXER 1
%define CONFIG_ISS_DEMUXER 1
%define CONFIG_IV8_DEMUXER 1
%define CONFIG_IVF_DEMUXER 1
%define CONFIG_IVR_DEMUXER 1
%define CONFIG_JACOSUB_DEMUXER 1
%define CONFIG_JV_DEMUXER 1
%define CONFIG_LMLM4_DEMUXER 1
%define CONFIG_LOAS_DEMUXER 1
%define CONFIG_LRC_DEMUXER 1
%define CONFIG_LVF_DEMUXER 1
%define CONFIG_LXF_DEMUXER 1
%define CONFIG_M4V_DEMUXER 1
%define CONFIG_MATROSKA_DEMUXER 1
%define CONFIG_MGSTS_DEMUXER 1
%define CONFIG_MICRODVD_DEMUXER 1
%define CONFIG_MJPEG_DEMUXER 1
%define CONFIG_MJPEG_2000_DEMUXER 1
%define CONFIG_MLP_DEMUXER 1
%define CONFIG_MLV_DEMUXER 1
%define CONFIG_MM_DEMUXER 1
%define CONFIG_MMF_DEMUXER 1
%define CONFIG_MOV_DEMUXER 1
%define CONFIG_MP3_DEMUXER 1
%define CONFIG_MPC_DEMUXER 1
%define CONFIG_MPC8_DEMUXER 1
%define CONFIG_MPEGPS_DEMUXER 1
%define CONFIG_MPEGTS_DEMUXER 1
%define CONFIG_MPEGTSRAW_DEMUXER 1
%define CONFIG_MPEGVIDEO_DEMUXER 1
%define CONFIG_MPJPEG_DEMUXER 1
%define CONFIG_MPL2_DEMUXER 1
%define CONFIG_MPSUB_DEMUXER 1
%define CONFIG_MSF_DEMUXER 1
%define CONFIG_MSNWC_TCP_DEMUXER 1
%define CONFIG_MTAF_DEMUXER 1
%define CONFIG_MTV_DEMUXER 1
%define CONFIG_MUSX_DEMUXER 1
%define CONFIG_MV_DEMUXER 1
%define CONFIG_MVI_DEMUXER 1
%define CONFIG_MXF_DEMUXER 1
%define CONFIG_MXG_DEMUXER 1
%define CONFIG_NC_DEMUXER 1
%define CONFIG_NISTSPHERE_DEMUXER 1
%define CONFIG_NSP_DEMUXER 1
%define CONFIG_NSV_DEMUXER 1
%define CONFIG_NUT_DEMUXER 1
%define CONFIG_NUV_DEMUXER 1
%define CONFIG_OGG_DEMUXER 1
%define CONFIG_OMA_DEMUXER 1
%define CONFIG_PAF_DEMUXER 1
%define CONFIG_PCM_ALAW_DEMUXER 1
%define CONFIG_PCM_MULAW_DEMUXER 1
%define CONFIG_PCM_VIDC_DEMUXER 1
%define CONFIG_PCM_F64BE_DEMUXER 1
%define CONFIG_PCM_F64LE_DEMUXER 1
%define CONFIG_PCM_F32BE_DEMUXER 1
%define CONFIG_PCM_F32LE_DEMUXER 1
%define CONFIG_PCM_S32BE_DEMUXER 1
%define CONFIG_PCM_S32LE_DEMUXER 1
%define CONFIG_PCM_S24BE_DEMUXER 1
%define CONFIG_PCM_S24LE_DEMUXER 1
%define CONFIG_PCM_S16BE_DEMUXER 1
%define CONFIG_PCM_S16LE_DEMUXER 1
%define CONFIG_PCM_S8_DEMUXER 1
%define CONFIG_PCM_U32BE_DEMUXER 1
%define CONFIG_PCM_U32LE_DEMUXER 1
%define CONFIG_PCM_U24BE_DEMUXER 1
%define CONFIG_PCM_U24LE_DEMUXER 1
%define CONFIG_PCM_U16BE_DEMUXER 1
%define CONFIG_PCM_U16LE_DEMUXER 1
%define CONFIG_PCM_U8_DEMUXER 1
%define CONFIG_PJS_DEMUXER 1
%define CONFIG_PMP_DEMUXER 1
%define CONFIG_PVA_DEMUXER 1
%define CONFIG_PVF_DEMUXER 1
%define CONFIG_QCP_DEMUXER 1
%define CONFIG_R3D_DEMUXER 1
%define CONFIG_RAWVIDEO_DEMUXER 1
%define CONFIG_REALTEXT_DEMUXER 1
%define CONFIG_REDSPARK_DEMUXER 1
%define CONFIG_RL2_DEMUXER 1
%define CONFIG_RM_DEMUXER 1
%define CONFIG_ROQ_DEMUXER 1
%define CONFIG_RPL_DEMUXER 1
%define CONFIG_RSD_DEMUXER 1
%define CONFIG_RSO_DEMUXER 1
%define CONFIG_RTP_DEMUXER 1
%define CONFIG_RTSP_DEMUXER 1
%define CONFIG_S337M_DEMUXER 1
%define CONFIG_SAMI_DEMUXER 1
%define CONFIG_SAP_DEMUXER 1
%define CONFIG_SBC_DEMUXER 1
%define CONFIG_SBG_DEMUXER 1
%define CONFIG_SCC_DEMUXER 1
%define CONFIG_SDP_DEMUXER 1
%define CONFIG_SDR2_DEMUXER 1
%define CONFIG_SDS_DEMUXER 1
%define CONFIG_SDX_DEMUXER 1
%define CONFIG_SEGAFILM_DEMUXER 1
%define CONFIG_SER_DEMUXER 1
%define CONFIG_SHORTEN_DEMUXER 1
%define CONFIG_SIFF_DEMUXER 1
%define CONFIG_SLN_DEMUXER 1
%define CONFIG_SMACKER_DEMUXER 1
%define CONFIG_SMJPEG_DEMUXER 1
%define CONFIG_SMUSH_DEMUXER 1
%define CONFIG_SOL_DEMUXER 1
%define CONFIG_SOX_DEMUXER 1
%define CONFIG_SPDIF_DEMUXER 1
%define CONFIG_SRT_DEMUXER 1
%define CONFIG_STR_DEMUXER 1
%define CONFIG_STL_DEMUXER 1
%define CONFIG_SUBVIEWER1_DEMUXER 1
%define CONFIG_SUBVIEWER_DEMUXER 1
%define CONFIG_SUP_DEMUXER 1
%define CONFIG_SVAG_DEMUXER 1
%define CONFIG_SWF_DEMUXER 1
%define CONFIG_TAK_DEMUXER 1
%define CONFIG_TEDCAPTIONS_DEMUXER 1
%define CONFIG_THP_DEMUXER 1
%define CONFIG_THREEDOSTR_DEMUXER 1
%define CONFIG_TIERTEXSEQ_DEMUXER 1
%define CONFIG_TMV_DEMUXER 1
%define CONFIG_TRUEHD_DEMUXER 1
%define CONFIG_TTA_DEMUXER 1
%define CONFIG_TXD_DEMUXER 1
%define CONFIG_TTY_DEMUXER 1
%define CONFIG_TY_DEMUXER 1
%define CONFIG_V210_DEMUXER 1
%define CONFIG_V210X_DEMUXER 1
%define CONFIG_VAG_DEMUXER 1
%define CONFIG_VC1_DEMUXER 1
%define CONFIG_VC1T_DEMUXER 1
%define CONFIG_VIVO_DEMUXER 1
%define CONFIG_VMD_DEMUXER 1
%define CONFIG_VOBSUB_DEMUXER 1
%define CONFIG_VOC_DEMUXER 1
%define CONFIG_VPK_DEMUXER 1
%define CONFIG_VPLAYER_DEMUXER 1
%define CONFIG_VQF_DEMUXER 1
%define CONFIG_W64_DEMUXER 1
%define CONFIG_WAV_DEMUXER 1
%define CONFIG_WC3_DEMUXER 1
%define CONFIG_WEBM_DASH_MANIFEST_DEMUXER 1
%define CONFIG_WEBVTT_DEMUXER 1
%define CONFIG_WSAUD_DEMUXER 1
%define CONFIG_WSD_DEMUXER 1
%define CONFIG_WSVQA_DEMUXER 1
%define CONFIG_WTV_DEMUXER 1
%define CONFIG_WVE_DEMUXER 1
%define CONFIG_WV_DEMUXER 1
%define CONFIG_XA_DEMUXER 1
%define CONFIG_XBIN_DEMUXER 1
%define CONFIG_XMV_DEMUXER 1
%define CONFIG_XVAG_DEMUXER 1
%define CONFIG_XWMA_DEMUXER 1
%define CONFIG_YOP_DEMUXER 1
%define CONFIG_YUV4MPEGPIPE_DEMUXER 1
%define CONFIG_IMAGE_BMP_PIPE_DEMUXER 1
%define CONFIG_IMAGE_DDS_PIPE_DEMUXER 1
%define CONFIG_IMAGE_DPX_PIPE_DEMUXER 1
%define CONFIG_IMAGE_EXR_PIPE_DEMUXER 1
%define CONFIG_IMAGE_J2K_PIPE_DEMUXER 1
%define CONFIG_IMAGE_JPEG_PIPE_DEMUXER 1
%define CONFIG_IMAGE_JPEGLS_PIPE_DEMUXER 1
%define CONFIG_IMAGE_PAM_PIPE_DEMUXER 1
%define CONFIG_IMAGE_PBM_PIPE_DEMUXER 1
%define CONFIG_IMAGE_PCX_PIPE_DEMUXER 1
%define CONFIG_IMAGE_PGMYUV_PIPE_DEMUXER 1
%define CONFIG_IMAGE_PGM_PIPE_DEMUXER 1
%define CONFIG_IMAGE_PICTOR_PIPE_DEMUXER 1
%define CONFIG_IMAGE_PNG_PIPE_DEMUXER 1
%define CONFIG_IMAGE_PPM_PIPE_DEMUXER 1
%define CONFIG_IMAGE_PSD_PIPE_DEMUXER 1
%define CONFIG_IMAGE_QDRAW_PIPE_DEMUXER 1
%define CONFIG_IMAGE_SGI_PIPE_DEMUXER 1
%define CONFIG_IMAGE_SVG_PIPE_DEMUXER 1
%define CONFIG_IMAGE_SUNRAST_PIPE_DEMUXER 1
%define CONFIG_IMAGE_TIFF_PIPE_DEMUXER 1
%define CONFIG_IMAGE_WEBP_PIPE_DEMUXER 1
%define CONFIG_IMAGE_XPM_PIPE_DEMUXER 1
%define CONFIG_IMAGE_XWD_PIPE_DEMUXER 1
%define CONFIG_LIBGME_DEMUXER 1
%define CONFIG_LIBMODPLUG_DEMUXER 1
%define CONFIG_LIBOPENMPT_DEMUXER 0
%define CONFIG_VAPOURSYNTH_DEMUXER 0
%define CONFIG_A64_MUXER 1
%define CONFIG_AC3_MUXER 1
%define CONFIG_ADTS_MUXER 1
%define CONFIG_ADX_MUXER 1
%define CONFIG_AIFF_MUXER 1
%define CONFIG_AMR_MUXER 1
%define CONFIG_APNG_MUXER 1
%define CONFIG_APTX_MUXER 1
%define CONFIG_APTX_HD_MUXER 1
%define CONFIG_ASF_MUXER 1
%define CONFIG_ASS_MUXER 1
%define CONFIG_AST_MUXER 1
%define CONFIG_ASF_STREAM_MUXER 1
%define CONFIG_AU_MUXER 1
%define CONFIG_AVI_MUXER 1
%define CONFIG_AVM2_MUXER 1
%define CONFIG_AVS2_MUXER 1
%define CONFIG_BIT_MUXER 1
%define CONFIG_CAF_MUXER 1
%define CONFIG_CAVSVIDEO_MUXER 1
%define CONFIG_CODEC2_MUXER 1
%define CONFIG_CODEC2RAW_MUXER 1
%define CONFIG_CRC_MUXER 1
%define CONFIG_DASH_MUXER 1
%define CONFIG_DATA_MUXER 1
%define CONFIG_DAUD_MUXER 1
%define CONFIG_DIRAC_MUXER 1
%define CONFIG_DNXHD_MUXER 1
%define CONFIG_DTS_MUXER 1
%define CONFIG_DV_MUXER 1
%define CONFIG_EAC3_MUXER 1
%define CONFIG_F4V_MUXER 1
%define CONFIG_FFMETADATA_MUXER 1
%define CONFIG_FIFO_MUXER 1
%define CONFIG_FIFO_TEST_MUXER 1
%define CONFIG_FILMSTRIP_MUXER 1
%define CONFIG_FITS_MUXER 1
%define CONFIG_FLAC_MUXER 1
%define CONFIG_FLV_MUXER 1
%define CONFIG_FRAMECRC_MUXER 1
%define CONFIG_FRAMEHASH_MUXER 1
%define CONFIG_FRAMEMD5_MUXER 1
%define CONFIG_G722_MUXER 1
%define CONFIG_G723_1_MUXER 1
%define CONFIG_G726_MUXER 1
%define CONFIG_G726LE_MUXER 1
%define CONFIG_GIF_MUXER 1
%define CONFIG_GSM_MUXER 1
%define CONFIG_GXF_MUXER 1
%define CONFIG_H261_MUXER 1
%define CONFIG_H263_MUXER 1
%define CONFIG_H264_MUXER 1
%define CONFIG_HASH_MUXER 1
%define CONFIG_HDS_MUXER 1
%define CONFIG_HEVC_MUXER 1
%define CONFIG_HLS_MUXER 1
%define CONFIG_ICO_MUXER 1
%define CONFIG_ILBC_MUXER 1
%define CONFIG_IMAGE2_MUXER 1
%define CONFIG_IMAGE2PIPE_MUXER 1
%define CONFIG_IPOD_MUXER 1
%define CONFIG_IRCAM_MUXER 1
%define CONFIG_ISMV_MUXER 1
%define CONFIG_IVF_MUXER 1
%define CONFIG_JACOSUB_MUXER 1
%define CONFIG_LATM_MUXER 1
%define CONFIG_LRC_MUXER 1
%define CONFIG_M4V_MUXER 1
%define CONFIG_MD5_MUXER 1
%define CONFIG_MATROSKA_MUXER 1
%define CONFIG_MATROSKA_AUDIO_MUXER 1
%define CONFIG_MICRODVD_MUXER 1
%define CONFIG_MJPEG_MUXER 1
%define CONFIG_MLP_MUXER 1
%define CONFIG_MMF_MUXER 1
%define CONFIG_MOV_MUXER 1
%define CONFIG_MP2_MUXER 1
%define CONFIG_MP3_MUXER 1
%define CONFIG_MP4_MUXER 1
%define CONFIG_MPEG1SYSTEM_MUXER 1
%define CONFIG_MPEG1VCD_MUXER 1
%define CONFIG_MPEG1VIDEO_MUXER 1
%define CONFIG_MPEG2DVD_MUXER 1
%define CONFIG_MPEG2SVCD_MUXER 1
%define CONFIG_MPEG2VIDEO_MUXER 1
%define CONFIG_MPEG2VOB_MUXER 1
%define CONFIG_MPEGTS_MUXER 1
%define CONFIG_MPJPEG_MUXER 1
%define CONFIG_MXF_MUXER 1
%define CONFIG_MXF_D10_MUXER 1
%define CONFIG_MXF_OPATOM_MUXER 1
%define CONFIG_NULL_MUXER 1
%define CONFIG_NUT_MUXER 1
%define CONFIG_OGA_MUXER 1
%define CONFIG_OGG_MUXER 1
%define CONFIG_OGV_MUXER 1
%define CONFIG_OMA_MUXER 1
%define CONFIG_OPUS_MUXER 1
%define CONFIG_PCM_ALAW_MUXER 1
%define CONFIG_PCM_MULAW_MUXER 1
%define CONFIG_PCM_VIDC_MUXER 1
%define CONFIG_PCM_F64BE_MUXER 1
%define CONFIG_PCM_F64LE_MUXER 1
%define CONFIG_PCM_F32BE_MUXER 1
%define CONFIG_PCM_F32LE_MUXER 1
%define CONFIG_PCM_S32BE_MUXER 1
%define CONFIG_PCM_S32LE_MUXER 1
%define CONFIG_PCM_S24BE_MUXER 1
%define CONFIG_PCM_S24LE_MUXER 1
%define CONFIG_PCM_S16BE_MUXER 1
%define CONFIG_PCM_S16LE_MUXER 1
%define CONFIG_PCM_S8_MUXER 1
%define CONFIG_PCM_U32BE_MUXER 1
%define CONFIG_PCM_U32LE_MUXER 1
%define CONFIG_PCM_U24BE_MUXER 1
%define CONFIG_PCM_U24LE_MUXER 1
%define CONFIG_PCM_U16BE_MUXER 1
%define CONFIG_PCM_U16LE_MUXER 1
%define CONFIG_PCM_U8_MUXER 1
%define CONFIG_PSP_MUXER 1
%define CONFIG_RAWVIDEO_MUXER 1
%define CONFIG_RM_MUXER 1
%define CONFIG_ROQ_MUXER 1
%define CONFIG_RSO_MUXER 1
%define CONFIG_RTP_MUXER 1
%define CONFIG_RTP_MPEGTS_MUXER 1
%define CONFIG_RTSP_MUXER 1
%define CONFIG_SAP_MUXER 1
%define CONFIG_SBC_MUXER 1
%define CONFIG_SCC_MUXER 1
%define CONFIG_SEGAFILM_MUXER 1
%define CONFIG_SEGMENT_MUXER 1
%define CONFIG_STREAM_SEGMENT_MUXER 1
%define CONFIG_SINGLEJPEG_MUXER 1
%define CONFIG_SMJPEG_MUXER 1
%define CONFIG_SMOOTHSTREAMING_MUXER 1
%define CONFIG_SOX_MUXER 1
%define CONFIG_SPX_MUXER 1
%define CONFIG_SPDIF_MUXER 1
%define CONFIG_SRT_MUXER 1
%define CONFIG_SUP_MUXER 1
%define CONFIG_SWF_MUXER 1
%define CONFIG_TEE_MUXER 1
%define CONFIG_TG2_MUXER 1
%define CONFIG_TGP_MUXER 1
%define CONFIG_MKVTIMESTAMP_V2_MUXER 1
%define CONFIG_TRUEHD_MUXER 1
%define CONFIG_TTA_MUXER 1
%define CONFIG_UNCODEDFRAMECRC_MUXER 1
%define CONFIG_VC1_MUXER 1
%define CONFIG_VC1T_MUXER 1
%define CONFIG_VOC_MUXER 1
%define CONFIG_W64_MUXER 1
%define CONFIG_WAV_MUXER 1
%define CONFIG_WEBM_MUXER 1
%define CONFIG_WEBM_DASH_MANIFEST_MUXER 1
%define CONFIG_WEBM_CHUNK_MUXER 1
%define CONFIG_WEBP_MUXER 1
%define CONFIG_WEBVTT_MUXER 1
%define CONFIG_WTV_MUXER 1
%define CONFIG_WV_MUXER 1
%define CONFIG_YUV4MPEGPIPE_MUXER 1
%define CONFIG_CHROMAPRINT_MUXER 0
%define CONFIG_ASYNC_PROTOCOL 1
%define CONFIG_BLURAY_PROTOCOL 1
%define CONFIG_CACHE_PROTOCOL 1
%define CONFIG_CONCAT_PROTOCOL 1
%define CONFIG_CRYPTO_PROTOCOL 1
%define CONFIG_DATA_PROTOCOL 1
%define CONFIG_FFRTMPCRYPT_PROTOCOL 1
%define CONFIG_FFRTMPHTTP_PROTOCOL 1
%define CONFIG_FILE_PROTOCOL 1
%define CONFIG_FTP_PROTOCOL 1
%define CONFIG_GOPHER_PROTOCOL 1
%define CONFIG_HLS_PROTOCOL 1
%define CONFIG_HTTP_PROTOCOL 1
%define CONFIG_HTTPPROXY_PROTOCOL 1
%define CONFIG_HTTPS_PROTOCOL 1
%define CONFIG_ICECAST_PROTOCOL 1
%define CONFIG_MMSH_PROTOCOL 1
%define CONFIG_MMST_PROTOCOL 1
%define CONFIG_MD5_PROTOCOL 1
%define CONFIG_PIPE_PROTOCOL 1
%define CONFIG_PROMPEG_PROTOCOL 1
%define CONFIG_RTMP_PROTOCOL 1
%define CONFIG_RTMPE_PROTOCOL 1
%define CONFIG_RTMPS_PROTOCOL 1
%define CONFIG_RTMPT_PROTOCOL 1
%define CONFIG_RTMPTE_PROTOCOL 1
%define CONFIG_RTMPTS_PROTOCOL 1
%define CONFIG_RTP_PROTOCOL 1
%define CONFIG_SCTP_PROTOCOL 0
%define CONFIG_SRTP_PROTOCOL 1
%define CONFIG_SUBFILE_PROTOCOL 1
%define CONFIG_TEE_PROTOCOL 1
%define CONFIG_TCP_PROTOCOL 1
%define CONFIG_TLS_PROTOCOL 1
%define CONFIG_UDP_PROTOCOL 1
%define CONFIG_UDPLITE_PROTOCOL 1
%define CONFIG_UNIX_PROTOCOL 0
%define CONFIG_LIBRTMP_PROTOCOL 0
%define CONFIG_LIBRTMPE_PROTOCOL 0
%define CONFIG_LIBRTMPS_PROTOCOL 0
%define CONFIG_LIBRTMPT_PROTOCOL 0
%define CONFIG_LIBRTMPTE_PROTOCOL 0
%define CONFIG_LIBSRT_PROTOCOL 0
%define CONFIG_LIBSSH_PROTOCOL 1
%define CONFIG_LIBSMBCLIENT_PROTOCOL 0
|
Transynther/x86/_processed/US/_zr_/i7-7700_9_0x48.log_281_417.asm | ljhsiun2/medusa | 9 | 173145 | <filename>Transynther/x86/_processed/US/_zr_/i7-7700_9_0x48.log_281_417.asm
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r12
push %r13
push %rax
push %rbp
push %rbx
push %rcx
// Store
lea addresses_WC+0x13acc, %rcx
nop
nop
nop
nop
nop
add %r13, %r13
mov $0x5152535455565758, %r11
movq %r11, %xmm6
movups %xmm6, (%rcx)
nop
nop
nop
nop
nop
add $59025, %r13
// Store
lea addresses_UC+0x155a4, %rax
nop
nop
nop
nop
nop
and $39728, %rcx
mov $0x5152535455565758, %rbx
movq %rbx, %xmm2
movups %xmm2, (%rax)
nop
nop
xor $47410, %r13
// Store
lea addresses_PSE+0x1024, %r11
sub %r12, %r12
movw $0x5152, (%r11)
and %r12, %r12
// Store
lea addresses_WC+0x87a4, %rbp
nop
nop
and $21433, %rcx
movl $0x51525354, (%rbp)
nop
nop
nop
nop
cmp %r12, %r12
// Store
lea addresses_WC+0x1d8a4, %rcx
nop
nop
nop
xor $61737, %r13
movb $0x51, (%rcx)
nop
nop
nop
nop
dec %rax
// Faulty Load
lea addresses_US+0x1eda4, %r12
nop
nop
add %r13, %r13
movups (%r12), %xmm1
vpextrq $0, %xmm1, %rcx
lea oracles, %rbx
and $0xff, %rcx
shlq $12, %rcx
mov (%rbx,%rcx,1), %rcx
pop %rcx
pop %rbx
pop %rbp
pop %rax
pop %r13
pop %r12
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_US', 'AVXalign': False, 'congruent': 0, 'size': 4, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC', 'AVXalign': False, 'congruent': 3, 'size': 16, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_UC', 'AVXalign': False, 'congruent': 9, 'size': 16, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_PSE', 'AVXalign': False, 'congruent': 7, 'size': 2, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC', 'AVXalign': True, 'congruent': 9, 'size': 4, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC', 'AVXalign': False, 'congruent': 6, 'size': 1, 'same': False, 'NT': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_US', 'AVXalign': False, 'congruent': 0, 'size': 16, 'same': True, 'NT': False}}
<gen_prepare_buffer>
{'00': 281}
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
*/
|
examples/memory_chain.asm | Zottel/opencl_scad_experiment | 0 | 87617 |
// load input[0]
$0 -> lsu_input@in0 // addr
$0 -> lsu_input@in1 // value, ignored for load
(ld, 1) -> lsu_input@opc // store value
// load input[1]
$1 -> lsu_input@in0 // addr
$0 -> lsu_input@in1 // value, ignored for load
(ld, 1) -> lsu_input@opc // store value
// input -> scratchpad[0]
$0 -> lsu@in0 // addr
lsu_input@out -> lsu@in1 // value
st -> lsu@opc // store value
// 123 -> output[0]
$0 -> lsu_output@in0 // addr
$123 -> lsu_output@in1 // value
st -> lsu_output@opc // store value
// input -> output[1]
$1 -> lsu_output@in0 // addr
lsu_input@out -> lsu_output@in1 // value
st -> lsu_output@opc // store value
// load scratchpad[0]
$0 -> lsu@in0 // addr
$0 -> lsu@in1 // value, ignored for load
(ld, 1) -> lsu@opc // store value
// scratchpad -> output[2]
$3 -> lsu_output@in0 // addr
lsu@out -> lsu_output@in1 // value
st -> lsu_output@opc // store value
|
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1440.asm | ljhsiun2/medusa | 9 | 164719 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %rax
push %rbp
push %rbx
push %rdx
push %rsi
lea addresses_A_ht+0x34d9, %rdx
sub $51423, %rbp
movb $0x61, (%rdx)
nop
nop
nop
nop
nop
inc %r11
lea addresses_A_ht+0x3e56, %rax
nop
and $51617, %rsi
mov $0x6162636465666768, %r14
movq %r14, %xmm3
vmovups %ymm3, (%rax)
nop
nop
nop
sub %rdx, %rdx
lea addresses_UC_ht+0x13d9, %rsi
nop
sub $52339, %rbx
movb (%rsi), %r11b
nop
nop
nop
cmp %rdx, %rdx
pop %rsi
pop %rdx
pop %rbx
pop %rbp
pop %rax
pop %r14
pop %r11
ret
.global s_faulty_load
s_faulty_load:
push %r12
push %r15
push %rbp
push %rdi
push %rsi
// Faulty Load
lea addresses_RW+0xe619, %r12
nop
sub $34011, %rsi
vmovups (%r12), %ymm4
vextracti128 $0, %ymm4, %xmm4
vpextrq $1, %xmm4, %rdi
lea oracles, %rsi
and $0xff, %rdi
shlq $12, %rdi
mov (%rsi,%rdi,1), %rdi
pop %rsi
pop %rdi
pop %rbp
pop %r15
pop %r12
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_RW', 'same': False, 'size': 8, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'type': 'addresses_RW', 'same': True, 'size': 32, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'dst': {'type': 'addresses_A_ht', 'same': False, 'size': 1, 'congruent': 6, 'NT': False, 'AVXalign': True}, 'OP': 'STOR'}
{'dst': {'type': 'addresses_A_ht', 'same': False, 'size': 32, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'src': {'type': 'addresses_UC_ht', 'same': False, 'size': 1, 'congruent': 6, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'32': 21829}
32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32
*/
|
IntelFsp2Pkg/Library/SecFspSecPlatformLibNull/X64/Long64.nasm | mefff/edk2 | 0 | 176519 | ;; @file
; This is the code that performs early platform initialization.
; It consumes the reset vector, configures the stack.
;
; Copyright (c) 2022, Intel Corporation. All rights reserved.<BR>
; SPDX-License-Identifier: BSD-2-Clause-Patent
;;
;
; Define assembler characteristics
;
extern ASM_PFX(TempRamInitApi)
SECTION .text
%macro RET_RSI 0
movd rsi, mm7 ; restore RSI from MM7
jmp rsi
%endmacro
;
; Perform early platform initialization
;
global ASM_PFX(SecPlatformInit)
ASM_PFX(SecPlatformInit):
RET_RSI
|
src/antlr/Verilog.g4 | cw1997/verilog-port-list-parser | 0 | 6178 | <gh_stars>0
grammar Verilog;
//@header{package me.changwei.verilog;}
options {
}
// grammer
start: portList EOF;
portList: portItem (COMMA portItem)*;
portItem: PORT_DIRECTION portNameList;
portNameList: portName (COMMA portName)*;
portName: ID;
// lexer
SPACE: [ \t]+ -> skip;
BREAK_LINE: [\r\n]+ -> skip;
COMMENT: '//' .*? ('\r'? '\n' | EOF) -> skip;
PORT_DIRECTION: ('input'|'output'|'inout');
COMMA: ',';
SEMICOLON: ';';
COLON: ':';
fragment UNDERLINE: '_';
fragment LETTER: [a-zA-Z];
fragment DIGIT_DEC: [0-9];
fragment DIGIT_DEC_WITHOUT_ZERO: [1-9];
ID: (LETTER|UNDERLINE)(LETTER|UNDERLINE|DIGIT_DEC)*;
|
game/logic/game_states/character_selection_screen/character_selection_screen_extra_code.asm | benoitryder/super-tilt-bro | 91 | 177525 | CHAR_SELECT_SCREEN_EXTRA_BANK_NUMBER = CURRENT_BANK_NUMBER
#define NEXT_BYTE .(:\
iny:\
bne end_inc_vector:\
inc compressed_nametable+1:\
end_inc_vector:\
.)
#define GOT_BYTE .(:\
ldx current:\
sta character_selection_mem_buffer, x:\
inc current:\
.)
; Copy a compressed nametable to mem buffer
; tmpfield1 - zipped data address (low)
; tmpfield2 - zipped data address (high)
; tmpfield3 - unzipped data offset (low)
; tmpfield4 - unzipped data offset (high)
; tmpfield5 - unzipped data count
;
; Overwrites all registers, tmpfield1-7
character_selection_get_unzipped_bytes:
.(
compressed_nametable = tmpfield1
offset = tmpfield3
count = tmpfield5
current = tmpfield6
zero_counter = tmpfield7 ; WARNING - used temporarily, read the code before using it
lda #0
sta current
ldx #0
ldy #0
skip_bytes:
.(
; Decrement offset, stop on zero
.(
lda offset
bne no_carry
carry:
lda offset+1
beq end_skip_bytes
dec offset+1
no_carry:
dec offset
.)
loop_without_dec:
; Take action,
; - output a zero if in compressed series
; - output the byte on normal bytes
; - init compressed series on opcode
cpx #0
bne compressed_zero
lda (compressed_nametable), y
beq opcode
normal_byte:
NEXT_BYTE
jmp skip_bytes
opcode:
; X = number of uncompressed zeros to output
NEXT_BYTE
lda (compressed_nametable), y
tax
NEXT_BYTE
; Skip iterating on useless zeros
; note - This code checks only offset's msb to know if offset > X.
; It could be finer grained to gain some cycles (to be tested on need)
.(
lda offset+1
beq done
skip_all:
stx zero_counter
ldx #0
sec
lda offset
sbc zero_counter
sta offset
lda offset+1
sbc #0
sta offset+1
done:
.)
jmp loop_without_dec ; force the loop, we did not get uncompressed byte
compressed_zero:
dex
jmp skip_bytes
end_skip_bytes:
.)
get_bytes:
.(
; Take action,
; - output a zero if in compressed series
; - output the byte on normal bytes
; - init compressed series on opcode
cpx #0
bne compressed_zero
lda (compressed_nametable), y
beq opcode
normal_byte:
GOT_BYTE
NEXT_BYTE
ldx #0
jmp loop_get_bytes
opcode:
NEXT_BYTE
lda (compressed_nametable), y
tax
NEXT_BYTE
jmp get_bytes ; force the loop, we did not get uncompressed byte
compressed_zero:
stx zero_counter
lda #0
GOT_BYTE
ldx zero_counter
dex
;jmp loop_get_bytes ; useless fallthrough
; Check loop count
loop_get_bytes:
dec count
force_loop_get_bytes:
bne get_bytes
.)
end:
rts
.)
#undef NEXT_BYTE
#undef GOT_BYTE
#include "game/logic/game_states/character_selection_screen/character_selection_screen.built.asm"
|
test/Succeed/Issue5809.agda | KDr2/agda | 0 | 7974 | <reponame>KDr2/agda
-- Andreas, 2022-03-07, issue #5809 reported by jamestmartin
-- Regression in Agda 2.6.1.
-- Not reducing irrelevant projections lead to non-inferable elim-terms
-- and consequently to internal errors.
--
-- The fix is to treat irrelevant projections as just functions,
-- retaining their parameters, so that they remain inferable
-- even if not in normal form.
{-# OPTIONS --irrelevant-projections #-}
{-# OPTIONS --allow-unsolved-metas #-}
-- {-# OPTIONS --no-double-check #-}
-- {-# OPTIONS -v impossible:100 #-}
-- {-# OPTIONS -v tc:40 #-}
open import Agda.Builtin.Equality
record Squash {ℓ} (A : Set ℓ) : Set ℓ where
constructor squash
field
.unsquash : A
open Squash
.test : ∀ {ℓ} {A : Set ℓ} (x : A) (y : Squash A) → {!!}
test x y = {!!}
where
help : unsquash (squash x) ≡ unsquash y
help = refl
-- WAS: internal error.
-- Should succeed with unsolved metas.
|
FormalAnalyzer/models/apps/ID12AlarmSoundsTurnOnLights+.als | Mohannadcse/IoTCOM_BehavioralRuleExtractor | 0 | 3190 | <filename>FormalAnalyzer/models/apps/ID12AlarmSoundsTurnOnLights+.als
module app_ID12AlarmSoundsTurnOnLights
open IoTBottomUp as base
open cap_alarm
open cap_switch
open cap_smokeDetector
one sig app_ID12AlarmSoundsTurnOnLights extends IoTApp {
smoke : one cap_smokeDetector,
mySwitch : set cap_switch,
alarm : one cap_alarm,
} {
rules = r
}
// application rules base class
abstract sig r extends Rule {}
one sig r0 extends r {}{
triggers = r0_trig
conditions = r0_cond
commands = r0_comm
}
abstract sig r0_trig extends Trigger {}
one sig r0_trig0 extends r0_trig {} {
capabilities = app_ID12AlarmSoundsTurnOnLights.smoke
attribute = cap_smokeDetector_attr_smoke
no value
//value = cap_smokeDetector_attr_smoke_val
}
abstract sig r0_cond extends Condition {}
one sig r0_cond0 extends r0_cond {} {
capabilities = app_ID12AlarmSoundsTurnOnLights.smoke
attribute = cap_smokeDetector_attr_smoke
value = cap_smokeDetector_attr_smoke_val - cap_smokeDetector_attr_smoke_val_detected
}
one sig r0_cond1 extends r0_cond {} {
capabilities = app_ID12AlarmSoundsTurnOnLights.smoke
attribute = cap_smokeDetector_attr_smoke
value = cap_smokeDetector_attr_smoke_val_clear
}
abstract sig r0_comm extends Command {}
one sig r0_comm0 extends r0_comm {} {
capability = app_ID12AlarmSoundsTurnOnLights.alarm
attribute = cap_alarm_attr_alarm
value = cap_alarm_attr_alarm_val_off
}
one sig r1 extends r {}{
triggers = r1_trig
conditions = r1_cond
commands = r1_comm
}
abstract sig r1_trig extends Trigger {}
one sig r1_trig0 extends r1_trig {} {
capabilities = app_ID12AlarmSoundsTurnOnLights.smoke
attribute = cap_smokeDetector_attr_smoke
//value = cap_smokeDetector_attr_smoke_val
no value
}
abstract sig r1_cond extends Condition {}
one sig r1_cond0 extends r1_cond {} {
capabilities = app_ID12AlarmSoundsTurnOnLights.smoke
attribute = cap_smokeDetector_attr_smoke
value = cap_smokeDetector_attr_smoke_val_detected
}
abstract sig r1_comm extends Command {}
one sig r1_comm0 extends r1_comm {} {
capability = app_ID12AlarmSoundsTurnOnLights.alarm
attribute = cap_alarm_attr_alarm
value = cap_alarm_attr_alarm_val_siren
}
one sig r1_comm1 extends r1_comm {} {
capability = app_ID12AlarmSoundsTurnOnLights.mySwitch
attribute = cap_switch_attr_switch
value = cap_switch_attr_switch_val_on
}
|
test/Fail/WrongSizeAssignment2.agda | shlevy/agda | 1,989 | 2877 | {-# OPTIONS --sized-types --show-implicit #-}
module WrongSizeAssignment2 where
open import Common.Size renaming (↑_ to _^)
data Empty : Set where
data N : {_ : Size} -> Set where
zero : N {∞}
suc : forall {i} -> N {i ^} -> N {i}
lift : forall {i} -> N {i} -> N {i ^}
lift zero = zero
lift (suc x) = suc (lift x)
f : forall {i} -> N {i} -> Empty
f x = f (suc (lift x))
|
source/asis/spec/ada-strings-maps-constants.ads | faelys/gela-asis | 4 | 7058 | ------------------------------------------------------------------------------
-- A d a r u n - t i m e s p e c i f i c a t i o n --
-- ASIS implementation for Gela project, a portable Ada compiler --
-- http://gela.ada-ru.org --
-- - - - - - - - - - - - - - - - --
-- Read copyright and license at the end of ada.ads file --
------------------------------------------------------------------------------
-- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $
package Ada.Strings.Maps.Constants is
pragma Pure (Constants);
Control_Set : constant Character_Set;
Graphic_Set : constant Character_Set;
Letter_Set : constant Character_Set;
Lower_Set : constant Character_Set;
Upper_Set : constant Character_Set;
Basic_Set : constant Character_Set;
Decimal_Digit_Set : constant Character_Set;
Hexadecimal_Digit_Set : constant Character_Set;
Alphanumeric_Set : constant Character_Set;
Special_Set : constant Character_Set;
ISO_646_Set : constant Character_Set;
Lower_Case_Map : constant Character_Mapping;
--Maps to lower case for letters, else identity
Upper_Case_Map : constant Character_Mapping;
--Maps to upper case for letters, else identity
Basic_Map : constant Character_Mapping;
--Maps to basic letter for letters, else identity
private
pragma Import (Ada, Control_Set);
pragma Import (Ada, Graphic_Set);
pragma Import (Ada, Letter_Set);
pragma Import (Ada, Lower_Set);
pragma Import (Ada, Upper_Set);
pragma Import (Ada, Basic_Set);
pragma Import (Ada, Decimal_Digit_Set);
pragma Import (Ada, Hexadecimal_Digit_Set);
pragma Import (Ada, Alphanumeric_Set);
pragma Import (Ada, Special_Set);
pragma Import (Ada, ISO_646_Set);
pragma Import (Ada, Lower_Case_Map);
pragma Import (Ada, Upper_Case_Map);
pragma Import (Ada, Basic_Map);
end Ada.Strings.Maps.Constants;
|
Task/Draw-a-sphere/Ada/draw-a-sphere-1.ada | LaudateCorpus1/RosettaCodeData | 1 | 26497 | with Glib; use Glib;
with Cairo; use Cairo;
with Cairo.Png; use Cairo.Png;
with Cairo.Pattern; use Cairo.Pattern;
with Cairo.Image_Surface; use Cairo.Image_Surface;
with Ada.Numerics;
procedure Sphere is
subtype Dub is Glib.Gdouble;
Surface : Cairo_Surface;
Cr : Cairo_Context;
Pat : Cairo_Pattern;
Status_Out : Cairo_Status;
M_Pi : constant Dub := Dub (Ada.Numerics.Pi);
begin
Surface := Create (Cairo_Format_ARGB32, 512, 512);
Cr := Create (Surface);
Pat :=
Cairo.Pattern.Create_Radial (230.4, 204.8, 51.1, 204.8, 204.8, 256.0);
Cairo.Pattern.Add_Color_Stop_Rgba (Pat, 0.0, 1.0, 1.0, 1.0, 1.0);
Cairo.Pattern.Add_Color_Stop_Rgba (Pat, 1.0, 0.0, 0.0, 0.0, 1.0);
Cairo.Set_Source (Cr, Pat);
Cairo.Arc (Cr, 256.0, 256.0, 153.6, 0.0, 2.0 * M_Pi);
Cairo.Fill (Cr);
Cairo.Pattern.Destroy (Pat);
Status_Out := Write_To_Png (Surface, "SphereAda.png");
pragma Assert (Status_Out = Cairo_Status_Success);
end Sphere;
|
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_528.asm | ljhsiun2/medusa | 9 | 172866 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r15
push %r8
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0xccbb, %r11
nop
cmp %rdx, %rdx
mov (%r11), %cx
nop
nop
nop
nop
inc %r9
lea addresses_A_ht+0x1513b, %r8
sub %r15, %r15
mov $0x6162636465666768, %r12
movq %r12, %xmm2
vmovups %ymm2, (%r8)
nop
nop
nop
xor $64074, %rdx
lea addresses_UC_ht+0x1efb, %r11
xor $36563, %rdx
movb (%r11), %r15b
nop
dec %r12
lea addresses_A_ht+0x1bb2b, %r8
nop
nop
nop
xor %r11, %r11
mov $0x6162636465666768, %r15
movq %r15, (%r8)
nop
nop
nop
nop
and $21243, %rdx
lea addresses_D_ht+0x9bfb, %rsi
lea addresses_normal_ht+0xbe7b, %rdi
clflush (%rdi)
nop
nop
nop
add $61199, %r15
mov $116, %rcx
rep movsl
inc %r15
lea addresses_D_ht+0xe636, %rsi
lea addresses_A_ht+0x401a, %rdi
nop
nop
nop
cmp $48628, %r8
mov $24, %rcx
rep movsb
nop
nop
nop
xor %rsi, %rsi
lea addresses_A_ht+0x3efb, %rcx
nop
cmp %r11, %r11
mov (%rcx), %edi
nop
nop
nop
nop
nop
add $22020, %r15
lea addresses_normal_ht+0x10a7b, %r8
nop
nop
nop
and %rsi, %rsi
vmovups (%r8), %ymm3
vextracti128 $1, %ymm3, %xmm3
vpextrq $0, %xmm3, %rdx
nop
nop
nop
nop
and %rsi, %rsi
lea addresses_WC_ht+0xe2a9, %rsi
lea addresses_D_ht+0x1477b, %rdi
and $64471, %r8
mov $46, %rcx
rep movsw
sub $47927, %rcx
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %r9
pop %r8
pop %r15
pop %r12
pop %r11
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r12
push %r13
push %r8
push %rbx
// Faulty Load
lea addresses_UC+0xbfb, %r8
nop
nop
dec %r12
movups (%r8), %xmm1
vpextrq $1, %xmm1, %r10
lea oracles, %rbx
and $0xff, %r10
shlq $12, %r10
mov (%rbx,%r10,1), %r10
pop %rbx
pop %r8
pop %r13
pop %r12
pop %r11
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'NT': False, 'AVXalign': True, 'size': 2, 'congruent': 0, 'same': False, 'type': 'addresses_UC'}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 0, 'same': True, 'type': 'addresses_UC'}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 4, 'same': False, 'type': 'addresses_WT_ht'}, 'OP': 'LOAD'}
{'dst': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 6, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'STOR'}
{'src': {'NT': False, 'AVXalign': False, 'size': 1, 'congruent': 5, 'same': False, 'type': 'addresses_UC_ht'}, 'OP': 'LOAD'}
{'dst': {'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 4, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'STOR'}
{'src': {'congruent': 10, 'same': False, 'type': 'addresses_D_ht'}, 'dst': {'congruent': 7, 'same': False, 'type': 'addresses_normal_ht'}, 'OP': 'REPM'}
{'src': {'congruent': 0, 'same': False, 'type': 'addresses_D_ht'}, 'dst': {'congruent': 0, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'REPM'}
{'src': {'NT': True, 'AVXalign': False, 'size': 4, 'congruent': 7, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'LOAD'}
{'src': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 6, 'same': False, 'type': 'addresses_normal_ht'}, 'OP': 'LOAD'}
{'src': {'congruent': 1, 'same': False, 'type': 'addresses_WC_ht'}, 'dst': {'congruent': 7, 'same': False, 'type': 'addresses_D_ht'}, 'OP': 'REPM'}
{'37': 21829}
37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37
*/
|
openal-types.ads | io7m/coreland-openal-ada | 1 | 6367 | with Interfaces.C;
with System;
package OpenAL.Types is
package C renames Interfaces.C;
-- ALfloat
type Float_t is new C.C_float;
-- ALdouble
type Double_t is new C.double;
-- ALsizeiptr
type Size_Pointer_t is mod 2 ** System.Word_Size;
for Size_Pointer_t'Size use System.Word_Size;
pragma Convention (C, Size_Pointer_t);
-- ALintptr
type Integer_Pointer_t is mod 2 ** System.Word_Size;
for Integer_Pointer_t'Size use System.Word_Size;
pragma Convention (C, Integer_Pointer_t);
-- ALbitfield
type Bitfield_t is mod 2 ** 32;
for Bitfield_t'Size use 32;
pragma Convention (C, Bitfield_t);
-- ALboolean
type Boolean_t is new Boolean;
for Boolean_t'Size use 8;
pragma Convention (C, Boolean_t);
-- ALbyte
type Byte_t is range -127 .. 127;
for Byte_t'Size use 8;
pragma Convention (C, Byte_t);
-- ALclampd
subtype Clamped_Double_t is Double_t range 0.0 .. 1.0;
-- ALclampf
subtype Clamped_Float_t is Float_t range 0.0 .. 1.0;
-- ALenum
type Enumeration_t is mod 2 ** 32;
for Enumeration_t'Size use 32;
pragma Convention (C, Enumeration_t);
-- ALint
type Integer_t is range -2147483647 .. 2147483647;
for Integer_t'Size use 32;
pragma Convention (C, Integer_t);
-- ALshort
type Short_t is range -32767 .. 32767;
for Short_t'Size use 16;
pragma Convention (C, Short_t);
-- ALsizei
type Size_t is range -2147483647 .. 2147483647;
for Size_t'Size use 32;
pragma Convention (C, Size_t);
-- ALubyte
type Unsigned_Byte_t is mod 2 ** 8;
for Unsigned_Byte_t'Size use 8;
pragma Convention (C, Unsigned_Byte_t);
-- ALuint
type Unsigned_Integer_t is mod 2 ** 32;
for Unsigned_Integer_t'Size use 32;
pragma Convention (C, Unsigned_Integer_t);
-- ALushort
type Unsigned_Short_t is mod 2 ** 16;
for Unsigned_Short_t'Size use 16;
pragma Convention (C, Unsigned_Short_t);
-- ALvoid *
subtype Void_Pointer_t is System.Address;
-- ALvoid **
type Void_Pointer_Access_t is access all Void_Pointer_t;
pragma Convention (C, Void_Pointer_Access_t);
-- const ALvoid **
type Void_Pointer_Access_Constant_t is access constant System.Address;
pragma Convention (C, Void_Pointer_Access_Constant_t);
type String_t is new System.Address;
subtype Natural_Float_t is Float_t range 0.0 .. Float_t'Last;
subtype Positive_Float_t is Float_t range 1.0 .. Float_t'Last;
type Vector_i_t is array (Positive range <>) of aliased Integer_t;
type Vector_2i_t is new Vector_i_t (1 .. 2);
type Vector_3i_t is new Vector_i_t (1 .. 3);
type Vector_4i_t is new Vector_i_t (1 .. 4);
type Vector_f_t is array (Positive range <>) of aliased Float_t;
type Vector_2f_t is new Vector_f_t (1 .. 2);
type Vector_3f_t is new Vector_f_t (1 .. 3);
type Vector_4f_t is new Vector_f_t (1 .. 4);
--
-- Frequency in hz.
--
type Frequency_t is new Size_t range 1 .. Size_t'Last;
end OpenAL.Types;
|
test/asm/rs.asm | michealccc/rgbds | 522 | 6766 |
a1 rb 1
a2 rw 1
a3 rl 1
PRINTLN "a1 = ", a1
PRINTLN "a2 = ", a2
PRINTLN "a3 = ", a3
PRINTLN "_RS = ", _RS
b1 rb 1
b2 rw 1
b3 rl 1
PRINTLN "b1 = ", b1
PRINTLN "b2 = ", b2
PRINTLN "b3 = ", b3
PRINTLN "_RS = ", _RS
rsset 42
c1 rb 1
c2 rw 1
c3 rl 1
PRINTLN "c1 = ", c1
PRINTLN "c2 = ", c2
PRINTLN "c3 = ", c3
PRINTLN "_RS = ", _RS
rsreset
d1 rb 1
d2 rw 1
d3 rl 1
PRINTLN "d1 = ", d1
PRINTLN "d2 = ", d2
PRINTLN "d3 = ", d3
PRINTLN "_RS = ", _RS
|
mastersystem/zxb-sms-2012-02-23/zxb-sms/wip/zxb/library-asm/abs32.asm | gb-archive/really-old-stuff | 10 | 20014 | ; 16 bit signed integer abs value
; HL = value
#include once <neg32.asm>
|
corpus-for-codebuff/KeywordFun.g4 | studentmain/AntlrVSIX | 67 | 7289 | grammar KeywordFun;
a : 'abc';
b : 'def';
A: 'abc';
B: 'def';
C: 'uvw' 'xyz'?;
D: 'uvw' 'xyz'+;
|
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_9238_1769.asm | ljhsiun2/medusa | 9 | 91930 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r14
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x188, %rsi
lea addresses_A_ht+0xbd5, %rdi
nop
dec %rax
mov $3, %rcx
rep movsq
nop
inc %rdi
lea addresses_UC_ht+0x42f5, %r12
mfence
mov (%r12), %r14d
nop
nop
nop
add %rsi, %rsi
lea addresses_UC_ht+0xd395, %rsi
nop
nop
nop
nop
nop
sub $39777, %rdx
mov (%rsi), %r12
nop
nop
nop
nop
nop
add $61627, %rcx
lea addresses_WT_ht+0x17c95, %rsi
lea addresses_WT_ht+0x1d95, %rdi
nop
nop
nop
nop
nop
add %r14, %r14
mov $7, %rcx
rep movsl
nop
nop
nop
nop
and %rcx, %rcx
lea addresses_A_ht+0x901d, %rsi
nop
nop
nop
nop
cmp %rcx, %rcx
and $0xffffffffffffffc0, %rsi
vmovntdqa (%rsi), %ymm4
vextracti128 $0, %ymm4, %xmm4
vpextrq $0, %xmm4, %r12
nop
nop
sub %rdx, %rdx
lea addresses_UC_ht+0x5058, %rsi
lea addresses_D_ht+0xe55, %rdi
clflush (%rdi)
nop
nop
nop
add %r10, %r10
mov $122, %rcx
rep movsw
nop
nop
nop
sub $24269, %r14
lea addresses_normal_ht+0x6779, %rdi
xor %rsi, %rsi
vmovups (%rdi), %ymm4
vextracti128 $1, %ymm4, %xmm4
vpextrq $1, %xmm4, %r12
nop
nop
cmp $49221, %r14
lea addresses_WT_ht+0xf595, %rsi
lea addresses_WC_ht+0xe8e5, %rdi
nop
inc %r10
mov $46, %rcx
rep movsq
nop
nop
cmp %rdi, %rdi
lea addresses_A_ht+0x12d95, %rdi
nop
nop
nop
nop
sub %rax, %rax
mov (%rdi), %r12d
nop
sub %rdx, %rdx
lea addresses_normal_ht+0x6515, %rdi
nop
nop
nop
cmp $878, %rcx
mov $0x6162636465666768, %rsi
movq %rsi, %xmm0
vmovups %ymm0, (%rdi)
nop
nop
nop
nop
nop
and %r10, %r10
lea addresses_normal_ht+0x6975, %rdi
nop
and %r10, %r10
mov $0x6162636465666768, %rax
movq %rax, (%rdi)
nop
nop
nop
nop
xor %r14, %r14
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rax
pop %r14
pop %r12
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r13
push %r8
push %r9
push %rax
push %rbp
push %rbx
// Load
lea addresses_normal+0x24d5, %rbx
nop
nop
nop
nop
nop
dec %r11
movb (%rbx), %r13b
nop
nop
nop
nop
add $8125, %rbx
// Load
lea addresses_WC+0x759b, %r13
nop
nop
nop
nop
nop
dec %r8
movb (%r13), %bl
and $23452, %r11
// Faulty Load
lea addresses_UC+0x18595, %rbp
cmp %rax, %rax
movups (%rbp), %xmm0
vpextrq $0, %xmm0, %r8
lea oracles, %rax
and $0xff, %r8
shlq $12, %r8
mov (%rax,%r8,1), %r8
pop %rbx
pop %rbp
pop %rax
pop %r9
pop %r8
pop %r13
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_UC', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_normal', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_WC', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 1, 'same': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_UC', 'size': 16, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
<gen_prepare_buffer>
{'OP': 'REPM', 'src': {'type': 'addresses_A_ht', 'congruent': 0, 'same': False}, 'dst': {'type': 'addresses_A_ht', 'congruent': 5, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 9, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_WT_ht', 'congruent': 8, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 11, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_A_ht', 'size': 32, 'AVXalign': False, 'NT': True, 'congruent': 3, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_UC_ht', 'congruent': 0, 'same': False}, 'dst': {'type': 'addresses_D_ht', 'congruent': 6, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_normal_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 2, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_WT_ht', 'congruent': 11, 'same': False}, 'dst': {'type': 'addresses_WC_ht', 'congruent': 3, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_A_ht', 'size': 4, 'AVXalign': False, 'NT': True, 'congruent': 9, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_normal_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 7, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_normal_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': False}}
{'00': 9238}
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
*/
|
Common/tests/stringTest.asm | Martin-H1/6502 | 3 | 88083 | <gh_stars>1-10
; -----------------------------------------------------------------------------
; Test for string functions under py65mon.
; <NAME> <<EMAIL>>
; -----------------------------------------------------------------------------
.word $8000
.org $8000
.outfile "tests/stringTest.rom"
.alias RamSize $7EFF ; default $8000 for 32 kb x 8 bit RAM
.alias heap_base $0400 ; The heap starts on page 4.
.alias heap_size $4000 ; It's size is 16 KB.
.require "../data.asm"
.advance $c000
.require "../conio.asm"
.require "../heap.asm"
.require "../math16.asm"
.require "../print.asm"
.require "../stack.asm"
.require "../string.asm"
.require "mockConio.asm"
; Main entry point for the interpreter.
main:
ldx #SP0 ; Reset stack pointer
`pushzero
jsr mockConioInit
`pushi heap_size
`pushi heap_base
jsr hinit
jsr alpha_test
jsr ws_test
jsr number_test
jsr operator_test
jsr sign_test
jsr strlen_test
jsr strcmp_test
jsr strchr_test
jsr strcpy_test
jsr strtoi_test
brk
.scope
_name: .byte "*** alpha_test ***",0
_data: .byte " 0AZaz!",0
_is: .byte "It is alphabetic.",0
_isnot: .byte "It is not alphabetic!",0
alpha_test:
`println _name
`pushi _data
jsr mockConioInit
_for: jsr getch
beq _endfor
jsr isalpha
bne +
`println _is
bra _for
* `println _isnot
bra _for
_endfor:
rts
.scend
.scope
_name: .byte "*** number_test ***",0
_data: .byte " 0123456789A!",0
_is: .byte "It is numeric.",0
_isnot: .byte "It is not numeric!",0
number_test:
`println _name
`pushi _data
jsr mockConioInit
_for: jsr getch
beq _endfor
jsr isdigit
bne +
`println _is
bra _for
* `println _isnot
bra _for
_endfor:
rts
.scend
.scope
_name: .byte "*** ws_test ***",0
_data: .byte " \t\v\f\rA",0
_is: .byte "It is white space.",0
_isnot: .byte "It is not white space.",0
ws_test:
`println _name
`pushi _data
jsr mockConioInit
_for: jsr getch
beq _endfor
jsr isspace
bne +
`println _is
bra _for
* `println _isnot
bra _for
_endfor:
rts
.scend
.scope
_name: .byte "*** operator test ***",0
_data: .byte "aa+ - * / = < > <=>=bb",0
_is: .byte " is an operator.",0
_isnot: .byte " is not an operator",0
.macro doOperatorTest
.macend
operator_test:
`println _name
`pushi _data
jsr mockConioInit
_while: jsr getch
beq _endwhile
`pushA
jsr putch
jsr getch
sta TOS_MSB,x
jsr putch
jsr isoperator
bne +
`println _is
bra _while
* `println _isnot
bra _while
_endwhile:
`printcr
rts
.scend
.scope
_name: .byte "*** sign test ***",0
_is: .byte " is a sign.",0
_isnot: .byte " is not a sign",0
.macro doSignTest
lda #_1
jsr putch
jsr issign
bne _else
`println _is
bra _endif
_else:
`println _isnot
_endif:
.macend
sign_test:
`println _name
`doSignTest '0
`doSignTest 'a
`doSignTest '\+
`doSignTest '\-
`printcr
rts
.scend
.scope
_name: .byte "*** strlen test ***",0
strlen_test:
`println _name
`pushi hello_world
jsr strlen
jsr printstack
`drop
rts
.scend
.scope
_name: .byte "*** strcmp test ***",0
strcmp_test:
`println _name
`pushi hello_world
`pushi hello_world
jsr strcmp
jsr printa
`printcr
`pushi goodbye_world
`pushi hello_world
jsr strcmp
jsr printa
`printcr
`pushi hello_world
`pushi goodbye_world
jsr strcmp
jsr printa
`printcr
`printcr
rts
.scend
.scope
_name: .byte "*** strchr test ***",0
strchr_test:
`println _name
`pushi test_buffer
`pushi test_buffer
lda #'\-
jsr strchr
jsr printstack
`swap
jsr sub16
jsr printstack
`drop
rts
.scend
.scope
_name: .byte "*** strcpy test ***",0
strcpy_test:
`println _name
`pushi test_buffer
`pushi goodbye_world
jsr printstack
jsr strcpy
`dup
jsr cputs
`printcr
jsr printstack
jsr strdup
`dup
jsr cputs
`printcr
jsr printstack
`drop
rts
.scend
.scope
_name: .byte "*** strtoi test ***",0
_msg: .byte " converts to ",0
strtoi_test:
`println _name
`pushi _zero
jsr strtoi
`print _zero
`print _msg
jsr printtosln
`drop
`pushi _one
jsr strtoi
`print _one
`print _msg
jsr printtosln
`drop
`pushi _nine
jsr strtoi
`print _nine
`print _msg
jsr printtosln
`drop
`pushi _ten
jsr strtoi
`print _ten
`print _msg
jsr printtosln
`drop
`pushi _t567
jsr strtoi
`print _t567
`print _msg
jsr printtosln
`drop
`pushi _tn1
jsr strtoi
`print _tn1
`print _msg
jsr printtosln
`drop
rts
_zero: .byte "0",0
_one: .byte "1",0
_nine: .byte "9",0
_ten: .byte "10",0
_t567: .byte "+567",0
_tn1: .byte "-1",0
.scend
goodbye_world: .byte "Goodbye World!",0
hello_world: .byte "Hello World!",0
test_buffer: .byte " - ",0
.require "../vectors.asm"
|
programs/oeis/040/A040357.asm | neoneye/loda | 22 | 240378 | <gh_stars>10-100
; A040357: Continued fraction for sqrt(377).
; 19,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2,38,2,2,2
dif $0,2
seq $0,40360 ; Continued fraction for sqrt(380).
|
libsrc/_DEVELOPMENT/adt/b_array/c/sccz80/b_array_append_callee.asm | meesokim/z88dk | 0 | 97370 | <reponame>meesokim/z88dk
; size_t b_array_append(b_array_t *a, int c)
SECTION code_adt_b_array
PUBLIC b_array_append_callee
b_array_append_callee:
pop hl
pop bc
ex (sp),hl
INCLUDE "adt/b_array/z80/asm_b_array_append.asm"
|
programs/oeis/056/A056451.asm | neoneye/loda | 22 | 1843 | <reponame>neoneye/loda<filename>programs/oeis/056/A056451.asm
; A056451: Number of palindromes using a maximum of five different symbols.
; 1,5,5,25,25,125,125,625,625,3125,3125,15625,15625,78125,78125,390625,390625,1953125,1953125,9765625,9765625,48828125,48828125,244140625,244140625,1220703125,1220703125,6103515625,6103515625,30517578125,30517578125,152587890625,152587890625,762939453125,762939453125,3814697265625,3814697265625,19073486328125,19073486328125,95367431640625,95367431640625,476837158203125,476837158203125,2384185791015625,2384185791015625,11920928955078125,11920928955078125,59604644775390625,59604644775390625,298023223876953125,298023223876953125,1490116119384765625,1490116119384765625,7450580596923828125,7450580596923828125,37252902984619140625,37252902984619140625,186264514923095703125,186264514923095703125,931322574615478515625,931322574615478515625,4656612873077392578125,4656612873077392578125,23283064365386962890625,23283064365386962890625,116415321826934814453125,116415321826934814453125,582076609134674072265625,582076609134674072265625,2910383045673370361328125,2910383045673370361328125,14551915228366851806640625,14551915228366851806640625,72759576141834259033203125,72759576141834259033203125,363797880709171295166015625,363797880709171295166015625,1818989403545856475830078125,1818989403545856475830078125,9094947017729282379150390625,9094947017729282379150390625,45474735088646411895751953125,45474735088646411895751953125,227373675443232059478759765625,227373675443232059478759765625,1136868377216160297393798828125,1136868377216160297393798828125,5684341886080801486968994140625,5684341886080801486968994140625,28421709430404007434844970703125,28421709430404007434844970703125,142108547152020037174224853515625,142108547152020037174224853515625,710542735760100185871124267578125,710542735760100185871124267578125,3552713678800500929355621337890625,3552713678800500929355621337890625,17763568394002504646778106689453125,17763568394002504646778106689453125,88817841970012523233890533447265625
add $0,1
div $0,2
mov $1,5
pow $1,$0
mov $0,$1
|
subrutina.asm | emilio93/ie424 | 0 | 179983 | NOP,24'd4000
STO, R0, 16'b0 // cero
STO, R1, 16'b1 // uno
STO, R8, 16'b11111111 // maximo
INICIO:
STO, R2, 16'b1 // valor en leds
STO, R3, 16'd2 // multiplicador
STO, R4, 16'd65000 // cuentas para el ciclo2
STO, R5, 16'd65000 // cuentas para el ciclo3
PUSH, 16'b0, R3
PUSH, 16'b0, R4
PUSH, 16'b0, R5
STO, R7, 16'd6623 // valor en r7 se mantiene a traves de la subrutina
LOOP1:
STO, R6, 16'd0 // i
MUL, R2, R2, R3
LOOP2:
LED, 8'b0, R6, 8'b0
PUSH, 16'b0, R7
CALL, SUBRUTINA, 16'b0
POP, R7, 16'b0
ADD, R6, R6, R1
BLE, LOOP2, R6, R4
MUL, R2, R2, R3
NOP,24'd0
BLE, LOOP1, R2, R8
JMP, INICIO, 16'd0
SUBRUTINA:
NOP,24'd0
STO, R7, 16'd0 // j
NOP,24'd0
LOOP3:
ADD, R7, R7, R1
BLE, LOOP3, R7, R5
NOP,24'd0
RET, 16'b0, RA
|
programs/oeis/064/A064671.asm | neoneye/loda | 22 | 172798 | <filename>programs/oeis/064/A064671.asm
; A064671: Number of n-digit base 4 biquanimous numbers (with leading 0's allowed, but not all-0 string).
; 0,3,18,91,420,1829,7686,31623,128520,518665,2084874,8361995,33497100,134094861,536608782,2146926607,8588754960,34357248017,137433710610,549744803859,2199000186900,8796044787733,35184271425558,140737278640151,562949517213720
add $0,1
lpb $0
mov $2,2
pow $2,$0
sub $0,1
sub $0,$2
mul $2,$0
mul $0,2
sub $0,$2
mov $1,$0
mov $0,1
lpe
div $1,2
mov $0,$1
|
asm/for_loop.asm | stfnwong/smips | 0 | 6591 | # For loop example
# Taken from https://courses.cs.washington.edu/courses/cse378/03wi/lectures/mips-asm-examples.html
add $t0, $gp, $zero # &A[0] - 28
lw $t1, 4($gp) # fetch N
sll $t1, $t1, 2 # N as byte offset
add $t1, $t1, $gp # &A[N] - 28
ori $t2, $zero, 256 # MAX_SIZE
top:
sltu $t3, $t0, $t1 # have we reached the final address?
beq $t3, $zero, done # yes, we're done
sw $t2, (28($t0)) # A[i] = 0 (TODO : combinational parser than can accept literal followed by reg
addi $t0, $t0, 4 # update $t0 to point to next element
j top # go to top of loop
done:
|
ls.asm | ShwetiMahajan/xv6_schedulersOS | 0 | 169429 | <filename>ls.asm
_ls: file format elf32-i386
Disassembly of section .text:
00000000 <fmtname>:
#include "user.h"
#include "fs.h"
char*
fmtname(char *path)
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 56 push %esi
4: 53 push %ebx
5: 83 ec 10 sub $0x10,%esp
8: 8b 5d 08 mov 0x8(%ebp),%ebx
static char buf[DIRSIZ+1];
char *p;
// Find first character after last slash.
for(p=path+strlen(path); p >= path && *p != '/'; p--)
b: 89 1c 24 mov %ebx,(%esp)
e: e8 cd 03 00 00 call 3e0 <strlen>
13: 01 d8 add %ebx,%eax
15: 73 10 jae 27 <fmtname+0x27>
17: eb 13 jmp 2c <fmtname+0x2c>
19: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
20: 83 e8 01 sub $0x1,%eax
23: 39 c3 cmp %eax,%ebx
25: 77 05 ja 2c <fmtname+0x2c>
27: 80 38 2f cmpb $0x2f,(%eax)
2a: 75 f4 jne 20 <fmtname+0x20>
;
p++;
2c: 8d 58 01 lea 0x1(%eax),%ebx
// Return blank-padded name.
if(strlen(p) >= DIRSIZ)
2f: 89 1c 24 mov %ebx,(%esp)
32: e8 a9 03 00 00 call 3e0 <strlen>
37: 83 f8 0d cmp $0xd,%eax
3a: 77 53 ja 8f <fmtname+0x8f>
return p;
memmove(buf, p, strlen(p));
3c: 89 1c 24 mov %ebx,(%esp)
3f: e8 9c 03 00 00 call 3e0 <strlen>
44: 89 5c 24 04 mov %ebx,0x4(%esp)
48: c7 04 24 88 0a 00 00 movl $0xa88,(%esp)
4f: 89 44 24 08 mov %eax,0x8(%esp)
53: e8 48 04 00 00 call 4a0 <memmove>
memset(buf+strlen(p), ' ', DIRSIZ-strlen(p));
58: 89 1c 24 mov %ebx,(%esp)
5b: e8 80 03 00 00 call 3e0 <strlen>
60: 89 1c 24 mov %ebx,(%esp)
63: bb 88 0a 00 00 mov $0xa88,%ebx
68: 89 c6 mov %eax,%esi
6a: e8 71 03 00 00 call 3e0 <strlen>
6f: ba 0e 00 00 00 mov $0xe,%edx
74: 29 f2 sub %esi,%edx
76: 89 54 24 08 mov %edx,0x8(%esp)
7a: c7 44 24 04 20 00 00 movl $0x20,0x4(%esp)
81: 00
82: 05 88 0a 00 00 add $0xa88,%eax
87: 89 04 24 mov %eax,(%esp)
8a: e8 71 03 00 00 call 400 <memset>
return buf;
}
8f: 83 c4 10 add $0x10,%esp
92: 89 d8 mov %ebx,%eax
94: 5b pop %ebx
95: 5e pop %esi
96: 5d pop %ebp
97: c3 ret
98: 90 nop
99: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
000000a0 <ls>:
void
ls(char *path)
{
a0: 55 push %ebp
a1: 89 e5 mov %esp,%ebp
a3: 57 push %edi
a4: 56 push %esi
a5: 53 push %ebx
a6: 81 ec 6c 02 00 00 sub $0x26c,%esp
ac: 8b 7d 08 mov 0x8(%ebp),%edi
char buf[512], *p;
int fd;
struct dirent de;
struct stat st;
if((fd = open(path, 0)) < 0){
af: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
b6: 00
b7: 89 3c 24 mov %edi,(%esp)
ba: e8 09 05 00 00 call 5c8 <open>
bf: 85 c0 test %eax,%eax
c1: 89 c3 mov %eax,%ebx
c3: 0f 88 c7 01 00 00 js 290 <ls+0x1f0>
printf(2, "ls: cannot open %s\n", path);
return;
}
if(fstat(fd, &st) < 0){
c9: 8d 75 c4 lea -0x3c(%ebp),%esi
cc: 89 74 24 04 mov %esi,0x4(%esp)
d0: 89 04 24 mov %eax,(%esp)
d3: e8 08 05 00 00 call 5e0 <fstat>
d8: 85 c0 test %eax,%eax
da: 0f 88 00 02 00 00 js 2e0 <ls+0x240>
printf(2, "ls: cannot stat %s\n", path);
close(fd);
return;
}
switch(st.type){
e0: 0f b7 45 c4 movzwl -0x3c(%ebp),%eax
e4: 66 83 f8 01 cmp $0x1,%ax
e8: 74 66 je 150 <ls+0xb0>
ea: 66 83 f8 02 cmp $0x2,%ax
ee: 74 18 je 108 <ls+0x68>
}
printf(1, "%s %d %d %d\n", fmtname(buf), st.type, st.ino, st.size);
}
break;
}
close(fd);
f0: 89 1c 24 mov %ebx,(%esp)
f3: e8 b8 04 00 00 call 5b0 <close>
}
f8: 81 c4 6c 02 00 00 add $0x26c,%esp
fe: 5b pop %ebx
ff: 5e pop %esi
100: 5f pop %edi
101: 5d pop %ebp
102: c3 ret
103: 90 nop
104: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
return;
}
switch(st.type){
case T_FILE:
printf(1, "%s %d %d %d\n", fmtname(path), st.type, st.ino, st.size);
108: 8b 55 d4 mov -0x2c(%ebp),%edx
10b: 8b 75 cc mov -0x34(%ebp),%esi
10e: 89 3c 24 mov %edi,(%esp)
111: 89 95 ac fd ff ff mov %edx,-0x254(%ebp)
117: e8 e4 fe ff ff call 0 <fmtname>
11c: 8b 95 ac fd ff ff mov -0x254(%ebp),%edx
122: 89 74 24 10 mov %esi,0x10(%esp)
126: c7 44 24 0c 02 00 00 movl $0x2,0xc(%esp)
12d: 00
12e: c7 44 24 04 4e 0a 00 movl $0xa4e,0x4(%esp)
135: 00
136: 89 54 24 14 mov %edx,0x14(%esp)
13a: c7 04 24 01 00 00 00 movl $0x1,(%esp)
141: 89 44 24 08 mov %eax,0x8(%esp)
145: e8 76 05 00 00 call 6c0 <printf>
break;
14a: eb a4 jmp f0 <ls+0x50>
14c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
case T_DIR:
if(strlen(path) + 1 + DIRSIZ + 1 > sizeof buf){
150: 89 3c 24 mov %edi,(%esp)
153: e8 88 02 00 00 call 3e0 <strlen>
158: 83 c0 10 add $0x10,%eax
15b: 3d 00 02 00 00 cmp $0x200,%eax
160: 0f 87 0a 01 00 00 ja 270 <ls+0x1d0>
printf(1, "ls: path too long\n");
break;
}
strcpy(buf, path);
166: 8d 85 c4 fd ff ff lea -0x23c(%ebp),%eax
16c: 89 7c 24 04 mov %edi,0x4(%esp)
170: 8d 7d d8 lea -0x28(%ebp),%edi
173: 89 04 24 mov %eax,(%esp)
176: e8 e5 01 00 00 call 360 <strcpy>
p = buf+strlen(buf);
17b: 8d 95 c4 fd ff ff lea -0x23c(%ebp),%edx
181: 89 14 24 mov %edx,(%esp)
184: e8 57 02 00 00 call 3e0 <strlen>
189: 8d 95 c4 fd ff ff lea -0x23c(%ebp),%edx
18f: 8d 04 02 lea (%edx,%eax,1),%eax
*p++ = '/';
192: c6 00 2f movb $0x2f,(%eax)
195: 83 c0 01 add $0x1,%eax
198: 89 85 b4 fd ff ff mov %eax,-0x24c(%ebp)
19e: 66 90 xchg %ax,%ax
while(read(fd, &de, sizeof(de)) == sizeof(de)){
1a0: c7 44 24 08 10 00 00 movl $0x10,0x8(%esp)
1a7: 00
1a8: 89 7c 24 04 mov %edi,0x4(%esp)
1ac: 89 1c 24 mov %ebx,(%esp)
1af: e8 ec 03 00 00 call 5a0 <read>
1b4: 83 f8 10 cmp $0x10,%eax
1b7: 0f 85 33 ff ff ff jne f0 <ls+0x50>
if(de.inum == 0)
1bd: 66 83 7d d8 00 cmpw $0x0,-0x28(%ebp)
1c2: 74 dc je 1a0 <ls+0x100>
continue;
memmove(p, de.name, DIRSIZ);
1c4: 8b 95 b4 fd ff ff mov -0x24c(%ebp),%edx
1ca: 8d 45 da lea -0x26(%ebp),%eax
1cd: c7 44 24 08 0e 00 00 movl $0xe,0x8(%esp)
1d4: 00
1d5: 89 44 24 04 mov %eax,0x4(%esp)
1d9: 89 14 24 mov %edx,(%esp)
1dc: e8 bf 02 00 00 call 4a0 <memmove>
p[DIRSIZ] = 0;
1e1: 8b 85 b4 fd ff ff mov -0x24c(%ebp),%eax
if(stat(buf, &st) < 0){
1e7: 8d 95 c4 fd ff ff lea -0x23c(%ebp),%edx
*p++ = '/';
while(read(fd, &de, sizeof(de)) == sizeof(de)){
if(de.inum == 0)
continue;
memmove(p, de.name, DIRSIZ);
p[DIRSIZ] = 0;
1ed: c6 40 0e 00 movb $0x0,0xe(%eax)
if(stat(buf, &st) < 0){
1f1: 89 74 24 04 mov %esi,0x4(%esp)
1f5: 89 14 24 mov %edx,(%esp)
1f8: e8 d3 02 00 00 call 4d0 <stat>
1fd: 85 c0 test %eax,%eax
1ff: 0f 88 b3 00 00 00 js 2b8 <ls+0x218>
printf(1, "ls: cannot stat %s\n", buf);
continue;
}
printf(1, "%s %d %d %d\n", fmtname(buf), st.type, st.ino, st.size);
205: 0f bf 45 c4 movswl -0x3c(%ebp),%eax
209: 8b 55 d4 mov -0x2c(%ebp),%edx
20c: 8b 4d cc mov -0x34(%ebp),%ecx
20f: 89 85 b0 fd ff ff mov %eax,-0x250(%ebp)
215: 8d 85 c4 fd ff ff lea -0x23c(%ebp),%eax
21b: 89 95 ac fd ff ff mov %edx,-0x254(%ebp)
221: 89 8d a8 fd ff ff mov %ecx,-0x258(%ebp)
227: 89 04 24 mov %eax,(%esp)
22a: e8 d1 fd ff ff call 0 <fmtname>
22f: 8b 95 ac fd ff ff mov -0x254(%ebp),%edx
235: 8b 8d a8 fd ff ff mov -0x258(%ebp),%ecx
23b: c7 44 24 04 4e 0a 00 movl $0xa4e,0x4(%esp)
242: 00
243: c7 04 24 01 00 00 00 movl $0x1,(%esp)
24a: 89 54 24 14 mov %edx,0x14(%esp)
24e: 8b 95 b0 fd ff ff mov -0x250(%ebp),%edx
254: 89 4c 24 10 mov %ecx,0x10(%esp)
258: 89 44 24 08 mov %eax,0x8(%esp)
25c: 89 54 24 0c mov %edx,0xc(%esp)
260: e8 5b 04 00 00 call 6c0 <printf>
265: e9 36 ff ff ff jmp 1a0 <ls+0x100>
26a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
printf(1, "%s %d %d %d\n", fmtname(path), st.type, st.ino, st.size);
break;
case T_DIR:
if(strlen(path) + 1 + DIRSIZ + 1 > sizeof buf){
printf(1, "ls: path too long\n");
270: c7 44 24 04 5b 0a 00 movl $0xa5b,0x4(%esp)
277: 00
278: c7 04 24 01 00 00 00 movl $0x1,(%esp)
27f: e8 3c 04 00 00 call 6c0 <printf>
break;
284: e9 67 fe ff ff jmp f0 <ls+0x50>
289: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
int fd;
struct dirent de;
struct stat st;
if((fd = open(path, 0)) < 0){
printf(2, "ls: cannot open %s\n", path);
290: 89 7c 24 08 mov %edi,0x8(%esp)
294: c7 44 24 04 26 0a 00 movl $0xa26,0x4(%esp)
29b: 00
29c: c7 04 24 02 00 00 00 movl $0x2,(%esp)
2a3: e8 18 04 00 00 call 6c0 <printf>
printf(1, "%s %d %d %d\n", fmtname(buf), st.type, st.ino, st.size);
}
break;
}
close(fd);
}
2a8: 81 c4 6c 02 00 00 add $0x26c,%esp
2ae: 5b pop %ebx
2af: 5e pop %esi
2b0: 5f pop %edi
2b1: 5d pop %ebp
2b2: c3 ret
2b3: 90 nop
2b4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
if(de.inum == 0)
continue;
memmove(p, de.name, DIRSIZ);
p[DIRSIZ] = 0;
if(stat(buf, &st) < 0){
printf(1, "ls: cannot stat %s\n", buf);
2b8: 8d 85 c4 fd ff ff lea -0x23c(%ebp),%eax
2be: 89 44 24 08 mov %eax,0x8(%esp)
2c2: c7 44 24 04 3a 0a 00 movl $0xa3a,0x4(%esp)
2c9: 00
2ca: c7 04 24 01 00 00 00 movl $0x1,(%esp)
2d1: e8 ea 03 00 00 call 6c0 <printf>
continue;
2d6: e9 c5 fe ff ff jmp 1a0 <ls+0x100>
2db: 90 nop
2dc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
printf(2, "ls: cannot open %s\n", path);
return;
}
if(fstat(fd, &st) < 0){
printf(2, "ls: cannot stat %s\n", path);
2e0: 89 7c 24 08 mov %edi,0x8(%esp)
2e4: c7 44 24 04 3a 0a 00 movl $0xa3a,0x4(%esp)
2eb: 00
2ec: c7 04 24 02 00 00 00 movl $0x2,(%esp)
2f3: e8 c8 03 00 00 call 6c0 <printf>
close(fd);
2f8: 89 1c 24 mov %ebx,(%esp)
2fb: e8 b0 02 00 00 call 5b0 <close>
return;
300: e9 f3 fd ff ff jmp f8 <ls+0x58>
305: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
309: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
00000310 <main>:
close(fd);
}
int
main(int argc, char *argv[])
{
310: 55 push %ebp
311: 89 e5 mov %esp,%ebp
313: 83 e4 f0 and $0xfffffff0,%esp
316: 57 push %edi
317: 56 push %esi
318: 53 push %ebx
int i;
if(argc < 2){
ls(".");
exit();
319: bb 01 00 00 00 mov $0x1,%ebx
close(fd);
}
int
main(int argc, char *argv[])
{
31e: 83 ec 14 sub $0x14,%esp
321: 8b 75 08 mov 0x8(%ebp),%esi
324: 8b 7d 0c mov 0xc(%ebp),%edi
int i;
if(argc < 2){
327: 83 fe 01 cmp $0x1,%esi
32a: 7e 1c jle 348 <main+0x38>
32c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
ls(".");
exit();
}
for(i=1; i<argc; i++)
ls(argv[i]);
330: 8b 04 9f mov (%edi,%ebx,4),%eax
if(argc < 2){
ls(".");
exit();
}
for(i=1; i<argc; i++)
333: 83 c3 01 add $0x1,%ebx
ls(argv[i]);
336: 89 04 24 mov %eax,(%esp)
339: e8 62 fd ff ff call a0 <ls>
if(argc < 2){
ls(".");
exit();
}
for(i=1; i<argc; i++)
33e: 39 de cmp %ebx,%esi
340: 7f ee jg 330 <main+0x20>
ls(argv[i]);
exit();
342: e8 41 02 00 00 call 588 <exit>
347: 90 nop
main(int argc, char *argv[])
{
int i;
if(argc < 2){
ls(".");
348: c7 04 24 6e 0a 00 00 movl $0xa6e,(%esp)
34f: e8 4c fd ff ff call a0 <ls>
exit();
354: e8 2f 02 00 00 call 588 <exit>
359: 90 nop
35a: 90 nop
35b: 90 nop
35c: 90 nop
35d: 90 nop
35e: 90 nop
35f: 90 nop
00000360 <strcpy>:
#include "user.h"
#include "x86.h"
char*
strcpy(char *s, char *t)
{
360: 55 push %ebp
361: 31 d2 xor %edx,%edx
363: 89 e5 mov %esp,%ebp
365: 8b 45 08 mov 0x8(%ebp),%eax
368: 53 push %ebx
369: 8b 5d 0c mov 0xc(%ebp),%ebx
36c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
char *os;
os = s;
while((*s++ = *t++) != 0)
370: 0f b6 0c 13 movzbl (%ebx,%edx,1),%ecx
374: 88 0c 10 mov %cl,(%eax,%edx,1)
377: 83 c2 01 add $0x1,%edx
37a: 84 c9 test %cl,%cl
37c: 75 f2 jne 370 <strcpy+0x10>
;
return os;
}
37e: 5b pop %ebx
37f: 5d pop %ebp
380: c3 ret
381: eb 0d jmp 390 <strcmp>
383: 90 nop
384: 90 nop
385: 90 nop
386: 90 nop
387: 90 nop
388: 90 nop
389: 90 nop
38a: 90 nop
38b: 90 nop
38c: 90 nop
38d: 90 nop
38e: 90 nop
38f: 90 nop
00000390 <strcmp>:
int
strcmp(const char *p, const char *q)
{
390: 55 push %ebp
391: 89 e5 mov %esp,%ebp
393: 8b 4d 08 mov 0x8(%ebp),%ecx
396: 53 push %ebx
397: 8b 55 0c mov 0xc(%ebp),%edx
while(*p && *p == *q)
39a: 0f b6 01 movzbl (%ecx),%eax
39d: 84 c0 test %al,%al
39f: 75 14 jne 3b5 <strcmp+0x25>
3a1: eb 25 jmp 3c8 <strcmp+0x38>
3a3: 90 nop
3a4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
p++, q++;
3a8: 83 c1 01 add $0x1,%ecx
3ab: 83 c2 01 add $0x1,%edx
}
int
strcmp(const char *p, const char *q)
{
while(*p && *p == *q)
3ae: 0f b6 01 movzbl (%ecx),%eax
3b1: 84 c0 test %al,%al
3b3: 74 13 je 3c8 <strcmp+0x38>
3b5: 0f b6 1a movzbl (%edx),%ebx
3b8: 38 d8 cmp %bl,%al
3ba: 74 ec je 3a8 <strcmp+0x18>
3bc: 0f b6 db movzbl %bl,%ebx
3bf: 0f b6 c0 movzbl %al,%eax
3c2: 29 d8 sub %ebx,%eax
p++, q++;
return (uchar)*p - (uchar)*q;
}
3c4: 5b pop %ebx
3c5: 5d pop %ebp
3c6: c3 ret
3c7: 90 nop
}
int
strcmp(const char *p, const char *q)
{
while(*p && *p == *q)
3c8: 0f b6 1a movzbl (%edx),%ebx
3cb: 31 c0 xor %eax,%eax
3cd: 0f b6 db movzbl %bl,%ebx
3d0: 29 d8 sub %ebx,%eax
p++, q++;
return (uchar)*p - (uchar)*q;
}
3d2: 5b pop %ebx
3d3: 5d pop %ebp
3d4: c3 ret
3d5: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
3d9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
000003e0 <strlen>:
uint
strlen(char *s)
{
3e0: 55 push %ebp
int n;
for(n = 0; s[n]; n++)
3e1: 31 d2 xor %edx,%edx
return (uchar)*p - (uchar)*q;
}
uint
strlen(char *s)
{
3e3: 89 e5 mov %esp,%ebp
int n;
for(n = 0; s[n]; n++)
3e5: 31 c0 xor %eax,%eax
return (uchar)*p - (uchar)*q;
}
uint
strlen(char *s)
{
3e7: 8b 4d 08 mov 0x8(%ebp),%ecx
int n;
for(n = 0; s[n]; n++)
3ea: 80 39 00 cmpb $0x0,(%ecx)
3ed: 74 0c je 3fb <strlen+0x1b>
3ef: 90 nop
3f0: 83 c2 01 add $0x1,%edx
3f3: 80 3c 11 00 cmpb $0x0,(%ecx,%edx,1)
3f7: 89 d0 mov %edx,%eax
3f9: 75 f5 jne 3f0 <strlen+0x10>
;
return n;
}
3fb: 5d pop %ebp
3fc: c3 ret
3fd: 8d 76 00 lea 0x0(%esi),%esi
00000400 <memset>:
void*
memset(void *dst, int c, uint n)
{
400: 55 push %ebp
401: 89 e5 mov %esp,%ebp
403: 8b 55 08 mov 0x8(%ebp),%edx
406: 57 push %edi
}
static inline void
stosb(void *addr, int data, int cnt)
{
asm volatile("cld; rep stosb" :
407: 8b 4d 10 mov 0x10(%ebp),%ecx
40a: 8b 45 0c mov 0xc(%ebp),%eax
40d: 89 d7 mov %edx,%edi
40f: fc cld
410: f3 aa rep stos %al,%es:(%edi)
stosb(dst, c, n);
return dst;
}
412: 89 d0 mov %edx,%eax
414: 5f pop %edi
415: 5d pop %ebp
416: c3 ret
417: 89 f6 mov %esi,%esi
419: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
00000420 <strchr>:
char*
strchr(const char *s, char c)
{
420: 55 push %ebp
421: 89 e5 mov %esp,%ebp
423: 8b 45 08 mov 0x8(%ebp),%eax
426: 0f b6 4d 0c movzbl 0xc(%ebp),%ecx
for(; *s; s++)
42a: 0f b6 10 movzbl (%eax),%edx
42d: 84 d2 test %dl,%dl
42f: 75 11 jne 442 <strchr+0x22>
431: eb 15 jmp 448 <strchr+0x28>
433: 90 nop
434: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
438: 83 c0 01 add $0x1,%eax
43b: 0f b6 10 movzbl (%eax),%edx
43e: 84 d2 test %dl,%dl
440: 74 06 je 448 <strchr+0x28>
if(*s == c)
442: 38 ca cmp %cl,%dl
444: 75 f2 jne 438 <strchr+0x18>
return (char*)s;
return 0;
}
446: 5d pop %ebp
447: c3 ret
}
char*
strchr(const char *s, char c)
{
for(; *s; s++)
448: 31 c0 xor %eax,%eax
if(*s == c)
return (char*)s;
return 0;
}
44a: 5d pop %ebp
44b: 90 nop
44c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
450: c3 ret
451: eb 0d jmp 460 <atoi>
453: 90 nop
454: 90 nop
455: 90 nop
456: 90 nop
457: 90 nop
458: 90 nop
459: 90 nop
45a: 90 nop
45b: 90 nop
45c: 90 nop
45d: 90 nop
45e: 90 nop
45f: 90 nop
00000460 <atoi>:
return r;
}
int
atoi(const char *s)
{
460: 55 push %ebp
int n;
n = 0;
while('0' <= *s && *s <= '9')
461: 31 c0 xor %eax,%eax
return r;
}
int
atoi(const char *s)
{
463: 89 e5 mov %esp,%ebp
465: 8b 4d 08 mov 0x8(%ebp),%ecx
468: 53 push %ebx
int n;
n = 0;
while('0' <= *s && *s <= '9')
469: 0f b6 11 movzbl (%ecx),%edx
46c: 8d 5a d0 lea -0x30(%edx),%ebx
46f: 80 fb 09 cmp $0x9,%bl
472: 77 1c ja 490 <atoi+0x30>
474: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
n = n*10 + *s++ - '0';
478: 0f be d2 movsbl %dl,%edx
47b: 83 c1 01 add $0x1,%ecx
47e: 8d 04 80 lea (%eax,%eax,4),%eax
481: 8d 44 42 d0 lea -0x30(%edx,%eax,2),%eax
atoi(const char *s)
{
int n;
n = 0;
while('0' <= *s && *s <= '9')
485: 0f b6 11 movzbl (%ecx),%edx
488: 8d 5a d0 lea -0x30(%edx),%ebx
48b: 80 fb 09 cmp $0x9,%bl
48e: 76 e8 jbe 478 <atoi+0x18>
n = n*10 + *s++ - '0';
return n;
}
490: 5b pop %ebx
491: 5d pop %ebp
492: c3 ret
493: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
499: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
000004a0 <memmove>:
void*
memmove(void *vdst, void *vsrc, int n)
{
4a0: 55 push %ebp
4a1: 89 e5 mov %esp,%ebp
4a3: 56 push %esi
4a4: 8b 45 08 mov 0x8(%ebp),%eax
4a7: 53 push %ebx
4a8: 8b 5d 10 mov 0x10(%ebp),%ebx
4ab: 8b 75 0c mov 0xc(%ebp),%esi
char *dst, *src;
dst = vdst;
src = vsrc;
while(n-- > 0)
4ae: 85 db test %ebx,%ebx
4b0: 7e 14 jle 4c6 <memmove+0x26>
n = n*10 + *s++ - '0';
return n;
}
void*
memmove(void *vdst, void *vsrc, int n)
4b2: 31 d2 xor %edx,%edx
4b4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
char *dst, *src;
dst = vdst;
src = vsrc;
while(n-- > 0)
*dst++ = *src++;
4b8: 0f b6 0c 16 movzbl (%esi,%edx,1),%ecx
4bc: 88 0c 10 mov %cl,(%eax,%edx,1)
4bf: 83 c2 01 add $0x1,%edx
{
char *dst, *src;
dst = vdst;
src = vsrc;
while(n-- > 0)
4c2: 39 da cmp %ebx,%edx
4c4: 75 f2 jne 4b8 <memmove+0x18>
*dst++ = *src++;
return vdst;
}
4c6: 5b pop %ebx
4c7: 5e pop %esi
4c8: 5d pop %ebp
4c9: c3 ret
4ca: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
000004d0 <stat>:
return buf;
}
int
stat(char *n, struct stat *st)
{
4d0: 55 push %ebp
4d1: 89 e5 mov %esp,%ebp
4d3: 83 ec 18 sub $0x18,%esp
int fd;
int r;
fd = open(n, O_RDONLY);
4d6: 8b 45 08 mov 0x8(%ebp),%eax
return buf;
}
int
stat(char *n, struct stat *st)
{
4d9: 89 5d f8 mov %ebx,-0x8(%ebp)
4dc: 89 75 fc mov %esi,-0x4(%ebp)
int fd;
int r;
fd = open(n, O_RDONLY);
if(fd < 0)
4df: be ff ff ff ff mov $0xffffffff,%esi
stat(char *n, struct stat *st)
{
int fd;
int r;
fd = open(n, O_RDONLY);
4e4: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
4eb: 00
4ec: 89 04 24 mov %eax,(%esp)
4ef: e8 d4 00 00 00 call 5c8 <open>
if(fd < 0)
4f4: 85 c0 test %eax,%eax
stat(char *n, struct stat *st)
{
int fd;
int r;
fd = open(n, O_RDONLY);
4f6: 89 c3 mov %eax,%ebx
if(fd < 0)
4f8: 78 19 js 513 <stat+0x43>
return -1;
r = fstat(fd, st);
4fa: 8b 45 0c mov 0xc(%ebp),%eax
4fd: 89 1c 24 mov %ebx,(%esp)
500: 89 44 24 04 mov %eax,0x4(%esp)
504: e8 d7 00 00 00 call 5e0 <fstat>
close(fd);
509: 89 1c 24 mov %ebx,(%esp)
int r;
fd = open(n, O_RDONLY);
if(fd < 0)
return -1;
r = fstat(fd, st);
50c: 89 c6 mov %eax,%esi
close(fd);
50e: e8 9d 00 00 00 call 5b0 <close>
return r;
}
513: 89 f0 mov %esi,%eax
515: 8b 5d f8 mov -0x8(%ebp),%ebx
518: 8b 75 fc mov -0x4(%ebp),%esi
51b: 89 ec mov %ebp,%esp
51d: 5d pop %ebp
51e: c3 ret
51f: 90 nop
00000520 <gets>:
return 0;
}
char*
gets(char *buf, int max)
{
520: 55 push %ebp
521: 89 e5 mov %esp,%ebp
523: 57 push %edi
524: 56 push %esi
525: 31 f6 xor %esi,%esi
527: 53 push %ebx
528: 83 ec 2c sub $0x2c,%esp
52b: 8b 7d 08 mov 0x8(%ebp),%edi
int i, cc;
char c;
for(i=0; i+1 < max; ){
52e: eb 06 jmp 536 <gets+0x16>
cc = read(0, &c, 1);
if(cc < 1)
break;
buf[i++] = c;
if(c == '\n' || c == '\r')
530: 3c 0a cmp $0xa,%al
532: 74 39 je 56d <gets+0x4d>
534: 89 de mov %ebx,%esi
gets(char *buf, int max)
{
int i, cc;
char c;
for(i=0; i+1 < max; ){
536: 8d 5e 01 lea 0x1(%esi),%ebx
539: 3b 5d 0c cmp 0xc(%ebp),%ebx
53c: 7d 31 jge 56f <gets+0x4f>
cc = read(0, &c, 1);
53e: 8d 45 e7 lea -0x19(%ebp),%eax
541: c7 44 24 08 01 00 00 movl $0x1,0x8(%esp)
548: 00
549: 89 44 24 04 mov %eax,0x4(%esp)
54d: c7 04 24 00 00 00 00 movl $0x0,(%esp)
554: e8 47 00 00 00 call 5a0 <read>
if(cc < 1)
559: 85 c0 test %eax,%eax
55b: 7e 12 jle 56f <gets+0x4f>
break;
buf[i++] = c;
55d: 0f b6 45 e7 movzbl -0x19(%ebp),%eax
561: 88 44 1f ff mov %al,-0x1(%edi,%ebx,1)
if(c == '\n' || c == '\r')
565: 0f b6 45 e7 movzbl -0x19(%ebp),%eax
569: 3c 0d cmp $0xd,%al
56b: 75 c3 jne 530 <gets+0x10>
56d: 89 de mov %ebx,%esi
break;
}
buf[i] = '\0';
56f: c6 04 37 00 movb $0x0,(%edi,%esi,1)
return buf;
}
573: 89 f8 mov %edi,%eax
575: 83 c4 2c add $0x2c,%esp
578: 5b pop %ebx
579: 5e pop %esi
57a: 5f pop %edi
57b: 5d pop %ebp
57c: c3 ret
57d: 90 nop
57e: 90 nop
57f: 90 nop
00000580 <fork>:
name: \
movl $SYS_ ## name, %eax; \
int $T_SYSCALL; \
ret
SYSCALL(fork)
580: b8 01 00 00 00 mov $0x1,%eax
585: cd 40 int $0x40
587: c3 ret
00000588 <exit>:
SYSCALL(exit)
588: b8 02 00 00 00 mov $0x2,%eax
58d: cd 40 int $0x40
58f: c3 ret
00000590 <wait>:
SYSCALL(wait)
590: b8 03 00 00 00 mov $0x3,%eax
595: cd 40 int $0x40
597: c3 ret
00000598 <pipe>:
SYSCALL(pipe)
598: b8 04 00 00 00 mov $0x4,%eax
59d: cd 40 int $0x40
59f: c3 ret
000005a0 <read>:
SYSCALL(read)
5a0: b8 05 00 00 00 mov $0x5,%eax
5a5: cd 40 int $0x40
5a7: c3 ret
000005a8 <write>:
SYSCALL(write)
5a8: b8 10 00 00 00 mov $0x10,%eax
5ad: cd 40 int $0x40
5af: c3 ret
000005b0 <close>:
SYSCALL(close)
5b0: b8 15 00 00 00 mov $0x15,%eax
5b5: cd 40 int $0x40
5b7: c3 ret
000005b8 <kill>:
SYSCALL(kill)
5b8: b8 06 00 00 00 mov $0x6,%eax
5bd: cd 40 int $0x40
5bf: c3 ret
000005c0 <exec>:
SYSCALL(exec)
5c0: b8 07 00 00 00 mov $0x7,%eax
5c5: cd 40 int $0x40
5c7: c3 ret
000005c8 <open>:
SYSCALL(open)
5c8: b8 0f 00 00 00 mov $0xf,%eax
5cd: cd 40 int $0x40
5cf: c3 ret
000005d0 <mknod>:
SYSCALL(mknod)
5d0: b8 11 00 00 00 mov $0x11,%eax
5d5: cd 40 int $0x40
5d7: c3 ret
000005d8 <unlink>:
SYSCALL(unlink)
5d8: b8 12 00 00 00 mov $0x12,%eax
5dd: cd 40 int $0x40
5df: c3 ret
000005e0 <fstat>:
SYSCALL(fstat)
5e0: b8 08 00 00 00 mov $0x8,%eax
5e5: cd 40 int $0x40
5e7: c3 ret
000005e8 <link>:
SYSCALL(link)
5e8: b8 13 00 00 00 mov $0x13,%eax
5ed: cd 40 int $0x40
5ef: c3 ret
000005f0 <mkdir>:
SYSCALL(mkdir)
5f0: b8 14 00 00 00 mov $0x14,%eax
5f5: cd 40 int $0x40
5f7: c3 ret
000005f8 <chdir>:
SYSCALL(chdir)
5f8: b8 09 00 00 00 mov $0x9,%eax
5fd: cd 40 int $0x40
5ff: c3 ret
00000600 <dup>:
SYSCALL(dup)
600: b8 0a 00 00 00 mov $0xa,%eax
605: cd 40 int $0x40
607: c3 ret
00000608 <getpid>:
SYSCALL(getpid)
608: b8 0b 00 00 00 mov $0xb,%eax
60d: cd 40 int $0x40
60f: c3 ret
00000610 <sbrk>:
SYSCALL(sbrk)
610: b8 0c 00 00 00 mov $0xc,%eax
615: cd 40 int $0x40
617: c3 ret
00000618 <sleep>:
SYSCALL(sleep)
618: b8 0d 00 00 00 mov $0xd,%eax
61d: cd 40 int $0x40
61f: c3 ret
00000620 <set_tickets>:
SYSCALL(set_tickets)
620: b8 16 00 00 00 mov $0x16,%eax
625: cd 40 int $0x40
627: c3 ret
628: 90 nop
629: 90 nop
62a: 90 nop
62b: 90 nop
62c: 90 nop
62d: 90 nop
62e: 90 nop
62f: 90 nop
00000630 <printint>:
write(fd, &c, 1);
}
static void
printint(int fd, int xx, int base, int sgn)
{
630: 55 push %ebp
631: 89 e5 mov %esp,%ebp
633: 57 push %edi
634: 89 cf mov %ecx,%edi
636: 56 push %esi
637: 89 c6 mov %eax,%esi
639: 53 push %ebx
63a: 83 ec 4c sub $0x4c,%esp
char buf[16];
int i, neg;
uint x;
neg = 0;
if(sgn && xx < 0){
63d: 8b 4d 08 mov 0x8(%ebp),%ecx
640: 85 c9 test %ecx,%ecx
642: 74 04 je 648 <printint+0x18>
644: 85 d2 test %edx,%edx
646: 78 68 js 6b0 <printint+0x80>
neg = 1;
x = -xx;
} else {
x = xx;
648: 89 d0 mov %edx,%eax
64a: c7 45 c4 00 00 00 00 movl $0x0,-0x3c(%ebp)
651: 31 c9 xor %ecx,%ecx
653: 8d 5d d7 lea -0x29(%ebp),%ebx
656: 66 90 xchg %ax,%ax
}
i = 0;
do{
buf[i++] = digits[x % base];
658: 31 d2 xor %edx,%edx
65a: f7 f7 div %edi
65c: 0f b6 92 77 0a 00 00 movzbl 0xa77(%edx),%edx
663: 88 14 0b mov %dl,(%ebx,%ecx,1)
666: 83 c1 01 add $0x1,%ecx
}while((x /= base) != 0);
669: 85 c0 test %eax,%eax
66b: 75 eb jne 658 <printint+0x28>
if(neg)
66d: 8b 45 c4 mov -0x3c(%ebp),%eax
670: 85 c0 test %eax,%eax
672: 74 08 je 67c <printint+0x4c>
buf[i++] = '-';
674: c6 44 0d d7 2d movb $0x2d,-0x29(%ebp,%ecx,1)
679: 83 c1 01 add $0x1,%ecx
while(--i >= 0)
67c: 8d 79 ff lea -0x1(%ecx),%edi
67f: 90 nop
680: 0f b6 04 3b movzbl (%ebx,%edi,1),%eax
684: 83 ef 01 sub $0x1,%edi
#include "user.h"
static void
putc(int fd, char c)
{
write(fd, &c, 1);
687: c7 44 24 08 01 00 00 movl $0x1,0x8(%esp)
68e: 00
68f: 89 34 24 mov %esi,(%esp)
buf[i++] = digits[x % base];
}while((x /= base) != 0);
if(neg)
buf[i++] = '-';
while(--i >= 0)
692: 88 45 e7 mov %al,-0x19(%ebp)
#include "user.h"
static void
putc(int fd, char c)
{
write(fd, &c, 1);
695: 8d 45 e7 lea -0x19(%ebp),%eax
698: 89 44 24 04 mov %eax,0x4(%esp)
69c: e8 07 ff ff ff call 5a8 <write>
buf[i++] = digits[x % base];
}while((x /= base) != 0);
if(neg)
buf[i++] = '-';
while(--i >= 0)
6a1: 83 ff ff cmp $0xffffffff,%edi
6a4: 75 da jne 680 <printint+0x50>
putc(fd, buf[i]);
}
6a6: 83 c4 4c add $0x4c,%esp
6a9: 5b pop %ebx
6aa: 5e pop %esi
6ab: 5f pop %edi
6ac: 5d pop %ebp
6ad: c3 ret
6ae: 66 90 xchg %ax,%ax
uint x;
neg = 0;
if(sgn && xx < 0){
neg = 1;
x = -xx;
6b0: 89 d0 mov %edx,%eax
6b2: f7 d8 neg %eax
6b4: c7 45 c4 01 00 00 00 movl $0x1,-0x3c(%ebp)
6bb: eb 94 jmp 651 <printint+0x21>
6bd: 8d 76 00 lea 0x0(%esi),%esi
000006c0 <printf>:
}
// Print to the given fd. Only understands %d, %x, %p, %s.
void
printf(int fd, char *fmt, ...)
{
6c0: 55 push %ebp
6c1: 89 e5 mov %esp,%ebp
6c3: 57 push %edi
6c4: 56 push %esi
6c5: 53 push %ebx
6c6: 83 ec 3c sub $0x3c,%esp
int c, i, state;
uint *ap;
state = 0;
ap = (uint*)(void*)&fmt + 1;
for(i = 0; fmt[i]; i++){
6c9: 8b 45 0c mov 0xc(%ebp),%eax
6cc: 0f b6 10 movzbl (%eax),%edx
6cf: 84 d2 test %dl,%dl
6d1: 0f 84 c1 00 00 00 je 798 <printf+0xd8>
char *s;
int c, i, state;
uint *ap;
state = 0;
ap = (uint*)(void*)&fmt + 1;
6d7: 8d 4d 10 lea 0x10(%ebp),%ecx
6da: 31 ff xor %edi,%edi
6dc: 89 4d d4 mov %ecx,-0x2c(%ebp)
6df: 31 db xor %ebx,%ebx
#include "user.h"
static void
putc(int fd, char c)
{
write(fd, &c, 1);
6e1: 8d 75 e7 lea -0x19(%ebp),%esi
6e4: eb 1e jmp 704 <printf+0x44>
6e6: 66 90 xchg %ax,%ax
state = 0;
ap = (uint*)(void*)&fmt + 1;
for(i = 0; fmt[i]; i++){
c = fmt[i] & 0xff;
if(state == 0){
if(c == '%'){
6e8: 83 fa 25 cmp $0x25,%edx
6eb: 0f 85 af 00 00 00 jne 7a0 <printf+0xe0>
6f1: 66 bf 25 00 mov $0x25,%di
int c, i, state;
uint *ap;
state = 0;
ap = (uint*)(void*)&fmt + 1;
for(i = 0; fmt[i]; i++){
6f5: 83 c3 01 add $0x1,%ebx
6f8: 0f b6 14 18 movzbl (%eax,%ebx,1),%edx
6fc: 84 d2 test %dl,%dl
6fe: 0f 84 94 00 00 00 je 798 <printf+0xd8>
c = fmt[i] & 0xff;
if(state == 0){
704: 85 ff test %edi,%edi
uint *ap;
state = 0;
ap = (uint*)(void*)&fmt + 1;
for(i = 0; fmt[i]; i++){
c = fmt[i] & 0xff;
706: 0f b6 d2 movzbl %dl,%edx
if(state == 0){
709: 74 dd je 6e8 <printf+0x28>
if(c == '%'){
state = '%';
} else {
putc(fd, c);
}
} else if(state == '%'){
70b: 83 ff 25 cmp $0x25,%edi
70e: 75 e5 jne 6f5 <printf+0x35>
if(c == 'd'){
710: 83 fa 64 cmp $0x64,%edx
713: 0f 84 3f 01 00 00 je 858 <printf+0x198>
printint(fd, *ap, 10, 1);
ap++;
} else if(c == 'x' || c == 'p'){
719: 83 fa 70 cmp $0x70,%edx
71c: 0f 84 a6 00 00 00 je 7c8 <printf+0x108>
722: 83 fa 78 cmp $0x78,%edx
725: 0f 84 9d 00 00 00 je 7c8 <printf+0x108>
printint(fd, *ap, 16, 0);
ap++;
} else if(c == 's'){
72b: 83 fa 73 cmp $0x73,%edx
72e: 66 90 xchg %ax,%ax
730: 0f 84 ba 00 00 00 je 7f0 <printf+0x130>
s = "(null)";
while(*s != 0){
putc(fd, *s);
s++;
}
} else if(c == 'c'){
736: 83 fa 63 cmp $0x63,%edx
739: 0f 84 41 01 00 00 je 880 <printf+0x1c0>
putc(fd, *ap);
ap++;
} else if(c == '%'){
73f: 83 fa 25 cmp $0x25,%edx
742: 0f 84 00 01 00 00 je 848 <printf+0x188>
#include "user.h"
static void
putc(int fd, char c)
{
write(fd, &c, 1);
748: 8b 4d 08 mov 0x8(%ebp),%ecx
74b: 89 55 cc mov %edx,-0x34(%ebp)
74e: c6 45 e7 25 movb $0x25,-0x19(%ebp)
752: c7 44 24 08 01 00 00 movl $0x1,0x8(%esp)
759: 00
75a: 89 74 24 04 mov %esi,0x4(%esp)
75e: 89 0c 24 mov %ecx,(%esp)
761: e8 42 fe ff ff call 5a8 <write>
766: 8b 55 cc mov -0x34(%ebp),%edx
769: 88 55 e7 mov %dl,-0x19(%ebp)
76c: 8b 45 08 mov 0x8(%ebp),%eax
int c, i, state;
uint *ap;
state = 0;
ap = (uint*)(void*)&fmt + 1;
for(i = 0; fmt[i]; i++){
76f: 83 c3 01 add $0x1,%ebx
#include "user.h"
static void
putc(int fd, char c)
{
write(fd, &c, 1);
772: 31 ff xor %edi,%edi
774: c7 44 24 08 01 00 00 movl $0x1,0x8(%esp)
77b: 00
77c: 89 74 24 04 mov %esi,0x4(%esp)
780: 89 04 24 mov %eax,(%esp)
783: e8 20 fe ff ff call 5a8 <write>
788: 8b 45 0c mov 0xc(%ebp),%eax
int c, i, state;
uint *ap;
state = 0;
ap = (uint*)(void*)&fmt + 1;
for(i = 0; fmt[i]; i++){
78b: 0f b6 14 18 movzbl (%eax,%ebx,1),%edx
78f: 84 d2 test %dl,%dl
791: 0f 85 6d ff ff ff jne 704 <printf+0x44>
797: 90 nop
putc(fd, c);
}
state = 0;
}
}
}
798: 83 c4 3c add $0x3c,%esp
79b: 5b pop %ebx
79c: 5e pop %esi
79d: 5f pop %edi
79e: 5d pop %ebp
79f: c3 ret
#include "user.h"
static void
putc(int fd, char c)
{
write(fd, &c, 1);
7a0: 8b 45 08 mov 0x8(%ebp),%eax
state = 0;
ap = (uint*)(void*)&fmt + 1;
for(i = 0; fmt[i]; i++){
c = fmt[i] & 0xff;
if(state == 0){
if(c == '%'){
7a3: 88 55 e7 mov %dl,-0x19(%ebp)
#include "user.h"
static void
putc(int fd, char c)
{
write(fd, &c, 1);
7a6: c7 44 24 08 01 00 00 movl $0x1,0x8(%esp)
7ad: 00
7ae: 89 74 24 04 mov %esi,0x4(%esp)
7b2: 89 04 24 mov %eax,(%esp)
7b5: e8 ee fd ff ff call 5a8 <write>
7ba: 8b 45 0c mov 0xc(%ebp),%eax
7bd: e9 33 ff ff ff jmp 6f5 <printf+0x35>
7c2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
} else if(state == '%'){
if(c == 'd'){
printint(fd, *ap, 10, 1);
ap++;
} else if(c == 'x' || c == 'p'){
printint(fd, *ap, 16, 0);
7c8: 8b 45 d4 mov -0x2c(%ebp),%eax
7cb: b9 10 00 00 00 mov $0x10,%ecx
ap++;
7d0: 31 ff xor %edi,%edi
} else if(state == '%'){
if(c == 'd'){
printint(fd, *ap, 10, 1);
ap++;
} else if(c == 'x' || c == 'p'){
printint(fd, *ap, 16, 0);
7d2: c7 04 24 00 00 00 00 movl $0x0,(%esp)
7d9: 8b 10 mov (%eax),%edx
7db: 8b 45 08 mov 0x8(%ebp),%eax
7de: e8 4d fe ff ff call 630 <printint>
7e3: 8b 45 0c mov 0xc(%ebp),%eax
ap++;
7e6: 83 45 d4 04 addl $0x4,-0x2c(%ebp)
7ea: e9 06 ff ff ff jmp 6f5 <printf+0x35>
7ef: 90 nop
} else if(c == 's'){
s = (char*)*ap;
7f0: 8b 55 d4 mov -0x2c(%ebp),%edx
ap++;
if(s == 0)
7f3: b9 70 0a 00 00 mov $0xa70,%ecx
ap++;
} else if(c == 'x' || c == 'p'){
printint(fd, *ap, 16, 0);
ap++;
} else if(c == 's'){
s = (char*)*ap;
7f8: 8b 3a mov (%edx),%edi
ap++;
7fa: 83 c2 04 add $0x4,%edx
7fd: 89 55 d4 mov %edx,-0x2c(%ebp)
if(s == 0)
800: 85 ff test %edi,%edi
802: 0f 44 f9 cmove %ecx,%edi
s = "(null)";
while(*s != 0){
805: 0f b6 17 movzbl (%edi),%edx
808: 84 d2 test %dl,%dl
80a: 74 33 je 83f <printf+0x17f>
80c: 89 5d d0 mov %ebx,-0x30(%ebp)
80f: 8b 5d 08 mov 0x8(%ebp),%ebx
812: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
putc(fd, *s);
s++;
818: 83 c7 01 add $0x1,%edi
} else if(c == 's'){
s = (char*)*ap;
ap++;
if(s == 0)
s = "(null)";
while(*s != 0){
81b: 88 55 e7 mov %dl,-0x19(%ebp)
#include "user.h"
static void
putc(int fd, char c)
{
write(fd, &c, 1);
81e: c7 44 24 08 01 00 00 movl $0x1,0x8(%esp)
825: 00
826: 89 74 24 04 mov %esi,0x4(%esp)
82a: 89 1c 24 mov %ebx,(%esp)
82d: e8 76 fd ff ff call 5a8 <write>
} else if(c == 's'){
s = (char*)*ap;
ap++;
if(s == 0)
s = "(null)";
while(*s != 0){
832: 0f b6 17 movzbl (%edi),%edx
835: 84 d2 test %dl,%dl
837: 75 df jne 818 <printf+0x158>
839: 8b 5d d0 mov -0x30(%ebp),%ebx
83c: 8b 45 0c mov 0xc(%ebp),%eax
#include "user.h"
static void
putc(int fd, char c)
{
write(fd, &c, 1);
83f: 31 ff xor %edi,%edi
841: e9 af fe ff ff jmp 6f5 <printf+0x35>
846: 66 90 xchg %ax,%ax
s++;
}
} else if(c == 'c'){
putc(fd, *ap);
ap++;
} else if(c == '%'){
848: c6 45 e7 25 movb $0x25,-0x19(%ebp)
84c: e9 1b ff ff ff jmp 76c <printf+0xac>
851: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
} else {
putc(fd, c);
}
} else if(state == '%'){
if(c == 'd'){
printint(fd, *ap, 10, 1);
858: 8b 45 d4 mov -0x2c(%ebp),%eax
85b: b9 0a 00 00 00 mov $0xa,%ecx
ap++;
860: 66 31 ff xor %di,%di
} else {
putc(fd, c);
}
} else if(state == '%'){
if(c == 'd'){
printint(fd, *ap, 10, 1);
863: c7 04 24 01 00 00 00 movl $0x1,(%esp)
86a: 8b 10 mov (%eax),%edx
86c: 8b 45 08 mov 0x8(%ebp),%eax
86f: e8 bc fd ff ff call 630 <printint>
874: 8b 45 0c mov 0xc(%ebp),%eax
ap++;
877: 83 45 d4 04 addl $0x4,-0x2c(%ebp)
87b: e9 75 fe ff ff jmp 6f5 <printf+0x35>
s = "(null)";
while(*s != 0){
putc(fd, *s);
s++;
}
} else if(c == 'c'){
880: 8b 55 d4 mov -0x2c(%ebp),%edx
putc(fd, *ap);
ap++;
883: 31 ff xor %edi,%edi
#include "user.h"
static void
putc(int fd, char c)
{
write(fd, &c, 1);
885: 8b 4d 08 mov 0x8(%ebp),%ecx
s = "(null)";
while(*s != 0){
putc(fd, *s);
s++;
}
} else if(c == 'c'){
888: 8b 02 mov (%edx),%eax
#include "user.h"
static void
putc(int fd, char c)
{
write(fd, &c, 1);
88a: c7 44 24 08 01 00 00 movl $0x1,0x8(%esp)
891: 00
892: 89 74 24 04 mov %esi,0x4(%esp)
896: 89 0c 24 mov %ecx,(%esp)
s = "(null)";
while(*s != 0){
putc(fd, *s);
s++;
}
} else if(c == 'c'){
899: 88 45 e7 mov %al,-0x19(%ebp)
#include "user.h"
static void
putc(int fd, char c)
{
write(fd, &c, 1);
89c: e8 07 fd ff ff call 5a8 <write>
8a1: 8b 45 0c mov 0xc(%ebp),%eax
putc(fd, *s);
s++;
}
} else if(c == 'c'){
putc(fd, *ap);
ap++;
8a4: 83 45 d4 04 addl $0x4,-0x2c(%ebp)
8a8: e9 48 fe ff ff jmp 6f5 <printf+0x35>
8ad: 90 nop
8ae: 90 nop
8af: 90 nop
000008b0 <free>:
static Header base;
static Header *freep;
void
free(void *ap)
{
8b0: 55 push %ebp
Header *bp, *p;
bp = (Header*)ap - 1;
for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr)
8b1: a1 a0 0a 00 00 mov 0xaa0,%eax
static Header base;
static Header *freep;
void
free(void *ap)
{
8b6: 89 e5 mov %esp,%ebp
8b8: 57 push %edi
8b9: 56 push %esi
8ba: 53 push %ebx
8bb: 8b 5d 08 mov 0x8(%ebp),%ebx
Header *bp, *p;
bp = (Header*)ap - 1;
8be: 8d 4b f8 lea -0x8(%ebx),%ecx
for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr)
8c1: 39 c8 cmp %ecx,%eax
8c3: 73 1d jae 8e2 <free+0x32>
8c5: 8d 76 00 lea 0x0(%esi),%esi
8c8: 8b 10 mov (%eax),%edx
8ca: 39 d1 cmp %edx,%ecx
8cc: 72 1a jb 8e8 <free+0x38>
if(p >= p->s.ptr && (bp > p || bp < p->s.ptr))
8ce: 39 d0 cmp %edx,%eax
8d0: 72 08 jb 8da <free+0x2a>
8d2: 39 c8 cmp %ecx,%eax
8d4: 72 12 jb 8e8 <free+0x38>
8d6: 39 d1 cmp %edx,%ecx
8d8: 72 0e jb 8e8 <free+0x38>
8da: 89 d0 mov %edx,%eax
free(void *ap)
{
Header *bp, *p;
bp = (Header*)ap - 1;
for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr)
8dc: 39 c8 cmp %ecx,%eax
8de: 66 90 xchg %ax,%ax
8e0: 72 e6 jb 8c8 <free+0x18>
8e2: 8b 10 mov (%eax),%edx
8e4: eb e8 jmp 8ce <free+0x1e>
8e6: 66 90 xchg %ax,%ax
if(p >= p->s.ptr && (bp > p || bp < p->s.ptr))
break;
if(bp + bp->s.size == p->s.ptr){
8e8: 8b 71 04 mov 0x4(%ecx),%esi
8eb: 8d 3c f1 lea (%ecx,%esi,8),%edi
8ee: 39 d7 cmp %edx,%edi
8f0: 74 19 je 90b <free+0x5b>
bp->s.size += p->s.ptr->s.size;
bp->s.ptr = p->s.ptr->s.ptr;
} else
bp->s.ptr = p->s.ptr;
8f2: 89 53 f8 mov %edx,-0x8(%ebx)
if(p + p->s.size == bp){
8f5: 8b 50 04 mov 0x4(%eax),%edx
8f8: 8d 34 d0 lea (%eax,%edx,8),%esi
8fb: 39 ce cmp %ecx,%esi
8fd: 74 23 je 922 <free+0x72>
p->s.size += bp->s.size;
p->s.ptr = bp->s.ptr;
} else
p->s.ptr = bp;
8ff: 89 08 mov %ecx,(%eax)
freep = p;
901: a3 a0 0a 00 00 mov %eax,0xaa0
}
906: 5b pop %ebx
907: 5e pop %esi
908: 5f pop %edi
909: 5d pop %ebp
90a: c3 ret
bp = (Header*)ap - 1;
for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr)
if(p >= p->s.ptr && (bp > p || bp < p->s.ptr))
break;
if(bp + bp->s.size == p->s.ptr){
bp->s.size += p->s.ptr->s.size;
90b: 03 72 04 add 0x4(%edx),%esi
90e: 89 71 04 mov %esi,0x4(%ecx)
bp->s.ptr = p->s.ptr->s.ptr;
911: 8b 10 mov (%eax),%edx
913: 8b 12 mov (%edx),%edx
915: 89 53 f8 mov %edx,-0x8(%ebx)
} else
bp->s.ptr = p->s.ptr;
if(p + p->s.size == bp){
918: 8b 50 04 mov 0x4(%eax),%edx
91b: 8d 34 d0 lea (%eax,%edx,8),%esi
91e: 39 ce cmp %ecx,%esi
920: 75 dd jne 8ff <free+0x4f>
p->s.size += bp->s.size;
922: 03 51 04 add 0x4(%ecx),%edx
925: 89 50 04 mov %edx,0x4(%eax)
p->s.ptr = bp->s.ptr;
928: 8b 53 f8 mov -0x8(%ebx),%edx
92b: 89 10 mov %edx,(%eax)
} else
p->s.ptr = bp;
freep = p;
92d: a3 a0 0a 00 00 mov %eax,0xaa0
}
932: 5b pop %ebx
933: 5e pop %esi
934: 5f pop %edi
935: 5d pop %ebp
936: c3 ret
937: 89 f6 mov %esi,%esi
939: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
00000940 <malloc>:
return freep;
}
void*
malloc(uint nbytes)
{
940: 55 push %ebp
941: 89 e5 mov %esp,%ebp
943: 57 push %edi
944: 56 push %esi
945: 53 push %ebx
946: 83 ec 2c sub $0x2c,%esp
Header *p, *prevp;
uint nunits;
nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1;
949: 8b 5d 08 mov 0x8(%ebp),%ebx
if((prevp = freep) == 0){
94c: 8b 0d a0 0a 00 00 mov 0xaa0,%ecx
malloc(uint nbytes)
{
Header *p, *prevp;
uint nunits;
nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1;
952: 83 c3 07 add $0x7,%ebx
955: c1 eb 03 shr $0x3,%ebx
958: 83 c3 01 add $0x1,%ebx
if((prevp = freep) == 0){
95b: 85 c9 test %ecx,%ecx
95d: 0f 84 9b 00 00 00 je 9fe <malloc+0xbe>
base.s.ptr = freep = prevp = &base;
base.s.size = 0;
}
for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){
963: 8b 01 mov (%ecx),%eax
if(p->s.size >= nunits){
965: 8b 50 04 mov 0x4(%eax),%edx
968: 39 d3 cmp %edx,%ebx
96a: 76 27 jbe 993 <malloc+0x53>
p->s.size -= nunits;
p += p->s.size;
p->s.size = nunits;
}
freep = prevp;
return (void*)(p + 1);
96c: 8d 3c dd 00 00 00 00 lea 0x0(,%ebx,8),%edi
morecore(uint nu)
{
char *p;
Header *hp;
if(nu < 4096)
973: be 00 80 00 00 mov $0x8000,%esi
978: 89 7d e4 mov %edi,-0x1c(%ebp)
97b: 90 nop
97c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
p->s.size = nunits;
}
freep = prevp;
return (void*)(p + 1);
}
if(p == freep)
980: 3b 05 a0 0a 00 00 cmp 0xaa0,%eax
986: 74 30 je 9b8 <malloc+0x78>
988: 89 c1 mov %eax,%ecx
nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1;
if((prevp = freep) == 0){
base.s.ptr = freep = prevp = &base;
base.s.size = 0;
}
for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){
98a: 8b 01 mov (%ecx),%eax
if(p->s.size >= nunits){
98c: 8b 50 04 mov 0x4(%eax),%edx
98f: 39 d3 cmp %edx,%ebx
991: 77 ed ja 980 <malloc+0x40>
if(p->s.size == nunits)
993: 39 d3 cmp %edx,%ebx
995: 74 61 je 9f8 <malloc+0xb8>
prevp->s.ptr = p->s.ptr;
else {
p->s.size -= nunits;
997: 29 da sub %ebx,%edx
999: 89 50 04 mov %edx,0x4(%eax)
p += p->s.size;
99c: 8d 04 d0 lea (%eax,%edx,8),%eax
p->s.size = nunits;
99f: 89 58 04 mov %ebx,0x4(%eax)
}
freep = prevp;
9a2: 89 0d a0 0a 00 00 mov %ecx,0xaa0
return (void*)(p + 1);
9a8: 83 c0 08 add $0x8,%eax
}
if(p == freep)
if((p = morecore(nunits)) == 0)
return 0;
}
}
9ab: 83 c4 2c add $0x2c,%esp
9ae: 5b pop %ebx
9af: 5e pop %esi
9b0: 5f pop %edi
9b1: 5d pop %ebp
9b2: c3 ret
9b3: 90 nop
9b4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
morecore(uint nu)
{
char *p;
Header *hp;
if(nu < 4096)
9b8: 8b 45 e4 mov -0x1c(%ebp),%eax
9bb: 81 fb 00 10 00 00 cmp $0x1000,%ebx
9c1: bf 00 10 00 00 mov $0x1000,%edi
9c6: 0f 43 fb cmovae %ebx,%edi
9c9: 0f 42 c6 cmovb %esi,%eax
nu = 4096;
p = sbrk(nu * sizeof(Header));
9cc: 89 04 24 mov %eax,(%esp)
9cf: e8 3c fc ff ff call 610 <sbrk>
if(p == (char*)-1)
9d4: 83 f8 ff cmp $0xffffffff,%eax
9d7: 74 18 je 9f1 <malloc+0xb1>
return 0;
hp = (Header*)p;
hp->s.size = nu;
9d9: 89 78 04 mov %edi,0x4(%eax)
free((void*)(hp + 1));
9dc: 83 c0 08 add $0x8,%eax
9df: 89 04 24 mov %eax,(%esp)
9e2: e8 c9 fe ff ff call 8b0 <free>
return freep;
9e7: 8b 0d a0 0a 00 00 mov 0xaa0,%ecx
}
freep = prevp;
return (void*)(p + 1);
}
if(p == freep)
if((p = morecore(nunits)) == 0)
9ed: 85 c9 test %ecx,%ecx
9ef: 75 99 jne 98a <malloc+0x4a>
if((prevp = freep) == 0){
base.s.ptr = freep = prevp = &base;
base.s.size = 0;
}
for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){
if(p->s.size >= nunits){
9f1: 31 c0 xor %eax,%eax
9f3: eb b6 jmp 9ab <malloc+0x6b>
9f5: 8d 76 00 lea 0x0(%esi),%esi
if(p->s.size == nunits)
prevp->s.ptr = p->s.ptr;
9f8: 8b 10 mov (%eax),%edx
9fa: 89 11 mov %edx,(%ecx)
9fc: eb a4 jmp 9a2 <malloc+0x62>
Header *p, *prevp;
uint nunits;
nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1;
if((prevp = freep) == 0){
base.s.ptr = freep = prevp = &base;
9fe: c7 05 a0 0a 00 00 98 movl $0xa98,0xaa0
a05: 0a 00 00
base.s.size = 0;
a08: b9 98 0a 00 00 mov $0xa98,%ecx
Header *p, *prevp;
uint nunits;
nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1;
if((prevp = freep) == 0){
base.s.ptr = freep = prevp = &base;
a0d: c7 05 98 0a 00 00 98 movl $0xa98,0xa98
a14: 0a 00 00
base.s.size = 0;
a17: c7 05 9c 0a 00 00 00 movl $0x0,0xa9c
a1e: 00 00 00
a21: e9 3d ff ff ff jmp 963 <malloc+0x23>
|
programs/oeis/219/A219651.asm | jmorken/loda | 1 | 242340 | <filename>programs/oeis/219/A219651.asm
; A219651: a(n) = n minus (sum of digits in factorial base expansion of n).
; 0,0,1,1,2,2,5,5,6,6,7,7,10,10,11,11,12,12,15,15,16,16,17,17,23,23,24,24,25,25,28,28,29,29,30,30,33,33,34,34,35,35,38,38,39,39,40,40,46,46,47,47,48,48,51,51,52,52,53,53,56,56,57,57,58,58,61,61,62,62,63,63,69,69,70,70,71,71,74,74,75,75,76,76,79,79,80,80,81,81,84,84,85,85,86,86,92,92,93,93,94,94,97,97,98,98,99,99,102,102,103,103,104,104,107,107,108,108,109,109,119,119,120,120,121,121,124,124,125,125,126,126,129,129,130,130,131,131,134,134,135,135,136,136,142,142,143,143,144,144,147,147,148,148,149,149,152,152,153,153,154,154,157,157,158,158,159,159,165,165,166,166,167,167,170,170,171,171,172,172,175,175,176,176,177,177,180,180,181,181,182,182,188,188,189,189,190,190,193,193,194,194,195,195,198,198,199,199,200,200,203,203,204,204,205,205,211,211,212,212,213,213,216,216,217,217,218,218,221,221,222,222,223,223,226,226,227,227,228,228,238,238,239,239,240,240,243,243,244,244
mov $1,$0
cal $0,34968 ; Minimal number of factorials that add to n.
sub $1,$0
|
programs/oeis/101/A101349.asm | neoneye/loda | 22 | 105068 | ; A101349: Numbers of cubes between prime(n) and prime(n+1).
; 0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0
mov $3,2
mov $5,$0
lpb $3
mov $0,$5
sub $3,1
add $0,$3
max $0,0
seq $0,263846 ; Floor of cube root of n-th prime.
sub $0,1
mov $2,$3
mul $2,$0
add $1,$2
mov $4,$0
lpe
min $5,1
mul $5,$4
sub $1,$5
mov $0,$1
|
ooj/src/main/antlr4/Java1.g4 | amanjpro/languages-a-la-carte | 8 | 7143 | <filename>ooj/src/main/antlr4/Java1.g4
/*
Copyright (c) <2015>, <NAME>, <NAME>, <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:
* 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 <organization> 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 <COPYRIGHT HOLDER> 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 Java 1.0 grammar for ANTLR v4, it is taken from ``The Java Language
* Specification 1.0'', and adapted to work with ANTLR v4.
*
* The LEXER part is almost completely taken from Java 7's lexer by Terence
* Parr and <NAME>.
*
* The uses ANTLR v4's left-recursive expression notation.
* It parses all standard Java 1.0 class, and also TTY
* class from sun.tools.ttydebug pacakge.
*
* You can test with
*
* $ antlr4 Java1.g4
* $ javac *.java
* $ grun Java1 compilationUnit *.java
*/
grammar Java1;
// 19.2 Starting point
compilationUnit
: packageDeclaration? importDeclaration* typeDeclaration* EOF
;
// 19.3 Literals
literal
: IntegerLiteral # IntLit
| FloatingPointLiteral # DoubleLit
| BooleanLiteral # BoolLit
| CharacterLiteral # CharLit
| StringLiteral # StringLit
| NullLiteral # NullLit
;
// 19.4 Types
type
: primitiveType
| referenceType
;
primitiveType
: 'byte'
| 'short'
| 'int'
| 'long'
| 'char'
| 'float'
| 'double'
| 'boolean'
;
referenceType
: classOrInterfaceType
| arrayType
;
classOrInterfaceType
: name
;
arrayType
: primitiveType '[' ']' # PrimitiveArrayType
| name '[' ']' # NameArrayType
| arrayType '[' ']' # ArrayArrayType
;
// 19.5 Names
name
: Identifier ('.' Identifier)*
;
packageDeclaration
: 'package' Identifier ('.' Identifier)* ';'
;
importDeclaration
: singleTypeImportDeclaration
| typeImportOnDemandDeclaration
;
singleTypeImportDeclaration
: 'import' name ';'
;
typeImportOnDemandDeclaration
: 'import' name '.' '*' ';'
;
typeDeclaration
: classDeclaration
| interfaceDeclaration
;
// 19.7 LALR(1) Productions
modifier
: 'public'
| 'protected'
| 'private'
| 'static'
| 'abstract'
| 'final'
| 'native'
| 'synchronized'
| 'transient'
| 'volatile'
;
// 19.8 Classes
// 19.8.1 Class Declaration
classDeclaration
: modifier* 'class' Identifier parent? interfaces? classBody
;
parent
: 'extends' classOrInterfaceType
;
interfaces
: 'implements' classOrInterfaceTypeList
;
classBody
: '{' classBodyDeclaration* '}'
;
classBodyDeclaration
: classMemberDeclaration
| staticInitializer
| constructorDeclaration
;
classMemberDeclaration
: fieldDeclaration
| methodDeclaration
;
// 19.8.2 Field Declaration
fieldDeclaration
: modifier* type variableDeclarators ';'
;
variableDeclarators
: variableDeclarator (',' variableDeclarator)*
;
variableDeclarator
: variableDeclaratorId ('=' variableInitializer)?
;
variableDeclaratorId
: Identifier dims?
;
variableInitializer
: expression
| arrayInitializer
;
// 19.8.3 Methods
methodDeclaration
: (typeMethodHeader | voidMethodHeader) methodBody
;
typeMethodHeader
: modifier* type methodDeclarator throwsClause?
;
voidMethodHeader
: modifier* 'void' methodDeclaratorNoDims throwsClause?
;
methodDeclarator
: methodDeclaratorNoDims dims?
;
methodDeclaratorNoDims
: Identifier '(' formalParameterList? ')'
;
formalParameterList
: formalParameter (',' formalParameter)*
;
formalParameter
: type variableDeclaratorId
;
throwsClause
: 'throws' classOrInterfaceTypeList
;
classOrInterfaceTypeList
: classOrInterfaceType (',' classOrInterfaceType)*
;
methodBody
: block
| emptyStatement
;
// 19.8.4 Static Initializers
staticInitializer
: 'static' block
;
// 19.8.5 Constructor Declaration
constructorDeclaration
: modifier* constructorDeclarator throwsClause? constructorBody
;
constructorDeclarator
: methodDeclaratorNoDims
;
constructorBody
: '{' explicitConstructorInvocation? blockStatement* '}'
;
explicitConstructorInvocation
: qual=('this' | 'super') '(' argumentList? ')' ';'
;
// 19.9 Interfaces
interfaceDeclaration
: modifier* 'interface' Identifier extendsInterfaces? interfaceBody
;
extendsInterfaces
: 'extends' classOrInterfaceTypeList
;
interfaceBody
: '{' interfaceMemberDeclaration* '}'
;
interfaceMemberDeclaration
: constantDeclaration
| abstractMethodDeclaration
;
constantDeclaration
: fieldDeclaration
;
abstractMethodDeclaration
: (typeMethodHeader | voidMethodHeader) ';'
;
// 19.10 Productions from §10: Arrays
arrayInitializer
: '{' variableInitializers? ','? '}'
;
variableInitializers
: variableInitializer (',' variableInitializer)*
;
// 19.11 Productions from §14: Blocks and Statements
block
: '{' blockStatement* '}'
;
blockStatement
: localVariableDeclarationStatement
| statement
;
localVariableDeclarationStatement
: localVariableDeclaration ';'
;
localVariableDeclaration
: type variableDeclarators
;
statement
: statementWithoutTrailingSubstatement
| labeledStatement
| ifThenStatement
| ifThenElseStatement
| whileStatement
| forStatement
;
statementNoShortIf
: statementWithoutTrailingSubstatement
| labeledStatementNoShortIf
| ifThenElseStatementNoShortIf
| whileStatementNoShortIf
| forStatementNoShortIf
;
statementWithoutTrailingSubstatement
: block
| emptyStatement
| expressionStatement
| switchStatement
| doStatement
| breakStatement
| continueStatement
| returnStatement
| synchronizedStatement
| throwStatement
| tryStatement
;
emptyStatement
: ';'
;
labeledStatement
: Identifier ':' statement
;
labeledStatementNoShortIf
: Identifier ':' statementNoShortIf
;
expressionStatement
: statementExpression ';'
;
statementExpression
: expression
;
ifThenStatement
: 'if' '(' expression ')' statement
;
ifThenElseStatement
: 'if' '(' expression ')' statementNoShortIf 'else' statement
;
ifThenElseStatementNoShortIf
: 'if' '(' expression ')' statementNoShortIf 'else' statementNoShortIf
;
switchStatement
: 'switch' '(' expression ')' switchBlock
;
switchBlock
: '{' switchBlockStatementGroups? switchLabel* '}'
;
switchBlockStatementGroups
: switchBlockStatementGroup+
;
switchBlockStatementGroup
: switchLabel+ blockStatement*
;
switchLabel
: caseLabel
| defaultCase
;
caseLabel
: 'case' constantExpression ':'
;
defaultCase
: 'default' ':'
;
whileStatement
: 'while' '(' expression ')' statement
;
whileStatementNoShortIf
: 'while' '(' expression ')' statementNoShortIf
;
doStatement
: 'do' statement 'while' '(' expression ')' ';'
;
forStatement
: 'for' '(' forInit? ';' expression? ';' forUpdate? ')' statement
;
forStatementNoShortIf
: 'for' '(' forInit? ';' expression? ';' forUpdate? ')'
statementNoShortIf
;
forInit
: statementExpressionList
| localVariableDeclaration
;
forUpdate
: statementExpressionList
;
statementExpressionList
: statementExpression (',' statementExpression)*
;
breakStatement
: 'break' Identifier? ';'
;
continueStatement
: 'continue' Identifier? ';'
;
returnStatement
: 'return' expression? ';'
;
throwStatement
: 'throw' expression ';'
;
synchronizedStatement
: 'synchronized' '(' expression ')' block
;
tryStatement
: 'try' block catches
| 'try' block catches? finallyClause
;
catches
: catchClause+
;
catchClause
: 'catch' '(' formalParameter ')' block
;
finallyClause
: 'finally' block
;
// 19.12 Productions from §15: Expressions
primary
: primaryNoNewArray
| arrayCreationExpression
;
arrayAccess
: name '[' expression ']'
| primaryNoNewArray '[' expression ']'
;
primaryNoNewArray
: literal # PrimaryLit
| 'this' # PrimaryThis
| '(' expression ')' # PrimaryExpr
| classInstanceCreationExpression # PrimaryNew
| arrayCreationExpression '.' Identifier # PrimaryNewArraySelect
| primaryNoNewArray '.' Identifier # PrimarySelect
| 'super' '.' Identifier # PrimarySuperSelect
| name '(' argumentList? ')' # PrimaryApply
| primaryNoNewArray '.' Identifier '(' argumentList? ')' # PrimaryQualApply
| arrayCreationExpression '.' Identifier
'(' argumentList? ')' # PrimaryArrayApply
| 'super' '.' Identifier '(' argumentList? ')' # PrimarySuperApply
| name '[' expression ']' # PrimaryArrayAccess
| primaryNoNewArray '[' expression ']' # PrimaryArrayAccess2
;
classInstanceCreationExpression
: 'new' classOrInterfaceType '(' argumentList? ')'
;
argumentList
: expression (',' expression)*
;
arrayCreationExpression
: 'new' primitiveType dimExpr+ dims? # PrimitiveArrayCreation
| 'new' classOrInterfaceType dimExpr+ dims? # ReferenceArrayCreation
;
dimExpr
: '[' expression ']'
;
dims
: dim+
;
dim
: '[' ']'
;
fieldAccess
: primary '.' Identifier # QualifiedFieldAccess
| 'super' '.' Identifier # SuperFieldAccess
;
methodInvocation
: name '(' argumentList? ')' # SimpleMethodInvocation
| primary '.' Identifier '(' argumentList? ')' # QualifiedMethodInvocation
| 'super' '.' Identifier '(' argumentList? ')' # SuperMethodInvocation
;
assignment
: leftHandSide op=('='
| '*='
| '/='
| '%='
| '+='
| '-='
| '>>='
| '<<='
| '>>>='
| '&='
| '|='
| '^=') expression
;
leftHandSide
: name
| fieldAccess
| arrayAccess
;
expression
: primary # PrimaryExpression
| name # NameExpression
| '(' type ')' expression # CastExpression
| <assoc=left> expression op=('++' | '--') # PostfixExpression
| <assoc=right> op=('++' | '--' | '-' | '+')
expression # UnaryExpression
| <assoc=right> op=('~' | '!') expression # BitwiseUnaryExpression
| <assoc=left> expression op=('*' | '/' | '%')
expression # MulBinaryExpression
| <assoc=left> expression op=('+' | '-') expression # AddBinaryExpression
| <assoc=left> expression op=('>>' | '<<' | '>>>')
expression # ShiftBinaryExpression
| <assoc=left> expression op=('<' | '>' | '<=' | '>=')
expression # RelBinaryExpression
| <assoc=left> expression 'instanceof' type # InstanceOfExpression
| <assoc=left> expression op=('==' | '!=')
expression # EquBinaryExpression
| <assoc=left> expression '&' expression # BitAndBinaryExpression
| <assoc=left> expression '|' expression # BitOrBinaryExpression
| <assoc=left> expression '^' expression # BitXOrBinaryExpression
| <assoc=left> expression '&&' expression # AndBinaryExpression
| <assoc=left> expression '||' expression # OrBinaryExpression
| <assoc=right> expression '?' expression ':'
expression # TernaryExpression
| <assoc=right> leftHandSide
op=('=' | '*=' | '/=' | '%=' | '+=' |
'-=' | '<<=' | '>>=' | '>>>=' |
'&=' | '^=' | '|=') expression # AssignExpression
;
constantExpression
: expression
;
// LEXER
// §3.9 Keywords
ABSTRACT : 'abstract';
BOOLEAN : 'boolean';
BREAK : 'break';
BYTE : 'byte';
CASE : 'case';
CATCH : 'catch';
CHAR : 'char';
CLASS : 'class';
CONST : 'const';
CONTINUE : 'continue';
DEFAULT : 'default';
DO : 'do';
DOUBLE : 'double';
ELSE : 'else';
EXTENDS : 'extends';
FINAL : 'final';
FINALLY : 'finally';
FLOAT : 'float';
FOR : 'for';
GOTO : 'goto';
IF : 'if';
IMPLEMENTS : 'implements';
IMPORT : 'import';
INSTANCEOF : 'instanceof';
INT : 'int';
INTERFACE : 'interface';
LONG : 'long';
NATIVE : 'native';
NEW : 'new';
PACKAGE : 'package';
PRIVATE : 'private';
PROTECTED : 'protected';
PUBLIC : 'public';
RETURN : 'return';
SHORT : 'short';
STATIC : 'static';
SUPER : 'super';
SWITCH : 'switch';
SYNCHRONIZED : 'synchronized';
THIS : 'this';
THROW : 'throw';
THROWS : 'throws';
TRANSIENT : 'transient';
TRY : 'try';
VOID : 'void';
VOLATILE : 'volatile';
WHILE : 'while';
// §3.10.1 Integer Literals
IntegerLiteral
: DecimalIntegerLiteral
| HexIntegerLiteral
| OctalIntegerLiteral
| BinaryIntegerLiteral
;
fragment
DecimalIntegerLiteral
: DecimalNumeral IntegerTypeSuffix?
;
fragment
HexIntegerLiteral
: HexNumeral IntegerTypeSuffix?
;
fragment
OctalIntegerLiteral
: OctalNumeral IntegerTypeSuffix?
;
fragment
BinaryIntegerLiteral
: BinaryNumeral IntegerTypeSuffix?
;
fragment
IntegerTypeSuffix
: [lL]
;
fragment
DecimalNumeral
: '0'
| NonZeroDigit Digits?
;
fragment
Digits
: Digit+
;
fragment
Digit
: '0'
| NonZeroDigit
;
fragment
NonZeroDigit
: [1-9]
;
fragment
HexNumeral
: '0' [xX] HexDigits
;
fragment
HexDigits
: HexDigit+
;
fragment
HexDigit
: [0-9a-fA-F]
;
fragment
OctalNumeral
: '0' OctalDigit+
;
fragment
OctalDigit
: [0-7]
;
fragment
BinaryNumeral
: '0' [bB] BinaryDigit+
;
fragment
BinaryDigit
: [01]
;
// §3.10.2 Floating-Point Literals
FloatingPointLiteral
: DecimalFloatingPointLiteral
| HexadecimalFloatingPointLiteral
;
fragment
DecimalFloatingPointLiteral
: Digits '.' Digits? ExponentPart? FloatTypeSuffix?
| '.' Digits ExponentPart? FloatTypeSuffix?
| Digits ExponentPart FloatTypeSuffix?
| Digits FloatTypeSuffix
;
fragment
ExponentPart
: ExponentIndicator SignedInteger
;
fragment
ExponentIndicator
: [eE]
;
fragment
SignedInteger
: Sign? Digits
;
fragment
Sign
: [+-]
;
fragment
FloatTypeSuffix
: [fFdD]
;
fragment
HexadecimalFloatingPointLiteral
: HexSignificand BinaryExponent FloatTypeSuffix?
;
fragment
HexSignificand
: HexNumeral '.'?
| '0' [xX] HexDigits? '.' HexDigits
;
fragment
BinaryExponent
: BinaryExponentIndicator SignedInteger
;
fragment
BinaryExponentIndicator
: [pP]
;
// §3.10.3 Boolean Literals
BooleanLiteral
: 'true'
| 'false'
;
// §3.10.4 Character Literals
CharacterLiteral
: '\'' SingleCharacter '\''
| '\'' EscapeSequence '\''
;
fragment
SingleCharacter
: ~['\\]
;
// §3.10.5 String Literals
StringLiteral
: '"' StringCharacters? '"'
;
fragment
StringCharacters
: StringCharacter+
;
fragment
StringCharacter
: ~["\\]
| EscapeSequence
;
// §3.10.6 Escape Sequences for Character and String Literals
fragment
EscapeSequence
: '\\' [btnfr"'\\]
| OctalEscape
| UnicodeEscape
;
fragment
OctalEscape
: '\\' OctalDigit
| '\\' OctalDigit OctalDigit
| '\\' ZeroToThree OctalDigit OctalDigit
;
fragment
UnicodeEscape
: '\\' 'u' HexDigit HexDigit HexDigit HexDigit
;
fragment
ZeroToThree
: [0-3]
;
// §3.10.7 The Null Literal
NullLiteral
: 'null'
;
// §3.11 Separators
LPAREN : '(';
RPAREN : ')';
LBRACE : '{';
RBRACE : '}';
LBRACK : '[';
RBRACK : ']';
SEMI : ';';
COMMA : ',';
DOT : '.';
// §3.12 Operators
ASSIGN : '=';
GT : '>';
LT : '<';
BANG : '!';
TILDE : '~';
QUESTION : '?';
COLON : ':';
EQUAL : '==';
LE : '<=';
GE : '>=';
NOTEQUAL : '!=';
AND : '&&';
OR : '||';
INC : '++';
DEC : '--';
ADD : '+';
SUB : '-';
MUL : '*';
DIV : '/';
BITAND : '&';
BITOR : '|';
CARET : '^';
MOD : '%';
ADD_ASSIGN : '+=';
SUB_ASSIGN : '-=';
MUL_ASSIGN : '*=';
DIV_ASSIGN : '/=';
AND_ASSIGN : '&=';
OR_ASSIGN : '|=';
XOR_ASSIGN : '^=';
MOD_ASSIGN : '%=';
LSHIFT_ASSIGN : '<<=';
RSHIFT_ASSIGN : '>>=';
URSHIFT_ASSIGN : '>>>=';
// §3.8 Identifiers (must appear after all keywords in the grammar)
Identifier
: JavaLetter JavaLetterOrDigit*
;
fragment
JavaLetter
: [a-zA-Z$_] // these are the "java letters" below 0xFF
| // covers all characters above 0xFF which are not a surrogate
~[\u0000-\u00FF\uD800-\uDBFF]
{Character.isJavaIdentifierStart(_input.LA(-1))}?
| // covers UTF-16 surrogate pairs encodings for U+10000 to U+10FFFF
[\uD800-\uDBFF] [\uDC00-\uDFFF]
{Character.isJavaIdentifierStart(Character.toCodePoint((char)_input.LA(-2), (char)_input.LA(-1)))}?
;
fragment
JavaLetterOrDigit
: [a-zA-Z0-9$_] // these are the "java letters or digits" below 0xFF
| // covers all characters above 0xFF which are not a surrogate
~[\u0000-\u00FF\uD800-\uDBFF]
{Character.isJavaIdentifierPart(_input.LA(-1))}?
| // covers UTF-16 surrogate pairs encodings for U+10000 to U+10FFFF
[\uD800-\uDBFF] [\uDC00-\uDFFF]
{Character.isJavaIdentifierPart(Character.toCodePoint((char)_input.LA(-2), (char)_input.LA(-1)))}?
;
//
// Additional symbols not defined in the lexical specification
//
AT : '@';
ELLIPSIS : '...';
//
// Whitespace and comments
//
WS : [ \t\r\n\u000C]+ -> skip
;
COMMENT
: '/*' .*? '*/' -> skip
;
LINE_COMMENT
: '//' ~[\r\n]* -> skip
;
|
src/asf-beans-resolvers.adb | jquorning/ada-asf | 12 | 13798 | -----------------------------------------------------------------------
-- asf-beans-resolvers -- Resolver to create and give access to managed beans
-- Copyright (C) 2013, 2017 <NAME>
-- Written by <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 ASF.Sessions;
with ASF.Beans.Params;
with ASF.Beans.Flash;
with ASF.Beans.Globals;
with ASF.Beans.Headers;
with ASF.Beans.Requests;
package body ASF.Beans.Resolvers is
-- ------------------------------
-- Initialize the EL resolver to use the application bean factory and the given request.
-- ------------------------------
procedure Initialize (Resolver : in out ELResolver;
App : in ASF.Applications.Main.Application_Access;
Request : in ASF.Requests.Request_Access) is
begin
Resolver.Application := App;
Resolver.Request := Request;
Resolver.Attributes_Access := Resolver.Attributes'Unchecked_Access;
end Initialize;
-- ------------------------------
-- Resolve the name represented by <tt>Name</tt> according to a base object <tt>Base</tt>.
-- The resolver tries to look first in pre-defined objects (params, flash, headers, initParam).
-- It then looks in the request and session attributes for the value. If the value was
-- not in the request or session, it uses the application bean factory to create the
-- new managed bean and adds it to the request or session.
-- ------------------------------
overriding
function Get_Value (Resolver : in ELResolver;
Context : in EL.Contexts.ELContext'Class;
Base : access Util.Beans.Basic.Readonly_Bean'Class;
Name : in Ada.Strings.Unbounded.Unbounded_String)
return Util.Beans.Objects.Object is
use type Util.Beans.Basic.Readonly_Bean_Access;
use type ASF.Requests.Request_Access;
Key : constant String := To_String (Name);
begin
if Base /= null then
return Base.Get_Value (Key);
elsif Key = ASF.Beans.Params.PARAM_ATTRIBUTE_NAME then
return ASF.Beans.Params.Instance;
elsif Key = ASF.Beans.Headers.HEADER_ATTRIBUTE_NAME then
return ASF.Beans.Headers.Instance;
elsif Key = ASF.Beans.Flash.FLASH_ATTRIBUTE_NAME then
return ASF.Beans.Flash.Instance;
elsif Key = ASF.Beans.Globals.INIT_PARAM_ATTRIBUTE_NAME then
return ASF.Beans.Globals.Instance;
elsif Key = ASF.Beans.Requests.REQUEST_ATTRIBUTE_NAME then
return ASF.Beans.Requests.Instance;
end if;
declare
Result : Util.Beans.Objects.Object;
Scope : Scope_Type;
Bean : Util.Beans.Basic.Readonly_Bean_Access;
-- Look in the resolver's attributes first.
Pos : constant Util.Beans.Objects.Maps.Cursor := Resolver.Attributes.Find (Key);
begin
if Util.Beans.Objects.Maps.Has_Element (Pos) then
return Util.Beans.Objects.Maps.Element (Pos);
elsif Resolver.Request /= null then
Result := Resolver.Request.Get_Attribute (Key);
if not Util.Beans.Objects.Is_Null (Result) then
return Result;
end if;
-- If there is a session, look if the attribute is defined there.
declare
Session : ASF.Sessions.Session := Resolver.Request.Get_Session;
begin
if Session.Is_Valid then
Result := Session.Get_Attribute (Key);
if not Util.Beans.Objects.Is_Null (Result) then
return Result;
end if;
end if;
Resolver.Application.Create (Name, Context, Bean, Scope);
if Bean = null then
return Resolver.Application.Get_Global (Name, Context);
end if;
Result := Util.Beans.Objects.To_Object (Bean);
if Scope = SESSION_SCOPE then
Session.Set_Attribute (Name => Key,
Value => Result);
else
Resolver.Request.Set_Attribute (Name => Key,
Value => Result);
end if;
return Result;
end;
else
Resolver.Application.Create (Name, Context, Bean, Scope);
if Bean = null then
return Resolver.Application.Get_Global (Name, Context);
end if;
Result := Util.Beans.Objects.To_Object (Bean);
Resolver.Attributes_Access.Include (Key, Result);
return Result;
end if;
end;
end Get_Value;
-- ------------------------------
-- Sets the value represented by the <tt>Name</tt> in the base object <tt>Base</tt>.
-- If there is no <tt>Base</tt> object, the request attribute with the given name is
-- updated to the given value.
-- ------------------------------
overriding
procedure Set_Value (Resolver : in out ELResolver;
Context : in EL.Contexts.ELContext'Class;
Base : access Util.Beans.Basic.Bean'Class;
Name : in Ada.Strings.Unbounded.Unbounded_String;
Value : in Util.Beans.Objects.Object) is
pragma Unreferenced (Context);
Key : constant String := To_String (Name);
begin
if Base /= null then
Base.Set_Value (Name => Key, Value => Value);
else
Resolver.Request.Set_Attribute (Name => Key, Value => Value);
end if;
end Set_Value;
-- ------------------------------
-- Initialize the resolver.
-- ------------------------------
overriding
procedure Initialize (Resolver : in out ELResolver) is
begin
Resolver.Attributes_Access := Resolver.Attributes'Unchecked_Access;
end Initialize;
end ASF.Beans.Resolvers;
|
src/Categories/Category/Instance/Simplex.agda | jaykru/agda-categories | 0 | 13635 | <filename>src/Categories/Category/Instance/Simplex.agda
{-# OPTIONS --without-K --safe #-}
open import Categories.Category
module Categories.Category.Instance.Simplex where
open import Level
open import Data.Product
open import Data.Fin.Base using (Fin; _≤_)
open import Data.Nat.Base using (ℕ; z≤n; s≤s)
open import Function renaming (id to idF; _∘_ to _∙_)
open import Relation.Binary using (_=[_]⇒_)
open import Relation.Binary.PropositionalEquality
Δ : Category 0ℓ 0ℓ 0ℓ
Δ = record
{ Obj = ℕ
; _⇒_ = λ m n → Σ (Fin m → Fin n) (λ f → _≤_ =[ f ]⇒ _≤_)
; _≈_ = λ { (f , mf) (g , mg) → ∀ x → f x ≡ g x }
; id = idF , idF
; _∘_ = λ { (f , mf) (g , mg) → f ∙ g , mf ∙ mg }
; assoc = λ _ → refl
; sym-assoc = λ _ → refl
; identityˡ = λ _ → refl
; identityʳ = λ _ → refl
; identity² = λ _ → refl
; equiv = record
{ refl = λ _ → refl
; sym = λ eq x → sym (eq x)
; trans = λ eq₁ eq₂ x → trans (eq₁ x) (eq₂ x)
}
; ∘-resp-≈ = λ {_ _ _ f g h i} eq₁ eq₂ x → trans (cong (λ t → proj₁ f t) (eq₂ x)) (eq₁ (proj₁ i x))
}
open Category Δ
--------------------------------------------------------------------------------
-- Face + Degeneracy Maps
face-map : ∀ {n} → Fin (ℕ.suc n) → Fin n → Fin (ℕ.suc n)
face-map Fin.zero k = Fin.suc k
face-map (Fin.suc i) Fin.zero = Fin.zero
face-map (Fin.suc i) (Fin.suc k) = Fin.suc (face-map i k)
face-mono : ∀ {n} → (i : Fin (ℕ.suc n)) → _≤_ =[ face-map i ]⇒ _≤_
face-mono Fin.zero {_} {_} le = s≤s le
face-mono (Fin.suc i) {Fin.zero} {_} _ = z≤n
face-mono (Fin.suc i) {Fin.suc _} {Fin.suc _} (s≤s le) = s≤s (face-mono i le)
face : ∀ {n} → Fin (ℕ.suc n) → n ⇒ ℕ.suc n
face i = face-map i , face-mono i
degeneracy-map : ∀ {n} → Fin n → Fin (ℕ.suc n) → Fin n
degeneracy-map Fin.zero Fin.zero = Fin.zero
degeneracy-map Fin.zero (Fin.suc k) = k
degeneracy-map (Fin.suc i) Fin.zero = Fin.zero
degeneracy-map (Fin.suc i) (Fin.suc k) = Fin.suc (degeneracy-map i k)
degeneracy-mono : ∀ {n} → (i : Fin n) → _≤_ =[ degeneracy-map i ]⇒ _≤_
degeneracy-mono Fin.zero {Fin.zero} {_} _ = z≤n
degeneracy-mono Fin.zero {Fin.suc _} {Fin.suc _} (s≤s le) = le
degeneracy-mono (Fin.suc i) {Fin.zero} {_} _ = z≤n
degeneracy-mono (Fin.suc i) {Fin.suc _} {Fin.suc _} (s≤s le) = s≤s (degeneracy-mono i le)
degeneracy : ∀ {n} → Fin n → ℕ.suc n ⇒ n
degeneracy i = degeneracy-map i , degeneracy-mono i
|
libsrc/graphics/aussie/w_pixladdr.asm | jpoikela/z88dk | 640 | 14681 | ;
; Aussie Byte graphics library
;
; by <NAME> - 2016
;
;
; $Id: w_pixladdr.asm,v 1.1 2016-11-17 09:39:03 stefano Exp $
;
SECTION code_clib
PUBLIC w_pixeladdress
EXTERN rdchar
EXTERN update
EXTERN row
INCLUDE "graphics/grafix.inc"
;
; ******************************************************************
; Get absolute pixel address in map of virtual (x,y) coordinate.
; in: (x,y) coordinate of pixel (hl,de)
;
; out: hl = address of pixel byte
; b = bit number of byte where pixel is to be placed
; a = "character" currently being edited
; fz = 1 if bit number is 0 of pixel position
;
; registers changed after return:
; ..bc..../ixiy same
; af..dehl/.... different
.w_pixeladdress
;****************************************************************
;* POINT Routine sets point at x,y on *
;* HL=X, DE=Y A=0 for off, 1 for on, 2 for complement *
;****************************************************************
;LD (xloc),HL
;LD (yloc),DE ; save locations
push de ; save locations
;LD (mode),A ; save operation code
; Determine the character position along row, remainder
; is the dot position within row.
;LD DE,8 ; determine byte along line
;call divhd ; divide by 8 bits / byte
ld a,h
and 7
xor 7
ld b,a
;LD (xleft),A ; bits left in X (pos in byte)
srl h
rr l
srl h
rr l
srl h
rr l
;LD (xleft),HL ; bits left in X (pos in byte)
;LD (xloc),BC ; character loc
;LD (xloc),HL ; character loc
;push hl ; character loc
; Now determine the character row, using remainder as row within
; the character.
;LD HL,(yloc)
ex (sp),hl
;LD DE,16 ; now for character
;call divhd
ld a,h
and 15
xor 15
;LD (yleft),A ; row number
ex af,af ; row number
srl h
rr l
srl h
rr l
srl h
rr l
srl h
rr l
;LD (yleft),HL ; row number
;LD (yloc),BC ; character row number
;LD (yloc),HL ; character row number
; Now we read the byte location, and either :- Or, And or Compl bit
;****************************************************************
;* XY$to$ABS converts Xloc and Yloc to absoloute character *
;* location, and saves this in CHRLOC for updating *
;****************************************************************
; take X,Y loc, and make abs character
; location for reading / writing
;LD HL,(yloc)
ADD HL,HL ; * 2
ADD HL,HL ; * 4
ADD HL,HL ; * 8
ADD HL,HL ; * 16
PUSH HL ; save * 16 value
ADD HL,HL ; * 32
ADD HL,HL ; * 64
POP DE ; restore * 16 value
ADD HL,DE ; HL = HL*64 + HL*16
;LD DE,(xloc)
pop de
ADD HL,DE
;LD (chrloc),HL ; absolute loc saved.
;LD HL,(chrloc) ; set by xy abs routine
LD (update),HL
;LD A,(yleft)
ex af,af
LD (row),A ; row from 0 to 15
call rdchar ; get current value at addr
;PUSH AF ; save it
;LD A,(xleft)
ret
|
programs/oeis/320/A320065.asm | karttu/loda | 0 | 1511 | ; A320065: a(n) is the smallest integer i such that binomial(2i,i) > n.
; 1,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5
add $0,1
mul $0,2
trn $0,3
mov $3,3
lpb $0,1
sub $0,1
sub $0,$2
mov $1,$3
add $2,1
mov $3,1
add $3,$1
mul $1,2
sub $0,$1
trn $0,1
sub $3,1
mul $3,2
add $3,$1
mov $1,$2
lpe
add $1,1
|
Library/Chart/CBody/cbodyComposite.asm | steakknife/pcgeos | 504 | 93712 | <filename>Library/Chart/CBody/cbodyComposite.asm
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: cbodyComposite.asm
AUTHOR: <NAME>
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:
Name Date Description
---- ---- -----------
chrisb 1/19/93 Initial version.
DESCRIPTION:
$Id: cbodyComposite.asm,v 1.1 97/04/04 17:48:10 newdeal Exp $
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ChartBodyCallChildren
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Send a message to all the kids
CALLED BY:
PASS: *ds:si - Chart body
ax,cx,dx,bp = message data
RETURN: nothing
DESTROYED: nothing
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
CDB 1/23/92 Initial version.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
ChartBodyCallChildren proc near
uses bx,di
class ChartBodyClass
.enter
; Set up ObjComp... stack frame
clr bx
push bx, bx
mov di, offset COI_link
push di
push bx
mov di, OCCT_SAVE_PARAMS_DONT_TEST_ABORT
push di
call ChartBodyGetCompOffset
call ObjCompProcessChildren
.leave
ret
ChartBodyCallChildren endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ChartBodyProcessChildren
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Call a callback routine for each child
CALLED BY:
PASS: *ds:si - ChartBody
bx - routine to call for each child
RETURN: nothing
DESTROYED: nothing
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
CDB 12/18/91 Initial version.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
ChartBodyProcessChildren proc near
uses bx, di
class ChartBodyClass
.enter
; Set up ObjComp... stack frame
clr di
push di, di
mov di, offset COI_link
push di
NOFXIP< push cs >
FXIP< mov di, SEGMENT_CS >
FXIP< push di >
push bx ; routine to call
clr bx
call ChartBodyGetCompOffset
call ObjCompProcessChildren
.leave
ret
ChartBodyProcessChildren endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ChartBodyAddChild
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Add the ChartGroup object of the newly created chart
block to my list of children.
CALLED BY: ChartBodyCreateChart
PASS: *ds:si - ChartBody
cx - block handle of child block
RETURN: nothing
DESTROYED: nothing
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
CDB 12/18/91 Initial version.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
ChartBodyAddChild proc near
uses ax,bx,cx,dx,di,bp
class ChartBodyClass
.enter
mov dx, offset TemplateChartGroup
mov bp, CCO_LAST or mask CCF_MARK_DIRTY
;
; Manufacture a phony offset to the CBI_comp field,
;
call ChartBodyGetCompOffset
mov ax, offset COI_link
clr bx ; no master part
call ObjCompAddChild
.leave
ret
ChartBodyAddChild endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ChartBodyGetCompOffset
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Return a value in DI that will fool
ObjCompProcessChildren and friends into thinking that
the ChartBody is at the same master level as the
ChartObjectClass objects
CALLED BY:
PASS: *ds:si - ChartBody
RETURN: di - offset from start of object to CBI_comp
DESTROYED: nothing
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
chrisb 1/12/93 Initial version.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
ChartBodyGetCompOffset proc near
uses bx
class ChartBodyClass
.enter
mov bx, ds:[si] ; ds:di - start of object
mov di, bx
add di, ds:[di].ChartBody_offset
add di, offset CBI_comp
sub di, bx
.leave
ret
ChartBodyGetCompOffset endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ChartBodySendToSelectedCharts
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Send a message to all selected charts
CALLED BY: ChartBodyLargeStartMoveCopy
PASS: *ds:si - chart body
ax,cx,dx,bp - message data
RETURN: nothing
DESTROYED: nothing
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
chrisb 1/19/93 Initial version.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
ChartBodySendToSelectedCharts proc near
uses bx
.enter
mov bx, offset SendToSelectedChartsCB
call ChartBodyProcessChildren
.leave
ret
ChartBodySendToSelectedCharts endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SendToSelectedChartsCB
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Send the message to this chart group if its selection
count is nonzero
CALLED BY: ChartBodySendToSelectedCharts
PASS: *ds:si - chart group
ax,cx,dx,bp - message data
RETURN: carry clear
DESTROYED: nothing
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
chrisb 1/19/93 Initial version.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
SendToSelectedChartsCB proc far
class ChartGroupClass
.enter
DerefChartObject ds, si, di
tst ds:[di].COI_selection
jz done
call ObjCallInstanceNoLock
done:
clc
.leave
ret
SendToSelectedChartsCB endp
|
src/os-linux/util-systems-os.ads | Letractively/ada-util | 0 | 28870 | -----------------------------------------------------------------------
-- util-system-os -- Unix system operations
-- Copyright (C) 2011, 2012, 2014 <NAME>
-- Written by <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 System;
with Interfaces.C;
with Interfaces.C.Strings;
with Util.Processes;
with Util.Systems.Constants;
with Util.Systems.Types;
-- The <b>Util.Systems.Os</b> package defines various types and operations which are specific
-- to the OS (Unix).
package Util.Systems.Os is
-- The directory separator.
Directory_Separator : constant Character := '/';
subtype Ptr is Interfaces.C.Strings.chars_ptr;
subtype Ptr_Array is Interfaces.C.Strings.chars_ptr_array;
type Ptr_Ptr_Array is access all Ptr_Array;
type File_Type is new Integer;
-- Standard file streams Posix, X/Open standard values.
STDIN_FILENO : constant File_Type := 0;
STDOUT_FILENO : constant File_Type := 1;
STDERR_FILENO : constant File_Type := 2;
-- File is not opened
NO_FILE : constant File_Type := -1;
-- The following values should be externalized. They are valid for GNU/Linux.
F_SETFL : constant Interfaces.C.int := Util.Systems.Constants.F_SETFL;
FD_CLOEXEC : constant Interfaces.C.int := Util.Systems.Constants.FD_CLOEXEC;
-- These values are specific to Linux.
O_RDONLY : constant Interfaces.C.int := Util.Systems.Constants.O_RDONLY;
O_WRONLY : constant Interfaces.C.int := Util.Systems.Constants.O_WRONLY;
O_RDWR : constant Interfaces.C.int := Util.Systems.Constants.O_RDWR;
O_CREAT : constant Interfaces.C.int := Util.Systems.Constants.O_CREAT;
O_EXCL : constant Interfaces.C.int := Util.Systems.Constants.O_EXCL;
O_TRUNC : constant Interfaces.C.int := Util.Systems.Constants.O_TRUNC;
O_APPEND : constant Interfaces.C.int := Util.Systems.Constants.O_APPEND;
type Size_T is mod 2 ** Standard'Address_Size;
type Ssize_T is range -(2 ** (Standard'Address_Size - 1))
.. +(2 ** (Standard'Address_Size - 1)) - 1;
function Close (Fd : in File_Type) return Integer;
pragma Import (C, Close, "close");
function Read (Fd : in File_Type;
Buf : in System.Address;
Size : in Size_T) return Ssize_T;
pragma Import (C, Read, "read");
function Write (Fd : in File_Type;
Buf : in System.Address;
Size : in Size_T) return Ssize_T;
pragma Import (C, Write, "write");
-- System exit without any process cleaning.
-- (destructors, finalizers, atexit are not called)
procedure Sys_Exit (Code : in Integer);
pragma Import (C, Sys_Exit, "_exit");
-- Fork a new process
function Sys_Fork return Util.Processes.Process_Identifier;
pragma Import (C, Sys_Fork, "fork");
-- Fork a new process (vfork implementation)
function Sys_VFork return Util.Processes.Process_Identifier;
pragma Import (C, Sys_VFork, "fork");
-- Execute a process with the given arguments.
function Sys_Execvp (File : in Ptr;
Args : in Ptr_Array) return Integer;
pragma Import (C, Sys_Execvp, "execvp");
-- Wait for the process <b>Pid</b> to finish and return
function Sys_Waitpid (Pid : in Integer;
Status : in System.Address;
Options : in Integer) return Integer;
pragma Import (C, Sys_Waitpid, "waitpid");
-- Create a bi-directional pipe
function Sys_Pipe (Fds : in System.Address) return Integer;
pragma Import (C, Sys_Pipe, "pipe");
-- Make <b>fd2</b> the copy of <b>fd1</b>
function Sys_Dup2 (Fd1, Fd2 : in File_Type) return Integer;
pragma Import (C, Sys_Dup2, "dup2");
-- Close a file
function Sys_Close (Fd : in File_Type) return Integer;
pragma Import (C, Sys_Close, "close");
-- Open a file
function Sys_Open (Path : in Ptr;
Flags : in Interfaces.C.int;
Mode : in Interfaces.C.int) return File_Type;
pragma Import (C, Sys_Open, "open");
-- Change the file settings
function Sys_Fcntl (Fd : in File_Type;
Cmd : in Interfaces.C.int;
Flags : in Interfaces.C.int) return Integer;
pragma Import (C, Sys_Fcntl, "fcntl");
function Sys_Kill (Pid : in Integer;
Signal : in Integer) return Integer;
pragma Import (C, Sys_Kill, "kill");
function Sys_Stat (Path : in Ptr;
Stat : access Util.Systems.Types.Stat_Type) return Integer;
pragma Import (C, Sys_Stat, Util.Systems.Types.STAT_NAME);
function Sys_Fstat (Fs : in File_Type;
Stat : access Util.Systems.Types.Stat_Type) return Integer;
pragma Import (C, Sys_Fstat, Util.Systems.Types.FSTAT_NAME);
end Util.Systems.Os;
|
Categories/2-Category/Categories.agda | copumpkin/categories | 98 | 10462 | module Categories.2-Category.Categories where
open import Level
open import Data.Product
open import Categories.Category
open import Categories.2-Category
open import Categories.Functor using (module Functor) renaming (id to idF; _∘_ to _∘F_)
open import Categories.Functor.Constant
open import Categories.FunctorCategory
open import Categories.Bifunctor using (Bifunctor)
open import Categories.NaturalTransformation
open import Categories.Product using (Product)
Categories : ∀ o ℓ e → 2-Category (suc (o ⊔ ℓ ⊔ e)) (o ⊔ ℓ ⊔ e) (o ⊔ ℓ ⊔ e) (o ⊔ e)
Categories o ℓ e = record
{ Obj = Category o ℓ e
; _⇒_ = Functors
; id = λ {A} → Constant {D = Functors A A} idF
; —∘— = my-∘
; assoc = {!!}
; identityˡ = λ {A B} η → Heterogeneous.≡⇒∼ {C = Functors A B} {f = proj₂ η ∘₁ id} {proj₂ η} (Category.identityʳ B)
; identityʳ = λ {A B f g} η → Heterogeneous.≡⇒∼ {_} {_} {_} {C = Functors A B} {proj₁ f} {proj₁ g} {f = record {
η =
λ X →
Category._∘_ B (Functor.F₁ (proj₁ g) (Category.id A))
(NaturalTransformation.η (proj₁ η) X);
commute = λ {a} {b} h → let open Category.HomReasoning B in begin
B [ B [ Functor.F₁ (proj₁ g) (Category.id A) ∘ NaturalTransformation.η (proj₁ η) b ] ∘ {!.Categories.NaturalTransformation.Core.F.F₁ (proj₁ f) (proj₁ g) h!} ]
↓⟨ {!!} ⟩
B [ Functor.F₁ {!!} {!!} ∘ B [ Functor.F₁ (proj₁ g) (Category.id A) ∘ NaturalTransformation.η (proj₁ η) a ] ]
∎ }
} {proj₁ {_} {_} {_} {_} η} (Category.Equiv.trans B (Category.∘-resp-≡ˡ B (Functor.identity (proj₁ g))) (Category.identityˡ B))
}
where
my-∘ : {A B C : Category o ℓ e} → Bifunctor (Functors B C) (Functors A B) (Functors A C)
my-∘ {A} {B} {C} = record
{ F₀ = uncurry′ _∘F_
; F₁ = uncurry′ _∘₀_
; identity = λ {Fs} → Category.Equiv.trans C (Category.identityʳ C) (Functor.identity (proj₁ Fs))
; homomorphism = λ {_ _ _ f g} → Category.Equiv.sym C (interchange {α = proj₁ g} {proj₂ g} {proj₁ f} {proj₂ f})
; F-resp-≡ = λ {_ _ f g} → my-resp {f = f} {g}
}
where
PF = Product (Functors B C) (Functors A B)
.my-resp : ∀ {F G} {f g : PF [ F , G ]} → PF [ f ≡ g ] → Functors A C [ uncurry′ _∘₀_ f ≡ uncurry _∘₀_ g ]
my-resp {f = f₁ , f₂} {g₁ , g₂} (f₁≡g₁ , f₂≡g₂) = ∘₀-resp-≡ {f = f₁} {g₁} {f₂} {g₂} f₁≡g₁ f₂≡g₂ |
programs/oeis/168/A168336.asm | karttu/loda | 1 | 18221 | ; A168336: a(n) = 5 + 7*floor((n-1)/2).
; 5,5,12,12,19,19,26,26,33,33,40,40,47,47,54,54,61,61,68,68,75,75,82,82,89,89,96,96,103,103,110,110,117,117,124,124,131,131,138,138,145,145,152,152,159,159,166,166,173,173,180,180,187,187,194,194,201,201,208,208,215,215,222,222,229,229,236,236,243,243,250,250,257,257,264,264,271,271,278,278,285,285,292,292,299,299,306,306,313,313,320,320,327,327,334,334,341,341,348,348,355,355,362,362,369,369,376,376,383,383,390,390,397,397,404,404,411,411,418,418,425,425,432,432,439,439,446,446,453,453,460,460,467,467,474,474,481,481,488,488,495,495,502,502,509,509,516,516,523,523,530,530,537,537,544,544,551,551,558,558,565,565,572,572,579,579,586,586,593,593,600,600,607,607,614,614,621,621,628,628,635,635,642,642,649,649,656,656,663,663,670,670,677,677,684,684,691,691,698,698,705,705,712,712,719,719,726,726,733,733,740,740,747,747,754,754,761,761,768,768,775,775,782,782,789,789,796,796,803,803,810,810,817,817,824,824,831,831,838,838,845,845,852,852,859,859,866,866,873,873
mov $1,$0
div $1,2
mul $1,7
add $1,5
|
workingdir/media.asm | Cararasu/holodec | 215 | 170536 |
media_unit_fw.hex: Dateiformat ihex
Disassembly of section .sec1:
00000000 <.sec1>:
0: 0c 94 c8 01 jmp 0x390 ; 0x390
4: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
8: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
10: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
14: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
18: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
20: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
24: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
28: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
2c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
30: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
34: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
38: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
3c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
40: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
44: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
48: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
4c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
50: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
54: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
58: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
5c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
60: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
64: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
68: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
6c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
70: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
74: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
78: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
7c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
80: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
84: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
88: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
8c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
90: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
94: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
98: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
9c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
a0: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
a4: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
a8: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
ac: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
b0: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
b4: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
b8: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
bc: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
c0: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
c4: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
c8: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
cc: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
d0: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
d4: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
d8: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
dc: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
e0: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
e4: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
e8: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
ec: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
f0: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
f4: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
f8: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
fc: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
100: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
104: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
108: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
10c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
110: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
114: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
118: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
11c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
120: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
124: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
128: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
12c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
130: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
134: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
138: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
13c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
140: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
144: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
148: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
14c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
150: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
154: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
158: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
15c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
160: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
164: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
168: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
16c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
170: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
174: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
178: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
17c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
180: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
184: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
188: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
18c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
190: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
194: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
198: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
19c: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1a0: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1a4: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1a8: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1ac: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1b0: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1b4: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1b8: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1bc: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1c0: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1c4: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1c8: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1cc: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1d0: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1d4: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1d8: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1dc: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1e0: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1e4: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1e8: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1ec: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1f0: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1f4: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1f8: 0c 94 ee 01 jmp 0x3dc ; 0x3dc
1fc: 01 1a sub r0, r17
1fe: 06 1a sub r0, r22
200: 0b 1a sub r0, r27
202: 10 1a sub r1, r16
204: 15 1a sub r1, r21
206: 1a 1a sub r1, r26
208: 1f 1a sub r1, r31
20a: 24 1a sub r2, r20
20c: 29 1a sub r2, r25
20e: 2e 1a sub r2, r30
210: 33 1a sub r3, r19
212: 0c 94 0b 1a jmp 0x3416 ; 0x3416
216: 0c 94 1f 1a jmp 0x343e ; 0x343e
21a: 0c 94 01 1a jmp 0x3402 ; 0x3402
21e: 0c 94 3a 18 jmp 0x3074 ; 0x3074
222: 0c 94 10 1a jmp 0x3420 ; 0x3420
226: 0c 94 24 1a jmp 0x3448 ; 0x3448
22a: 0c 94 33 1a jmp 0x3466 ; 0x3466
22e: 0c 94 15 1a jmp 0x342a ; 0x342a
232: 0c 94 0e 18 jmp 0x301c ; 0x301c
236: 0c 94 90 18 jmp 0x3120 ; 0x3120
23a: 0c 94 06 1a jmp 0x340c ; 0x340c
23e: 0c 94 29 1a jmp 0x3452 ; 0x3452
242: 0c 94 1a 1a jmp 0x3434 ; 0x3434
246: 0c 94 2e 1a jmp 0x345c ; 0x345c
24a: 67 e6 ldi r22, 0x67 ; 103
24c: 09 6a ori r16, 0xA9 ; 169
24e: 85 ae std Z+61, r8 ; 0x3d
250: 67 bb out 0x17, r22 ; 23
252: 72 f3 brmi .-36 ; 0x230
254: 6e 3c cpi r22, 0xCE ; 206
256: 3a f5 brpl .+78 ; 0x2a6
258: 4f a5 ldd r20, Y+47 ; 0x2f
25a: 7f 52 subi r23, 0x2F ; 47
25c: 0e 51 subi r16, 0x1E ; 30
25e: 8c 68 ori r24, 0x8C ; 140
260: 05 9b sbis 0x00, 5 ; 0
262: ab d9 rcall .-3242 ; 0xfffff5ba
264: 83 1f adc r24, r19
266: 19 cd rjmp .-1486 ; 0xfffffc9a
268: e0 5b subi r30, 0xB0 ; 176
26a: 98 2f mov r25, r24
26c: 8a 42 sbci r24, 0x2A ; 42
26e: 91 44 sbci r25, 0x41 ; 65
270: 37 71 andi r19, 0x17 ; 23
272: cf fb .word 0xfbcf ; ????
274: c0 b5 in r28, 0x20 ; 32
276: a5 db rcall .-2230 ; 0xfffff9c2
278: b5 e9 ldi r27, 0x95 ; 149
27a: 5b c2 rjmp .+1206 ; 0x732
27c: 56 39 cpi r21, 0x96 ; 150
27e: f1 11 cpse r31, r1
280: f1 59 subi r31, 0x91 ; 145
282: a4 82 std Z+4, r10 ; 0x04
284: 3f 92 push r3
286: d5 5e subi r29, 0xE5 ; 229
288: 1c ab std Y+52, r17 ; 0x34
28a: 98 aa std Y+48, r9 ; 0x30
28c: 07 d8 rcall .-4082 ; 0xfffff29c
28e: 01 5b subi r16, 0xB1 ; 177
290: 83 12 cpse r8, r19
292: be 85 ldd r27, Y+14 ; 0x0e
294: 31 24 eor r3, r1
296: c3 7d andi r28, 0xD3 ; 211
298: 0c 55 subi r16, 0x5C ; 92
29a: 74 5d subi r23, 0xD4 ; 212
29c: be 72 andi r27, 0x2E ; 46
29e: fe b1 in r31, 0x0e ; 14
2a0: de 80 ldd r13, Y+6 ; 0x06
2a2: a7 06 cpc r10, r23
2a4: dc 9b sbis 0x1b, 4 ; 27
2a6: 74 f1 brlt .+92 ; 0x304
2a8: 9b c1 rjmp .+822 ; 0x5e0
2aa: c1 69 ori r28, 0x91 ; 145
2ac: 9b e4 ldi r25, 0x4B ; 75
2ae: 86 47 sbci r24, 0x76 ; 118
2b0: be ef ldi r27, 0xFE ; 254
2b2: c6 9d mul r28, r6
2b4: c1 0f add r28, r17
2b6: cc a1 ldd r28, Y+36 ; 0x24
2b8: 0c 24 eor r0, r12
2ba: 6f 2c mov r6, r15
2bc: e9 2d mov r30, r9
2be: aa 84 ldd r10, Y+10 ; 0x0a
2c0: 74 4a sbci r23, 0xA4 ; 164
2c2: dc a9 ldd r29, Y+52 ; 0x34
2c4: b0 5c subi r27, 0xC0 ; 192
2c6: da 88 ldd r13, Y+18 ; 0x12
2c8: f9 76 andi r31, 0x69 ; 105
2ca: 52 51 subi r21, 0x12 ; 18
2cc: 3e 98 cbi 0x07, 6 ; 7
2ce: 6d c6 rjmp .+3290 ; 0xfaa
2d0: 31 a8 ldd r3, Z+49 ; 0x31
2d2: c8 27 eor r28, r24
2d4: 03 b0 in r0, 0x03 ; 3
2d6: c7 7f andi r28, 0xF7 ; 247
2d8: 59 bf out 0x39, r21 ; 57
2da: f3 0b sbc r31, r19
2dc: e0 c6 rjmp .+3520 ; 0x109e
2de: 47 91 elpm r20, Z+
2e0: a7 d5 rcall .+2894 ; 0xe30
2e2: 51 63 ori r21, 0x31 ; 49
2e4: ca 06 cpc r12, r26
2e6: 67 29 or r22, r7
2e8: 29 14 cp r2, r9
2ea: 85 0a sbc r8, r21
2ec: b7 27 eor r27, r23
2ee: 38 21 and r19, r8
2f0: 1b 2e mov r1, r27
2f2: fc 6d ori r31, 0xDC ; 220
2f4: 2c 4d sbci r18, 0xDC ; 220
2f6: 13 0d add r17, r3
2f8: 38 53 subi r19, 0x38 ; 56
2fa: 54 73 andi r21, 0x34 ; 52
2fc: 0a 65 ori r16, 0x5A ; 90
2fe: bb 0a sbc r11, r27
300: 6a 76 andi r22, 0x6A ; 106
302: 2e c9 rjmp .-3492 ; 0xfffff560
304: c2 81 ldd r28, Z+2 ; 0x02
306: 85 2c mov r8, r5
308: 72 92 st -Z, r7
30a: a1 e8 ldi r26, 0x81 ; 129
30c: bf a2 std Y+39, r11 ; 0x27
30e: 4b 66 ori r20, 0x6B ; 107
310: 1a a8 ldd r1, Y+50 ; 0x32
312: 70 8b std Z+16, r23 ; 0x10
314: 4b c2 rjmp .+1174 ; 0x7ac
316: a3 51 subi r26, 0x13 ; 19
318: 6c c7 rjmp .+3800 ; 0x11f2
31a: 19 e8 ldi r17, 0x89 ; 137
31c: 92 d1 rcall .+804 ; 0x642
31e: 24 06 cpc r2, r20
320: 99 d6 rcall .+3378 ; 0x1054
322: 85 35 cpi r24, 0x55 ; 85
324: 0e f4 brtc .+2 ; 0x328
326: 70 a0 ldd r7, Z+32 ; 0x20
328: 6a 10 cpse r6, r10
32a: 16 c1 rjmp .+556 ; 0x558
32c: a4 19 sub r26, r4
32e: 08 6c ori r16, 0xC8 ; 200
330: 37 1e adc r3, r23
332: 4c 77 andi r20, 0x7C ; 124
334: 48 27 eor r20, r24
336: b5 bc out 0x25, r11 ; 37
338: b0 34 cpi r27, 0x40 ; 64
33a: b3 0c add r11, r3
33c: 1c 39 cpi r17, 0x9C ; 156
33e: 4a aa std Y+50, r4 ; 0x32
340: d8 4e sbci r29, 0xE8 ; 232
342: 4f ca rjmp .-2914 ; 0xfffff7e2
344: 9c 5b subi r25, 0xBC ; 188
346: f3 6f ori r31, 0xF3 ; 243
348: 2e 68 ori r18, 0x8E ; 142
34a: ee 82 std Y+6, r14 ; 0x06
34c: 8f 74 andi r24, 0x4F ; 79
34e: 6f 63 ori r22, 0x3F ; 63
350: a5 78 andi r26, 0x85 ; 133
352: 14 78 andi r17, 0x84 ; 132
354: c8 84 ldd r12, Y+8 ; 0x08
356: 08 02 muls r16, r24
358: c7 8c ldd r12, Z+31 ; 0x1f
35a: fa ff .word 0xfffa ; ????
35c: be 90 ld r11, -X
35e: eb 6c ori r30, 0xCB ; 203
360: 50 a4 ldd r5, Z+40 ; 0x28
362: f7 a3 std Z+39, r31 ; 0x27
364: f9 be out 0x39, r15 ; 57
366: f2 78 andi r31, 0x82 ; 130
368: 71 c6 rjmp .+3298 ; 0x104c
...
38e: 00 00 nop
390: 11 24 eor r1, r1
392: 1f be out 0x3f, r1 ; 63
394: cf ef ldi r28, 0xFF ; 255
396: cd bf out 0x3d, r28 ; 61
398: df e3 ldi r29, 0x3F ; 63
39a: de bf out 0x3e, r29 ; 62
39c: 00 e0 ldi r16, 0x00 ; 0
39e: 0c bf out 0x3c, r16 ; 60
3a0: 18 be out 0x38, r1 ; 56
3a2: 19 be out 0x39, r1 ; 57
3a4: 1a be out 0x3a, r1 ; 58
3a6: 1b be out 0x3b, r1 ; 59
3a8: 11 e2 ldi r17, 0x21 ; 33
3aa: a0 e0 ldi r26, 0x00 ; 0
3ac: b0 e2 ldi r27, 0x20 ; 32
3ae: ec e5 ldi r30, 0x5C ; 92
3b0: f6 e5 ldi r31, 0x56 ; 86
3b2: 00 e0 ldi r16, 0x00 ; 0
3b4: 0b bf out 0x3b, r16 ; 59
3b6: 02 c0 rjmp .+4 ; 0x3bc
3b8: 07 90 elpm r0, Z+
3ba: 0d 92 st X+, r0
3bc: a6 3d cpi r26, 0xD6 ; 214
3be: b1 07 cpc r27, r17
3c0: d9 f7 brne .-10 ; 0x3b8
3c2: 1b be out 0x3b, r1 ; 59
3c4: 22 e2 ldi r18, 0x22 ; 34
3c6: a6 ed ldi r26, 0xD6 ; 214
3c8: b1 e2 ldi r27, 0x21 ; 33
3ca: 01 c0 rjmp .+2 ; 0x3ce
3cc: 1d 92 st X+, r1
3ce: a9 3d cpi r26, 0xD9 ; 217
3d0: b2 07 cpc r27, r18
3d2: e1 f7 brne .-8 ; 0x3cc
3d4: 0e 94 84 09 call 0x1308 ; 0x1308
3d8: 0c 94 2c 2b jmp 0x5658 ; 0x5658
3dc: 0c 94 00 00 jmp 0 ; 0x0
3e0: cf 93 push r28
3e2: df 93 push r29
3e4: cd b7 in r28, 0x3d ; 61
3e6: de b7 in r29, 0x3e ; 62
3e8: 0e 94 c2 15 call 0x2b84 ; 0x2b84
3ec: df 91 pop r29
3ee: cf 91 pop r28
3f0: 08 95 ret
3f2: cf 93 push r28
3f4: df 93 push r29
3f6: 00 d0 rcall .+0 ; 0x3f8
3f8: cd b7 in r28, 0x3d ; 61
3fa: de b7 in r29, 0x3e ; 62
3fc: 0e 94 c2 15 call 0x2b84 ; 0x2b84
400: 0e 94 6d 04 call 0x8da ; 0x8da
404: 80 e0 ldi r24, 0x00 ; 0
406: 90 e0 ldi r25, 0x00 ; 0
408: 0e 94 f9 2a call 0x55f2 ; 0x55f2
40c: 8b 83 std Y+3, r24 ; 0x03
40e: 19 82 std Y+1, r1 ; 0x01
410: 1a 82 std Y+2, r1 ; 0x02
412: 0e 94 6d 04 call 0x8da ; 0x8da
416: 8b 81 ldd r24, Y+3 ; 0x03
418: 8f 3f cpi r24, 0xFF ; 255
41a: 09 f4 brne .+2 ; 0x41e
41c: 75 c1 rjmp .+746 ; 0x708
41e: 80 91 0f 20 lds r24, 0x200F
422: 90 91 10 20 lds r25, 0x2010
426: 6f e1 ldi r22, 0x1F ; 31
428: 70 e2 ldi r23, 0x20 ; 32
42a: 0e 94 4b 18 call 0x3096 ; 0x3096
42e: 80 91 0f 20 lds r24, 0x200F
432: 90 91 10 20 lds r25, 0x2010
436: 2a 81 ldd r18, Y+2 ; 0x02
438: 2f 93 push r18
43a: 29 81 ldd r18, Y+1 ; 0x01
43c: 2f 93 push r18
43e: 2f e5 ldi r18, 0x5F ; 95
440: 30 e2 ldi r19, 0x20 ; 32
442: 23 2f mov r18, r19
444: 2f 93 push r18
446: 2f e5 ldi r18, 0x5F ; 95
448: 30 e2 ldi r19, 0x20 ; 32
44a: 2f 93 push r18
44c: 29 2f mov r18, r25
44e: 2f 93 push r18
450: 8f 93 push r24
452: 0e 94 70 18 call 0x30e0 ; 0x30e0
456: 0f 90 pop r0
458: 0f 90 pop r0
45a: 0f 90 pop r0
45c: 0f 90 pop r0
45e: 0f 90 pop r0
460: 0f 90 pop r0
462: 0e 94 04 05 call 0xa08 ; 0xa08
466: 89 81 ldd r24, Y+1 ; 0x01
468: 9a 81 ldd r25, Y+2 ; 0x02
46a: 0a 96 adiw r24, 0x0a ; 10
46c: 89 83 std Y+1, r24 ; 0x01
46e: 9a 83 std Y+2, r25 ; 0x02
470: 80 91 0f 20 lds r24, 0x200F
474: 90 91 10 20 lds r25, 0x2010
478: 2a 81 ldd r18, Y+2 ; 0x02
47a: 2f 93 push r18
47c: 29 81 ldd r18, Y+1 ; 0x01
47e: 2f 93 push r18
480: 2f e5 ldi r18, 0x5F ; 95
482: 30 e2 ldi r19, 0x20 ; 32
484: 23 2f mov r18, r19
486: 2f 93 push r18
488: 2f e5 ldi r18, 0x5F ; 95
48a: 30 e2 ldi r19, 0x20 ; 32
48c: 2f 93 push r18
48e: 29 2f mov r18, r25
490: 2f 93 push r18
492: 8f 93 push r24
494: 0e 94 70 18 call 0x30e0 ; 0x30e0
498: 0f 90 pop r0
49a: 0f 90 pop r0
49c: 0f 90 pop r0
49e: 0f 90 pop r0
4a0: 0f 90 pop r0
4a2: 0f 90 pop r0
4a4: 0e 94 04 05 call 0xa08 ; 0xa08
4a8: 89 81 ldd r24, Y+1 ; 0x01
4aa: 9a 81 ldd r25, Y+2 ; 0x02
4ac: 0a 96 adiw r24, 0x0a ; 10
4ae: 89 83 std Y+1, r24 ; 0x01
4b0: 9a 83 std Y+2, r25 ; 0x02
4b2: 80 91 0f 20 lds r24, 0x200F
4b6: 90 91 10 20 lds r25, 0x2010
4ba: 2a 81 ldd r18, Y+2 ; 0x02
4bc: 2f 93 push r18
4be: 29 81 ldd r18, Y+1 ; 0x01
4c0: 2f 93 push r18
4c2: 2f e5 ldi r18, 0x5F ; 95
4c4: 30 e2 ldi r19, 0x20 ; 32
4c6: 23 2f mov r18, r19
4c8: 2f 93 push r18
4ca: 2f e5 ldi r18, 0x5F ; 95
4cc: 30 e2 ldi r19, 0x20 ; 32
4ce: 2f 93 push r18
4d0: 29 2f mov r18, r25
4d2: 2f 93 push r18
4d4: 8f 93 push r24
4d6: 0e 94 70 18 call 0x30e0 ; 0x30e0
4da: 0f 90 pop r0
4dc: 0f 90 pop r0
4de: 0f 90 pop r0
4e0: 0f 90 pop r0
4e2: 0f 90 pop r0
4e4: 0f 90 pop r0
4e6: 0e 94 04 05 call 0xa08 ; 0xa08
4ea: 89 81 ldd r24, Y+1 ; 0x01
4ec: 9a 81 ldd r25, Y+2 ; 0x02
4ee: 0a 96 adiw r24, 0x0a ; 10
4f0: 89 83 std Y+1, r24 ; 0x01
4f2: 9a 83 std Y+2, r25 ; 0x02
4f4: 80 91 0f 20 lds r24, 0x200F
4f8: 90 91 10 20 lds r25, 0x2010
4fc: 2a 81 ldd r18, Y+2 ; 0x02
4fe: 2f 93 push r18
500: 29 81 ldd r18, Y+1 ; 0x01
502: 2f 93 push r18
504: 2f e5 ldi r18, 0x5F ; 95
506: 30 e2 ldi r19, 0x20 ; 32
508: 23 2f mov r18, r19
50a: 2f 93 push r18
50c: 2f e5 ldi r18, 0x5F ; 95
50e: 30 e2 ldi r19, 0x20 ; 32
510: 2f 93 push r18
512: 29 2f mov r18, r25
514: 2f 93 push r18
516: 8f 93 push r24
518: 0e 94 70 18 call 0x30e0 ; 0x30e0
51c: 0f 90 pop r0
51e: 0f 90 pop r0
520: 0f 90 pop r0
522: 0f 90 pop r0
524: 0f 90 pop r0
526: 0f 90 pop r0
528: 0e 94 04 05 call 0xa08 ; 0xa08
52c: 89 81 ldd r24, Y+1 ; 0x01
52e: 9a 81 ldd r25, Y+2 ; 0x02
530: 0a 96 adiw r24, 0x0a ; 10
532: 89 83 std Y+1, r24 ; 0x01
534: 9a 83 std Y+2, r25 ; 0x02
536: 80 91 0f 20 lds r24, 0x200F
53a: 90 91 10 20 lds r25, 0x2010
53e: 2a 81 ldd r18, Y+2 ; 0x02
540: 2f 93 push r18
542: 29 81 ldd r18, Y+1 ; 0x01
544: 2f 93 push r18
546: 2f e5 ldi r18, 0x5F ; 95
548: 30 e2 ldi r19, 0x20 ; 32
54a: 23 2f mov r18, r19
54c: 2f 93 push r18
54e: 2f e5 ldi r18, 0x5F ; 95
550: 30 e2 ldi r19, 0x20 ; 32
552: 2f 93 push r18
554: 29 2f mov r18, r25
556: 2f 93 push r18
558: 8f 93 push r24
55a: 0e 94 70 18 call 0x30e0 ; 0x30e0
55e: 0f 90 pop r0
560: 0f 90 pop r0
562: 0f 90 pop r0
564: 0f 90 pop r0
566: 0f 90 pop r0
568: 0f 90 pop r0
56a: 0e 94 04 05 call 0xa08 ; 0xa08
56e: 89 81 ldd r24, Y+1 ; 0x01
570: 9a 81 ldd r25, Y+2 ; 0x02
572: 0a 96 adiw r24, 0x0a ; 10
574: 89 83 std Y+1, r24 ; 0x01
576: 9a 83 std Y+2, r25 ; 0x02
578: 80 91 0f 20 lds r24, 0x200F
57c: 90 91 10 20 lds r25, 0x2010
580: 2a 81 ldd r18, Y+2 ; 0x02
582: 2f 93 push r18
584: 29 81 ldd r18, Y+1 ; 0x01
586: 2f 93 push r18
588: 2f e5 ldi r18, 0x5F ; 95
58a: 30 e2 ldi r19, 0x20 ; 32
58c: 23 2f mov r18, r19
58e: 2f 93 push r18
590: 2f e5 ldi r18, 0x5F ; 95
592: 30 e2 ldi r19, 0x20 ; 32
594: 2f 93 push r18
596: 29 2f mov r18, r25
598: 2f 93 push r18
59a: 8f 93 push r24
59c: 0e 94 70 18 call 0x30e0 ; 0x30e0
5a0: 0f 90 pop r0
5a2: 0f 90 pop r0
5a4: 0f 90 pop r0
5a6: 0f 90 pop r0
5a8: 0f 90 pop r0
5aa: 0f 90 pop r0
5ac: 0e 94 04 05 call 0xa08 ; 0xa08
5b0: 89 81 ldd r24, Y+1 ; 0x01
5b2: 9a 81 ldd r25, Y+2 ; 0x02
5b4: 0a 96 adiw r24, 0x0a ; 10
5b6: 89 83 std Y+1, r24 ; 0x01
5b8: 9a 83 std Y+2, r25 ; 0x02
5ba: 80 91 0f 20 lds r24, 0x200F
5be: 90 91 10 20 lds r25, 0x2010
5c2: 2a 81 ldd r18, Y+2 ; 0x02
5c4: 2f 93 push r18
5c6: 29 81 ldd r18, Y+1 ; 0x01
5c8: 2f 93 push r18
5ca: 2f e5 ldi r18, 0x5F ; 95
5cc: 30 e2 ldi r19, 0x20 ; 32
5ce: 23 2f mov r18, r19
5d0: 2f 93 push r18
5d2: 2f e5 ldi r18, 0x5F ; 95
5d4: 30 e2 ldi r19, 0x20 ; 32
5d6: 2f 93 push r18
5d8: 29 2f mov r18, r25
5da: 2f 93 push r18
5dc: 8f 93 push r24
5de: 0e 94 70 18 call 0x30e0 ; 0x30e0
5e2: 0f 90 pop r0
5e4: 0f 90 pop r0
5e6: 0f 90 pop r0
5e8: 0f 90 pop r0
5ea: 0f 90 pop r0
5ec: 0f 90 pop r0
5ee: 0e 94 04 05 call 0xa08 ; 0xa08
5f2: 89 81 ldd r24, Y+1 ; 0x01
5f4: 9a 81 ldd r25, Y+2 ; 0x02
5f6: 0a 96 adiw r24, 0x0a ; 10
5f8: 89 83 std Y+1, r24 ; 0x01
5fa: 9a 83 std Y+2, r25 ; 0x02
5fc: 80 91 0f 20 lds r24, 0x200F
600: 90 91 10 20 lds r25, 0x2010
604: 2a 81 ldd r18, Y+2 ; 0x02
606: 2f 93 push r18
608: 29 81 ldd r18, Y+1 ; 0x01
60a: 2f 93 push r18
60c: 2f e5 ldi r18, 0x5F ; 95
60e: 30 e2 ldi r19, 0x20 ; 32
610: 23 2f mov r18, r19
612: 2f 93 push r18
614: 2f e5 ldi r18, 0x5F ; 95
616: 30 e2 ldi r19, 0x20 ; 32
618: 2f 93 push r18
61a: 29 2f mov r18, r25
61c: 2f 93 push r18
61e: 8f 93 push r24
620: 0e 94 70 18 call 0x30e0 ; 0x30e0
624: 0f 90 pop r0
626: 0f 90 pop r0
628: 0f 90 pop r0
62a: 0f 90 pop r0
62c: 0f 90 pop r0
62e: 0f 90 pop r0
630: 0e 94 04 05 call 0xa08 ; 0xa08
634: 89 81 ldd r24, Y+1 ; 0x01
636: 9a 81 ldd r25, Y+2 ; 0x02
638: 0a 96 adiw r24, 0x0a ; 10
63a: 89 83 std Y+1, r24 ; 0x01
63c: 9a 83 std Y+2, r25 ; 0x02
63e: 80 91 0f 20 lds r24, 0x200F
642: 90 91 10 20 lds r25, 0x2010
646: 2a 81 ldd r18, Y+2 ; 0x02
648: 2f 93 push r18
64a: 29 81 ldd r18, Y+1 ; 0x01
64c: 2f 93 push r18
64e: 2f e5 ldi r18, 0x5F ; 95
650: 30 e2 ldi r19, 0x20 ; 32
652: 23 2f mov r18, r19
654: 2f 93 push r18
656: 2f e5 ldi r18, 0x5F ; 95
658: 30 e2 ldi r19, 0x20 ; 32
65a: 2f 93 push r18
65c: 29 2f mov r18, r25
65e: 2f 93 push r18
660: 8f 93 push r24
662: 0e 94 70 18 call 0x30e0 ; 0x30e0
666: 0f 90 pop r0
668: 0f 90 pop r0
66a: 0f 90 pop r0
66c: 0f 90 pop r0
66e: 0f 90 pop r0
670: 0f 90 pop r0
672: 0e 94 04 05 call 0xa08 ; 0xa08
676: 89 81 ldd r24, Y+1 ; 0x01
678: 9a 81 ldd r25, Y+2 ; 0x02
67a: 0a 96 adiw r24, 0x0a ; 10
67c: 89 83 std Y+1, r24 ; 0x01
67e: 9a 83 std Y+2, r25 ; 0x02
680: 80 91 0f 20 lds r24, 0x200F
684: 90 91 10 20 lds r25, 0x2010
688: 2a 81 ldd r18, Y+2 ; 0x02
68a: 2f 93 push r18
68c: 29 81 ldd r18, Y+1 ; 0x01
68e: 2f 93 push r18
690: 2f e5 ldi r18, 0x5F ; 95
692: 30 e2 ldi r19, 0x20 ; 32
694: 23 2f mov r18, r19
696: 2f 93 push r18
698: 2f e5 ldi r18, 0x5F ; 95
69a: 30 e2 ldi r19, 0x20 ; 32
69c: 2f 93 push r18
69e: 29 2f mov r18, r25
6a0: 2f 93 push r18
6a2: 8f 93 push r24
6a4: 0e 94 70 18 call 0x30e0 ; 0x30e0
6a8: 0f 90 pop r0
6aa: 0f 90 pop r0
6ac: 0f 90 pop r0
6ae: 0f 90 pop r0
6b0: 0f 90 pop r0
6b2: 0f 90 pop r0
6b4: 0e 94 04 05 call 0xa08 ; 0xa08
6b8: 89 81 ldd r24, Y+1 ; 0x01
6ba: 9a 81 ldd r25, Y+2 ; 0x02
6bc: 0a 96 adiw r24, 0x0a ; 10
6be: 89 83 std Y+1, r24 ; 0x01
6c0: 9a 83 std Y+2, r25 ; 0x02
6c2: 80 91 0f 20 lds r24, 0x200F
6c6: 90 91 10 20 lds r25, 0x2010
6ca: 2a 81 ldd r18, Y+2 ; 0x02
6cc: 2f 93 push r18
6ce: 29 81 ldd r18, Y+1 ; 0x01
6d0: 2f 93 push r18
6d2: 25 e6 ldi r18, 0x65 ; 101
6d4: 30 e2 ldi r19, 0x20 ; 32
6d6: 23 2f mov r18, r19
6d8: 2f 93 push r18
6da: 25 e6 ldi r18, 0x65 ; 101
6dc: 30 e2 ldi r19, 0x20 ; 32
6de: 2f 93 push r18
6e0: 29 2f mov r18, r25
6e2: 2f 93 push r18
6e4: 8f 93 push r24
6e6: 0e 94 70 18 call 0x30e0 ; 0x30e0
6ea: 0f 90 pop r0
6ec: 0f 90 pop r0
6ee: 0f 90 pop r0
6f0: 0f 90 pop r0
6f2: 0f 90 pop r0
6f4: 0f 90 pop r0
6f6: 0e 94 be 03 call 0x77c ; 0x77c
6fa: 89 81 ldd r24, Y+1 ; 0x01
6fc: 9a 81 ldd r25, Y+2 ; 0x02
6fe: 84 36 cpi r24, 0x64 ; 100
700: 91 05 cpc r25, r1
702: 11 f0 breq .+4 ; 0x708
704: 0e 94 b6 03 call 0x76c ; 0x76c
708: 0e 94 6d 04 call 0x8da ; 0x8da
70c: 8b 81 ldd r24, Y+3 ; 0x03
70e: 8f 3f cpi r24, 0xFF ; 255
710: 79 f0 breq .+30 ; 0x730
712: 0e 94 be 03 call 0x77c ; 0x77c
716: 89 81 ldd r24, Y+1 ; 0x01
718: 9a 81 ldd r25, Y+2 ; 0x02
71a: 84 36 cpi r24, 0x64 ; 100
71c: 91 05 cpc r25, r1
71e: 19 f0 breq .+6 ; 0x726
720: 0e 94 b6 03 call 0x76c ; 0x76c
724: 05 c0 rjmp .+10 ; 0x730
726: 6f ef ldi r22, 0xFF ; 255
728: 80 e0 ldi r24, 0x00 ; 0
72a: 90 e0 ldi r25, 0x00 ; 0
72c: 0e 94 09 2b call 0x5612 ; 0x5612
730: 80 e0 ldi r24, 0x00 ; 0
732: 90 e0 ldi r25, 0x00 ; 0
734: 0e 94 f9 2a call 0x55f2 ; 0x55f2
738: 8b 83 std Y+3, r24 ; 0x03
73a: 0e 94 6d 04 call 0x8da ; 0x8da
73e: 8b 81 ldd r24, Y+3 ; 0x03
740: 8f 3f cpi r24, 0xFF ; 255
742: 11 f0 breq .+4 ; 0x748
744: 0e 94 b6 03 call 0x76c ; 0x76c
748: 23 96 adiw r28, 0x03 ; 3
74a: cd bf out 0x3d, r28 ; 61
74c: de bf out 0x3e, r29 ; 62
74e: df 91 pop r29
750: cf 91 pop r28
752: 08 95 ret
754: cf 93 push r28
756: df 93 push r29
758: cd b7 in r28, 0x3d ; 61
75a: de b7 in r29, 0x3e ; 62
75c: 60 e0 ldi r22, 0x00 ; 0
75e: 80 e0 ldi r24, 0x00 ; 0
760: 90 e0 ldi r25, 0x00 ; 0
762: 0e 94 09 2b call 0x5612 ; 0x5612
766: df 91 pop r29
768: cf 91 pop r28
76a: 08 95 ret
76c: cf 93 push r28
76e: df 93 push r29
770: cd b7 in r28, 0x3d ; 61
772: de b7 in r29, 0x3e ; 62
774: 0e 94 aa 03 call 0x754 ; 0x754
778: 0e 94 c8 27 call 0x4f90 ; 0x4f90
77c: cf 93 push r28
77e: df 93 push r29
780: cd b7 in r28, 0x3d ; 61
782: de b7 in r29, 0x3e ; 62
784: 2a 97 sbiw r28, 0x0a ; 10
786: cd bf out 0x3d, r28 ; 61
788: de bf out 0x3e, r29 ; 62
78a: 81 e0 ldi r24, 0x01 ; 1
78c: 90 e0 ldi r25, 0x00 ; 0
78e: 0e 94 f0 12 call 0x25e0 ; 0x25e0
792: 83 70 andi r24, 0x03 ; 3
794: 99 27 eor r25, r25
796: 89 83 std Y+1, r24 ; 0x01
798: 9a 83 std Y+2, r25 ; 0x02
79a: 89 81 ldd r24, Y+1 ; 0x01
79c: 9a 81 ldd r25, Y+2 ; 0x02
79e: 81 30 cpi r24, 0x01 ; 1
7a0: 91 05 cpc r25, r1
7a2: 09 f4 brne .+2 ; 0x7a6
7a4: 93 c0 rjmp .+294 ; 0x8cc
7a6: 81 30 cpi r24, 0x01 ; 1
7a8: 91 05 cpc r25, r1
7aa: 38 f0 brcs .+14 ; 0x7ba
7ac: 82 30 cpi r24, 0x02 ; 2
7ae: 91 05 cpc r25, r1
7b0: c9 f0 breq .+50 ; 0x7e4
7b2: 03 97 sbiw r24, 0x03 ; 3
7b4: 09 f4 brne .+2 ; 0x7b8
7b6: 6d c0 rjmp .+218 ; 0x892
7b8: 83 c0 rjmp .+262 ; 0x8c0
7ba: 81 e0 ldi r24, 0x01 ; 1
7bc: 90 e0 ldi r25, 0x00 ; 0
7be: 0e 94 f0 12 call 0x25e0 ; 0x25e0
7c2: 81 70 andi r24, 0x01 ; 1
7c4: 99 27 eor r25, r25
7c6: 89 2b or r24, r25
7c8: 31 f0 breq .+12 ; 0x7d6
7ca: 80 91 00 20 lds r24, 0x2000
7ce: 8d 5f subi r24, 0xFD ; 253
7d0: 80 93 00 20 sts 0x2000, r24
7d4: 7c c0 rjmp .+248 ; 0x8ce
7d6: 90 91 00 20 lds r25, 0x2000
7da: 82 e0 ldi r24, 0x02 ; 2
7dc: 89 27 eor r24, r25
7de: 80 93 00 20 sts 0x2000, r24
7e2: 75 c0 rjmp .+234 ; 0x8ce
7e4: 80 91 01 20 lds r24, 0x2001
7e8: 90 91 02 20 lds r25, 0x2002
7ec: a0 91 03 20 lds r26, 0x2003
7f0: b0 91 04 20 lds r27, 0x2004
7f4: 81 70 andi r24, 0x01 ; 1
7f6: 99 27 eor r25, r25
7f8: aa 27 eor r26, r26
7fa: bb 27 eor r27, r27
7fc: 89 2b or r24, r25
7fe: 8a 2b or r24, r26
800: 8b 2b or r24, r27
802: 49 f1 breq .+82 ; 0x856
804: 80 91 01 20 lds r24, 0x2001
808: 90 91 02 20 lds r25, 0x2002
80c: a0 91 03 20 lds r26, 0x2003
810: b0 91 04 20 lds r27, 0x2004
814: 27 e0 ldi r18, 0x07 ; 7
816: 30 e0 ldi r19, 0x00 ; 0
818: 40 e0 ldi r20, 0x00 ; 0
81a: 50 e0 ldi r21, 0x00 ; 0
81c: bc 01 movw r22, r24
81e: cd 01 movw r24, r26
820: 0e 94 eb 24 call 0x49d6 ; 0x49d6
824: dc 01 movw r26, r24
826: cb 01 movw r24, r22
828: 9c 01 movw r18, r24
82a: ad 01 movw r20, r26
82c: 80 91 01 20 lds r24, 0x2001
830: 90 91 02 20 lds r25, 0x2002
834: a0 91 03 20 lds r26, 0x2003
838: b0 91 04 20 lds r27, 0x2004
83c: 82 0f add r24, r18
83e: 93 1f adc r25, r19
840: a4 1f adc r26, r20
842: b5 1f adc r27, r21
844: 80 93 01 20 sts 0x2001, r24
848: 90 93 02 20 sts 0x2002, r25
84c: a0 93 03 20 sts 0x2003, r26
850: b0 93 04 20 sts 0x2004, r27
854: 35 c0 rjmp .+106 ; 0x8c0
856: 80 91 01 20 lds r24, 0x2001
85a: 90 91 02 20 lds r25, 0x2002
85e: a0 91 03 20 lds r26, 0x2003
862: b0 91 04 20 lds r27, 0x2004
866: 23 e0 ldi r18, 0x03 ; 3
868: 30 e0 ldi r19, 0x00 ; 0
86a: 40 e0 ldi r20, 0x00 ; 0
86c: 50 e0 ldi r21, 0x00 ; 0
86e: bc 01 movw r22, r24
870: cd 01 movw r24, r26
872: 0e 94 eb 24 call 0x49d6 ; 0x49d6
876: da 01 movw r26, r20
878: c9 01 movw r24, r18
87a: 01 96 adiw r24, 0x01 ; 1
87c: a1 1d adc r26, r1
87e: b1 1d adc r27, r1
880: 80 93 01 20 sts 0x2001, r24
884: 90 93 02 20 sts 0x2002, r25
888: a0 93 03 20 sts 0x2003, r26
88c: b0 93 04 20 sts 0x2004, r27
890: 17 c0 rjmp .+46 ; 0x8c0
892: 80 91 d6 21 lds r24, 0x21D6
896: 8a 30 cpi r24, 0x0A ; 10
898: 90 f4 brcc .+36 ; 0x8be
89a: 81 e0 ldi r24, 0x01 ; 1
89c: 90 e0 ldi r25, 0x00 ; 0
89e: 0e 94 f0 12 call 0x25e0 ; 0x25e0
8a2: 83 70 andi r24, 0x03 ; 3
8a4: 99 27 eor r25, r25
8a6: 89 2b or r24, r25
8a8: 51 f4 brne .+20 ; 0x8be
8aa: 80 91 d6 21 lds r24, 0x21D6
8ae: 8f 5f subi r24, 0xFF ; 255
8b0: 80 93 d6 21 sts 0x21D6, r24
8b4: 0e 94 be 03 call 0x77c ; 0x77c
8b8: 10 92 d6 21 sts 0x21D6, r1
8bc: 00 c0 rjmp .+0 ; 0x8be
8be: 00 00 nop
8c0: 80 91 00 20 lds r24, 0x2000
8c4: 8f 5f subi r24, 0xFF ; 255
8c6: 80 93 00 20 sts 0x2000, r24
8ca: 01 c0 rjmp .+2 ; 0x8ce
8cc: 00 00 nop
8ce: 2a 96 adiw r28, 0x0a ; 10
8d0: cd bf out 0x3d, r28 ; 61
8d2: de bf out 0x3e, r29 ; 62
8d4: df 91 pop r29
8d6: cf 91 pop r28
8d8: 08 95 ret
8da: cf 93 push r28
8dc: df 93 push r29
8de: cd b7 in r28, 0x3d ; 61
8e0: de b7 in r29, 0x3e ; 62
8e2: 2a 97 sbiw r28, 0x0a ; 10
8e4: cd bf out 0x3d, r28 ; 61
8e6: de bf out 0x3e, r29 ; 62
8e8: 0e 94 c2 15 call 0x2b84 ; 0x2b84
8ec: 0e 94 59 13 call 0x26b2 ; 0x26b2
8f0: 89 83 std Y+1, r24 ; 0x01
8f2: 9a 83 std Y+2, r25 ; 0x02
8f4: 1b 82 std Y+3, r1 ; 0x03
8f6: 1c 82 std Y+4, r1 ; 0x04
8f8: 09 c0 rjmp .+18 ; 0x90c
8fa: 0e 94 59 13 call 0x26b2 ; 0x26b2
8fe: 8d 83 std Y+5, r24 ; 0x05
900: 9e 83 std Y+6, r25 ; 0x06
902: 8b 81 ldd r24, Y+3 ; 0x03
904: 9c 81 ldd r25, Y+4 ; 0x04
906: 01 96 adiw r24, 0x01 ; 1
908: 8b 83 std Y+3, r24 ; 0x03
90a: 9c 83 std Y+4, r25 ; 0x04
90c: 8b 81 ldd r24, Y+3 ; 0x03
90e: 9c 81 ldd r25, Y+4 ; 0x04
910: 8f 3f cpi r24, 0xFF ; 255
912: 91 05 cpc r25, r1
914: 91 f3 breq .-28 ; 0x8fa
916: 88 f3 brcs .-30 ; 0x8fa
918: 0e 94 59 13 call 0x26b2 ; 0x26b2
91c: 8d 83 std Y+5, r24 ; 0x05
91e: 9e 83 std Y+6, r25 ; 0x06
920: 29 81 ldd r18, Y+1 ; 0x01
922: 3a 81 ldd r19, Y+2 ; 0x02
924: 8d 81 ldd r24, Y+5 ; 0x05
926: 9e 81 ldd r25, Y+6 ; 0x06
928: 28 17 cp r18, r24
92a: 39 07 cpc r19, r25
92c: 51 f5 brne .+84 ; 0x982
92e: 0e 94 59 13 call 0x26b2 ; 0x26b2
932: 89 83 std Y+1, r24 ; 0x01
934: 9a 83 std Y+2, r25 ; 0x02
936: 1b 82 std Y+3, r1 ; 0x03
938: 1c 82 std Y+4, r1 ; 0x04
93a: 09 c0 rjmp .+18 ; 0x94e
93c: 0e 94 59 13 call 0x26b2 ; 0x26b2
940: 8d 83 std Y+5, r24 ; 0x05
942: 9e 83 std Y+6, r25 ; 0x06
944: 8b 81 ldd r24, Y+3 ; 0x03
946: 9c 81 ldd r25, Y+4 ; 0x04
948: 01 96 adiw r24, 0x01 ; 1
94a: 8b 83 std Y+3, r24 ; 0x03
94c: 9c 83 std Y+4, r25 ; 0x04
94e: 8b 81 ldd r24, Y+3 ; 0x03
950: 9c 81 ldd r25, Y+4 ; 0x04
952: 81 15 cp r24, r1
954: 94 40 sbci r25, 0x04 ; 4
956: 90 f3 brcs .-28 ; 0x93c
958: 0e 94 59 13 call 0x26b2 ; 0x26b2
95c: 8d 83 std Y+5, r24 ; 0x05
95e: 9e 83 std Y+6, r25 ; 0x06
960: 29 81 ldd r18, Y+1 ; 0x01
962: 3a 81 ldd r19, Y+2 ; 0x02
964: 8d 81 ldd r24, Y+5 ; 0x05
966: 9e 81 ldd r25, Y+6 ; 0x06
968: 28 17 cp r18, r24
96a: 39 07 cpc r19, r25
96c: 51 f4 brne .+20 ; 0x982
96e: 80 91 0f 20 lds r24, 0x200F
972: 90 91 10 20 lds r25, 0x2010
976: 6c e6 ldi r22, 0x6C ; 108
978: 70 e2 ldi r23, 0x20 ; 32
97a: 0e 94 4b 18 call 0x3096 ; 0x3096
97e: 0e 94 c8 27 call 0x4f90 ; 0x4f90
982: 89 81 ldd r24, Y+1 ; 0x01
984: 9a 81 ldd r25, Y+2 ; 0x02
986: 81 30 cpi r24, 0x01 ; 1
988: 92 40 sbci r25, 0x02 ; 2
98a: 48 f0 brcs .+18 ; 0x99e
98c: 89 81 ldd r24, Y+1 ; 0x01
98e: 9a 81 ldd r25, Y+2 ; 0x02
990: 88 0f add r24, r24
992: 89 2f mov r24, r25
994: 88 1f adc r24, r24
996: 99 0b sbc r25, r25
998: 91 95 neg r25
99a: 89 83 std Y+1, r24 ; 0x01
99c: 9a 83 std Y+2, r25 ; 0x02
99e: 1f 82 std Y+7, r1 ; 0x07
9a0: 18 86 std Y+8, r1 ; 0x08
9a2: 89 81 ldd r24, Y+1 ; 0x01
9a4: 9a 81 ldd r25, Y+2 ; 0x02
9a6: 89 87 std Y+9, r24 ; 0x09
9a8: 9a 87 std Y+10, r25 ; 0x0a
9aa: 0e c0 rjmp .+28 ; 0x9c8
9ac: 0e 94 be 03 call 0x77c ; 0x77c
9b0: 8f 81 ldd r24, Y+7 ; 0x07
9b2: 98 85 ldd r25, Y+8 ; 0x08
9b4: 01 96 adiw r24, 0x01 ; 1
9b6: 8f 83 std Y+7, r24 ; 0x07
9b8: 98 87 std Y+8, r25 ; 0x08
9ba: 0e 94 be 03 call 0x77c ; 0x77c
9be: 89 85 ldd r24, Y+9 ; 0x09
9c0: 9a 85 ldd r25, Y+10 ; 0x0a
9c2: 01 97 sbiw r24, 0x01 ; 1
9c4: 89 87 std Y+9, r24 ; 0x09
9c6: 9a 87 std Y+10, r25 ; 0x0a
9c8: 2f 81 ldd r18, Y+7 ; 0x07
9ca: 38 85 ldd r19, Y+8 ; 0x08
9cc: 89 81 ldd r24, Y+1 ; 0x01
9ce: 9a 81 ldd r25, Y+2 ; 0x02
9d0: 28 17 cp r18, r24
9d2: 39 07 cpc r19, r25
9d4: 20 f4 brcc .+8 ; 0x9de
9d6: 89 85 ldd r24, Y+9 ; 0x09
9d8: 9a 85 ldd r25, Y+10 ; 0x0a
9da: 89 2b or r24, r25
9dc: 39 f7 brne .-50 ; 0x9ac
9de: 2f 81 ldd r18, Y+7 ; 0x07
9e0: 38 85 ldd r19, Y+8 ; 0x08
9e2: 89 81 ldd r24, Y+1 ; 0x01
9e4: 9a 81 ldd r25, Y+2 ; 0x02
9e6: 28 17 cp r18, r24
9e8: 39 07 cpc r19, r25
9ea: 21 f4 brne .+8 ; 0x9f4
9ec: 89 85 ldd r24, Y+9 ; 0x09
9ee: 9a 85 ldd r25, Y+10 ; 0x0a
9f0: 89 2b or r24, r25
9f2: 11 f0 breq .+4 ; 0x9f8
9f4: 0e 94 b6 03 call 0x76c ; 0x76c
9f8: 0e 94 be 03 call 0x77c ; 0x77c
9fc: 2a 96 adiw r28, 0x0a ; 10
9fe: cd bf out 0x3d, r28 ; 61
a00: de bf out 0x3e, r29 ; 62
a02: df 91 pop r29
a04: cf 91 pop r28
a06: 08 95 ret
a08: cf 93 push r28
a0a: df 93 push r29
a0c: cd b7 in r28, 0x3d ; 61
a0e: de b7 in r29, 0x3e ; 62
a10: 2a 97 sbiw r28, 0x0a ; 10
a12: cd bf out 0x3d, r28 ; 61
a14: de bf out 0x3e, r29 ; 62
a16: 86 e9 ldi r24, 0x96 ; 150
a18: 89 83 std Y+1, r24 ; 0x01
a1a: 80 e8 ldi r24, 0x80 ; 128
a1c: 8a 83 std Y+2, r24 ; 0x02
a1e: 82 e0 ldi r24, 0x02 ; 2
a20: 8b 83 std Y+3, r24 ; 0x03
a22: 0e 94 6d 04 call 0x8da ; 0x8da
a26: 0e 94 59 13 call 0x26b2 ; 0x26b2
a2a: 98 2f mov r25, r24
a2c: 8a 81 ldd r24, Y+2 ; 0x02
a2e: 89 2b or r24, r25
a30: 8c 83 std Y+4, r24 ; 0x04
a32: 0e 94 6d 04 call 0x8da ; 0x8da
a36: 0e 94 6d 04 call 0x8da ; 0x8da
a3a: 1a 86 std Y+10, r1 ; 0x0a
a3c: 84 eb ldi r24, 0xB4 ; 180
a3e: 89 87 std Y+9, r24 ; 0x09
a40: 0e 94 be 03 call 0x77c ; 0x77c
a44: 1e 82 std Y+6, r1 ; 0x06
a46: 57 c0 rjmp .+174 ; 0xaf6
a48: 0e 94 6d 04 call 0x8da ; 0x8da
a4c: 0e 94 59 13 call 0x26b2 ; 0x26b2
a50: 80 68 ori r24, 0x80 ; 128
a52: 8d 83 std Y+5, r24 ; 0x05
a54: 0e 94 be 03 call 0x77c ; 0x77c
a58: 1f 82 std Y+7, r1 ; 0x07
a5a: 17 c0 rjmp .+46 ; 0xa8a
a5c: 0e 94 be 03 call 0x77c ; 0x77c
a60: 18 86 std Y+8, r1 ; 0x08
a62: 0c c0 rjmp .+24 ; 0xa7c
a64: 0e 94 be 03 call 0x77c ; 0x77c
a68: 8e 81 ldd r24, Y+6 ; 0x06
a6a: 83 30 cpi r24, 0x03 ; 3
a6c: 10 f0 brcs .+4 ; 0xa72
a6e: 0e 94 b6 03 call 0x76c ; 0x76c
a72: 0e 94 be 03 call 0x77c ; 0x77c
a76: 88 85 ldd r24, Y+8 ; 0x08
a78: 8f 5f subi r24, 0xFF ; 255
a7a: 88 87 std Y+8, r24 ; 0x08
a7c: 98 85 ldd r25, Y+8 ; 0x08
a7e: 8d 81 ldd r24, Y+5 ; 0x05
a80: 98 17 cp r25, r24
a82: 80 f3 brcs .-32 ; 0xa64
a84: 8f 81 ldd r24, Y+7 ; 0x07
a86: 8f 5f subi r24, 0xFF ; 255
a88: 8f 83 std Y+7, r24 ; 0x07
a8a: 9f 81 ldd r25, Y+7 ; 0x07
a8c: 8c 81 ldd r24, Y+4 ; 0x04
a8e: 98 17 cp r25, r24
a90: 28 f3 brcs .-54 ; 0xa5c
a92: 0e 94 6d 04 call 0x8da ; 0x8da
a96: 8e 81 ldd r24, Y+6 ; 0x06
a98: 81 30 cpi r24, 0x01 ; 1
a9a: 99 f4 brne .+38 ; 0xac2
a9c: 0e 94 be 03 call 0x77c ; 0x77c
aa0: 8f 81 ldd r24, Y+7 ; 0x07
aa2: 88 23 and r24, r24
aa4: 64 f4 brge .+24 ; 0xabe
aa6: 0e 94 6d 04 call 0x8da ; 0x8da
aaa: 98 85 ldd r25, Y+8 ; 0x08
aac: 8a 81 ldd r24, Y+2 ; 0x02
aae: 98 17 cp r25, r24
ab0: 18 f0 brcs .+6 ; 0xab8
ab2: 8b e4 ldi r24, 0x4B ; 75
ab4: 89 87 std Y+9, r24 ; 0x09
ab6: 05 c0 rjmp .+10 ; 0xac2
ab8: 0e 94 b6 03 call 0x76c ; 0x76c
abc: 02 c0 rjmp .+4 ; 0xac2
abe: 0e 94 b6 03 call 0x76c ; 0x76c
ac2: 0e 94 6d 04 call 0x8da ; 0x8da
ac6: 98 85 ldd r25, Y+8 ; 0x08
ac8: 8d 81 ldd r24, Y+5 ; 0x05
aca: 98 17 cp r25, r24
acc: 69 f4 brne .+26 ; 0xae8
ace: 0e 94 6d 04 call 0x8da ; 0x8da
ad2: 9f 81 ldd r25, Y+7 ; 0x07
ad4: 8c 81 ldd r24, Y+4 ; 0x04
ad6: 98 17 cp r25, r24
ad8: 21 f4 brne .+8 ; 0xae2
ada: 8a 85 ldd r24, Y+10 ; 0x0a
adc: 8f 5f subi r24, 0xFF ; 255
ade: 8a 87 std Y+10, r24 ; 0x0a
ae0: 05 c0 rjmp .+10 ; 0xaec
ae2: 0e 94 b6 03 call 0x76c ; 0x76c
ae6: 02 c0 rjmp .+4 ; 0xaec
ae8: 0e 94 b6 03 call 0x76c ; 0x76c
aec: 0e 94 6d 04 call 0x8da ; 0x8da
af0: 8e 81 ldd r24, Y+6 ; 0x06
af2: 8f 5f subi r24, 0xFF ; 255
af4: 8e 83 std Y+6, r24 ; 0x06
af6: 9e 81 ldd r25, Y+6 ; 0x06
af8: 8b 81 ldd r24, Y+3 ; 0x03
afa: 98 17 cp r25, r24
afc: 08 f4 brcc .+2 ; 0xb00
afe: a4 cf rjmp .-184 ; 0xa48
b00: 0e 94 be 03 call 0x77c ; 0x77c
b04: 89 85 ldd r24, Y+9 ; 0x09
b06: 8b 34 cpi r24, 0x4B ; 75
b08: 31 f5 brne .+76 ; 0xb56
b0a: 0e 94 6d 04 call 0x8da ; 0x8da
b0e: 8e 81 ldd r24, Y+6 ; 0x06
b10: 82 30 cpi r24, 0x02 ; 2
b12: f1 f4 brne .+60 ; 0xb50
b14: 0e 94 be 03 call 0x77c ; 0x77c
b18: 9f 81 ldd r25, Y+7 ; 0x07
b1a: 8a 81 ldd r24, Y+2 ; 0x02
b1c: 98 17 cp r25, r24
b1e: a8 f0 brcs .+42 ; 0xb4a
b20: 0e 94 6d 04 call 0x8da ; 0x8da
b24: 0e 94 be 03 call 0x77c ; 0x77c
b28: 88 85 ldd r24, Y+8 ; 0x08
b2a: 8e 37 cpi r24, 0x7E ; 126
b2c: 58 f0 brcs .+22 ; 0xb44
b2e: 0e 94 6d 04 call 0x8da ; 0x8da
b32: 8a 85 ldd r24, Y+10 ; 0x0a
b34: 82 30 cpi r24, 0x02 ; 2
b36: 18 f0 brcs .+6 ; 0xb3e
b38: 89 e6 ldi r24, 0x69 ; 105
b3a: 89 83 std Y+1, r24 ; 0x01
b3c: 0e c0 rjmp .+28 ; 0xb5a
b3e: 0e 94 b6 03 call 0x76c ; 0x76c
b42: 0b c0 rjmp .+22 ; 0xb5a
b44: 0e 94 b6 03 call 0x76c ; 0x76c
b48: 08 c0 rjmp .+16 ; 0xb5a
b4a: 0e 94 b6 03 call 0x76c ; 0x76c
b4e: 05 c0 rjmp .+10 ; 0xb5a
b50: 0e 94 b6 03 call 0x76c ; 0x76c
b54: 02 c0 rjmp .+4 ; 0xb5a
b56: 0e 94 b6 03 call 0x76c ; 0x76c
b5a: 89 81 ldd r24, Y+1 ; 0x01
b5c: 2a 96 adiw r28, 0x0a ; 10
b5e: cd bf out 0x3d, r28 ; 61
b60: de bf out 0x3e, r29 ; 62
b62: df 91 pop r29
b64: cf 91 pop r28
b66: 08 95 ret
b68: cf 93 push r28
b6a: df 93 push r29
b6c: cd b7 in r28, 0x3d ; 61
b6e: de b7 in r29, 0x3e ; 62
b70: 80 e5 ldi r24, 0x50 ; 80
b72: 90 e0 ldi r25, 0x00 ; 0
b74: 20 e5 ldi r18, 0x50 ; 80
b76: 30 e0 ldi r19, 0x00 ; 0
b78: f9 01 movw r30, r18
b7a: 20 81 ld r18, Z
b7c: 22 60 ori r18, 0x02 ; 2
b7e: fc 01 movw r30, r24
b80: 20 83 st Z, r18
b82: 00 00 nop
b84: 81 e5 ldi r24, 0x51 ; 81
b86: 90 e0 ldi r25, 0x00 ; 0
b88: fc 01 movw r30, r24
b8a: 80 81 ld r24, Z
b8c: 88 2f mov r24, r24
b8e: 90 e0 ldi r25, 0x00 ; 0
b90: 82 70 andi r24, 0x02 ; 2
b92: 99 27 eor r25, r25
b94: 89 2b or r24, r25
b96: b1 f3 breq .-20 ; 0xb84
b98: 88 ed ldi r24, 0xD8 ; 216
b9a: 84 bf out 0x34, r24 ; 52
b9c: 81 e0 ldi r24, 0x01 ; 1
b9e: 80 93 40 00 sts 0x0040, r24
ba2: 80 e5 ldi r24, 0x50 ; 80
ba4: 90 e0 ldi r25, 0x00 ; 0
ba6: 20 e5 ldi r18, 0x50 ; 80
ba8: 30 e0 ldi r19, 0x00 ; 0
baa: f9 01 movw r30, r18
bac: 20 81 ld r18, Z
bae: 2e 7f andi r18, 0xFE ; 254
bb0: fc 01 movw r30, r24
bb2: 20 83 st Z, r18
bb4: df 91 pop r29
bb6: cf 91 pop r28
bb8: 08 95 ret
bba: 0f 93 push r16
bbc: 1f 93 push r17
bbe: cf 93 push r28
bc0: df 93 push r29
bc2: cd b7 in r28, 0x3d ; 61
bc4: de b7 in r29, 0x3e ; 62
bc6: a1 97 sbiw r28, 0x21 ; 33
bc8: cd bf out 0x3d, r28 ; 61
bca: de bf out 0x3e, r29 ; 62
bcc: 84 e6 ldi r24, 0x64 ; 100
bce: 90 e0 ldi r25, 0x00 ; 0
bd0: 80 93 8f 22 sts 0x228F, r24
bd4: 90 93 90 22 sts 0x2290, r25
bd8: 80 91 8f 22 lds r24, 0x228F
bdc: 90 91 90 22 lds r25, 0x2290
be0: 9c 01 movw r18, r24
be2: 42 e2 ldi r20, 0x22 ; 34
be4: 42 9f mul r20, r18
be6: c0 01 movw r24, r0
be8: 43 9f mul r20, r19
bea: 90 0d add r25, r0
bec: 11 24 eor r1, r1
bee: 0e 94 70 25 call 0x4ae0 ; 0x4ae0
bf2: 80 93 93 22 sts 0x2293, r24
bf6: 90 93 94 22 sts 0x2294, r25
bfa: 0e 94 6d 04 call 0x8da ; 0x8da
bfe: 19 82 std Y+1, r1 ; 0x01
c00: 16 c0 rjmp .+44 ; 0xc2e
c02: 20 91 93 22 lds r18, 0x2293
c06: 30 91 94 22 lds r19, 0x2294
c0a: 89 81 ldd r24, Y+1 ; 0x01
c0c: 48 2f mov r20, r24
c0e: 88 0f add r24, r24
c10: 55 0b sbc r21, r21
c12: 62 e2 ldi r22, 0x22 ; 34
c14: 64 9f mul r22, r20
c16: c0 01 movw r24, r0
c18: 65 9f mul r22, r21
c1a: 90 0d add r25, r0
c1c: 11 24 eor r1, r1
c1e: 82 0f add r24, r18
c20: 93 1f adc r25, r19
c22: fc 01 movw r30, r24
c24: 10 a2 std Z+32, r1 ; 0x20
c26: 11 a2 std Z+33, r1 ; 0x21
c28: 89 81 ldd r24, Y+1 ; 0x01
c2a: 8f 5f subi r24, 0xFF ; 255
c2c: 89 83 std Y+1, r24 ; 0x01
c2e: 89 81 ldd r24, Y+1 ; 0x01
c30: 28 2f mov r18, r24
c32: 88 0f add r24, r24
c34: 33 0b sbc r19, r19
c36: 80 91 8f 22 lds r24, 0x228F
c3a: 90 91 90 22 lds r25, 0x2290
c3e: 28 17 cp r18, r24
c40: 39 07 cpc r19, r25
c42: fc f2 brlt .-66 ; 0xc02
c44: 0e 94 6d 04 call 0x8da ; 0x8da
c48: 83 e6 ldi r24, 0x63 ; 99
c4a: 90 e0 ldi r25, 0x00 ; 0
c4c: 80 93 91 22 sts 0x2291, r24
c50: 90 93 92 22 sts 0x2292, r25
c54: 80 e2 ldi r24, 0x20 ; 32
c56: e5 e9 ldi r30, 0x95 ; 149
c58: f0 e2 ldi r31, 0x20 ; 32
c5a: de 01 movw r26, r28
c5c: 12 96 adiw r26, 0x02 ; 2
c5e: 01 90 ld r0, Z+
c60: 0d 92 st X+, r0
c62: 8a 95 dec r24
c64: e1 f7 brne .-8 ; 0xc5e
c66: 20 91 93 22 lds r18, 0x2293
c6a: 30 91 94 22 lds r19, 0x2294
c6e: 80 91 91 22 lds r24, 0x2291
c72: 90 91 92 22 lds r25, 0x2292
c76: ac 01 movw r20, r24
c78: 62 e2 ldi r22, 0x22 ; 34
c7a: 64 9f mul r22, r20
c7c: c0 01 movw r24, r0
c7e: 65 9f mul r22, r21
c80: 90 0d add r25, r0
c82: 11 24 eor r1, r1
c84: 82 0f add r24, r18
c86: 93 1f adc r25, r19
c88: 9c 01 movw r18, r24
c8a: 80 e2 ldi r24, 0x20 ; 32
c8c: fe 01 movw r30, r28
c8e: 32 96 adiw r30, 0x02 ; 2
c90: d9 01 movw r26, r18
c92: 01 90 ld r0, Z+
c94: 0d 92 st X+, r0
c96: 8a 95 dec r24
c98: e1 f7 brne .-8 ; 0xc92
c9a: 20 91 93 22 lds r18, 0x2293
c9e: 30 91 94 22 lds r19, 0x2294
ca2: 80 91 91 22 lds r24, 0x2291
ca6: 90 91 92 22 lds r25, 0x2292
caa: ac 01 movw r20, r24
cac: 62 e2 ldi r22, 0x22 ; 34
cae: 64 9f mul r22, r20
cb0: c0 01 movw r24, r0
cb2: 65 9f mul r22, r21
cb4: 90 0d add r25, r0
cb6: 11 24 eor r1, r1
cb8: 89 01 movw r16, r18
cba: 08 0f add r16, r24
cbc: 19 1f adc r17, r25
cbe: 89 e0 ldi r24, 0x09 ; 9
cc0: 90 e0 ldi r25, 0x00 ; 0
cc2: 0e 94 70 25 call 0x4ae0 ; 0x4ae0
cc6: f8 01 movw r30, r16
cc8: 80 a3 std Z+32, r24 ; 0x20
cca: 91 a3 std Z+33, r25 ; 0x21
ccc: 20 91 93 22 lds r18, 0x2293
cd0: 30 91 94 22 lds r19, 0x2294
cd4: 80 91 91 22 lds r24, 0x2291
cd8: 90 91 92 22 lds r25, 0x2292
cdc: ac 01 movw r20, r24
cde: 62 e2 ldi r22, 0x22 ; 34
ce0: 64 9f mul r22, r20
ce2: c0 01 movw r24, r0
ce4: 65 9f mul r22, r21
ce6: 90 0d add r25, r0
ce8: 11 24 eor r1, r1
cea: 82 0f add r24, r18
cec: 93 1f adc r25, r19
cee: fc 01 movw r30, r24
cf0: 80 a1 ldd r24, Z+32 ; 0x20
cf2: 91 a1 ldd r25, Z+33 ; 0x21
cf4: 29 e0 ldi r18, 0x09 ; 9
cf6: ec e8 ldi r30, 0x8C ; 140
cf8: f0 e2 ldi r31, 0x20 ; 32
cfa: dc 01 movw r26, r24
cfc: 01 90 ld r0, Z+
cfe: 0d 92 st X+, r0
d00: 2a 95 dec r18
d02: e1 f7 brne .-8 ; 0xcfc
d04: a1 96 adiw r28, 0x21 ; 33
d06: cd bf out 0x3d, r28 ; 61
d08: de bf out 0x3e, r29 ; 62
d0a: df 91 pop r29
d0c: cf 91 pop r28
d0e: 1f 91 pop r17
d10: 0f 91 pop r16
d12: 08 95 ret
d14: ef 92 push r14
d16: ff 92 push r15
d18: 0f 93 push r16
d1a: 1f 93 push r17
d1c: cf 93 push r28
d1e: df 93 push r29
d20: cd b7 in r28, 0x3d ; 61
d22: de b7 in r29, 0x3e ; 62
d24: cc 54 subi r28, 0x4C ; 76
d26: d1 09 sbc r29, r1
d28: cd bf out 0x3d, r28 ; 61
d2a: de bf out 0x3e, r29 ; 62
d2c: 9e 01 movw r18, r28
d2e: 25 5b subi r18, 0xB5 ; 181
d30: 3f 4f sbci r19, 0xFF ; 255
d32: d9 01 movw r26, r18
d34: 8d 93 st X+, r24
d36: 9c 93 st X, r25
d38: 0d b7 in r16, 0x3d ; 61
d3a: 1e b7 in r17, 0x3e ; 62
d3c: ce 01 movw r24, r28
d3e: 85 5b subi r24, 0xB5 ; 181
d40: 9f 4f sbci r25, 0xFF ; 255
d42: fc 01 movw r30, r24
d44: 80 81 ld r24, Z
d46: 91 81 ldd r25, Z+1 ; 0x01
d48: 6a e3 ldi r22, 0x3A ; 58
d4a: 70 e0 ldi r23, 0x00 ; 0
d4c: 0e 94 0e 28 call 0x501c ; 0x501c
d50: 8a 83 std Y+2, r24 ; 0x02
d52: 9b 83 std Y+3, r25 ; 0x03
d54: ce 01 movw r24, r28
d56: 86 5b subi r24, 0xB6 ; 182
d58: 9f 4f sbci r25, 0xFF ; 255
d5a: dc 01 movw r26, r24
d5c: 1c 92 st X, r1
d5e: 8a 81 ldd r24, Y+2 ; 0x02
d60: 9b 81 ldd r25, Y+3 ; 0x03
d62: 89 2b or r24, r25
d64: 09 f4 brne .+2 ; 0xd68
d66: c2 c2 rjmp .+1412 ; 0x12ec
d68: ce 01 movw r24, r28
d6a: 86 5b subi r24, 0xB6 ; 182
d6c: 9f 4f sbci r25, 0xFF ; 255
d6e: fc 01 movw r30, r24
d70: 90 81 ld r25, Z
d72: 81 e0 ldi r24, 0x01 ; 1
d74: 29 2f mov r18, r25
d76: 28 27 eor r18, r24
d78: ce 01 movw r24, r28
d7a: 86 5b subi r24, 0xB6 ; 182
d7c: 9f 4f sbci r25, 0xFF ; 255
d7e: dc 01 movw r26, r24
d80: 2c 93 st X, r18
d82: 8a 81 ldd r24, Y+2 ; 0x02
d84: 9b 81 ldd r25, Y+3 ; 0x03
d86: 01 96 adiw r24, 0x01 ; 1
d88: 6a e3 ldi r22, 0x3A ; 58
d8a: 70 e0 ldi r23, 0x00 ; 0
d8c: 0e 94 0e 28 call 0x501c ; 0x501c
d90: 8c 83 std Y+4, r24 ; 0x04
d92: 9d 83 std Y+5, r25 ; 0x05
d94: 8c 81 ldd r24, Y+4 ; 0x04
d96: 9d 81 ldd r25, Y+5 ; 0x05
d98: 89 2b or r24, r25
d9a: 09 f4 brne .+2 ; 0xd9e
d9c: a7 c2 rjmp .+1358 ; 0x12ec
d9e: 8d b7 in r24, 0x3d ; 61
da0: 9e b7 in r25, 0x3e ; 62
da2: 7c 01 movw r14, r24
da4: ce 01 movw r24, r28
da6: 86 5b subi r24, 0xB6 ; 182
da8: 9f 4f sbci r25, 0xFF ; 255
daa: fc 01 movw r30, r24
dac: 90 81 ld r25, Z
dae: 82 e0 ldi r24, 0x02 ; 2
db0: 29 2f mov r18, r25
db2: 28 27 eor r18, r24
db4: ce 01 movw r24, r28
db6: 86 5b subi r24, 0xB6 ; 182
db8: 9f 4f sbci r25, 0xFF ; 255
dba: dc 01 movw r26, r24
dbc: 2c 93 st X, r18
dbe: ce 01 movw r24, r28
dc0: 85 5b subi r24, 0xB5 ; 181
dc2: 9f 4f sbci r25, 0xFF ; 255
dc4: fc 01 movw r30, r24
dc6: 80 81 ld r24, Z
dc8: 91 81 ldd r25, Z+1 ; 0x01
dca: 6d e2 ldi r22, 0x2D ; 45
dcc: 70 e0 ldi r23, 0x00 ; 0
dce: 0e 94 0e 28 call 0x501c ; 0x501c
dd2: 8e 83 std Y+6, r24 ; 0x06
dd4: 9f 83 std Y+7, r25 ; 0x07
dd6: 8e 81 ldd r24, Y+6 ; 0x06
dd8: 9f 81 ldd r25, Y+7 ; 0x07
dda: 89 2b or r24, r25
ddc: 49 f0 breq .+18 ; 0xdf0
dde: 2e 81 ldd r18, Y+6 ; 0x06
de0: 3f 81 ldd r19, Y+7 ; 0x07
de2: 8c 81 ldd r24, Y+4 ; 0x04
de4: 9d 81 ldd r25, Y+5 ; 0x05
de6: 28 17 cp r18, r24
de8: 39 07 cpc r19, r25
dea: 10 f4 brcc .+4 ; 0xdf0
dec: 8f ef ldi r24, 0xFF ; 255
dee: 7b c2 rjmp .+1270 ; 0x12e6
df0: ce 01 movw r24, r28
df2: 86 5b subi r24, 0xB6 ; 182
df4: 9f 4f sbci r25, 0xFF ; 255
df6: dc 01 movw r26, r24
df8: 9c 91 ld r25, X
dfa: 84 e0 ldi r24, 0x04 ; 4
dfc: 29 2f mov r18, r25
dfe: 28 27 eor r18, r24
e00: ce 01 movw r24, r28
e02: 86 5b subi r24, 0xB6 ; 182
e04: 9f 4f sbci r25, 0xFF ; 255
e06: fc 01 movw r30, r24
e08: 20 83 st Z, r18
e0a: 2a 81 ldd r18, Y+2 ; 0x02
e0c: 3b 81 ldd r19, Y+3 ; 0x03
e0e: ce 01 movw r24, r28
e10: 85 5b subi r24, 0xB5 ; 181
e12: 9f 4f sbci r25, 0xFF ; 255
e14: dc 01 movw r26, r24
e16: 8d 91 ld r24, X+
e18: 9c 91 ld r25, X
e1a: f9 01 movw r30, r18
e1c: e8 1b sub r30, r24
e1e: f9 0b sbc r31, r25
e20: cf 01 movw r24, r30
e22: 09 2e mov r0, r25
e24: 00 0c add r0, r0
e26: aa 0b sbc r26, r26
e28: bb 0b sbc r27, r27
e2a: 88 87 std Y+8, r24 ; 0x08
e2c: 99 87 std Y+9, r25 ; 0x09
e2e: aa 87 std Y+10, r26 ; 0x0a
e30: bb 87 std Y+11, r27 ; 0x0b
e32: 88 85 ldd r24, Y+8 ; 0x08
e34: 99 85 ldd r25, Y+9 ; 0x09
e36: aa 85 ldd r26, Y+10 ; 0x0a
e38: bb 85 ldd r27, Y+11 ; 0x0b
e3a: 01 96 adiw r24, 0x01 ; 1
e3c: a1 1d adc r26, r1
e3e: b1 1d adc r27, r1
e40: 9c 01 movw r18, r24
e42: 21 50 subi r18, 0x01 ; 1
e44: 31 09 sbc r19, r1
e46: 2c 87 std Y+12, r18 ; 0x0c
e48: 3d 87 std Y+13, r19 ; 0x0d
e4a: 2d b7 in r18, 0x3d ; 61
e4c: 3e b7 in r19, 0x3e ; 62
e4e: 28 1b sub r18, r24
e50: 39 0b sbc r19, r25
e52: 2d bf out 0x3d, r18 ; 61
e54: 3e bf out 0x3e, r19 ; 62
e56: 8d b7 in r24, 0x3d ; 61
e58: 9e b7 in r25, 0x3e ; 62
e5a: 01 96 adiw r24, 0x01 ; 1
e5c: 8e 87 std Y+14, r24 ; 0x0e
e5e: 9f 87 std Y+15, r25 ; 0x0f
e60: ce 01 movw r24, r28
e62: 86 5b subi r24, 0xB6 ; 182
e64: 9f 4f sbci r25, 0xFF ; 255
e66: dc 01 movw r26, r24
e68: 9c 91 ld r25, X
e6a: 88 e0 ldi r24, 0x08 ; 8
e6c: 29 2f mov r18, r25
e6e: 28 27 eor r18, r24
e70: ce 01 movw r24, r28
e72: 86 5b subi r24, 0xB6 ; 182
e74: 9f 4f sbci r25, 0xFF ; 255
e76: fc 01 movw r30, r24
e78: 20 83 st Z, r18
e7a: 2c 81 ldd r18, Y+4 ; 0x04
e7c: 3d 81 ldd r19, Y+5 ; 0x05
e7e: 8a 81 ldd r24, Y+2 ; 0x02
e80: 9b 81 ldd r25, Y+3 ; 0x03
e82: a9 01 movw r20, r18
e84: 48 1b sub r20, r24
e86: 59 0b sbc r21, r25
e88: ca 01 movw r24, r20
e8a: 01 97 sbiw r24, 0x01 ; 1
e8c: 09 2e mov r0, r25
e8e: 00 0c add r0, r0
e90: aa 0b sbc r26, r26
e92: bb 0b sbc r27, r27
e94: 88 8b std Y+16, r24 ; 0x10
e96: 99 8b std Y+17, r25 ; 0x11
e98: aa 8b std Y+18, r26 ; 0x12
e9a: bb 8b std Y+19, r27 ; 0x13
e9c: 88 89 ldd r24, Y+16 ; 0x10
e9e: 99 89 ldd r25, Y+17 ; 0x11
ea0: aa 89 ldd r26, Y+18 ; 0x12
ea2: bb 89 ldd r27, Y+19 ; 0x13
ea4: 01 96 adiw r24, 0x01 ; 1
ea6: a1 1d adc r26, r1
ea8: b1 1d adc r27, r1
eaa: 9c 01 movw r18, r24
eac: 21 50 subi r18, 0x01 ; 1
eae: 31 09 sbc r19, r1
eb0: 2c 8b std Y+20, r18 ; 0x14
eb2: 3d 8b std Y+21, r19 ; 0x15
eb4: ad b7 in r26, 0x3d ; 61
eb6: be b7 in r27, 0x3e ; 62
eb8: a8 1b sub r26, r24
eba: b9 0b sbc r27, r25
ebc: ad bf out 0x3d, r26 ; 61
ebe: be bf out 0x3e, r27 ; 62
ec0: 8d b7 in r24, 0x3d ; 61
ec2: 9e b7 in r25, 0x3e ; 62
ec4: 01 96 adiw r24, 0x01 ; 1
ec6: 8e 8b std Y+22, r24 ; 0x16
ec8: 9f 8b std Y+23, r25 ; 0x17
eca: 48 85 ldd r20, Y+8 ; 0x08
ecc: 59 85 ldd r21, Y+9 ; 0x09
ece: 2e 85 ldd r18, Y+14 ; 0x0e
ed0: 3f 85 ldd r19, Y+15 ; 0x0f
ed2: ce 01 movw r24, r28
ed4: 85 5b subi r24, 0xB5 ; 181
ed6: 9f 4f sbci r25, 0xFF ; 255
ed8: fc 01 movw r30, r24
eda: 80 81 ld r24, Z
edc: 91 81 ldd r25, Z+1 ; 0x01
ede: bc 01 movw r22, r24
ee0: c9 01 movw r24, r18
ee2: 0e 94 ec 27 call 0x4fd8 ; 0x4fd8
ee6: 2e 85 ldd r18, Y+14 ; 0x0e
ee8: 3f 85 ldd r19, Y+15 ; 0x0f
eea: 88 85 ldd r24, Y+8 ; 0x08
eec: 99 85 ldd r25, Y+9 ; 0x09
eee: 82 0f add r24, r18
ef0: 93 1f adc r25, r19
ef2: dc 01 movw r26, r24
ef4: 1c 92 st X, r1
ef6: 8e 85 ldd r24, Y+14 ; 0x0e
ef8: 9f 85 ldd r25, Y+15 ; 0x0f
efa: 9e 01 movw r18, r28
efc: 28 5d subi r18, 0xD8 ; 216
efe: 3f 4f sbci r19, 0xFF ; 255
f00: 4a e0 ldi r20, 0x0A ; 10
f02: 50 e0 ldi r21, 0x00 ; 0
f04: b9 01 movw r22, r18
f06: 0e 94 9d 26 call 0x4d3a ; 0x4d3a
f0a: dc 01 movw r26, r24
f0c: cb 01 movw r24, r22
f0e: 88 8f std Y+24, r24 ; 0x18
f10: 99 8f std Y+25, r25 ; 0x19
f12: aa 8f std Y+26, r26 ; 0x1a
f14: bb 8f std Y+27, r27 ; 0x1b
f16: ce 01 movw r24, r28
f18: 86 5b subi r24, 0xB6 ; 182
f1a: 9f 4f sbci r25, 0xFF ; 255
f1c: fc 01 movw r30, r24
f1e: 90 81 ld r25, Z
f20: 80 e1 ldi r24, 0x10 ; 16
f22: 29 2f mov r18, r25
f24: 28 27 eor r18, r24
f26: ce 01 movw r24, r28
f28: 86 5b subi r24, 0xB6 ; 182
f2a: 9f 4f sbci r25, 0xFF ; 255
f2c: dc 01 movw r26, r24
f2e: 2c 93 st X, r18
f30: 48 89 ldd r20, Y+16 ; 0x10
f32: 59 89 ldd r21, Y+17 ; 0x11
f34: 8a 81 ldd r24, Y+2 ; 0x02
f36: 9b 81 ldd r25, Y+3 ; 0x03
f38: 9c 01 movw r18, r24
f3a: 2f 5f subi r18, 0xFF ; 255
f3c: 3f 4f sbci r19, 0xFF ; 255
f3e: 8e 89 ldd r24, Y+22 ; 0x16
f40: 9f 89 ldd r25, Y+23 ; 0x17
f42: b9 01 movw r22, r18
f44: 0e 94 ec 27 call 0x4fd8 ; 0x4fd8
f48: 2e 89 ldd r18, Y+22 ; 0x16
f4a: 3f 89 ldd r19, Y+23 ; 0x17
f4c: 88 89 ldd r24, Y+16 ; 0x10
f4e: 99 89 ldd r25, Y+17 ; 0x11
f50: 82 0f add r24, r18
f52: 93 1f adc r25, r19
f54: fc 01 movw r30, r24
f56: 10 82 st Z, r1
f58: 8e 89 ldd r24, Y+22 ; 0x16
f5a: 9f 89 ldd r25, Y+23 ; 0x17
f5c: 9e 01 movw r18, r28
f5e: 28 5d subi r18, 0xD8 ; 216
f60: 3f 4f sbci r19, 0xFF ; 255
f62: 4a e0 ldi r20, 0x0A ; 10
f64: 50 e0 ldi r21, 0x00 ; 0
f66: b9 01 movw r22, r18
f68: 0e 94 9d 26 call 0x4d3a ; 0x4d3a
f6c: dc 01 movw r26, r24
f6e: cb 01 movw r24, r22
f70: 8c 8f std Y+28, r24 ; 0x1c
f72: 9d 8f std Y+29, r25 ; 0x1d
f74: ae 8f std Y+30, r26 ; 0x1e
f76: bf 8f std Y+31, r27 ; 0x1f
f78: ce 01 movw r24, r28
f7a: 86 5b subi r24, 0xB6 ; 182
f7c: 9f 4f sbci r25, 0xFF ; 255
f7e: dc 01 movw r26, r24
f80: 8c 91 ld r24, X
f82: 8f 31 cpi r24, 0x1F ; 31
f84: 11 f0 breq .+4 ; 0xf8a
f86: 0e 94 b6 03 call 0x76c ; 0x76c
f8a: 0e 94 6d 04 call 0x8da ; 0x8da
f8e: ce 01 movw r24, r28
f90: 86 5b subi r24, 0xB6 ; 182
f92: 9f 4f sbci r25, 0xFF ; 255
f94: fc 01 movw r30, r24
f96: 90 81 ld r25, Z
f98: 80 e2 ldi r24, 0x20 ; 32
f9a: 29 2f mov r18, r25
f9c: 28 27 eor r18, r24
f9e: ce 01 movw r24, r28
fa0: 86 5b subi r24, 0xB6 ; 182
fa2: 9f 4f sbci r25, 0xFF ; 255
fa4: dc 01 movw r26, r24
fa6: 2c 93 st X, r18
fa8: 8c 8d ldd r24, Y+28 ; 0x1c
faa: 9d 8d ldd r25, Y+29 ; 0x1d
fac: ae 8d ldd r26, Y+30 ; 0x1e
fae: bf 8d ldd r27, Y+31 ; 0x1f
fb0: 9c 01 movw r18, r24
fb2: 21 50 subi r18, 0x01 ; 1
fb4: 31 09 sbc r19, r1
fb6: 28 a3 std Y+32, r18 ; 0x20
fb8: 39 a3 std Y+33, r19 ; 0x21
fba: ed b7 in r30, 0x3d ; 61
fbc: fe b7 in r31, 0x3e ; 62
fbe: e8 1b sub r30, r24
fc0: f9 0b sbc r31, r25
fc2: ed bf out 0x3d, r30 ; 61
fc4: fe bf out 0x3e, r31 ; 62
fc6: 8d b7 in r24, 0x3d ; 61
fc8: 9e b7 in r25, 0x3e ; 62
fca: 01 96 adiw r24, 0x01 ; 1
fcc: 8a a3 std Y+34, r24 ; 0x22
fce: 9b a3 std Y+35, r25 ; 0x23
fd0: 88 8d ldd r24, Y+24 ; 0x18
fd2: 99 8d ldd r25, Y+25 ; 0x19
fd4: aa 8d ldd r26, Y+26 ; 0x1a
fd6: bb 8d ldd r27, Y+27 ; 0x1b
fd8: 9c 01 movw r18, r24
fda: 21 50 subi r18, 0x01 ; 1
fdc: 31 09 sbc r19, r1
fde: 2c a3 std Y+36, r18 ; 0x24
fe0: 3d a3 std Y+37, r19 ; 0x25
fe2: 2d b7 in r18, 0x3d ; 61
fe4: 3e b7 in r19, 0x3e ; 62
fe6: 28 1b sub r18, r24
fe8: 39 0b sbc r19, r25
fea: 2d bf out 0x3d, r18 ; 61
fec: 3e bf out 0x3e, r19 ; 62
fee: 8d b7 in r24, 0x3d ; 61
ff0: 9e b7 in r25, 0x3e ; 62
ff2: 01 96 adiw r24, 0x01 ; 1
ff4: 8e a3 std Y+38, r24 ; 0x26
ff6: 9f a3 std Y+39, r25 ; 0x27
ff8: 48 8d ldd r20, Y+24 ; 0x18
ffa: 59 8d ldd r21, Y+25 ; 0x19
ffc: 28 85 ldd r18, Y+8 ; 0x08
ffe: 39 85 ldd r19, Y+9 ; 0x09
1000: 88 89 ldd r24, Y+16 ; 0x10
1002: 99 89 ldd r25, Y+17 ; 0x11
1004: 82 0f add r24, r18
1006: 93 1f adc r25, r19
1008: 02 96 adiw r24, 0x02 ; 2
100a: 9e 01 movw r18, r28
100c: 25 5b subi r18, 0xB5 ; 181
100e: 3f 4f sbci r19, 0xFF ; 255
1010: d9 01 movw r26, r18
1012: 2d 91 ld r18, X+
1014: 3c 91 ld r19, X
1016: 28 0f add r18, r24
1018: 39 1f adc r19, r25
101a: 8e a1 ldd r24, Y+38 ; 0x26
101c: 9f a1 ldd r25, Y+39 ; 0x27
101e: b9 01 movw r22, r18
1020: 0e 94 ec 27 call 0x4fd8 ; 0x4fd8
1024: ce 01 movw r24, r28
1026: 86 5b subi r24, 0xB6 ; 182
1028: 9f 4f sbci r25, 0xFF ; 255
102a: fc 01 movw r30, r24
102c: 80 81 ld r24, Z
102e: 8f 33 cpi r24, 0x3F ; 63
1030: 11 f0 breq .+4 ; 0x1036
1032: 0e 94 b6 03 call 0x76c ; 0x76c
1036: 0e 94 6d 04 call 0x8da ; 0x8da
103a: 80 91 8f 22 lds r24, 0x228F
103e: 90 91 90 22 lds r25, 0x2290
1042: 89 83 std Y+1, r24 ; 0x01
1044: 4b c1 rjmp .+662 ; 0x12dc
1046: ce 01 movw r24, r28
1048: 86 5b subi r24, 0xB6 ; 182
104a: 9f 4f sbci r25, 0xFF ; 255
104c: dc 01 movw r26, r24
104e: 1c 92 st X, r1
1050: 0e 94 6d 04 call 0x8da ; 0x8da
1054: 20 91 93 22 lds r18, 0x2293
1058: 30 91 94 22 lds r19, 0x2294
105c: 89 81 ldd r24, Y+1 ; 0x01
105e: 48 2f mov r20, r24
1060: 88 0f add r24, r24
1062: 55 0b sbc r21, r21
1064: 62 e2 ldi r22, 0x22 ; 34
1066: 64 9f mul r22, r20
1068: c0 01 movw r24, r0
106a: 65 9f mul r22, r21
106c: 90 0d add r25, r0
106e: 11 24 eor r1, r1
1070: 82 0f add r24, r18
1072: 93 1f adc r25, r19
1074: fc 01 movw r30, r24
1076: 80 a1 ldd r24, Z+32 ; 0x20
1078: 91 a1 ldd r25, Z+33 ; 0x21
107a: 89 2b or r24, r25
107c: 09 f4 brne .+2 ; 0x1080
107e: 2b c1 rjmp .+598 ; 0x12d6
1080: 20 91 93 22 lds r18, 0x2293
1084: 30 91 94 22 lds r19, 0x2294
1088: 89 81 ldd r24, Y+1 ; 0x01
108a: 48 2f mov r20, r24
108c: 88 0f add r24, r24
108e: 55 0b sbc r21, r21
1090: 62 e2 ldi r22, 0x22 ; 34
1092: 64 9f mul r22, r20
1094: c0 01 movw r24, r0
1096: 65 9f mul r22, r21
1098: 90 0d add r25, r0
109a: 11 24 eor r1, r1
109c: 82 0f add r24, r18
109e: 93 1f adc r25, r19
10a0: dc 01 movw r26, r24
10a2: 90 96 adiw r26, 0x20 ; 32
10a4: 8d 91 ld r24, X+
10a6: 9c 91 ld r25, X
10a8: 91 97 sbiw r26, 0x21 ; 33
10aa: 0e 94 19 28 call 0x5032 ; 0x5032
10ae: 9c 01 movw r18, r24
10b0: 40 e0 ldi r20, 0x00 ; 0
10b2: 50 e0 ldi r21, 0x00 ; 0
10b4: 88 8d ldd r24, Y+24 ; 0x18
10b6: 99 8d ldd r25, Y+25 ; 0x19
10b8: aa 8d ldd r26, Y+26 ; 0x1a
10ba: bb 8d ldd r27, Y+27 ; 0x1b
10bc: 28 17 cp r18, r24
10be: 39 07 cpc r19, r25
10c0: 4a 07 cpc r20, r26
10c2: 5b 07 cpc r21, r27
10c4: 09 f0 breq .+2 ; 0x10c8
10c6: 07 c1 rjmp .+526 ; 0x12d6
10c8: e8 8d ldd r30, Y+24 ; 0x18
10ca: f9 8d ldd r31, Y+25 ; 0x19
10cc: 6e a1 ldd r22, Y+38 ; 0x26
10ce: 7f a1 ldd r23, Y+39 ; 0x27
10d0: 20 91 93 22 lds r18, 0x2293
10d4: 30 91 94 22 lds r19, 0x2294
10d8: 89 81 ldd r24, Y+1 ; 0x01
10da: 48 2f mov r20, r24
10dc: 88 0f add r24, r24
10de: 55 0b sbc r21, r21
10e0: a2 e2 ldi r26, 0x22 ; 34
10e2: a4 9f mul r26, r20
10e4: c0 01 movw r24, r0
10e6: a5 9f mul r26, r21
10e8: 90 0d add r25, r0
10ea: 11 24 eor r1, r1
10ec: 82 0f add r24, r18
10ee: 93 1f adc r25, r19
10f0: dc 01 movw r26, r24
10f2: 90 96 adiw r26, 0x20 ; 32
10f4: 8d 91 ld r24, X+
10f6: 9c 91 ld r25, X
10f8: 91 97 sbiw r26, 0x21 ; 33
10fa: af 01 movw r20, r30
10fc: 0e 94 df 27 call 0x4fbe ; 0x4fbe
1100: 89 2b or r24, r25
1102: 09 f0 breq .+2 ; 0x1106
1104: e8 c0 rjmp .+464 ; 0x12d6
1106: 0e 94 6d 04 call 0x8da ; 0x8da
110a: ce 01 movw r24, r28
110c: 86 5b subi r24, 0xB6 ; 182
110e: 9f 4f sbci r25, 0xFF ; 255
1110: fc 01 movw r30, r24
1112: 80 81 ld r24, Z
1114: 88 23 and r24, r24
1116: 11 f0 breq .+4 ; 0x111c
1118: 0e 94 b6 03 call 0x76c ; 0x76c
111c: 0e 94 6d 04 call 0x8da ; 0x8da
1120: ce 01 movw r24, r28
1122: 86 5b subi r24, 0xB6 ; 182
1124: 9f 4f sbci r25, 0xFF ; 255
1126: dc 01 movw r26, r24
1128: 8c 91 ld r24, X
112a: 21 e0 ldi r18, 0x01 ; 1
112c: 28 0f add r18, r24
112e: ce 01 movw r24, r28
1130: 86 5b subi r24, 0xB6 ; 182
1132: 9f 4f sbci r25, 0xFF ; 255
1134: fc 01 movw r30, r24
1136: 20 83 st Z, r18
1138: 4c 8d ldd r20, Y+28 ; 0x1c
113a: 5d 8d ldd r21, Y+29 ; 0x1d
113c: 28 85 ldd r18, Y+8 ; 0x08
113e: 39 85 ldd r19, Y+9 ; 0x09
1140: 88 89 ldd r24, Y+16 ; 0x10
1142: 99 89 ldd r25, Y+17 ; 0x11
1144: 28 0f add r18, r24
1146: 39 1f adc r19, r25
1148: 88 8d ldd r24, Y+24 ; 0x18
114a: 99 8d ldd r25, Y+25 ; 0x19
114c: 82 0f add r24, r18
114e: 93 1f adc r25, r19
1150: 02 96 adiw r24, 0x02 ; 2
1152: 9e 01 movw r18, r28
1154: 25 5b subi r18, 0xB5 ; 181
1156: 3f 4f sbci r19, 0xFF ; 255
1158: d9 01 movw r26, r18
115a: 2d 91 ld r18, X+
115c: 3c 91 ld r19, X
115e: 28 0f add r18, r24
1160: 39 1f adc r19, r25
1162: 8a a1 ldd r24, Y+34 ; 0x22
1164: 9b a1 ldd r25, Y+35 ; 0x23
1166: b9 01 movw r22, r18
1168: 0e 94 ec 27 call 0x4fd8 ; 0x4fd8
116c: ce 01 movw r24, r28
116e: 86 5b subi r24, 0xB6 ; 182
1170: 9f 4f sbci r25, 0xFF ; 255
1172: fc 01 movw r30, r24
1174: 80 81 ld r24, Z
1176: 21 e0 ldi r18, 0x01 ; 1
1178: 28 0f add r18, r24
117a: ce 01 movw r24, r28
117c: 86 5b subi r24, 0xB6 ; 182
117e: 9f 4f sbci r25, 0xFF ; 255
1180: dc 01 movw r26, r24
1182: 2c 93 st X, r18
1184: 8c 8d ldd r24, Y+28 ; 0x1c
1186: 9d 8d ldd r25, Y+29 ; 0x1d
1188: ae 8d ldd r26, Y+30 ; 0x1e
118a: bf 8d ldd r27, Y+31 ; 0x1f
118c: 88 0f add r24, r24
118e: 99 1f adc r25, r25
1190: aa 1f adc r26, r26
1192: bb 1f adc r27, r27
1194: 88 0f add r24, r24
1196: 99 1f adc r25, r25
1198: aa 1f adc r26, r26
119a: bb 1f adc r27, r27
119c: 88 0f add r24, r24
119e: 99 1f adc r25, r25
11a0: aa 1f adc r26, r26
11a2: bb 1f adc r27, r27
11a4: 9c 01 movw r18, r24
11a6: ad 01 movw r20, r26
11a8: 6a a1 ldd r22, Y+34 ; 0x22
11aa: 7b a1 ldd r23, Y+35 ; 0x23
11ac: ce 01 movw r24, r28
11ae: 8a 96 adiw r24, 0x2a ; 42
11b0: 0e 94 c3 10 call 0x2186 ; 0x2186
11b4: ce 01 movw r24, r28
11b6: 86 5b subi r24, 0xB6 ; 182
11b8: 9f 4f sbci r25, 0xFF ; 255
11ba: fc 01 movw r30, r24
11bc: 80 81 ld r24, Z
11be: 21 e0 ldi r18, 0x01 ; 1
11c0: 28 0f add r18, r24
11c2: ce 01 movw r24, r28
11c4: 86 5b subi r24, 0xB6 ; 182
11c6: 9f 4f sbci r25, 0xFF ; 255
11c8: dc 01 movw r26, r24
11ca: 2c 93 st X, r18
11cc: 0e 94 6d 04 call 0x8da ; 0x8da
11d0: ce 01 movw r24, r28
11d2: 86 5b subi r24, 0xB6 ; 182
11d4: 9f 4f sbci r25, 0xFF ; 255
11d6: fc 01 movw r30, r24
11d8: 80 81 ld r24, Z
11da: 83 30 cpi r24, 0x03 ; 3
11dc: 19 f5 brne .+70 ; 0x1224
11de: 20 91 93 22 lds r18, 0x2293
11e2: 30 91 94 22 lds r19, 0x2294
11e6: 89 81 ldd r24, Y+1 ; 0x01
11e8: 48 2f mov r20, r24
11ea: 88 0f add r24, r24
11ec: 55 0b sbc r21, r21
11ee: 62 e2 ldi r22, 0x22 ; 34
11f0: 64 9f mul r22, r20
11f2: c0 01 movw r24, r0
11f4: 65 9f mul r22, r21
11f6: 90 0d add r25, r0
11f8: 11 24 eor r1, r1
11fa: 82 0f add r24, r18
11fc: 93 1f adc r25, r19
11fe: 9c 01 movw r18, r24
1200: ce 01 movw r24, r28
1202: 8a 96 adiw r24, 0x2a ; 42
1204: 40 e2 ldi r20, 0x20 ; 32
1206: 50 e0 ldi r21, 0x00 ; 0
1208: bc 01 movw r22, r24
120a: c9 01 movw r24, r18
120c: 0e 94 df 27 call 0x4fbe ; 0x4fbe
1210: 89 2b or r24, r25
1212: 41 f4 brne .+16 ; 0x1224
1214: 82 e1 ldi r24, 0x12 ; 18
1216: 80 93 05 20 sts 0x2005, r24
121a: 80 91 05 20 lds r24, 0x2005
121e: 8a 56 subi r24, 0x6A ; 106
1220: 80 93 05 20 sts 0x2005, r24
1224: 0e 94 6d 04 call 0x8da ; 0x8da
1228: ce 01 movw r24, r28
122a: 86 5b subi r24, 0xB6 ; 182
122c: 9f 4f sbci r25, 0xFF ; 255
122e: dc 01 movw r26, r24
1230: 8c 91 ld r24, X
1232: 21 e0 ldi r18, 0x01 ; 1
1234: 28 0f add r18, r24
1236: ce 01 movw r24, r28
1238: 86 5b subi r24, 0xB6 ; 182
123a: 9f 4f sbci r25, 0xFF ; 255
123c: fc 01 movw r30, r24
123e: 20 83 st Z, r18
1240: 0e 94 6d 04 call 0x8da ; 0x8da
1244: ce 01 movw r24, r28
1246: 86 5b subi r24, 0xB6 ; 182
1248: 9f 4f sbci r25, 0xFF ; 255
124a: dc 01 movw r26, r24
124c: 8c 91 ld r24, X
124e: 84 30 cpi r24, 0x04 ; 4
1250: d9 f4 brne .+54 ; 0x1288
1252: 20 91 93 22 lds r18, 0x2293
1256: 30 91 94 22 lds r19, 0x2294
125a: 89 81 ldd r24, Y+1 ; 0x01
125c: 48 2f mov r20, r24
125e: 88 0f add r24, r24
1260: 55 0b sbc r21, r21
1262: 62 e2 ldi r22, 0x22 ; 34
1264: 64 9f mul r22, r20
1266: c0 01 movw r24, r0
1268: 65 9f mul r22, r21
126a: 90 0d add r25, r0
126c: 11 24 eor r1, r1
126e: 82 0f add r24, r18
1270: 93 1f adc r25, r19
1272: 9c 01 movw r18, r24
1274: ce 01 movw r24, r28
1276: 8a 96 adiw r24, 0x2a ; 42
1278: 40 e2 ldi r20, 0x20 ; 32
127a: 50 e0 ldi r21, 0x00 ; 0
127c: bc 01 movw r22, r24
127e: c9 01 movw r24, r18
1280: 0e 94 df 27 call 0x4fbe ; 0x4fbe
1284: 89 2b or r24, r25
1286: 11 f0 breq .+4 ; 0x128c
1288: 82 e0 ldi r24, 0x02 ; 2
128a: 2d c0 rjmp .+90 ; 0x12e6
128c: ce 01 movw r24, r28
128e: 86 5b subi r24, 0xB6 ; 182
1290: 9f 4f sbci r25, 0xFF ; 255
1292: fc 01 movw r30, r24
1294: 80 81 ld r24, Z
1296: 21 e0 ldi r18, 0x01 ; 1
1298: 28 0f add r18, r24
129a: ce 01 movw r24, r28
129c: 86 5b subi r24, 0xB6 ; 182
129e: 9f 4f sbci r25, 0xFF ; 255
12a0: dc 01 movw r26, r24
12a2: 2c 93 st X, r18
12a4: 0e 94 6d 04 call 0x8da ; 0x8da
12a8: ce 01 movw r24, r28
12aa: 86 5b subi r24, 0xB6 ; 182
12ac: 9f 4f sbci r25, 0xFF ; 255
12ae: fc 01 movw r30, r24
12b0: 80 81 ld r24, Z
12b2: 85 30 cpi r24, 0x05 ; 5
12b4: 19 f0 breq .+6 ; 0x12bc
12b6: 0e 94 b6 03 call 0x76c ; 0x76c
12ba: 0d c0 rjmp .+26 ; 0x12d6
12bc: 80 91 05 20 lds r24, 0x2005
12c0: 82 51 subi r24, 0x12 ; 18
12c2: 80 93 05 20 sts 0x2005, r24
12c6: 8a e3 ldi r24, 0x3A ; 58
12c8: 98 e1 ldi r25, 0x18 ; 24
12ca: 80 93 d7 21 sts 0x21D7, r24
12ce: 90 93 d8 21 sts 0x21D8, r25
12d2: 81 e0 ldi r24, 0x01 ; 1
12d4: 08 c0 rjmp .+16 ; 0x12e6
12d6: 89 81 ldd r24, Y+1 ; 0x01
12d8: 81 50 subi r24, 0x01 ; 1
12da: 89 83 std Y+1, r24 ; 0x01
12dc: 89 81 ldd r24, Y+1 ; 0x01
12de: 88 23 and r24, r24
12e0: 0c f0 brlt .+2 ; 0x12e4
12e2: b1 ce rjmp .-670 ; 0x1046
12e4: 80 e0 ldi r24, 0x00 ; 0
12e6: ed be out 0x3d, r14 ; 61
12e8: fe be out 0x3e, r15 ; 62
12ea: 01 c0 rjmp .+2 ; 0x12ee
12ec: 8f ef ldi r24, 0xFF ; 255
12ee: 0d bf out 0x3d, r16 ; 61
12f0: 1e bf out 0x3e, r17 ; 62
12f2: c4 5b subi r28, 0xB4 ; 180
12f4: df 4f sbci r29, 0xFF ; 255
12f6: cd bf out 0x3d, r28 ; 61
12f8: de bf out 0x3e, r29 ; 62
12fa: df 91 pop r29
12fc: cf 91 pop r28
12fe: 1f 91 pop r17
1300: 0f 91 pop r16
1302: ff 90 pop r15
1304: ef 90 pop r14
1306: 08 95 ret
1308: cf 93 push r28
130a: df 93 push r29
130c: cd b7 in r28, 0x3d ; 61
130e: de b7 in r29, 0x3e ; 62
1310: c7 5e subi r28, 0xE7 ; 231
1312: d1 09 sbc r29, r1
1314: cd bf out 0x3d, r28 ; 61
1316: de bf out 0x3e, r29 ; 62
1318: 0e 94 b4 05 call 0xb68 ; 0xb68
131c: 80 91 0f 20 lds r24, 0x200F
1320: 90 91 10 20 lds r25, 0x2010
1324: 0e 94 7d 17 call 0x2efa ; 0x2efa
1328: 0e 94 03 19 call 0x3206 ; 0x3206
132c: 0e 94 7d 22 call 0x44fa ; 0x44fa
1330: 80 e0 ldi r24, 0x00 ; 0
1332: 96 e0 ldi r25, 0x06 ; 6
1334: 23 e0 ldi r18, 0x03 ; 3
1336: fc 01 movw r30, r24
1338: 20 83 st Z, r18
133a: 2e e0 ldi r18, 0x0E ; 14
133c: ce 01 movw r24, r28
133e: 01 96 adiw r24, 0x01 ; 1
1340: fc 01 movw r30, r24
1342: 32 2f mov r19, r18
1344: 11 92 st Z+, r1
1346: 3a 95 dec r19
1348: e9 f7 brne .-6 ; 0x1344
134a: 82 e0 ldi r24, 0x02 ; 2
134c: 8c 83 std Y+4, r24 ; 0x04
134e: 8e e0 ldi r24, 0x0E ; 14
1350: 98 e1 ldi r25, 0x18 ; 24
1352: 89 87 std Y+9, r24 ; 0x09
1354: 9a 87 std Y+10, r25 ; 0x0a
1356: 2e e0 ldi r18, 0x0E ; 14
1358: ce 01 movw r24, r28
135a: 0f 96 adiw r24, 0x0f ; 15
135c: fc 01 movw r30, r24
135e: 32 2f mov r19, r18
1360: 11 92 st Z+, r1
1362: 3a 95 dec r19
1364: e9 f7 brne .-6 ; 0x1360
1366: 81 e0 ldi r24, 0x01 ; 1
1368: 8a 8b std Y+18, r24 ; 0x12
136a: 80 e9 ldi r24, 0x90 ; 144
136c: 98 e1 ldi r25, 0x18 ; 24
136e: 89 8f std Y+25, r24 ; 0x19
1370: 9a 8f std Y+26, r25 ; 0x1a
1372: 80 e8 ldi r24, 0x80 ; 128
1374: 96 e0 ldi r25, 0x06 ; 6
1376: 21 e0 ldi r18, 0x01 ; 1
1378: fc 01 movw r30, r24
137a: 20 83 st Z, r18
137c: 80 e0 ldi r24, 0x00 ; 0
137e: 9a e0 ldi r25, 0x0A ; 10
1380: 21 e0 ldi r18, 0x01 ; 1
1382: fc 01 movw r30, r24
1384: 20 83 st Z, r18
1386: 80 e0 ldi r24, 0x00 ; 0
1388: 9a e0 ldi r25, 0x0A ; 10
138a: 21 e1 ldi r18, 0x11 ; 17
138c: fc 01 movw r30, r24
138e: 21 83 std Z+1, r18 ; 0x01
1390: 80 e0 ldi r24, 0x00 ; 0
1392: 9a e0 ldi r25, 0x0A ; 10
1394: fc 01 movw r30, r24
1396: 10 a6 std Z+40, r1 ; 0x28
1398: 11 a6 std Z+41, r1 ; 0x29
139a: 1d 8e std Y+29, r1 ; 0x1d
139c: 80 91 0f 20 lds r24, 0x200F
13a0: 90 91 10 20 lds r25, 0x2010
13a4: 65 eb ldi r22, 0xB5 ; 181
13a6: 70 e2 ldi r23, 0x20 ; 32
13a8: 0e 94 4b 18 call 0x3096 ; 0x3096
13ac: 0e 94 f0 01 call 0x3e0 ; 0x3e0
13b0: 0e 94 04 05 call 0xa08 ; 0xa08
13b4: 80 91 0f 20 lds r24, 0x200F
13b8: 90 91 10 20 lds r25, 0x2010
13bc: 67 ec ldi r22, 0xC7 ; 199
13be: 70 e2 ldi r23, 0x20 ; 32
13c0: 0e 94 4b 18 call 0x3096 ; 0x3096
13c4: 0e 94 dd 05 call 0xbba ; 0xbba
13c8: 1e 8e std Y+30, r1 ; 0x1e
13ca: 1d 8e std Y+29, r1 ; 0x1d
13cc: 9d 8d ldd r25, Y+29 ; 0x1d
13ce: 81 e0 ldi r24, 0x01 ; 1
13d0: 89 27 eor r24, r25
13d2: 8d 8f std Y+29, r24 ; 0x1d
13d4: 80 91 0f 20 lds r24, 0x200F
13d8: 90 91 10 20 lds r25, 0x2010
13dc: be 01 movw r22, r28
13de: 61 5e subi r22, 0xE1 ; 225
13e0: 7f 4f sbci r23, 0xFF ; 255
13e2: 2a e0 ldi r18, 0x0A ; 10
13e4: 48 ec ldi r20, 0xC8 ; 200
13e6: 50 e0 ldi r21, 0x00 ; 0
13e8: 0e 94 bb 18 call 0x3176 ; 0x3176
13ec: 0e 94 6d 04 call 0x8da ; 0x8da
13f0: 9d 8d ldd r25, Y+29 ; 0x1d
13f2: 82 e0 ldi r24, 0x02 ; 2
13f4: 89 27 eor r24, r25
13f6: 8d 8f std Y+29, r24 ; 0x1d
13f8: ce 01 movw r24, r28
13fa: 4f 96 adiw r24, 0x1f ; 31
13fc: 0e 94 8a 06 call 0xd14 ; 0xd14
1400: 28 2f mov r18, r24
1402: ce 01 movw r24, r28
1404: 89 51 subi r24, 0x19 ; 25
1406: 9f 4f sbci r25, 0xFF ; 255
1408: fc 01 movw r30, r24
140a: 20 83 st Z, r18
140c: 0e 94 6d 04 call 0x8da ; 0x8da
1410: 9d 8d ldd r25, Y+29 ; 0x1d
1412: 84 e0 ldi r24, 0x04 ; 4
1414: 89 27 eor r24, r25
1416: 8d 8f std Y+29, r24 ; 0x1d
1418: ce 01 movw r24, r28
141a: 89 51 subi r24, 0x19 ; 25
141c: 9f 4f sbci r25, 0xFF ; 255
141e: fc 01 movw r30, r24
1420: 80 81 ld r24, Z
1422: 81 30 cpi r24, 0x01 ; 1
1424: 01 f5 brne .+64 ; 0x1466
1426: 0e 94 6d 04 call 0x8da ; 0x8da
142a: 80 91 05 20 lds r24, 0x2005
142e: 86 39 cpi r24, 0x96 ; 150
1430: 11 f0 breq .+4 ; 0x1436
1432: 0e 94 c8 27 call 0x4f90 ; 0x4f90
1436: 8f ef ldi r24, 0xFF ; 255
1438: 8e 8f std Y+30, r24 ; 0x1e
143a: 0e 94 6d 04 call 0x8da ; 0x8da
143e: 8d 8d ldd r24, Y+29 ; 0x1d
1440: 87 30 cpi r24, 0x07 ; 7
1442: 19 f0 breq .+6 ; 0x144a
1444: 0e 94 b6 03 call 0x76c ; 0x76c
1448: 0e c0 rjmp .+28 ; 0x1466
144a: 8e 8d ldd r24, Y+30 ; 0x1e
144c: 0e 94 6d 24 call 0x48da ; 0x48da
1450: 9d 8d ldd r25, Y+29 ; 0x1d
1452: 88 e0 ldi r24, 0x08 ; 8
1454: 89 27 eor r24, r25
1456: 8d 8f std Y+29, r24 ; 0x1d
1458: 0e 94 6d 04 call 0x8da ; 0x8da
145c: 8d 8d ldd r24, Y+29 ; 0x1d
145e: 8f 30 cpi r24, 0x0F ; 15
1460: 11 f0 breq .+4 ; 0x1466
1462: 0e 94 b6 03 call 0x76c ; 0x76c
1466: 0e 94 6d 04 call 0x8da ; 0x8da
146a: 9d 8d ldd r25, Y+29 ; 0x1d
146c: 80 e1 ldi r24, 0x10 ; 16
146e: 89 27 eor r24, r25
1470: 8d 8f std Y+29, r24 ; 0x1d
1472: ce 01 movw r24, r28
1474: 89 51 subi r24, 0x19 ; 25
1476: 9f 4f sbci r25, 0xFF ; 255
1478: fc 01 movw r30, r24
147a: 80 81 ld r24, Z
147c: 8f 3f cpi r24, 0xFF ; 255
147e: 49 f4 brne .+18 ; 0x1492
1480: 80 91 0f 20 lds r24, 0x200F
1484: 90 91 10 20 lds r25, 0x2010
1488: 6c ed ldi r22, 0xDC ; 220
148a: 70 e2 ldi r23, 0x20 ; 32
148c: 0e 94 4b 18 call 0x3096 ; 0x3096
1490: 60 c0 rjmp .+192 ; 0x1552
1492: 0e 94 6d 04 call 0x8da ; 0x8da
1496: ce 01 movw r24, r28
1498: 89 51 subi r24, 0x19 ; 25
149a: 9f 4f sbci r25, 0xFF ; 255
149c: fc 01 movw r30, r24
149e: 80 81 ld r24, Z
14a0: 88 23 and r24, r24
14a2: 49 f4 brne .+18 ; 0x14b6
14a4: 80 91 0f 20 lds r24, 0x200F
14a8: 90 91 10 20 lds r25, 0x2010
14ac: 60 e2 ldi r22, 0x20 ; 32
14ae: 71 e2 ldi r23, 0x21 ; 33
14b0: 0e 94 4b 18 call 0x3096 ; 0x3096
14b4: 4e c0 rjmp .+156 ; 0x1552
14b6: ce 01 movw r24, r28
14b8: 89 51 subi r24, 0x19 ; 25
14ba: 9f 4f sbci r25, 0xFF ; 255
14bc: fc 01 movw r30, r24
14be: 80 81 ld r24, Z
14c0: 82 30 cpi r24, 0x02 ; 2
14c2: 49 f4 brne .+18 ; 0x14d6
14c4: 80 91 0f 20 lds r24, 0x200F
14c8: 90 91 10 20 lds r25, 0x2010
14cc: 60 e3 ldi r22, 0x30 ; 48
14ce: 71 e2 ldi r23, 0x21 ; 33
14d0: 0e 94 4b 18 call 0x3096 ; 0x3096
14d4: 3e c0 rjmp .+124 ; 0x1552
14d6: ce 01 movw r24, r28
14d8: 89 51 subi r24, 0x19 ; 25
14da: 9f 4f sbci r25, 0xFF ; 255
14dc: fc 01 movw r30, r24
14de: 80 81 ld r24, Z
14e0: 81 30 cpi r24, 0x01 ; 1
14e2: b9 f5 brne .+110 ; 0x1552
14e4: 9d 8d ldd r25, Y+29 ; 0x1d
14e6: 80 e2 ldi r24, 0x20 ; 32
14e8: 89 27 eor r24, r25
14ea: 8d 8f std Y+29, r24 ; 0x1d
14ec: 80 91 05 20 lds r24, 0x2005
14f0: 86 39 cpi r24, 0x96 ; 150
14f2: 69 f5 brne .+90 ; 0x154e
14f4: 80 91 0f 20 lds r24, 0x200F
14f8: 90 91 10 20 lds r25, 0x2010
14fc: 62 e4 ldi r22, 0x42 ; 66
14fe: 71 e2 ldi r23, 0x21 ; 33
1500: 0e 94 4b 18 call 0x3096 ; 0x3096
1504: 0e 94 6d 04 call 0x8da ; 0x8da
1508: 8d 8d ldd r24, Y+29 ; 0x1d
150a: 8f 33 cpi r24, 0x3F ; 63
150c: 19 f0 breq .+6 ; 0x1514
150e: 0e 94 b6 03 call 0x76c ; 0x76c
1512: 1f c0 rjmp .+62 ; 0x1552
1514: 0e 94 6d 04 call 0x8da ; 0x8da
1518: 8d 8d ldd r24, Y+29 ; 0x1d
151a: 8f 33 cpi r24, 0x3F ; 63
151c: 19 f0 breq .+6 ; 0x1524
151e: 0e 94 b6 03 call 0x76c ; 0x76c
1522: 17 c0 rjmp .+46 ; 0x1552
1524: 0e 94 6d 04 call 0x8da ; 0x8da
1528: ce 01 movw r24, r28
152a: 89 51 subi r24, 0x19 ; 25
152c: 9f 4f sbci r25, 0xFF ; 255
152e: fc 01 movw r30, r24
1530: 80 81 ld r24, Z
1532: 81 30 cpi r24, 0x01 ; 1
1534: 19 f0 breq .+6 ; 0x153c
1536: 0e 94 b6 03 call 0x76c ; 0x76c
153a: 0b c0 rjmp .+22 ; 0x1552
153c: 80 91 d7 21 lds r24, 0x21D7
1540: 90 91 d8 21 lds r25, 0x21D8
1544: 0e 94 7a 24 call 0x48f4 ; 0x48f4
1548: 80 e0 ldi r24, 0x00 ; 0
154a: 90 e0 ldi r25, 0x00 ; 0
154c: 03 c0 rjmp .+6 ; 0x1554
154e: 0e 94 c8 27 call 0x4f90 ; 0x4f90
1552: 3b cf rjmp .-394 ; 0x13ca
1554: c9 51 subi r28, 0x19 ; 25
1556: df 4f sbci r29, 0xFF ; 255
1558: cd bf out 0x3d, r28 ; 61
155a: de bf out 0x3e, r29 ; 62
155c: df 91 pop r29
155e: cf 91 pop r28
1560: 08 95 ret
1562: cf 93 push r28
1564: df 93 push r29
1566: 1f 92 push r1
1568: 1f 92 push r1
156a: cd b7 in r28, 0x3d ; 61
156c: de b7 in r29, 0x3e ; 62
156e: 89 83 std Y+1, r24 ; 0x01
1570: 9a 83 std Y+2, r25 ; 0x02
1572: 89 81 ldd r24, Y+1 ; 0x01
1574: 9a 81 ldd r25, Y+2 ; 0x02
1576: fc 01 movw r30, r24
1578: 10 a2 std Z+32, r1 ; 0x20
157a: 11 a2 std Z+33, r1 ; 0x21
157c: 12 a2 std Z+34, r1 ; 0x22
157e: 13 a2 std Z+35, r1 ; 0x23
1580: 89 81 ldd r24, Y+1 ; 0x01
1582: 9a 81 ldd r25, Y+2 ; 0x02
1584: 40 e2 ldi r20, 0x20 ; 32
1586: 50 e0 ldi r21, 0x00 ; 0
1588: 6a e4 ldi r22, 0x4A ; 74
158a: 72 e0 ldi r23, 0x02 ; 2
158c: 0e 94 d6 27 call 0x4fac ; 0x4fac
1590: 0f 90 pop r0
1592: 0f 90 pop r0
1594: df 91 pop r29
1596: cf 91 pop r28
1598: 08 95 ret
159a: cf 93 push r28
159c: df 93 push r29
159e: cd b7 in r28, 0x3d ; 61
15a0: de b7 in r29, 0x3e ; 62
15a2: 25 97 sbiw r28, 0x05 ; 5
15a4: cd bf out 0x3d, r28 ; 61
15a6: de bf out 0x3e, r29 ; 62
15a8: 69 83 std Y+1, r22 ; 0x01
15aa: 7a 83 std Y+2, r23 ; 0x02
15ac: 8b 83 std Y+3, r24 ; 0x03
15ae: 9c 83 std Y+4, r25 ; 0x04
15b0: 4d 83 std Y+5, r20 ; 0x05
15b2: 8d 81 ldd r24, Y+5 ; 0x05
15b4: 68 2f mov r22, r24
15b6: 70 e0 ldi r23, 0x00 ; 0
15b8: 89 81 ldd r24, Y+1 ; 0x01
15ba: 9a 81 ldd r25, Y+2 ; 0x02
15bc: ab 81 ldd r26, Y+3 ; 0x03
15be: bc 81 ldd r27, Y+4 ; 0x04
15c0: 9c 01 movw r18, r24
15c2: ad 01 movw r20, r26
15c4: 06 2e mov r0, r22
15c6: 04 c0 rjmp .+8 ; 0x15d0
15c8: 56 95 lsr r21
15ca: 47 95 ror r20
15cc: 37 95 ror r19
15ce: 27 95 ror r18
15d0: 0a 94 dec r0
15d2: d2 f7 brpl .-12 ; 0x15c8
15d4: 71 95 neg r23
15d6: 61 95 neg r22
15d8: 71 09 sbc r23, r1
15da: 6f 71 andi r22, 0x1F ; 31
15dc: 77 27 eor r23, r23
15de: 04 c0 rjmp .+8 ; 0x15e8
15e0: 88 0f add r24, r24
15e2: 99 1f adc r25, r25
15e4: aa 1f adc r26, r26
15e6: bb 1f adc r27, r27
15e8: 6a 95 dec r22
15ea: d2 f7 brpl .-12 ; 0x15e0
15ec: 82 2b or r24, r18
15ee: 93 2b or r25, r19
15f0: a4 2b or r26, r20
15f2: b5 2b or r27, r21
15f4: bc 01 movw r22, r24
15f6: cd 01 movw r24, r26
15f8: 25 96 adiw r28, 0x05 ; 5
15fa: cd bf out 0x3d, r28 ; 61
15fc: de bf out 0x3e, r29 ; 62
15fe: df 91 pop r29
1600: cf 91 pop r28
1602: 08 95 ret
1604: cf 93 push r28
1606: df 93 push r29
1608: 00 d0 rcall .+0 ; 0x160a
160a: 1f 92 push r1
160c: cd b7 in r28, 0x3d ; 61
160e: de b7 in r29, 0x3e ; 62
1610: 69 83 std Y+1, r22 ; 0x01
1612: 7a 83 std Y+2, r23 ; 0x02
1614: 8b 83 std Y+3, r24 ; 0x03
1616: 9c 83 std Y+4, r25 ; 0x04
1618: 89 81 ldd r24, Y+1 ; 0x01
161a: 9a 81 ldd r25, Y+2 ; 0x02
161c: ab 81 ldd r26, Y+3 ; 0x03
161e: bc 81 ldd r27, Y+4 ; 0x04
1620: 58 2f mov r21, r24
1622: 44 27 eor r20, r20
1624: 33 27 eor r19, r19
1626: 22 27 eor r18, r18
1628: 89 81 ldd r24, Y+1 ; 0x01
162a: 9a 81 ldd r25, Y+2 ; 0x02
162c: ab 81 ldd r26, Y+3 ; 0x03
162e: bc 81 ldd r27, Y+4 ; 0x04
1630: 8b 2f mov r24, r27
1632: 99 27 eor r25, r25
1634: aa 27 eor r26, r26
1636: bb 27 eor r27, r27
1638: 28 2b or r18, r24
163a: 39 2b or r19, r25
163c: 4a 2b or r20, r26
163e: 5b 2b or r21, r27
1640: 89 81 ldd r24, Y+1 ; 0x01
1642: 9a 81 ldd r25, Y+2 ; 0x02
1644: ab 81 ldd r26, Y+3 ; 0x03
1646: bc 81 ldd r27, Y+4 ; 0x04
1648: 88 27 eor r24, r24
164a: aa 27 eor r26, r26
164c: bb 27 eor r27, r27
164e: ba 2f mov r27, r26
1650: a9 2f mov r26, r25
1652: 98 2f mov r25, r24
1654: 88 27 eor r24, r24
1656: 28 2b or r18, r24
1658: 39 2b or r19, r25
165a: 4a 2b or r20, r26
165c: 5b 2b or r21, r27
165e: 89 81 ldd r24, Y+1 ; 0x01
1660: 9a 81 ldd r25, Y+2 ; 0x02
1662: ab 81 ldd r26, Y+3 ; 0x03
1664: bc 81 ldd r27, Y+4 ; 0x04
1666: 88 27 eor r24, r24
1668: 99 27 eor r25, r25
166a: bb 27 eor r27, r27
166c: 89 2f mov r24, r25
166e: 9a 2f mov r25, r26
1670: ab 2f mov r26, r27
1672: bb 27 eor r27, r27
1674: 82 2b or r24, r18
1676: 93 2b or r25, r19
1678: a4 2b or r26, r20
167a: b5 2b or r27, r21
167c: bc 01 movw r22, r24
167e: cd 01 movw r24, r26
1680: 24 96 adiw r28, 0x04 ; 4
1682: cd bf out 0x3d, r28 ; 61
1684: de bf out 0x3e, r29 ; 62
1686: df 91 pop r29
1688: cf 91 pop r28
168a: 08 95 ret
168c: 8f 92 push r8
168e: 9f 92 push r9
1690: af 92 push r10
1692: bf 92 push r11
1694: cf 92 push r12
1696: df 92 push r13
1698: ef 92 push r14
169a: ff 92 push r15
169c: 0f 93 push r16
169e: 1f 93 push r17
16a0: cf 93 push r28
16a2: df 93 push r29
16a4: cd b7 in r28, 0x3d ; 61
16a6: de b7 in r29, 0x3e ; 62
16a8: c3 57 subi r28, 0x73 ; 115
16aa: d1 09 sbc r29, r1
16ac: cd bf out 0x3d, r28 ; 61
16ae: de bf out 0x3e, r29 ; 62
16b0: 9e 01 movw r18, r28
16b2: 20 59 subi r18, 0x90 ; 144
16b4: 3f 4f sbci r19, 0xFF ; 255
16b6: f9 01 movw r30, r18
16b8: 80 83 st Z, r24
16ba: 91 83 std Z+1, r25 ; 0x01
16bc: ce 01 movw r24, r28
16be: 8e 58 subi r24, 0x8E ; 142
16c0: 9f 4f sbci r25, 0xFF ; 255
16c2: fc 01 movw r30, r24
16c4: 60 83 st Z, r22
16c6: 71 83 std Z+1, r23 ; 0x01
16c8: 9e 01 movw r18, r28
16ca: 20 5b subi r18, 0xB0 ; 176
16cc: 3f 4f sbci r19, 0xFF ; 255
16ce: ce 01 movw r24, r28
16d0: 80 59 subi r24, 0x90 ; 144
16d2: 9f 4f sbci r25, 0xFF ; 255
16d4: fc 01 movw r30, r24
16d6: 80 81 ld r24, Z
16d8: 91 81 ldd r25, Z+1 ; 0x01
16da: 40 e2 ldi r20, 0x20 ; 32
16dc: fc 01 movw r30, r24
16de: d9 01 movw r26, r18
16e0: 01 90 ld r0, Z+
16e2: 0d 92 st X+, r0
16e4: 4a 95 dec r20
16e6: e1 f7 brne .-8 ; 0x16e0
16e8: 19 82 std Y+1, r1 ; 0x01
16ea: 31 c0 rjmp .+98 ; 0x174e
16ec: 89 81 ldd r24, Y+1 ; 0x01
16ee: 08 2f mov r16, r24
16f0: 10 e0 ldi r17, 0x00 ; 0
16f2: 89 81 ldd r24, Y+1 ; 0x01
16f4: 88 2f mov r24, r24
16f6: 90 e0 ldi r25, 0x00 ; 0
16f8: 88 0f add r24, r24
16fa: 99 1f adc r25, r25
16fc: 88 0f add r24, r24
16fe: 99 1f adc r25, r25
1700: 9e 01 movw r18, r28
1702: 2e 58 subi r18, 0x8E ; 142
1704: 3f 4f sbci r19, 0xFF ; 255
1706: f9 01 movw r30, r18
1708: 20 81 ld r18, Z
170a: 31 81 ldd r19, Z+1 ; 0x01
170c: 82 0f add r24, r18
170e: 93 1f adc r25, r19
1710: fc 01 movw r30, r24
1712: 80 81 ld r24, Z
1714: 91 81 ldd r25, Z+1 ; 0x01
1716: a2 81 ldd r26, Z+2 ; 0x02
1718: b3 81 ldd r27, Z+3 ; 0x03
171a: bc 01 movw r22, r24
171c: cd 01 movw r24, r26
171e: 0e 94 02 0b call 0x1604 ; 0x1604
1722: dc 01 movw r26, r24
1724: cb 01 movw r24, r22
1726: 98 01 movw r18, r16
1728: 22 0f add r18, r18
172a: 33 1f adc r19, r19
172c: 22 0f add r18, r18
172e: 33 1f adc r19, r19
1730: ae 01 movw r20, r28
1732: 4f 5f subi r20, 0xFF ; 255
1734: 5f 4f sbci r21, 0xFF ; 255
1736: 24 0f add r18, r20
1738: 35 1f adc r19, r21
173a: 21 5f subi r18, 0xF1 ; 241
173c: 3f 4f sbci r19, 0xFF ; 255
173e: f9 01 movw r30, r18
1740: 80 83 st Z, r24
1742: 91 83 std Z+1, r25 ; 0x01
1744: a2 83 std Z+2, r26 ; 0x02
1746: b3 83 std Z+3, r27 ; 0x03
1748: 89 81 ldd r24, Y+1 ; 0x01
174a: 8f 5f subi r24, 0xFF ; 255
174c: 89 83 std Y+1, r24 ; 0x01
174e: 89 81 ldd r24, Y+1 ; 0x01
1750: 80 31 cpi r24, 0x10 ; 16
1752: 60 f2 brcs .-104 ; 0x16ec
1754: 19 82 std Y+1, r1 ; 0x01
1756: b2 c2 rjmp .+1380 ; 0x1cbc
1758: 89 81 ldd r24, Y+1 ; 0x01
175a: 80 31 cpi r24, 0x10 ; 16
175c: 08 f4 brcc .+2 ; 0x1760
175e: 39 c1 rjmp .+626 ; 0x19d2
1760: 89 81 ldd r24, Y+1 ; 0x01
1762: 88 2f mov r24, r24
1764: 90 e0 ldi r25, 0x00 ; 0
1766: 8c 01 movw r16, r24
1768: 0f 70 andi r16, 0x0F ; 15
176a: 11 27 eor r17, r17
176c: 89 81 ldd r24, Y+1 ; 0x01
176e: 88 2f mov r24, r24
1770: 90 e0 ldi r25, 0x00 ; 0
1772: 0e 96 adiw r24, 0x0e ; 14
1774: 8f 70 andi r24, 0x0F ; 15
1776: 90 78 andi r25, 0x80 ; 128
1778: 99 23 and r25, r25
177a: 24 f4 brge .+8 ; 0x1784
177c: 01 97 sbiw r24, 0x01 ; 1
177e: 80 6f ori r24, 0xF0 ; 240
1780: 9f 6f ori r25, 0xFF ; 255
1782: 01 96 adiw r24, 0x01 ; 1
1784: 88 0f add r24, r24
1786: 99 1f adc r25, r25
1788: 88 0f add r24, r24
178a: 99 1f adc r25, r25
178c: 9e 01 movw r18, r28
178e: 2f 5f subi r18, 0xFF ; 255
1790: 3f 4f sbci r19, 0xFF ; 255
1792: 82 0f add r24, r18
1794: 93 1f adc r25, r19
1796: 0f 96 adiw r24, 0x0f ; 15
1798: fc 01 movw r30, r24
179a: 80 81 ld r24, Z
179c: 91 81 ldd r25, Z+1 ; 0x01
179e: a2 81 ldd r26, Z+2 ; 0x02
17a0: b3 81 ldd r27, Z+3 ; 0x03
17a2: 41 e1 ldi r20, 0x11 ; 17
17a4: bc 01 movw r22, r24
17a6: cd 01 movw r24, r26
17a8: 0e 94 cd 0a call 0x159a ; 0x159a
17ac: 6b 01 movw r12, r22
17ae: 7c 01 movw r14, r24
17b0: 89 81 ldd r24, Y+1 ; 0x01
17b2: 88 2f mov r24, r24
17b4: 90 e0 ldi r25, 0x00 ; 0
17b6: 0e 96 adiw r24, 0x0e ; 14
17b8: 8f 70 andi r24, 0x0F ; 15
17ba: 90 78 andi r25, 0x80 ; 128
17bc: 99 23 and r25, r25
17be: 24 f4 brge .+8 ; 0x17c8
17c0: 01 97 sbiw r24, 0x01 ; 1
17c2: 80 6f ori r24, 0xF0 ; 240
17c4: 9f 6f ori r25, 0xFF ; 255
17c6: 01 96 adiw r24, 0x01 ; 1
17c8: 88 0f add r24, r24
17ca: 99 1f adc r25, r25
17cc: 88 0f add r24, r24
17ce: 99 1f adc r25, r25
17d0: 9e 01 movw r18, r28
17d2: 2f 5f subi r18, 0xFF ; 255
17d4: 3f 4f sbci r19, 0xFF ; 255
17d6: 82 0f add r24, r18
17d8: 93 1f adc r25, r19
17da: 0f 96 adiw r24, 0x0f ; 15
17dc: fc 01 movw r30, r24
17de: 80 81 ld r24, Z
17e0: 91 81 ldd r25, Z+1 ; 0x01
17e2: a2 81 ldd r26, Z+2 ; 0x02
17e4: b3 81 ldd r27, Z+3 ; 0x03
17e6: 43 e1 ldi r20, 0x13 ; 19
17e8: bc 01 movw r22, r24
17ea: cd 01 movw r24, r26
17ec: 0e 94 cd 0a call 0x159a ; 0x159a
17f0: dc 01 movw r26, r24
17f2: cb 01 movw r24, r22
17f4: a7 01 movw r20, r14
17f6: 96 01 movw r18, r12
17f8: 28 27 eor r18, r24
17fa: 39 27 eor r19, r25
17fc: 4a 27 eor r20, r26
17fe: 5b 27 eor r21, r27
1800: 89 81 ldd r24, Y+1 ; 0x01
1802: 88 2f mov r24, r24
1804: 90 e0 ldi r25, 0x00 ; 0
1806: 0e 96 adiw r24, 0x0e ; 14
1808: 8f 70 andi r24, 0x0F ; 15
180a: 90 78 andi r25, 0x80 ; 128
180c: 99 23 and r25, r25
180e: 24 f4 brge .+8 ; 0x1818
1810: 01 97 sbiw r24, 0x01 ; 1
1812: 80 6f ori r24, 0xF0 ; 240
1814: 9f 6f ori r25, 0xFF ; 255
1816: 01 96 adiw r24, 0x01 ; 1
1818: 88 0f add r24, r24
181a: 99 1f adc r25, r25
181c: 88 0f add r24, r24
181e: 99 1f adc r25, r25
1820: be 01 movw r22, r28
1822: 6f 5f subi r22, 0xFF ; 255
1824: 7f 4f sbci r23, 0xFF ; 255
1826: 86 0f add r24, r22
1828: 97 1f adc r25, r23
182a: 0f 96 adiw r24, 0x0f ; 15
182c: fc 01 movw r30, r24
182e: 80 81 ld r24, Z
1830: 91 81 ldd r25, Z+1 ; 0x01
1832: a2 81 ldd r26, Z+2 ; 0x02
1834: b3 81 ldd r27, Z+3 ; 0x03
1836: 07 2e mov r0, r23
1838: 7a e0 ldi r23, 0x0A ; 10
183a: b6 95 lsr r27
183c: a7 95 ror r26
183e: 97 95 ror r25
1840: 87 95 ror r24
1842: 7a 95 dec r23
1844: d1 f7 brne .-12 ; 0x183a
1846: 70 2d mov r23, r0
1848: 28 27 eor r18, r24
184a: 39 27 eor r19, r25
184c: 4a 27 eor r20, r26
184e: 5b 27 eor r21, r27
1850: 89 81 ldd r24, Y+1 ; 0x01
1852: 88 2f mov r24, r24
1854: 90 e0 ldi r25, 0x00 ; 0
1856: 09 96 adiw r24, 0x09 ; 9
1858: 8f 70 andi r24, 0x0F ; 15
185a: 90 78 andi r25, 0x80 ; 128
185c: 99 23 and r25, r25
185e: 24 f4 brge .+8 ; 0x1868
1860: 01 97 sbiw r24, 0x01 ; 1
1862: 80 6f ori r24, 0xF0 ; 240
1864: 9f 6f ori r25, 0xFF ; 255
1866: 01 96 adiw r24, 0x01 ; 1
1868: 88 0f add r24, r24
186a: 99 1f adc r25, r25
186c: 88 0f add r24, r24
186e: 99 1f adc r25, r25
1870: be 01 movw r22, r28
1872: 6f 5f subi r22, 0xFF ; 255
1874: 7f 4f sbci r23, 0xFF ; 255
1876: 86 0f add r24, r22
1878: 97 1f adc r25, r23
187a: 0f 96 adiw r24, 0x0f ; 15
187c: fc 01 movw r30, r24
187e: 80 81 ld r24, Z
1880: 91 81 ldd r25, Z+1 ; 0x01
1882: a2 81 ldd r26, Z+2 ; 0x02
1884: b3 81 ldd r27, Z+3 ; 0x03
1886: 69 01 movw r12, r18
1888: 7a 01 movw r14, r20
188a: c8 0e add r12, r24
188c: d9 1e adc r13, r25
188e: ea 1e adc r14, r26
1890: fb 1e adc r15, r27
1892: 89 81 ldd r24, Y+1 ; 0x01
1894: 88 2f mov r24, r24
1896: 90 e0 ldi r25, 0x00 ; 0
1898: 01 96 adiw r24, 0x01 ; 1
189a: 8f 70 andi r24, 0x0F ; 15
189c: 90 78 andi r25, 0x80 ; 128
189e: 99 23 and r25, r25
18a0: 24 f4 brge .+8 ; 0x18aa
18a2: 01 97 sbiw r24, 0x01 ; 1
18a4: 80 6f ori r24, 0xF0 ; 240
18a6: 9f 6f ori r25, 0xFF ; 255
18a8: 01 96 adiw r24, 0x01 ; 1
18aa: 88 0f add r24, r24
18ac: 99 1f adc r25, r25
18ae: 88 0f add r24, r24
18b0: 99 1f adc r25, r25
18b2: 9e 01 movw r18, r28
18b4: 2f 5f subi r18, 0xFF ; 255
18b6: 3f 4f sbci r19, 0xFF ; 255
18b8: 82 0f add r24, r18
18ba: 93 1f adc r25, r19
18bc: 0f 96 adiw r24, 0x0f ; 15
18be: fc 01 movw r30, r24
18c0: 80 81 ld r24, Z
18c2: 91 81 ldd r25, Z+1 ; 0x01
18c4: a2 81 ldd r26, Z+2 ; 0x02
18c6: b3 81 ldd r27, Z+3 ; 0x03
18c8: 47 e0 ldi r20, 0x07 ; 7
18ca: bc 01 movw r22, r24
18cc: cd 01 movw r24, r26
18ce: 0e 94 cd 0a call 0x159a ; 0x159a
18d2: 4b 01 movw r8, r22
18d4: 5c 01 movw r10, r24
18d6: 89 81 ldd r24, Y+1 ; 0x01
18d8: 88 2f mov r24, r24
18da: 90 e0 ldi r25, 0x00 ; 0
18dc: 01 96 adiw r24, 0x01 ; 1
18de: 8f 70 andi r24, 0x0F ; 15
18e0: 90 78 andi r25, 0x80 ; 128
18e2: 99 23 and r25, r25
18e4: 24 f4 brge .+8 ; 0x18ee
18e6: 01 97 sbiw r24, 0x01 ; 1
18e8: 80 6f ori r24, 0xF0 ; 240
18ea: 9f 6f ori r25, 0xFF ; 255
18ec: 01 96 adiw r24, 0x01 ; 1
18ee: 88 0f add r24, r24
18f0: 99 1f adc r25, r25
18f2: 88 0f add r24, r24
18f4: 99 1f adc r25, r25
18f6: 9e 01 movw r18, r28
18f8: 2f 5f subi r18, 0xFF ; 255
18fa: 3f 4f sbci r19, 0xFF ; 255
18fc: 82 0f add r24, r18
18fe: 93 1f adc r25, r19
1900: 0f 96 adiw r24, 0x0f ; 15
1902: fc 01 movw r30, r24
1904: 80 81 ld r24, Z
1906: 91 81 ldd r25, Z+1 ; 0x01
1908: a2 81 ldd r26, Z+2 ; 0x02
190a: b3 81 ldd r27, Z+3 ; 0x03
190c: 42 e1 ldi r20, 0x12 ; 18
190e: bc 01 movw r22, r24
1910: cd 01 movw r24, r26
1912: 0e 94 cd 0a call 0x159a ; 0x159a
1916: dc 01 movw r26, r24
1918: cb 01 movw r24, r22
191a: a5 01 movw r20, r10
191c: 94 01 movw r18, r8
191e: 28 27 eor r18, r24
1920: 39 27 eor r19, r25
1922: 4a 27 eor r20, r26
1924: 5b 27 eor r21, r27
1926: 89 81 ldd r24, Y+1 ; 0x01
1928: 88 2f mov r24, r24
192a: 90 e0 ldi r25, 0x00 ; 0
192c: 01 96 adiw r24, 0x01 ; 1
192e: 8f 70 andi r24, 0x0F ; 15
1930: 90 78 andi r25, 0x80 ; 128
1932: 99 23 and r25, r25
1934: 24 f4 brge .+8 ; 0x193e
1936: 01 97 sbiw r24, 0x01 ; 1
1938: 80 6f ori r24, 0xF0 ; 240
193a: 9f 6f ori r25, 0xFF ; 255
193c: 01 96 adiw r24, 0x01 ; 1
193e: 88 0f add r24, r24
1940: 99 1f adc r25, r25
1942: 88 0f add r24, r24
1944: 99 1f adc r25, r25
1946: be 01 movw r22, r28
1948: 6f 5f subi r22, 0xFF ; 255
194a: 7f 4f sbci r23, 0xFF ; 255
194c: 86 0f add r24, r22
194e: 97 1f adc r25, r23
1950: 0f 96 adiw r24, 0x0f ; 15
1952: fc 01 movw r30, r24
1954: 80 81 ld r24, Z
1956: 91 81 ldd r25, Z+1 ; 0x01
1958: a2 81 ldd r26, Z+2 ; 0x02
195a: b3 81 ldd r27, Z+3 ; 0x03
195c: 68 94 set
195e: 12 f8 bld r1, 2
1960: b6 95 lsr r27
1962: a7 95 ror r26
1964: 97 95 ror r25
1966: 87 95 ror r24
1968: 16 94 lsr r1
196a: d1 f7 brne .-12 ; 0x1960
196c: 82 27 eor r24, r18
196e: 93 27 eor r25, r19
1970: a4 27 eor r26, r20
1972: b5 27 eor r27, r21
1974: a7 01 movw r20, r14
1976: 96 01 movw r18, r12
1978: 28 0f add r18, r24
197a: 39 1f adc r19, r25
197c: 4a 1f adc r20, r26
197e: 5b 1f adc r21, r27
1980: 89 81 ldd r24, Y+1 ; 0x01
1982: 88 2f mov r24, r24
1984: 90 e0 ldi r25, 0x00 ; 0
1986: 8f 70 andi r24, 0x0F ; 15
1988: 99 27 eor r25, r25
198a: 88 0f add r24, r24
198c: 99 1f adc r25, r25
198e: 88 0f add r24, r24
1990: 99 1f adc r25, r25
1992: be 01 movw r22, r28
1994: 6f 5f subi r22, 0xFF ; 255
1996: 7f 4f sbci r23, 0xFF ; 255
1998: 86 0f add r24, r22
199a: 97 1f adc r25, r23
199c: 0f 96 adiw r24, 0x0f ; 15
199e: fc 01 movw r30, r24
19a0: 80 81 ld r24, Z
19a2: 91 81 ldd r25, Z+1 ; 0x01
19a4: a2 81 ldd r26, Z+2 ; 0x02
19a6: b3 81 ldd r27, Z+3 ; 0x03
19a8: 82 0f add r24, r18
19aa: 93 1f adc r25, r19
19ac: a4 1f adc r26, r20
19ae: b5 1f adc r27, r21
19b0: 98 01 movw r18, r16
19b2: 22 0f add r18, r18
19b4: 33 1f adc r19, r19
19b6: 22 0f add r18, r18
19b8: 33 1f adc r19, r19
19ba: ae 01 movw r20, r28
19bc: 4f 5f subi r20, 0xFF ; 255
19be: 5f 4f sbci r21, 0xFF ; 255
19c0: 24 0f add r18, r20
19c2: 35 1f adc r19, r21
19c4: 21 5f subi r18, 0xF1 ; 241
19c6: 3f 4f sbci r19, 0xFF ; 255
19c8: f9 01 movw r30, r18
19ca: 80 83 st Z, r24
19cc: 91 83 std Z+1, r25 ; 0x01
19ce: a2 83 std Z+2, r26 ; 0x02
19d0: b3 83 std Z+3, r27 ; 0x03
19d2: ce 01 movw r24, r28
19d4: 80 5b subi r24, 0xB0 ; 176
19d6: 9f 4f sbci r25, 0xFF ; 255
19d8: fc 01 movw r30, r24
19da: c4 8c ldd r12, Z+28 ; 0x1c
19dc: d5 8c ldd r13, Z+29 ; 0x1d
19de: e6 8c ldd r14, Z+30 ; 0x1e
19e0: f7 8c ldd r15, Z+31 ; 0x1f
19e2: ce 01 movw r24, r28
19e4: 80 5b subi r24, 0xB0 ; 176
19e6: 9f 4f sbci r25, 0xFF ; 255
19e8: fc 01 movw r30, r24
19ea: 80 89 ldd r24, Z+16 ; 0x10
19ec: 91 89 ldd r25, Z+17 ; 0x11
19ee: a2 89 ldd r26, Z+18 ; 0x12
19f0: b3 89 ldd r27, Z+19 ; 0x13
19f2: 46 e0 ldi r20, 0x06 ; 6
19f4: bc 01 movw r22, r24
19f6: cd 01 movw r24, r26
19f8: 0e 94 cd 0a call 0x159a ; 0x159a
19fc: 4b 01 movw r8, r22
19fe: 5c 01 movw r10, r24
1a00: ce 01 movw r24, r28
1a02: 80 5b subi r24, 0xB0 ; 176
1a04: 9f 4f sbci r25, 0xFF ; 255
1a06: fc 01 movw r30, r24
1a08: 80 89 ldd r24, Z+16 ; 0x10
1a0a: 91 89 ldd r25, Z+17 ; 0x11
1a0c: a2 89 ldd r26, Z+18 ; 0x12
1a0e: b3 89 ldd r27, Z+19 ; 0x13
1a10: 4b e0 ldi r20, 0x0B ; 11
1a12: bc 01 movw r22, r24
1a14: cd 01 movw r24, r26
1a16: 0e 94 cd 0a call 0x159a ; 0x159a
1a1a: dc 01 movw r26, r24
1a1c: cb 01 movw r24, r22
1a1e: 88 26 eor r8, r24
1a20: 99 26 eor r9, r25
1a22: aa 26 eor r10, r26
1a24: bb 26 eor r11, r27
1a26: ce 01 movw r24, r28
1a28: 80 5b subi r24, 0xB0 ; 176
1a2a: 9f 4f sbci r25, 0xFF ; 255
1a2c: fc 01 movw r30, r24
1a2e: 80 89 ldd r24, Z+16 ; 0x10
1a30: 91 89 ldd r25, Z+17 ; 0x11
1a32: a2 89 ldd r26, Z+18 ; 0x12
1a34: b3 89 ldd r27, Z+19 ; 0x13
1a36: 49 e1 ldi r20, 0x19 ; 25
1a38: bc 01 movw r22, r24
1a3a: cd 01 movw r24, r26
1a3c: 0e 94 cd 0a call 0x159a ; 0x159a
1a40: dc 01 movw r26, r24
1a42: cb 01 movw r24, r22
1a44: 88 25 eor r24, r8
1a46: 99 25 eor r25, r9
1a48: aa 25 eor r26, r10
1a4a: bb 25 eor r27, r11
1a4c: a7 01 movw r20, r14
1a4e: 96 01 movw r18, r12
1a50: 28 0f add r18, r24
1a52: 39 1f adc r19, r25
1a54: 4a 1f adc r20, r26
1a56: 5b 1f adc r21, r27
1a58: ce 01 movw r24, r28
1a5a: 80 5b subi r24, 0xB0 ; 176
1a5c: 9f 4f sbci r25, 0xFF ; 255
1a5e: fc 01 movw r30, r24
1a60: e0 88 ldd r14, Z+16 ; 0x10
1a62: f1 88 ldd r15, Z+17 ; 0x11
1a64: 02 89 ldd r16, Z+18 ; 0x12
1a66: 13 89 ldd r17, Z+19 ; 0x13
1a68: ce 01 movw r24, r28
1a6a: 80 5b subi r24, 0xB0 ; 176
1a6c: 9f 4f sbci r25, 0xFF ; 255
1a6e: fc 01 movw r30, r24
1a70: 84 89 ldd r24, Z+20 ; 0x14
1a72: 95 89 ldd r25, Z+21 ; 0x15
1a74: a6 89 ldd r26, Z+22 ; 0x16
1a76: b7 89 ldd r27, Z+23 ; 0x17
1a78: e8 22 and r14, r24
1a7a: f9 22 and r15, r25
1a7c: 0a 23 and r16, r26
1a7e: 1b 23 and r17, r27
1a80: ce 01 movw r24, r28
1a82: 80 5b subi r24, 0xB0 ; 176
1a84: 9f 4f sbci r25, 0xFF ; 255
1a86: fc 01 movw r30, r24
1a88: 80 89 ldd r24, Z+16 ; 0x10
1a8a: 91 89 ldd r25, Z+17 ; 0x11
1a8c: a2 89 ldd r26, Z+18 ; 0x12
1a8e: b3 89 ldd r27, Z+19 ; 0x13
1a90: 5c 01 movw r10, r24
1a92: 6d 01 movw r12, r26
1a94: a0 94 com r10
1a96: b0 94 com r11
1a98: c0 94 com r12
1a9a: d0 94 com r13
1a9c: ce 01 movw r24, r28
1a9e: 80 5b subi r24, 0xB0 ; 176
1aa0: 9f 4f sbci r25, 0xFF ; 255
1aa2: fc 01 movw r30, r24
1aa4: 80 8d ldd r24, Z+24 ; 0x18
1aa6: 91 8d ldd r25, Z+25 ; 0x19
1aa8: a2 8d ldd r26, Z+26 ; 0x1a
1aaa: b3 8d ldd r27, Z+27 ; 0x1b
1aac: 8a 21 and r24, r10
1aae: 9b 21 and r25, r11
1ab0: ac 21 and r26, r12
1ab2: bd 21 and r27, r13
1ab4: 8e 25 eor r24, r14
1ab6: 9f 25 eor r25, r15
1ab8: a0 27 eor r26, r16
1aba: b1 27 eor r27, r17
1abc: 28 0f add r18, r24
1abe: 39 1f adc r19, r25
1ac0: 4a 1f adc r20, r26
1ac2: 5b 1f adc r21, r27
1ac4: 89 81 ldd r24, Y+1 ; 0x01
1ac6: 88 2f mov r24, r24
1ac8: 90 e0 ldi r25, 0x00 ; 0
1aca: 88 0f add r24, r24
1acc: 99 1f adc r25, r25
1ace: 88 0f add r24, r24
1ad0: 99 1f adc r25, r25
1ad2: 86 59 subi r24, 0x96 ; 150
1ad4: 9d 4f sbci r25, 0xFD ; 253
1ad6: 8a 83 std Y+2, r24 ; 0x02
1ad8: 9b 83 std Y+3, r25 ; 0x03
1ada: 8a 81 ldd r24, Y+2 ; 0x02
1adc: 9b 81 ldd r25, Y+3 ; 0x03
1ade: bc 01 movw r22, r24
1ae0: fb 01 movw r30, r22
1ae2: 85 91 lpm r24, Z+
1ae4: 95 91 lpm r25, Z+
1ae6: a5 91 lpm r26, Z+
1ae8: b4 91 lpm r27, Z
1aea: bf 01 movw r22, r30
1aec: 8c 83 std Y+4, r24 ; 0x04
1aee: 9d 83 std Y+5, r25 ; 0x05
1af0: ae 83 std Y+6, r26 ; 0x06
1af2: bf 83 std Y+7, r27 ; 0x07
1af4: 6a 83 std Y+2, r22 ; 0x02
1af6: 7b 83 std Y+3, r23 ; 0x03
1af8: 8c 81 ldd r24, Y+4 ; 0x04
1afa: 9d 81 ldd r25, Y+5 ; 0x05
1afc: ae 81 ldd r26, Y+6 ; 0x06
1afe: bf 81 ldd r27, Y+7 ; 0x07
1b00: 28 0f add r18, r24
1b02: 39 1f adc r19, r25
1b04: 4a 1f adc r20, r26
1b06: 5b 1f adc r21, r27
1b08: 89 81 ldd r24, Y+1 ; 0x01
1b0a: 88 2f mov r24, r24
1b0c: 90 e0 ldi r25, 0x00 ; 0
1b0e: 8f 70 andi r24, 0x0F ; 15
1b10: 99 27 eor r25, r25
1b12: 88 0f add r24, r24
1b14: 99 1f adc r25, r25
1b16: 88 0f add r24, r24
1b18: 99 1f adc r25, r25
1b1a: be 01 movw r22, r28
1b1c: 6f 5f subi r22, 0xFF ; 255
1b1e: 7f 4f sbci r23, 0xFF ; 255
1b20: 86 0f add r24, r22
1b22: 97 1f adc r25, r23
1b24: 0f 96 adiw r24, 0x0f ; 15
1b26: fc 01 movw r30, r24
1b28: 80 81 ld r24, Z
1b2a: 91 81 ldd r25, Z+1 ; 0x01
1b2c: a2 81 ldd r26, Z+2 ; 0x02
1b2e: b3 81 ldd r27, Z+3 ; 0x03
1b30: 82 0f add r24, r18
1b32: 93 1f adc r25, r19
1b34: a4 1f adc r26, r20
1b36: b5 1f adc r27, r21
1b38: 88 87 std Y+8, r24 ; 0x08
1b3a: 99 87 std Y+9, r25 ; 0x09
1b3c: aa 87 std Y+10, r26 ; 0x0a
1b3e: bb 87 std Y+11, r27 ; 0x0b
1b40: ce 01 movw r24, r28
1b42: 80 5b subi r24, 0xB0 ; 176
1b44: 9f 4f sbci r25, 0xFF ; 255
1b46: fc 01 movw r30, r24
1b48: 80 81 ld r24, Z
1b4a: 91 81 ldd r25, Z+1 ; 0x01
1b4c: a2 81 ldd r26, Z+2 ; 0x02
1b4e: b3 81 ldd r27, Z+3 ; 0x03
1b50: 42 e0 ldi r20, 0x02 ; 2
1b52: bc 01 movw r22, r24
1b54: cd 01 movw r24, r26
1b56: 0e 94 cd 0a call 0x159a ; 0x159a
1b5a: 6b 01 movw r12, r22
1b5c: 7c 01 movw r14, r24
1b5e: ce 01 movw r24, r28
1b60: 80 5b subi r24, 0xB0 ; 176
1b62: 9f 4f sbci r25, 0xFF ; 255
1b64: fc 01 movw r30, r24
1b66: 80 81 ld r24, Z
1b68: 91 81 ldd r25, Z+1 ; 0x01
1b6a: a2 81 ldd r26, Z+2 ; 0x02
1b6c: b3 81 ldd r27, Z+3 ; 0x03
1b6e: 4d e0 ldi r20, 0x0D ; 13
1b70: bc 01 movw r22, r24
1b72: cd 01 movw r24, r26
1b74: 0e 94 cd 0a call 0x159a ; 0x159a
1b78: dc 01 movw r26, r24
1b7a: cb 01 movw r24, r22
1b7c: c8 26 eor r12, r24
1b7e: d9 26 eor r13, r25
1b80: ea 26 eor r14, r26
1b82: fb 26 eor r15, r27
1b84: ce 01 movw r24, r28
1b86: 80 5b subi r24, 0xB0 ; 176
1b88: 9f 4f sbci r25, 0xFF ; 255
1b8a: fc 01 movw r30, r24
1b8c: 80 81 ld r24, Z
1b8e: 91 81 ldd r25, Z+1 ; 0x01
1b90: a2 81 ldd r26, Z+2 ; 0x02
1b92: b3 81 ldd r27, Z+3 ; 0x03
1b94: 46 e1 ldi r20, 0x16 ; 22
1b96: bc 01 movw r22, r24
1b98: cd 01 movw r24, r26
1b9a: 0e 94 cd 0a call 0x159a ; 0x159a
1b9e: dc 01 movw r26, r24
1ba0: cb 01 movw r24, r22
1ba2: a7 01 movw r20, r14
1ba4: 96 01 movw r18, r12
1ba6: 28 27 eor r18, r24
1ba8: 39 27 eor r19, r25
1baa: 4a 27 eor r20, r26
1bac: 5b 27 eor r21, r27
1bae: ce 01 movw r24, r28
1bb0: 80 5b subi r24, 0xB0 ; 176
1bb2: 9f 4f sbci r25, 0xFF ; 255
1bb4: fc 01 movw r30, r24
1bb6: e0 80 ld r14, Z
1bb8: f1 80 ldd r15, Z+1 ; 0x01
1bba: 02 81 ldd r16, Z+2 ; 0x02
1bbc: 13 81 ldd r17, Z+3 ; 0x03
1bbe: ce 01 movw r24, r28
1bc0: 80 5b subi r24, 0xB0 ; 176
1bc2: 9f 4f sbci r25, 0xFF ; 255
1bc4: fc 01 movw r30, r24
1bc6: 84 81 ldd r24, Z+4 ; 0x04
1bc8: 95 81 ldd r25, Z+5 ; 0x05
1bca: a6 81 ldd r26, Z+6 ; 0x06
1bcc: b7 81 ldd r27, Z+7 ; 0x07
1bce: e8 22 and r14, r24
1bd0: f9 22 and r15, r25
1bd2: 0a 23 and r16, r26
1bd4: 1b 23 and r17, r27
1bd6: ce 01 movw r24, r28
1bd8: 80 5b subi r24, 0xB0 ; 176
1bda: 9f 4f sbci r25, 0xFF ; 255
1bdc: fc 01 movw r30, r24
1bde: a0 80 ld r10, Z
1be0: b1 80 ldd r11, Z+1 ; 0x01
1be2: c2 80 ldd r12, Z+2 ; 0x02
1be4: d3 80 ldd r13, Z+3 ; 0x03
1be6: ce 01 movw r24, r28
1be8: 80 5b subi r24, 0xB0 ; 176
1bea: 9f 4f sbci r25, 0xFF ; 255
1bec: fc 01 movw r30, r24
1bee: 80 85 ldd r24, Z+8 ; 0x08
1bf0: 91 85 ldd r25, Z+9 ; 0x09
1bf2: a2 85 ldd r26, Z+10 ; 0x0a
1bf4: b3 85 ldd r27, Z+11 ; 0x0b
1bf6: 8a 21 and r24, r10
1bf8: 9b 21 and r25, r11
1bfa: ac 21 and r26, r12
1bfc: bd 21 and r27, r13
1bfe: e8 26 eor r14, r24
1c00: f9 26 eor r15, r25
1c02: 0a 27 eor r16, r26
1c04: 1b 27 eor r17, r27
1c06: ce 01 movw r24, r28
1c08: 80 5b subi r24, 0xB0 ; 176
1c0a: 9f 4f sbci r25, 0xFF ; 255
1c0c: fc 01 movw r30, r24
1c0e: a4 80 ldd r10, Z+4 ; 0x04
1c10: b5 80 ldd r11, Z+5 ; 0x05
1c12: c6 80 ldd r12, Z+6 ; 0x06
1c14: d7 80 ldd r13, Z+7 ; 0x07
1c16: ce 01 movw r24, r28
1c18: 80 5b subi r24, 0xB0 ; 176
1c1a: 9f 4f sbci r25, 0xFF ; 255
1c1c: fc 01 movw r30, r24
1c1e: 80 85 ldd r24, Z+8 ; 0x08
1c20: 91 85 ldd r25, Z+9 ; 0x09
1c22: a2 85 ldd r26, Z+10 ; 0x0a
1c24: b3 85 ldd r27, Z+11 ; 0x0b
1c26: 8a 21 and r24, r10
1c28: 9b 21 and r25, r11
1c2a: ac 21 and r26, r12
1c2c: bd 21 and r27, r13
1c2e: 8e 25 eor r24, r14
1c30: 9f 25 eor r25, r15
1c32: a0 27 eor r26, r16
1c34: b1 27 eor r27, r17
1c36: 82 0f add r24, r18
1c38: 93 1f adc r25, r19
1c3a: a4 1f adc r26, r20
1c3c: b5 1f adc r27, r21
1c3e: 8c 87 std Y+12, r24 ; 0x0c
1c40: 9d 87 std Y+13, r25 ; 0x0d
1c42: ae 87 std Y+14, r26 ; 0x0e
1c44: bf 87 std Y+15, r27 ; 0x0f
1c46: 9e 01 movw r18, r28
1c48: 20 5b subi r18, 0xB0 ; 176
1c4a: 3f 4f sbci r19, 0xFF ; 255
1c4c: ce 01 movw r24, r28
1c4e: 80 5b subi r24, 0xB0 ; 176
1c50: 9f 4f sbci r25, 0xFF ; 255
1c52: 04 96 adiw r24, 0x04 ; 4
1c54: 4c e1 ldi r20, 0x1C ; 28
1c56: 50 e0 ldi r21, 0x00 ; 0
1c58: b9 01 movw r22, r18
1c5a: 0e 94 f5 27 call 0x4fea ; 0x4fea
1c5e: ce 01 movw r24, r28
1c60: 80 5b subi r24, 0xB0 ; 176
1c62: 9f 4f sbci r25, 0xFF ; 255
1c64: fc 01 movw r30, r24
1c66: 20 89 ldd r18, Z+16 ; 0x10
1c68: 31 89 ldd r19, Z+17 ; 0x11
1c6a: 42 89 ldd r20, Z+18 ; 0x12
1c6c: 53 89 ldd r21, Z+19 ; 0x13
1c6e: 88 85 ldd r24, Y+8 ; 0x08
1c70: 99 85 ldd r25, Y+9 ; 0x09
1c72: aa 85 ldd r26, Y+10 ; 0x0a
1c74: bb 85 ldd r27, Y+11 ; 0x0b
1c76: 82 0f add r24, r18
1c78: 93 1f adc r25, r19
1c7a: a4 1f adc r26, r20
1c7c: b5 1f adc r27, r21
1c7e: 9e 01 movw r18, r28
1c80: 20 5b subi r18, 0xB0 ; 176
1c82: 3f 4f sbci r19, 0xFF ; 255
1c84: f9 01 movw r30, r18
1c86: 80 8b std Z+16, r24 ; 0x10
1c88: 91 8b std Z+17, r25 ; 0x11
1c8a: a2 8b std Z+18, r26 ; 0x12
1c8c: b3 8b std Z+19, r27 ; 0x13
1c8e: 28 85 ldd r18, Y+8 ; 0x08
1c90: 39 85 ldd r19, Y+9 ; 0x09
1c92: 4a 85 ldd r20, Y+10 ; 0x0a
1c94: 5b 85 ldd r21, Y+11 ; 0x0b
1c96: 8c 85 ldd r24, Y+12 ; 0x0c
1c98: 9d 85 ldd r25, Y+13 ; 0x0d
1c9a: ae 85 ldd r26, Y+14 ; 0x0e
1c9c: bf 85 ldd r27, Y+15 ; 0x0f
1c9e: 82 0f add r24, r18
1ca0: 93 1f adc r25, r19
1ca2: a4 1f adc r26, r20
1ca4: b5 1f adc r27, r21
1ca6: 9e 01 movw r18, r28
1ca8: 20 5b subi r18, 0xB0 ; 176
1caa: 3f 4f sbci r19, 0xFF ; 255
1cac: f9 01 movw r30, r18
1cae: 80 83 st Z, r24
1cb0: 91 83 std Z+1, r25 ; 0x01
1cb2: a2 83 std Z+2, r26 ; 0x02
1cb4: b3 83 std Z+3, r27 ; 0x03
1cb6: 89 81 ldd r24, Y+1 ; 0x01
1cb8: 8f 5f subi r24, 0xFF ; 255
1cba: 89 83 std Y+1, r24 ; 0x01
1cbc: 89 81 ldd r24, Y+1 ; 0x01
1cbe: 80 34 cpi r24, 0x40 ; 64
1cc0: 08 f4 brcc .+2 ; 0x1cc4
1cc2: 4a cd rjmp .-1388 ; 0x1758
1cc4: 19 82 std Y+1, r1 ; 0x01
1cc6: 41 c0 rjmp .+130 ; 0x1d4a
1cc8: 89 81 ldd r24, Y+1 ; 0x01
1cca: 68 2f mov r22, r24
1ccc: 70 e0 ldi r23, 0x00 ; 0
1cce: 89 81 ldd r24, Y+1 ; 0x01
1cd0: 88 2f mov r24, r24
1cd2: 90 e0 ldi r25, 0x00 ; 0
1cd4: 9e 01 movw r18, r28
1cd6: 20 59 subi r18, 0x90 ; 144
1cd8: 3f 4f sbci r19, 0xFF ; 255
1cda: f9 01 movw r30, r18
1cdc: 20 81 ld r18, Z
1cde: 31 81 ldd r19, Z+1 ; 0x01
1ce0: 88 0f add r24, r24
1ce2: 99 1f adc r25, r25
1ce4: 88 0f add r24, r24
1ce6: 99 1f adc r25, r25
1ce8: 82 0f add r24, r18
1cea: 93 1f adc r25, r19
1cec: fc 01 movw r30, r24
1cee: 20 81 ld r18, Z
1cf0: 31 81 ldd r19, Z+1 ; 0x01
1cf2: 42 81 ldd r20, Z+2 ; 0x02
1cf4: 53 81 ldd r21, Z+3 ; 0x03
1cf6: 89 81 ldd r24, Y+1 ; 0x01
1cf8: 88 2f mov r24, r24
1cfa: 90 e0 ldi r25, 0x00 ; 0
1cfc: fe 01 movw r30, r28
1cfe: e0 5b subi r30, 0xB0 ; 176
1d00: ff 4f sbci r31, 0xFF ; 255
1d02: 88 0f add r24, r24
1d04: 99 1f adc r25, r25
1d06: 88 0f add r24, r24
1d08: 99 1f adc r25, r25
1d0a: 8e 0f add r24, r30
1d0c: 9f 1f adc r25, r31
1d0e: fc 01 movw r30, r24
1d10: 80 81 ld r24, Z
1d12: 91 81 ldd r25, Z+1 ; 0x01
1d14: a2 81 ldd r26, Z+2 ; 0x02
1d16: b3 81 ldd r27, Z+3 ; 0x03
1d18: 82 0f add r24, r18
1d1a: 93 1f adc r25, r19
1d1c: a4 1f adc r26, r20
1d1e: b5 1f adc r27, r21
1d20: 9e 01 movw r18, r28
1d22: 20 59 subi r18, 0x90 ; 144
1d24: 3f 4f sbci r19, 0xFF ; 255
1d26: f9 01 movw r30, r18
1d28: 40 81 ld r20, Z
1d2a: 51 81 ldd r21, Z+1 ; 0x01
1d2c: 9b 01 movw r18, r22
1d2e: 22 0f add r18, r18
1d30: 33 1f adc r19, r19
1d32: 22 0f add r18, r18
1d34: 33 1f adc r19, r19
1d36: 24 0f add r18, r20
1d38: 35 1f adc r19, r21
1d3a: f9 01 movw r30, r18
1d3c: 80 83 st Z, r24
1d3e: 91 83 std Z+1, r25 ; 0x01
1d40: a2 83 std Z+2, r26 ; 0x02
1d42: b3 83 std Z+3, r27 ; 0x03
1d44: 89 81 ldd r24, Y+1 ; 0x01
1d46: 8f 5f subi r24, 0xFF ; 255
1d48: 89 83 std Y+1, r24 ; 0x01
1d4a: 89 81 ldd r24, Y+1 ; 0x01
1d4c: 88 30 cpi r24, 0x08 ; 8
1d4e: 08 f4 brcc .+2 ; 0x1d52
1d50: bb cf rjmp .-138 ; 0x1cc8
1d52: ce 01 movw r24, r28
1d54: 80 59 subi r24, 0x90 ; 144
1d56: 9f 4f sbci r25, 0xFF ; 255
1d58: fc 01 movw r30, r24
1d5a: 80 81 ld r24, Z
1d5c: 91 81 ldd r25, Z+1 ; 0x01
1d5e: fc 01 movw r30, r24
1d60: 80 a1 ldd r24, Z+32 ; 0x20
1d62: 91 a1 ldd r25, Z+33 ; 0x21
1d64: a2 a1 ldd r26, Z+34 ; 0x22
1d66: b3 a1 ldd r27, Z+35 ; 0x23
1d68: 01 96 adiw r24, 0x01 ; 1
1d6a: a1 1d adc r26, r1
1d6c: b1 1d adc r27, r1
1d6e: 9e 01 movw r18, r28
1d70: 20 59 subi r18, 0x90 ; 144
1d72: 3f 4f sbci r19, 0xFF ; 255
1d74: f9 01 movw r30, r18
1d76: 20 81 ld r18, Z
1d78: 31 81 ldd r19, Z+1 ; 0x01
1d7a: f9 01 movw r30, r18
1d7c: 80 a3 std Z+32, r24 ; 0x20
1d7e: 91 a3 std Z+33, r25 ; 0x21
1d80: a2 a3 std Z+34, r26 ; 0x22
1d82: b3 a3 std Z+35, r27 ; 0x23
1d84: cd 58 subi r28, 0x8D ; 141
1d86: df 4f sbci r29, 0xFF ; 255
1d88: cd bf out 0x3d, r28 ; 61
1d8a: de bf out 0x3e, r29 ; 62
1d8c: df 91 pop r29
1d8e: cf 91 pop r28
1d90: 1f 91 pop r17
1d92: 0f 91 pop r16
1d94: ff 90 pop r15
1d96: ef 90 pop r14
1d98: df 90 pop r13
1d9a: cf 90 pop r12
1d9c: bf 90 pop r11
1d9e: af 90 pop r10
1da0: 9f 90 pop r9
1da2: 8f 90 pop r8
1da4: 08 95 ret
1da6: af 92 push r10
1da8: bf 92 push r11
1daa: cf 92 push r12
1dac: df 92 push r13
1dae: ef 92 push r14
1db0: ff 92 push r15
1db2: 0f 93 push r16
1db4: 1f 93 push r17
1db6: cf 93 push r28
1db8: df 93 push r29
1dba: cd b7 in r28, 0x3d ; 61
1dbc: de b7 in r29, 0x3e ; 62
1dbe: cf 54 subi r28, 0x4F ; 79
1dc0: d1 09 sbc r29, r1
1dc2: cd bf out 0x3d, r28 ; 61
1dc4: de bf out 0x3e, r29 ; 62
1dc6: 9e 01 movw r18, r28
1dc8: 26 5b subi r18, 0xB6 ; 182
1dca: 3f 4f sbci r19, 0xFF ; 255
1dcc: f9 01 movw r30, r18
1dce: 80 83 st Z, r24
1dd0: 91 83 std Z+1, r25 ; 0x01
1dd2: ce 01 movw r24, r28
1dd4: 84 5b subi r24, 0xB4 ; 180
1dd6: 9f 4f sbci r25, 0xFF ; 255
1dd8: fc 01 movw r30, r24
1dda: 60 83 st Z, r22
1ddc: 71 83 std Z+1, r23 ; 0x01
1dde: ce 01 movw r24, r28
1de0: 82 5b subi r24, 0xB2 ; 178
1de2: 9f 4f sbci r25, 0xFF ; 255
1de4: fc 01 movw r30, r24
1de6: 40 83 st Z, r20
1de8: 51 83 std Z+1, r21 ; 0x01
1dea: 2a c0 rjmp .+84 ; 0x1e40
1dec: ce 01 movw r24, r28
1dee: 84 5b subi r24, 0xB4 ; 180
1df0: 9f 4f sbci r25, 0xFF ; 255
1df2: fc 01 movw r30, r24
1df4: 20 81 ld r18, Z
1df6: 31 81 ldd r19, Z+1 ; 0x01
1df8: ce 01 movw r24, r28
1dfa: 86 5b subi r24, 0xB6 ; 182
1dfc: 9f 4f sbci r25, 0xFF ; 255
1dfe: fc 01 movw r30, r24
1e00: 80 81 ld r24, Z
1e02: 91 81 ldd r25, Z+1 ; 0x01
1e04: b9 01 movw r22, r18
1e06: 0e 94 46 0b call 0x168c ; 0x168c
1e0a: ce 01 movw r24, r28
1e0c: 82 5b subi r24, 0xB2 ; 178
1e0e: 9f 4f sbci r25, 0xFF ; 255
1e10: 9e 01 movw r18, r28
1e12: 22 5b subi r18, 0xB2 ; 178
1e14: 3f 4f sbci r19, 0xFF ; 255
1e16: f9 01 movw r30, r18
1e18: 20 81 ld r18, Z
1e1a: 31 81 ldd r19, Z+1 ; 0x01
1e1c: 32 50 subi r19, 0x02 ; 2
1e1e: fc 01 movw r30, r24
1e20: 20 83 st Z, r18
1e22: 31 83 std Z+1, r19 ; 0x01
1e24: ce 01 movw r24, r28
1e26: 84 5b subi r24, 0xB4 ; 180
1e28: 9f 4f sbci r25, 0xFF ; 255
1e2a: 9e 01 movw r18, r28
1e2c: 24 5b subi r18, 0xB4 ; 180
1e2e: 3f 4f sbci r19, 0xFF ; 255
1e30: f9 01 movw r30, r18
1e32: 20 81 ld r18, Z
1e34: 31 81 ldd r19, Z+1 ; 0x01
1e36: 20 5c subi r18, 0xC0 ; 192
1e38: 3f 4f sbci r19, 0xFF ; 255
1e3a: fc 01 movw r30, r24
1e3c: 20 83 st Z, r18
1e3e: 31 83 std Z+1, r19 ; 0x01
1e40: ce 01 movw r24, r28
1e42: 82 5b subi r24, 0xB2 ; 178
1e44: 9f 4f sbci r25, 0xFF ; 255
1e46: fc 01 movw r30, r24
1e48: 80 81 ld r24, Z
1e4a: 91 81 ldd r25, Z+1 ; 0x01
1e4c: 81 15 cp r24, r1
1e4e: 92 40 sbci r25, 0x02 ; 2
1e50: 68 f6 brcc .-102 ; 0x1dec
1e52: ce 01 movw r24, r28
1e54: 86 5b subi r24, 0xB6 ; 182
1e56: 9f 4f sbci r25, 0xFF ; 255
1e58: fc 01 movw r30, r24
1e5a: 80 81 ld r24, Z
1e5c: 91 81 ldd r25, Z+1 ; 0x01
1e5e: fc 01 movw r30, r24
1e60: 80 a1 ldd r24, Z+32 ; 0x20
1e62: 91 a1 ldd r25, Z+33 ; 0x21
1e64: a2 a1 ldd r26, Z+34 ; 0x22
1e66: b3 a1 ldd r27, Z+35 ; 0x23
1e68: 9c 01 movw r18, r24
1e6a: ad 01 movw r20, r26
1e6c: 60 e0 ldi r22, 0x00 ; 0
1e6e: 70 e0 ldi r23, 0x00 ; 0
1e70: cb 01 movw r24, r22
1e72: 29 83 std Y+1, r18 ; 0x01
1e74: 3a 83 std Y+2, r19 ; 0x02
1e76: 4b 83 std Y+3, r20 ; 0x03
1e78: 5c 83 std Y+4, r21 ; 0x04
1e7a: 6d 83 std Y+5, r22 ; 0x05
1e7c: 7e 83 std Y+6, r23 ; 0x06
1e7e: 8f 83 std Y+7, r24 ; 0x07
1e80: 98 87 std Y+8, r25 ; 0x08
1e82: 29 81 ldd r18, Y+1 ; 0x01
1e84: 3a 81 ldd r19, Y+2 ; 0x02
1e86: 4b 81 ldd r20, Y+3 ; 0x03
1e88: 5c 81 ldd r21, Y+4 ; 0x04
1e8a: 6d 81 ldd r22, Y+5 ; 0x05
1e8c: 7e 81 ldd r23, Y+6 ; 0x06
1e8e: 8f 81 ldd r24, Y+7 ; 0x07
1e90: 98 85 ldd r25, Y+8 ; 0x08
1e92: 09 e0 ldi r16, 0x09 ; 9
1e94: 0e 94 30 25 call 0x4a60 ; 0x4a60
1e98: a2 2e mov r10, r18
1e9a: b3 2e mov r11, r19
1e9c: c4 2e mov r12, r20
1e9e: d5 2e mov r13, r21
1ea0: e6 2e mov r14, r22
1ea2: f7 2e mov r15, r23
1ea4: 08 2f mov r16, r24
1ea6: 19 2f mov r17, r25
1ea8: a9 82 std Y+1, r10 ; 0x01
1eaa: ba 82 std Y+2, r11 ; 0x02
1eac: cb 82 std Y+3, r12 ; 0x03
1eae: dc 82 std Y+4, r13 ; 0x04
1eb0: ed 82 std Y+5, r14 ; 0x05
1eb2: fe 82 std Y+6, r15 ; 0x06
1eb4: 0f 83 std Y+7, r16 ; 0x07
1eb6: 18 87 std Y+8, r17 ; 0x08
1eb8: ce 01 movw r24, r28
1eba: 82 5b subi r24, 0xB2 ; 178
1ebc: 9f 4f sbci r25, 0xFF ; 255
1ebe: fc 01 movw r30, r24
1ec0: 80 81 ld r24, Z
1ec2: 91 81 ldd r25, Z+1 ; 0x01
1ec4: 5c 01 movw r10, r24
1ec6: c1 2c mov r12, r1
1ec8: d1 2c mov r13, r1
1eca: e1 2c mov r14, r1
1ecc: f1 2c mov r15, r1
1ece: 87 01 movw r16, r14
1ed0: 2a 2d mov r18, r10
1ed2: 3b 2d mov r19, r11
1ed4: 4c 2d mov r20, r12
1ed6: 5d 2d mov r21, r13
1ed8: 6e 2d mov r22, r14
1eda: 7f 2d mov r23, r15
1edc: 80 2f mov r24, r16
1ede: 91 2f mov r25, r17
1ee0: a9 80 ldd r10, Y+1 ; 0x01
1ee2: ba 80 ldd r11, Y+2 ; 0x02
1ee4: cb 80 ldd r12, Y+3 ; 0x03
1ee6: dc 80 ldd r13, Y+4 ; 0x04
1ee8: ed 80 ldd r14, Y+5 ; 0x05
1eea: fe 80 ldd r15, Y+6 ; 0x06
1eec: 0f 81 ldd r16, Y+7 ; 0x07
1eee: 18 85 ldd r17, Y+8 ; 0x08
1ef0: 0e 94 67 25 call 0x4ace ; 0x4ace
1ef4: a2 2e mov r10, r18
1ef6: b3 2e mov r11, r19
1ef8: c4 2e mov r12, r20
1efa: d5 2e mov r13, r21
1efc: e6 2e mov r14, r22
1efe: f7 2e mov r15, r23
1f00: 08 2f mov r16, r24
1f02: 19 2f mov r17, r25
1f04: a9 82 std Y+1, r10 ; 0x01
1f06: ba 82 std Y+2, r11 ; 0x02
1f08: cb 82 std Y+3, r12 ; 0x03
1f0a: dc 82 std Y+4, r13 ; 0x04
1f0c: ed 82 std Y+5, r14 ; 0x05
1f0e: fe 82 std Y+6, r15 ; 0x06
1f10: 0f 83 std Y+7, r16 ; 0x07
1f12: 18 87 std Y+8, r17 ; 0x08
1f14: ce 01 movw r24, r28
1f16: 82 5b subi r24, 0xB2 ; 178
1f18: 9f 4f sbci r25, 0xFF ; 255
1f1a: fc 01 movw r30, r24
1f1c: 80 81 ld r24, Z
1f1e: 91 81 ldd r25, Z+1 ; 0x01
1f20: ac 01 movw r20, r24
1f22: 56 95 lsr r21
1f24: 47 95 ror r20
1f26: 56 95 lsr r21
1f28: 47 95 ror r20
1f2a: 56 95 lsr r21
1f2c: 47 95 ror r20
1f2e: ce 01 movw r24, r28
1f30: 84 5b subi r24, 0xB4 ; 180
1f32: 9f 4f sbci r25, 0xFF ; 255
1f34: fc 01 movw r30, r24
1f36: 20 81 ld r18, Z
1f38: 31 81 ldd r19, Z+1 ; 0x01
1f3a: ce 01 movw r24, r28
1f3c: 0a 96 adiw r24, 0x0a ; 10
1f3e: b9 01 movw r22, r18
1f40: 0e 94 ec 27 call 0x4fd8 ; 0x4fd8
1f44: ce 01 movw r24, r28
1f46: 82 5b subi r24, 0xB2 ; 178
1f48: 9f 4f sbci r25, 0xFF ; 255
1f4a: fc 01 movw r30, r24
1f4c: 80 81 ld r24, Z
1f4e: 91 81 ldd r25, Z+1 ; 0x01
1f50: 87 70 andi r24, 0x07 ; 7
1f52: 99 27 eor r25, r25
1f54: 89 2b or r24, r25
1f56: 51 f1 breq .+84 ; 0x1fac
1f58: ce 01 movw r24, r28
1f5a: 82 5b subi r24, 0xB2 ; 178
1f5c: 9f 4f sbci r25, 0xFF ; 255
1f5e: fc 01 movw r30, r24
1f60: 80 81 ld r24, Z
1f62: 91 81 ldd r25, Z+1 ; 0x01
1f64: 96 95 lsr r25
1f66: 87 95 ror r24
1f68: 96 95 lsr r25
1f6a: 87 95 ror r24
1f6c: 96 95 lsr r25
1f6e: 87 95 ror r24
1f70: 9e 01 movw r18, r28
1f72: 22 5b subi r18, 0xB2 ; 178
1f74: 3f 4f sbci r19, 0xFF ; 255
1f76: f9 01 movw r30, r18
1f78: 20 81 ld r18, Z
1f7a: 31 81 ldd r19, Z+1 ; 0x01
1f7c: 36 95 lsr r19
1f7e: 27 95 ror r18
1f80: 36 95 lsr r19
1f82: 27 95 ror r18
1f84: 36 95 lsr r19
1f86: 27 95 ror r18
1f88: ae 01 movw r20, r28
1f8a: 44 5b subi r20, 0xB4 ; 180
1f8c: 5f 4f sbci r21, 0xFF ; 255
1f8e: fa 01 movw r30, r20
1f90: 40 81 ld r20, Z
1f92: 51 81 ldd r21, Z+1 ; 0x01
1f94: 24 0f add r18, r20
1f96: 35 1f adc r19, r21
1f98: f9 01 movw r30, r18
1f9a: 40 81 ld r20, Z
1f9c: 9e 01 movw r18, r28
1f9e: 26 5f subi r18, 0xF6 ; 246
1fa0: 3f 4f sbci r19, 0xFF ; 255
1fa2: 82 0f add r24, r18
1fa4: 93 1f adc r25, r19
1fa6: fc 01 movw r30, r24
1fa8: 40 83 st Z, r20
1faa: 13 c0 rjmp .+38 ; 0x1fd2
1fac: ce 01 movw r24, r28
1fae: 82 5b subi r24, 0xB2 ; 178
1fb0: 9f 4f sbci r25, 0xFF ; 255
1fb2: fc 01 movw r30, r24
1fb4: 80 81 ld r24, Z
1fb6: 91 81 ldd r25, Z+1 ; 0x01
1fb8: 96 95 lsr r25
1fba: 87 95 ror r24
1fbc: 96 95 lsr r25
1fbe: 87 95 ror r24
1fc0: 96 95 lsr r25
1fc2: 87 95 ror r24
1fc4: 9e 01 movw r18, r28
1fc6: 26 5f subi r18, 0xF6 ; 246
1fc8: 3f 4f sbci r19, 0xFF ; 255
1fca: 82 0f add r24, r18
1fcc: 93 1f adc r25, r19
1fce: fc 01 movw r30, r24
1fd0: 10 82 st Z, r1
1fd2: ce 01 movw r24, r28
1fd4: 82 5b subi r24, 0xB2 ; 178
1fd6: 9f 4f sbci r25, 0xFF ; 255
1fd8: fc 01 movw r30, r24
1fda: 80 81 ld r24, Z
1fdc: 91 81 ldd r25, Z+1 ; 0x01
1fde: 96 95 lsr r25
1fe0: 87 95 ror r24
1fe2: 96 95 lsr r25
1fe4: 87 95 ror r24
1fe6: 96 95 lsr r25
1fe8: 87 95 ror r24
1fea: 9e 01 movw r18, r28
1fec: 26 5f subi r18, 0xF6 ; 246
1fee: 3f 4f sbci r19, 0xFF ; 255
1ff0: 28 0f add r18, r24
1ff2: 39 1f adc r19, r25
1ff4: f9 01 movw r30, r18
1ff6: 20 81 ld r18, Z
1ff8: 62 2f mov r22, r18
1ffa: 9e 01 movw r18, r28
1ffc: 22 5b subi r18, 0xB2 ; 178
1ffe: 3f 4f sbci r19, 0xFF ; 255
2000: f9 01 movw r30, r18
2002: 20 81 ld r18, Z
2004: 31 81 ldd r19, Z+1 ; 0x01
2006: a9 01 movw r20, r18
2008: 47 70 andi r20, 0x07 ; 7
200a: 55 27 eor r21, r21
200c: 20 e8 ldi r18, 0x80 ; 128
200e: 30 e0 ldi r19, 0x00 ; 0
2010: 02 c0 rjmp .+4 ; 0x2016
2012: 35 95 asr r19
2014: 27 95 ror r18
2016: 4a 95 dec r20
2018: e2 f7 brpl .-8 ; 0x2012
201a: 26 2b or r18, r22
201c: 42 2f mov r20, r18
201e: 9e 01 movw r18, r28
2020: 26 5f subi r18, 0xF6 ; 246
2022: 3f 4f sbci r19, 0xFF ; 255
2024: 82 0f add r24, r18
2026: 93 1f adc r25, r19
2028: fc 01 movw r30, r24
202a: 40 83 st Z, r20
202c: ce 01 movw r24, r28
202e: 82 5b subi r24, 0xB2 ; 178
2030: 9f 4f sbci r25, 0xFF ; 255
2032: fc 01 movw r30, r24
2034: 80 81 ld r24, Z
2036: 91 81 ldd r25, Z+1 ; 0x01
2038: 9c 01 movw r18, r24
203a: 36 95 lsr r19
203c: 27 95 ror r18
203e: 36 95 lsr r19
2040: 27 95 ror r18
2042: 36 95 lsr r19
2044: 27 95 ror r18
2046: ce 01 movw r24, r28
2048: 82 5b subi r24, 0xB2 ; 178
204a: 9f 4f sbci r25, 0xFF ; 255
204c: 2f 5f subi r18, 0xFF ; 255
204e: 3f 4f sbci r19, 0xFF ; 255
2050: fc 01 movw r30, r24
2052: 20 83 st Z, r18
2054: 31 83 std Z+1, r19 ; 0x01
2056: ce 01 movw r24, r28
2058: 82 5b subi r24, 0xB2 ; 178
205a: 9f 4f sbci r25, 0xFF ; 255
205c: fc 01 movw r30, r24
205e: 80 81 ld r24, Z
2060: 91 81 ldd r25, Z+1 ; 0x01
2062: c9 97 sbiw r24, 0x39 ; 57
2064: 60 f1 brcs .+88 ; 0x20be
2066: ce 01 movw r24, r28
2068: 82 5b subi r24, 0xB2 ; 178
206a: 9f 4f sbci r25, 0xFF ; 255
206c: 20 e4 ldi r18, 0x40 ; 64
206e: 30 e0 ldi r19, 0x00 ; 0
2070: fc 01 movw r30, r24
2072: 80 81 ld r24, Z
2074: 91 81 ldd r25, Z+1 ; 0x01
2076: a9 01 movw r20, r18
2078: 48 1b sub r20, r24
207a: 59 0b sbc r21, r25
207c: 9e 01 movw r18, r28
207e: 26 5f subi r18, 0xF6 ; 246
2080: 3f 4f sbci r19, 0xFF ; 255
2082: ce 01 movw r24, r28
2084: 82 5b subi r24, 0xB2 ; 178
2086: 9f 4f sbci r25, 0xFF ; 255
2088: fc 01 movw r30, r24
208a: 80 81 ld r24, Z
208c: 91 81 ldd r25, Z+1 ; 0x01
208e: 82 0f add r24, r18
2090: 93 1f adc r25, r19
2092: 60 e0 ldi r22, 0x00 ; 0
2094: 70 e0 ldi r23, 0x00 ; 0
2096: 0e 94 07 28 call 0x500e ; 0x500e
209a: 9e 01 movw r18, r28
209c: 26 5f subi r18, 0xF6 ; 246
209e: 3f 4f sbci r19, 0xFF ; 255
20a0: ce 01 movw r24, r28
20a2: 86 5b subi r24, 0xB6 ; 182
20a4: 9f 4f sbci r25, 0xFF ; 255
20a6: fc 01 movw r30, r24
20a8: 80 81 ld r24, Z
20aa: 91 81 ldd r25, Z+1 ; 0x01
20ac: b9 01 movw r22, r18
20ae: 0e 94 46 0b call 0x168c ; 0x168c
20b2: ce 01 movw r24, r28
20b4: 82 5b subi r24, 0xB2 ; 178
20b6: 9f 4f sbci r25, 0xFF ; 255
20b8: fc 01 movw r30, r24
20ba: 10 82 st Z, r1
20bc: 11 82 std Z+1, r1 ; 0x01
20be: ce 01 movw r24, r28
20c0: 82 5b subi r24, 0xB2 ; 178
20c2: 9f 4f sbci r25, 0xFF ; 255
20c4: 28 e3 ldi r18, 0x38 ; 56
20c6: 30 e0 ldi r19, 0x00 ; 0
20c8: fc 01 movw r30, r24
20ca: 80 81 ld r24, Z
20cc: 91 81 ldd r25, Z+1 ; 0x01
20ce: a9 01 movw r20, r18
20d0: 48 1b sub r20, r24
20d2: 59 0b sbc r21, r25
20d4: 9e 01 movw r18, r28
20d6: 26 5f subi r18, 0xF6 ; 246
20d8: 3f 4f sbci r19, 0xFF ; 255
20da: ce 01 movw r24, r28
20dc: 82 5b subi r24, 0xB2 ; 178
20de: 9f 4f sbci r25, 0xFF ; 255
20e0: fc 01 movw r30, r24
20e2: 80 81 ld r24, Z
20e4: 91 81 ldd r25, Z+1 ; 0x01
20e6: 82 0f add r24, r18
20e8: 93 1f adc r25, r19
20ea: 60 e0 ldi r22, 0x00 ; 0
20ec: 70 e0 ldi r23, 0x00 ; 0
20ee: 0e 94 07 28 call 0x500e ; 0x500e
20f2: 87 e0 ldi r24, 0x07 ; 7
20f4: 89 87 std Y+9, r24 ; 0x09
20f6: 89 85 ldd r24, Y+9 ; 0x09
20f8: 88 2f mov r24, r24
20fa: 90 e0 ldi r25, 0x00 ; 0
20fc: c8 96 adiw r24, 0x38 ; 56
20fe: 49 81 ldd r20, Y+1 ; 0x01
2100: 9e 01 movw r18, r28
2102: 26 5f subi r18, 0xF6 ; 246
2104: 3f 4f sbci r19, 0xFF ; 255
2106: 82 0f add r24, r18
2108: 93 1f adc r25, r19
210a: fc 01 movw r30, r24
210c: 40 83 st Z, r20
210e: 29 81 ldd r18, Y+1 ; 0x01
2110: 3a 81 ldd r19, Y+2 ; 0x02
2112: 4b 81 ldd r20, Y+3 ; 0x03
2114: 5c 81 ldd r21, Y+4 ; 0x04
2116: 6d 81 ldd r22, Y+5 ; 0x05
2118: 7e 81 ldd r23, Y+6 ; 0x06
211a: 8f 81 ldd r24, Y+7 ; 0x07
211c: 98 85 ldd r25, Y+8 ; 0x08
211e: 08 e0 ldi r16, 0x08 ; 8
2120: 0e 94 4b 25 call 0x4a96 ; 0x4a96
2124: a2 2e mov r10, r18
2126: b3 2e mov r11, r19
2128: c4 2e mov r12, r20
212a: d5 2e mov r13, r21
212c: e6 2e mov r14, r22
212e: f7 2e mov r15, r23
2130: 08 2f mov r16, r24
2132: 19 2f mov r17, r25
2134: a9 82 std Y+1, r10 ; 0x01
2136: ba 82 std Y+2, r11 ; 0x02
2138: cb 82 std Y+3, r12 ; 0x03
213a: dc 82 std Y+4, r13 ; 0x04
213c: ed 82 std Y+5, r14 ; 0x05
213e: fe 82 std Y+6, r15 ; 0x06
2140: 0f 83 std Y+7, r16 ; 0x07
2142: 18 87 std Y+8, r17 ; 0x08
2144: 89 85 ldd r24, Y+9 ; 0x09
2146: 9f ef ldi r25, 0xFF ; 255
2148: 98 0f add r25, r24
214a: 99 87 std Y+9, r25 ; 0x09
214c: 88 23 and r24, r24
214e: 99 f6 brne .-90 ; 0x20f6
2150: 9e 01 movw r18, r28
2152: 26 5f subi r18, 0xF6 ; 246
2154: 3f 4f sbci r19, 0xFF ; 255
2156: ce 01 movw r24, r28
2158: 86 5b subi r24, 0xB6 ; 182
215a: 9f 4f sbci r25, 0xFF ; 255
215c: fc 01 movw r30, r24
215e: 80 81 ld r24, Z
2160: 91 81 ldd r25, Z+1 ; 0x01
2162: b9 01 movw r22, r18
2164: 0e 94 46 0b call 0x168c ; 0x168c
2168: c1 5b subi r28, 0xB1 ; 177
216a: df 4f sbci r29, 0xFF ; 255
216c: cd bf out 0x3d, r28 ; 61
216e: de bf out 0x3e, r29 ; 62
2170: df 91 pop r29
2172: cf 91 pop r28
2174: 1f 91 pop r17
2176: 0f 91 pop r16
2178: ff 90 pop r15
217a: ef 90 pop r14
217c: df 90 pop r13
217e: cf 90 pop r12
2180: bf 90 pop r11
2182: af 90 pop r10
2184: 08 95 ret
2186: cf 93 push r28
2188: df 93 push r29
218a: cd b7 in r28, 0x3d ; 61
218c: de b7 in r29, 0x3e ; 62
218e: ac 97 sbiw r28, 0x2c ; 44
2190: cd bf out 0x3d, r28 ; 61
2192: de bf out 0x3e, r29 ; 62
2194: 8d a3 std Y+37, r24 ; 0x25
2196: 9e a3 std Y+38, r25 ; 0x26
2198: 6f a3 std Y+39, r22 ; 0x27
219a: 78 a7 std Y+40, r23 ; 0x28
219c: 29 a7 std Y+41, r18 ; 0x29
219e: 3a a7 std Y+42, r19 ; 0x2a
21a0: 4b a7 std Y+43, r20 ; 0x2b
21a2: 5c a7 std Y+44, r21 ; 0x2c
21a4: ce 01 movw r24, r28
21a6: 01 96 adiw r24, 0x01 ; 1
21a8: 0e 94 b1 0a call 0x1562 ; 0x1562
21ac: 18 c0 rjmp .+48 ; 0x21de
21ae: 8f a1 ldd r24, Y+39 ; 0x27
21b0: 98 a5 ldd r25, Y+40 ; 0x28
21b2: bc 01 movw r22, r24
21b4: ce 01 movw r24, r28
21b6: 01 96 adiw r24, 0x01 ; 1
21b8: 0e 94 46 0b call 0x168c ; 0x168c
21bc: 8f a1 ldd r24, Y+39 ; 0x27
21be: 98 a5 ldd r25, Y+40 ; 0x28
21c0: 80 5c subi r24, 0xC0 ; 192
21c2: 9f 4f sbci r25, 0xFF ; 255
21c4: 8f a3 std Y+39, r24 ; 0x27
21c6: 98 a7 std Y+40, r25 ; 0x28
21c8: 89 a5 ldd r24, Y+41 ; 0x29
21ca: 9a a5 ldd r25, Y+42 ; 0x2a
21cc: ab a5 ldd r26, Y+43 ; 0x2b
21ce: bc a5 ldd r27, Y+44 ; 0x2c
21d0: 92 50 subi r25, 0x02 ; 2
21d2: a1 09 sbc r26, r1
21d4: b1 09 sbc r27, r1
21d6: 89 a7 std Y+41, r24 ; 0x29
21d8: 9a a7 std Y+42, r25 ; 0x2a
21da: ab a7 std Y+43, r26 ; 0x2b
21dc: bc a7 std Y+44, r27 ; 0x2c
21de: 89 a5 ldd r24, Y+41 ; 0x29
21e0: 9a a5 ldd r25, Y+42 ; 0x2a
21e2: ab a5 ldd r26, Y+43 ; 0x2b
21e4: bc a5 ldd r27, Y+44 ; 0x2c
21e6: 81 15 cp r24, r1
21e8: 92 40 sbci r25, 0x02 ; 2
21ea: a1 05 cpc r26, r1
21ec: b1 05 cpc r27, r1
21ee: f8 f6 brcc .-66 ; 0x21ae
21f0: 29 a5 ldd r18, Y+41 ; 0x29
21f2: 3a a5 ldd r19, Y+42 ; 0x2a
21f4: 8f a1 ldd r24, Y+39 ; 0x27
21f6: 98 a5 ldd r25, Y+40 ; 0x28
21f8: a9 01 movw r20, r18
21fa: bc 01 movw r22, r24
21fc: ce 01 movw r24, r28
21fe: 01 96 adiw r24, 0x01 ; 1
2200: 0e 94 d3 0e call 0x1da6 ; 0x1da6
2204: 8d a1 ldd r24, Y+37 ; 0x25
2206: 9e a1 ldd r25, Y+38 ; 0x26
2208: 9e 01 movw r18, r28
220a: 2f 5f subi r18, 0xFF ; 255
220c: 3f 4f sbci r19, 0xFF ; 255
220e: b9 01 movw r22, r18
2210: 0e 94 10 11 call 0x2220 ; 0x2220
2214: ac 96 adiw r28, 0x2c ; 44
2216: cd bf out 0x3d, r28 ; 61
2218: de bf out 0x3e, r29 ; 62
221a: df 91 pop r29
221c: cf 91 pop r28
221e: 08 95 ret
2220: 0f 93 push r16
2222: 1f 93 push r17
2224: cf 93 push r28
2226: df 93 push r29
2228: cd b7 in r28, 0x3d ; 61
222a: de b7 in r29, 0x3e ; 62
222c: 25 97 sbiw r28, 0x05 ; 5
222e: cd bf out 0x3d, r28 ; 61
2230: de bf out 0x3e, r29 ; 62
2232: 8a 83 std Y+2, r24 ; 0x02
2234: 9b 83 std Y+3, r25 ; 0x03
2236: 6c 83 std Y+4, r22 ; 0x04
2238: 7d 83 std Y+5, r23 ; 0x05
223a: 19 82 std Y+1, r1 ; 0x01
223c: 2a c0 rjmp .+84 ; 0x2292
223e: 89 81 ldd r24, Y+1 ; 0x01
2240: 88 2f mov r24, r24
2242: 90 e0 ldi r25, 0x00 ; 0
2244: 88 0f add r24, r24
2246: 99 1f adc r25, r25
2248: 88 0f add r24, r24
224a: 99 1f adc r25, r25
224c: 2a 81 ldd r18, Y+2 ; 0x02
224e: 3b 81 ldd r19, Y+3 ; 0x03
2250: 89 01 movw r16, r18
2252: 08 0f add r16, r24
2254: 19 1f adc r17, r25
2256: 89 81 ldd r24, Y+1 ; 0x01
2258: 88 2f mov r24, r24
225a: 90 e0 ldi r25, 0x00 ; 0
225c: 2c 81 ldd r18, Y+4 ; 0x04
225e: 3d 81 ldd r19, Y+5 ; 0x05
2260: 88 0f add r24, r24
2262: 99 1f adc r25, r25
2264: 88 0f add r24, r24
2266: 99 1f adc r25, r25
2268: 82 0f add r24, r18
226a: 93 1f adc r25, r19
226c: fc 01 movw r30, r24
226e: 80 81 ld r24, Z
2270: 91 81 ldd r25, Z+1 ; 0x01
2272: a2 81 ldd r26, Z+2 ; 0x02
2274: b3 81 ldd r27, Z+3 ; 0x03
2276: bc 01 movw r22, r24
2278: cd 01 movw r24, r26
227a: 0e 94 02 0b call 0x1604 ; 0x1604
227e: dc 01 movw r26, r24
2280: cb 01 movw r24, r22
2282: f8 01 movw r30, r16
2284: 80 83 st Z, r24
2286: 91 83 std Z+1, r25 ; 0x01
2288: a2 83 std Z+2, r26 ; 0x02
228a: b3 83 std Z+3, r27 ; 0x03
228c: 89 81 ldd r24, Y+1 ; 0x01
228e: 8f 5f subi r24, 0xFF ; 255
2290: 89 83 std Y+1, r24 ; 0x01
2292: 89 81 ldd r24, Y+1 ; 0x01
2294: 88 30 cpi r24, 0x08 ; 8
2296: 98 f2 brcs .-90 ; 0x223e
2298: 25 96 adiw r28, 0x05 ; 5
229a: cd bf out 0x3d, r28 ; 61
229c: de bf out 0x3e, r29 ; 62
229e: df 91 pop r29
22a0: cf 91 pop r28
22a2: 1f 91 pop r17
22a4: 0f 91 pop r16
22a6: 08 95 ret
22a8: cf 93 push r28
22aa: df 93 push r29
22ac: cd b7 in r28, 0x3d ; 61
22ae: de b7 in r29, 0x3e ; 62
22b0: 0e 94 c6 1d call 0x3b8c ; 0x3b8c
22b4: dc 01 movw r26, r24
22b6: cb 01 movw r24, r22
22b8: bc 01 movw r22, r24
22ba: cd 01 movw r24, r26
22bc: df 91 pop r29
22be: cf 91 pop r28
22c0: 08 95 ret
22c2: 0f 93 push r16
22c4: 1f 93 push r17
22c6: cf 93 push r28
22c8: df 93 push r29
22ca: 00 d0 rcall .+0 ; 0x22cc
22cc: cd b7 in r28, 0x3d ; 61
22ce: de b7 in r29, 0x3e ; 62
22d0: 80 e0 ldi r24, 0x00 ; 0
22d2: 9f e0 ldi r25, 0x0F ; 15
22d4: 0e 94 f9 2a call 0x55f2 ; 0x55f2
22d8: 88 2f mov r24, r24
22da: 90 e0 ldi r25, 0x00 ; 0
22dc: 18 2f mov r17, r24
22de: 00 27 eor r16, r16
22e0: 8f e0 ldi r24, 0x0F ; 15
22e2: 9f e0 ldi r25, 0x0F ; 15
22e4: 0e 94 f9 2a call 0x55f2 ; 0x55f2
22e8: 88 2f mov r24, r24
22ea: 90 e0 ldi r25, 0x00 ; 0
22ec: 80 27 eor r24, r16
22ee: 91 27 eor r25, r17
22f0: 89 83 std Y+1, r24 ; 0x01
22f2: 9a 83 std Y+2, r25 ; 0x02
22f4: 80 ee ldi r24, 0xE0 ; 224
22f6: 9f e0 ldi r25, 0x0F ; 15
22f8: 0e 94 f9 2a call 0x55f2 ; 0x55f2
22fc: 88 2f mov r24, r24
22fe: 90 e0 ldi r25, 0x00 ; 0
2300: 29 81 ldd r18, Y+1 ; 0x01
2302: 3a 81 ldd r19, Y+2 ; 0x02
2304: 82 27 eor r24, r18
2306: 93 27 eor r25, r19
2308: 89 83 std Y+1, r24 ; 0x01
230a: 9a 83 std Y+2, r25 ; 0x02
230c: 8f ef ldi r24, 0xFF ; 255
230e: 9f e0 ldi r25, 0x0F ; 15
2310: 0e 94 f9 2a call 0x55f2 ; 0x55f2
2314: 8b 83 std Y+3, r24 ; 0x03
2316: 8b 81 ldd r24, Y+3 ; 0x03
2318: 88 2f mov r24, r24
231a: 90 e0 ldi r25, 0x00 ; 0
231c: 9c 01 movw r18, r24
231e: 32 2f mov r19, r18
2320: 22 27 eor r18, r18
2322: 32 95 swap r19
2324: 30 7f andi r19, 0xF0 ; 240
2326: 8b 81 ldd r24, Y+3 ; 0x03
2328: 82 95 swap r24
232a: 8f 70 andi r24, 0x0F ; 15
232c: 88 2f mov r24, r24
232e: 90 e0 ldi r25, 0x00 ; 0
2330: 82 27 eor r24, r18
2332: 93 27 eor r25, r19
2334: 9c 01 movw r18, r24
2336: 89 81 ldd r24, Y+1 ; 0x01
2338: 9a 81 ldd r25, Y+2 ; 0x02
233a: 82 27 eor r24, r18
233c: 93 27 eor r25, r19
233e: 89 83 std Y+1, r24 ; 0x01
2340: 9a 83 std Y+2, r25 ; 0x02
2342: 89 81 ldd r24, Y+1 ; 0x01
2344: 9a 81 ldd r25, Y+2 ; 0x02
2346: 23 96 adiw r28, 0x03 ; 3
2348: cd bf out 0x3d, r28 ; 61
234a: de bf out 0x3e, r29 ; 62
234c: df 91 pop r29
234e: cf 91 pop r28
2350: 1f 91 pop r17
2352: 0f 91 pop r16
2354: 08 95 ret
2356: cf 93 push r28
2358: df 93 push r29
235a: 00 d0 rcall .+0 ; 0x235c
235c: 1f 92 push r1
235e: cd b7 in r28, 0x3d ; 61
2360: de b7 in r29, 0x3e ; 62
2362: 89 83 std Y+1, r24 ; 0x01
2364: 6a 83 std Y+2, r22 ; 0x02
2366: 4b 83 std Y+3, r20 ; 0x03
2368: 2c 83 std Y+4, r18 ; 0x04
236a: 69 81 ldd r22, Y+1 ; 0x01
236c: 80 e0 ldi r24, 0x00 ; 0
236e: 9f e0 ldi r25, 0x0F ; 15
2370: 0e 94 09 2b call 0x5612 ; 0x5612
2374: 6a 81 ldd r22, Y+2 ; 0x02
2376: 8f e0 ldi r24, 0x0F ; 15
2378: 9f e0 ldi r25, 0x0F ; 15
237a: 0e 94 09 2b call 0x5612 ; 0x5612
237e: 6b 81 ldd r22, Y+3 ; 0x03
2380: 80 ee ldi r24, 0xE0 ; 224
2382: 9f e0 ldi r25, 0x0F ; 15
2384: 0e 94 09 2b call 0x5612 ; 0x5612
2388: 6c 81 ldd r22, Y+4 ; 0x04
238a: 8f ef ldi r24, 0xFF ; 255
238c: 9f e0 ldi r25, 0x0F ; 15
238e: 0e 94 09 2b call 0x5612 ; 0x5612
2392: 24 96 adiw r28, 0x04 ; 4
2394: cd bf out 0x3d, r28 ; 61
2396: de bf out 0x3e, r29 ; 62
2398: df 91 pop r29
239a: cf 91 pop r28
239c: 08 95 ret
239e: cf 93 push r28
23a0: df 93 push r29
23a2: cd b7 in r28, 0x3d ; 61
23a4: de b7 in r29, 0x3e ; 62
23a6: 27 97 sbiw r28, 0x07 ; 7
23a8: cd bf out 0x3d, r28 ; 61
23aa: de bf out 0x3e, r29 ; 62
23ac: 80 91 d9 21 lds r24, 0x21D9
23b0: 90 91 da 21 lds r25, 0x21DA
23b4: a0 91 db 21 lds r26, 0x21DB
23b8: b0 91 dc 21 lds r27, 0x21DC
23bc: 01 96 adiw r24, 0x01 ; 1
23be: a1 1d adc r26, r1
23c0: b1 1d adc r27, r1
23c2: 80 93 d9 21 sts 0x21D9, r24
23c6: 90 93 da 21 sts 0x21DA, r25
23ca: a0 93 db 21 sts 0x21DB, r26
23ce: b0 93 dc 21 sts 0x21DC, r27
23d2: 19 82 std Y+1, r1 ; 0x01
23d4: 1a 82 std Y+2, r1 ; 0x02
23d6: 1d 82 std Y+5, r1 ; 0x05
23d8: 35 c0 rjmp .+106 ; 0x2444
23da: 0e 94 54 11 call 0x22a8 ; 0x22a8
23de: dc 01 movw r26, r24
23e0: cb 01 movw r24, r22
23e2: 81 70 andi r24, 0x01 ; 1
23e4: 99 27 eor r25, r25
23e6: 8b 83 std Y+3, r24 ; 0x03
23e8: 9c 83 std Y+4, r25 ; 0x04
23ea: 8d 81 ldd r24, Y+5 ; 0x05
23ec: 28 2f mov r18, r24
23ee: 88 0f add r24, r24
23f0: 33 0b sbc r19, r19
23f2: 8b 81 ldd r24, Y+3 ; 0x03
23f4: 9c 81 ldd r25, Y+4 ; 0x04
23f6: 02 c0 rjmp .+4 ; 0x23fc
23f8: 88 0f add r24, r24
23fa: 99 1f adc r25, r25
23fc: 2a 95 dec r18
23fe: e2 f7 brpl .-8 ; 0x23f8
2400: 29 81 ldd r18, Y+1 ; 0x01
2402: 3a 81 ldd r19, Y+2 ; 0x02
2404: 82 2b or r24, r18
2406: 93 2b or r25, r19
2408: 89 83 std Y+1, r24 ; 0x01
240a: 9a 83 std Y+2, r25 ; 0x02
240c: 8b 81 ldd r24, Y+3 ; 0x03
240e: 9c 81 ldd r25, Y+4 ; 0x04
2410: 9c 01 movw r18, r24
2412: 40 e0 ldi r20, 0x00 ; 0
2414: 50 e0 ldi r21, 0x00 ; 0
2416: 80 91 dd 21 lds r24, 0x21DD
241a: 90 91 de 21 lds r25, 0x21DE
241e: a0 91 df 21 lds r26, 0x21DF
2422: b0 91 e0 21 lds r27, 0x21E0
2426: 82 0f add r24, r18
2428: 93 1f adc r25, r19
242a: a4 1f adc r26, r20
242c: b5 1f adc r27, r21
242e: 80 93 dd 21 sts 0x21DD, r24
2432: 90 93 de 21 sts 0x21DE, r25
2436: a0 93 df 21 sts 0x21DF, r26
243a: b0 93 e0 21 sts 0x21E0, r27
243e: 8d 81 ldd r24, Y+5 ; 0x05
2440: 8f 5f subi r24, 0xFF ; 255
2442: 8d 83 std Y+5, r24 ; 0x05
2444: 8d 81 ldd r24, Y+5 ; 0x05
2446: 80 31 cpi r24, 0x10 ; 16
2448: 44 f2 brlt .-112 ; 0x23da
244a: 8d 81 ldd r24, Y+5 ; 0x05
244c: 80 31 cpi r24, 0x10 ; 16
244e: 11 f0 breq .+4 ; 0x2454
2450: 0e 94 c8 27 call 0x4f90 ; 0x4f90
2454: 80 91 d9 21 lds r24, 0x21D9
2458: 90 91 da 21 lds r25, 0x21DA
245c: a0 91 db 21 lds r26, 0x21DB
2460: b0 91 dc 21 lds r27, 0x21DC
2464: 0b 97 sbiw r24, 0x0b ; 11
2466: a1 05 cpc r26, r1
2468: b1 05 cpc r27, r1
246a: 08 f4 brcc .+2 ; 0x246e
246c: 52 c0 rjmp .+164 ; 0x2512
246e: 80 91 d9 21 lds r24, 0x21D9
2472: 90 91 da 21 lds r25, 0x21DA
2476: a0 91 db 21 lds r26, 0x21DB
247a: b0 91 dc 21 lds r27, 0x21DC
247e: 9c 01 movw r18, r24
2480: ad 01 movw r20, r26
2482: 22 0f add r18, r18
2484: 33 1f adc r19, r19
2486: 44 1f adc r20, r20
2488: 55 1f adc r21, r21
248a: 22 0f add r18, r18
248c: 33 1f adc r19, r19
248e: 44 1f adc r20, r20
2490: 55 1f adc r21, r21
2492: 80 91 dd 21 lds r24, 0x21DD
2496: 90 91 de 21 lds r25, 0x21DE
249a: a0 91 df 21 lds r26, 0x21DF
249e: b0 91 e0 21 lds r27, 0x21E0
24a2: 82 17 cp r24, r18
24a4: 93 07 cpc r25, r19
24a6: a4 07 cpc r26, r20
24a8: b5 07 cpc r27, r21
24aa: 48 f1 brcs .+82 ; 0x24fe
24ac: 20 91 d9 21 lds r18, 0x21D9
24b0: 30 91 da 21 lds r19, 0x21DA
24b4: 40 91 db 21 lds r20, 0x21DB
24b8: 50 91 dc 21 lds r21, 0x21DC
24bc: da 01 movw r26, r20
24be: c9 01 movw r24, r18
24c0: 88 0f add r24, r24
24c2: 99 1f adc r25, r25
24c4: aa 1f adc r26, r26
24c6: bb 1f adc r27, r27
24c8: 82 0f add r24, r18
24ca: 93 1f adc r25, r19
24cc: a4 1f adc r26, r20
24ce: b5 1f adc r27, r21
24d0: 88 0f add r24, r24
24d2: 99 1f adc r25, r25
24d4: aa 1f adc r26, r26
24d6: bb 1f adc r27, r27
24d8: 88 0f add r24, r24
24da: 99 1f adc r25, r25
24dc: aa 1f adc r26, r26
24de: bb 1f adc r27, r27
24e0: 9c 01 movw r18, r24
24e2: ad 01 movw r20, r26
24e4: 80 91 dd 21 lds r24, 0x21DD
24e8: 90 91 de 21 lds r25, 0x21DE
24ec: a0 91 df 21 lds r26, 0x21DF
24f0: b0 91 e0 21 lds r27, 0x21E0
24f4: 28 17 cp r18, r24
24f6: 39 07 cpc r19, r25
24f8: 4a 07 cpc r20, r26
24fa: 5b 07 cpc r21, r27
24fc: 50 f4 brcc .+20 ; 0x2512
24fe: 80 91 0f 20 lds r24, 0x200F
2502: 90 91 10 20 lds r25, 0x2010
2506: 64 e5 ldi r22, 0x54 ; 84
2508: 71 e2 ldi r23, 0x21 ; 33
250a: 0e 94 4b 18 call 0x3096 ; 0x3096
250e: 0e 94 c8 27 call 0x4f90 ; 0x4f90
2512: 80 91 d9 21 lds r24, 0x21D9
2516: 90 91 da 21 lds r25, 0x21DA
251a: a0 91 db 21 lds r26, 0x21DB
251e: b0 91 dc 21 lds r27, 0x21DC
2522: 85 36 cpi r24, 0x65 ; 101
2524: 91 05 cpc r25, r1
2526: a1 05 cpc r26, r1
2528: b1 05 cpc r27, r1
252a: 80 f0 brcs .+32 ; 0x254c
252c: 10 92 d9 21 sts 0x21D9, r1
2530: 10 92 da 21 sts 0x21DA, r1
2534: 10 92 db 21 sts 0x21DB, r1
2538: 10 92 dc 21 sts 0x21DC, r1
253c: 10 92 dd 21 sts 0x21DD, r1
2540: 10 92 de 21 sts 0x21DE, r1
2544: 10 92 df 21 sts 0x21DF, r1
2548: 10 92 e0 21 sts 0x21E0, r1
254c: 80 91 e1 21 lds r24, 0x21E1
2550: 88 2f mov r24, r24
2552: 90 e0 ldi r25, 0x00 ; 0
2554: 20 91 e1 21 lds r18, 0x21E1
2558: 22 2f mov r18, r18
255a: 30 e0 ldi r19, 0x00 ; 0
255c: 22 0f add r18, r18
255e: 33 1f adc r19, r19
2560: 2b 56 subi r18, 0x6B ; 107
2562: 3d 4d sbci r19, 0xDD ; 221
2564: f9 01 movw r30, r18
2566: 40 81 ld r20, Z
2568: 51 81 ldd r21, Z+1 ; 0x01
256a: 29 81 ldd r18, Y+1 ; 0x01
256c: 3a 81 ldd r19, Y+2 ; 0x02
256e: 24 27 eor r18, r20
2570: 35 27 eor r19, r21
2572: 88 0f add r24, r24
2574: 99 1f adc r25, r25
2576: 8b 56 subi r24, 0x6B ; 107
2578: 9d 4d sbci r25, 0xDD ; 221
257a: fc 01 movw r30, r24
257c: 20 83 st Z, r18
257e: 31 83 std Z+1, r19 ; 0x01
2580: 80 91 e1 21 lds r24, 0x21E1
2584: 88 2f mov r24, r24
2586: 90 e0 ldi r25, 0x00 ; 0
2588: 01 96 adiw r24, 0x01 ; 1
258a: 21 e1 ldi r18, 0x11 ; 17
258c: 30 e0 ldi r19, 0x00 ; 0
258e: b9 01 movw r22, r18
2590: 0e 94 d7 24 call 0x49ae ; 0x49ae
2594: 80 93 e1 21 sts 0x21E1, r24
2598: 80 91 e1 21 lds r24, 0x21E1
259c: 88 2f mov r24, r24
259e: 90 e0 ldi r25, 0x00 ; 0
25a0: 88 0f add r24, r24
25a2: 99 1f adc r25, r25
25a4: 8b 56 subi r24, 0x6B ; 107
25a6: 9d 4d sbci r25, 0xDD ; 221
25a8: fc 01 movw r30, r24
25aa: 80 81 ld r24, Z
25ac: 91 81 ldd r25, Z+1 ; 0x01
25ae: 27 96 adiw r28, 0x07 ; 7
25b0: cd bf out 0x3d, r28 ; 61
25b2: de bf out 0x3e, r29 ; 62
25b4: df 91 pop r29
25b6: cf 91 pop r28
25b8: 08 95 ret
25ba: cf 93 push r28
25bc: df 93 push r29
25be: 1f 92 push r1
25c0: 1f 92 push r1
25c2: cd b7 in r28, 0x3d ; 61
25c4: de b7 in r29, 0x3e ; 62
25c6: 89 83 std Y+1, r24 ; 0x01
25c8: 9a 83 std Y+2, r25 ; 0x02
25ca: 89 81 ldd r24, Y+1 ; 0x01
25cc: 9a 81 ldd r25, Y+2 ; 0x02
25ce: 80 93 07 20 sts 0x2007, r24
25d2: 90 93 08 20 sts 0x2008, r25
25d6: 0f 90 pop r0
25d8: 0f 90 pop r0
25da: df 91 pop r29
25dc: cf 91 pop r28
25de: 08 95 ret
25e0: cf 93 push r28
25e2: df 93 push r29
25e4: 00 d0 rcall .+0 ; 0x25e6
25e6: 00 d0 rcall .+0 ; 0x25e8
25e8: cd b7 in r28, 0x3d ; 61
25ea: de b7 in r29, 0x3e ; 62
25ec: 8d 83 std Y+5, r24 ; 0x05
25ee: 9e 83 std Y+6, r25 ; 0x06
25f0: 19 82 std Y+1, r1 ; 0x01
25f2: 1a 82 std Y+2, r1 ; 0x02
25f4: 80 91 07 20 lds r24, 0x2007
25f8: 90 91 08 20 lds r25, 0x2008
25fc: 89 2b or r24, r25
25fe: 11 f4 brne .+4 ; 0x2604
2600: 0e 94 c8 27 call 0x4f90 ; 0x4f90
2604: 80 91 07 20 lds r24, 0x2007
2608: 90 91 08 20 lds r25, 0x2008
260c: 9c 01 movw r18, r24
260e: 36 95 lsr r19
2610: 27 95 ror r18
2612: 36 95 lsr r19
2614: 27 95 ror r18
2616: 80 91 07 20 lds r24, 0x2007
261a: 90 91 08 20 lds r25, 0x2008
261e: 28 27 eor r18, r24
2620: 39 27 eor r19, r25
2622: 80 91 07 20 lds r24, 0x2007
2626: 90 91 08 20 lds r25, 0x2008
262a: 96 95 lsr r25
262c: 87 95 ror r24
262e: 96 95 lsr r25
2630: 87 95 ror r24
2632: 96 95 lsr r25
2634: 87 95 ror r24
2636: 28 27 eor r18, r24
2638: 39 27 eor r19, r25
263a: 80 91 07 20 lds r24, 0x2007
263e: 90 91 08 20 lds r25, 0x2008
2642: 96 95 lsr r25
2644: 87 95 ror r24
2646: 92 95 swap r25
2648: 82 95 swap r24
264a: 8f 70 andi r24, 0x0F ; 15
264c: 89 27 eor r24, r25
264e: 9f 70 andi r25, 0x0F ; 15
2650: 89 27 eor r24, r25
2652: 82 27 eor r24, r18
2654: 93 27 eor r25, r19
2656: 81 70 andi r24, 0x01 ; 1
2658: 99 27 eor r25, r25
265a: 8b 83 std Y+3, r24 ; 0x03
265c: 9c 83 std Y+4, r25 ; 0x04
265e: 80 91 07 20 lds r24, 0x2007
2662: 90 91 08 20 lds r25, 0x2008
2666: 9c 01 movw r18, r24
2668: 36 95 lsr r19
266a: 27 95 ror r18
266c: 8b 81 ldd r24, Y+3 ; 0x03
266e: 9c 81 ldd r25, Y+4 ; 0x04
2670: 99 27 eor r25, r25
2672: 86 95 lsr r24
2674: 97 95 ror r25
2676: 88 27 eor r24, r24
2678: 82 2b or r24, r18
267a: 93 2b or r25, r19
267c: 80 93 07 20 sts 0x2007, r24
2680: 90 93 08 20 sts 0x2008, r25
2684: 89 81 ldd r24, Y+1 ; 0x01
2686: 9a 81 ldd r25, Y+2 ; 0x02
2688: 01 96 adiw r24, 0x01 ; 1
268a: 89 83 std Y+1, r24 ; 0x01
268c: 9a 83 std Y+2, r25 ; 0x02
268e: 29 81 ldd r18, Y+1 ; 0x01
2690: 3a 81 ldd r19, Y+2 ; 0x02
2692: 8d 81 ldd r24, Y+5 ; 0x05
2694: 9e 81 ldd r25, Y+6 ; 0x06
2696: 28 17 cp r18, r24
2698: 39 07 cpc r19, r25
269a: 08 f4 brcc .+2 ; 0x269e
269c: b3 cf rjmp .-154 ; 0x2604
269e: 80 91 07 20 lds r24, 0x2007
26a2: 90 91 08 20 lds r25, 0x2008
26a6: 26 96 adiw r28, 0x06 ; 6
26a8: cd bf out 0x3d, r28 ; 61
26aa: de bf out 0x3e, r29 ; 62
26ac: df 91 pop r29
26ae: cf 91 pop r28
26b0: 08 95 ret
26b2: 0f 93 push r16
26b4: 1f 93 push r17
26b6: cf 93 push r28
26b8: df 93 push r29
26ba: cd b7 in r28, 0x3d ; 61
26bc: de b7 in r29, 0x3e ; 62
26be: 0e 94 cf 11 call 0x239e ; 0x239e
26c2: 8c 01 movw r16, r24
26c4: 81 e0 ldi r24, 0x01 ; 1
26c6: 90 e0 ldi r25, 0x00 ; 0
26c8: 0e 94 f0 12 call 0x25e0 ; 0x25e0
26cc: 80 27 eor r24, r16
26ce: 91 27 eor r25, r17
26d0: df 91 pop r29
26d2: cf 91 pop r28
26d4: 1f 91 pop r17
26d6: 0f 91 pop r16
26d8: 08 95 ret
26da: cf 93 push r28
26dc: df 93 push r29
26de: 00 d0 rcall .+0 ; 0x26e0
26e0: 00 d0 rcall .+0 ; 0x26e2
26e2: cd b7 in r28, 0x3d ; 61
26e4: de b7 in r29, 0x3e ; 62
26e6: 8d 83 std Y+5, r24 ; 0x05
26e8: 9e 83 std Y+6, r25 ; 0x06
26ea: 8d 81 ldd r24, Y+5 ; 0x05
26ec: 9e 81 ldd r25, Y+6 ; 0x06
26ee: 8b 83 std Y+3, r24 ; 0x03
26f0: 9c 83 std Y+4, r25 ; 0x04
26f2: 19 82 std Y+1, r1 ; 0x01
26f4: 1a 82 std Y+2, r1 ; 0x02
26f6: 36 c0 rjmp .+108 ; 0x2764
26f8: 81 e0 ldi r24, 0x01 ; 1
26fa: 90 e0 ldi r25, 0x00 ; 0
26fc: 0e 94 f0 12 call 0x25e0 ; 0x25e0
2700: fc 01 movw r30, r24
2702: 49 81 ldd r20, Y+1 ; 0x01
2704: 5a 81 ldd r21, Y+2 ; 0x02
2706: 9a 01 movw r18, r20
2708: a1 ef ldi r26, 0xF1 ; 241
270a: b0 ef ldi r27, 0xF0 ; 240
270c: 0e 94 16 25 call 0x4a2c ; 0x4a2c
2710: 92 95 swap r25
2712: 82 95 swap r24
2714: 8f 70 andi r24, 0x0F ; 15
2716: 89 27 eor r24, r25
2718: 9f 70 andi r25, 0x0F ; 15
271a: 89 27 eor r24, r25
271c: 61 e1 ldi r22, 0x11 ; 17
271e: 68 9f mul r22, r24
2720: 90 01 movw r18, r0
2722: 69 9f mul r22, r25
2724: 30 0d add r19, r0
2726: 11 24 eor r1, r1
2728: ca 01 movw r24, r20
272a: 82 1b sub r24, r18
272c: 93 0b sbc r25, r19
272e: 9c 01 movw r18, r24
2730: 22 0f add r18, r18
2732: 33 1f adc r19, r19
2734: 2b 56 subi r18, 0x6B ; 107
2736: 3d 4d sbci r19, 0xDD ; 221
2738: d9 01 movw r26, r18
273a: 2d 91 ld r18, X+
273c: 3c 91 ld r19, X
273e: 2e 27 eor r18, r30
2740: 3f 27 eor r19, r31
2742: 88 0f add r24, r24
2744: 99 1f adc r25, r25
2746: 8b 56 subi r24, 0x6B ; 107
2748: 9d 4d sbci r25, 0xDD ; 221
274a: fc 01 movw r30, r24
274c: 20 83 st Z, r18
274e: 31 83 std Z+1, r19 ; 0x01
2750: 8b 81 ldd r24, Y+3 ; 0x03
2752: 9c 81 ldd r25, Y+4 ; 0x04
2754: 01 97 sbiw r24, 0x01 ; 1
2756: 8b 83 std Y+3, r24 ; 0x03
2758: 9c 83 std Y+4, r25 ; 0x04
275a: 89 81 ldd r24, Y+1 ; 0x01
275c: 9a 81 ldd r25, Y+2 ; 0x02
275e: 01 96 adiw r24, 0x01 ; 1
2760: 89 83 std Y+1, r24 ; 0x01
2762: 9a 83 std Y+2, r25 ; 0x02
2764: 29 81 ldd r18, Y+1 ; 0x01
2766: 3a 81 ldd r19, Y+2 ; 0x02
2768: 8d 81 ldd r24, Y+5 ; 0x05
276a: 9e 81 ldd r25, Y+6 ; 0x06
276c: 28 17 cp r18, r24
276e: 39 07 cpc r19, r25
2770: 28 f4 brcc .+10 ; 0x277c
2772: 8b 81 ldd r24, Y+3 ; 0x03
2774: 9c 81 ldd r25, Y+4 ; 0x04
2776: 89 2b or r24, r25
2778: 09 f0 breq .+2 ; 0x277c
277a: be cf rjmp .-132 ; 0x26f8
277c: 8b 81 ldd r24, Y+3 ; 0x03
277e: 9c 81 ldd r25, Y+4 ; 0x04
2780: 89 2b or r24, r25
2782: 39 f4 brne .+14 ; 0x2792
2784: 29 81 ldd r18, Y+1 ; 0x01
2786: 3a 81 ldd r19, Y+2 ; 0x02
2788: 8d 81 ldd r24, Y+5 ; 0x05
278a: 9e 81 ldd r25, Y+6 ; 0x06
278c: 28 17 cp r18, r24
278e: 39 07 cpc r19, r25
2790: 11 f0 breq .+4 ; 0x2796
2792: 0e 94 c8 27 call 0x4f90 ; 0x4f90
2796: 07 c0 rjmp .+14 ; 0x27a6
2798: 0e 94 cf 11 call 0x239e ; 0x239e
279c: 8d 81 ldd r24, Y+5 ; 0x05
279e: 9e 81 ldd r25, Y+6 ; 0x06
27a0: 01 97 sbiw r24, 0x01 ; 1
27a2: 8d 83 std Y+5, r24 ; 0x05
27a4: 9e 83 std Y+6, r25 ; 0x06
27a6: 8d 81 ldd r24, Y+5 ; 0x05
27a8: 9e 81 ldd r25, Y+6 ; 0x06
27aa: 89 2b or r24, r25
27ac: a9 f7 brne .-22 ; 0x2798
27ae: 8d 81 ldd r24, Y+5 ; 0x05
27b0: 9e 81 ldd r25, Y+6 ; 0x06
27b2: 89 2b or r24, r25
27b4: 11 f0 breq .+4 ; 0x27ba
27b6: 0e 94 c8 27 call 0x4f90 ; 0x4f90
27ba: 26 96 adiw r28, 0x06 ; 6
27bc: cd bf out 0x3d, r28 ; 61
27be: de bf out 0x3e, r29 ; 62
27c0: df 91 pop r29
27c2: cf 91 pop r28
27c4: 08 95 ret
27c6: ff 92 push r15
27c8: 0f 93 push r16
27ca: 1f 93 push r17
27cc: cf 93 push r28
27ce: df 93 push r29
27d0: cd b7 in r28, 0x3d ; 61
27d2: de b7 in r29, 0x3e ; 62
27d4: 6c 97 sbiw r28, 0x1c ; 28
27d6: cd bf out 0x3d, r28 ; 61
27d8: de bf out 0x3e, r29 ; 62
27da: 80 91 06 20 lds r24, 0x2006
27de: 88 37 cpi r24, 0x78 ; 120
27e0: 41 f4 brne .+16 ; 0x27f2
27e2: 80 91 06 20 lds r24, 0x2006
27e6: 88 37 cpi r24, 0x78 ; 120
27e8: 11 f0 breq .+4 ; 0x27ee
27ea: 0e 94 c8 27 call 0x4f90 ; 0x4f90
27ee: 8a e5 ldi r24, 0x5A ; 90
27f0: c0 c1 rjmp .+896 ; 0x2b72
27f2: 85 ea ldi r24, 0xA5 ; 165
27f4: 8b 83 std Y+3, r24 ; 0x03
27f6: 90 91 e2 21 lds r25, 0x21E2
27fa: 82 e0 ldi r24, 0x02 ; 2
27fc: 89 27 eor r24, r25
27fe: 80 93 e2 21 sts 0x21E2, r24
2802: 8a e2 ldi r24, 0x2A ; 42
2804: 90 e0 ldi r25, 0x00 ; 0
2806: 0e 94 dd 12 call 0x25ba ; 0x25ba
280a: 90 91 e2 21 lds r25, 0x21E2
280e: 84 e0 ldi r24, 0x04 ; 4
2810: 89 27 eor r24, r25
2812: 80 93 e2 21 sts 0x21E2, r24
2816: 81 e1 ldi r24, 0x11 ; 17
2818: 90 e0 ldi r25, 0x00 ; 0
281a: 0e 94 6d 13 call 0x26da ; 0x26da
281e: 90 91 e2 21 lds r25, 0x21E2
2822: 88 e0 ldi r24, 0x08 ; 8
2824: 89 27 eor r24, r25
2826: 80 93 e2 21 sts 0x21E2, r24
282a: 90 91 e2 21 lds r25, 0x21E2
282e: 80 e1 ldi r24, 0x10 ; 16
2830: 89 27 eor r24, r25
2832: 80 93 e2 21 sts 0x21E2, r24
2836: ce 01 movw r24, r28
2838: 41 96 adiw r24, 0x11 ; 17
283a: 0e 94 5b 19 call 0x32b6 ; 0x32b6
283e: 90 91 e2 21 lds r25, 0x21E2
2842: 80 e2 ldi r24, 0x20 ; 32
2844: 89 27 eor r24, r25
2846: 80 93 e2 21 sts 0x21E2, r24
284a: 0e 94 61 11 call 0x22c2 ; 0x22c2
284e: 89 83 std Y+1, r24 ; 0x01
2850: 9a 83 std Y+2, r25 ; 0x02
2852: 90 91 e2 21 lds r25, 0x21E2
2856: 81 e0 ldi r24, 0x01 ; 1
2858: 89 27 eor r24, r25
285a: 80 93 e2 21 sts 0x21E2, r24
285e: ce 01 movw r24, r28
2860: 41 96 adiw r24, 0x11 ; 17
2862: 8c 83 std Y+4, r24 ; 0x04
2864: 9d 83 std Y+5, r25 ; 0x05
2866: 8c 81 ldd r24, Y+4 ; 0x04
2868: 9d 81 ldd r25, Y+5 ; 0x05
286a: fc 01 movw r30, r24
286c: 20 81 ld r18, Z
286e: 31 81 ldd r19, Z+1 ; 0x01
2870: 8c 81 ldd r24, Y+4 ; 0x04
2872: 9d 81 ldd r25, Y+5 ; 0x05
2874: 02 96 adiw r24, 0x02 ; 2
2876: fc 01 movw r30, r24
2878: 40 81 ld r20, Z
287a: 51 81 ldd r21, Z+1 ; 0x01
287c: 8c 81 ldd r24, Y+4 ; 0x04
287e: 9d 81 ldd r25, Y+5 ; 0x05
2880: 04 96 adiw r24, 0x04 ; 4
2882: fc 01 movw r30, r24
2884: 80 81 ld r24, Z
2886: 91 81 ldd r25, Z+1 ; 0x01
2888: 48 27 eor r20, r24
288a: 59 27 eor r21, r25
288c: 8c 81 ldd r24, Y+4 ; 0x04
288e: 9d 81 ldd r25, Y+5 ; 0x05
2890: 06 96 adiw r24, 0x06 ; 6
2892: fc 01 movw r30, r24
2894: 80 81 ld r24, Z
2896: 91 81 ldd r25, Z+1 ; 0x01
2898: 48 27 eor r20, r24
289a: 59 27 eor r21, r25
289c: 8c 81 ldd r24, Y+4 ; 0x04
289e: 9d 81 ldd r25, Y+5 ; 0x05
28a0: 08 96 adiw r24, 0x08 ; 8
28a2: fc 01 movw r30, r24
28a4: 80 81 ld r24, Z
28a6: 91 81 ldd r25, Z+1 ; 0x01
28a8: 48 27 eor r20, r24
28aa: 59 27 eor r21, r25
28ac: 8c 81 ldd r24, Y+4 ; 0x04
28ae: 9d 81 ldd r25, Y+5 ; 0x05
28b0: 0a 96 adiw r24, 0x0a ; 10
28b2: fc 01 movw r30, r24
28b4: 80 81 ld r24, Z
28b6: 91 81 ldd r25, Z+1 ; 0x01
28b8: 48 27 eor r20, r24
28ba: 59 27 eor r21, r25
28bc: 8c 81 ldd r24, Y+4 ; 0x04
28be: 9d 81 ldd r25, Y+5 ; 0x05
28c0: 0c 96 adiw r24, 0x0c ; 12
28c2: fc 01 movw r30, r24
28c4: 80 81 ld r24, Z
28c6: 91 81 ldd r25, Z+1 ; 0x01
28c8: 84 27 eor r24, r20
28ca: 95 27 eor r25, r21
28cc: 82 27 eor r24, r18
28ce: 93 27 eor r25, r19
28d0: 9c 01 movw r18, r24
28d2: f7 eb ldi r31, 0xB7 ; 183
28d4: 2f 27 eor r18, r31
28d6: fa e7 ldi r31, 0x7A ; 122
28d8: 3f 27 eor r19, r31
28da: 8c 81 ldd r24, Y+4 ; 0x04
28dc: 9d 81 ldd r25, Y+5 ; 0x05
28de: fc 01 movw r30, r24
28e0: 20 83 st Z, r18
28e2: 31 83 std Z+1, r19 ; 0x01
28e4: 90 91 e2 21 lds r25, 0x21E2
28e8: 80 e4 ldi r24, 0x40 ; 64
28ea: 89 27 eor r24, r25
28ec: 80 93 e2 21 sts 0x21E2, r24
28f0: 1c 8e std Y+28, r1 ; 0x1c
28f2: 12 c1 rjmp .+548 ; 0x2b18
28f4: 89 81 ldd r24, Y+1 ; 0x01
28f6: 9a 81 ldd r25, Y+2 ; 0x02
28f8: 8f 71 andi r24, 0x1F ; 31
28fa: 99 27 eor r25, r25
28fc: 0e 94 6d 13 call 0x26da ; 0x26da
2900: 0e 94 cf 11 call 0x239e ; 0x239e
2904: 8e 83 std Y+6, r24 ; 0x06
2906: 9f 83 std Y+7, r25 ; 0x07
2908: 8c 81 ldd r24, Y+4 ; 0x04
290a: 9d 81 ldd r25, Y+5 ; 0x05
290c: fc 01 movw r30, r24
290e: 20 81 ld r18, Z
2910: 31 81 ldd r19, Z+1 ; 0x01
2912: 8e 81 ldd r24, Y+6 ; 0x06
2914: 9f 81 ldd r25, Y+7 ; 0x07
2916: 28 27 eor r18, r24
2918: 39 27 eor r19, r25
291a: 8c 81 ldd r24, Y+4 ; 0x04
291c: 9d 81 ldd r25, Y+5 ; 0x05
291e: fc 01 movw r30, r24
2920: 20 83 st Z, r18
2922: 31 83 std Z+1, r19 ; 0x01
2924: 0e 94 cf 11 call 0x239e ; 0x239e
2928: 8c 01 movw r16, r24
292a: 8c 81 ldd r24, Y+4 ; 0x04
292c: 9d 81 ldd r25, Y+5 ; 0x05
292e: fc 01 movw r30, r24
2930: 40 81 ld r20, Z
2932: 51 81 ldd r21, Z+1 ; 0x01
2934: 9a 01 movw r18, r20
2936: af e2 ldi r26, 0x2F ; 47
2938: ba eb ldi r27, 0xBA ; 186
293a: 0e 94 16 25 call 0x4a2c ; 0x4a2c
293e: 96 95 lsr r25
2940: 87 95 ror r24
2942: 96 95 lsr r25
2944: 87 95 ror r24
2946: 96 95 lsr r25
2948: 87 95 ror r24
294a: 6b e0 ldi r22, 0x0B ; 11
294c: 68 9f mul r22, r24
294e: 90 01 movw r18, r0
2950: 69 9f mul r22, r25
2952: 30 0d add r19, r0
2954: 11 24 eor r1, r1
2956: ca 01 movw r24, r20
2958: 82 1b sub r24, r18
295a: 93 0b sbc r25, r19
295c: 0e 94 f0 12 call 0x25e0 ; 0x25e0
2960: 80 27 eor r24, r16
2962: 91 27 eor r25, r17
2964: 88 87 std Y+8, r24 ; 0x08
2966: 99 87 std Y+9, r25 ; 0x09
2968: 48 85 ldd r20, Y+8 ; 0x08
296a: 59 85 ldd r21, Y+9 ; 0x09
296c: 9a 01 movw r18, r20
296e: a1 ef ldi r26, 0xF1 ; 241
2970: b0 ef ldi r27, 0xF0 ; 240
2972: 0e 94 16 25 call 0x4a2c ; 0x4a2c
2976: 92 95 swap r25
2978: 82 95 swap r24
297a: 8f 70 andi r24, 0x0F ; 15
297c: 89 27 eor r24, r25
297e: 9f 70 andi r25, 0x0F ; 15
2980: 89 27 eor r24, r25
2982: 61 e1 ldi r22, 0x11 ; 17
2984: 68 9f mul r22, r24
2986: 90 01 movw r18, r0
2988: 69 9f mul r22, r25
298a: 30 0d add r19, r0
298c: 11 24 eor r1, r1
298e: ca 01 movw r24, r20
2990: 82 1b sub r24, r18
2992: 93 0b sbc r25, r19
2994: 88 0f add r24, r24
2996: 99 1f adc r25, r25
2998: 8b 56 subi r24, 0x6B ; 107
299a: 9d 4d sbci r25, 0xDD ; 221
299c: fc 01 movw r30, r24
299e: 80 81 ld r24, Z
29a0: 91 81 ldd r25, Z+1 ; 0x01
29a2: 8a 87 std Y+10, r24 ; 0x0a
29a4: 9b 87 std Y+11, r25 ; 0x0b
29a6: 0e 94 cf 11 call 0x239e ; 0x239e
29aa: 8c 01 movw r16, r24
29ac: 4a 85 ldd r20, Y+10 ; 0x0a
29ae: 5b 85 ldd r21, Y+11 ; 0x0b
29b0: 9a 01 movw r18, r20
29b2: a3 e9 ldi r26, 0x93 ; 147
29b4: b4 e2 ldi r27, 0x24 ; 36
29b6: 0e 94 16 25 call 0x4a2c ; 0x4a2c
29ba: 9a 01 movw r18, r20
29bc: 28 1b sub r18, r24
29be: 39 0b sbc r19, r25
29c0: 36 95 lsr r19
29c2: 27 95 ror r18
29c4: 82 0f add r24, r18
29c6: 93 1f adc r25, r19
29c8: 9c 01 movw r18, r24
29ca: 36 95 lsr r19
29cc: 27 95 ror r18
29ce: 36 95 lsr r19
29d0: 27 95 ror r18
29d2: c9 01 movw r24, r18
29d4: 88 0f add r24, r24
29d6: 99 1f adc r25, r25
29d8: 88 0f add r24, r24
29da: 99 1f adc r25, r25
29dc: 88 0f add r24, r24
29de: 99 1f adc r25, r25
29e0: 82 1b sub r24, r18
29e2: 93 0b sbc r25, r19
29e4: 9a 01 movw r18, r20
29e6: 28 1b sub r18, r24
29e8: 39 0b sbc r19, r25
29ea: c9 01 movw r24, r18
29ec: 0e 94 f0 12 call 0x25e0 ; 0x25e0
29f0: 80 27 eor r24, r16
29f2: 91 27 eor r25, r17
29f4: 8c 87 std Y+12, r24 ; 0x0c
29f6: 9d 87 std Y+13, r25 ; 0x0d
29f8: 4c 85 ldd r20, Y+12 ; 0x0c
29fa: 5d 85 ldd r21, Y+13 ; 0x0d
29fc: 9a 01 movw r18, r20
29fe: a1 ef ldi r26, 0xF1 ; 241
2a00: b0 ef ldi r27, 0xF0 ; 240
2a02: 0e 94 16 25 call 0x4a2c ; 0x4a2c
2a06: 92 95 swap r25
2a08: 82 95 swap r24
2a0a: 8f 70 andi r24, 0x0F ; 15
2a0c: 89 27 eor r24, r25
2a0e: 9f 70 andi r25, 0x0F ; 15
2a10: 89 27 eor r24, r25
2a12: 61 e1 ldi r22, 0x11 ; 17
2a14: 68 9f mul r22, r24
2a16: 90 01 movw r18, r0
2a18: 69 9f mul r22, r25
2a1a: 30 0d add r19, r0
2a1c: 11 24 eor r1, r1
2a1e: ca 01 movw r24, r20
2a20: 82 1b sub r24, r18
2a22: 93 0b sbc r25, r19
2a24: 80 93 e1 21 sts 0x21E1, r24
2a28: 0e 94 cf 11 call 0x239e ; 0x239e
2a2c: 8c 01 movw r16, r24
2a2e: 0e 94 cf 11 call 0x239e ; 0x239e
2a32: ac 01 movw r20, r24
2a34: 9a 01 movw r18, r20
2a36: a5 ec ldi r26, 0xC5 ; 197
2a38: be e4 ldi r27, 0x4E ; 78
2a3a: 0e 94 16 25 call 0x4a2c ; 0x4a2c
2a3e: 96 95 lsr r25
2a40: 87 95 ror r24
2a42: 96 95 lsr r25
2a44: 87 95 ror r24
2a46: 6d e0 ldi r22, 0x0D ; 13
2a48: 68 9f mul r22, r24
2a4a: 90 01 movw r18, r0
2a4c: 69 9f mul r22, r25
2a4e: 30 0d add r19, r0
2a50: 11 24 eor r1, r1
2a52: ca 01 movw r24, r20
2a54: 82 1b sub r24, r18
2a56: 93 0b sbc r25, r19
2a58: 0e 94 f0 12 call 0x25e0 ; 0x25e0
2a5c: 80 27 eor r24, r16
2a5e: 91 27 eor r25, r17
2a60: 8e 87 std Y+14, r24 ; 0x0e
2a62: 9f 87 std Y+15, r25 ; 0x0f
2a64: 4e 85 ldd r20, Y+14 ; 0x0e
2a66: 5f 85 ldd r21, Y+15 ; 0x0f
2a68: 9a 01 movw r18, r20
2a6a: af e2 ldi r26, 0x2F ; 47
2a6c: ba eb ldi r27, 0xBA ; 186
2a6e: 0e 94 16 25 call 0x4a2c ; 0x4a2c
2a72: 96 95 lsr r25
2a74: 87 95 ror r24
2a76: 96 95 lsr r25
2a78: 87 95 ror r24
2a7a: 96 95 lsr r25
2a7c: 87 95 ror r24
2a7e: 6b e0 ldi r22, 0x0B ; 11
2a80: 68 9f mul r22, r24
2a82: 90 01 movw r18, r0
2a84: 69 9f mul r22, r25
2a86: 30 0d add r19, r0
2a88: 11 24 eor r1, r1
2a8a: ca 01 movw r24, r20
2a8c: 82 1b sub r24, r18
2a8e: 93 0b sbc r25, r19
2a90: 0e 94 6d 13 call 0x26da ; 0x26da
2a94: 0e 94 cf 11 call 0x239e ; 0x239e
2a98: 8c 01 movw r16, r24
2a9a: 81 e0 ldi r24, 0x01 ; 1
2a9c: 90 e0 ldi r25, 0x00 ; 0
2a9e: 0e 94 f0 12 call 0x25e0 ; 0x25e0
2aa2: a8 01 movw r20, r16
2aa4: 48 27 eor r20, r24
2aa6: 59 27 eor r21, r25
2aa8: 9a 01 movw r18, r20
2aaa: a3 e9 ldi r26, 0x93 ; 147
2aac: b1 e2 ldi r27, 0x21 ; 33
2aae: 0e 94 16 25 call 0x4a2c ; 0x4a2c
2ab2: 96 95 lsr r25
2ab4: 87 95 ror r24
2ab6: 96 95 lsr r25
2ab8: 87 95 ror r24
2aba: 96 95 lsr r25
2abc: 87 95 ror r24
2abe: 6d e3 ldi r22, 0x3D ; 61
2ac0: 68 9f mul r22, r24
2ac2: 90 01 movw r18, r0
2ac4: 69 9f mul r22, r25
2ac6: 30 0d add r19, r0
2ac8: 11 24 eor r1, r1
2aca: ca 01 movw r24, r20
2acc: 82 1b sub r24, r18
2ace: 93 0b sbc r25, r19
2ad0: 29 81 ldd r18, Y+1 ; 0x01
2ad2: 3a 81 ldd r19, Y+2 ; 0x02
2ad4: 82 27 eor r24, r18
2ad6: 93 27 eor r25, r19
2ad8: 89 83 std Y+1, r24 ; 0x01
2ada: 9a 83 std Y+2, r25 ; 0x02
2adc: 8c 8d ldd r24, Y+28 ; 0x1c
2ade: 88 23 and r24, r24
2ae0: c1 f0 breq .+48 ; 0x2b12
2ae2: 0e 94 59 13 call 0x26b2 ; 0x26b2
2ae6: 9c 01 movw r18, r24
2ae8: 89 81 ldd r24, Y+1 ; 0x01
2aea: 9a 81 ldd r25, Y+2 ; 0x02
2aec: 82 27 eor r24, r18
2aee: 93 27 eor r25, r19
2af0: 89 83 std Y+1, r24 ; 0x01
2af2: 9a 83 std Y+2, r25 ; 0x02
2af4: 0e 94 59 13 call 0x26b2 ; 0x26b2
2af8: 9c 01 movw r18, r24
2afa: 8c 81 ldd r24, Y+4 ; 0x04
2afc: 9d 81 ldd r25, Y+5 ; 0x05
2afe: fc 01 movw r30, r24
2b00: 80 81 ld r24, Z
2b02: 91 81 ldd r25, Z+1 ; 0x01
2b04: 28 27 eor r18, r24
2b06: 39 27 eor r19, r25
2b08: 8c 81 ldd r24, Y+4 ; 0x04
2b0a: 9d 81 ldd r25, Y+5 ; 0x05
2b0c: fc 01 movw r30, r24
2b0e: 20 83 st Z, r18
2b10: 31 83 std Z+1, r19 ; 0x01
2b12: 8c 8d ldd r24, Y+28 ; 0x1c
2b14: 8f 5f subi r24, 0xFF ; 255
2b16: 8c 8f std Y+28, r24 ; 0x1c
2b18: 8c 8d ldd r24, Y+28 ; 0x1c
2b1a: 83 30 cpi r24, 0x03 ; 3
2b1c: 08 f4 brcc .+2 ; 0x2b20
2b1e: ea ce rjmp .-556 ; 0x28f4
2b20: 8c 8d ldd r24, Y+28 ; 0x1c
2b22: 83 30 cpi r24, 0x03 ; 3
2b24: 10 f4 brcc .+4 ; 0x2b2a
2b26: 0e 94 c8 27 call 0x4f90 ; 0x4f90
2b2a: 80 91 e2 21 lds r24, 0x21E2
2b2e: 90 91 e2 21 lds r25, 0x21E2
2b32: 80 e8 ldi r24, 0x80 ; 128
2b34: 89 27 eor r24, r25
2b36: 80 93 e2 21 sts 0x21E2, r24
2b3a: 8a e5 ldi r24, 0x5A ; 90
2b3c: 88 8b std Y+16, r24 ; 0x10
2b3e: 80 91 e2 21 lds r24, 0x21E2
2b42: 8f 3f cpi r24, 0xFF ; 255
2b44: 11 f0 breq .+4 ; 0x2b4a
2b46: 0e 94 c8 27 call 0x4f90 ; 0x4f90
2b4a: 88 e7 ldi r24, 0x78 ; 120
2b4c: 80 93 06 20 sts 0x2006, r24
2b50: 0e 94 59 13 call 0x26b2 ; 0x26b2
2b54: f8 2e mov r15, r24
2b56: 0e 94 59 13 call 0x26b2 ; 0x26b2
2b5a: 08 2f mov r16, r24
2b5c: 0e 94 59 13 call 0x26b2 ; 0x26b2
2b60: 18 2f mov r17, r24
2b62: 0e 94 59 13 call 0x26b2 ; 0x26b2
2b66: 2f 2d mov r18, r15
2b68: 40 2f mov r20, r16
2b6a: 61 2f mov r22, r17
2b6c: 0e 94 ab 11 call 0x2356 ; 0x2356
2b70: 8b 81 ldd r24, Y+3 ; 0x03
2b72: 6c 96 adiw r28, 0x1c ; 28
2b74: cd bf out 0x3d, r28 ; 61
2b76: de bf out 0x3e, r29 ; 62
2b78: df 91 pop r29
2b7a: cf 91 pop r28
2b7c: 1f 91 pop r17
2b7e: 0f 91 pop r16
2b80: ff 90 pop r15
2b82: 08 95 ret
2b84: ff 92 push r15
2b86: 0f 93 push r16
2b88: 1f 93 push r17
2b8a: cf 93 push r28
2b8c: df 93 push r29
2b8e: cd b7 in r28, 0x3d ; 61
2b90: de b7 in r29, 0x3e ; 62
2b92: a2 97 sbiw r28, 0x22 ; 34
2b94: cd bf out 0x3d, r28 ; 61
2b96: de bf out 0x3e, r29 ; 62
2b98: 80 91 06 20 lds r24, 0x2006
2b9c: 88 37 cpi r24, 0x78 ; 120
2b9e: 41 f4 brne .+16 ; 0x2bb0
2ba0: 80 91 06 20 lds r24, 0x2006
2ba4: 88 37 cpi r24, 0x78 ; 120
2ba6: 11 f0 breq .+4 ; 0x2bac
2ba8: 0e 94 c8 27 call 0x4f90 ; 0x4f90
2bac: 8a e5 ldi r24, 0x5A ; 90
2bae: 9c c1 rjmp .+824 ; 0x2ee8
2bb0: 85 ea ldi r24, 0xA5 ; 165
2bb2: 8b 83 std Y+3, r24 ; 0x03
2bb4: 90 91 e2 21 lds r25, 0x21E2
2bb8: 82 e0 ldi r24, 0x02 ; 2
2bba: 89 27 eor r24, r25
2bbc: 80 93 e2 21 sts 0x21E2, r24
2bc0: 8a e2 ldi r24, 0x2A ; 42
2bc2: 90 e0 ldi r25, 0x00 ; 0
2bc4: 0e 94 dd 12 call 0x25ba ; 0x25ba
2bc8: 90 91 e2 21 lds r25, 0x21E2
2bcc: 84 e0 ldi r24, 0x04 ; 4
2bce: 89 27 eor r24, r25
2bd0: 80 93 e2 21 sts 0x21E2, r24
2bd4: 83 e4 ldi r24, 0x43 ; 67
2bd6: 90 e0 ldi r25, 0x00 ; 0
2bd8: 0e 94 6d 13 call 0x26da ; 0x26da
2bdc: 90 91 e2 21 lds r25, 0x21E2
2be0: 88 e0 ldi r24, 0x08 ; 8
2be2: 89 27 eor r24, r25
2be4: 80 93 e2 21 sts 0x21E2, r24
2be8: 90 91 e2 21 lds r25, 0x21E2
2bec: 80 e1 ldi r24, 0x10 ; 16
2bee: 89 27 eor r24, r25
2bf0: 80 93 e2 21 sts 0x21E2, r24
2bf4: ce 01 movw r24, r28
2bf6: 41 96 adiw r24, 0x11 ; 17
2bf8: 0e 94 5b 19 call 0x32b6 ; 0x32b6
2bfc: 90 91 e2 21 lds r25, 0x21E2
2c00: 80 e2 ldi r24, 0x20 ; 32
2c02: 89 27 eor r24, r25
2c04: 80 93 e2 21 sts 0x21E2, r24
2c08: 0e 94 61 11 call 0x22c2 ; 0x22c2
2c0c: 89 83 std Y+1, r24 ; 0x01
2c0e: 9a 83 std Y+2, r25 ; 0x02
2c10: 90 91 e2 21 lds r25, 0x21E2
2c14: 81 e0 ldi r24, 0x01 ; 1
2c16: 89 27 eor r24, r25
2c18: 80 93 e2 21 sts 0x21E2, r24
2c1c: ce 01 movw r24, r28
2c1e: 41 96 adiw r24, 0x11 ; 17
2c20: 8c 83 std Y+4, r24 ; 0x04
2c22: 9d 83 std Y+5, r25 ; 0x05
2c24: 8c 81 ldd r24, Y+4 ; 0x04
2c26: 9d 81 ldd r25, Y+5 ; 0x05
2c28: fc 01 movw r30, r24
2c2a: 20 81 ld r18, Z
2c2c: 31 81 ldd r19, Z+1 ; 0x01
2c2e: 8c 81 ldd r24, Y+4 ; 0x04
2c30: 9d 81 ldd r25, Y+5 ; 0x05
2c32: 02 96 adiw r24, 0x02 ; 2
2c34: fc 01 movw r30, r24
2c36: 40 81 ld r20, Z
2c38: 51 81 ldd r21, Z+1 ; 0x01
2c3a: 8c 81 ldd r24, Y+4 ; 0x04
2c3c: 9d 81 ldd r25, Y+5 ; 0x05
2c3e: 04 96 adiw r24, 0x04 ; 4
2c40: fc 01 movw r30, r24
2c42: 80 81 ld r24, Z
2c44: 91 81 ldd r25, Z+1 ; 0x01
2c46: 48 27 eor r20, r24
2c48: 59 27 eor r21, r25
2c4a: 8c 81 ldd r24, Y+4 ; 0x04
2c4c: 9d 81 ldd r25, Y+5 ; 0x05
2c4e: 06 96 adiw r24, 0x06 ; 6
2c50: fc 01 movw r30, r24
2c52: 80 81 ld r24, Z
2c54: 91 81 ldd r25, Z+1 ; 0x01
2c56: 48 27 eor r20, r24
2c58: 59 27 eor r21, r25
2c5a: 8c 81 ldd r24, Y+4 ; 0x04
2c5c: 9d 81 ldd r25, Y+5 ; 0x05
2c5e: 08 96 adiw r24, 0x08 ; 8
2c60: fc 01 movw r30, r24
2c62: 80 81 ld r24, Z
2c64: 91 81 ldd r25, Z+1 ; 0x01
2c66: 48 27 eor r20, r24
2c68: 59 27 eor r21, r25
2c6a: 8c 81 ldd r24, Y+4 ; 0x04
2c6c: 9d 81 ldd r25, Y+5 ; 0x05
2c6e: 0a 96 adiw r24, 0x0a ; 10
2c70: fc 01 movw r30, r24
2c72: 80 81 ld r24, Z
2c74: 91 81 ldd r25, Z+1 ; 0x01
2c76: 48 27 eor r20, r24
2c78: 59 27 eor r21, r25
2c7a: 8c 81 ldd r24, Y+4 ; 0x04
2c7c: 9d 81 ldd r25, Y+5 ; 0x05
2c7e: 0c 96 adiw r24, 0x0c ; 12
2c80: fc 01 movw r30, r24
2c82: 80 81 ld r24, Z
2c84: 91 81 ldd r25, Z+1 ; 0x01
2c86: 84 27 eor r24, r20
2c88: 95 27 eor r25, r21
2c8a: 82 27 eor r24, r18
2c8c: 93 27 eor r25, r19
2c8e: 9c 01 movw r18, r24
2c90: f7 eb ldi r31, 0xB7 ; 183
2c92: 2f 27 eor r18, r31
2c94: fa e7 ldi r31, 0x7A ; 122
2c96: 3f 27 eor r19, r31
2c98: 8c 81 ldd r24, Y+4 ; 0x04
2c9a: 9d 81 ldd r25, Y+5 ; 0x05
2c9c: fc 01 movw r30, r24
2c9e: 20 83 st Z, r18
2ca0: 31 83 std Z+1, r19 ; 0x01
2ca2: 90 91 e2 21 lds r25, 0x21E2
2ca6: 80 e4 ldi r24, 0x40 ; 64
2ca8: 89 27 eor r24, r25
2caa: 80 93 e2 21 sts 0x21E2, r24
2cae: 1c 8e std Y+28, r1 ; 0x1c
2cb0: ea c0 rjmp .+468 ; 0x2e86
2cb2: 89 81 ldd r24, Y+1 ; 0x01
2cb4: 9a 81 ldd r25, Y+2 ; 0x02
2cb6: 93 70 andi r25, 0x03 ; 3
2cb8: 0e 94 6d 13 call 0x26da ; 0x26da
2cbc: 0e 94 cf 11 call 0x239e ; 0x239e
2cc0: 8e 83 std Y+6, r24 ; 0x06
2cc2: 9f 83 std Y+7, r25 ; 0x07
2cc4: 8c 81 ldd r24, Y+4 ; 0x04
2cc6: 9d 81 ldd r25, Y+5 ; 0x05
2cc8: fc 01 movw r30, r24
2cca: 20 81 ld r18, Z
2ccc: 31 81 ldd r19, Z+1 ; 0x01
2cce: 8e 81 ldd r24, Y+6 ; 0x06
2cd0: 9f 81 ldd r25, Y+7 ; 0x07
2cd2: 28 27 eor r18, r24
2cd4: 39 27 eor r19, r25
2cd6: 8c 81 ldd r24, Y+4 ; 0x04
2cd8: 9d 81 ldd r25, Y+5 ; 0x05
2cda: fc 01 movw r30, r24
2cdc: 20 83 st Z, r18
2cde: 31 83 std Z+1, r19 ; 0x01
2ce0: 0e 94 cf 11 call 0x239e ; 0x239e
2ce4: 8c 01 movw r16, r24
2ce6: 8c 81 ldd r24, Y+4 ; 0x04
2ce8: 9d 81 ldd r25, Y+5 ; 0x05
2cea: fc 01 movw r30, r24
2cec: 80 81 ld r24, Z
2cee: 91 81 ldd r25, Z+1 ; 0x01
2cf0: 2d e2 ldi r18, 0x2D ; 45
2cf2: 32 e0 ldi r19, 0x02 ; 2
2cf4: b9 01 movw r22, r18
2cf6: 0e 94 c3 24 call 0x4986 ; 0x4986
2cfa: 0e 94 f0 12 call 0x25e0 ; 0x25e0
2cfe: 80 27 eor r24, r16
2d00: 91 27 eor r25, r17
2d02: 88 87 std Y+8, r24 ; 0x08
2d04: 99 87 std Y+9, r25 ; 0x09
2d06: 48 85 ldd r20, Y+8 ; 0x08
2d08: 59 85 ldd r21, Y+9 ; 0x09
2d0a: 9a 01 movw r18, r20
2d0c: a1 ef ldi r26, 0xF1 ; 241
2d0e: b0 ef ldi r27, 0xF0 ; 240
2d10: 0e 94 16 25 call 0x4a2c ; 0x4a2c
2d14: 92 95 swap r25
2d16: 82 95 swap r24
2d18: 8f 70 andi r24, 0x0F ; 15
2d1a: 89 27 eor r24, r25
2d1c: 9f 70 andi r25, 0x0F ; 15
2d1e: 89 27 eor r24, r25
2d20: 61 e1 ldi r22, 0x11 ; 17
2d22: 68 9f mul r22, r24
2d24: 90 01 movw r18, r0
2d26: 69 9f mul r22, r25
2d28: 30 0d add r19, r0
2d2a: 11 24 eor r1, r1
2d2c: ca 01 movw r24, r20
2d2e: 82 1b sub r24, r18
2d30: 93 0b sbc r25, r19
2d32: 88 0f add r24, r24
2d34: 99 1f adc r25, r25
2d36: 8b 56 subi r24, 0x6B ; 107
2d38: 9d 4d sbci r25, 0xDD ; 221
2d3a: fc 01 movw r30, r24
2d3c: 80 81 ld r24, Z
2d3e: 91 81 ldd r25, Z+1 ; 0x01
2d40: 8a 87 std Y+10, r24 ; 0x0a
2d42: 9b 87 std Y+11, r25 ; 0x0b
2d44: 0e 94 cf 11 call 0x239e ; 0x239e
2d48: 8c 01 movw r16, r24
2d4a: 8a 85 ldd r24, Y+10 ; 0x0a
2d4c: 9b 85 ldd r25, Y+11 ; 0x0b
2d4e: 25 ef ldi r18, 0xF5 ; 245
2d50: 32 e0 ldi r19, 0x02 ; 2
2d52: b9 01 movw r22, r18
2d54: 0e 94 c3 24 call 0x4986 ; 0x4986
2d58: 0e 94 f0 12 call 0x25e0 ; 0x25e0
2d5c: 80 27 eor r24, r16
2d5e: 91 27 eor r25, r17
2d60: 8c 87 std Y+12, r24 ; 0x0c
2d62: 9d 87 std Y+13, r25 ; 0x0d
2d64: 4c 85 ldd r20, Y+12 ; 0x0c
2d66: 5d 85 ldd r21, Y+13 ; 0x0d
2d68: 9a 01 movw r18, r20
2d6a: a1 ef ldi r26, 0xF1 ; 241
2d6c: b0 ef ldi r27, 0xF0 ; 240
2d6e: 0e 94 16 25 call 0x4a2c ; 0x4a2c
2d72: 92 95 swap r25
2d74: 82 95 swap r24
2d76: 8f 70 andi r24, 0x0F ; 15
2d78: 89 27 eor r24, r25
2d7a: 9f 70 andi r25, 0x0F ; 15
2d7c: 89 27 eor r24, r25
2d7e: 61 e1 ldi r22, 0x11 ; 17
2d80: 68 9f mul r22, r24
2d82: 90 01 movw r18, r0
2d84: 69 9f mul r22, r25
2d86: 30 0d add r19, r0
2d88: 11 24 eor r1, r1
2d8a: ca 01 movw r24, r20
2d8c: 82 1b sub r24, r18
2d8e: 93 0b sbc r25, r19
2d90: 80 93 e1 21 sts 0x21E1, r24
2d94: 0e 94 cf 11 call 0x239e ; 0x239e
2d98: 8c 01 movw r16, r24
2d9a: 0e 94 cf 11 call 0x239e ; 0x239e
2d9e: 29 e5 ldi r18, 0x59 ; 89
2da0: 33 e0 ldi r19, 0x03 ; 3
2da2: b9 01 movw r22, r18
2da4: 0e 94 c3 24 call 0x4986 ; 0x4986
2da8: 0e 94 f0 12 call 0x25e0 ; 0x25e0
2dac: 80 27 eor r24, r16
2dae: 91 27 eor r25, r17
2db0: 8e 87 std Y+14, r24 ; 0x0e
2db2: 9f 87 std Y+15, r25 ; 0x0f
2db4: 4e 85 ldd r20, Y+14 ; 0x0e
2db6: 5f 85 ldd r21, Y+15 ; 0x0f
2db8: 9a 01 movw r18, r20
2dba: a9 ed ldi r26, 0xD9 ; 217
2dbc: ba e8 ldi r27, 0x8A ; 138
2dbe: 0e 94 16 25 call 0x4a2c ; 0x4a2c
2dc2: 96 95 lsr r25
2dc4: 87 95 ror r24
2dc6: 92 95 swap r25
2dc8: 82 95 swap r24
2dca: 8f 70 andi r24, 0x0F ; 15
2dcc: 89 27 eor r24, r25
2dce: 9f 70 andi r25, 0x0F ; 15
2dd0: 89 27 eor r24, r25
2dd2: 6b e3 ldi r22, 0x3B ; 59
2dd4: 68 9f mul r22, r24
2dd6: 90 01 movw r18, r0
2dd8: 69 9f mul r22, r25
2dda: 30 0d add r19, r0
2ddc: 11 24 eor r1, r1
2dde: ca 01 movw r24, r20
2de0: 82 1b sub r24, r18
2de2: 93 0b sbc r25, r19
2de4: 0e 94 6d 13 call 0x26da ; 0x26da
2de8: 0e 94 cf 11 call 0x239e ; 0x239e
2dec: 8c 01 movw r16, r24
2dee: 81 e0 ldi r24, 0x01 ; 1
2df0: 90 e0 ldi r25, 0x00 ; 0
2df2: 0e 94 f0 12 call 0x25e0 ; 0x25e0
2df6: a8 01 movw r20, r16
2df8: 48 27 eor r20, r24
2dfa: 59 27 eor r21, r25
2dfc: 9a 01 movw r18, r20
2dfe: a3 e9 ldi r26, 0x93 ; 147
2e00: b1 e2 ldi r27, 0x21 ; 33
2e02: 0e 94 16 25 call 0x4a2c ; 0x4a2c
2e06: 96 95 lsr r25
2e08: 87 95 ror r24
2e0a: 96 95 lsr r25
2e0c: 87 95 ror r24
2e0e: 96 95 lsr r25
2e10: 87 95 ror r24
2e12: 6d e3 ldi r22, 0x3D ; 61
2e14: 68 9f mul r22, r24
2e16: 90 01 movw r18, r0
2e18: 69 9f mul r22, r25
2e1a: 30 0d add r19, r0
2e1c: 11 24 eor r1, r1
2e1e: ca 01 movw r24, r20
2e20: 82 1b sub r24, r18
2e22: 93 0b sbc r25, r19
2e24: 29 81 ldd r18, Y+1 ; 0x01
2e26: 3a 81 ldd r19, Y+2 ; 0x02
2e28: 82 27 eor r24, r18
2e2a: 93 27 eor r25, r19
2e2c: 89 83 std Y+1, r24 ; 0x01
2e2e: 9a 83 std Y+2, r25 ; 0x02
2e30: 8c 8d ldd r24, Y+28 ; 0x1c
2e32: 84 30 cpi r24, 0x04 ; 4
2e34: 28 f1 brcs .+74 ; 0x2e80
2e36: 0e 94 59 13 call 0x26b2 ; 0x26b2
2e3a: 9c 01 movw r18, r24
2e3c: 89 81 ldd r24, Y+1 ; 0x01
2e3e: 9a 81 ldd r25, Y+2 ; 0x02
2e40: 82 27 eor r24, r18
2e42: 93 27 eor r25, r19
2e44: 89 83 std Y+1, r24 ; 0x01
2e46: 9a 83 std Y+2, r25 ; 0x02
2e48: 0e 94 59 13 call 0x26b2 ; 0x26b2
2e4c: 9c 01 movw r18, r24
2e4e: 8c 81 ldd r24, Y+4 ; 0x04
2e50: 9d 81 ldd r25, Y+5 ; 0x05
2e52: fc 01 movw r30, r24
2e54: 80 81 ld r24, Z
2e56: 91 81 ldd r25, Z+1 ; 0x01
2e58: 28 27 eor r18, r24
2e5a: 39 27 eor r19, r25
2e5c: 8c 81 ldd r24, Y+4 ; 0x04
2e5e: 9d 81 ldd r25, Y+5 ; 0x05
2e60: fc 01 movw r30, r24
2e62: 20 83 st Z, r18
2e64: 31 83 std Z+1, r19 ; 0x01
2e66: 0e 94 cf 11 call 0x239e ; 0x239e
2e6a: 89 2b or r24, r25
2e6c: 19 f0 breq .+6 ; 0x2e74
2e6e: 81 e0 ldi r24, 0x01 ; 1
2e70: 90 e0 ldi r25, 0x00 ; 0
2e72: 02 c0 rjmp .+4 ; 0x2e78
2e74: 80 e0 ldi r24, 0x00 ; 0
2e76: 90 e0 ldi r25, 0x00 ; 0
2e78: 98 2f mov r25, r24
2e7a: 8c 8d ldd r24, Y+28 ; 0x1c
2e7c: 89 0f add r24, r25
2e7e: 8c 8f std Y+28, r24 ; 0x1c
2e80: 8c 8d ldd r24, Y+28 ; 0x1c
2e82: 8f 5f subi r24, 0xFF ; 255
2e84: 8c 8f std Y+28, r24 ; 0x1c
2e86: 8c 8d ldd r24, Y+28 ; 0x1c
2e88: 88 30 cpi r24, 0x08 ; 8
2e8a: 08 f4 brcc .+2 ; 0x2e8e
2e8c: 12 cf rjmp .-476 ; 0x2cb2
2e8e: 8c 8d ldd r24, Y+28 ; 0x1c
2e90: 86 30 cpi r24, 0x06 ; 6
2e92: 08 f4 brcc .+2 ; 0x2e96
2e94: 0c cf rjmp .-488 ; 0x2cae
2e96: 8c 8d ldd r24, Y+28 ; 0x1c
2e98: 87 30 cpi r24, 0x07 ; 7
2e9a: 10 f4 brcc .+4 ; 0x2ea0
2e9c: 0e 94 c8 27 call 0x4f90 ; 0x4f90
2ea0: 80 91 e2 21 lds r24, 0x21E2
2ea4: 90 91 e2 21 lds r25, 0x21E2
2ea8: 80 e8 ldi r24, 0x80 ; 128
2eaa: 89 27 eor r24, r25
2eac: 80 93 e2 21 sts 0x21E2, r24
2eb0: 8a e5 ldi r24, 0x5A ; 90
2eb2: 88 8b std Y+16, r24 ; 0x10
2eb4: 80 91 e2 21 lds r24, 0x21E2
2eb8: 8f 3f cpi r24, 0xFF ; 255
2eba: 11 f0 breq .+4 ; 0x2ec0
2ebc: 0e 94 c8 27 call 0x4f90 ; 0x4f90
2ec0: 88 e7 ldi r24, 0x78 ; 120
2ec2: 80 93 06 20 sts 0x2006, r24
2ec6: 0e 94 59 13 call 0x26b2 ; 0x26b2
2eca: f8 2e mov r15, r24
2ecc: 0e 94 59 13 call 0x26b2 ; 0x26b2
2ed0: 08 2f mov r16, r24
2ed2: 0e 94 59 13 call 0x26b2 ; 0x26b2
2ed6: 18 2f mov r17, r24
2ed8: 0e 94 59 13 call 0x26b2 ; 0x26b2
2edc: 2f 2d mov r18, r15
2ede: 40 2f mov r20, r16
2ee0: 61 2f mov r22, r17
2ee2: 0e 94 ab 11 call 0x2356 ; 0x2356
2ee6: 8b 81 ldd r24, Y+3 ; 0x03
2ee8: a2 96 adiw r28, 0x22 ; 34
2eea: cd bf out 0x3d, r28 ; 61
2eec: de bf out 0x3e, r29 ; 62
2eee: df 91 pop r29
2ef0: cf 91 pop r28
2ef2: 1f 91 pop r17
2ef4: 0f 91 pop r16
2ef6: ff 90 pop r15
2ef8: 08 95 ret
2efa: cf 93 push r28
2efc: df 93 push r29
2efe: 1f 92 push r1
2f00: 1f 92 push r1
2f02: cd b7 in r28, 0x3d ; 61
2f04: de b7 in r29, 0x3e ; 62
2f06: 89 83 std Y+1, r24 ; 0x01
2f08: 9a 83 std Y+2, r25 ; 0x02
2f0a: 89 81 ldd r24, Y+1 ; 0x01
2f0c: 9a 81 ldd r25, Y+2 ; 0x02
2f0e: fc 01 movw r30, r24
2f10: 82 81 ldd r24, Z+2 ; 0x02
2f12: 93 81 ldd r25, Z+3 ; 0x03
2f14: 29 81 ldd r18, Y+1 ; 0x01
2f16: 3a 81 ldd r19, Y+2 ; 0x02
2f18: f9 01 movw r30, r18
2f1a: 25 81 ldd r18, Z+5 ; 0x05
2f1c: fc 01 movw r30, r24
2f1e: 25 83 std Z+5, r18 ; 0x05
2f20: 89 81 ldd r24, Y+1 ; 0x01
2f22: 9a 81 ldd r25, Y+2 ; 0x02
2f24: fc 01 movw r30, r24
2f26: 82 81 ldd r24, Z+2 ; 0x02
2f28: 93 81 ldd r25, Z+3 ; 0x03
2f2a: 29 81 ldd r18, Y+1 ; 0x01
2f2c: 3a 81 ldd r19, Y+2 ; 0x02
2f2e: f9 01 movw r30, r18
2f30: 25 81 ldd r18, Z+5 ; 0x05
2f32: fc 01 movw r30, r24
2f34: 21 83 std Z+1, r18 ; 0x01
2f36: 89 81 ldd r24, Y+1 ; 0x01
2f38: 9a 81 ldd r25, Y+2 ; 0x02
2f3a: fc 01 movw r30, r24
2f3c: 82 81 ldd r24, Z+2 ; 0x02
2f3e: 93 81 ldd r25, Z+3 ; 0x03
2f40: 29 81 ldd r18, Y+1 ; 0x01
2f42: 3a 81 ldd r19, Y+2 ; 0x02
2f44: f9 01 movw r30, r18
2f46: 24 81 ldd r18, Z+4 ; 0x04
2f48: fc 01 movw r30, r24
2f4a: 26 83 std Z+6, r18 ; 0x06
2f4c: 89 81 ldd r24, Y+1 ; 0x01
2f4e: 9a 81 ldd r25, Y+2 ; 0x02
2f50: fc 01 movw r30, r24
2f52: 82 81 ldd r24, Z+2 ; 0x02
2f54: 93 81 ldd r25, Z+3 ; 0x03
2f56: 29 81 ldd r18, Y+1 ; 0x01
2f58: 3a 81 ldd r19, Y+2 ; 0x02
2f5a: f9 01 movw r30, r18
2f5c: 24 81 ldd r18, Z+4 ; 0x04
2f5e: fc 01 movw r30, r24
2f60: 22 83 std Z+2, r18 ; 0x02
2f62: 89 81 ldd r24, Y+1 ; 0x01
2f64: 9a 81 ldd r25, Y+2 ; 0x02
2f66: fc 01 movw r30, r24
2f68: 80 81 ld r24, Z
2f6a: 91 81 ldd r25, Z+1 ; 0x01
2f6c: 29 81 ldd r18, Y+1 ; 0x01
2f6e: 3a 81 ldd r19, Y+2 ; 0x02
2f70: f9 01 movw r30, r18
2f72: 20 81 ld r18, Z
2f74: 31 81 ldd r19, Z+1 ; 0x01
2f76: f9 01 movw r30, r18
2f78: 23 81 ldd r18, Z+3 ; 0x03
2f7a: fc 01 movw r30, r24
2f7c: 23 83 std Z+3, r18 ; 0x03
2f7e: 89 81 ldd r24, Y+1 ; 0x01
2f80: 9a 81 ldd r25, Y+2 ; 0x02
2f82: fc 01 movw r30, r24
2f84: 80 81 ld r24, Z
2f86: 91 81 ldd r25, Z+1 ; 0x01
2f88: 29 81 ldd r18, Y+1 ; 0x01
2f8a: 3a 81 ldd r19, Y+2 ; 0x02
2f8c: f9 01 movw r30, r18
2f8e: 20 81 ld r18, Z
2f90: 31 81 ldd r19, Z+1 ; 0x01
2f92: f9 01 movw r30, r18
2f94: 23 81 ldd r18, Z+3 ; 0x03
2f96: fc 01 movw r30, r24
2f98: 23 83 std Z+3, r18 ; 0x03
2f9a: 89 81 ldd r24, Y+1 ; 0x01
2f9c: 9a 81 ldd r25, Y+2 ; 0x02
2f9e: fc 01 movw r30, r24
2fa0: 80 81 ld r24, Z
2fa2: 91 81 ldd r25, Z+1 ; 0x01
2fa4: 29 81 ldd r18, Y+1 ; 0x01
2fa6: 3a 81 ldd r19, Y+2 ; 0x02
2fa8: f9 01 movw r30, r18
2faa: 20 81 ld r18, Z
2fac: 31 81 ldd r19, Z+1 ; 0x01
2fae: f9 01 movw r30, r18
2fb0: 23 81 ldd r18, Z+3 ; 0x03
2fb2: fc 01 movw r30, r24
2fb4: 23 83 std Z+3, r18 ; 0x03
2fb6: 89 81 ldd r24, Y+1 ; 0x01
2fb8: 9a 81 ldd r25, Y+2 ; 0x02
2fba: fc 01 movw r30, r24
2fbc: 80 81 ld r24, Z
2fbe: 91 81 ldd r25, Z+1 ; 0x01
2fc0: 24 e0 ldi r18, 0x04 ; 4
2fc2: fc 01 movw r30, r24
2fc4: 24 83 std Z+4, r18 ; 0x04
2fc6: 89 81 ldd r24, Y+1 ; 0x01
2fc8: 9a 81 ldd r25, Y+2 ; 0x02
2fca: fc 01 movw r30, r24
2fcc: 80 81 ld r24, Z
2fce: 91 81 ldd r25, Z+1 ; 0x01
2fd0: 23 e0 ldi r18, 0x03 ; 3
2fd2: fc 01 movw r30, r24
2fd4: 25 83 std Z+5, r18 ; 0x05
2fd6: 89 81 ldd r24, Y+1 ; 0x01
2fd8: 9a 81 ldd r25, Y+2 ; 0x02
2fda: fc 01 movw r30, r24
2fdc: 80 81 ld r24, Z
2fde: 91 81 ldd r25, Z+1 ; 0x01
2fe0: fc 01 movw r30, r24
2fe2: 17 82 std Z+7, r1 ; 0x07
2fe4: 89 81 ldd r24, Y+1 ; 0x01
2fe6: 9a 81 ldd r25, Y+2 ; 0x02
2fe8: fc 01 movw r30, r24
2fea: 80 81 ld r24, Z
2fec: 91 81 ldd r25, Z+1 ; 0x01
2fee: 22 e2 ldi r18, 0x22 ; 34
2ff0: fc 01 movw r30, r24
2ff2: 26 83 std Z+6, r18 ; 0x06
2ff4: 89 81 ldd r24, Y+1 ; 0x01
2ff6: 9a 81 ldd r25, Y+2 ; 0x02
2ff8: fc 01 movw r30, r24
2ffa: 80 81 ld r24, Z
2ffc: 91 81 ldd r25, Z+1 ; 0x01
2ffe: 29 81 ldd r18, Y+1 ; 0x01
3000: 3a 81 ldd r19, Y+2 ; 0x02
3002: f9 01 movw r30, r18
3004: 20 81 ld r18, Z
3006: 31 81 ldd r19, Z+1 ; 0x01
3008: f9 01 movw r30, r18
300a: 24 81 ldd r18, Z+4 ; 0x04
300c: 28 61 ori r18, 0x18 ; 24
300e: fc 01 movw r30, r24
3010: 24 83 std Z+4, r18 ; 0x04
3012: 0f 90 pop r0
3014: 0f 90 pop r0
3016: df 91 pop r29
3018: cf 91 pop r28
301a: 08 95 ret
301c: cf 93 push r28
301e: df 93 push r29
3020: 00 d0 rcall .+0 ; 0x3022
3022: cd b7 in r28, 0x3d ; 61
3024: de b7 in r29, 0x3e ; 62
3026: 89 83 std Y+1, r24 ; 0x01
3028: 9a 83 std Y+2, r25 ; 0x02
302a: 6b 83 std Y+3, r22 ; 0x03
302c: 00 00 nop
302e: 89 81 ldd r24, Y+1 ; 0x01
3030: 9a 81 ldd r25, Y+2 ; 0x02
3032: fc 01 movw r30, r24
3034: 80 81 ld r24, Z
3036: 91 81 ldd r25, Z+1 ; 0x01
3038: fc 01 movw r30, r24
303a: 81 81 ldd r24, Z+1 ; 0x01
303c: 88 2f mov r24, r24
303e: 90 e0 ldi r25, 0x00 ; 0
3040: 80 72 andi r24, 0x20 ; 32
3042: 99 27 eor r25, r25
3044: 89 2b or r24, r25
3046: 99 f3 breq .-26 ; 0x302e
3048: 89 81 ldd r24, Y+1 ; 0x01
304a: 9a 81 ldd r25, Y+2 ; 0x02
304c: fc 01 movw r30, r24
304e: 80 81 ld r24, Z
3050: 91 81 ldd r25, Z+1 ; 0x01
3052: 2b 81 ldd r18, Y+3 ; 0x03
3054: fc 01 movw r30, r24
3056: 20 83 st Z, r18
3058: 00 00 nop
305a: 89 81 ldd r24, Y+1 ; 0x01
305c: 9a 81 ldd r25, Y+2 ; 0x02
305e: fc 01 movw r30, r24
3060: 80 81 ld r24, Z
3062: 91 81 ldd r25, Z+1 ; 0x01
3064: fc 01 movw r30, r24
3066: 81 81 ldd r24, Z+1 ; 0x01
3068: 23 96 adiw r28, 0x03 ; 3
306a: cd bf out 0x3d, r28 ; 61
306c: de bf out 0x3e, r29 ; 62
306e: df 91 pop r29
3070: cf 91 pop r28
3072: 08 95 ret
3074: cf 93 push r28
3076: df 93 push r29
3078: 1f 92 push r1
307a: cd b7 in r28, 0x3d ; 61
307c: de b7 in r29, 0x3e ; 62
307e: 89 83 std Y+1, r24 ; 0x01
3080: 80 91 0f 20 lds r24, 0x200F
3084: 90 91 10 20 lds r25, 0x2010
3088: 69 81 ldd r22, Y+1 ; 0x01
308a: 0e 94 0e 18 call 0x301c ; 0x301c
308e: 0f 90 pop r0
3090: df 91 pop r29
3092: cf 91 pop r28
3094: 08 95 ret
3096: cf 93 push r28
3098: df 93 push r29
309a: 00 d0 rcall .+0 ; 0x309c
309c: 1f 92 push r1
309e: cd b7 in r28, 0x3d ; 61
30a0: de b7 in r29, 0x3e ; 62
30a2: 89 83 std Y+1, r24 ; 0x01
30a4: 9a 83 std Y+2, r25 ; 0x02
30a6: 6b 83 std Y+3, r22 ; 0x03
30a8: 7c 83 std Y+4, r23 ; 0x04
30aa: 0e c0 rjmp .+28 ; 0x30c8
30ac: 8b 81 ldd r24, Y+3 ; 0x03
30ae: 9c 81 ldd r25, Y+4 ; 0x04
30b0: fc 01 movw r30, r24
30b2: 20 81 ld r18, Z
30b4: 89 81 ldd r24, Y+1 ; 0x01
30b6: 9a 81 ldd r25, Y+2 ; 0x02
30b8: 62 2f mov r22, r18
30ba: 0e 94 0e 18 call 0x301c ; 0x301c
30be: 8b 81 ldd r24, Y+3 ; 0x03
30c0: 9c 81 ldd r25, Y+4 ; 0x04
30c2: 01 96 adiw r24, 0x01 ; 1
30c4: 8b 83 std Y+3, r24 ; 0x03
30c6: 9c 83 std Y+4, r25 ; 0x04
30c8: 8b 81 ldd r24, Y+3 ; 0x03
30ca: 9c 81 ldd r25, Y+4 ; 0x04
30cc: fc 01 movw r30, r24
30ce: 80 81 ld r24, Z
30d0: 88 23 and r24, r24
30d2: 61 f7 brne .-40 ; 0x30ac
30d4: 24 96 adiw r28, 0x04 ; 4
30d6: cd bf out 0x3d, r28 ; 61
30d8: de bf out 0x3e, r29 ; 62
30da: df 91 pop r29
30dc: cf 91 pop r28
30de: 08 95 ret
30e0: cf 93 push r28
30e2: df 93 push r29
30e4: 1f 92 push r1
30e6: 1f 92 push r1
30e8: cd b7 in r28, 0x3d ; 61
30ea: de b7 in r29, 0x3e ; 62
30ec: ce 01 movw r24, r28
30ee: 0c 96 adiw r24, 0x0c ; 12
30f0: 89 83 std Y+1, r24 ; 0x01
30f2: 9a 83 std Y+2, r25 ; 0x02
30f4: 29 81 ldd r18, Y+1 ; 0x01
30f6: 3a 81 ldd r19, Y+2 ; 0x02
30f8: 8a 85 ldd r24, Y+10 ; 0x0a
30fa: 9b 85 ldd r25, Y+11 ; 0x0b
30fc: ac 01 movw r20, r24
30fe: 68 e7 ldi r22, 0x78 ; 120
3100: 70 e0 ldi r23, 0x00 ; 0
3102: 83 ee ldi r24, 0xE3 ; 227
3104: 91 e2 ldi r25, 0x21 ; 33
3106: 0e 94 22 28 call 0x5044 ; 0x5044
310a: 88 85 ldd r24, Y+8 ; 0x08
310c: 99 85 ldd r25, Y+9 ; 0x09
310e: 63 ee ldi r22, 0xE3 ; 227
3110: 71 e2 ldi r23, 0x21 ; 33
3112: 0e 94 4b 18 call 0x3096 ; 0x3096
3116: 0f 90 pop r0
3118: 0f 90 pop r0
311a: df 91 pop r29
311c: cf 91 pop r28
311e: 08 95 ret
3120: cf 93 push r28
3122: df 93 push r29
3124: 1f 92 push r1
3126: 1f 92 push r1
3128: cd b7 in r28, 0x3d ; 61
312a: de b7 in r29, 0x3e ; 62
312c: 89 83 std Y+1, r24 ; 0x01
312e: 9a 83 std Y+2, r25 ; 0x02
3130: 00 00 nop
3132: 89 81 ldd r24, Y+1 ; 0x01
3134: 9a 81 ldd r25, Y+2 ; 0x02
3136: fc 01 movw r30, r24
3138: 80 81 ld r24, Z
313a: 91 81 ldd r25, Z+1 ; 0x01
313c: fc 01 movw r30, r24
313e: 81 81 ldd r24, Z+1 ; 0x01
3140: 88 23 and r24, r24
3142: bc f7 brge .-18 ; 0x3132
3144: 89 81 ldd r24, Y+1 ; 0x01
3146: 9a 81 ldd r25, Y+2 ; 0x02
3148: fc 01 movw r30, r24
314a: 80 81 ld r24, Z
314c: 91 81 ldd r25, Z+1 ; 0x01
314e: fc 01 movw r30, r24
3150: 80 81 ld r24, Z
3152: 0f 90 pop r0
3154: 0f 90 pop r0
3156: df 91 pop r29
3158: cf 91 pop r28
315a: 08 95 ret
315c: cf 93 push r28
315e: df 93 push r29
3160: cd b7 in r28, 0x3d ; 61
3162: de b7 in r29, 0x3e ; 62
3164: 80 91 0f 20 lds r24, 0x200F
3168: 90 91 10 20 lds r25, 0x2010
316c: 0e 94 90 18 call 0x3120 ; 0x3120
3170: df 91 pop r29
3172: cf 91 pop r28
3174: 08 95 ret
3176: cf 93 push r28
3178: df 93 push r29
317a: cd b7 in r28, 0x3d ; 61
317c: de b7 in r29, 0x3e ; 62
317e: 2a 97 sbiw r28, 0x0a ; 10
3180: cd bf out 0x3d, r28 ; 61
3182: de bf out 0x3e, r29 ; 62
3184: 8c 83 std Y+4, r24 ; 0x04
3186: 9d 83 std Y+5, r25 ; 0x05
3188: 6e 83 std Y+6, r22 ; 0x06
318a: 7f 83 std Y+7, r23 ; 0x07
318c: 48 87 std Y+8, r20 ; 0x08
318e: 59 87 std Y+9, r21 ; 0x09
3190: 2a 87 std Y+10, r18 ; 0x0a
3192: 19 82 std Y+1, r1 ; 0x01
3194: 1a 82 std Y+2, r1 ; 0x02
3196: 8c 81 ldd r24, Y+4 ; 0x04
3198: 9d 81 ldd r25, Y+5 ; 0x05
319a: 0e 94 90 18 call 0x3120 ; 0x3120
319e: 8b 83 std Y+3, r24 ; 0x03
31a0: 8c 81 ldd r24, Y+4 ; 0x04
31a2: 9d 81 ldd r25, Y+5 ; 0x05
31a4: 6b 81 ldd r22, Y+3 ; 0x03
31a6: 0e 94 0e 18 call 0x301c ; 0x301c
31aa: 2e 81 ldd r18, Y+6 ; 0x06
31ac: 3f 81 ldd r19, Y+7 ; 0x07
31ae: 89 81 ldd r24, Y+1 ; 0x01
31b0: 9a 81 ldd r25, Y+2 ; 0x02
31b2: 82 0f add r24, r18
31b4: 93 1f adc r25, r19
31b6: 2b 81 ldd r18, Y+3 ; 0x03
31b8: fc 01 movw r30, r24
31ba: 20 83 st Z, r18
31bc: 88 85 ldd r24, Y+8 ; 0x08
31be: 99 85 ldd r25, Y+9 ; 0x09
31c0: 9c 01 movw r18, r24
31c2: 21 50 subi r18, 0x01 ; 1
31c4: 31 09 sbc r19, r1
31c6: 89 81 ldd r24, Y+1 ; 0x01
31c8: 9a 81 ldd r25, Y+2 ; 0x02
31ca: 82 17 cp r24, r18
31cc: 93 07 cpc r25, r19
31ce: 28 f4 brcc .+10 ; 0x31da
31d0: 89 81 ldd r24, Y+1 ; 0x01
31d2: 9a 81 ldd r25, Y+2 ; 0x02
31d4: 01 96 adiw r24, 0x01 ; 1
31d6: 89 83 std Y+1, r24 ; 0x01
31d8: 9a 83 std Y+2, r25 ; 0x02
31da: 9b 81 ldd r25, Y+3 ; 0x03
31dc: 8a 85 ldd r24, Y+10 ; 0x0a
31de: 98 17 cp r25, r24
31e0: 49 f4 brne .+18 ; 0x31f4
31e2: 2e 81 ldd r18, Y+6 ; 0x06
31e4: 3f 81 ldd r19, Y+7 ; 0x07
31e6: 89 81 ldd r24, Y+1 ; 0x01
31e8: 9a 81 ldd r25, Y+2 ; 0x02
31ea: 82 0f add r24, r18
31ec: 93 1f adc r25, r19
31ee: fc 01 movw r30, r24
31f0: 10 82 st Z, r1
31f2: 01 c0 rjmp .+2 ; 0x31f6
31f4: d0 cf rjmp .-96 ; 0x3196
31f6: 89 81 ldd r24, Y+1 ; 0x01
31f8: 9a 81 ldd r25, Y+2 ; 0x02
31fa: 2a 96 adiw r28, 0x0a ; 10
31fc: cd bf out 0x3d, r28 ; 61
31fe: de bf out 0x3e, r29 ; 62
3200: df 91 pop r29
3202: cf 91 pop r28
3204: 08 95 ret
3206: cf 93 push r28
3208: df 93 push r29
320a: cd b7 in r28, 0x3d ; 61
320c: de b7 in r29, 0x3e ; 62
320e: 80 e2 ldi r24, 0x20 ; 32
3210: 96 e0 ldi r25, 0x06 ; 6
3212: 21 e0 ldi r18, 0x01 ; 1
3214: fc 01 movw r30, r24
3216: 26 83 std Z+6, r18 ; 0x06
3218: 80 e2 ldi r24, 0x20 ; 32
321a: 96 e0 ldi r25, 0x06 ; 6
321c: 21 e0 ldi r18, 0x01 ; 1
321e: fc 01 movw r30, r24
3220: 21 83 std Z+1, r18 ; 0x01
3222: df 91 pop r29
3224: cf 91 pop r28
3226: 08 95 ret
3228: cf 93 push r28
322a: df 93 push r29
322c: cd b7 in r28, 0x3d ; 61
322e: de b7 in r29, 0x3e ; 62
3230: 80 e2 ldi r24, 0x20 ; 32
3232: 96 e0 ldi r25, 0x06 ; 6
3234: 21 e0 ldi r18, 0x01 ; 1
3236: fc 01 movw r30, r24
3238: 25 83 std Z+5, r18 ; 0x05
323a: df 91 pop r29
323c: cf 91 pop r28
323e: 08 95 ret
3240: cf 93 push r28
3242: df 93 push r29
3244: cd b7 in r28, 0x3d ; 61
3246: de b7 in r29, 0x3e ; 62
3248: 80 e2 ldi r24, 0x20 ; 32
324a: 96 e0 ldi r25, 0x06 ; 6
324c: 21 e0 ldi r18, 0x01 ; 1
324e: fc 01 movw r30, r24
3250: 26 83 std Z+6, r18 ; 0x06
3252: df 91 pop r29
3254: cf 91 pop r28
3256: 08 95 ret
3258: cf 93 push r28
325a: df 93 push r29
325c: cd b7 in r28, 0x3d ; 61
325e: de b7 in r29, 0x3e ; 62
3260: 80 e2 ldi r24, 0x20 ; 32
3262: 96 e0 ldi r25, 0x06 ; 6
3264: 21 e0 ldi r18, 0x01 ; 1
3266: fc 01 movw r30, r24
3268: 27 83 std Z+7, r18 ; 0x07
326a: df 91 pop r29
326c: cf 91 pop r28
326e: 08 95 ret
3270: cf 93 push r28
3272: df 93 push r29
3274: 00 d0 rcall .+0 ; 0x3276
3276: 00 d0 rcall .+0 ; 0x3278
3278: cd b7 in r28, 0x3d ; 61
327a: de b7 in r29, 0x3e ; 62
327c: 8d 83 std Y+5, r24 ; 0x05
327e: 9e 83 std Y+6, r25 ; 0x06
3280: 8a ec ldi r24, 0xCA ; 202
3282: 91 e0 ldi r25, 0x01 ; 1
3284: 22 e0 ldi r18, 0x02 ; 2
3286: fc 01 movw r30, r24
3288: 20 83 st Z, r18
328a: 8d 81 ldd r24, Y+5 ; 0x05
328c: 9e 81 ldd r25, Y+6 ; 0x06
328e: 89 83 std Y+1, r24 ; 0x01
3290: 9a 83 std Y+2, r25 ; 0x02
3292: 89 81 ldd r24, Y+1 ; 0x01
3294: 9a 81 ldd r25, Y+2 ; 0x02
3296: fc 01 movw r30, r24
3298: 84 91 lpm r24, Z
329a: 8b 83 std Y+3, r24 ; 0x03
329c: 8b 81 ldd r24, Y+3 ; 0x03
329e: 8c 83 std Y+4, r24 ; 0x04
32a0: 8a ec ldi r24, 0xCA ; 202
32a2: 91 e0 ldi r25, 0x01 ; 1
32a4: fc 01 movw r30, r24
32a6: 10 82 st Z, r1
32a8: 8c 81 ldd r24, Y+4 ; 0x04
32aa: 26 96 adiw r28, 0x06 ; 6
32ac: cd bf out 0x3d, r28 ; 61
32ae: de bf out 0x3e, r29 ; 62
32b0: df 91 pop r29
32b2: cf 91 pop r28
32b4: 08 95 ret
32b6: 0f 93 push r16
32b8: 1f 93 push r17
32ba: cf 93 push r28
32bc: df 93 push r29
32be: 1f 92 push r1
32c0: 1f 92 push r1
32c2: cd b7 in r28, 0x3d ; 61
32c4: de b7 in r29, 0x3e ; 62
32c6: 89 83 std Y+1, r24 ; 0x01
32c8: 9a 83 std Y+2, r25 ; 0x02
32ca: 88 e0 ldi r24, 0x08 ; 8
32cc: 90 e0 ldi r25, 0x00 ; 0
32ce: 0e 94 38 19 call 0x3270 ; 0x3270
32d2: 28 2f mov r18, r24
32d4: 89 81 ldd r24, Y+1 ; 0x01
32d6: 9a 81 ldd r25, Y+2 ; 0x02
32d8: fc 01 movw r30, r24
32da: 20 83 st Z, r18
32dc: 89 81 ldd r24, Y+1 ; 0x01
32de: 9a 81 ldd r25, Y+2 ; 0x02
32e0: 8c 01 movw r16, r24
32e2: 0f 5f subi r16, 0xFF ; 255
32e4: 1f 4f sbci r17, 0xFF ; 255
32e6: 89 e0 ldi r24, 0x09 ; 9
32e8: 90 e0 ldi r25, 0x00 ; 0
32ea: 0e 94 38 19 call 0x3270 ; 0x3270
32ee: f8 01 movw r30, r16
32f0: 80 83 st Z, r24
32f2: 89 81 ldd r24, Y+1 ; 0x01
32f4: 9a 81 ldd r25, Y+2 ; 0x02
32f6: 8c 01 movw r16, r24
32f8: 0e 5f subi r16, 0xFE ; 254
32fa: 1f 4f sbci r17, 0xFF ; 255
32fc: 8a e0 ldi r24, 0x0A ; 10
32fe: 90 e0 ldi r25, 0x00 ; 0
3300: 0e 94 38 19 call 0x3270 ; 0x3270
3304: f8 01 movw r30, r16
3306: 80 83 st Z, r24
3308: 89 81 ldd r24, Y+1 ; 0x01
330a: 9a 81 ldd r25, Y+2 ; 0x02
330c: 8c 01 movw r16, r24
330e: 0d 5f subi r16, 0xFD ; 253
3310: 1f 4f sbci r17, 0xFF ; 255
3312: 8b e0 ldi r24, 0x0B ; 11
3314: 90 e0 ldi r25, 0x00 ; 0
3316: 0e 94 38 19 call 0x3270 ; 0x3270
331a: f8 01 movw r30, r16
331c: 80 83 st Z, r24
331e: 89 81 ldd r24, Y+1 ; 0x01
3320: 9a 81 ldd r25, Y+2 ; 0x02
3322: 8c 01 movw r16, r24
3324: 0c 5f subi r16, 0xFC ; 252
3326: 1f 4f sbci r17, 0xFF ; 255
3328: 8c e0 ldi r24, 0x0C ; 12
332a: 90 e0 ldi r25, 0x00 ; 0
332c: 0e 94 38 19 call 0x3270 ; 0x3270
3330: f8 01 movw r30, r16
3332: 80 83 st Z, r24
3334: 89 81 ldd r24, Y+1 ; 0x01
3336: 9a 81 ldd r25, Y+2 ; 0x02
3338: 8c 01 movw r16, r24
333a: 0b 5f subi r16, 0xFB ; 251
333c: 1f 4f sbci r17, 0xFF ; 255
333e: 8d e0 ldi r24, 0x0D ; 13
3340: 90 e0 ldi r25, 0x00 ; 0
3342: 0e 94 38 19 call 0x3270 ; 0x3270
3346: f8 01 movw r30, r16
3348: 80 83 st Z, r24
334a: 89 81 ldd r24, Y+1 ; 0x01
334c: 9a 81 ldd r25, Y+2 ; 0x02
334e: 8c 01 movw r16, r24
3350: 0a 5f subi r16, 0xFA ; 250
3352: 1f 4f sbci r17, 0xFF ; 255
3354: 80 e1 ldi r24, 0x10 ; 16
3356: 90 e0 ldi r25, 0x00 ; 0
3358: 0e 94 38 19 call 0x3270 ; 0x3270
335c: f8 01 movw r30, r16
335e: 80 83 st Z, r24
3360: 89 81 ldd r24, Y+1 ; 0x01
3362: 9a 81 ldd r25, Y+2 ; 0x02
3364: 8c 01 movw r16, r24
3366: 09 5f subi r16, 0xF9 ; 249
3368: 1f 4f sbci r17, 0xFF ; 255
336a: 82 e1 ldi r24, 0x12 ; 18
336c: 90 e0 ldi r25, 0x00 ; 0
336e: 0e 94 38 19 call 0x3270 ; 0x3270
3372: f8 01 movw r30, r16
3374: 80 83 st Z, r24
3376: 89 81 ldd r24, Y+1 ; 0x01
3378: 9a 81 ldd r25, Y+2 ; 0x02
337a: 8c 01 movw r16, r24
337c: 08 5f subi r16, 0xF8 ; 248
337e: 1f 4f sbci r17, 0xFF ; 255
3380: 83 e1 ldi r24, 0x13 ; 19
3382: 90 e0 ldi r25, 0x00 ; 0
3384: 0e 94 38 19 call 0x3270 ; 0x3270
3388: f8 01 movw r30, r16
338a: 80 83 st Z, r24
338c: 89 81 ldd r24, Y+1 ; 0x01
338e: 9a 81 ldd r25, Y+2 ; 0x02
3390: 8c 01 movw r16, r24
3392: 07 5f subi r16, 0xF7 ; 247
3394: 1f 4f sbci r17, 0xFF ; 255
3396: 84 e1 ldi r24, 0x14 ; 20
3398: 90 e0 ldi r25, 0x00 ; 0
339a: 0e 94 38 19 call 0x3270 ; 0x3270
339e: f8 01 movw r30, r16
33a0: 80 83 st Z, r24
33a2: 89 81 ldd r24, Y+1 ; 0x01
33a4: 9a 81 ldd r25, Y+2 ; 0x02
33a6: 8c 01 movw r16, r24
33a8: 06 5f subi r16, 0xF6 ; 246
33aa: 1f 4f sbci r17, 0xFF ; 255
33ac: 85 e1 ldi r24, 0x15 ; 21
33ae: 90 e0 ldi r25, 0x00 ; 0
33b0: 0e 94 38 19 call 0x3270 ; 0x3270
33b4: f8 01 movw r30, r16
33b6: 80 83 st Z, r24
33b8: 0f 90 pop r0
33ba: 0f 90 pop r0
33bc: df 91 pop r29
33be: cf 91 pop r28
33c0: 1f 91 pop r17
33c2: 0f 91 pop r16
33c4: 08 95 ret
33c6: cf 93 push r28
33c8: df 93 push r29
33ca: 1f 92 push r1
33cc: cd b7 in r28, 0x3d ; 61
33ce: de b7 in r29, 0x3e ; 62
33d0: 89 83 std Y+1, r24 ; 0x01
33d2: 89 81 ldd r24, Y+1 ; 0x01
33d4: 88 2f mov r24, r24
33d6: 90 e0 ldi r25, 0x00 ; 0
33d8: 09 2e mov r0, r25
33da: 00 0c add r0, r0
33dc: aa 0b sbc r26, r26
33de: bb 0b sbc r27, r27
33e0: 40 e0 ldi r20, 0x00 ; 0
33e2: 50 e0 ldi r21, 0x00 ; 0
33e4: 2a e0 ldi r18, 0x0A ; 10
33e6: 30 e0 ldi r19, 0x00 ; 0
33e8: 84 1b sub r24, r20
33ea: 95 0b sbc r25, r21
33ec: 28 17 cp r18, r24
33ee: 39 07 cpc r19, r25
33f0: 08 f4 brcc .+2 ; 0x33f4
33f2: 3e c0 rjmp .+124 ; 0x3470
33f4: fc 01 movw r30, r24
33f6: 88 27 eor r24, r24
33f8: e2 50 subi r30, 0x02 ; 2
33fa: ff 4f sbci r31, 0xFF ; 255
33fc: 8f 4f sbci r24, 0xFF ; 255
33fe: 0c 94 0d 25 jmp 0x4a1a ; 0x4a1a
3402: 88 e0 ldi r24, 0x08 ; 8
3404: 90 e0 ldi r25, 0x00 ; 0
3406: 0e 94 38 19 call 0x3270 ; 0x3270
340a: 32 c0 rjmp .+100 ; 0x3470
340c: 89 e0 ldi r24, 0x09 ; 9
340e: 90 e0 ldi r25, 0x00 ; 0
3410: 0e 94 38 19 call 0x3270 ; 0x3270
3414: 2d c0 rjmp .+90 ; 0x3470
3416: 8a e0 ldi r24, 0x0A ; 10
3418: 90 e0 ldi r25, 0x00 ; 0
341a: 0e 94 38 19 call 0x3270 ; 0x3270
341e: 28 c0 rjmp .+80 ; 0x3470
3420: 8b e0 ldi r24, 0x0B ; 11
3422: 90 e0 ldi r25, 0x00 ; 0
3424: 0e 94 38 19 call 0x3270 ; 0x3270
3428: 23 c0 rjmp .+70 ; 0x3470
342a: 8c e0 ldi r24, 0x0C ; 12
342c: 90 e0 ldi r25, 0x00 ; 0
342e: 0e 94 38 19 call 0x3270 ; 0x3270
3432: 1e c0 rjmp .+60 ; 0x3470
3434: 8d e0 ldi r24, 0x0D ; 13
3436: 90 e0 ldi r25, 0x00 ; 0
3438: 0e 94 38 19 call 0x3270 ; 0x3270
343c: 19 c0 rjmp .+50 ; 0x3470
343e: 80 e1 ldi r24, 0x10 ; 16
3440: 90 e0 ldi r25, 0x00 ; 0
3442: 0e 94 38 19 call 0x3270 ; 0x3270
3446: 14 c0 rjmp .+40 ; 0x3470
3448: 82 e1 ldi r24, 0x12 ; 18
344a: 90 e0 ldi r25, 0x00 ; 0
344c: 0e 94 38 19 call 0x3270 ; 0x3270
3450: 0f c0 rjmp .+30 ; 0x3470
3452: 83 e1 ldi r24, 0x13 ; 19
3454: 90 e0 ldi r25, 0x00 ; 0
3456: 0e 94 38 19 call 0x3270 ; 0x3270
345a: 0a c0 rjmp .+20 ; 0x3470
345c: 84 e1 ldi r24, 0x14 ; 20
345e: 90 e0 ldi r25, 0x00 ; 0
3460: 0e 94 38 19 call 0x3270 ; 0x3270
3464: 05 c0 rjmp .+10 ; 0x3470
3466: 85 e1 ldi r24, 0x15 ; 21
3468: 90 e0 ldi r25, 0x00 ; 0
346a: 0e 94 38 19 call 0x3270 ; 0x3270
346e: 00 c0 rjmp .+0 ; 0x3470
3470: 0f 90 pop r0
3472: df 91 pop r29
3474: cf 91 pop r28
3476: 08 95 ret
3478: cf 93 push r28
347a: df 93 push r29
347c: cd b7 in r28, 0x3d ; 61
347e: de b7 in r29, 0x3e ; 62
3480: 8f e0 ldi r24, 0x0F ; 15
3482: 0e 94 c8 1c call 0x3990 ; 0x3990
3486: 80 e0 ldi r24, 0x00 ; 0
3488: 90 e0 ldi r25, 0x00 ; 0
348a: 0e 94 34 1b call 0x3668 ; 0x3668
348e: 80 e0 ldi r24, 0x00 ; 0
3490: 0e 94 88 1b call 0x3710 ; 0x3710
3494: 80 e0 ldi r24, 0x00 ; 0
3496: 0e 94 a8 1b call 0x3750 ; 0x3750
349a: 80 e0 ldi r24, 0x00 ; 0
349c: 90 e0 ldi r25, 0x00 ; 0
349e: 0e 94 c8 1b call 0x3790 ; 0x3790
34a2: 80 e1 ldi r24, 0x10 ; 16
34a4: 90 e0 ldi r25, 0x00 ; 0
34a6: 0e 94 e8 1b call 0x37d0 ; 0x37d0
34aa: 81 e0 ldi r24, 0x01 ; 1
34ac: 0e 94 08 1c call 0x3810 ; 0x3810
34b0: 81 e0 ldi r24, 0x01 ; 1
34b2: 0e 94 28 1c call 0x3850 ; 0x3850
34b6: 80 e0 ldi r24, 0x00 ; 0
34b8: 90 e0 ldi r25, 0x00 ; 0
34ba: 0e 94 48 1c call 0x3890 ; 0x3890
34be: 80 e0 ldi r24, 0x00 ; 0
34c0: 90 e0 ldi r25, 0x00 ; 0
34c2: 0e 94 68 1c call 0x38d0 ; 0x38d0
34c6: 80 e0 ldi r24, 0x00 ; 0
34c8: 90 e0 ldi r25, 0x00 ; 0
34ca: 0e 94 88 1c call 0x3910 ; 0x3910
34ce: 84 e0 ldi r24, 0x04 ; 4
34d0: 90 e0 ldi r25, 0x00 ; 0
34d2: 0e 94 a8 1c call 0x3950 ; 0x3950
34d6: 60 e0 ldi r22, 0x00 ; 0
34d8: 70 e0 ldi r23, 0x00 ; 0
34da: 80 e2 ldi r24, 0x20 ; 32
34dc: 92 e0 ldi r25, 0x02 ; 2
34de: 0e 94 dc 1c call 0x39b8 ; 0x39b8
34e2: 61 e0 ldi r22, 0x01 ; 1
34e4: 70 e0 ldi r23, 0x00 ; 0
34e6: 80 e2 ldi r24, 0x20 ; 32
34e8: 92 e0 ldi r25, 0x02 ; 2
34ea: 0e 94 01 1d call 0x3a02 ; 0x3a02
34ee: 68 e0 ldi r22, 0x08 ; 8
34f0: 70 e0 ldi r23, 0x00 ; 0
34f2: 80 e2 ldi r24, 0x20 ; 32
34f4: 92 e0 ldi r25, 0x02 ; 2
34f6: 0e 94 26 1d call 0x3a4c ; 0x3a4c
34fa: 60 e0 ldi r22, 0x00 ; 0
34fc: 70 e0 ldi r23, 0x00 ; 0
34fe: 80 e2 ldi r24, 0x20 ; 32
3500: 92 e0 ldi r25, 0x02 ; 2
3502: 0e 94 4b 1d call 0x3a96 ; 0x3a96
3506: df 91 pop r29
3508: cf 91 pop r28
350a: 08 95 ret
350c: cf 93 push r28
350e: df 93 push r29
3510: 1f 92 push r1
3512: 1f 92 push r1
3514: cd b7 in r28, 0x3d ; 61
3516: de b7 in r29, 0x3e ; 62
3518: 89 83 std Y+1, r24 ; 0x01
351a: 9a 83 std Y+2, r25 ; 0x02
351c: 80 e0 ldi r24, 0x00 ; 0
351e: 92 e0 ldi r25, 0x02 ; 2
3520: 29 81 ldd r18, Y+1 ; 0x01
3522: 3a 81 ldd r19, Y+2 ; 0x02
3524: fc 01 movw r30, r24
3526: 24 87 std Z+12, r18 ; 0x0c
3528: 35 87 std Z+13, r19 ; 0x0d
352a: 0f 90 pop r0
352c: 0f 90 pop r0
352e: df 91 pop r29
3530: cf 91 pop r28
3532: 08 95 ret
3534: cf 93 push r28
3536: df 93 push r29
3538: 00 d0 rcall .+0 ; 0x353a
353a: cd b7 in r28, 0x3d ; 61
353c: de b7 in r29, 0x3e ; 62
353e: 80 e0 ldi r24, 0x00 ; 0
3540: 96 e0 ldi r25, 0x06 ; 6
3542: 2f e7 ldi r18, 0x7F ; 127
3544: fc 01 movw r30, r24
3546: 22 83 std Z+2, r18 ; 0x02
3548: 81 e0 ldi r24, 0x01 ; 1
354a: 0e 94 68 1b call 0x36d0 ; 0x36d0
354e: 19 82 std Y+1, r1 ; 0x01
3550: 1a 82 std Y+2, r1 ; 0x02
3552: 5d c0 rjmp .+186 ; 0x360e
3554: 60 e0 ldi r22, 0x00 ; 0
3556: 70 e0 ldi r23, 0x00 ; 0
3558: 80 e2 ldi r24, 0x20 ; 32
355a: 92 e0 ldi r25, 0x02 ; 2
355c: 0e 94 26 1d call 0x3a4c ; 0x3a4c
3560: 0e 94 15 1b call 0x362a ; 0x362a
3564: 8b 83 std Y+3, r24 ; 0x03
3566: 68 e0 ldi r22, 0x08 ; 8
3568: 70 e0 ldi r23, 0x00 ; 0
356a: 80 e2 ldi r24, 0x20 ; 32
356c: 92 e0 ldi r25, 0x02 ; 2
356e: 0e 94 26 1d call 0x3a4c ; 0x3a4c
3572: 0e 94 15 1b call 0x362a ; 0x362a
3576: 98 2f mov r25, r24
3578: 8b 81 ldd r24, Y+3 ; 0x03
357a: 89 27 eor r24, r25
357c: 8b 83 std Y+3, r24 ; 0x03
357e: 60 e1 ldi r22, 0x10 ; 16
3580: 70 e0 ldi r23, 0x00 ; 0
3582: 80 e2 ldi r24, 0x20 ; 32
3584: 92 e0 ldi r25, 0x02 ; 2
3586: 0e 94 26 1d call 0x3a4c ; 0x3a4c
358a: 0e 94 15 1b call 0x362a ; 0x362a
358e: 98 2f mov r25, r24
3590: 8b 81 ldd r24, Y+3 ; 0x03
3592: 89 27 eor r24, r25
3594: 8b 83 std Y+3, r24 ; 0x03
3596: 68 e1 ldi r22, 0x18 ; 24
3598: 70 e0 ldi r23, 0x00 ; 0
359a: 80 e2 ldi r24, 0x20 ; 32
359c: 92 e0 ldi r25, 0x02 ; 2
359e: 0e 94 26 1d call 0x3a4c ; 0x3a4c
35a2: 0e 94 15 1b call 0x362a ; 0x362a
35a6: 98 2f mov r25, r24
35a8: 8b 81 ldd r24, Y+3 ; 0x03
35aa: 89 27 eor r24, r25
35ac: 8b 83 std Y+3, r24 ; 0x03
35ae: 60 e2 ldi r22, 0x20 ; 32
35b0: 70 e0 ldi r23, 0x00 ; 0
35b2: 80 e2 ldi r24, 0x20 ; 32
35b4: 92 e0 ldi r25, 0x02 ; 2
35b6: 0e 94 26 1d call 0x3a4c ; 0x3a4c
35ba: 0e 94 15 1b call 0x362a ; 0x362a
35be: 98 2f mov r25, r24
35c0: 8b 81 ldd r24, Y+3 ; 0x03
35c2: 89 27 eor r24, r25
35c4: 8b 83 std Y+3, r24 ; 0x03
35c6: 68 e2 ldi r22, 0x28 ; 40
35c8: 70 e0 ldi r23, 0x00 ; 0
35ca: 80 e2 ldi r24, 0x20 ; 32
35cc: 92 e0 ldi r25, 0x02 ; 2
35ce: 0e 94 26 1d call 0x3a4c ; 0x3a4c
35d2: 0e 94 15 1b call 0x362a ; 0x362a
35d6: 98 2f mov r25, r24
35d8: 8b 81 ldd r24, Y+3 ; 0x03
35da: 89 27 eor r24, r25
35dc: 8b 83 std Y+3, r24 ; 0x03
35de: 60 e3 ldi r22, 0x30 ; 48
35e0: 70 e0 ldi r23, 0x00 ; 0
35e2: 80 e2 ldi r24, 0x20 ; 32
35e4: 92 e0 ldi r25, 0x02 ; 2
35e6: 0e 94 26 1d call 0x3a4c ; 0x3a4c
35ea: 0e 94 15 1b call 0x362a ; 0x362a
35ee: 98 2f mov r25, r24
35f0: 8b 81 ldd r24, Y+3 ; 0x03
35f2: 89 27 eor r24, r25
35f4: 8b 83 std Y+3, r24 ; 0x03
35f6: 89 81 ldd r24, Y+1 ; 0x01
35f8: 88 0f add r24, r24
35fa: 89 83 std Y+1, r24 ; 0x01
35fc: 8b 81 ldd r24, Y+3 ; 0x03
35fe: 98 2f mov r25, r24
3600: 91 70 andi r25, 0x01 ; 1
3602: 89 81 ldd r24, Y+1 ; 0x01
3604: 89 2b or r24, r25
3606: 89 83 std Y+1, r24 ; 0x01
3608: 8a 81 ldd r24, Y+2 ; 0x02
360a: 8f 5f subi r24, 0xFF ; 255
360c: 8a 83 std Y+2, r24 ; 0x02
360e: 8a 81 ldd r24, Y+2 ; 0x02
3610: 88 30 cpi r24, 0x08 ; 8
3612: 08 f4 brcc .+2 ; 0x3616
3614: 9f cf rjmp .-194 ; 0x3554
3616: 80 e0 ldi r24, 0x00 ; 0
3618: 0e 94 68 1b call 0x36d0 ; 0x36d0
361c: 89 81 ldd r24, Y+1 ; 0x01
361e: 23 96 adiw r28, 0x03 ; 3
3620: cd bf out 0x3d, r28 ; 61
3622: de bf out 0x3e, r29 ; 62
3624: df 91 pop r29
3626: cf 91 pop r28
3628: 08 95 ret
362a: cf 93 push r28
362c: df 93 push r29
362e: cd b7 in r28, 0x3d ; 61
3630: de b7 in r29, 0x3e ; 62
3632: 80 e0 ldi r24, 0x00 ; 0
3634: 92 e0 ldi r25, 0x02 ; 2
3636: 21 e0 ldi r18, 0x01 ; 1
3638: fc 01 movw r30, r24
363a: 26 83 std Z+6, r18 ; 0x06
363c: 84 e0 ldi r24, 0x04 ; 4
363e: 0e 94 54 1b call 0x36a8 ; 0x36a8
3642: 00 00 nop
3644: 80 e0 ldi r24, 0x00 ; 0
3646: 92 e0 ldi r25, 0x02 ; 2
3648: fc 01 movw r30, r24
364a: 86 81 ldd r24, Z+6 ; 0x06
364c: 88 2f mov r24, r24
364e: 90 e0 ldi r25, 0x00 ; 0
3650: 81 70 andi r24, 0x01 ; 1
3652: 99 27 eor r25, r25
3654: 89 2b or r24, r25
3656: b1 f3 breq .-20 ; 0x3644
3658: 80 e0 ldi r24, 0x00 ; 0
365a: 92 e0 ldi r25, 0x02 ; 2
365c: fc 01 movw r30, r24
365e: 80 89 ldd r24, Z+16 ; 0x10
3660: 91 89 ldd r25, Z+17 ; 0x11
3662: df 91 pop r29
3664: cf 91 pop r28
3666: 08 95 ret
3668: cf 93 push r28
366a: df 93 push r29
366c: 1f 92 push r1
366e: 1f 92 push r1
3670: cd b7 in r28, 0x3d ; 61
3672: de b7 in r29, 0x3e ; 62
3674: 89 83 std Y+1, r24 ; 0x01
3676: 9a 83 std Y+2, r25 ; 0x02
3678: 80 e0 ldi r24, 0x00 ; 0
367a: 92 e0 ldi r25, 0x02 ; 2
367c: 20 e0 ldi r18, 0x00 ; 0
367e: 32 e0 ldi r19, 0x02 ; 2
3680: f9 01 movw r30, r18
3682: 20 81 ld r18, Z
3684: 2f 73 andi r18, 0x3F ; 63
3686: fc 01 movw r30, r24
3688: 20 83 st Z, r18
368a: 80 e0 ldi r24, 0x00 ; 0
368c: 92 e0 ldi r25, 0x02 ; 2
368e: 20 e0 ldi r18, 0x00 ; 0
3690: 32 e0 ldi r19, 0x02 ; 2
3692: f9 01 movw r30, r18
3694: 30 81 ld r19, Z
3696: 29 81 ldd r18, Y+1 ; 0x01
3698: 23 2b or r18, r19
369a: fc 01 movw r30, r24
369c: 20 83 st Z, r18
369e: 0f 90 pop r0
36a0: 0f 90 pop r0
36a2: df 91 pop r29
36a4: cf 91 pop r28
36a6: 08 95 ret
36a8: cf 93 push r28
36aa: df 93 push r29
36ac: 1f 92 push r1
36ae: cd b7 in r28, 0x3d ; 61
36b0: de b7 in r29, 0x3e ; 62
36b2: 89 83 std Y+1, r24 ; 0x01
36b4: 80 e0 ldi r24, 0x00 ; 0
36b6: 92 e0 ldi r25, 0x02 ; 2
36b8: 20 e0 ldi r18, 0x00 ; 0
36ba: 32 e0 ldi r19, 0x02 ; 2
36bc: f9 01 movw r30, r18
36be: 30 81 ld r19, Z
36c0: 29 81 ldd r18, Y+1 ; 0x01
36c2: 23 2b or r18, r19
36c4: fc 01 movw r30, r24
36c6: 20 83 st Z, r18
36c8: 0f 90 pop r0
36ca: df 91 pop r29
36cc: cf 91 pop r28
36ce: 08 95 ret
36d0: cf 93 push r28
36d2: df 93 push r29
36d4: 1f 92 push r1
36d6: cd b7 in r28, 0x3d ; 61
36d8: de b7 in r29, 0x3e ; 62
36da: 89 83 std Y+1, r24 ; 0x01
36dc: 89 81 ldd r24, Y+1 ; 0x01
36de: 88 23 and r24, r24
36e0: 51 f0 breq .+20 ; 0x36f6
36e2: 80 e0 ldi r24, 0x00 ; 0
36e4: 92 e0 ldi r25, 0x02 ; 2
36e6: 20 e0 ldi r18, 0x00 ; 0
36e8: 32 e0 ldi r19, 0x02 ; 2
36ea: f9 01 movw r30, r18
36ec: 20 81 ld r18, Z
36ee: 21 60 ori r18, 0x01 ; 1
36f0: fc 01 movw r30, r24
36f2: 20 83 st Z, r18
36f4: 09 c0 rjmp .+18 ; 0x3708
36f6: 80 e0 ldi r24, 0x00 ; 0
36f8: 92 e0 ldi r25, 0x02 ; 2
36fa: 20 e0 ldi r18, 0x00 ; 0
36fc: 32 e0 ldi r19, 0x02 ; 2
36fe: f9 01 movw r30, r18
3700: 20 81 ld r18, Z
3702: 2e 7f andi r18, 0xFE ; 254
3704: fc 01 movw r30, r24
3706: 20 83 st Z, r18
3708: 0f 90 pop r0
370a: df 91 pop r29
370c: cf 91 pop r28
370e: 08 95 ret
3710: cf 93 push r28
3712: df 93 push r29
3714: 1f 92 push r1
3716: cd b7 in r28, 0x3d ; 61
3718: de b7 in r29, 0x3e ; 62
371a: 89 83 std Y+1, r24 ; 0x01
371c: 89 81 ldd r24, Y+1 ; 0x01
371e: 88 23 and r24, r24
3720: 51 f0 breq .+20 ; 0x3736
3722: 80 e0 ldi r24, 0x00 ; 0
3724: 92 e0 ldi r25, 0x02 ; 2
3726: 20 e0 ldi r18, 0x00 ; 0
3728: 32 e0 ldi r19, 0x02 ; 2
372a: f9 01 movw r30, r18
372c: 21 81 ldd r18, Z+1 ; 0x01
372e: 20 61 ori r18, 0x10 ; 16
3730: fc 01 movw r30, r24
3732: 21 83 std Z+1, r18 ; 0x01
3734: 09 c0 rjmp .+18 ; 0x3748
3736: 80 e0 ldi r24, 0x00 ; 0
3738: 92 e0 ldi r25, 0x02 ; 2
373a: 20 e0 ldi r18, 0x00 ; 0
373c: 32 e0 ldi r19, 0x02 ; 2
373e: f9 01 movw r30, r18
3740: 21 81 ldd r18, Z+1 ; 0x01
3742: 2f 7e andi r18, 0xEF ; 239
3744: fc 01 movw r30, r24
3746: 21 83 std Z+1, r18 ; 0x01
3748: 0f 90 pop r0
374a: df 91 pop r29
374c: cf 91 pop r28
374e: 08 95 ret
3750: cf 93 push r28
3752: df 93 push r29
3754: 1f 92 push r1
3756: cd b7 in r28, 0x3d ; 61
3758: de b7 in r29, 0x3e ; 62
375a: 89 83 std Y+1, r24 ; 0x01
375c: 89 81 ldd r24, Y+1 ; 0x01
375e: 88 23 and r24, r24
3760: 51 f0 breq .+20 ; 0x3776
3762: 80 e0 ldi r24, 0x00 ; 0
3764: 92 e0 ldi r25, 0x02 ; 2
3766: 20 e0 ldi r18, 0x00 ; 0
3768: 32 e0 ldi r19, 0x02 ; 2
376a: f9 01 movw r30, r18
376c: 21 81 ldd r18, Z+1 ; 0x01
376e: 28 60 ori r18, 0x08 ; 8
3770: fc 01 movw r30, r24
3772: 21 83 std Z+1, r18 ; 0x01
3774: 09 c0 rjmp .+18 ; 0x3788
3776: 80 e0 ldi r24, 0x00 ; 0
3778: 92 e0 ldi r25, 0x02 ; 2
377a: 20 e0 ldi r18, 0x00 ; 0
377c: 32 e0 ldi r19, 0x02 ; 2
377e: f9 01 movw r30, r18
3780: 21 81 ldd r18, Z+1 ; 0x01
3782: 27 7f andi r18, 0xF7 ; 247
3784: fc 01 movw r30, r24
3786: 21 83 std Z+1, r18 ; 0x01
3788: 0f 90 pop r0
378a: df 91 pop r29
378c: cf 91 pop r28
378e: 08 95 ret
3790: cf 93 push r28
3792: df 93 push r29
3794: 1f 92 push r1
3796: 1f 92 push r1
3798: cd b7 in r28, 0x3d ; 61
379a: de b7 in r29, 0x3e ; 62
379c: 89 83 std Y+1, r24 ; 0x01
379e: 9a 83 std Y+2, r25 ; 0x02
37a0: 80 e0 ldi r24, 0x00 ; 0
37a2: 92 e0 ldi r25, 0x02 ; 2
37a4: 20 e0 ldi r18, 0x00 ; 0
37a6: 32 e0 ldi r19, 0x02 ; 2
37a8: f9 01 movw r30, r18
37aa: 21 81 ldd r18, Z+1 ; 0x01
37ac: 29 7f andi r18, 0xF9 ; 249
37ae: fc 01 movw r30, r24
37b0: 21 83 std Z+1, r18 ; 0x01
37b2: 80 e0 ldi r24, 0x00 ; 0
37b4: 92 e0 ldi r25, 0x02 ; 2
37b6: 20 e0 ldi r18, 0x00 ; 0
37b8: 32 e0 ldi r19, 0x02 ; 2
37ba: f9 01 movw r30, r18
37bc: 31 81 ldd r19, Z+1 ; 0x01
37be: 29 81 ldd r18, Y+1 ; 0x01
37c0: 23 2b or r18, r19
37c2: fc 01 movw r30, r24
37c4: 21 83 std Z+1, r18 ; 0x01
37c6: 0f 90 pop r0
37c8: 0f 90 pop r0
37ca: df 91 pop r29
37cc: cf 91 pop r28
37ce: 08 95 ret
37d0: cf 93 push r28
37d2: df 93 push r29
37d4: 1f 92 push r1
37d6: 1f 92 push r1
37d8: cd b7 in r28, 0x3d ; 61
37da: de b7 in r29, 0x3e ; 62
37dc: 89 83 std Y+1, r24 ; 0x01
37de: 9a 83 std Y+2, r25 ; 0x02
37e0: 80 e0 ldi r24, 0x00 ; 0
37e2: 92 e0 ldi r25, 0x02 ; 2
37e4: 20 e0 ldi r18, 0x00 ; 0
37e6: 32 e0 ldi r19, 0x02 ; 2
37e8: f9 01 movw r30, r18
37ea: 22 81 ldd r18, Z+2 ; 0x02
37ec: 2f 78 andi r18, 0x8F ; 143
37ee: fc 01 movw r30, r24
37f0: 22 83 std Z+2, r18 ; 0x02
37f2: 80 e0 ldi r24, 0x00 ; 0
37f4: 92 e0 ldi r25, 0x02 ; 2
37f6: 20 e0 ldi r18, 0x00 ; 0
37f8: 32 e0 ldi r19, 0x02 ; 2
37fa: f9 01 movw r30, r18
37fc: 32 81 ldd r19, Z+2 ; 0x02
37fe: 29 81 ldd r18, Y+1 ; 0x01
3800: 23 2b or r18, r19
3802: fc 01 movw r30, r24
3804: 22 83 std Z+2, r18 ; 0x02
3806: 0f 90 pop r0
3808: 0f 90 pop r0
380a: df 91 pop r29
380c: cf 91 pop r28
380e: 08 95 ret
3810: cf 93 push r28
3812: df 93 push r29
3814: 1f 92 push r1
3816: cd b7 in r28, 0x3d ; 61
3818: de b7 in r29, 0x3e ; 62
381a: 89 83 std Y+1, r24 ; 0x01
381c: 89 81 ldd r24, Y+1 ; 0x01
381e: 88 23 and r24, r24
3820: 51 f0 breq .+20 ; 0x3836
3822: 80 e0 ldi r24, 0x00 ; 0
3824: 92 e0 ldi r25, 0x02 ; 2
3826: 20 e0 ldi r18, 0x00 ; 0
3828: 32 e0 ldi r19, 0x02 ; 2
382a: f9 01 movw r30, r18
382c: 22 81 ldd r18, Z+2 ; 0x02
382e: 22 60 ori r18, 0x02 ; 2
3830: fc 01 movw r30, r24
3832: 22 83 std Z+2, r18 ; 0x02
3834: 09 c0 rjmp .+18 ; 0x3848
3836: 80 e0 ldi r24, 0x00 ; 0
3838: 92 e0 ldi r25, 0x02 ; 2
383a: 20 e0 ldi r18, 0x00 ; 0
383c: 32 e0 ldi r19, 0x02 ; 2
383e: f9 01 movw r30, r18
3840: 22 81 ldd r18, Z+2 ; 0x02
3842: 2d 7f andi r18, 0xFD ; 253
3844: fc 01 movw r30, r24
3846: 22 83 std Z+2, r18 ; 0x02
3848: 0f 90 pop r0
384a: df 91 pop r29
384c: cf 91 pop r28
384e: 08 95 ret
3850: cf 93 push r28
3852: df 93 push r29
3854: 1f 92 push r1
3856: cd b7 in r28, 0x3d ; 61
3858: de b7 in r29, 0x3e ; 62
385a: 89 83 std Y+1, r24 ; 0x01
385c: 89 81 ldd r24, Y+1 ; 0x01
385e: 88 23 and r24, r24
3860: 51 f0 breq .+20 ; 0x3876
3862: 80 e0 ldi r24, 0x00 ; 0
3864: 92 e0 ldi r25, 0x02 ; 2
3866: 20 e0 ldi r18, 0x00 ; 0
3868: 32 e0 ldi r19, 0x02 ; 2
386a: f9 01 movw r30, r18
386c: 22 81 ldd r18, Z+2 ; 0x02
386e: 21 60 ori r18, 0x01 ; 1
3870: fc 01 movw r30, r24
3872: 22 83 std Z+2, r18 ; 0x02
3874: 09 c0 rjmp .+18 ; 0x3888
3876: 80 e0 ldi r24, 0x00 ; 0
3878: 92 e0 ldi r25, 0x02 ; 2
387a: 20 e0 ldi r18, 0x00 ; 0
387c: 32 e0 ldi r19, 0x02 ; 2
387e: f9 01 movw r30, r18
3880: 22 81 ldd r18, Z+2 ; 0x02
3882: 2e 7f andi r18, 0xFE ; 254
3884: fc 01 movw r30, r24
3886: 22 83 std Z+2, r18 ; 0x02
3888: 0f 90 pop r0
388a: df 91 pop r29
388c: cf 91 pop r28
388e: 08 95 ret
3890: cf 93 push r28
3892: df 93 push r29
3894: 1f 92 push r1
3896: 1f 92 push r1
3898: cd b7 in r28, 0x3d ; 61
389a: de b7 in r29, 0x3e ; 62
389c: 89 83 std Y+1, r24 ; 0x01
389e: 9a 83 std Y+2, r25 ; 0x02
38a0: 80 e0 ldi r24, 0x00 ; 0
38a2: 92 e0 ldi r25, 0x02 ; 2
38a4: 20 e0 ldi r18, 0x00 ; 0
38a6: 32 e0 ldi r19, 0x02 ; 2
38a8: f9 01 movw r30, r18
38aa: 23 81 ldd r18, Z+3 ; 0x03
38ac: 2f 73 andi r18, 0x3F ; 63
38ae: fc 01 movw r30, r24
38b0: 23 83 std Z+3, r18 ; 0x03
38b2: 80 e0 ldi r24, 0x00 ; 0
38b4: 92 e0 ldi r25, 0x02 ; 2
38b6: 20 e0 ldi r18, 0x00 ; 0
38b8: 32 e0 ldi r19, 0x02 ; 2
38ba: f9 01 movw r30, r18
38bc: 33 81 ldd r19, Z+3 ; 0x03
38be: 29 81 ldd r18, Y+1 ; 0x01
38c0: 23 2b or r18, r19
38c2: fc 01 movw r30, r24
38c4: 23 83 std Z+3, r18 ; 0x03
38c6: 0f 90 pop r0
38c8: 0f 90 pop r0
38ca: df 91 pop r29
38cc: cf 91 pop r28
38ce: 08 95 ret
38d0: cf 93 push r28
38d2: df 93 push r29
38d4: 1f 92 push r1
38d6: 1f 92 push r1
38d8: cd b7 in r28, 0x3d ; 61
38da: de b7 in r29, 0x3e ; 62
38dc: 89 83 std Y+1, r24 ; 0x01
38de: 9a 83 std Y+2, r25 ; 0x02
38e0: 80 e0 ldi r24, 0x00 ; 0
38e2: 92 e0 ldi r25, 0x02 ; 2
38e4: 20 e0 ldi r18, 0x00 ; 0
38e6: 32 e0 ldi r19, 0x02 ; 2
38e8: f9 01 movw r30, r18
38ea: 23 81 ldd r18, Z+3 ; 0x03
38ec: 27 7c andi r18, 0xC7 ; 199
38ee: fc 01 movw r30, r24
38f0: 23 83 std Z+3, r18 ; 0x03
38f2: 80 e0 ldi r24, 0x00 ; 0
38f4: 92 e0 ldi r25, 0x02 ; 2
38f6: 20 e0 ldi r18, 0x00 ; 0
38f8: 32 e0 ldi r19, 0x02 ; 2
38fa: f9 01 movw r30, r18
38fc: 33 81 ldd r19, Z+3 ; 0x03
38fe: 29 81 ldd r18, Y+1 ; 0x01
3900: 23 2b or r18, r19
3902: fc 01 movw r30, r24
3904: 23 83 std Z+3, r18 ; 0x03
3906: 0f 90 pop r0
3908: 0f 90 pop r0
390a: df 91 pop r29
390c: cf 91 pop r28
390e: 08 95 ret
3910: cf 93 push r28
3912: df 93 push r29
3914: 1f 92 push r1
3916: 1f 92 push r1
3918: cd b7 in r28, 0x3d ; 61
391a: de b7 in r29, 0x3e ; 62
391c: 89 83 std Y+1, r24 ; 0x01
391e: 9a 83 std Y+2, r25 ; 0x02
3920: 80 e0 ldi r24, 0x00 ; 0
3922: 92 e0 ldi r25, 0x02 ; 2
3924: 20 e0 ldi r18, 0x00 ; 0
3926: 32 e0 ldi r19, 0x02 ; 2
3928: f9 01 movw r30, r18
392a: 23 81 ldd r18, Z+3 ; 0x03
392c: 28 7f andi r18, 0xF8 ; 248
392e: fc 01 movw r30, r24
3930: 23 83 std Z+3, r18 ; 0x03
3932: 80 e0 ldi r24, 0x00 ; 0
3934: 92 e0 ldi r25, 0x02 ; 2
3936: 20 e0 ldi r18, 0x00 ; 0
3938: 32 e0 ldi r19, 0x02 ; 2
393a: f9 01 movw r30, r18
393c: 33 81 ldd r19, Z+3 ; 0x03
393e: 29 81 ldd r18, Y+1 ; 0x01
3940: 23 2b or r18, r19
3942: fc 01 movw r30, r24
3944: 23 83 std Z+3, r18 ; 0x03
3946: 0f 90 pop r0
3948: 0f 90 pop r0
394a: df 91 pop r29
394c: cf 91 pop r28
394e: 08 95 ret
3950: cf 93 push r28
3952: df 93 push r29
3954: 1f 92 push r1
3956: 1f 92 push r1
3958: cd b7 in r28, 0x3d ; 61
395a: de b7 in r29, 0x3e ; 62
395c: 89 83 std Y+1, r24 ; 0x01
395e: 9a 83 std Y+2, r25 ; 0x02
3960: 80 e0 ldi r24, 0x00 ; 0
3962: 92 e0 ldi r25, 0x02 ; 2
3964: 20 e0 ldi r18, 0x00 ; 0
3966: 32 e0 ldi r19, 0x02 ; 2
3968: f9 01 movw r30, r18
396a: 24 81 ldd r18, Z+4 ; 0x04
396c: 28 7f andi r18, 0xF8 ; 248
396e: fc 01 movw r30, r24
3970: 24 83 std Z+4, r18 ; 0x04
3972: 80 e0 ldi r24, 0x00 ; 0
3974: 92 e0 ldi r25, 0x02 ; 2
3976: 20 e0 ldi r18, 0x00 ; 0
3978: 32 e0 ldi r19, 0x02 ; 2
397a: f9 01 movw r30, r18
397c: 34 81 ldd r19, Z+4 ; 0x04
397e: 29 81 ldd r18, Y+1 ; 0x01
3980: 23 2b or r18, r19
3982: fc 01 movw r30, r24
3984: 24 83 std Z+4, r18 ; 0x04
3986: 0f 90 pop r0
3988: 0f 90 pop r0
398a: df 91 pop r29
398c: cf 91 pop r28
398e: 08 95 ret
3990: cf 93 push r28
3992: df 93 push r29
3994: 1f 92 push r1
3996: cd b7 in r28, 0x3d ; 61
3998: de b7 in r29, 0x3e ; 62
399a: 89 83 std Y+1, r24 ; 0x01
399c: 80 e0 ldi r24, 0x00 ; 0
399e: 92 e0 ldi r25, 0x02 ; 2
39a0: 20 e0 ldi r18, 0x00 ; 0
39a2: 32 e0 ldi r19, 0x02 ; 2
39a4: f9 01 movw r30, r18
39a6: 36 81 ldd r19, Z+6 ; 0x06
39a8: 29 81 ldd r18, Y+1 ; 0x01
39aa: 23 2b or r18, r19
39ac: fc 01 movw r30, r24
39ae: 26 83 std Z+6, r18 ; 0x06
39b0: 0f 90 pop r0
39b2: df 91 pop r29
39b4: cf 91 pop r28
39b6: 08 95 ret
39b8: cf 93 push r28
39ba: df 93 push r29
39bc: 00 d0 rcall .+0 ; 0x39be
39be: 1f 92 push r1
39c0: cd b7 in r28, 0x3d ; 61
39c2: de b7 in r29, 0x3e ; 62
39c4: 89 83 std Y+1, r24 ; 0x01
39c6: 9a 83 std Y+2, r25 ; 0x02
39c8: 6b 83 std Y+3, r22 ; 0x03
39ca: 7c 83 std Y+4, r23 ; 0x04
39cc: 89 81 ldd r24, Y+1 ; 0x01
39ce: 9a 81 ldd r25, Y+2 ; 0x02
39d0: fc 01 movw r30, r24
39d2: 80 81 ld r24, Z
39d4: 28 2f mov r18, r24
39d6: 23 7e andi r18, 0xE3 ; 227
39d8: 89 81 ldd r24, Y+1 ; 0x01
39da: 9a 81 ldd r25, Y+2 ; 0x02
39dc: fc 01 movw r30, r24
39de: 20 83 st Z, r18
39e0: 89 81 ldd r24, Y+1 ; 0x01
39e2: 9a 81 ldd r25, Y+2 ; 0x02
39e4: fc 01 movw r30, r24
39e6: 90 81 ld r25, Z
39e8: 8b 81 ldd r24, Y+3 ; 0x03
39ea: 29 2f mov r18, r25
39ec: 28 2b or r18, r24
39ee: 89 81 ldd r24, Y+1 ; 0x01
39f0: 9a 81 ldd r25, Y+2 ; 0x02
39f2: fc 01 movw r30, r24
39f4: 20 83 st Z, r18
39f6: 24 96 adiw r28, 0x04 ; 4
39f8: cd bf out 0x3d, r28 ; 61
39fa: de bf out 0x3e, r29 ; 62
39fc: df 91 pop r29
39fe: cf 91 pop r28
3a00: 08 95 ret
3a02: cf 93 push r28
3a04: df 93 push r29
3a06: 00 d0 rcall .+0 ; 0x3a08
3a08: 1f 92 push r1
3a0a: cd b7 in r28, 0x3d ; 61
3a0c: de b7 in r29, 0x3e ; 62
3a0e: 89 83 std Y+1, r24 ; 0x01
3a10: 9a 83 std Y+2, r25 ; 0x02
3a12: 6b 83 std Y+3, r22 ; 0x03
3a14: 7c 83 std Y+4, r23 ; 0x04
3a16: 89 81 ldd r24, Y+1 ; 0x01
3a18: 9a 81 ldd r25, Y+2 ; 0x02
3a1a: fc 01 movw r30, r24
3a1c: 80 81 ld r24, Z
3a1e: 28 2f mov r18, r24
3a20: 2c 7f andi r18, 0xFC ; 252
3a22: 89 81 ldd r24, Y+1 ; 0x01
3a24: 9a 81 ldd r25, Y+2 ; 0x02
3a26: fc 01 movw r30, r24
3a28: 20 83 st Z, r18
3a2a: 89 81 ldd r24, Y+1 ; 0x01
3a2c: 9a 81 ldd r25, Y+2 ; 0x02
3a2e: fc 01 movw r30, r24
3a30: 90 81 ld r25, Z
3a32: 8b 81 ldd r24, Y+3 ; 0x03
3a34: 29 2f mov r18, r25
3a36: 28 2b or r18, r24
3a38: 89 81 ldd r24, Y+1 ; 0x01
3a3a: 9a 81 ldd r25, Y+2 ; 0x02
3a3c: fc 01 movw r30, r24
3a3e: 20 83 st Z, r18
3a40: 24 96 adiw r28, 0x04 ; 4
3a42: cd bf out 0x3d, r28 ; 61
3a44: de bf out 0x3e, r29 ; 62
3a46: df 91 pop r29
3a48: cf 91 pop r28
3a4a: 08 95 ret
3a4c: cf 93 push r28
3a4e: df 93 push r29
3a50: 00 d0 rcall .+0 ; 0x3a52
3a52: 1f 92 push r1
3a54: cd b7 in r28, 0x3d ; 61
3a56: de b7 in r29, 0x3e ; 62
3a58: 89 83 std Y+1, r24 ; 0x01
3a5a: 9a 83 std Y+2, r25 ; 0x02
3a5c: 6b 83 std Y+3, r22 ; 0x03
3a5e: 7c 83 std Y+4, r23 ; 0x04
3a60: 89 81 ldd r24, Y+1 ; 0x01
3a62: 9a 81 ldd r25, Y+2 ; 0x02
3a64: fc 01 movw r30, r24
3a66: 81 81 ldd r24, Z+1 ; 0x01
3a68: 28 2f mov r18, r24
3a6a: 27 78 andi r18, 0x87 ; 135
3a6c: 89 81 ldd r24, Y+1 ; 0x01
3a6e: 9a 81 ldd r25, Y+2 ; 0x02
3a70: fc 01 movw r30, r24
3a72: 21 83 std Z+1, r18 ; 0x01
3a74: 89 81 ldd r24, Y+1 ; 0x01
3a76: 9a 81 ldd r25, Y+2 ; 0x02
3a78: fc 01 movw r30, r24
3a7a: 91 81 ldd r25, Z+1 ; 0x01
3a7c: 8b 81 ldd r24, Y+3 ; 0x03
3a7e: 29 2f mov r18, r25
3a80: 28 2b or r18, r24
3a82: 89 81 ldd r24, Y+1 ; 0x01
3a84: 9a 81 ldd r25, Y+2 ; 0x02
3a86: fc 01 movw r30, r24
3a88: 21 83 std Z+1, r18 ; 0x01
3a8a: 24 96 adiw r28, 0x04 ; 4
3a8c: cd bf out 0x3d, r28 ; 61
3a8e: de bf out 0x3e, r29 ; 62
3a90: df 91 pop r29
3a92: cf 91 pop r28
3a94: 08 95 ret
3a96: cf 93 push r28
3a98: df 93 push r29
3a9a: 00 d0 rcall .+0 ; 0x3a9c
3a9c: 1f 92 push r1
3a9e: cd b7 in r28, 0x3d ; 61
3aa0: de b7 in r29, 0x3e ; 62
3aa2: 89 83 std Y+1, r24 ; 0x01
3aa4: 9a 83 std Y+2, r25 ; 0x02
3aa6: 6b 83 std Y+3, r22 ; 0x03
3aa8: 7c 83 std Y+4, r23 ; 0x04
3aaa: 89 81 ldd r24, Y+1 ; 0x01
3aac: 9a 81 ldd r25, Y+2 ; 0x02
3aae: fc 01 movw r30, r24
3ab0: 82 81 ldd r24, Z+2 ; 0x02
3ab2: 28 2f mov r18, r24
3ab4: 2c 7f andi r18, 0xFC ; 252
3ab6: 89 81 ldd r24, Y+1 ; 0x01
3ab8: 9a 81 ldd r25, Y+2 ; 0x02
3aba: fc 01 movw r30, r24
3abc: 22 83 std Z+2, r18 ; 0x02
3abe: 89 81 ldd r24, Y+1 ; 0x01
3ac0: 9a 81 ldd r25, Y+2 ; 0x02
3ac2: fc 01 movw r30, r24
3ac4: 92 81 ldd r25, Z+2 ; 0x02
3ac6: 8b 81 ldd r24, Y+3 ; 0x03
3ac8: 29 2f mov r18, r25
3aca: 28 2b or r18, r24
3acc: 89 81 ldd r24, Y+1 ; 0x01
3ace: 9a 81 ldd r25, Y+2 ; 0x02
3ad0: fc 01 movw r30, r24
3ad2: 22 83 std Z+2, r18 ; 0x02
3ad4: 24 96 adiw r28, 0x04 ; 4
3ad6: cd bf out 0x3d, r28 ; 61
3ad8: de bf out 0x3e, r29 ; 62
3ada: df 91 pop r29
3adc: cf 91 pop r28
3ade: 08 95 ret
3ae0: cf 93 push r28
3ae2: df 93 push r29
3ae4: cd b7 in r28, 0x3d ; 61
3ae6: de b7 in r29, 0x3e ; 62
3ae8: 28 97 sbiw r28, 0x08 ; 8
3aea: cd bf out 0x3d, r28 ; 61
3aec: de bf out 0x3e, r29 ; 62
3aee: 86 e2 ldi r24, 0x26 ; 38
3af0: 98 e1 ldi r25, 0x18 ; 24
3af2: a4 e3 ldi r26, 0x34 ; 52
3af4: b1 ec ldi r27, 0xC1 ; 193
3af6: 80 93 c7 22 sts 0x22C7, r24
3afa: 90 93 c8 22 sts 0x22C8, r25
3afe: a0 93 c9 22 sts 0x22C9, r26
3b02: b0 93 ca 22 sts 0x22CA, r27
3b06: 87 e9 ldi r24, 0x97 ; 151
3b08: 9b ee ldi r25, 0xEB ; 235
3b0a: a8 e5 ldi r26, 0x58 ; 88
3b0c: be ea ldi r27, 0xAE ; 174
3b0e: 80 93 c7 22 sts 0x22C7, r24
3b12: 90 93 c8 22 sts 0x22C8, r25
3b16: a0 93 c9 22 sts 0x22C9, r26
3b1a: b0 93 ca 22 sts 0x22CA, r27
3b1e: 8f ef ldi r24, 0xFF ; 255
3b20: 9b e3 ldi r25, 0x3B ; 59
3b22: a2 e2 ldi r26, 0x22 ; 34
3b24: b5 e6 ldi r27, 0x65 ; 101
3b26: 80 93 cf 22 sts 0x22CF, r24
3b2a: 90 93 d0 22 sts 0x22D0, r25
3b2e: a0 93 d1 22 sts 0x22D1, r26
3b32: b0 93 d2 22 sts 0x22D2, r27
3b36: 82 e0 ldi r24, 0x02 ; 2
3b38: 9f ef ldi r25, 0xFF ; 255
3b3a: a1 e0 ldi r26, 0x01 ; 1
3b3c: b0 e0 ldi r27, 0x00 ; 0
3b3e: 89 83 std Y+1, r24 ; 0x01
3b40: 9a 83 std Y+2, r25 ; 0x02
3b42: ab 83 std Y+3, r26 ; 0x03
3b44: bc 83 std Y+4, r27 ; 0x04
3b46: 89 81 ldd r24, Y+1 ; 0x01
3b48: 9a 81 ldd r25, Y+2 ; 0x02
3b4a: ab 81 ldd r26, Y+3 ; 0x03
3b4c: bc 81 ldd r27, Y+4 ; 0x04
3b4e: 0b b6 in r0, 0x3b ; 59
3b50: ab bf out 0x3b, r26 ; 59
3b52: fc 01 movw r30, r24
3b54: 87 91 elpm r24, Z+
3b56: 97 91 elpm r25, Z+
3b58: a7 91 elpm r26, Z+
3b5a: b6 91 elpm r27, Z
3b5c: 0b be out 0x3b, r0 ; 59
3b5e: 8d 83 std Y+5, r24 ; 0x05
3b60: 9e 83 std Y+6, r25 ; 0x06
3b62: af 83 std Y+7, r26 ; 0x07
3b64: b8 87 std Y+8, r27 ; 0x08
3b66: 8d 81 ldd r24, Y+5 ; 0x05
3b68: 9e 81 ldd r25, Y+6 ; 0x06
3b6a: af 81 ldd r26, Y+7 ; 0x07
3b6c: b8 85 ldd r27, Y+8 ; 0x08
3b6e: ac 01 movw r20, r24
3b70: bd 01 movw r22, r26
3b72: 87 eb ldi r24, 0xB7 ; 183
3b74: 92 e2 ldi r25, 0x22 ; 34
3b76: 0e 94 e7 1f call 0x3fce ; 0x3fce
3b7a: 81 e0 ldi r24, 0x01 ; 1
3b7c: 80 93 5b 22 sts 0x225B, r24
3b80: 28 96 adiw r28, 0x08 ; 8
3b82: cd bf out 0x3d, r28 ; 61
3b84: de bf out 0x3e, r29 ; 62
3b86: df 91 pop r29
3b88: cf 91 pop r28
3b8a: 08 95 ret
3b8c: cf 93 push r28
3b8e: df 93 push r29
3b90: cd b7 in r28, 0x3d ; 61
3b92: de b7 in r29, 0x3e ; 62
3b94: 80 91 5b 22 lds r24, 0x225B
3b98: 88 23 and r24, r24
3b9a: 11 f4 brne .+4 ; 0x3ba0
3b9c: 0e 94 70 1d call 0x3ae0 ; 0x3ae0
3ba0: 87 eb ldi r24, 0xB7 ; 183
3ba2: 92 e2 ldi r25, 0x22 ; 34
3ba4: 0e 94 66 1f call 0x3ecc ; 0x3ecc
3ba8: dc 01 movw r26, r24
3baa: cb 01 movw r24, r22
3bac: bc 01 movw r22, r24
3bae: cd 01 movw r24, r26
3bb0: df 91 pop r29
3bb2: cf 91 pop r28
3bb4: 08 95 ret
3bb6: ef 92 push r14
3bb8: ff 92 push r15
3bba: 0f 93 push r16
3bbc: 1f 93 push r17
3bbe: cf 93 push r28
3bc0: df 93 push r29
3bc2: cd b7 in r28, 0x3d ; 61
3bc4: de b7 in r29, 0x3e ; 62
3bc6: 2a 97 sbiw r28, 0x0a ; 10
3bc8: cd bf out 0x3d, r28 ; 61
3bca: de bf out 0x3e, r29 ; 62
3bcc: 89 87 std Y+9, r24 ; 0x09
3bce: 9a 87 std Y+10, r25 ; 0x0a
3bd0: 89 85 ldd r24, Y+9 ; 0x09
3bd2: 9a 85 ldd r25, Y+10 ; 0x0a
3bd4: fc 01 movw r30, r24
3bd6: 84 85 ldd r24, Z+12 ; 0x0c
3bd8: 95 85 ldd r25, Z+13 ; 0x0d
3bda: a6 85 ldd r26, Z+14 ; 0x0e
3bdc: b7 85 ldd r27, Z+15 ; 0x0f
3bde: 89 83 std Y+1, r24 ; 0x01
3be0: 9a 83 std Y+2, r25 ; 0x02
3be2: ab 83 std Y+3, r26 ; 0x03
3be4: bc 83 std Y+4, r27 ; 0x04
3be6: 89 85 ldd r24, Y+9 ; 0x09
3be8: 9a 85 ldd r25, Y+10 ; 0x0a
3bea: fc 01 movw r30, r24
3bec: 80 81 ld r24, Z
3bee: 91 81 ldd r25, Z+1 ; 0x01
3bf0: a2 81 ldd r26, Z+2 ; 0x02
3bf2: b3 81 ldd r27, Z+3 ; 0x03
3bf4: 9c 01 movw r18, r24
3bf6: ad 01 movw r20, r26
3bf8: 5f 77 andi r21, 0x7F ; 127
3bfa: 89 85 ldd r24, Y+9 ; 0x09
3bfc: 9a 85 ldd r25, Y+10 ; 0x0a
3bfe: fc 01 movw r30, r24
3c00: 84 81 ldd r24, Z+4 ; 0x04
3c02: 95 81 ldd r25, Z+5 ; 0x05
3c04: a6 81 ldd r26, Z+6 ; 0x06
3c06: b7 81 ldd r27, Z+7 ; 0x07
3c08: 28 27 eor r18, r24
3c0a: 39 27 eor r19, r25
3c0c: 4a 27 eor r20, r26
3c0e: 5b 27 eor r21, r27
3c10: 89 85 ldd r24, Y+9 ; 0x09
3c12: 9a 85 ldd r25, Y+10 ; 0x0a
3c14: fc 01 movw r30, r24
3c16: 80 85 ldd r24, Z+8 ; 0x08
3c18: 91 85 ldd r25, Z+9 ; 0x09
3c1a: a2 85 ldd r26, Z+10 ; 0x0a
3c1c: b3 85 ldd r27, Z+11 ; 0x0b
3c1e: 82 27 eor r24, r18
3c20: 93 27 eor r25, r19
3c22: a4 27 eor r26, r20
3c24: b5 27 eor r27, r21
3c26: 8d 83 std Y+5, r24 ; 0x05
3c28: 9e 83 std Y+6, r25 ; 0x06
3c2a: af 83 std Y+7, r26 ; 0x07
3c2c: b8 87 std Y+8, r27 ; 0x08
3c2e: 8d 81 ldd r24, Y+5 ; 0x05
3c30: 9e 81 ldd r25, Y+6 ; 0x06
3c32: af 81 ldd r26, Y+7 ; 0x07
3c34: b8 85 ldd r27, Y+8 ; 0x08
3c36: 88 0f add r24, r24
3c38: 99 1f adc r25, r25
3c3a: aa 1f adc r26, r26
3c3c: bb 1f adc r27, r27
3c3e: 2d 81 ldd r18, Y+5 ; 0x05
3c40: 3e 81 ldd r19, Y+6 ; 0x06
3c42: 4f 81 ldd r20, Y+7 ; 0x07
3c44: 58 85 ldd r21, Y+8 ; 0x08
3c46: 82 27 eor r24, r18
3c48: 93 27 eor r25, r19
3c4a: a4 27 eor r26, r20
3c4c: b5 27 eor r27, r21
3c4e: 8d 83 std Y+5, r24 ; 0x05
3c50: 9e 83 std Y+6, r25 ; 0x06
3c52: af 83 std Y+7, r26 ; 0x07
3c54: b8 87 std Y+8, r27 ; 0x08
3c56: 89 81 ldd r24, Y+1 ; 0x01
3c58: 9a 81 ldd r25, Y+2 ; 0x02
3c5a: ab 81 ldd r26, Y+3 ; 0x03
3c5c: bc 81 ldd r27, Y+4 ; 0x04
3c5e: 9c 01 movw r18, r24
3c60: ad 01 movw r20, r26
3c62: 56 95 lsr r21
3c64: 47 95 ror r20
3c66: 37 95 ror r19
3c68: 27 95 ror r18
3c6a: 8d 81 ldd r24, Y+5 ; 0x05
3c6c: 9e 81 ldd r25, Y+6 ; 0x06
3c6e: af 81 ldd r26, Y+7 ; 0x07
3c70: b8 85 ldd r27, Y+8 ; 0x08
3c72: 82 27 eor r24, r18
3c74: 93 27 eor r25, r19
3c76: a4 27 eor r26, r20
3c78: b5 27 eor r27, r21
3c7a: 29 81 ldd r18, Y+1 ; 0x01
3c7c: 3a 81 ldd r19, Y+2 ; 0x02
3c7e: 4b 81 ldd r20, Y+3 ; 0x03
3c80: 5c 81 ldd r21, Y+4 ; 0x04
3c82: 82 27 eor r24, r18
3c84: 93 27 eor r25, r19
3c86: a4 27 eor r26, r20
3c88: b5 27 eor r27, r21
3c8a: 89 83 std Y+1, r24 ; 0x01
3c8c: 9a 83 std Y+2, r25 ; 0x02
3c8e: ab 83 std Y+3, r26 ; 0x03
3c90: bc 83 std Y+4, r27 ; 0x04
3c92: 89 85 ldd r24, Y+9 ; 0x09
3c94: 9a 85 ldd r25, Y+10 ; 0x0a
3c96: fc 01 movw r30, r24
3c98: 84 81 ldd r24, Z+4 ; 0x04
3c9a: 95 81 ldd r25, Z+5 ; 0x05
3c9c: a6 81 ldd r26, Z+6 ; 0x06
3c9e: b7 81 ldd r27, Z+7 ; 0x07
3ca0: 29 85 ldd r18, Y+9 ; 0x09
3ca2: 3a 85 ldd r19, Y+10 ; 0x0a
3ca4: f9 01 movw r30, r18
3ca6: 80 83 st Z, r24
3ca8: 91 83 std Z+1, r25 ; 0x01
3caa: a2 83 std Z+2, r26 ; 0x02
3cac: b3 83 std Z+3, r27 ; 0x03
3cae: 89 85 ldd r24, Y+9 ; 0x09
3cb0: 9a 85 ldd r25, Y+10 ; 0x0a
3cb2: fc 01 movw r30, r24
3cb4: 80 85 ldd r24, Z+8 ; 0x08
3cb6: 91 85 ldd r25, Z+9 ; 0x09
3cb8: a2 85 ldd r26, Z+10 ; 0x0a
3cba: b3 85 ldd r27, Z+11 ; 0x0b
3cbc: 29 85 ldd r18, Y+9 ; 0x09
3cbe: 3a 85 ldd r19, Y+10 ; 0x0a
3cc0: f9 01 movw r30, r18
3cc2: 84 83 std Z+4, r24 ; 0x04
3cc4: 95 83 std Z+5, r25 ; 0x05
3cc6: a6 83 std Z+6, r26 ; 0x06
3cc8: b7 83 std Z+7, r27 ; 0x07
3cca: 89 81 ldd r24, Y+1 ; 0x01
3ccc: 9a 81 ldd r25, Y+2 ; 0x02
3cce: ab 81 ldd r26, Y+3 ; 0x03
3cd0: bc 81 ldd r27, Y+4 ; 0x04
3cd2: 9c 01 movw r18, r24
3cd4: ad 01 movw r20, r26
3cd6: 01 2e mov r0, r17
3cd8: 1a e0 ldi r17, 0x0A ; 10
3cda: 22 0f add r18, r18
3cdc: 33 1f adc r19, r19
3cde: 44 1f adc r20, r20
3ce0: 55 1f adc r21, r21
3ce2: 1a 95 dec r17
3ce4: d1 f7 brne .-12 ; 0x3cda
3ce6: 10 2d mov r17, r0
3ce8: 8d 81 ldd r24, Y+5 ; 0x05
3cea: 9e 81 ldd r25, Y+6 ; 0x06
3cec: af 81 ldd r26, Y+7 ; 0x07
3cee: b8 85 ldd r27, Y+8 ; 0x08
3cf0: 82 27 eor r24, r18
3cf2: 93 27 eor r25, r19
3cf4: a4 27 eor r26, r20
3cf6: b5 27 eor r27, r21
3cf8: 29 85 ldd r18, Y+9 ; 0x09
3cfa: 3a 85 ldd r19, Y+10 ; 0x0a
3cfc: f9 01 movw r30, r18
3cfe: 80 87 std Z+8, r24 ; 0x08
3d00: 91 87 std Z+9, r25 ; 0x09
3d02: a2 87 std Z+10, r26 ; 0x0a
3d04: b3 87 std Z+11, r27 ; 0x0b
3d06: 29 85 ldd r18, Y+9 ; 0x09
3d08: 3a 85 ldd r19, Y+10 ; 0x0a
3d0a: 89 81 ldd r24, Y+1 ; 0x01
3d0c: 9a 81 ldd r25, Y+2 ; 0x02
3d0e: ab 81 ldd r26, Y+3 ; 0x03
3d10: bc 81 ldd r27, Y+4 ; 0x04
3d12: f9 01 movw r30, r18
3d14: 84 87 std Z+12, r24 ; 0x0c
3d16: 95 87 std Z+13, r25 ; 0x0d
3d18: a6 87 std Z+14, r26 ; 0x0e
3d1a: b7 87 std Z+15, r27 ; 0x0f
3d1c: 89 85 ldd r24, Y+9 ; 0x09
3d1e: 9a 85 ldd r25, Y+10 ; 0x0a
3d20: fc 01 movw r30, r24
3d22: 24 81 ldd r18, Z+4 ; 0x04
3d24: 35 81 ldd r19, Z+5 ; 0x05
3d26: 46 81 ldd r20, Z+6 ; 0x06
3d28: 57 81 ldd r21, Z+7 ; 0x07
3d2a: 89 81 ldd r24, Y+1 ; 0x01
3d2c: 9a 81 ldd r25, Y+2 ; 0x02
3d2e: ab 81 ldd r26, Y+3 ; 0x03
3d30: bc 81 ldd r27, Y+4 ; 0x04
3d32: 81 70 andi r24, 0x01 ; 1
3d34: 99 27 eor r25, r25
3d36: aa 27 eor r26, r26
3d38: bb 27 eor r27, r27
3d3a: b0 95 com r27
3d3c: a0 95 com r26
3d3e: 90 95 com r25
3d40: 81 95 neg r24
3d42: 9f 4f sbci r25, 0xFF ; 255
3d44: af 4f sbci r26, 0xFF ; 255
3d46: bf 4f sbci r27, 0xFF ; 255
3d48: 7c 01 movw r14, r24
3d4a: 8d 01 movw r16, r26
3d4c: 89 85 ldd r24, Y+9 ; 0x09
3d4e: 9a 85 ldd r25, Y+10 ; 0x0a
3d50: fc 01 movw r30, r24
3d52: 80 89 ldd r24, Z+16 ; 0x10
3d54: 91 89 ldd r25, Z+17 ; 0x11
3d56: a2 89 ldd r26, Z+18 ; 0x12
3d58: b3 89 ldd r27, Z+19 ; 0x13
3d5a: 8e 21 and r24, r14
3d5c: 9f 21 and r25, r15
3d5e: a0 23 and r26, r16
3d60: b1 23 and r27, r17
3d62: 82 27 eor r24, r18
3d64: 93 27 eor r25, r19
3d66: a4 27 eor r26, r20
3d68: b5 27 eor r27, r21
3d6a: 29 85 ldd r18, Y+9 ; 0x09
3d6c: 3a 85 ldd r19, Y+10 ; 0x0a
3d6e: f9 01 movw r30, r18
3d70: 84 83 std Z+4, r24 ; 0x04
3d72: 95 83 std Z+5, r25 ; 0x05
3d74: a6 83 std Z+6, r26 ; 0x06
3d76: b7 83 std Z+7, r27 ; 0x07
3d78: 89 85 ldd r24, Y+9 ; 0x09
3d7a: 9a 85 ldd r25, Y+10 ; 0x0a
3d7c: fc 01 movw r30, r24
3d7e: 20 85 ldd r18, Z+8 ; 0x08
3d80: 31 85 ldd r19, Z+9 ; 0x09
3d82: 42 85 ldd r20, Z+10 ; 0x0a
3d84: 53 85 ldd r21, Z+11 ; 0x0b
3d86: 89 81 ldd r24, Y+1 ; 0x01
3d88: 9a 81 ldd r25, Y+2 ; 0x02
3d8a: ab 81 ldd r26, Y+3 ; 0x03
3d8c: bc 81 ldd r27, Y+4 ; 0x04
3d8e: 81 70 andi r24, 0x01 ; 1
3d90: 99 27 eor r25, r25
3d92: aa 27 eor r26, r26
3d94: bb 27 eor r27, r27
3d96: b0 95 com r27
3d98: a0 95 com r26
3d9a: 90 95 com r25
3d9c: 81 95 neg r24
3d9e: 9f 4f sbci r25, 0xFF ; 255
3da0: af 4f sbci r26, 0xFF ; 255
3da2: bf 4f sbci r27, 0xFF ; 255
3da4: 7c 01 movw r14, r24
3da6: 8d 01 movw r16, r26
3da8: 89 85 ldd r24, Y+9 ; 0x09
3daa: 9a 85 ldd r25, Y+10 ; 0x0a
3dac: fc 01 movw r30, r24
3dae: 84 89 ldd r24, Z+20 ; 0x14
3db0: 95 89 ldd r25, Z+21 ; 0x15
3db2: a6 89 ldd r26, Z+22 ; 0x16
3db4: b7 89 ldd r27, Z+23 ; 0x17
3db6: 8e 21 and r24, r14
3db8: 9f 21 and r25, r15
3dba: a0 23 and r26, r16
3dbc: b1 23 and r27, r17
3dbe: 82 27 eor r24, r18
3dc0: 93 27 eor r25, r19
3dc2: a4 27 eor r26, r20
3dc4: b5 27 eor r27, r21
3dc6: 29 85 ldd r18, Y+9 ; 0x09
3dc8: 3a 85 ldd r19, Y+10 ; 0x0a
3dca: f9 01 movw r30, r18
3dcc: 80 87 std Z+8, r24 ; 0x08
3dce: 91 87 std Z+9, r25 ; 0x09
3dd0: a2 87 std Z+10, r26 ; 0x0a
3dd2: b3 87 std Z+11, r27 ; 0x0b
3dd4: 2a 96 adiw r28, 0x0a ; 10
3dd6: cd bf out 0x3d, r28 ; 61
3dd8: de bf out 0x3e, r29 ; 62
3dda: df 91 pop r29
3ddc: cf 91 pop r28
3dde: 1f 91 pop r17
3de0: 0f 91 pop r16
3de2: ff 90 pop r15
3de4: ef 90 pop r14
3de6: 08 95 ret
3de8: cf 93 push r28
3dea: df 93 push r29
3dec: cd b7 in r28, 0x3d ; 61
3dee: de b7 in r29, 0x3e ; 62
3df0: 2a 97 sbiw r28, 0x0a ; 10
3df2: cd bf out 0x3d, r28 ; 61
3df4: de bf out 0x3e, r29 ; 62
3df6: 89 87 std Y+9, r24 ; 0x09
3df8: 9a 87 std Y+10, r25 ; 0x0a
3dfa: 89 85 ldd r24, Y+9 ; 0x09
3dfc: 9a 85 ldd r25, Y+10 ; 0x0a
3dfe: fc 01 movw r30, r24
3e00: 84 85 ldd r24, Z+12 ; 0x0c
3e02: 95 85 ldd r25, Z+13 ; 0x0d
3e04: a6 85 ldd r26, Z+14 ; 0x0e
3e06: b7 85 ldd r27, Z+15 ; 0x0f
3e08: 89 83 std Y+1, r24 ; 0x01
3e0a: 9a 83 std Y+2, r25 ; 0x02
3e0c: ab 83 std Y+3, r26 ; 0x03
3e0e: bc 83 std Y+4, r27 ; 0x04
3e10: 89 85 ldd r24, Y+9 ; 0x09
3e12: 9a 85 ldd r25, Y+10 ; 0x0a
3e14: fc 01 movw r30, r24
3e16: 20 81 ld r18, Z
3e18: 31 81 ldd r19, Z+1 ; 0x01
3e1a: 42 81 ldd r20, Z+2 ; 0x02
3e1c: 53 81 ldd r21, Z+3 ; 0x03
3e1e: 89 85 ldd r24, Y+9 ; 0x09
3e20: 9a 85 ldd r25, Y+10 ; 0x0a
3e22: fc 01 movw r30, r24
3e24: 80 85 ldd r24, Z+8 ; 0x08
3e26: 91 85 ldd r25, Z+9 ; 0x09
3e28: a2 85 ldd r26, Z+10 ; 0x0a
3e2a: b3 85 ldd r27, Z+11 ; 0x0b
3e2c: 89 2f mov r24, r25
3e2e: 9a 2f mov r25, r26
3e30: ab 2f mov r26, r27
3e32: bb 27 eor r27, r27
3e34: 82 0f add r24, r18
3e36: 93 1f adc r25, r19
3e38: a4 1f adc r26, r20
3e3a: b5 1f adc r27, r21
3e3c: 8d 83 std Y+5, r24 ; 0x05
3e3e: 9e 83 std Y+6, r25 ; 0x06
3e40: af 83 std Y+7, r26 ; 0x07
3e42: b8 87 std Y+8, r27 ; 0x08
3e44: 29 81 ldd r18, Y+1 ; 0x01
3e46: 3a 81 ldd r19, Y+2 ; 0x02
3e48: 4b 81 ldd r20, Y+3 ; 0x03
3e4a: 5c 81 ldd r21, Y+4 ; 0x04
3e4c: 8d 81 ldd r24, Y+5 ; 0x05
3e4e: 9e 81 ldd r25, Y+6 ; 0x06
3e50: af 81 ldd r26, Y+7 ; 0x07
3e52: b8 85 ldd r27, Y+8 ; 0x08
3e54: 82 27 eor r24, r18
3e56: 93 27 eor r25, r19
3e58: a4 27 eor r26, r20
3e5a: b5 27 eor r27, r21
3e5c: 89 83 std Y+1, r24 ; 0x01
3e5e: 9a 83 std Y+2, r25 ; 0x02
3e60: ab 83 std Y+3, r26 ; 0x03
3e62: bc 83 std Y+4, r27 ; 0x04
3e64: 8d 81 ldd r24, Y+5 ; 0x05
3e66: 9e 81 ldd r25, Y+6 ; 0x06
3e68: af 81 ldd r26, Y+7 ; 0x07
3e6a: b8 85 ldd r27, Y+8 ; 0x08
3e6c: 81 70 andi r24, 0x01 ; 1
3e6e: 99 27 eor r25, r25
3e70: aa 27 eor r26, r26
3e72: bb 27 eor r27, r27
3e74: b0 95 com r27
3e76: a0 95 com r26
3e78: 90 95 com r25
3e7a: 81 95 neg r24
3e7c: 9f 4f sbci r25, 0xFF ; 255
3e7e: af 4f sbci r26, 0xFF ; 255
3e80: bf 4f sbci r27, 0xFF ; 255
3e82: 9c 01 movw r18, r24
3e84: ad 01 movw r20, r26
3e86: 89 85 ldd r24, Y+9 ; 0x09
3e88: 9a 85 ldd r25, Y+10 ; 0x0a
3e8a: fc 01 movw r30, r24
3e8c: 80 8d ldd r24, Z+24 ; 0x18
3e8e: 91 8d ldd r25, Z+25 ; 0x19
3e90: a2 8d ldd r26, Z+26 ; 0x1a
3e92: b3 8d ldd r27, Z+27 ; 0x1b
3e94: 82 23 and r24, r18
3e96: 93 23 and r25, r19
3e98: a4 23 and r26, r20
3e9a: b5 23 and r27, r21
3e9c: 29 81 ldd r18, Y+1 ; 0x01
3e9e: 3a 81 ldd r19, Y+2 ; 0x02
3ea0: 4b 81 ldd r20, Y+3 ; 0x03
3ea2: 5c 81 ldd r21, Y+4 ; 0x04
3ea4: 82 27 eor r24, r18
3ea6: 93 27 eor r25, r19
3ea8: a4 27 eor r26, r20
3eaa: b5 27 eor r27, r21
3eac: 89 83 std Y+1, r24 ; 0x01
3eae: 9a 83 std Y+2, r25 ; 0x02
3eb0: ab 83 std Y+3, r26 ; 0x03
3eb2: bc 83 std Y+4, r27 ; 0x04
3eb4: 89 81 ldd r24, Y+1 ; 0x01
3eb6: 9a 81 ldd r25, Y+2 ; 0x02
3eb8: ab 81 ldd r26, Y+3 ; 0x03
3eba: bc 81 ldd r27, Y+4 ; 0x04
3ebc: bc 01 movw r22, r24
3ebe: cd 01 movw r24, r26
3ec0: 2a 96 adiw r28, 0x0a ; 10
3ec2: cd bf out 0x3d, r28 ; 61
3ec4: de bf out 0x3e, r29 ; 62
3ec6: df 91 pop r29
3ec8: cf 91 pop r28
3eca: 08 95 ret
3ecc: cf 93 push r28
3ece: df 93 push r29
3ed0: 1f 92 push r1
3ed2: 1f 92 push r1
3ed4: cd b7 in r28, 0x3d ; 61
3ed6: de b7 in r29, 0x3e ; 62
3ed8: 89 83 std Y+1, r24 ; 0x01
3eda: 9a 83 std Y+2, r25 ; 0x02
3edc: 89 81 ldd r24, Y+1 ; 0x01
3ede: 9a 81 ldd r25, Y+2 ; 0x02
3ee0: 0e 94 db 1d call 0x3bb6 ; 0x3bb6
3ee4: 89 81 ldd r24, Y+1 ; 0x01
3ee6: 9a 81 ldd r25, Y+2 ; 0x02
3ee8: 0e 94 f4 1e call 0x3de8 ; 0x3de8
3eec: dc 01 movw r26, r24
3eee: cb 01 movw r24, r22
3ef0: bc 01 movw r22, r24
3ef2: cd 01 movw r24, r26
3ef4: 0f 90 pop r0
3ef6: 0f 90 pop r0
3ef8: df 91 pop r29
3efa: cf 91 pop r28
3efc: 08 95 ret
3efe: cf 93 push r28
3f00: df 93 push r29
3f02: 1f 92 push r1
3f04: 1f 92 push r1
3f06: cd b7 in r28, 0x3d ; 61
3f08: de b7 in r29, 0x3e ; 62
3f0a: 89 83 std Y+1, r24 ; 0x01
3f0c: 9a 83 std Y+2, r25 ; 0x02
3f0e: 89 81 ldd r24, Y+1 ; 0x01
3f10: 9a 81 ldd r25, Y+2 ; 0x02
3f12: fc 01 movw r30, r24
3f14: 80 81 ld r24, Z
3f16: 91 81 ldd r25, Z+1 ; 0x01
3f18: a2 81 ldd r26, Z+2 ; 0x02
3f1a: b3 81 ldd r27, Z+3 ; 0x03
3f1c: bf 77 andi r27, 0x7F ; 127
3f1e: 89 2b or r24, r25
3f20: 8a 2b or r24, r26
3f22: 8b 2b or r24, r27
3f24: 09 f0 breq .+2 ; 0x3f28
3f26: 4e c0 rjmp .+156 ; 0x3fc4
3f28: 89 81 ldd r24, Y+1 ; 0x01
3f2a: 9a 81 ldd r25, Y+2 ; 0x02
3f2c: fc 01 movw r30, r24
3f2e: 84 81 ldd r24, Z+4 ; 0x04
3f30: 95 81 ldd r25, Z+5 ; 0x05
3f32: a6 81 ldd r26, Z+6 ; 0x06
3f34: b7 81 ldd r27, Z+7 ; 0x07
3f36: 89 2b or r24, r25
3f38: 8a 2b or r24, r26
3f3a: 8b 2b or r24, r27
3f3c: 09 f0 breq .+2 ; 0x3f40
3f3e: 42 c0 rjmp .+132 ; 0x3fc4
3f40: 89 81 ldd r24, Y+1 ; 0x01
3f42: 9a 81 ldd r25, Y+2 ; 0x02
3f44: fc 01 movw r30, r24
3f46: 80 85 ldd r24, Z+8 ; 0x08
3f48: 91 85 ldd r25, Z+9 ; 0x09
3f4a: a2 85 ldd r26, Z+10 ; 0x0a
3f4c: b3 85 ldd r27, Z+11 ; 0x0b
3f4e: 89 2b or r24, r25
3f50: 8a 2b or r24, r26
3f52: 8b 2b or r24, r27
3f54: b9 f5 brne .+110 ; 0x3fc4
3f56: 89 81 ldd r24, Y+1 ; 0x01
3f58: 9a 81 ldd r25, Y+2 ; 0x02
3f5a: fc 01 movw r30, r24
3f5c: 84 85 ldd r24, Z+12 ; 0x0c
3f5e: 95 85 ldd r25, Z+13 ; 0x0d
3f60: a6 85 ldd r26, Z+14 ; 0x0e
3f62: b7 85 ldd r27, Z+15 ; 0x0f
3f64: 89 2b or r24, r25
3f66: 8a 2b or r24, r26
3f68: 8b 2b or r24, r27
3f6a: 61 f5 brne .+88 ; 0x3fc4
3f6c: 29 81 ldd r18, Y+1 ; 0x01
3f6e: 3a 81 ldd r19, Y+2 ; 0x02
3f70: 84 e5 ldi r24, 0x54 ; 84
3f72: 90 e0 ldi r25, 0x00 ; 0
3f74: a0 e0 ldi r26, 0x00 ; 0
3f76: b0 e0 ldi r27, 0x00 ; 0
3f78: f9 01 movw r30, r18
3f7a: 80 83 st Z, r24
3f7c: 91 83 std Z+1, r25 ; 0x01
3f7e: a2 83 std Z+2, r26 ; 0x02
3f80: b3 83 std Z+3, r27 ; 0x03
3f82: 29 81 ldd r18, Y+1 ; 0x01
3f84: 3a 81 ldd r19, Y+2 ; 0x02
3f86: 89 e4 ldi r24, 0x49 ; 73
3f88: 90 e0 ldi r25, 0x00 ; 0
3f8a: a0 e0 ldi r26, 0x00 ; 0
3f8c: b0 e0 ldi r27, 0x00 ; 0
3f8e: f9 01 movw r30, r18
3f90: 84 83 std Z+4, r24 ; 0x04
3f92: 95 83 std Z+5, r25 ; 0x05
3f94: a6 83 std Z+6, r26 ; 0x06
3f96: b7 83 std Z+7, r27 ; 0x07
3f98: 29 81 ldd r18, Y+1 ; 0x01
3f9a: 3a 81 ldd r19, Y+2 ; 0x02
3f9c: 8e e4 ldi r24, 0x4E ; 78
3f9e: 90 e0 ldi r25, 0x00 ; 0
3fa0: a0 e0 ldi r26, 0x00 ; 0
3fa2: b0 e0 ldi r27, 0x00 ; 0
3fa4: f9 01 movw r30, r18
3fa6: 80 87 std Z+8, r24 ; 0x08
3fa8: 91 87 std Z+9, r25 ; 0x09
3faa: a2 87 std Z+10, r26 ; 0x0a
3fac: b3 87 std Z+11, r27 ; 0x0b
3fae: 29 81 ldd r18, Y+1 ; 0x01
3fb0: 3a 81 ldd r19, Y+2 ; 0x02
3fb2: 89 e5 ldi r24, 0x59 ; 89
3fb4: 90 e0 ldi r25, 0x00 ; 0
3fb6: a0 e0 ldi r26, 0x00 ; 0
3fb8: b0 e0 ldi r27, 0x00 ; 0
3fba: f9 01 movw r30, r18
3fbc: 84 87 std Z+12, r24 ; 0x0c
3fbe: 95 87 std Z+13, r25 ; 0x0d
3fc0: a6 87 std Z+14, r26 ; 0x0e
3fc2: b7 87 std Z+15, r27 ; 0x0f
3fc4: 0f 90 pop r0
3fc6: 0f 90 pop r0
3fc8: df 91 pop r29
3fca: cf 91 pop r28
3fcc: 08 95 ret
3fce: af 92 push r10
3fd0: bf 92 push r11
3fd2: cf 92 push r12
3fd4: df 92 push r13
3fd6: ef 92 push r14
3fd8: ff 92 push r15
3fda: 0f 93 push r16
3fdc: 1f 93 push r17
3fde: cf 93 push r28
3fe0: df 93 push r29
3fe2: cd b7 in r28, 0x3d ; 61
3fe4: de b7 in r29, 0x3e ; 62
3fe6: 2c 97 sbiw r28, 0x0c ; 12
3fe8: cd bf out 0x3d, r28 ; 61
3fea: de bf out 0x3e, r29 ; 62
3fec: 8d 83 std Y+5, r24 ; 0x05
3fee: 9e 83 std Y+6, r25 ; 0x06
3ff0: 4f 83 std Y+7, r20 ; 0x07
3ff2: 58 87 std Y+8, r21 ; 0x08
3ff4: 69 87 std Y+9, r22 ; 0x09
3ff6: 7a 87 std Y+10, r23 ; 0x0a
3ff8: 2d 81 ldd r18, Y+5 ; 0x05
3ffa: 3e 81 ldd r19, Y+6 ; 0x06
3ffc: 8f 81 ldd r24, Y+7 ; 0x07
3ffe: 98 85 ldd r25, Y+8 ; 0x08
4000: a9 85 ldd r26, Y+9 ; 0x09
4002: ba 85 ldd r27, Y+10 ; 0x0a
4004: f9 01 movw r30, r18
4006: 80 83 st Z, r24
4008: 91 83 std Z+1, r25 ; 0x01
400a: a2 83 std Z+2, r26 ; 0x02
400c: b3 83 std Z+3, r27 ; 0x03
400e: 8d 81 ldd r24, Y+5 ; 0x05
4010: 9e 81 ldd r25, Y+6 ; 0x06
4012: fc 01 movw r30, r24
4014: 80 89 ldd r24, Z+16 ; 0x10
4016: 91 89 ldd r25, Z+17 ; 0x11
4018: a2 89 ldd r26, Z+18 ; 0x12
401a: b3 89 ldd r27, Z+19 ; 0x13
401c: 2d 81 ldd r18, Y+5 ; 0x05
401e: 3e 81 ldd r19, Y+6 ; 0x06
4020: f9 01 movw r30, r18
4022: 84 83 std Z+4, r24 ; 0x04
4024: 95 83 std Z+5, r25 ; 0x05
4026: a6 83 std Z+6, r26 ; 0x06
4028: b7 83 std Z+7, r27 ; 0x07
402a: 8d 81 ldd r24, Y+5 ; 0x05
402c: 9e 81 ldd r25, Y+6 ; 0x06
402e: fc 01 movw r30, r24
4030: 84 89 ldd r24, Z+20 ; 0x14
4032: 95 89 ldd r25, Z+21 ; 0x15
4034: a6 89 ldd r26, Z+22 ; 0x16
4036: b7 89 ldd r27, Z+23 ; 0x17
4038: 2d 81 ldd r18, Y+5 ; 0x05
403a: 3e 81 ldd r19, Y+6 ; 0x06
403c: f9 01 movw r30, r18
403e: 80 87 std Z+8, r24 ; 0x08
4040: 91 87 std Z+9, r25 ; 0x09
4042: a2 87 std Z+10, r26 ; 0x0a
4044: b3 87 std Z+11, r27 ; 0x0b
4046: 8d 81 ldd r24, Y+5 ; 0x05
4048: 9e 81 ldd r25, Y+6 ; 0x06
404a: fc 01 movw r30, r24
404c: 80 8d ldd r24, Z+24 ; 0x18
404e: 91 8d ldd r25, Z+25 ; 0x19
4050: a2 8d ldd r26, Z+26 ; 0x1a
4052: b3 8d ldd r27, Z+27 ; 0x1b
4054: 2d 81 ldd r18, Y+5 ; 0x05
4056: 3e 81 ldd r19, Y+6 ; 0x06
4058: f9 01 movw r30, r18
405a: 84 87 std Z+12, r24 ; 0x0c
405c: 95 87 std Z+13, r25 ; 0x0d
405e: a6 87 std Z+14, r26 ; 0x0e
4060: b7 87 std Z+15, r27 ; 0x0f
4062: 81 e0 ldi r24, 0x01 ; 1
4064: 90 e0 ldi r25, 0x00 ; 0
4066: 89 83 std Y+1, r24 ; 0x01
4068: 9a 83 std Y+2, r25 ; 0x02
406a: 75 c0 rjmp .+234 ; 0x4156
406c: 89 81 ldd r24, Y+1 ; 0x01
406e: 9a 81 ldd r25, Y+2 ; 0x02
4070: fc 01 movw r30, r24
4072: e3 70 andi r30, 0x03 ; 3
4074: ff 27 eor r31, r31
4076: eb 87 std Y+11, r30 ; 0x0b
4078: fc 87 std Y+12, r31 ; 0x0c
407a: 89 81 ldd r24, Y+1 ; 0x01
407c: 9a 81 ldd r25, Y+2 ; 0x02
407e: 83 70 andi r24, 0x03 ; 3
4080: 99 27 eor r25, r25
4082: 2d 81 ldd r18, Y+5 ; 0x05
4084: 3e 81 ldd r19, Y+6 ; 0x06
4086: 88 0f add r24, r24
4088: 99 1f adc r25, r25
408a: 88 0f add r24, r24
408c: 99 1f adc r25, r25
408e: 82 0f add r24, r18
4090: 93 1f adc r25, r19
4092: dc 01 movw r26, r24
4094: ed 90 ld r14, X+
4096: fd 90 ld r15, X+
4098: 0d 91 ld r16, X+
409a: 1c 91 ld r17, X
409c: 89 81 ldd r24, Y+1 ; 0x01
409e: 9a 81 ldd r25, Y+2 ; 0x02
40a0: 5c 01 movw r10, r24
40a2: 99 0f add r25, r25
40a4: cc 08 sbc r12, r12
40a6: dd 08 sbc r13, r13
40a8: 89 81 ldd r24, Y+1 ; 0x01
40aa: 9a 81 ldd r25, Y+2 ; 0x02
40ac: 01 97 sbiw r24, 0x01 ; 1
40ae: 83 70 andi r24, 0x03 ; 3
40b0: 99 27 eor r25, r25
40b2: 2d 81 ldd r18, Y+5 ; 0x05
40b4: 3e 81 ldd r19, Y+6 ; 0x06
40b6: 88 0f add r24, r24
40b8: 99 1f adc r25, r25
40ba: 88 0f add r24, r24
40bc: 99 1f adc r25, r25
40be: 82 0f add r24, r18
40c0: 93 1f adc r25, r19
40c2: fc 01 movw r30, r24
40c4: 20 81 ld r18, Z
40c6: 31 81 ldd r19, Z+1 ; 0x01
40c8: 42 81 ldd r20, Z+2 ; 0x02
40ca: 53 81 ldd r21, Z+3 ; 0x03
40cc: 89 81 ldd r24, Y+1 ; 0x01
40ce: 9a 81 ldd r25, Y+2 ; 0x02
40d0: 01 97 sbiw r24, 0x01 ; 1
40d2: 83 70 andi r24, 0x03 ; 3
40d4: 99 27 eor r25, r25
40d6: 6d 81 ldd r22, Y+5 ; 0x05
40d8: 7e 81 ldd r23, Y+6 ; 0x06
40da: 88 0f add r24, r24
40dc: 99 1f adc r25, r25
40de: 88 0f add r24, r24
40e0: 99 1f adc r25, r25
40e2: 86 0f add r24, r22
40e4: 97 1f adc r25, r23
40e6: fc 01 movw r30, r24
40e8: 80 81 ld r24, Z
40ea: 91 81 ldd r25, Z+1 ; 0x01
40ec: a2 81 ldd r26, Z+2 ; 0x02
40ee: b3 81 ldd r27, Z+3 ; 0x03
40f0: 07 2e mov r0, r23
40f2: 7e e1 ldi r23, 0x1E ; 30
40f4: b6 95 lsr r27
40f6: a7 95 ror r26
40f8: 97 95 ror r25
40fa: 87 95 ror r24
40fc: 7a 95 dec r23
40fe: d1 f7 brne .-12 ; 0x40f4
4100: 70 2d mov r23, r0
4102: 82 27 eor r24, r18
4104: 93 27 eor r25, r19
4106: a4 27 eor r26, r20
4108: b5 27 eor r27, r21
410a: 9c 01 movw r18, r24
410c: ad 01 movw r20, r26
410e: 65 e6 ldi r22, 0x65 ; 101
4110: 79 e8 ldi r23, 0x89 ; 137
4112: 87 e0 ldi r24, 0x07 ; 7
4114: 9c e6 ldi r25, 0x6C ; 108
4116: 0e 94 b3 24 call 0x4966 ; 0x4966
411a: dc 01 movw r26, r24
411c: cb 01 movw r24, r22
411e: 8a 0d add r24, r10
4120: 9b 1d adc r25, r11
4122: ac 1d adc r26, r12
4124: bd 1d adc r27, r13
4126: 8e 25 eor r24, r14
4128: 9f 25 eor r25, r15
412a: a0 27 eor r26, r16
412c: b1 27 eor r27, r17
412e: 4d 81 ldd r20, Y+5 ; 0x05
4130: 5e 81 ldd r21, Y+6 ; 0x06
4132: 2b 85 ldd r18, Y+11 ; 0x0b
4134: 3c 85 ldd r19, Y+12 ; 0x0c
4136: 22 0f add r18, r18
4138: 33 1f adc r19, r19
413a: 22 0f add r18, r18
413c: 33 1f adc r19, r19
413e: 24 0f add r18, r20
4140: 35 1f adc r19, r21
4142: f9 01 movw r30, r18
4144: 80 83 st Z, r24
4146: 91 83 std Z+1, r25 ; 0x01
4148: a2 83 std Z+2, r26 ; 0x02
414a: b3 83 std Z+3, r27 ; 0x03
414c: 89 81 ldd r24, Y+1 ; 0x01
414e: 9a 81 ldd r25, Y+2 ; 0x02
4150: 01 96 adiw r24, 0x01 ; 1
4152: 89 83 std Y+1, r24 ; 0x01
4154: 9a 83 std Y+2, r25 ; 0x02
4156: 89 81 ldd r24, Y+1 ; 0x01
4158: 9a 81 ldd r25, Y+2 ; 0x02
415a: 08 97 sbiw r24, 0x08 ; 8
415c: 0c f4 brge .+2 ; 0x4160
415e: 86 cf rjmp .-244 ; 0x406c
4160: 8d 81 ldd r24, Y+5 ; 0x05
4162: 9e 81 ldd r25, Y+6 ; 0x06
4164: 0e 94 7f 1f call 0x3efe ; 0x3efe
4168: 1b 82 std Y+3, r1 ; 0x03
416a: 1c 82 std Y+4, r1 ; 0x04
416c: 09 c0 rjmp .+18 ; 0x4180
416e: 8d 81 ldd r24, Y+5 ; 0x05
4170: 9e 81 ldd r25, Y+6 ; 0x06
4172: 0e 94 db 1d call 0x3bb6 ; 0x3bb6
4176: 8b 81 ldd r24, Y+3 ; 0x03
4178: 9c 81 ldd r25, Y+4 ; 0x04
417a: 01 96 adiw r24, 0x01 ; 1
417c: 8b 83 std Y+3, r24 ; 0x03
417e: 9c 83 std Y+4, r25 ; 0x04
4180: 8b 81 ldd r24, Y+3 ; 0x03
4182: 9c 81 ldd r25, Y+4 ; 0x04
4184: 08 97 sbiw r24, 0x08 ; 8
4186: 9c f3 brlt .-26 ; 0x416e
4188: 2c 96 adiw r28, 0x0c ; 12
418a: cd bf out 0x3d, r28 ; 61
418c: de bf out 0x3e, r29 ; 62
418e: df 91 pop r29
4190: cf 91 pop r28
4192: 1f 91 pop r17
4194: 0f 91 pop r16
4196: ff 90 pop r15
4198: ef 90 pop r14
419a: df 90 pop r13
419c: cf 90 pop r12
419e: bf 90 pop r11
41a0: af 90 pop r10
41a2: 08 95 ret
41a4: cf 93 push r28
41a6: df 93 push r29
41a8: cd b7 in r28, 0x3d ; 61
41aa: de b7 in r29, 0x3e ; 62
41ac: 2c 97 sbiw r28, 0x0c ; 12
41ae: cd bf out 0x3d, r28 ; 61
41b0: de bf out 0x3e, r29 ; 62
41b2: 8f 83 std Y+7, r24 ; 0x07
41b4: 98 87 std Y+8, r25 ; 0x08
41b6: 69 87 std Y+9, r22 ; 0x09
41b8: 7a 87 std Y+10, r23 ; 0x0a
41ba: 4b 87 std Y+11, r20 ; 0x0b
41bc: 5c 87 std Y+12, r21 ; 0x0c
41be: 19 82 std Y+1, r1 ; 0x01
41c0: 1a 82 std Y+2, r1 ; 0x02
41c2: 1b 82 std Y+3, r1 ; 0x03
41c4: 1c 82 std Y+4, r1 ; 0x04
41c6: 1d 82 std Y+5, r1 ; 0x05
41c8: 1e 82 std Y+6, r1 ; 0x06
41ca: 20 c0 rjmp .+64 ; 0x420c
41cc: 8d 81 ldd r24, Y+5 ; 0x05
41ce: 9e 81 ldd r25, Y+6 ; 0x06
41d0: 88 0f add r24, r24
41d2: 99 1f adc r25, r25
41d4: 88 0f add r24, r24
41d6: 99 1f adc r25, r25
41d8: 29 85 ldd r18, Y+9 ; 0x09
41da: 3a 85 ldd r19, Y+10 ; 0x0a
41dc: 82 0f add r24, r18
41de: 93 1f adc r25, r19
41e0: fc 01 movw r30, r24
41e2: 80 81 ld r24, Z
41e4: 91 81 ldd r25, Z+1 ; 0x01
41e6: a2 81 ldd r26, Z+2 ; 0x02
41e8: b3 81 ldd r27, Z+3 ; 0x03
41ea: 29 81 ldd r18, Y+1 ; 0x01
41ec: 3a 81 ldd r19, Y+2 ; 0x02
41ee: 4b 81 ldd r20, Y+3 ; 0x03
41f0: 5c 81 ldd r21, Y+4 ; 0x04
41f2: 82 27 eor r24, r18
41f4: 93 27 eor r25, r19
41f6: a4 27 eor r26, r20
41f8: b5 27 eor r27, r21
41fa: 89 83 std Y+1, r24 ; 0x01
41fc: 9a 83 std Y+2, r25 ; 0x02
41fe: ab 83 std Y+3, r26 ; 0x03
4200: bc 83 std Y+4, r27 ; 0x04
4202: 8d 81 ldd r24, Y+5 ; 0x05
4204: 9e 81 ldd r25, Y+6 ; 0x06
4206: 01 96 adiw r24, 0x01 ; 1
4208: 8d 83 std Y+5, r24 ; 0x05
420a: 9e 83 std Y+6, r25 ; 0x06
420c: 2d 81 ldd r18, Y+5 ; 0x05
420e: 3e 81 ldd r19, Y+6 ; 0x06
4210: 8b 85 ldd r24, Y+11 ; 0x0b
4212: 9c 85 ldd r25, Y+12 ; 0x0c
4214: 28 17 cp r18, r24
4216: 39 07 cpc r19, r25
4218: cc f2 brlt .-78 ; 0x41cc
421a: 89 81 ldd r24, Y+1 ; 0x01
421c: 9a 81 ldd r25, Y+2 ; 0x02
421e: ab 81 ldd r26, Y+3 ; 0x03
4220: bc 81 ldd r27, Y+4 ; 0x04
4222: 2f 81 ldd r18, Y+7 ; 0x07
4224: 38 85 ldd r19, Y+8 ; 0x08
4226: ac 01 movw r20, r24
4228: bd 01 movw r22, r26
422a: c9 01 movw r24, r18
422c: 0e 94 e7 1f call 0x3fce ; 0x3fce
4230: 2c 96 adiw r28, 0x0c ; 12
4232: cd bf out 0x3d, r28 ; 61
4234: de bf out 0x3e, r29 ; 62
4236: df 91 pop r29
4238: cf 91 pop r28
423a: 08 95 ret
423c: ef 92 push r14
423e: ff 92 push r15
4240: 0f 93 push r16
4242: 1f 93 push r17
4244: cf 93 push r28
4246: df 93 push r29
4248: 00 d0 rcall .+0 ; 0x424a
424a: 00 d0 rcall .+0 ; 0x424c
424c: cd b7 in r28, 0x3d ; 61
424e: de b7 in r29, 0x3e ; 62
4250: 8d 83 std Y+5, r24 ; 0x05
4252: 9e 83 std Y+6, r25 ; 0x06
4254: 8d 81 ldd r24, Y+5 ; 0x05
4256: 9e 81 ldd r25, Y+6 ; 0x06
4258: fc 01 movw r30, r24
425a: 20 81 ld r18, Z
425c: 31 81 ldd r19, Z+1 ; 0x01
425e: 42 81 ldd r20, Z+2 ; 0x02
4260: 53 81 ldd r21, Z+3 ; 0x03
4262: 8d 81 ldd r24, Y+5 ; 0x05
4264: 9e 81 ldd r25, Y+6 ; 0x06
4266: fc 01 movw r30, r24
4268: 84 81 ldd r24, Z+4 ; 0x04
426a: 95 81 ldd r25, Z+5 ; 0x05
426c: a6 81 ldd r26, Z+6 ; 0x06
426e: b7 81 ldd r27, Z+7 ; 0x07
4270: 7c 01 movw r14, r24
4272: 8d 01 movw r16, r26
4274: 68 94 set
4276: 14 f8 bld r1, 4
4278: 16 95 lsr r17
427a: 07 95 ror r16
427c: f7 94 ror r15
427e: e7 94 ror r14
4280: 16 94 lsr r1
4282: d1 f7 brne .-12 ; 0x4278
4284: 07 2e mov r0, r23
4286: 7b e1 ldi r23, 0x1B ; 27
4288: 88 0f add r24, r24
428a: 99 1f adc r25, r25
428c: aa 1f adc r26, r26
428e: bb 1f adc r27, r27
4290: 7a 95 dec r23
4292: d1 f7 brne .-12 ; 0x4288
4294: 70 2d mov r23, r0
4296: 8e 29 or r24, r14
4298: 9f 29 or r25, r15
429a: a0 2b or r26, r16
429c: b1 2b or r27, r17
429e: 79 01 movw r14, r18
42a0: 8a 01 movw r16, r20
42a2: e8 1a sub r14, r24
42a4: f9 0a sbc r15, r25
42a6: 0a 0b sbc r16, r26
42a8: 1b 0b sbc r17, r27
42aa: d8 01 movw r26, r16
42ac: c7 01 movw r24, r14
42ae: 89 83 std Y+1, r24 ; 0x01
42b0: 9a 83 std Y+2, r25 ; 0x02
42b2: ab 83 std Y+3, r26 ; 0x03
42b4: bc 83 std Y+4, r27 ; 0x04
42b6: 8d 81 ldd r24, Y+5 ; 0x05
42b8: 9e 81 ldd r25, Y+6 ; 0x06
42ba: fc 01 movw r30, r24
42bc: 24 81 ldd r18, Z+4 ; 0x04
42be: 35 81 ldd r19, Z+5 ; 0x05
42c0: 46 81 ldd r20, Z+6 ; 0x06
42c2: 57 81 ldd r21, Z+7 ; 0x07
42c4: 8d 81 ldd r24, Y+5 ; 0x05
42c6: 9e 81 ldd r25, Y+6 ; 0x06
42c8: fc 01 movw r30, r24
42ca: 80 85 ldd r24, Z+8 ; 0x08
42cc: 91 85 ldd r25, Z+9 ; 0x09
42ce: a2 85 ldd r26, Z+10 ; 0x0a
42d0: b3 85 ldd r27, Z+11 ; 0x0b
42d2: 7c 01 movw r14, r24
42d4: 8d 01 movw r16, r26
42d6: 0d 2e mov r0, r29
42d8: df e0 ldi r29, 0x0F ; 15
42da: 16 95 lsr r17
42dc: 07 95 ror r16
42de: f7 94 ror r15
42e0: e7 94 ror r14
42e2: da 95 dec r29
42e4: d1 f7 brne .-12 ; 0x42da
42e6: d0 2d mov r29, r0
42e8: 07 2e mov r0, r23
42ea: 71 e1 ldi r23, 0x11 ; 17
42ec: 88 0f add r24, r24
42ee: 99 1f adc r25, r25
42f0: aa 1f adc r26, r26
42f2: bb 1f adc r27, r27
42f4: 7a 95 dec r23
42f6: d1 f7 brne .-12 ; 0x42ec
42f8: 70 2d mov r23, r0
42fa: 8e 29 or r24, r14
42fc: 9f 29 or r25, r15
42fe: a0 2b or r26, r16
4300: b1 2b or r27, r17
4302: 82 27 eor r24, r18
4304: 93 27 eor r25, r19
4306: a4 27 eor r26, r20
4308: b5 27 eor r27, r21
430a: 2d 81 ldd r18, Y+5 ; 0x05
430c: 3e 81 ldd r19, Y+6 ; 0x06
430e: f9 01 movw r30, r18
4310: 80 83 st Z, r24
4312: 91 83 std Z+1, r25 ; 0x01
4314: a2 83 std Z+2, r26 ; 0x02
4316: b3 83 std Z+3, r27 ; 0x03
4318: 8d 81 ldd r24, Y+5 ; 0x05
431a: 9e 81 ldd r25, Y+6 ; 0x06
431c: fc 01 movw r30, r24
431e: 20 85 ldd r18, Z+8 ; 0x08
4320: 31 85 ldd r19, Z+9 ; 0x09
4322: 42 85 ldd r20, Z+10 ; 0x0a
4324: 53 85 ldd r21, Z+11 ; 0x0b
4326: 8d 81 ldd r24, Y+5 ; 0x05
4328: 9e 81 ldd r25, Y+6 ; 0x06
432a: fc 01 movw r30, r24
432c: 84 85 ldd r24, Z+12 ; 0x0c
432e: 95 85 ldd r25, Z+13 ; 0x0d
4330: a6 85 ldd r26, Z+14 ; 0x0e
4332: b7 85 ldd r27, Z+15 ; 0x0f
4334: 82 0f add r24, r18
4336: 93 1f adc r25, r19
4338: a4 1f adc r26, r20
433a: b5 1f adc r27, r21
433c: 2d 81 ldd r18, Y+5 ; 0x05
433e: 3e 81 ldd r19, Y+6 ; 0x06
4340: f9 01 movw r30, r18
4342: 84 83 std Z+4, r24 ; 0x04
4344: 95 83 std Z+5, r25 ; 0x05
4346: a6 83 std Z+6, r26 ; 0x06
4348: b7 83 std Z+7, r27 ; 0x07
434a: 8d 81 ldd r24, Y+5 ; 0x05
434c: 9e 81 ldd r25, Y+6 ; 0x06
434e: fc 01 movw r30, r24
4350: 24 85 ldd r18, Z+12 ; 0x0c
4352: 35 85 ldd r19, Z+13 ; 0x0d
4354: 46 85 ldd r20, Z+14 ; 0x0e
4356: 57 85 ldd r21, Z+15 ; 0x0f
4358: 89 81 ldd r24, Y+1 ; 0x01
435a: 9a 81 ldd r25, Y+2 ; 0x02
435c: ab 81 ldd r26, Y+3 ; 0x03
435e: bc 81 ldd r27, Y+4 ; 0x04
4360: 82 0f add r24, r18
4362: 93 1f adc r25, r19
4364: a4 1f adc r26, r20
4366: b5 1f adc r27, r21
4368: 2d 81 ldd r18, Y+5 ; 0x05
436a: 3e 81 ldd r19, Y+6 ; 0x06
436c: f9 01 movw r30, r18
436e: 80 87 std Z+8, r24 ; 0x08
4370: 91 87 std Z+9, r25 ; 0x09
4372: a2 87 std Z+10, r26 ; 0x0a
4374: b3 87 std Z+11, r27 ; 0x0b
4376: 8d 81 ldd r24, Y+5 ; 0x05
4378: 9e 81 ldd r25, Y+6 ; 0x06
437a: fc 01 movw r30, r24
437c: 20 81 ld r18, Z
437e: 31 81 ldd r19, Z+1 ; 0x01
4380: 42 81 ldd r20, Z+2 ; 0x02
4382: 53 81 ldd r21, Z+3 ; 0x03
4384: 89 81 ldd r24, Y+1 ; 0x01
4386: 9a 81 ldd r25, Y+2 ; 0x02
4388: ab 81 ldd r26, Y+3 ; 0x03
438a: bc 81 ldd r27, Y+4 ; 0x04
438c: 82 0f add r24, r18
438e: 93 1f adc r25, r19
4390: a4 1f adc r26, r20
4392: b5 1f adc r27, r21
4394: 2d 81 ldd r18, Y+5 ; 0x05
4396: 3e 81 ldd r19, Y+6 ; 0x06
4398: f9 01 movw r30, r18
439a: 84 87 std Z+12, r24 ; 0x0c
439c: 95 87 std Z+13, r25 ; 0x0d
439e: a6 87 std Z+14, r26 ; 0x0e
43a0: b7 87 std Z+15, r27 ; 0x0f
43a2: 8d 81 ldd r24, Y+5 ; 0x05
43a4: 9e 81 ldd r25, Y+6 ; 0x06
43a6: fc 01 movw r30, r24
43a8: 84 85 ldd r24, Z+12 ; 0x0c
43aa: 95 85 ldd r25, Z+13 ; 0x0d
43ac: a6 85 ldd r26, Z+14 ; 0x0e
43ae: b7 85 ldd r27, Z+15 ; 0x0f
43b0: bc 01 movw r22, r24
43b2: cd 01 movw r24, r26
43b4: 26 96 adiw r28, 0x06 ; 6
43b6: cd bf out 0x3d, r28 ; 61
43b8: de bf out 0x3e, r29 ; 62
43ba: df 91 pop r29
43bc: cf 91 pop r28
43be: 1f 91 pop r17
43c0: 0f 91 pop r16
43c2: ff 90 pop r15
43c4: ef 90 pop r14
43c6: 08 95 ret
43c8: cf 93 push r28
43ca: df 93 push r29
43cc: cd b7 in r28, 0x3d ; 61
43ce: de b7 in r29, 0x3e ; 62
43d0: 2a 97 sbiw r28, 0x0a ; 10
43d2: cd bf out 0x3d, r28 ; 61
43d4: de bf out 0x3e, r29 ; 62
43d6: 8d 83 std Y+5, r24 ; 0x05
43d8: 9e 83 std Y+6, r25 ; 0x06
43da: 4f 83 std Y+7, r20 ; 0x07
43dc: 58 87 std Y+8, r21 ; 0x08
43de: 69 87 std Y+9, r22 ; 0x09
43e0: 7a 87 std Y+10, r23 ; 0x0a
43e2: 2d 81 ldd r18, Y+5 ; 0x05
43e4: 3e 81 ldd r19, Y+6 ; 0x06
43e6: 8f e2 ldi r24, 0x2F ; 47
43e8: 94 ea ldi r25, 0xA4 ; 164
43ea: a2 ec ldi r26, 0xC2 ; 194
43ec: b4 e8 ldi r27, 0x84 ; 132
43ee: f9 01 movw r30, r18
43f0: 80 83 st Z, r24
43f2: 91 83 std Z+1, r25 ; 0x01
43f4: a2 83 std Z+2, r26 ; 0x02
43f6: b3 83 std Z+3, r27 ; 0x03
43f8: 2d 81 ldd r18, Y+5 ; 0x05
43fa: 3e 81 ldd r19, Y+6 ; 0x06
43fc: 8f 81 ldd r24, Y+7 ; 0x07
43fe: 98 85 ldd r25, Y+8 ; 0x08
4400: a9 85 ldd r26, Y+9 ; 0x09
4402: ba 85 ldd r27, Y+10 ; 0x0a
4404: f9 01 movw r30, r18
4406: 84 87 std Z+12, r24 ; 0x0c
4408: 95 87 std Z+13, r25 ; 0x0d
440a: a6 87 std Z+14, r26 ; 0x0e
440c: b7 87 std Z+15, r27 ; 0x0f
440e: 8d 81 ldd r24, Y+5 ; 0x05
4410: 9e 81 ldd r25, Y+6 ; 0x06
4412: fc 01 movw r30, r24
4414: 84 85 ldd r24, Z+12 ; 0x0c
4416: 95 85 ldd r25, Z+13 ; 0x0d
4418: a6 85 ldd r26, Z+14 ; 0x0e
441a: b7 85 ldd r27, Z+15 ; 0x0f
441c: 2d 81 ldd r18, Y+5 ; 0x05
441e: 3e 81 ldd r19, Y+6 ; 0x06
4420: f9 01 movw r30, r18
4422: 80 87 std Z+8, r24 ; 0x08
4424: 91 87 std Z+9, r25 ; 0x09
4426: a2 87 std Z+10, r26 ; 0x0a
4428: b3 87 std Z+11, r27 ; 0x0b
442a: 8d 81 ldd r24, Y+5 ; 0x05
442c: 9e 81 ldd r25, Y+6 ; 0x06
442e: fc 01 movw r30, r24
4430: 80 85 ldd r24, Z+8 ; 0x08
4432: 91 85 ldd r25, Z+9 ; 0x09
4434: a2 85 ldd r26, Z+10 ; 0x0a
4436: b3 85 ldd r27, Z+11 ; 0x0b
4438: 2d 81 ldd r18, Y+5 ; 0x05
443a: 3e 81 ldd r19, Y+6 ; 0x06
443c: f9 01 movw r30, r18
443e: 84 83 std Z+4, r24 ; 0x04
4440: 95 83 std Z+5, r25 ; 0x05
4442: a6 83 std Z+6, r26 ; 0x06
4444: b7 83 std Z+7, r27 ; 0x07
4446: 19 82 std Y+1, r1 ; 0x01
4448: 1a 82 std Y+2, r1 ; 0x02
444a: 1b 82 std Y+3, r1 ; 0x03
444c: 1c 82 std Y+4, r1 ; 0x04
444e: 0f c0 rjmp .+30 ; 0x446e
4450: 8d 81 ldd r24, Y+5 ; 0x05
4452: 9e 81 ldd r25, Y+6 ; 0x06
4454: 0e 94 1e 21 call 0x423c ; 0x423c
4458: 89 81 ldd r24, Y+1 ; 0x01
445a: 9a 81 ldd r25, Y+2 ; 0x02
445c: ab 81 ldd r26, Y+3 ; 0x03
445e: bc 81 ldd r27, Y+4 ; 0x04
4460: 01 96 adiw r24, 0x01 ; 1
4462: a1 1d adc r26, r1
4464: b1 1d adc r27, r1
4466: 89 83 std Y+1, r24 ; 0x01
4468: 9a 83 std Y+2, r25 ; 0x02
446a: ab 83 std Y+3, r26 ; 0x03
446c: bc 83 std Y+4, r27 ; 0x04
446e: 89 81 ldd r24, Y+1 ; 0x01
4470: 9a 81 ldd r25, Y+2 ; 0x02
4472: ab 81 ldd r26, Y+3 ; 0x03
4474: bc 81 ldd r27, Y+4 ; 0x04
4476: 44 97 sbiw r24, 0x14 ; 20
4478: a1 05 cpc r26, r1
447a: b1 05 cpc r27, r1
447c: 48 f3 brcs .-46 ; 0x4450
447e: 2a 96 adiw r28, 0x0a ; 10
4480: cd bf out 0x3d, r28 ; 61
4482: de bf out 0x3e, r29 ; 62
4484: df 91 pop r29
4486: cf 91 pop r28
4488: 08 95 ret
448a: cf 93 push r28
448c: df 93 push r29
448e: 1f 92 push r1
4490: cd b7 in r28, 0x3d ; 61
4492: de b7 in r29, 0x3e ; 62
4494: 89 83 std Y+1, r24 ; 0x01
4496: 89 81 ldd r24, Y+1 ; 0x01
4498: 8a 30 cpi r24, 0x0A ; 10
449a: 18 f4 brcc .+6 ; 0x44a2
449c: 89 81 ldd r24, Y+1 ; 0x01
449e: 80 5d subi r24, 0xD0 ; 208
44a0: 02 c0 rjmp .+4 ; 0x44a6
44a2: 89 81 ldd r24, Y+1 ; 0x01
44a4: 89 5a subi r24, 0xA9 ; 169
44a6: 0f 90 pop r0
44a8: df 91 pop r29
44aa: cf 91 pop r28
44ac: 08 95 ret
44ae: cf 93 push r28
44b0: df 93 push r29
44b2: 1f 92 push r1
44b4: cd b7 in r28, 0x3d ; 61
44b6: de b7 in r29, 0x3e ; 62
44b8: 89 83 std Y+1, r24 ; 0x01
44ba: 89 81 ldd r24, Y+1 ; 0x01
44bc: 80 33 cpi r24, 0x30 ; 48
44be: 30 f0 brcs .+12 ; 0x44cc
44c0: 89 81 ldd r24, Y+1 ; 0x01
44c2: 8a 33 cpi r24, 0x3A ; 58
44c4: 18 f4 brcc .+6 ; 0x44cc
44c6: 89 81 ldd r24, Y+1 ; 0x01
44c8: 80 53 subi r24, 0x30 ; 48
44ca: 13 c0 rjmp .+38 ; 0x44f2
44cc: 89 81 ldd r24, Y+1 ; 0x01
44ce: 81 36 cpi r24, 0x61 ; 97
44d0: 30 f0 brcs .+12 ; 0x44de
44d2: 89 81 ldd r24, Y+1 ; 0x01
44d4: 87 36 cpi r24, 0x67 ; 103
44d6: 18 f4 brcc .+6 ; 0x44de
44d8: 89 81 ldd r24, Y+1 ; 0x01
44da: 87 55 subi r24, 0x57 ; 87
44dc: 0a c0 rjmp .+20 ; 0x44f2
44de: 89 81 ldd r24, Y+1 ; 0x01
44e0: 81 34 cpi r24, 0x41 ; 65
44e2: 30 f0 brcs .+12 ; 0x44f0
44e4: 89 81 ldd r24, Y+1 ; 0x01
44e6: 87 34 cpi r24, 0x47 ; 71
44e8: 18 f4 brcc .+6 ; 0x44f0
44ea: 89 81 ldd r24, Y+1 ; 0x01
44ec: 87 53 subi r24, 0x37 ; 55
44ee: 01 c0 rjmp .+2 ; 0x44f2
44f0: 80 e3 ldi r24, 0x30 ; 48
44f2: 0f 90 pop r0
44f4: df 91 pop r29
44f6: cf 91 pop r28
44f8: 08 95 ret
44fa: 0f 93 push r16
44fc: 1f 93 push r17
44fe: cf 93 push r28
4500: df 93 push r29
4502: cd b7 in r28, 0x3d ; 61
4504: de b7 in r29, 0x3e ; 62
4506: 2b 97 sbiw r28, 0x0b ; 11
4508: cd bf out 0x3d, r28 ; 61
450a: de bf out 0x3e, r29 ; 62
450c: 8b e8 ldi r24, 0x8B ; 139
450e: 93 e0 ldi r25, 0x03 ; 3
4510: 8a 83 std Y+2, r24 ; 0x02
4512: 9b 83 std Y+3, r25 ; 0x03
4514: 8a 81 ldd r24, Y+2 ; 0x02
4516: 9b 81 ldd r25, Y+3 ; 0x03
4518: 9c 01 movw r18, r24
451a: f9 01 movw r30, r18
451c: 85 91 lpm r24, Z+
451e: 95 91 lpm r25, Z+
4520: a5 91 lpm r26, Z+
4522: b4 91 lpm r27, Z
4524: 9f 01 movw r18, r30
4526: 8c 83 std Y+4, r24 ; 0x04
4528: 9d 83 std Y+5, r25 ; 0x05
452a: ae 83 std Y+6, r26 ; 0x06
452c: bf 83 std Y+7, r27 ; 0x07
452e: 2a 83 std Y+2, r18 ; 0x02
4530: 3b 83 std Y+3, r19 ; 0x03
4532: 8c 81 ldd r24, Y+4 ; 0x04
4534: 9d 81 ldd r25, Y+5 ; 0x05
4536: ae 81 ldd r26, Y+6 ; 0x06
4538: bf 81 ldd r27, Y+7 ; 0x07
453a: 88 87 std Y+8, r24 ; 0x08
453c: 99 87 std Y+9, r25 ; 0x09
453e: aa 87 std Y+10, r26 ; 0x0a
4540: bb 87 std Y+11, r27 ; 0x0b
4542: 88 85 ldd r24, Y+8 ; 0x08
4544: 99 85 ldd r25, Y+9 ; 0x09
4546: aa 85 ldd r26, Y+10 ; 0x0a
4548: bb 85 ldd r27, Y+11 ; 0x0b
454a: ac 01 movw r20, r24
454c: bd 01 movw r22, r26
454e: 8f e5 ldi r24, 0x5F ; 95
4550: 92 e2 ldi r25, 0x22 ; 34
4552: 0e 94 e4 21 call 0x43c8 ; 0x43c8
4556: 18 86 std Y+8, r1 ; 0x08
4558: 19 86 std Y+9, r1 ; 0x09
455a: 1a 86 std Y+10, r1 ; 0x0a
455c: 1b 86 std Y+11, r1 ; 0x0b
455e: 19 82 std Y+1, r1 ; 0x01
4560: 18 c0 rjmp .+48 ; 0x4592
4562: 89 81 ldd r24, Y+1 ; 0x01
4564: 88 2f mov r24, r24
4566: 90 e0 ldi r25, 0x00 ; 0
4568: 88 0f add r24, r24
456a: 99 1f adc r25, r25
456c: 88 0f add r24, r24
456e: 99 1f adc r25, r25
4570: 8c 01 movw r16, r24
4572: 01 59 subi r16, 0x91 ; 145
4574: 1d 4d sbci r17, 0xDD ; 221
4576: 8f e5 ldi r24, 0x5F ; 95
4578: 92 e2 ldi r25, 0x22 ; 34
457a: 0e 94 1e 21 call 0x423c ; 0x423c
457e: dc 01 movw r26, r24
4580: cb 01 movw r24, r22
4582: f8 01 movw r30, r16
4584: 80 83 st Z, r24
4586: 91 83 std Z+1, r25 ; 0x01
4588: a2 83 std Z+2, r26 ; 0x02
458a: b3 83 std Z+3, r27 ; 0x03
458c: 89 81 ldd r24, Y+1 ; 0x01
458e: 8f 5f subi r24, 0xFF ; 255
4590: 89 83 std Y+1, r24 ; 0x01
4592: 89 81 ldd r24, Y+1 ; 0x01
4594: 88 30 cpi r24, 0x08 ; 8
4596: 28 f3 brcs .-54 ; 0x4562
4598: 2b 96 adiw r28, 0x0b ; 11
459a: cd bf out 0x3d, r28 ; 61
459c: de bf out 0x3e, r29 ; 62
459e: df 91 pop r29
45a0: cf 91 pop r28
45a2: 1f 91 pop r17
45a4: 0f 91 pop r16
45a6: 08 95 ret
45a8: cf 93 push r28
45aa: df 93 push r29
45ac: 1f 92 push r1
45ae: cd b7 in r28, 0x3d ; 61
45b0: de b7 in r29, 0x3e ; 62
45b2: 89 83 std Y+1, r24 ; 0x01
45b4: 89 81 ldd r24, Y+1 ; 0x01
45b6: 80 93 5c 22 sts 0x225C, r24
45ba: 0f 90 pop r0
45bc: df 91 pop r29
45be: cf 91 pop r28
45c0: 08 95 ret
45c2: cf 93 push r28
45c4: df 93 push r29
45c6: cd b7 in r28, 0x3d ; 61
45c8: de b7 in r29, 0x3e ; 62
45ca: 28 97 sbiw r28, 0x08 ; 8
45cc: cd bf out 0x3d, r28 ; 61
45ce: de bf out 0x3e, r29 ; 62
45d0: 8f 83 std Y+7, r24 ; 0x07
45d2: 98 87 std Y+8, r25 ; 0x08
45d4: 1a 82 std Y+2, r1 ; 0x02
45d6: 19 82 std Y+1, r1 ; 0x01
45d8: 30 c0 rjmp .+96 ; 0x463a
45da: 89 81 ldd r24, Y+1 ; 0x01
45dc: 88 2f mov r24, r24
45de: 90 e0 ldi r25, 0x00 ; 0
45e0: 86 59 subi r24, 0x96 ; 150
45e2: 9c 4f sbci r25, 0xFC ; 252
45e4: 8b 83 std Y+3, r24 ; 0x03
45e6: 9c 83 std Y+4, r25 ; 0x04
45e8: 8b 81 ldd r24, Y+3 ; 0x03
45ea: 9c 81 ldd r25, Y+4 ; 0x04
45ec: fc 01 movw r30, r24
45ee: 84 91 lpm r24, Z
45f0: 8d 83 std Y+5, r24 ; 0x05
45f2: 8d 81 ldd r24, Y+5 ; 0x05
45f4: 8e 83 std Y+6, r24 ; 0x06
45f6: 89 81 ldd r24, Y+1 ; 0x01
45f8: 88 2f mov r24, r24
45fa: 90 e0 ldi r25, 0x00 ; 0
45fc: 81 59 subi r24, 0x91 ; 145
45fe: 9d 4d sbci r25, 0xDD ; 221
4600: fc 01 movw r30, r24
4602: 80 81 ld r24, Z
4604: 9e 81 ldd r25, Y+6 ; 0x06
4606: 89 27 eor r24, r25
4608: 8e 83 std Y+6, r24 ; 0x06
460a: 89 81 ldd r24, Y+1 ; 0x01
460c: 88 2f mov r24, r24
460e: 90 e0 ldi r25, 0x00 ; 0
4610: 2f 81 ldd r18, Y+7 ; 0x07
4612: 38 85 ldd r19, Y+8 ; 0x08
4614: 82 0f add r24, r18
4616: 93 1f adc r25, r19
4618: fc 01 movw r30, r24
461a: 90 81 ld r25, Z
461c: 8e 81 ldd r24, Y+6 ; 0x06
461e: 98 27 eor r25, r24
4620: 80 91 5c 22 lds r24, 0x225C
4624: 80 95 com r24
4626: 89 2b or r24, r25
4628: 88 2f mov r24, r24
462a: 90 e0 ldi r25, 0x00 ; 0
462c: 98 2f mov r25, r24
462e: 8a 81 ldd r24, Y+2 ; 0x02
4630: 89 2b or r24, r25
4632: 8a 83 std Y+2, r24 ; 0x02
4634: 89 81 ldd r24, Y+1 ; 0x01
4636: 8f 5f subi r24, 0xFF ; 255
4638: 89 83 std Y+1, r24 ; 0x01
463a: 89 81 ldd r24, Y+1 ; 0x01
463c: 80 32 cpi r24, 0x20 ; 32
463e: 68 f2 brcs .-102 ; 0x45da
4640: 81 e0 ldi r24, 0x01 ; 1
4642: 9a 81 ldd r25, Y+2 ; 0x02
4644: 99 23 and r25, r25
4646: 09 f0 breq .+2 ; 0x464a
4648: 80 e0 ldi r24, 0x00 ; 0
464a: 28 96 adiw r28, 0x08 ; 8
464c: cd bf out 0x3d, r28 ; 61
464e: de bf out 0x3e, r29 ; 62
4650: df 91 pop r29
4652: cf 91 pop r28
4654: 08 95 ret
4656: 1f 93 push r17
4658: cf 93 push r28
465a: df 93 push r29
465c: cd b7 in r28, 0x3d ; 61
465e: de b7 in r29, 0x3e ; 62
4660: 2d 97 sbiw r28, 0x0d ; 13
4662: cd bf out 0x3d, r28 ; 61
4664: de bf out 0x3e, r29 ; 62
4666: 8c 87 std Y+12, r24 ; 0x0c
4668: 9d 87 std Y+13, r25 ; 0x0d
466a: 1a 82 std Y+2, r1 ; 0x02
466c: 19 82 std Y+1, r1 ; 0x01
466e: 63 c0 rjmp .+198 ; 0x4736
4670: 89 81 ldd r24, Y+1 ; 0x01
4672: 88 2f mov r24, r24
4674: 90 e0 ldi r25, 0x00 ; 0
4676: 88 0f add r24, r24
4678: 99 1f adc r25, r25
467a: 86 59 subi r24, 0x96 ; 150
467c: 9c 4f sbci r25, 0xFC ; 252
467e: 8b 83 std Y+3, r24 ; 0x03
4680: 9c 83 std Y+4, r25 ; 0x04
4682: 8b 81 ldd r24, Y+3 ; 0x03
4684: 9c 81 ldd r25, Y+4 ; 0x04
4686: fc 01 movw r30, r24
4688: 84 91 lpm r24, Z
468a: 8d 83 std Y+5, r24 ; 0x05
468c: 8d 81 ldd r24, Y+5 ; 0x05
468e: 8e 83 std Y+6, r24 ; 0x06
4690: 89 81 ldd r24, Y+1 ; 0x01
4692: 88 2f mov r24, r24
4694: 90 e0 ldi r25, 0x00 ; 0
4696: 88 0f add r24, r24
4698: 99 1f adc r25, r25
469a: 01 96 adiw r24, 0x01 ; 1
469c: 86 59 subi r24, 0x96 ; 150
469e: 9c 4f sbci r25, 0xFC ; 252
46a0: 8f 83 std Y+7, r24 ; 0x07
46a2: 98 87 std Y+8, r25 ; 0x08
46a4: 8f 81 ldd r24, Y+7 ; 0x07
46a6: 98 85 ldd r25, Y+8 ; 0x08
46a8: fc 01 movw r30, r24
46aa: 84 91 lpm r24, Z
46ac: 89 87 std Y+9, r24 ; 0x09
46ae: 89 85 ldd r24, Y+9 ; 0x09
46b0: 8a 87 std Y+10, r24 ; 0x0a
46b2: 89 81 ldd r24, Y+1 ; 0x01
46b4: 88 2f mov r24, r24
46b6: 90 e0 ldi r25, 0x00 ; 0
46b8: 88 0f add r24, r24
46ba: 99 1f adc r25, r25
46bc: 81 59 subi r24, 0x91 ; 145
46be: 9d 4d sbci r25, 0xDD ; 221
46c0: fc 01 movw r30, r24
46c2: 80 81 ld r24, Z
46c4: 9e 81 ldd r25, Y+6 ; 0x06
46c6: 89 27 eor r24, r25
46c8: 8e 83 std Y+6, r24 ; 0x06
46ca: 89 81 ldd r24, Y+1 ; 0x01
46cc: 88 2f mov r24, r24
46ce: 90 e0 ldi r25, 0x00 ; 0
46d0: 88 0f add r24, r24
46d2: 99 1f adc r25, r25
46d4: 01 96 adiw r24, 0x01 ; 1
46d6: 81 59 subi r24, 0x91 ; 145
46d8: 9d 4d sbci r25, 0xDD ; 221
46da: fc 01 movw r30, r24
46dc: 80 81 ld r24, Z
46de: 9a 85 ldd r25, Y+10 ; 0x0a
46e0: 89 27 eor r24, r25
46e2: 8a 87 std Y+10, r24 ; 0x0a
46e4: 8e 81 ldd r24, Y+6 ; 0x06
46e6: 0e 94 57 22 call 0x44ae ; 0x44ae
46ea: 88 2f mov r24, r24
46ec: 90 e0 ldi r25, 0x00 ; 0
46ee: 82 95 swap r24
46f0: 92 95 swap r25
46f2: 90 7f andi r25, 0xF0 ; 240
46f4: 98 27 eor r25, r24
46f6: 80 7f andi r24, 0xF0 ; 240
46f8: 98 27 eor r25, r24
46fa: 18 2f mov r17, r24
46fc: 8a 85 ldd r24, Y+10 ; 0x0a
46fe: 0e 94 57 22 call 0x44ae ; 0x44ae
4702: 81 2b or r24, r17
4704: 8b 87 std Y+11, r24 ; 0x0b
4706: 89 81 ldd r24, Y+1 ; 0x01
4708: 88 2f mov r24, r24
470a: 90 e0 ldi r25, 0x00 ; 0
470c: 2c 85 ldd r18, Y+12 ; 0x0c
470e: 3d 85 ldd r19, Y+13 ; 0x0d
4710: 82 0f add r24, r18
4712: 93 1f adc r25, r19
4714: fc 01 movw r30, r24
4716: 90 81 ld r25, Z
4718: 8b 85 ldd r24, Y+11 ; 0x0b
471a: 98 27 eor r25, r24
471c: 80 91 5c 22 lds r24, 0x225C
4720: 80 95 com r24
4722: 89 2b or r24, r25
4724: 88 2f mov r24, r24
4726: 90 e0 ldi r25, 0x00 ; 0
4728: 98 2f mov r25, r24
472a: 8a 81 ldd r24, Y+2 ; 0x02
472c: 89 2b or r24, r25
472e: 8a 83 std Y+2, r24 ; 0x02
4730: 89 81 ldd r24, Y+1 ; 0x01
4732: 8f 5f subi r24, 0xFF ; 255
4734: 89 83 std Y+1, r24 ; 0x01
4736: 89 81 ldd r24, Y+1 ; 0x01
4738: 80 31 cpi r24, 0x10 ; 16
473a: 08 f4 brcc .+2 ; 0x473e
473c: 99 cf rjmp .-206 ; 0x4670
473e: 81 e0 ldi r24, 0x01 ; 1
4740: 9a 81 ldd r25, Y+2 ; 0x02
4742: 99 23 and r25, r25
4744: 09 f0 breq .+2 ; 0x4748
4746: 80 e0 ldi r24, 0x00 ; 0
4748: 2d 96 adiw r28, 0x0d ; 13
474a: cd bf out 0x3d, r28 ; 61
474c: de bf out 0x3e, r29 ; 62
474e: df 91 pop r29
4750: cf 91 pop r28
4752: 1f 91 pop r17
4754: 08 95 ret
4756: cf 93 push r28
4758: df 93 push r29
475a: 1f 92 push r1
475c: cd b7 in r28, 0x3d ; 61
475e: de b7 in r29, 0x3e ; 62
4760: 89 83 std Y+1, r24 ; 0x01
4762: 89 81 ldd r24, Y+1 ; 0x01
4764: 80 93 5d 22 sts 0x225D, r24
4768: 0f 90 pop r0
476a: df 91 pop r29
476c: cf 91 pop r28
476e: 08 95 ret
4770: cf 93 push r28
4772: df 93 push r29
4774: cd b7 in r28, 0x3d ; 61
4776: de b7 in r29, 0x3e ; 62
4778: 27 97 sbiw r28, 0x07 ; 7
477a: cd bf out 0x3d, r28 ; 61
477c: de bf out 0x3e, r29 ; 62
477e: 8e 83 std Y+6, r24 ; 0x06
4780: 9f 83 std Y+7, r25 ; 0x07
4782: 19 82 std Y+1, r1 ; 0x01
4784: 2a c0 rjmp .+84 ; 0x47da
4786: 89 81 ldd r24, Y+1 ; 0x01
4788: 88 2f mov r24, r24
478a: 90 e0 ldi r25, 0x00 ; 0
478c: 86 59 subi r24, 0x96 ; 150
478e: 9c 4f sbci r25, 0xFC ; 252
4790: 8a 83 std Y+2, r24 ; 0x02
4792: 9b 83 std Y+3, r25 ; 0x03
4794: 8a 81 ldd r24, Y+2 ; 0x02
4796: 9b 81 ldd r25, Y+3 ; 0x03
4798: fc 01 movw r30, r24
479a: 84 91 lpm r24, Z
479c: 8c 83 std Y+4, r24 ; 0x04
479e: 8c 81 ldd r24, Y+4 ; 0x04
47a0: 8d 83 std Y+5, r24 ; 0x05
47a2: 89 81 ldd r24, Y+1 ; 0x01
47a4: 88 2f mov r24, r24
47a6: 90 e0 ldi r25, 0x00 ; 0
47a8: 81 59 subi r24, 0x91 ; 145
47aa: 9d 4d sbci r25, 0xDD ; 221
47ac: fc 01 movw r30, r24
47ae: 80 81 ld r24, Z
47b0: 9d 81 ldd r25, Y+5 ; 0x05
47b2: 89 27 eor r24, r25
47b4: 8d 83 std Y+5, r24 ; 0x05
47b6: 89 81 ldd r24, Y+1 ; 0x01
47b8: 88 2f mov r24, r24
47ba: 90 e0 ldi r25, 0x00 ; 0
47bc: 2e 81 ldd r18, Y+6 ; 0x06
47be: 3f 81 ldd r19, Y+7 ; 0x07
47c0: 82 0f add r24, r18
47c2: 93 1f adc r25, r19
47c4: 20 91 5d 22 lds r18, 0x225D
47c8: 32 2f mov r19, r18
47ca: 30 95 com r19
47cc: 2d 81 ldd r18, Y+5 ; 0x05
47ce: 23 2b or r18, r19
47d0: fc 01 movw r30, r24
47d2: 20 83 st Z, r18
47d4: 89 81 ldd r24, Y+1 ; 0x01
47d6: 8f 5f subi r24, 0xFF ; 255
47d8: 89 83 std Y+1, r24 ; 0x01
47da: 89 81 ldd r24, Y+1 ; 0x01
47dc: 80 32 cpi r24, 0x20 ; 32
47de: 98 f2 brcs .-90 ; 0x4786
47e0: 27 96 adiw r28, 0x07 ; 7
47e2: cd bf out 0x3d, r28 ; 61
47e4: de bf out 0x3e, r29 ; 62
47e6: df 91 pop r29
47e8: cf 91 pop r28
47ea: 08 95 ret
47ec: ff 92 push r15
47ee: 0f 93 push r16
47f0: 1f 93 push r17
47f2: cf 93 push r28
47f4: df 93 push r29
47f6: cd b7 in r28, 0x3d ; 61
47f8: de b7 in r29, 0x3e ; 62
47fa: 2b 97 sbiw r28, 0x0b ; 11
47fc: cd bf out 0x3d, r28 ; 61
47fe: de bf out 0x3e, r29 ; 62
4800: 8a 87 std Y+10, r24 ; 0x0a
4802: 9b 87 std Y+11, r25 ; 0x0b
4804: 19 82 std Y+1, r1 ; 0x01
4806: 5c c0 rjmp .+184 ; 0x48c0
4808: 89 81 ldd r24, Y+1 ; 0x01
480a: 88 2f mov r24, r24
480c: 90 e0 ldi r25, 0x00 ; 0
480e: 88 0f add r24, r24
4810: 99 1f adc r25, r25
4812: 86 59 subi r24, 0x96 ; 150
4814: 9c 4f sbci r25, 0xFC ; 252
4816: 8a 83 std Y+2, r24 ; 0x02
4818: 9b 83 std Y+3, r25 ; 0x03
481a: 8a 81 ldd r24, Y+2 ; 0x02
481c: 9b 81 ldd r25, Y+3 ; 0x03
481e: fc 01 movw r30, r24
4820: 84 91 lpm r24, Z
4822: 8c 83 std Y+4, r24 ; 0x04
4824: 8c 81 ldd r24, Y+4 ; 0x04
4826: 8d 83 std Y+5, r24 ; 0x05
4828: 89 81 ldd r24, Y+1 ; 0x01
482a: 88 2f mov r24, r24
482c: 90 e0 ldi r25, 0x00 ; 0
482e: 88 0f add r24, r24
4830: 99 1f adc r25, r25
4832: 01 96 adiw r24, 0x01 ; 1
4834: 86 59 subi r24, 0x96 ; 150
4836: 9c 4f sbci r25, 0xFC ; 252
4838: 8e 83 std Y+6, r24 ; 0x06
483a: 9f 83 std Y+7, r25 ; 0x07
483c: 8e 81 ldd r24, Y+6 ; 0x06
483e: 9f 81 ldd r25, Y+7 ; 0x07
4840: fc 01 movw r30, r24
4842: 84 91 lpm r24, Z
4844: 88 87 std Y+8, r24 ; 0x08
4846: 88 85 ldd r24, Y+8 ; 0x08
4848: 89 87 std Y+9, r24 ; 0x09
484a: 89 81 ldd r24, Y+1 ; 0x01
484c: 88 2f mov r24, r24
484e: 90 e0 ldi r25, 0x00 ; 0
4850: 88 0f add r24, r24
4852: 99 1f adc r25, r25
4854: 81 59 subi r24, 0x91 ; 145
4856: 9d 4d sbci r25, 0xDD ; 221
4858: fc 01 movw r30, r24
485a: 80 81 ld r24, Z
485c: 9d 81 ldd r25, Y+5 ; 0x05
485e: 89 27 eor r24, r25
4860: 8d 83 std Y+5, r24 ; 0x05
4862: 89 81 ldd r24, Y+1 ; 0x01
4864: 88 2f mov r24, r24
4866: 90 e0 ldi r25, 0x00 ; 0
4868: 88 0f add r24, r24
486a: 99 1f adc r25, r25
486c: 01 96 adiw r24, 0x01 ; 1
486e: 81 59 subi r24, 0x91 ; 145
4870: 9d 4d sbci r25, 0xDD ; 221
4872: fc 01 movw r30, r24
4874: 80 81 ld r24, Z
4876: 99 85 ldd r25, Y+9 ; 0x09
4878: 89 27 eor r24, r25
487a: 89 87 std Y+9, r24 ; 0x09
487c: 89 81 ldd r24, Y+1 ; 0x01
487e: 88 2f mov r24, r24
4880: 90 e0 ldi r25, 0x00 ; 0
4882: 2a 85 ldd r18, Y+10 ; 0x0a
4884: 3b 85 ldd r19, Y+11 ; 0x0b
4886: 89 01 movw r16, r18
4888: 08 0f add r16, r24
488a: 19 1f adc r17, r25
488c: 8d 81 ldd r24, Y+5 ; 0x05
488e: 0e 94 57 22 call 0x44ae ; 0x44ae
4892: 88 2f mov r24, r24
4894: 90 e0 ldi r25, 0x00 ; 0
4896: 82 95 swap r24
4898: 92 95 swap r25
489a: 90 7f andi r25, 0xF0 ; 240
489c: 98 27 eor r25, r24
489e: 80 7f andi r24, 0xF0 ; 240
48a0: 98 27 eor r25, r24
48a2: f8 2e mov r15, r24
48a4: 89 85 ldd r24, Y+9 ; 0x09
48a6: 0e 94 57 22 call 0x44ae ; 0x44ae
48aa: 9f 2d mov r25, r15
48ac: 98 2b or r25, r24
48ae: 80 91 5d 22 lds r24, 0x225D
48b2: 80 95 com r24
48b4: 89 2b or r24, r25
48b6: f8 01 movw r30, r16
48b8: 80 83 st Z, r24
48ba: 89 81 ldd r24, Y+1 ; 0x01
48bc: 8f 5f subi r24, 0xFF ; 255
48be: 89 83 std Y+1, r24 ; 0x01
48c0: 89 81 ldd r24, Y+1 ; 0x01
48c2: 80 31 cpi r24, 0x10 ; 16
48c4: 08 f4 brcc .+2 ; 0x48c8
48c6: a0 cf rjmp .-192 ; 0x4808
48c8: 2b 96 adiw r28, 0x0b ; 11
48ca: cd bf out 0x3d, r28 ; 61
48cc: de bf out 0x3e, r29 ; 62
48ce: df 91 pop r29
48d0: cf 91 pop r28
48d2: 1f 91 pop r17
48d4: 0f 91 pop r16
48d6: ff 90 pop r15
48d8: 08 95 ret
48da: cf 93 push r28
48dc: df 93 push r29
48de: 1f 92 push r1
48e0: cd b7 in r28, 0x3d ; 61
48e2: de b7 in r29, 0x3e ; 62
48e4: 89 83 std Y+1, r24 ; 0x01
48e6: 89 81 ldd r24, Y+1 ; 0x01
48e8: 80 93 5e 22 sts 0x225E, r24
48ec: 0f 90 pop r0
48ee: df 91 pop r29
48f0: cf 91 pop r28
48f2: 08 95 ret
48f4: cf 93 push r28
48f6: df 93 push r29
48f8: cd b7 in r28, 0x3d ; 61
48fa: de b7 in r29, 0x3e ; 62
48fc: 27 97 sbiw r28, 0x07 ; 7
48fe: cd bf out 0x3d, r28 ; 61
4900: de bf out 0x3e, r29 ; 62
4902: 8e 83 std Y+6, r24 ; 0x06
4904: 9f 83 std Y+7, r25 ; 0x07
4906: 19 82 std Y+1, r1 ; 0x01
4908: 25 c0 rjmp .+74 ; 0x4954
490a: 89 81 ldd r24, Y+1 ; 0x01
490c: 88 2f mov r24, r24
490e: 90 e0 ldi r25, 0x00 ; 0
4910: 86 59 subi r24, 0x96 ; 150
4912: 9c 4f sbci r25, 0xFC ; 252
4914: 8a 83 std Y+2, r24 ; 0x02
4916: 9b 83 std Y+3, r25 ; 0x03
4918: 8a 81 ldd r24, Y+2 ; 0x02
491a: 9b 81 ldd r25, Y+3 ; 0x03
491c: fc 01 movw r30, r24
491e: 84 91 lpm r24, Z
4920: 8c 83 std Y+4, r24 ; 0x04
4922: 8c 81 ldd r24, Y+4 ; 0x04
4924: 8d 83 std Y+5, r24 ; 0x05
4926: 89 81 ldd r24, Y+1 ; 0x01
4928: 88 2f mov r24, r24
492a: 90 e0 ldi r25, 0x00 ; 0
492c: 81 59 subi r24, 0x91 ; 145
492e: 9d 4d sbci r25, 0xDD ; 221
4930: fc 01 movw r30, r24
4932: 80 81 ld r24, Z
4934: 9d 81 ldd r25, Y+5 ; 0x05
4936: 89 27 eor r24, r25
4938: 8d 83 std Y+5, r24 ; 0x05
493a: 80 91 5e 22 lds r24, 0x225E
493e: 98 2f mov r25, r24
4940: 90 95 com r25
4942: 8d 81 ldd r24, Y+5 ; 0x05
4944: 89 2b or r24, r25
4946: 2e 81 ldd r18, Y+6 ; 0x06
4948: 3f 81 ldd r19, Y+7 ; 0x07
494a: f9 01 movw r30, r18
494c: 19 95 eicall
494e: 89 81 ldd r24, Y+1 ; 0x01
4950: 8f 5f subi r24, 0xFF ; 255
4952: 89 83 std Y+1, r24 ; 0x01
4954: 89 81 ldd r24, Y+1 ; 0x01
4956: 80 32 cpi r24, 0x20 ; 32
4958: c0 f2 brcs .-80 ; 0x490a
495a: 27 96 adiw r28, 0x07 ; 7
495c: cd bf out 0x3d, r28 ; 61
495e: de bf out 0x3e, r29 ; 62
4960: df 91 pop r29
4962: cf 91 pop r28
4964: 08 95 ret
4966: db 01 movw r26, r22
4968: 8f 93 push r24
496a: 9f 93 push r25
496c: 0e 94 25 25 call 0x4a4a ; 0x4a4a
4970: bf 91 pop r27
4972: af 91 pop r26
4974: a2 9f mul r26, r18
4976: 80 0d add r24, r0
4978: 91 1d adc r25, r1
497a: a3 9f mul r26, r19
497c: 90 0d add r25, r0
497e: b2 9f mul r27, r18
4980: 90 0d add r25, r0
4982: 11 24 eor r1, r1
4984: 08 95 ret
4986: aa 1b sub r26, r26
4988: bb 1b sub r27, r27
498a: 51 e1 ldi r21, 0x11 ; 17
498c: 07 c0 rjmp .+14 ; 0x499c
498e: aa 1f adc r26, r26
4990: bb 1f adc r27, r27
4992: a6 17 cp r26, r22
4994: b7 07 cpc r27, r23
4996: 10 f0 brcs .+4 ; 0x499c
4998: a6 1b sub r26, r22
499a: b7 0b sbc r27, r23
499c: 88 1f adc r24, r24
499e: 99 1f adc r25, r25
49a0: 5a 95 dec r21
49a2: a9 f7 brne .-22 ; 0x498e
49a4: 80 95 com r24
49a6: 90 95 com r25
49a8: bc 01 movw r22, r24
49aa: cd 01 movw r24, r26
49ac: 08 95 ret
49ae: 97 fb bst r25, 7
49b0: 07 2e mov r0, r23
49b2: 16 f4 brtc .+4 ; 0x49b8
49b4: 00 94 com r0
49b6: 07 d0 rcall .+14 ; 0x49c6
49b8: 77 fd sbrc r23, 7
49ba: 09 d0 rcall .+18 ; 0x49ce
49bc: 0e 94 c3 24 call 0x4986 ; 0x4986
49c0: 07 fc sbrc r0, 7
49c2: 05 d0 rcall .+10 ; 0x49ce
49c4: 3e f4 brtc .+14 ; 0x49d4
49c6: 90 95 com r25
49c8: 81 95 neg r24
49ca: 9f 4f sbci r25, 0xFF ; 255
49cc: 08 95 ret
49ce: 70 95 com r23
49d0: 61 95 neg r22
49d2: 7f 4f sbci r23, 0xFF ; 255
49d4: 08 95 ret
49d6: a1 e2 ldi r26, 0x21 ; 33
49d8: 1a 2e mov r1, r26
49da: aa 1b sub r26, r26
49dc: bb 1b sub r27, r27
49de: fd 01 movw r30, r26
49e0: 0d c0 rjmp .+26 ; 0x49fc
49e2: aa 1f adc r26, r26
49e4: bb 1f adc r27, r27
49e6: ee 1f adc r30, r30
49e8: ff 1f adc r31, r31
49ea: a2 17 cp r26, r18
49ec: b3 07 cpc r27, r19
49ee: e4 07 cpc r30, r20
49f0: f5 07 cpc r31, r21
49f2: 20 f0 brcs .+8 ; 0x49fc
49f4: a2 1b sub r26, r18
49f6: b3 0b sbc r27, r19
49f8: e4 0b sbc r30, r20
49fa: f5 0b sbc r31, r21
49fc: 66 1f adc r22, r22
49fe: 77 1f adc r23, r23
4a00: 88 1f adc r24, r24
4a02: 99 1f adc r25, r25
4a04: 1a 94 dec r1
4a06: 69 f7 brne .-38 ; 0x49e2
4a08: 60 95 com r22
4a0a: 70 95 com r23
4a0c: 80 95 com r24
4a0e: 90 95 com r25
4a10: 9b 01 movw r18, r22
4a12: ac 01 movw r20, r24
4a14: bd 01 movw r22, r26
4a16: cf 01 movw r24, r30
4a18: 08 95 ret
4a1a: ee 0f add r30, r30
4a1c: ff 1f adc r31, r31
4a1e: 88 1f adc r24, r24
4a20: 8b bf out 0x3b, r24 ; 59
4a22: 07 90 elpm r0, Z+
4a24: f6 91 elpm r31, Z
4a26: e0 2d mov r30, r0
4a28: 1b be out 0x3b, r1 ; 59
4a2a: 19 94 eijmp
4a2c: a2 9f mul r26, r18
4a2e: b0 01 movw r22, r0
4a30: b3 9f mul r27, r19
4a32: c0 01 movw r24, r0
4a34: a3 9f mul r26, r19
4a36: 70 0d add r23, r0
4a38: 81 1d adc r24, r1
4a3a: 11 24 eor r1, r1
4a3c: 91 1d adc r25, r1
4a3e: b2 9f mul r27, r18
4a40: 70 0d add r23, r0
4a42: 81 1d adc r24, r1
4a44: 11 24 eor r1, r1
4a46: 91 1d adc r25, r1
4a48: 08 95 ret
4a4a: 0e 94 16 25 call 0x4a2c ; 0x4a2c
4a4e: a5 9f mul r26, r21
4a50: 90 0d add r25, r0
4a52: b4 9f mul r27, r20
4a54: 90 0d add r25, r0
4a56: a4 9f mul r26, r20
4a58: 80 0d add r24, r0
4a5a: 91 1d adc r25, r1
4a5c: 11 24 eor r1, r1
4a5e: 08 95 ret
4a60: 0f 93 push r16
4a62: 08 30 cpi r16, 0x08 ; 8
4a64: 90 f0 brcs .+36 ; 0x4a8a
4a66: 98 2f mov r25, r24
4a68: 87 2f mov r24, r23
4a6a: 76 2f mov r23, r22
4a6c: 65 2f mov r22, r21
4a6e: 54 2f mov r21, r20
4a70: 43 2f mov r20, r19
4a72: 32 2f mov r19, r18
4a74: 22 27 eor r18, r18
4a76: 08 50 subi r16, 0x08 ; 8
4a78: f4 cf rjmp .-24 ; 0x4a62
4a7a: 22 0f add r18, r18
4a7c: 33 1f adc r19, r19
4a7e: 44 1f adc r20, r20
4a80: 55 1f adc r21, r21
4a82: 66 1f adc r22, r22
4a84: 77 1f adc r23, r23
4a86: 88 1f adc r24, r24
4a88: 99 1f adc r25, r25
4a8a: 0a 95 dec r16
4a8c: b2 f7 brpl .-20 ; 0x4a7a
4a8e: 0f 91 pop r16
4a90: 08 95 ret
4a92: 97 fb bst r25, 7
4a94: 10 f8 bld r1, 0
4a96: 16 94 lsr r1
4a98: 00 08 sbc r0, r0
4a9a: 0f 93 push r16
4a9c: 08 30 cpi r16, 0x08 ; 8
4a9e: 98 f0 brcs .+38 ; 0x4ac6
4aa0: 08 50 subi r16, 0x08 ; 8
4aa2: 23 2f mov r18, r19
4aa4: 34 2f mov r19, r20
4aa6: 45 2f mov r20, r21
4aa8: 56 2f mov r21, r22
4aaa: 67 2f mov r22, r23
4aac: 78 2f mov r23, r24
4aae: 89 2f mov r24, r25
4ab0: 90 2d mov r25, r0
4ab2: f4 cf rjmp .-24 ; 0x4a9c
4ab4: 05 94 asr r0
4ab6: 97 95 ror r25
4ab8: 87 95 ror r24
4aba: 77 95 ror r23
4abc: 67 95 ror r22
4abe: 57 95 ror r21
4ac0: 47 95 ror r20
4ac2: 37 95 ror r19
4ac4: 27 95 ror r18
4ac6: 0a 95 dec r16
4ac8: aa f7 brpl .-22 ; 0x4ab4
4aca: 0f 91 pop r16
4acc: 08 95 ret
4ace: 2a 0d add r18, r10
4ad0: 3b 1d adc r19, r11
4ad2: 4c 1d adc r20, r12
4ad4: 5d 1d adc r21, r13
4ad6: 6e 1d adc r22, r14
4ad8: 7f 1d adc r23, r15
4ada: 80 1f adc r24, r16
4adc: 91 1f adc r25, r17
4ade: 08 95 ret
4ae0: cf 93 push r28
4ae2: df 93 push r29
4ae4: 82 30 cpi r24, 0x02 ; 2
4ae6: 91 05 cpc r25, r1
4ae8: 10 f4 brcc .+4 ; 0x4aee
4aea: 82 e0 ldi r24, 0x02 ; 2
4aec: 90 e0 ldi r25, 0x00 ; 0
4aee: e0 91 d5 22 lds r30, 0x22D5
4af2: f0 91 d6 22 lds r31, 0x22D6
4af6: 20 e0 ldi r18, 0x00 ; 0
4af8: 30 e0 ldi r19, 0x00 ; 0
4afa: c0 e0 ldi r28, 0x00 ; 0
4afc: d0 e0 ldi r29, 0x00 ; 0
4afe: 30 97 sbiw r30, 0x00 ; 0
4b00: 11 f1 breq .+68 ; 0x4b46
4b02: 40 81 ld r20, Z
4b04: 51 81 ldd r21, Z+1 ; 0x01
4b06: 48 17 cp r20, r24
4b08: 59 07 cpc r21, r25
4b0a: c0 f0 brcs .+48 ; 0x4b3c
4b0c: 48 17 cp r20, r24
4b0e: 59 07 cpc r21, r25
4b10: 61 f4 brne .+24 ; 0x4b2a
4b12: 82 81 ldd r24, Z+2 ; 0x02
4b14: 93 81 ldd r25, Z+3 ; 0x03
4b16: 20 97 sbiw r28, 0x00 ; 0
4b18: 19 f0 breq .+6 ; 0x4b20
4b1a: 8a 83 std Y+2, r24 ; 0x02
4b1c: 9b 83 std Y+3, r25 ; 0x03
4b1e: 2b c0 rjmp .+86 ; 0x4b76
4b20: 80 93 d5 22 sts 0x22D5, r24
4b24: 90 93 d6 22 sts 0x22D6, r25
4b28: 26 c0 rjmp .+76 ; 0x4b76
4b2a: 21 15 cp r18, r1
4b2c: 31 05 cpc r19, r1
4b2e: 19 f0 breq .+6 ; 0x4b36
4b30: 42 17 cp r20, r18
4b32: 53 07 cpc r21, r19
4b34: 18 f4 brcc .+6 ; 0x4b3c
4b36: 9a 01 movw r18, r20
4b38: be 01 movw r22, r28
4b3a: df 01 movw r26, r30
4b3c: ef 01 movw r28, r30
4b3e: 02 80 ldd r0, Z+2 ; 0x02
4b40: f3 81 ldd r31, Z+3 ; 0x03
4b42: e0 2d mov r30, r0
4b44: dc cf rjmp .-72 ; 0x4afe
4b46: 21 15 cp r18, r1
4b48: 31 05 cpc r19, r1
4b4a: 09 f1 breq .+66 ; 0x4b8e
4b4c: 28 1b sub r18, r24
4b4e: 39 0b sbc r19, r25
4b50: 24 30 cpi r18, 0x04 ; 4
4b52: 31 05 cpc r19, r1
4b54: 90 f4 brcc .+36 ; 0x4b7a
4b56: 12 96 adiw r26, 0x02 ; 2
4b58: 8d 91 ld r24, X+
4b5a: 9c 91 ld r25, X
4b5c: 13 97 sbiw r26, 0x03 ; 3
4b5e: 61 15 cp r22, r1
4b60: 71 05 cpc r23, r1
4b62: 21 f0 breq .+8 ; 0x4b6c
4b64: fb 01 movw r30, r22
4b66: 82 83 std Z+2, r24 ; 0x02
4b68: 93 83 std Z+3, r25 ; 0x03
4b6a: 04 c0 rjmp .+8 ; 0x4b74
4b6c: 80 93 d5 22 sts 0x22D5, r24
4b70: 90 93 d6 22 sts 0x22D6, r25
4b74: fd 01 movw r30, r26
4b76: 32 96 adiw r30, 0x02 ; 2
4b78: 44 c0 rjmp .+136 ; 0x4c02
4b7a: fd 01 movw r30, r26
4b7c: e2 0f add r30, r18
4b7e: f3 1f adc r31, r19
4b80: 81 93 st Z+, r24
4b82: 91 93 st Z+, r25
4b84: 22 50 subi r18, 0x02 ; 2
4b86: 31 09 sbc r19, r1
4b88: 2d 93 st X+, r18
4b8a: 3c 93 st X, r19
4b8c: 3a c0 rjmp .+116 ; 0x4c02
4b8e: 20 91 d3 22 lds r18, 0x22D3
4b92: 30 91 d4 22 lds r19, 0x22D4
4b96: 23 2b or r18, r19
4b98: 41 f4 brne .+16 ; 0x4baa
4b9a: 20 91 1b 20 lds r18, 0x201B
4b9e: 30 91 1c 20 lds r19, 0x201C
4ba2: 20 93 d3 22 sts 0x22D3, r18
4ba6: 30 93 d4 22 sts 0x22D4, r19
4baa: 20 91 19 20 lds r18, 0x2019
4bae: 30 91 1a 20 lds r19, 0x201A
4bb2: 21 15 cp r18, r1
4bb4: 31 05 cpc r19, r1
4bb6: 41 f4 brne .+16 ; 0x4bc8
4bb8: 2d b7 in r18, 0x3d ; 61
4bba: 3e b7 in r19, 0x3e ; 62
4bbc: 40 91 1d 20 lds r20, 0x201D
4bc0: 50 91 1e 20 lds r21, 0x201E
4bc4: 24 1b sub r18, r20
4bc6: 35 0b sbc r19, r21
4bc8: e0 91 d3 22 lds r30, 0x22D3
4bcc: f0 91 d4 22 lds r31, 0x22D4
4bd0: e2 17 cp r30, r18
4bd2: f3 07 cpc r31, r19
4bd4: a0 f4 brcc .+40 ; 0x4bfe
4bd6: 2e 1b sub r18, r30
4bd8: 3f 0b sbc r19, r31
4bda: 28 17 cp r18, r24
4bdc: 39 07 cpc r19, r25
4bde: 78 f0 brcs .+30 ; 0x4bfe
4be0: ac 01 movw r20, r24
4be2: 4e 5f subi r20, 0xFE ; 254
4be4: 5f 4f sbci r21, 0xFF ; 255
4be6: 24 17 cp r18, r20
4be8: 35 07 cpc r19, r21
4bea: 48 f0 brcs .+18 ; 0x4bfe
4bec: 4e 0f add r20, r30
4bee: 5f 1f adc r21, r31
4bf0: 40 93 d3 22 sts 0x22D3, r20
4bf4: 50 93 d4 22 sts 0x22D4, r21
4bf8: 81 93 st Z+, r24
4bfa: 91 93 st Z+, r25
4bfc: 02 c0 rjmp .+4 ; 0x4c02
4bfe: e0 e0 ldi r30, 0x00 ; 0
4c00: f0 e0 ldi r31, 0x00 ; 0
4c02: cf 01 movw r24, r30
4c04: df 91 pop r29
4c06: cf 91 pop r28
4c08: 08 95 ret
4c0a: 0f 93 push r16
4c0c: 1f 93 push r17
4c0e: cf 93 push r28
4c10: df 93 push r29
4c12: 00 97 sbiw r24, 0x00 ; 0
4c14: 09 f4 brne .+2 ; 0x4c18
4c16: 8c c0 rjmp .+280 ; 0x4d30
4c18: fc 01 movw r30, r24
4c1a: 32 97 sbiw r30, 0x02 ; 2
4c1c: 12 82 std Z+2, r1 ; 0x02
4c1e: 13 82 std Z+3, r1 ; 0x03
4c20: 00 91 d5 22 lds r16, 0x22D5
4c24: 10 91 d6 22 lds r17, 0x22D6
4c28: 01 15 cp r16, r1
4c2a: 11 05 cpc r17, r1
4c2c: 81 f4 brne .+32 ; 0x4c4e
4c2e: 20 81 ld r18, Z
4c30: 31 81 ldd r19, Z+1 ; 0x01
4c32: 82 0f add r24, r18
4c34: 93 1f adc r25, r19
4c36: 20 91 d3 22 lds r18, 0x22D3
4c3a: 30 91 d4 22 lds r19, 0x22D4
4c3e: 28 17 cp r18, r24
4c40: 39 07 cpc r19, r25
4c42: 79 f5 brne .+94 ; 0x4ca2
4c44: e0 93 d3 22 sts 0x22D3, r30
4c48: f0 93 d4 22 sts 0x22D4, r31
4c4c: 71 c0 rjmp .+226 ; 0x4d30
4c4e: d8 01 movw r26, r16
4c50: 40 e0 ldi r20, 0x00 ; 0
4c52: 50 e0 ldi r21, 0x00 ; 0
4c54: ae 17 cp r26, r30
4c56: bf 07 cpc r27, r31
4c58: 50 f4 brcc .+20 ; 0x4c6e
4c5a: 12 96 adiw r26, 0x02 ; 2
4c5c: 2d 91 ld r18, X+
4c5e: 3c 91 ld r19, X
4c60: 13 97 sbiw r26, 0x03 ; 3
4c62: ad 01 movw r20, r26
4c64: 21 15 cp r18, r1
4c66: 31 05 cpc r19, r1
4c68: 09 f1 breq .+66 ; 0x4cac
4c6a: d9 01 movw r26, r18
4c6c: f3 cf rjmp .-26 ; 0x4c54
4c6e: 9d 01 movw r18, r26
4c70: da 01 movw r26, r20
4c72: 22 83 std Z+2, r18 ; 0x02
4c74: 33 83 std Z+3, r19 ; 0x03
4c76: 60 81 ld r22, Z
4c78: 71 81 ldd r23, Z+1 ; 0x01
4c7a: 86 0f add r24, r22
4c7c: 97 1f adc r25, r23
4c7e: 82 17 cp r24, r18
4c80: 93 07 cpc r25, r19
4c82: 69 f4 brne .+26 ; 0x4c9e
4c84: ec 01 movw r28, r24
4c86: 28 81 ld r18, Y
4c88: 39 81 ldd r19, Y+1 ; 0x01
4c8a: 26 0f add r18, r22
4c8c: 37 1f adc r19, r23
4c8e: 2e 5f subi r18, 0xFE ; 254
4c90: 3f 4f sbci r19, 0xFF ; 255
4c92: 20 83 st Z, r18
4c94: 31 83 std Z+1, r19 ; 0x01
4c96: 8a 81 ldd r24, Y+2 ; 0x02
4c98: 9b 81 ldd r25, Y+3 ; 0x03
4c9a: 82 83 std Z+2, r24 ; 0x02
4c9c: 93 83 std Z+3, r25 ; 0x03
4c9e: 45 2b or r20, r21
4ca0: 29 f4 brne .+10 ; 0x4cac
4ca2: e0 93 d5 22 sts 0x22D5, r30
4ca6: f0 93 d6 22 sts 0x22D6, r31
4caa: 42 c0 rjmp .+132 ; 0x4d30
4cac: 12 96 adiw r26, 0x02 ; 2
4cae: ed 93 st X+, r30
4cb0: fc 93 st X, r31
4cb2: 13 97 sbiw r26, 0x03 ; 3
4cb4: ed 01 movw r28, r26
4cb6: 49 91 ld r20, Y+
4cb8: 59 91 ld r21, Y+
4cba: 9e 01 movw r18, r28
4cbc: 24 0f add r18, r20
4cbe: 35 1f adc r19, r21
4cc0: e2 17 cp r30, r18
4cc2: f3 07 cpc r31, r19
4cc4: 71 f4 brne .+28 ; 0x4ce2
4cc6: 80 81 ld r24, Z
4cc8: 91 81 ldd r25, Z+1 ; 0x01
4cca: 84 0f add r24, r20
4ccc: 95 1f adc r25, r21
4cce: 02 96 adiw r24, 0x02 ; 2
4cd0: 8d 93 st X+, r24
4cd2: 9c 93 st X, r25
4cd4: 11 97 sbiw r26, 0x01 ; 1
4cd6: 82 81 ldd r24, Z+2 ; 0x02
4cd8: 93 81 ldd r25, Z+3 ; 0x03
4cda: 12 96 adiw r26, 0x02 ; 2
4cdc: 8d 93 st X+, r24
4cde: 9c 93 st X, r25
4ce0: 13 97 sbiw r26, 0x03 ; 3
4ce2: e0 e0 ldi r30, 0x00 ; 0
4ce4: f0 e0 ldi r31, 0x00 ; 0
4ce6: d8 01 movw r26, r16
4ce8: 12 96 adiw r26, 0x02 ; 2
4cea: 8d 91 ld r24, X+
4cec: 9c 91 ld r25, X
4cee: 13 97 sbiw r26, 0x03 ; 3
4cf0: 00 97 sbiw r24, 0x00 ; 0
4cf2: 19 f0 breq .+6 ; 0x4cfa
4cf4: f8 01 movw r30, r16
4cf6: 8c 01 movw r16, r24
4cf8: f6 cf rjmp .-20 ; 0x4ce6
4cfa: 8d 91 ld r24, X+
4cfc: 9c 91 ld r25, X
4cfe: 98 01 movw r18, r16
4d00: 2e 5f subi r18, 0xFE ; 254
4d02: 3f 4f sbci r19, 0xFF ; 255
4d04: 82 0f add r24, r18
4d06: 93 1f adc r25, r19
4d08: 20 91 d3 22 lds r18, 0x22D3
4d0c: 30 91 d4 22 lds r19, 0x22D4
4d10: 28 17 cp r18, r24
4d12: 39 07 cpc r19, r25
4d14: 69 f4 brne .+26 ; 0x4d30
4d16: 30 97 sbiw r30, 0x00 ; 0
4d18: 29 f4 brne .+10 ; 0x4d24
4d1a: 10 92 d5 22 sts 0x22D5, r1
4d1e: 10 92 d6 22 sts 0x22D6, r1
4d22: 02 c0 rjmp .+4 ; 0x4d28
4d24: 12 82 std Z+2, r1 ; 0x02
4d26: 13 82 std Z+3, r1 ; 0x03
4d28: 00 93 d3 22 sts 0x22D3, r16
4d2c: 10 93 d4 22 sts 0x22D4, r17
4d30: df 91 pop r29
4d32: cf 91 pop r28
4d34: 1f 91 pop r17
4d36: 0f 91 pop r16
4d38: 08 95 ret
4d3a: 2f 92 push r2
4d3c: 3f 92 push r3
4d3e: 4f 92 push r4
4d40: 5f 92 push r5
4d42: 6f 92 push r6
4d44: 7f 92 push r7
4d46: 8f 92 push r8
4d48: 9f 92 push r9
4d4a: af 92 push r10
4d4c: bf 92 push r11
4d4e: cf 92 push r12
4d50: df 92 push r13
4d52: ef 92 push r14
4d54: ff 92 push r15
4d56: 0f 93 push r16
4d58: 1f 93 push r17
4d5a: cf 93 push r28
4d5c: df 93 push r29
4d5e: 5c 01 movw r10, r24
4d60: 6b 01 movw r12, r22
4d62: 7a 01 movw r14, r20
4d64: 61 15 cp r22, r1
4d66: 71 05 cpc r23, r1
4d68: 19 f0 breq .+6 ; 0x4d70
4d6a: fb 01 movw r30, r22
4d6c: 80 83 st Z, r24
4d6e: 91 83 std Z+1, r25 ; 0x01
4d70: e1 14 cp r14, r1
4d72: f1 04 cpc r15, r1
4d74: 29 f0 breq .+10 ; 0x4d80
4d76: c7 01 movw r24, r14
4d78: 02 97 sbiw r24, 0x02 ; 2
4d7a: 83 97 sbiw r24, 0x23 ; 35
4d7c: 08 f0 brcs .+2 ; 0x4d80
4d7e: f1 c0 rjmp .+482 ; 0x4f62
4d80: e5 01 movw r28, r10
4d82: 21 96 adiw r28, 0x01 ; 1
4d84: f5 01 movw r30, r10
4d86: 10 81 ld r17, Z
4d88: 81 2f mov r24, r17
4d8a: 90 e0 ldi r25, 0x00 ; 0
4d8c: 0e 94 cd 27 call 0x4f9a ; 0x4f9a
4d90: 89 2b or r24, r25
4d92: 11 f0 breq .+4 ; 0x4d98
4d94: 5e 01 movw r10, r28
4d96: f4 cf rjmp .-24 ; 0x4d80
4d98: 1d 32 cpi r17, 0x2D ; 45
4d9a: 29 f4 brne .+10 ; 0x4da6
4d9c: 21 96 adiw r28, 0x01 ; 1
4d9e: f5 01 movw r30, r10
4da0: 11 81 ldd r17, Z+1 ; 0x01
4da2: 01 e0 ldi r16, 0x01 ; 1
4da4: 07 c0 rjmp .+14 ; 0x4db4
4da6: 1b 32 cpi r17, 0x2B ; 43
4da8: 21 f4 brne .+8 ; 0x4db2
4daa: e5 01 movw r28, r10
4dac: 22 96 adiw r28, 0x02 ; 2
4dae: f5 01 movw r30, r10
4db0: 11 81 ldd r17, Z+1 ; 0x01
4db2: 00 e0 ldi r16, 0x00 ; 0
4db4: e1 14 cp r14, r1
4db6: f1 04 cpc r15, r1
4db8: 59 f1 breq .+86 ; 0x4e10
4dba: f0 e1 ldi r31, 0x10 ; 16
4dbc: ef 16 cp r14, r31
4dbe: f1 04 cpc r15, r1
4dc0: 61 f4 brne .+24 ; 0x4dda
4dc2: 10 33 cpi r17, 0x30 ; 48
4dc4: e1 f4 brne .+56 ; 0x4dfe
4dc6: 88 81 ld r24, Y
4dc8: 8f 7d andi r24, 0xDF ; 223
4dca: 88 35 cpi r24, 0x58 ; 88
4dcc: 69 f5 brne .+90 ; 0x4e28
4dce: 19 81 ldd r17, Y+1 ; 0x01
4dd0: 22 96 adiw r28, 0x02 ; 2
4dd2: 02 60 ori r16, 0x02 ; 2
4dd4: 70 e1 ldi r23, 0x10 ; 16
4dd6: e7 2e mov r14, r23
4dd8: f1 2c mov r15, r1
4dda: 88 e0 ldi r24, 0x08 ; 8
4ddc: e8 16 cp r14, r24
4dde: f1 04 cpc r15, r1
4de0: 39 f1 breq .+78 ; 0x4e30
4de2: 2c f4 brge .+10 ; 0x4dee
4de4: f2 e0 ldi r31, 0x02 ; 2
4de6: ef 16 cp r14, r31
4de8: f1 04 cpc r15, r1
4dea: c9 f1 breq .+114 ; 0x4e5e
4dec: 2a c0 rjmp .+84 ; 0x4e42
4dee: 8a e0 ldi r24, 0x0A ; 10
4df0: e8 16 cp r14, r24
4df2: f1 04 cpc r15, r1
4df4: 79 f0 breq .+30 ; 0x4e14
4df6: e0 e1 ldi r30, 0x10 ; 16
4df8: ee 16 cp r14, r30
4dfa: f1 04 cpc r15, r1
4dfc: 11 f5 brne .+68 ; 0x4e42
4dfe: 50 e1 ldi r21, 0x10 ; 16
4e00: e5 2e mov r14, r21
4e02: f1 2c mov r15, r1
4e04: 81 2c mov r8, r1
4e06: 91 2c mov r9, r1
4e08: a1 2c mov r10, r1
4e0a: 68 e0 ldi r22, 0x08 ; 8
4e0c: b6 2e mov r11, r22
4e0e: 2c c0 rjmp .+88 ; 0x4e68
4e10: 10 33 cpi r17, 0x30 ; 48
4e12: c9 f2 breq .-78 ; 0x4dc6
4e14: 3a e0 ldi r19, 0x0A ; 10
4e16: e3 2e mov r14, r19
4e18: f1 2c mov r15, r1
4e1a: 4c ec ldi r20, 0xCC ; 204
4e1c: 84 2e mov r8, r20
4e1e: 98 2c mov r9, r8
4e20: a8 2c mov r10, r8
4e22: 4c e0 ldi r20, 0x0C ; 12
4e24: b4 2e mov r11, r20
4e26: 20 c0 rjmp .+64 ; 0x4e68
4e28: 10 e3 ldi r17, 0x30 ; 48
4e2a: e1 14 cp r14, r1
4e2c: f1 04 cpc r15, r1
4e2e: a9 f6 brne .-86 ; 0x4dda
4e30: 98 e0 ldi r25, 0x08 ; 8
4e32: e9 2e mov r14, r25
4e34: f1 2c mov r15, r1
4e36: 81 2c mov r8, r1
4e38: 91 2c mov r9, r1
4e3a: a1 2c mov r10, r1
4e3c: 20 e1 ldi r18, 0x10 ; 16
4e3e: b2 2e mov r11, r18
4e40: 13 c0 rjmp .+38 ; 0x4e68
4e42: 60 e0 ldi r22, 0x00 ; 0
4e44: 70 e0 ldi r23, 0x00 ; 0
4e46: 80 e0 ldi r24, 0x00 ; 0
4e48: 90 e8 ldi r25, 0x80 ; 128
4e4a: 97 01 movw r18, r14
4e4c: 0f 2c mov r0, r15
4e4e: 00 0c add r0, r0
4e50: 44 0b sbc r20, r20
4e52: 55 0b sbc r21, r21
4e54: 0e 94 eb 24 call 0x49d6 ; 0x49d6
4e58: 49 01 movw r8, r18
4e5a: 5a 01 movw r10, r20
4e5c: 05 c0 rjmp .+10 ; 0x4e68
4e5e: 81 2c mov r8, r1
4e60: 91 2c mov r9, r1
4e62: a1 2c mov r10, r1
4e64: 80 e4 ldi r24, 0x40 ; 64
4e66: b8 2e mov r11, r24
4e68: 60 e0 ldi r22, 0x00 ; 0
4e6a: 20 e0 ldi r18, 0x00 ; 0
4e6c: 30 e0 ldi r19, 0x00 ; 0
4e6e: a9 01 movw r20, r18
4e70: 27 01 movw r4, r14
4e72: 0f 2c mov r0, r15
4e74: 00 0c add r0, r0
4e76: 66 08 sbc r6, r6
4e78: 77 08 sbc r7, r7
4e7a: 1e 01 movw r2, r28
4e7c: e0 ed ldi r30, 0xD0 ; 208
4e7e: e1 0f add r30, r17
4e80: ea 30 cpi r30, 0x0A ; 10
4e82: 60 f0 brcs .+24 ; 0x4e9c
4e84: 8f eb ldi r24, 0xBF ; 191
4e86: 81 0f add r24, r17
4e88: 8a 31 cpi r24, 0x1A ; 26
4e8a: 10 f4 brcc .+4 ; 0x4e90
4e8c: e9 ec ldi r30, 0xC9 ; 201
4e8e: 05 c0 rjmp .+10 ; 0x4e9a
4e90: 8f e9 ldi r24, 0x9F ; 159
4e92: 81 0f add r24, r17
4e94: 8a 31 cpi r24, 0x1A ; 26
4e96: 28 f5 brcc .+74 ; 0x4ee2
4e98: e9 ea ldi r30, 0xA9 ; 169
4e9a: e1 0f add r30, r17
4e9c: 8e 2f mov r24, r30
4e9e: 90 e0 ldi r25, 0x00 ; 0
4ea0: 8e 15 cp r24, r14
4ea2: 9f 05 cpc r25, r15
4ea4: f4 f4 brge .+60 ; 0x4ee2
4ea6: 67 fd sbrc r22, 7
4ea8: 18 c0 rjmp .+48 ; 0x4eda
4eaa: 82 16 cp r8, r18
4eac: 93 06 cpc r9, r19
4eae: a4 06 cpc r10, r20
4eb0: b5 06 cpc r11, r21
4eb2: 90 f0 brcs .+36 ; 0x4ed8
4eb4: c3 01 movw r24, r6
4eb6: b2 01 movw r22, r4
4eb8: 0e 94 b3 24 call 0x4966 ; 0x4966
4ebc: 9b 01 movw r18, r22
4ebe: ac 01 movw r20, r24
4ec0: 2e 0f add r18, r30
4ec2: 31 1d adc r19, r1
4ec4: 41 1d adc r20, r1
4ec6: 51 1d adc r21, r1
4ec8: 21 30 cpi r18, 0x01 ; 1
4eca: 31 05 cpc r19, r1
4ecc: 41 05 cpc r20, r1
4ece: f0 e8 ldi r31, 0x80 ; 128
4ed0: 5f 07 cpc r21, r31
4ed2: 10 f4 brcc .+4 ; 0x4ed8
4ed4: 61 e0 ldi r22, 0x01 ; 1
4ed6: 01 c0 rjmp .+2 ; 0x4eda
4ed8: 6f ef ldi r22, 0xFF ; 255
4eda: 21 96 adiw r28, 0x01 ; 1
4edc: f1 01 movw r30, r2
4ede: 10 81 ld r17, Z
4ee0: cc cf rjmp .-104 ; 0x4e7a
4ee2: 80 2f mov r24, r16
4ee4: 81 70 andi r24, 0x01 ; 1
4ee6: c1 14 cp r12, r1
4ee8: d1 04 cpc r13, r1
4eea: 71 f0 breq .+28 ; 0x4f08
4eec: 66 23 and r22, r22
4eee: 29 f0 breq .+10 ; 0x4efa
4ef0: 21 97 sbiw r28, 0x01 ; 1
4ef2: f6 01 movw r30, r12
4ef4: c0 83 st Z, r28
4ef6: d1 83 std Z+1, r29 ; 0x01
4ef8: 07 c0 rjmp .+14 ; 0x4f08
4efa: 01 ff sbrs r16, 1
4efc: 19 c0 rjmp .+50 ; 0x4f30
4efe: 22 97 sbiw r28, 0x02 ; 2
4f00: f6 01 movw r30, r12
4f02: c0 83 st Z, r28
4f04: d1 83 std Z+1, r29 ; 0x01
4f06: 14 c0 rjmp .+40 ; 0x4f30
4f08: 67 ff sbrs r22, 7
4f0a: 12 c0 rjmp .+36 ; 0x4f30
4f0c: 81 11 cpse r24, r1
4f0e: 05 c0 rjmp .+10 ; 0x4f1a
4f10: 2f ef ldi r18, 0xFF ; 255
4f12: 3f ef ldi r19, 0xFF ; 255
4f14: 4f ef ldi r20, 0xFF ; 255
4f16: 5f e7 ldi r21, 0x7F ; 127
4f18: 04 c0 rjmp .+8 ; 0x4f22
4f1a: 20 e0 ldi r18, 0x00 ; 0
4f1c: 30 e0 ldi r19, 0x00 ; 0
4f1e: 40 e0 ldi r20, 0x00 ; 0
4f20: 50 e8 ldi r21, 0x80 ; 128
4f22: 82 e2 ldi r24, 0x22 ; 34
4f24: 90 e0 ldi r25, 0x00 ; 0
4f26: 80 93 d7 22 sts 0x22D7, r24
4f2a: 90 93 d8 22 sts 0x22D8, r25
4f2e: 16 c0 rjmp .+44 ; 0x4f5c
4f30: 88 23 and r24, r24
4f32: 41 f0 breq .+16 ; 0x4f44
4f34: 50 95 com r21
4f36: 40 95 com r20
4f38: 30 95 com r19
4f3a: 21 95 neg r18
4f3c: 3f 4f sbci r19, 0xFF ; 255
4f3e: 4f 4f sbci r20, 0xFF ; 255
4f40: 5f 4f sbci r21, 0xFF ; 255
4f42: 0c c0 rjmp .+24 ; 0x4f5c
4f44: 57 ff sbrs r21, 7
4f46: 0a c0 rjmp .+20 ; 0x4f5c
4f48: 82 e2 ldi r24, 0x22 ; 34
4f4a: 90 e0 ldi r25, 0x00 ; 0
4f4c: 80 93 d7 22 sts 0x22D7, r24
4f50: 90 93 d8 22 sts 0x22D8, r25
4f54: 2f ef ldi r18, 0xFF ; 255
4f56: 3f ef ldi r19, 0xFF ; 255
4f58: 4f ef ldi r20, 0xFF ; 255
4f5a: 5f e7 ldi r21, 0x7F ; 127
4f5c: b9 01 movw r22, r18
4f5e: ca 01 movw r24, r20
4f60: 04 c0 rjmp .+8 ; 0x4f6a
4f62: 60 e0 ldi r22, 0x00 ; 0
4f64: 70 e0 ldi r23, 0x00 ; 0
4f66: 80 e0 ldi r24, 0x00 ; 0
4f68: 90 e0 ldi r25, 0x00 ; 0
4f6a: df 91 pop r29
4f6c: cf 91 pop r28
4f6e: 1f 91 pop r17
4f70: 0f 91 pop r16
4f72: ff 90 pop r15
4f74: ef 90 pop r14
4f76: df 90 pop r13
4f78: cf 90 pop r12
4f7a: bf 90 pop r11
4f7c: af 90 pop r10
4f7e: 9f 90 pop r9
4f80: 8f 90 pop r8
4f82: 7f 90 pop r7
4f84: 6f 90 pop r6
4f86: 5f 90 pop r5
4f88: 4f 90 pop r4
4f8a: 3f 90 pop r3
4f8c: 2f 90 pop r2
4f8e: 08 95 ret
4f90: 81 e0 ldi r24, 0x01 ; 1
4f92: 90 e0 ldi r25, 0x00 ; 0
4f94: f8 94 cli
4f96: 0c 94 2c 2b jmp 0x5658 ; 0x5658
4f9a: 91 11 cpse r25, r1
4f9c: 0c 94 4a 2a jmp 0x5494 ; 0x5494
4fa0: 80 32 cpi r24, 0x20 ; 32
4fa2: 19 f0 breq .+6 ; 0x4faa
4fa4: 89 50 subi r24, 0x09 ; 9
4fa6: 85 50 subi r24, 0x05 ; 5
4fa8: c8 f7 brcc .-14 ; 0x4f9c
4faa: 08 95 ret
4fac: fb 01 movw r30, r22
4fae: dc 01 movw r26, r24
4fb0: 02 c0 rjmp .+4 ; 0x4fb6
4fb2: 05 90 lpm r0, Z+
4fb4: 0d 92 st X+, r0
4fb6: 41 50 subi r20, 0x01 ; 1
4fb8: 50 40 sbci r21, 0x00 ; 0
4fba: d8 f7 brcc .-10 ; 0x4fb2
4fbc: 08 95 ret
4fbe: fb 01 movw r30, r22
4fc0: dc 01 movw r26, r24
4fc2: 04 c0 rjmp .+8 ; 0x4fcc
4fc4: 8d 91 ld r24, X+
4fc6: 01 90 ld r0, Z+
4fc8: 80 19 sub r24, r0
4fca: 21 f4 brne .+8 ; 0x4fd4
4fcc: 41 50 subi r20, 0x01 ; 1
4fce: 50 40 sbci r21, 0x00 ; 0
4fd0: c8 f7 brcc .-14 ; 0x4fc4
4fd2: 88 1b sub r24, r24
4fd4: 99 0b sbc r25, r25
4fd6: 08 95 ret
4fd8: fb 01 movw r30, r22
4fda: dc 01 movw r26, r24
4fdc: 02 c0 rjmp .+4 ; 0x4fe2
4fde: 01 90 ld r0, Z+
4fe0: 0d 92 st X+, r0
4fe2: 41 50 subi r20, 0x01 ; 1
4fe4: 50 40 sbci r21, 0x00 ; 0
4fe6: d8 f7 brcc .-10 ; 0x4fde
4fe8: 08 95 ret
4fea: 68 17 cp r22, r24
4fec: 79 07 cpc r23, r25
4fee: 68 f4 brcc .+26 ; 0x500a
4ff0: fb 01 movw r30, r22
4ff2: dc 01 movw r26, r24
4ff4: e4 0f add r30, r20
4ff6: f5 1f adc r31, r21
4ff8: a4 0f add r26, r20
4ffa: b5 1f adc r27, r21
4ffc: 02 c0 rjmp .+4 ; 0x5002
4ffe: 02 90 ld r0, -Z
5000: 0e 92 st -X, r0
5002: 41 50 subi r20, 0x01 ; 1
5004: 50 40 sbci r21, 0x00 ; 0
5006: d8 f7 brcc .-10 ; 0x4ffe
5008: 08 95 ret
500a: 0c 94 ec 27 jmp 0x4fd8 ; 0x4fd8
500e: dc 01 movw r26, r24
5010: 01 c0 rjmp .+2 ; 0x5014
5012: 6d 93 st X+, r22
5014: 41 50 subi r20, 0x01 ; 1
5016: 50 40 sbci r21, 0x00 ; 0
5018: e0 f7 brcc .-8 ; 0x5012
501a: 08 95 ret
501c: fc 01 movw r30, r24
501e: 81 91 ld r24, Z+
5020: 86 17 cp r24, r22
5022: 21 f0 breq .+8 ; 0x502c
5024: 88 23 and r24, r24
5026: d9 f7 brne .-10 ; 0x501e
5028: 99 27 eor r25, r25
502a: 08 95 ret
502c: 31 97 sbiw r30, 0x01 ; 1
502e: cf 01 movw r24, r30
5030: 08 95 ret
5032: fc 01 movw r30, r24
5034: 01 90 ld r0, Z+
5036: 00 20 and r0, r0
5038: e9 f7 brne .-6 ; 0x5034
503a: 80 95 com r24
503c: 90 95 com r25
503e: 8e 0f add r24, r30
5040: 9f 1f adc r25, r31
5042: 08 95 ret
5044: 0f 93 push r16
5046: 1f 93 push r17
5048: cf 93 push r28
504a: df 93 push r29
504c: cd b7 in r28, 0x3d ; 61
504e: de b7 in r29, 0x3e ; 62
5050: 2e 97 sbiw r28, 0x0e ; 14
5052: cd bf out 0x3d, r28 ; 61
5054: de bf out 0x3e, r29 ; 62
5056: 8c 01 movw r16, r24
5058: ca 01 movw r24, r20
505a: 46 e0 ldi r20, 0x06 ; 6
505c: 4c 83 std Y+4, r20 ; 0x04
505e: 09 83 std Y+1, r16 ; 0x01
5060: 1a 83 std Y+2, r17 ; 0x02
5062: 77 ff sbrs r23, 7
5064: 02 c0 rjmp .+4 ; 0x506a
5066: 60 e0 ldi r22, 0x00 ; 0
5068: 70 e8 ldi r23, 0x80 ; 128
506a: fb 01 movw r30, r22
506c: 31 97 sbiw r30, 0x01 ; 1
506e: ed 83 std Y+5, r30 ; 0x05
5070: fe 83 std Y+6, r31 ; 0x06
5072: a9 01 movw r20, r18
5074: bc 01 movw r22, r24
5076: ce 01 movw r24, r28
5078: 01 96 adiw r24, 0x01 ; 1
507a: 0e 94 55 28 call 0x50aa ; 0x50aa
507e: 4d 81 ldd r20, Y+5 ; 0x05
5080: 5e 81 ldd r21, Y+6 ; 0x06
5082: 57 fd sbrc r21, 7
5084: 0a c0 rjmp .+20 ; 0x509a
5086: 2f 81 ldd r18, Y+7 ; 0x07
5088: 38 85 ldd r19, Y+8 ; 0x08
508a: 42 17 cp r20, r18
508c: 53 07 cpc r21, r19
508e: 0c f4 brge .+2 ; 0x5092
5090: 9a 01 movw r18, r20
5092: f8 01 movw r30, r16
5094: e2 0f add r30, r18
5096: f3 1f adc r31, r19
5098: 10 82 st Z, r1
509a: 2e 96 adiw r28, 0x0e ; 14
509c: cd bf out 0x3d, r28 ; 61
509e: de bf out 0x3e, r29 ; 62
50a0: df 91 pop r29
50a2: cf 91 pop r28
50a4: 1f 91 pop r17
50a6: 0f 91 pop r16
50a8: 08 95 ret
50aa: 2f 92 push r2
50ac: 3f 92 push r3
50ae: 4f 92 push r4
50b0: 5f 92 push r5
50b2: 6f 92 push r6
50b4: 7f 92 push r7
50b6: 8f 92 push r8
50b8: 9f 92 push r9
50ba: af 92 push r10
50bc: bf 92 push r11
50be: cf 92 push r12
50c0: df 92 push r13
50c2: ef 92 push r14
50c4: ff 92 push r15
50c6: 0f 93 push r16
50c8: 1f 93 push r17
50ca: cf 93 push r28
50cc: df 93 push r29
50ce: cd b7 in r28, 0x3d ; 61
50d0: de b7 in r29, 0x3e ; 62
50d2: 2c 97 sbiw r28, 0x0c ; 12
50d4: cd bf out 0x3d, r28 ; 61
50d6: de bf out 0x3e, r29 ; 62
50d8: 7c 01 movw r14, r24
50da: 6b 01 movw r12, r22
50dc: 8a 01 movw r16, r20
50de: fc 01 movw r30, r24
50e0: 16 82 std Z+6, r1 ; 0x06
50e2: 17 82 std Z+7, r1 ; 0x07
50e4: 83 81 ldd r24, Z+3 ; 0x03
50e6: 81 ff sbrs r24, 1
50e8: bd c1 rjmp .+890 ; 0x5464
50ea: ce 01 movw r24, r28
50ec: 01 96 adiw r24, 0x01 ; 1
50ee: 4c 01 movw r8, r24
50f0: f7 01 movw r30, r14
50f2: 93 81 ldd r25, Z+3 ; 0x03
50f4: f6 01 movw r30, r12
50f6: 93 fd sbrc r25, 3
50f8: 85 91 lpm r24, Z+
50fa: 93 ff sbrs r25, 3
50fc: 81 91 ld r24, Z+
50fe: 6f 01 movw r12, r30
5100: 88 23 and r24, r24
5102: 09 f4 brne .+2 ; 0x5106
5104: ab c1 rjmp .+854 ; 0x545c
5106: 85 32 cpi r24, 0x25 ; 37
5108: 39 f4 brne .+14 ; 0x5118
510a: 93 fd sbrc r25, 3
510c: 85 91 lpm r24, Z+
510e: 93 ff sbrs r25, 3
5110: 81 91 ld r24, Z+
5112: 6f 01 movw r12, r30
5114: 85 32 cpi r24, 0x25 ; 37
5116: 29 f4 brne .+10 ; 0x5122
5118: b7 01 movw r22, r14
511a: 90 e0 ldi r25, 0x00 ; 0
511c: 0e 94 63 2a call 0x54c6 ; 0x54c6
5120: e7 cf rjmp .-50 ; 0x50f0
5122: 51 2c mov r5, r1
5124: 31 2c mov r3, r1
5126: 20 e0 ldi r18, 0x00 ; 0
5128: 20 32 cpi r18, 0x20 ; 32
512a: a0 f4 brcc .+40 ; 0x5154
512c: 8b 32 cpi r24, 0x2B ; 43
512e: 69 f0 breq .+26 ; 0x514a
5130: 30 f4 brcc .+12 ; 0x513e
5132: 80 32 cpi r24, 0x20 ; 32
5134: 59 f0 breq .+22 ; 0x514c
5136: 83 32 cpi r24, 0x23 ; 35
5138: 69 f4 brne .+26 ; 0x5154
513a: 20 61 ori r18, 0x10 ; 16
513c: 2c c0 rjmp .+88 ; 0x5196
513e: 8d 32 cpi r24, 0x2D ; 45
5140: 39 f0 breq .+14 ; 0x5150
5142: 80 33 cpi r24, 0x30 ; 48
5144: 39 f4 brne .+14 ; 0x5154
5146: 21 60 ori r18, 0x01 ; 1
5148: 26 c0 rjmp .+76 ; 0x5196
514a: 22 60 ori r18, 0x02 ; 2
514c: 24 60 ori r18, 0x04 ; 4
514e: 23 c0 rjmp .+70 ; 0x5196
5150: 28 60 ori r18, 0x08 ; 8
5152: 21 c0 rjmp .+66 ; 0x5196
5154: 27 fd sbrc r18, 7
5156: 27 c0 rjmp .+78 ; 0x51a6
5158: 30 ed ldi r19, 0xD0 ; 208
515a: 38 0f add r19, r24
515c: 3a 30 cpi r19, 0x0A ; 10
515e: 78 f4 brcc .+30 ; 0x517e
5160: 26 ff sbrs r18, 6
5162: 06 c0 rjmp .+12 ; 0x5170
5164: fa e0 ldi r31, 0x0A ; 10
5166: 5f 9e mul r5, r31
5168: 30 0d add r19, r0
516a: 11 24 eor r1, r1
516c: 53 2e mov r5, r19
516e: 13 c0 rjmp .+38 ; 0x5196
5170: 8a e0 ldi r24, 0x0A ; 10
5172: 38 9e mul r3, r24
5174: 30 0d add r19, r0
5176: 11 24 eor r1, r1
5178: 33 2e mov r3, r19
517a: 20 62 ori r18, 0x20 ; 32
517c: 0c c0 rjmp .+24 ; 0x5196
517e: 8e 32 cpi r24, 0x2E ; 46
5180: 21 f4 brne .+8 ; 0x518a
5182: 26 fd sbrc r18, 6
5184: 6b c1 rjmp .+726 ; 0x545c
5186: 20 64 ori r18, 0x40 ; 64
5188: 06 c0 rjmp .+12 ; 0x5196
518a: 8c 36 cpi r24, 0x6C ; 108
518c: 11 f4 brne .+4 ; 0x5192
518e: 20 68 ori r18, 0x80 ; 128
5190: 02 c0 rjmp .+4 ; 0x5196
5192: 88 36 cpi r24, 0x68 ; 104
5194: 41 f4 brne .+16 ; 0x51a6
5196: f6 01 movw r30, r12
5198: 93 fd sbrc r25, 3
519a: 85 91 lpm r24, Z+
519c: 93 ff sbrs r25, 3
519e: 81 91 ld r24, Z+
51a0: 6f 01 movw r12, r30
51a2: 81 11 cpse r24, r1
51a4: c1 cf rjmp .-126 ; 0x5128
51a6: 98 2f mov r25, r24
51a8: 9f 7d andi r25, 0xDF ; 223
51aa: 95 54 subi r25, 0x45 ; 69
51ac: 93 30 cpi r25, 0x03 ; 3
51ae: 28 f4 brcc .+10 ; 0x51ba
51b0: 0c 5f subi r16, 0xFC ; 252
51b2: 1f 4f sbci r17, 0xFF ; 255
51b4: ff e3 ldi r31, 0x3F ; 63
51b6: f9 83 std Y+1, r31 ; 0x01
51b8: 0d c0 rjmp .+26 ; 0x51d4
51ba: 83 36 cpi r24, 0x63 ; 99
51bc: 31 f0 breq .+12 ; 0x51ca
51be: 83 37 cpi r24, 0x73 ; 115
51c0: 71 f0 breq .+28 ; 0x51de
51c2: 83 35 cpi r24, 0x53 ; 83
51c4: 09 f0 breq .+2 ; 0x51c8
51c6: 5b c0 rjmp .+182 ; 0x527e
51c8: 22 c0 rjmp .+68 ; 0x520e
51ca: f8 01 movw r30, r16
51cc: 80 81 ld r24, Z
51ce: 89 83 std Y+1, r24 ; 0x01
51d0: 0e 5f subi r16, 0xFE ; 254
51d2: 1f 4f sbci r17, 0xFF ; 255
51d4: 44 24 eor r4, r4
51d6: 43 94 inc r4
51d8: 51 2c mov r5, r1
51da: 54 01 movw r10, r8
51dc: 15 c0 rjmp .+42 ; 0x5208
51de: 38 01 movw r6, r16
51e0: f2 e0 ldi r31, 0x02 ; 2
51e2: 6f 0e add r6, r31
51e4: 71 1c adc r7, r1
51e6: f8 01 movw r30, r16
51e8: a0 80 ld r10, Z
51ea: b1 80 ldd r11, Z+1 ; 0x01
51ec: 26 ff sbrs r18, 6
51ee: 03 c0 rjmp .+6 ; 0x51f6
51f0: 65 2d mov r22, r5
51f2: 70 e0 ldi r23, 0x00 ; 0
51f4: 02 c0 rjmp .+4 ; 0x51fa
51f6: 6f ef ldi r22, 0xFF ; 255
51f8: 7f ef ldi r23, 0xFF ; 255
51fa: c5 01 movw r24, r10
51fc: 2c 87 std Y+12, r18 ; 0x0c
51fe: 0e 94 58 2a call 0x54b0 ; 0x54b0
5202: 2c 01 movw r4, r24
5204: 83 01 movw r16, r6
5206: 2c 85 ldd r18, Y+12 ; 0x0c
5208: 2f 77 andi r18, 0x7F ; 127
520a: 22 2e mov r2, r18
520c: 17 c0 rjmp .+46 ; 0x523c
520e: 38 01 movw r6, r16
5210: f2 e0 ldi r31, 0x02 ; 2
5212: 6f 0e add r6, r31
5214: 71 1c adc r7, r1
5216: f8 01 movw r30, r16
5218: a0 80 ld r10, Z
521a: b1 80 ldd r11, Z+1 ; 0x01
521c: 26 ff sbrs r18, 6
521e: 03 c0 rjmp .+6 ; 0x5226
5220: 65 2d mov r22, r5
5222: 70 e0 ldi r23, 0x00 ; 0
5224: 02 c0 rjmp .+4 ; 0x522a
5226: 6f ef ldi r22, 0xFF ; 255
5228: 7f ef ldi r23, 0xFF ; 255
522a: c5 01 movw r24, r10
522c: 2c 87 std Y+12, r18 ; 0x0c
522e: 0e 94 4d 2a call 0x549a ; 0x549a
5232: 2c 01 movw r4, r24
5234: 2c 85 ldd r18, Y+12 ; 0x0c
5236: 20 68 ori r18, 0x80 ; 128
5238: 22 2e mov r2, r18
523a: 83 01 movw r16, r6
523c: 23 fc sbrc r2, 3
523e: 1b c0 rjmp .+54 ; 0x5276
5240: 83 2d mov r24, r3
5242: 90 e0 ldi r25, 0x00 ; 0
5244: 48 16 cp r4, r24
5246: 59 06 cpc r5, r25
5248: b0 f4 brcc .+44 ; 0x5276
524a: b7 01 movw r22, r14
524c: 80 e2 ldi r24, 0x20 ; 32
524e: 90 e0 ldi r25, 0x00 ; 0
5250: 0e 94 63 2a call 0x54c6 ; 0x54c6
5254: 3a 94 dec r3
5256: f4 cf rjmp .-24 ; 0x5240
5258: f5 01 movw r30, r10
525a: 27 fc sbrc r2, 7
525c: 85 91 lpm r24, Z+
525e: 27 fe sbrs r2, 7
5260: 81 91 ld r24, Z+
5262: 5f 01 movw r10, r30
5264: b7 01 movw r22, r14
5266: 90 e0 ldi r25, 0x00 ; 0
5268: 0e 94 63 2a call 0x54c6 ; 0x54c6
526c: 31 10 cpse r3, r1
526e: 3a 94 dec r3
5270: f1 e0 ldi r31, 0x01 ; 1
5272: 4f 1a sub r4, r31
5274: 51 08 sbc r5, r1
5276: 41 14 cp r4, r1
5278: 51 04 cpc r5, r1
527a: 71 f7 brne .-36 ; 0x5258
527c: e5 c0 rjmp .+458 ; 0x5448
527e: 84 36 cpi r24, 0x64 ; 100
5280: 11 f0 breq .+4 ; 0x5286
5282: 89 36 cpi r24, 0x69 ; 105
5284: 39 f5 brne .+78 ; 0x52d4
5286: f8 01 movw r30, r16
5288: 27 ff sbrs r18, 7
528a: 07 c0 rjmp .+14 ; 0x529a
528c: 60 81 ld r22, Z
528e: 71 81 ldd r23, Z+1 ; 0x01
5290: 82 81 ldd r24, Z+2 ; 0x02
5292: 93 81 ldd r25, Z+3 ; 0x03
5294: 0c 5f subi r16, 0xFC ; 252
5296: 1f 4f sbci r17, 0xFF ; 255
5298: 08 c0 rjmp .+16 ; 0x52aa
529a: 60 81 ld r22, Z
529c: 71 81 ldd r23, Z+1 ; 0x01
529e: 07 2e mov r0, r23
52a0: 00 0c add r0, r0
52a2: 88 0b sbc r24, r24
52a4: 99 0b sbc r25, r25
52a6: 0e 5f subi r16, 0xFE ; 254
52a8: 1f 4f sbci r17, 0xFF ; 255
52aa: 2f 76 andi r18, 0x6F ; 111
52ac: 72 2e mov r7, r18
52ae: 97 ff sbrs r25, 7
52b0: 09 c0 rjmp .+18 ; 0x52c4
52b2: 90 95 com r25
52b4: 80 95 com r24
52b6: 70 95 com r23
52b8: 61 95 neg r22
52ba: 7f 4f sbci r23, 0xFF ; 255
52bc: 8f 4f sbci r24, 0xFF ; 255
52be: 9f 4f sbci r25, 0xFF ; 255
52c0: 20 68 ori r18, 0x80 ; 128
52c2: 72 2e mov r7, r18
52c4: 2a e0 ldi r18, 0x0A ; 10
52c6: 30 e0 ldi r19, 0x00 ; 0
52c8: a4 01 movw r20, r8
52ca: 0e 94 9b 2a call 0x5536 ; 0x5536
52ce: a8 2e mov r10, r24
52d0: a8 18 sub r10, r8
52d2: 44 c0 rjmp .+136 ; 0x535c
52d4: 85 37 cpi r24, 0x75 ; 117
52d6: 29 f4 brne .+10 ; 0x52e2
52d8: 2f 7e andi r18, 0xEF ; 239
52da: b2 2e mov r11, r18
52dc: 2a e0 ldi r18, 0x0A ; 10
52de: 30 e0 ldi r19, 0x00 ; 0
52e0: 25 c0 rjmp .+74 ; 0x532c
52e2: f2 2f mov r31, r18
52e4: f9 7f andi r31, 0xF9 ; 249
52e6: bf 2e mov r11, r31
52e8: 8f 36 cpi r24, 0x6F ; 111
52ea: c1 f0 breq .+48 ; 0x531c
52ec: 18 f4 brcc .+6 ; 0x52f4
52ee: 88 35 cpi r24, 0x58 ; 88
52f0: 79 f0 breq .+30 ; 0x5310
52f2: b4 c0 rjmp .+360 ; 0x545c
52f4: 80 37 cpi r24, 0x70 ; 112
52f6: 19 f0 breq .+6 ; 0x52fe
52f8: 88 37 cpi r24, 0x78 ; 120
52fa: 21 f0 breq .+8 ; 0x5304
52fc: af c0 rjmp .+350 ; 0x545c
52fe: 2f 2f mov r18, r31
5300: 20 61 ori r18, 0x10 ; 16
5302: b2 2e mov r11, r18
5304: b4 fe sbrs r11, 4
5306: 0d c0 rjmp .+26 ; 0x5322
5308: 8b 2d mov r24, r11
530a: 84 60 ori r24, 0x04 ; 4
530c: b8 2e mov r11, r24
530e: 09 c0 rjmp .+18 ; 0x5322
5310: 24 ff sbrs r18, 4
5312: 0a c0 rjmp .+20 ; 0x5328
5314: 9f 2f mov r25, r31
5316: 96 60 ori r25, 0x06 ; 6
5318: b9 2e mov r11, r25
531a: 06 c0 rjmp .+12 ; 0x5328
531c: 28 e0 ldi r18, 0x08 ; 8
531e: 30 e0 ldi r19, 0x00 ; 0
5320: 05 c0 rjmp .+10 ; 0x532c
5322: 20 e1 ldi r18, 0x10 ; 16
5324: 30 e0 ldi r19, 0x00 ; 0
5326: 02 c0 rjmp .+4 ; 0x532c
5328: 20 e1 ldi r18, 0x10 ; 16
532a: 32 e0 ldi r19, 0x02 ; 2
532c: f8 01 movw r30, r16
532e: b7 fe sbrs r11, 7
5330: 07 c0 rjmp .+14 ; 0x5340
5332: 60 81 ld r22, Z
5334: 71 81 ldd r23, Z+1 ; 0x01
5336: 82 81 ldd r24, Z+2 ; 0x02
5338: 93 81 ldd r25, Z+3 ; 0x03
533a: 0c 5f subi r16, 0xFC ; 252
533c: 1f 4f sbci r17, 0xFF ; 255
533e: 06 c0 rjmp .+12 ; 0x534c
5340: 60 81 ld r22, Z
5342: 71 81 ldd r23, Z+1 ; 0x01
5344: 80 e0 ldi r24, 0x00 ; 0
5346: 90 e0 ldi r25, 0x00 ; 0
5348: 0e 5f subi r16, 0xFE ; 254
534a: 1f 4f sbci r17, 0xFF ; 255
534c: a4 01 movw r20, r8
534e: 0e 94 9b 2a call 0x5536 ; 0x5536
5352: a8 2e mov r10, r24
5354: a8 18 sub r10, r8
5356: fb 2d mov r31, r11
5358: ff 77 andi r31, 0x7F ; 127
535a: 7f 2e mov r7, r31
535c: 76 fe sbrs r7, 6
535e: 0b c0 rjmp .+22 ; 0x5376
5360: 37 2d mov r19, r7
5362: 3e 7f andi r19, 0xFE ; 254
5364: a5 14 cp r10, r5
5366: 50 f4 brcc .+20 ; 0x537c
5368: 74 fe sbrs r7, 4
536a: 0a c0 rjmp .+20 ; 0x5380
536c: 72 fc sbrc r7, 2
536e: 08 c0 rjmp .+16 ; 0x5380
5370: 37 2d mov r19, r7
5372: 3e 7e andi r19, 0xEE ; 238
5374: 05 c0 rjmp .+10 ; 0x5380
5376: ba 2c mov r11, r10
5378: 37 2d mov r19, r7
537a: 03 c0 rjmp .+6 ; 0x5382
537c: ba 2c mov r11, r10
537e: 01 c0 rjmp .+2 ; 0x5382
5380: b5 2c mov r11, r5
5382: 34 ff sbrs r19, 4
5384: 0d c0 rjmp .+26 ; 0x53a0
5386: fe 01 movw r30, r28
5388: ea 0d add r30, r10
538a: f1 1d adc r31, r1
538c: 80 81 ld r24, Z
538e: 80 33 cpi r24, 0x30 ; 48
5390: 11 f4 brne .+4 ; 0x5396
5392: 39 7e andi r19, 0xE9 ; 233
5394: 09 c0 rjmp .+18 ; 0x53a8
5396: 32 ff sbrs r19, 2
5398: 06 c0 rjmp .+12 ; 0x53a6
539a: b3 94 inc r11
539c: b3 94 inc r11
539e: 04 c0 rjmp .+8 ; 0x53a8
53a0: 83 2f mov r24, r19
53a2: 86 78 andi r24, 0x86 ; 134
53a4: 09 f0 breq .+2 ; 0x53a8
53a6: b3 94 inc r11
53a8: 33 fd sbrc r19, 3
53aa: 13 c0 rjmp .+38 ; 0x53d2
53ac: 30 ff sbrs r19, 0
53ae: 06 c0 rjmp .+12 ; 0x53bc
53b0: 5a 2c mov r5, r10
53b2: b3 14 cp r11, r3
53b4: 18 f4 brcc .+6 ; 0x53bc
53b6: 53 0c add r5, r3
53b8: 5b 18 sub r5, r11
53ba: b3 2c mov r11, r3
53bc: b3 14 cp r11, r3
53be: 68 f4 brcc .+26 ; 0x53da
53c0: b7 01 movw r22, r14
53c2: 80 e2 ldi r24, 0x20 ; 32
53c4: 90 e0 ldi r25, 0x00 ; 0
53c6: 3c 87 std Y+12, r19 ; 0x0c
53c8: 0e 94 63 2a call 0x54c6 ; 0x54c6
53cc: b3 94 inc r11
53ce: 3c 85 ldd r19, Y+12 ; 0x0c
53d0: f5 cf rjmp .-22 ; 0x53bc
53d2: b3 14 cp r11, r3
53d4: 10 f4 brcc .+4 ; 0x53da
53d6: 3b 18 sub r3, r11
53d8: 01 c0 rjmp .+2 ; 0x53dc
53da: 31 2c mov r3, r1
53dc: 34 ff sbrs r19, 4
53de: 12 c0 rjmp .+36 ; 0x5404
53e0: b7 01 movw r22, r14
53e2: 80 e3 ldi r24, 0x30 ; 48
53e4: 90 e0 ldi r25, 0x00 ; 0
53e6: 3c 87 std Y+12, r19 ; 0x0c
53e8: 0e 94 63 2a call 0x54c6 ; 0x54c6
53ec: 3c 85 ldd r19, Y+12 ; 0x0c
53ee: 32 ff sbrs r19, 2
53f0: 17 c0 rjmp .+46 ; 0x5420
53f2: 31 fd sbrc r19, 1
53f4: 03 c0 rjmp .+6 ; 0x53fc
53f6: 88 e7 ldi r24, 0x78 ; 120
53f8: 90 e0 ldi r25, 0x00 ; 0
53fa: 02 c0 rjmp .+4 ; 0x5400
53fc: 88 e5 ldi r24, 0x58 ; 88
53fe: 90 e0 ldi r25, 0x00 ; 0
5400: b7 01 movw r22, r14
5402: 0c c0 rjmp .+24 ; 0x541c
5404: 83 2f mov r24, r19
5406: 86 78 andi r24, 0x86 ; 134
5408: 59 f0 breq .+22 ; 0x5420
540a: 31 ff sbrs r19, 1
540c: 02 c0 rjmp .+4 ; 0x5412
540e: 8b e2 ldi r24, 0x2B ; 43
5410: 01 c0 rjmp .+2 ; 0x5414
5412: 80 e2 ldi r24, 0x20 ; 32
5414: 37 fd sbrc r19, 7
5416: 8d e2 ldi r24, 0x2D ; 45
5418: b7 01 movw r22, r14
541a: 90 e0 ldi r25, 0x00 ; 0
541c: 0e 94 63 2a call 0x54c6 ; 0x54c6
5420: a5 14 cp r10, r5
5422: 38 f4 brcc .+14 ; 0x5432
5424: b7 01 movw r22, r14
5426: 80 e3 ldi r24, 0x30 ; 48
5428: 90 e0 ldi r25, 0x00 ; 0
542a: 0e 94 63 2a call 0x54c6 ; 0x54c6
542e: 5a 94 dec r5
5430: f7 cf rjmp .-18 ; 0x5420
5432: aa 94 dec r10
5434: f4 01 movw r30, r8
5436: ea 0d add r30, r10
5438: f1 1d adc r31, r1
543a: 80 81 ld r24, Z
543c: b7 01 movw r22, r14
543e: 90 e0 ldi r25, 0x00 ; 0
5440: 0e 94 63 2a call 0x54c6 ; 0x54c6
5444: a1 10 cpse r10, r1
5446: f5 cf rjmp .-22 ; 0x5432
5448: 33 20 and r3, r3
544a: 09 f4 brne .+2 ; 0x544e
544c: 51 ce rjmp .-862 ; 0x50f0
544e: b7 01 movw r22, r14
5450: 80 e2 ldi r24, 0x20 ; 32
5452: 90 e0 ldi r25, 0x00 ; 0
5454: 0e 94 63 2a call 0x54c6 ; 0x54c6
5458: 3a 94 dec r3
545a: f6 cf rjmp .-20 ; 0x5448
545c: f7 01 movw r30, r14
545e: 86 81 ldd r24, Z+6 ; 0x06
5460: 97 81 ldd r25, Z+7 ; 0x07
5462: 02 c0 rjmp .+4 ; 0x5468
5464: 8f ef ldi r24, 0xFF ; 255
5466: 9f ef ldi r25, 0xFF ; 255
5468: 2c 96 adiw r28, 0x0c ; 12
546a: cd bf out 0x3d, r28 ; 61
546c: de bf out 0x3e, r29 ; 62
546e: df 91 pop r29
5470: cf 91 pop r28
5472: 1f 91 pop r17
5474: 0f 91 pop r16
5476: ff 90 pop r15
5478: ef 90 pop r14
547a: df 90 pop r13
547c: cf 90 pop r12
547e: bf 90 pop r11
5480: af 90 pop r10
5482: 9f 90 pop r9
5484: 8f 90 pop r8
5486: 7f 90 pop r7
5488: 6f 90 pop r6
548a: 5f 90 pop r5
548c: 4f 90 pop r4
548e: 3f 90 pop r3
5490: 2f 90 pop r2
5492: 08 95 ret
5494: 99 27 eor r25, r25
5496: 88 27 eor r24, r24
5498: 08 95 ret
549a: fc 01 movw r30, r24
549c: 05 90 lpm r0, Z+
549e: 61 50 subi r22, 0x01 ; 1
54a0: 70 40 sbci r23, 0x00 ; 0
54a2: 01 10 cpse r0, r1
54a4: d8 f7 brcc .-10 ; 0x549c
54a6: 80 95 com r24
54a8: 90 95 com r25
54aa: 8e 0f add r24, r30
54ac: 9f 1f adc r25, r31
54ae: 08 95 ret
54b0: fc 01 movw r30, r24
54b2: 61 50 subi r22, 0x01 ; 1
54b4: 70 40 sbci r23, 0x00 ; 0
54b6: 01 90 ld r0, Z+
54b8: 01 10 cpse r0, r1
54ba: d8 f7 brcc .-10 ; 0x54b2
54bc: 80 95 com r24
54be: 90 95 com r25
54c0: 8e 0f add r24, r30
54c2: 9f 1f adc r25, r31
54c4: 08 95 ret
54c6: 0f 93 push r16
54c8: 1f 93 push r17
54ca: cf 93 push r28
54cc: df 93 push r29
54ce: fb 01 movw r30, r22
54d0: 23 81 ldd r18, Z+3 ; 0x03
54d2: 21 fd sbrc r18, 1
54d4: 03 c0 rjmp .+6 ; 0x54dc
54d6: 8f ef ldi r24, 0xFF ; 255
54d8: 9f ef ldi r25, 0xFF ; 255
54da: 28 c0 rjmp .+80 ; 0x552c
54dc: 22 ff sbrs r18, 2
54de: 16 c0 rjmp .+44 ; 0x550c
54e0: 46 81 ldd r20, Z+6 ; 0x06
54e2: 57 81 ldd r21, Z+7 ; 0x07
54e4: 24 81 ldd r18, Z+4 ; 0x04
54e6: 35 81 ldd r19, Z+5 ; 0x05
54e8: 42 17 cp r20, r18
54ea: 53 07 cpc r21, r19
54ec: 44 f4 brge .+16 ; 0x54fe
54ee: a0 81 ld r26, Z
54f0: b1 81 ldd r27, Z+1 ; 0x01
54f2: 9d 01 movw r18, r26
54f4: 2f 5f subi r18, 0xFF ; 255
54f6: 3f 4f sbci r19, 0xFF ; 255
54f8: 20 83 st Z, r18
54fa: 31 83 std Z+1, r19 ; 0x01
54fc: 8c 93 st X, r24
54fe: 26 81 ldd r18, Z+6 ; 0x06
5500: 37 81 ldd r19, Z+7 ; 0x07
5502: 2f 5f subi r18, 0xFF ; 255
5504: 3f 4f sbci r19, 0xFF ; 255
5506: 26 83 std Z+6, r18 ; 0x06
5508: 37 83 std Z+7, r19 ; 0x07
550a: 10 c0 rjmp .+32 ; 0x552c
550c: eb 01 movw r28, r22
550e: 09 2f mov r16, r25
5510: 18 2f mov r17, r24
5512: 00 84 ldd r0, Z+8 ; 0x08
5514: f1 85 ldd r31, Z+9 ; 0x09
5516: e0 2d mov r30, r0
5518: 19 95 eicall
551a: 89 2b or r24, r25
551c: e1 f6 brne .-72 ; 0x54d6
551e: 8e 81 ldd r24, Y+6 ; 0x06
5520: 9f 81 ldd r25, Y+7 ; 0x07
5522: 01 96 adiw r24, 0x01 ; 1
5524: 8e 83 std Y+6, r24 ; 0x06
5526: 9f 83 std Y+7, r25 ; 0x07
5528: 81 2f mov r24, r17
552a: 90 2f mov r25, r16
552c: df 91 pop r29
552e: cf 91 pop r28
5530: 1f 91 pop r17
5532: 0f 91 pop r16
5534: 08 95 ret
5536: fa 01 movw r30, r20
5538: aa 27 eor r26, r26
553a: 28 30 cpi r18, 0x08 ; 8
553c: 51 f1 breq .+84 ; 0x5592
553e: 20 31 cpi r18, 0x10 ; 16
5540: 81 f1 breq .+96 ; 0x55a2
5542: e8 94 clt
5544: 6f 93 push r22
5546: 6e 7f andi r22, 0xFE ; 254
5548: 6e 5f subi r22, 0xFE ; 254
554a: 7f 4f sbci r23, 0xFF ; 255
554c: 8f 4f sbci r24, 0xFF ; 255
554e: 9f 4f sbci r25, 0xFF ; 255
5550: af 4f sbci r26, 0xFF ; 255
5552: b1 e0 ldi r27, 0x01 ; 1
5554: 3e d0 rcall .+124 ; 0x55d2
5556: b4 e0 ldi r27, 0x04 ; 4
5558: 3c d0 rcall .+120 ; 0x55d2
555a: 67 0f add r22, r23
555c: 78 1f adc r23, r24
555e: 89 1f adc r24, r25
5560: 9a 1f adc r25, r26
5562: a1 1d adc r26, r1
5564: 68 0f add r22, r24
5566: 79 1f adc r23, r25
5568: 8a 1f adc r24, r26
556a: 91 1d adc r25, r1
556c: a1 1d adc r26, r1
556e: 6a 0f add r22, r26
5570: 71 1d adc r23, r1
5572: 81 1d adc r24, r1
5574: 91 1d adc r25, r1
5576: a1 1d adc r26, r1
5578: 20 d0 rcall .+64 ; 0x55ba
557a: 09 f4 brne .+2 ; 0x557e
557c: 68 94 set
557e: 3f 91 pop r19
5580: 2a e0 ldi r18, 0x0A ; 10
5582: 26 9f mul r18, r22
5584: 11 24 eor r1, r1
5586: 30 19 sub r19, r0
5588: 30 5d subi r19, 0xD0 ; 208
558a: 31 93 st Z+, r19
558c: de f6 brtc .-74 ; 0x5544
558e: cf 01 movw r24, r30
5590: 08 95 ret
5592: 46 2f mov r20, r22
5594: 47 70 andi r20, 0x07 ; 7
5596: 40 5d subi r20, 0xD0 ; 208
5598: 41 93 st Z+, r20
559a: b3 e0 ldi r27, 0x03 ; 3
559c: 0f d0 rcall .+30 ; 0x55bc
559e: c9 f7 brne .-14 ; 0x5592
55a0: f6 cf rjmp .-20 ; 0x558e
55a2: 46 2f mov r20, r22
55a4: 4f 70 andi r20, 0x0F ; 15
55a6: 40 5d subi r20, 0xD0 ; 208
55a8: 4a 33 cpi r20, 0x3A ; 58
55aa: 18 f0 brcs .+6 ; 0x55b2
55ac: 49 5d subi r20, 0xD9 ; 217
55ae: 31 fd sbrc r19, 1
55b0: 40 52 subi r20, 0x20 ; 32
55b2: 41 93 st Z+, r20
55b4: 02 d0 rcall .+4 ; 0x55ba
55b6: a9 f7 brne .-22 ; 0x55a2
55b8: ea cf rjmp .-44 ; 0x558e
55ba: b4 e0 ldi r27, 0x04 ; 4
55bc: a6 95 lsr r26
55be: 97 95 ror r25
55c0: 87 95 ror r24
55c2: 77 95 ror r23
55c4: 67 95 ror r22
55c6: ba 95 dec r27
55c8: c9 f7 brne .-14 ; 0x55bc
55ca: 00 97 sbiw r24, 0x00 ; 0
55cc: 61 05 cpc r22, r1
55ce: 71 05 cpc r23, r1
55d0: 08 95 ret
55d2: 9b 01 movw r18, r22
55d4: ac 01 movw r20, r24
55d6: 0a 2e mov r0, r26
55d8: 06 94 lsr r0
55da: 57 95 ror r21
55dc: 47 95 ror r20
55de: 37 95 ror r19
55e0: 27 95 ror r18
55e2: ba 95 dec r27
55e4: c9 f7 brne .-14 ; 0x55d8
55e6: 62 0f add r22, r18
55e8: 73 1f adc r23, r19
55ea: 84 1f adc r24, r20
55ec: 95 1f adc r25, r21
55ee: a0 1d adc r26, r0
55f0: 08 95 ret
55f2: 03 d0 rcall .+6 ; 0x55fa
55f4: 80 81 ld r24, Z
55f6: 99 27 eor r25, r25
55f8: 08 95 ret
55fa: e0 ec ldi r30, 0xC0 ; 192
55fc: f1 e0 ldi r31, 0x01 ; 1
55fe: 37 85 ldd r19, Z+15 ; 0x0f
5600: 37 fd sbrc r19, 7
5602: fd cf rjmp .-6 ; 0x55fe
5604: 34 85 ldd r19, Z+12 ; 0x0c
5606: 38 60 ori r19, 0x08 ; 8
5608: 34 87 std Z+12, r19 ; 0x0c
560a: fc 01 movw r30, r24
560c: e0 50 subi r30, 0x00 ; 0
560e: f0 4f sbci r31, 0xF0 ; 240
5610: 08 95 ret
5612: 26 2f mov r18, r22
5614: e0 ec ldi r30, 0xC0 ; 192
5616: f1 e0 ldi r31, 0x01 ; 1
5618: 37 85 ldd r19, Z+15 ; 0x0f
561a: 37 fd sbrc r19, 7
561c: fd cf rjmp .-6 ; 0x5618
561e: 34 85 ldd r19, Z+12 ; 0x0c
5620: 37 7f andi r19, 0xF7 ; 247
5622: 34 87 std Z+12, r19 ; 0x0c
5624: 37 85 ldd r19, Z+15 ; 0x0f
5626: 31 ff sbrs r19, 1
5628: 09 c0 rjmp .+18 ; 0x563c
562a: 36 e3 ldi r19, 0x36 ; 54
562c: 32 87 std Z+10, r19 ; 0x0a
562e: 38 ed ldi r19, 0xD8 ; 216
5630: 34 bf out 0x34, r19 ; 52
5632: 31 e0 ldi r19, 0x01 ; 1
5634: 33 87 std Z+11, r19 ; 0x0b
5636: 37 85 ldd r19, Z+15 ; 0x0f
5638: 37 fd sbrc r19, 7
563a: fd cf rjmp .-6 ; 0x5636
563c: 33 e3 ldi r19, 0x33 ; 51
563e: 32 87 std Z+10, r19 ; 0x0a
5640: 80 83 st Z, r24
5642: 91 83 std Z+1, r25 ; 0x01
5644: 12 82 std Z+2, r1 ; 0x02
5646: 24 83 std Z+4, r18 ; 0x04
5648: 25 e3 ldi r18, 0x35 ; 53
564a: 22 87 std Z+10, r18 ; 0x0a
564c: 28 ed ldi r18, 0xD8 ; 216
564e: 31 e0 ldi r19, 0x01 ; 1
5650: 24 bf out 0x34, r18 ; 52
5652: 33 87 std Z+11, r19 ; 0x0b
5654: 01 96 adiw r24, 0x01 ; 1
5656: 08 95 ret
5658: f8 94 cli
565a: ff cf rjmp .-2 ; 0x565a
565c: 12 00 .word 0x0012 ; ????
565e: 05 00 .word 0x0005 ; ????
5660: 00 69 ori r16, 0x90 ; 144
5662: 87 19 sub r24, r7
5664: 00 a0 ldd r0, Z+32 ; 0x20
5666: 08 40 sbci r16, 0x08 ; 8
5668: 06 04 cpc r0, r6
566a: 08 09 sbc r16, r8
566c: 20 b0 in r2, 0x00 ; 0
566e: 09 60 ori r16, 0x09 ; 9
5670: 06 40 sbci r16, 0x06 ; 6
5672: 80 11 cpse r24, r0
5674: 20 00 .word 0x0020 ; ????
5676: 00 d9 rcall .-3584 ; 0x4878
5678: 22 20 and r2, r2
567a: 00 46 sbci r16, 0x60 ; 96
567c: 49 20 and r4, r9
567e: 64 65 ori r22, 0x54 ; 84
5680: 74 65 ori r23, 0x54 ; 84
5682: 63 74 andi r22, 0x43 ; 67
5684: 65 64 ori r22, 0x45 ; 69
5686: 2c 20 and r2, r12
5688: 70 65 ori r23, 0x50 ; 80
568a: 72 66 ori r23, 0x62 ; 98
568c: 6f 72 andi r22, 0x2F ; 47
568e: 6d 69 ori r22, 0x9D ; 157
5690: 6e 67 ori r22, 0x7E ; 126
5692: 20 73 andi r18, 0x30 ; 48
5694: 6c 6f ori r22, 0xFC ; 252
5696: 77 20 and r7, r7
5698: 73 74 andi r23, 0x43 ; 67
569a: 61 72 andi r22, 0x21 ; 33
569c: 74 75 andi r23, 0x54 ; 84
569e: 70 2e mov r7, r16
56a0: 2e 2e mov r2, r30
56a2: 20 54 subi r18, 0x40 ; 64
56a4: 68 69 ori r22, 0x98 ; 152
56a6: 73 20 and r7, r3
56a8: 6d 61 ori r22, 0x1D ; 29
56aa: 79 20 and r7, r9
56ac: 74 61 ori r23, 0x14 ; 20
56ae: 6b 65 ori r22, 0x5B ; 91
56b0: 20 61 ori r18, 0x10 ; 16
56b2: 20 77 andi r18, 0x70 ; 112
56b4: 68 69 ori r22, 0x98 ; 152
56b6: 6c 65 ori r22, 0x5C ; 92
56b8: 2e 0a sbc r2, r30
56ba: 00 0d add r16, r0
56bc: 25 69 ori r18, 0x95 ; 149
56be: 25 25 eor r18, r5
56c0: 00 0d add r16, r0
56c2: 25 69 ori r18, 0x95 ; 149
56c4: 25 25 eor r18, r5
56c6: 0a 00 .word 0x000a ; ????
56c8: 41 42 sbci r20, 0x21 ; 33
56ca: 4f 52 subi r20, 0x2F ; 47
56cc: 54 21 and r21, r4
56ce: 20 63 ori r18, 0x30 ; 48
56d0: 6f 6e ori r22, 0xEF ; 239
56d2: 73 74 andi r23, 0x43 ; 67
56d4: 61 6e ori r22, 0xE1 ; 225
56d6: 74 20 and r7, r4
56d8: 72 61 ori r23, 0x12 ; 18
56da: 6e 64 ori r22, 0x4E ; 78
56dc: 6f 6d ori r22, 0xDF ; 223
56de: 20 76 andi r18, 0x60 ; 96
56e0: 61 6c ori r22, 0xC1 ; 193
56e2: 75 65 ori r23, 0x55 ; 85
56e4: 21 0d add r18, r1
56e6: 0a 00 .word 0x000a ; ????
56e8: 62 61 ori r22, 0x12 ; 18
56ea: 63 6b ori r22, 0xB3 ; 179
56ec: 64 6f ori r22, 0xF4 ; 244
56ee: 6f 72 andi r22, 0x2F ; 47
56f0: 00 55 subi r16, 0x50 ; 80
56f2: 03 0c add r0, r3
56f4: 34 9f mul r19, r20
56f6: c9 5e subi r28, 0xE9 ; 233
56f8: 13 85 ldd r17, Z+11 ; 0x0b
56fa: 93 5e subi r25, 0xE3 ; 227
56fc: a2 33 cpi r26, 0x32 ; 50
56fe: 66 b5 in r22, 0x26 ; 38
5700: a9 99 sbic 0x15, 1 ; 21
5702: 45 d8 rcall .-3958 ; 0x478e
5704: bf 35 cpi r27, 0x5F ; 95
5706: d3 72 andi r29, 0x23 ; 35
5708: c3 aa std Z+51, r12 ; 0x33
570a: 72 2b or r23, r18
570c: b9 74 andi r27, 0x49 ; 73
570e: 92 ca rjmp .-2780 ; 0x4c34
5710: 26 0d add r18, r6
5712: 0a 49 sbci r16, 0x9A ; 154
5714: 6e 69 ori r22, 0x9E ; 158
5716: 74 69 ori r23, 0x94 ; 148
5718: 61 6c ori r22, 0xC1 ; 193
571a: 69 7a andi r22, 0xA9 ; 169
571c: 69 6e ori r22, 0xE9 ; 233
571e: 67 2e mov r6, r23
5720: 2e 2e mov r2, r30
5722: 00 0d add r16, r0
5724: 49 6e ori r20, 0xE9 ; 233
5726: 69 74 andi r22, 0x49 ; 73
5728: 69 61 ori r22, 0x19 ; 25
572a: 6c 69 ori r22, 0x9C ; 156
572c: 7a 65 ori r23, 0x5A ; 90
572e: 64 20 and r6, r4
5730: 20 20 and r2, r0
5732: 20 20 and r2, r0
5734: 20 0d add r18, r0
5736: 0a 00 .word 0x000a ; ????
5738: 0d 0a sbc r0, r29
573a: 45 78 andi r20, 0x85 ; 133
573c: 70 65 ori r23, 0x50 ; 80
573e: 63 74 andi r22, 0x43 ; 67
5740: 65 64 ori r22, 0x45 ; 69
5742: 20 66 ori r18, 0x60 ; 96
5744: 6f 72 andi r22, 0x2F ; 47
5746: 6d 61 ori r22, 0x1D ; 29
5748: 74 3a cpi r23, 0xA4 ; 164
574a: 20 5b subi r18, 0xB0 ; 176
574c: 6e 61 ori r22, 0x1E ; 30
574e: 6d 65 ori r22, 0x5D ; 93
5750: 5f 6c ori r21, 0xCF ; 207
5752: 65 6e ori r22, 0xE5 ; 229
5754: 67 74 andi r22, 0x47 ; 71
5756: 68 5d subi r22, 0xD8 ; 216
5758: 3a 5b subi r19, 0xBA ; 186
575a: 70 61 ori r23, 0x10 ; 16
575c: 73 73 andi r23, 0x33 ; 51
575e: 77 6f ori r23, 0xF7 ; 247
5760: 72 64 ori r23, 0x42 ; 66
5762: 5f 6c ori r21, 0xCF ; 207
5764: 65 6e ori r22, 0xE5 ; 229
5766: 67 74 andi r22, 0x47 ; 71
5768: 68 5d subi r22, 0xD8 ; 216
576a: 3a 5b subi r19, 0xBA ; 186
576c: 6e 61 ori r22, 0x1E ; 30
576e: 6d 65 ori r22, 0x5D ; 93
5770: 5d 5b subi r21, 0xBD ; 189
5772: 70 61 ori r23, 0x10 ; 16
5774: 73 73 andi r23, 0x33 ; 51
5776: 77 6f ori r23, 0xF7 ; 247
5778: 72 64 ori r23, 0x42 ; 66
577a: 5d 00 .word 0x005d ; ????
577c: 0d 0a sbc r0, r29
577e: 55 6e ori r21, 0xE5 ; 229
5780: 6b 6e ori r22, 0xEB ; 235
5782: 6f 77 andi r22, 0x7F ; 127
5784: 6e 20 and r6, r14
5786: 75 73 andi r23, 0x35 ; 53
5788: 65 72 andi r22, 0x25 ; 37
578a: 21 00 .word 0x0021 ; ????
578c: 0d 0a sbc r0, r29
578e: 57 72 andi r21, 0x27 ; 39
5790: 6f 6e ori r22, 0xEF ; 239
5792: 67 20 and r6, r7
5794: 70 61 ori r23, 0x10 ; 16
5796: 73 73 andi r23, 0x33 ; 51
5798: 77 6f ori r23, 0xF7 ; 247
579a: 72 64 ori r23, 0x42 ; 66
579c: 21 00 .word 0x0021 ; ????
579e: 0d 0a sbc r0, r29
57a0: 59 6f ori r21, 0xF9 ; 249
57a2: 75 72 andi r23, 0x25 ; 37
57a4: 20 66 ori r18, 0x60 ; 96
57a6: 6c 61 ori r22, 0x1C ; 28
57a8: 67 20 and r6, r7
57aa: 69 73 andi r22, 0x39 ; 57
57ac: 3a 0d add r19, r10
57ae: 0a 00 .word 0x000a ; ????
57b0: 0d 0a sbc r0, r29
57b2: 59 6f ori r21, 0xF9 ; 249
57b4: 75 20 and r7, r5
57b6: 73 65 ori r23, 0x53 ; 83
57b8: 65 6d ori r22, 0xD5 ; 213
57ba: 20 74 andi r18, 0x40 ; 64
57bc: 6f 20 and r6, r15
57be: 62 65 ori r22, 0x52 ; 82
57c0: 20 61 ori r18, 0x10 ; 16
57c2: 74 74 andi r23, 0x44 ; 68
57c4: 65 6d ori r22, 0xD5 ; 213
57c6: 70 74 andi r23, 0x40 ; 64
57c8: 69 6e ori r22, 0xE9 ; 233
57ca: 67 20 and r6, r7
57cc: 74 6f ori r23, 0xF4 ; 244
57ce: 20 69 ori r18, 0x90 ; 144
57d0: 6e 66 ori r22, 0x6E ; 110
57d2: 6c 75 andi r22, 0x5C ; 92
57d4: 65 6e ori r22, 0xE5 ; 229
57d6: 63 65 ori r22, 0x53 ; 83
57d8: 20 74 andi r18, 0x40 ; 64
57da: 68 65 ori r22, 0x58 ; 88
57dc: 20 52 subi r18, 0x20 ; 32
57de: 4e 47 sbci r20, 0x7E ; 126
57e0: 2e 20 and r2, r14
57e2: 49 66 ori r20, 0x69 ; 105
57e4: 20 79 andi r18, 0x90 ; 144
57e6: 6f 75 andi r22, 0x5F ; 95
57e8: 20 62 ori r18, 0x20 ; 32
57ea: 65 6c ori r22, 0xC5 ; 197
57ec: 69 65 ori r22, 0x59 ; 89
57ee: 76 65 ori r23, 0x56 ; 86
57f0: 20 74 andi r18, 0x40 ; 64
57f2: 68 69 ori r22, 0x98 ; 152
57f4: 73 20 and r7, r3
57f6: 74 6f ori r23, 0xF4 ; 244
57f8: 20 62 ori r18, 0x20 ; 32
57fa: 65 20 and r6, r5
57fc: 61 20 and r6, r1
57fe: 66 61 ori r22, 0x16 ; 22
5800: 6c 73 andi r22, 0x3C ; 60
5802: 65 20 and r6, r5
5804: 70 6f ori r23, 0xF0 ; 240
5806: 73 69 ori r23, 0x93 ; 147
5808: 74 69 ori r23, 0x94 ; 148
580a: 76 65 ori r23, 0x56 ; 86
580c: 2c 20 and r2, r12
580e: 79 6f ori r23, 0xF9 ; 249
5810: 75 20 and r7, r5
5812: 63 61 ori r22, 0x13 ; 19
5814: 6e 20 and r6, r14
5816: 72 65 ori r23, 0x52 ; 82
5818: 74 72 andi r23, 0x24 ; 36
581a: 79 20 and r7, r9
581c: 64 6f ori r22, 0xF4 ; 244
581e: 69 6e ori r22, 0xE9 ; 233
5820: 67 20 and r6, r7
5822: 77 68 ori r23, 0x87 ; 135
5824: 61 74 andi r22, 0x41 ; 65
5826: 20 79 andi r18, 0x90 ; 144
5828: 6f 75 andi r22, 0x5F ; 95
582a: 20 64 ori r18, 0x40 ; 64
582c: 69 64 ori r22, 0x49 ; 73
582e: 2e 0d add r18, r14
5830: 0a 00 .word 0x000a ; ????
|
working/m12-give-strings/m12-give-target-dead-full.asm | Iemnur/Mother2GbaTranslation | 149 | 12084 | .loadtable "m12-give-strings/m12-give-table.tbl"
.str "@\csender tried to add\n the \citem\n to \creceiver's stuff,\prompt@but there was no room for it." |
now_playing.scpt | rob121/airfoil-api | 25 | 106 | <filename>now_playing.scpt<gh_stars>10-100
tell application "Airfoil Satellite"
if is connected then
get artist & "|" & album & "|" & track title
else
get ""
end if
end tell
|
Working Disassembly/General/Sprites/Cluckoid/Map - Cluckoid Arrow.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 5 | 19280 | <reponame>TeamASM-Blur/Sonic-3-Blue-Balls-Edition
Map_8E536: dc.w word_8E538-Map_8E536
word_8E538: dc.w 2
dc.b $F4, $C, 0, 0, $FF, $F0
dc.b $FC, 1, 0, 4, $FF, $F8
|
Projeto _Bootloader/a.asm | maluwastaken/Infra_de_Software | 0 | 169213 | <reponame>maluwastaken/Infra_de_Software
org 0x8600
jmp 0x0000:main
;30x15
var db 4, 4, 4, 4, 4, 4, 4, 4, 4, 6, 6, 4, 4, 4, 4, 4, 4, 4, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 6, 6, 4, 4, 4, 4, 4, 4, 6, 12, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8, 6, 12, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 12, 8, 6, 4, 4, 6, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 6, 8, 8, 8, 8, 6, 14, 14, 14, 14, 14, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 6, 8, 8, 6, 14, 14, 14, 14, 14, 14, 14, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 4, 6, 14, 14, 14, 14, 14, 14, 14, 14, 14, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 6, 14, 14, 14, 14, 14, 14, 14, 14, 14, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 4, 14, 7, 8, 14, 14, 14, 14, 14, 8, 6, 14, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 6, 14, 14, 14, 14, 14, 14, 14, 14, 12, 14, 14, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 14, 14, 14, 6, 6, 4, 4, 8, 6, 14, 14, 14, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 12, 8, 7, 14, 14, 14, 14, 14, 14, 14, 8, 12, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 7, 14, 14, 14, 14, 14, 14, 14, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 7, 7, 14, 14, 14, 14, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 14, 14, 6, 12, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 14, 14, 14, 12, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 14, 14, 14, 6, 12, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 14, 14, 14, 6, 12, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 14, 14, 14, 14, 6, 12, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 14, 14, 14, 14, 14, 14, 14, 14, 12, 12, 12, 8, 0, 0, 8, 8, 8, 7, 14, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 14, 14, 14, 14, 14, 14, 14, 14, 12, 12, 12, 6, 6, 14, 4, 8, 8, 8, 0, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 12, 14, 14, 12, 12, 4, 14, 14, 6, 6, 6, 6, 14, 6, 12, 6, 6, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 14, 14, 14, 12, 4, 14, 14, 6, 6, 6, 14, 14, 6, 12, 12, 6, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 14, 14, 6, 4, 12, 14, 6, 6, 12, 12, 6, 12, 8, 12, 12, 12, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 14, 14, 14, 14, 14, 14, 14, 12, 12, 12, 6, 12, 14, 6, 12, 6, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 14, 14, 14, 14, 14, 14, 12, 6, 12, 6, 6, 14, 14, 14, 14, 14, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 14, 14, 14, 14, 14, 14, 14, 12, 14, 12, 14, 14, 14, 14, 14, 14, 4, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 12, 4, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 14, 14, 4, 6, 14, 14, 4, 0, 0, 4, 14, 14, 4, 4, 6, 6, 4, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 14, 14, 4, 6, 14, 14, 8, 8, 8, 6, 14, 14, 4, 4, 12, 12, 4, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 14, 14, 4, 6, 14, 14, 8, 8, 8, 8, 14, 14, 4, 4, 14, 14, 4, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 14, 14, 4, 6, 14, 14, 8, 8, 8, 8, 14, 14, 4, 4, 14, 14, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 14, 14, 8, 6, 14, 14, 8, 8, 8, 8, 14, 14, 4, 6, 14, 14, 7, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 14, 14, 14, 8, 6, 14, 14, 8, 8, 8, 8, 14, 14, 4, 8, 14, 14, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 12, 14, 14, 4, 6, 14, 14, 4, 4, 4, 6, 14, 14, 6, 6, 14, 14, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 12, 14, 14, 4, 12, 14, 14, 4, 4, 4, 6, 14, 14, 0, 6, 14, 14, 6, 4, 4, 4, 4, 4, 4, 4, 4
var1 db 4, 4, 4, 4, 4, 4, 4, 4, 4, 6, 6, 4, 4, 4, 4, 4, 4, 4, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 6, 6, 4, 4, 4, 4, 4, 4, 6, 12, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 8, 6, 11, 11, 11, 11, 11, 11, 8, 7, 3, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 7, 8, 11, 11, 11, 11, 11, 8, 3, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 8, 12, 11, 6, 4, 4, 6, 6, 3, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 3, 8, 3, 11, 11, 3, 8, 14, 14, 14, 14, 14, 8, 11, 11, 11, 8, 3, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 8, 6, 8, 3, 8, 14, 14, 14, 14, 14, 14, 14, 8, 11, 8, 6, 3, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 4, 8, 14, 14, 14, 14, 14, 14, 14, 14, 14, 8, 8, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 3, 6, 14, 14, 14, 14, 14, 14, 14, 14, 14, 6, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 4, 14, 7, 8, 14, 14, 14, 14, 14, 8, 6, 14, 3, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 6, 14, 14, 14, 14, 14, 14, 14, 14, 12, 14, 14, 8, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 14, 14, 14, 6, 6, 4, 4, 8, 6, 14, 14, 14, 8, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 12, 8, 7, 14, 14, 14, 14, 14, 14, 14, 8, 12, 8, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 8, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 8, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 8, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 8, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 8, 7, 14, 14, 14, 14, 14, 14, 14, 7, 8, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 3, 7, 7, 14, 14, 14, 14, 7, 7, 7, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 3, 11, 7, 14, 14, 6, 12, 8, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 7, 14, 14, 14, 12, 6, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 7, 14, 14, 14, 6, 12, 8, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 7, 14, 14, 14, 6, 12, 6, 3, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 3, 3, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 7, 14, 14, 14, 14, 6, 12, 8, 7, 8, 11, 11, 11, 11, 11, 11, 11, 11, 11, 6, 8, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 7, 14, 14, 14, 14, 14, 14, 14, 14, 12, 12, 12, 8, 8, 8, 11, 11, 11, 7, 14, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 7, 14, 14, 14, 14, 14, 14, 14, 14, 12, 12, 12, 6, 6, 14, 4, 8, 11, 8, 8, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 3, 12, 14, 14, 12, 12, 4, 14, 14, 6, 6, 6, 6, 14, 6, 12, 6, 6, 8, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 3, 6, 14, 14, 14, 12, 4, 14, 14, 6, 6, 6, 14, 14, 6, 12, 12, 6, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 3, 6, 14, 14, 6, 4, 12, 14, 6, 6, 12, 12, 6, 12, 8, 12, 12, 12, 8, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 3, 6, 14, 14, 14, 14, 14, 14, 14, 12, 12, 12, 6, 12, 14, 6, 12, 6, 8, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 3, 6, 14, 14, 14, 14, 14, 14, 12, 6, 12, 6, 6, 14, 14, 14, 14, 14, 8, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 3, 6, 14, 14, 14, 14, 14, 14, 14, 12, 14, 12, 14, 14, 14, 14, 14, 14, 4, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 3, 6, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 12, 4, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 3, 6, 14, 14, 4, 6, 14, 14, 4, 8, 8, 4, 14, 14, 4, 4, 6, 6, 4, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 3, 6, 14, 14, 4, 6, 14, 14, 7, 11, 11, 6, 14, 14, 4, 4, 12, 12, 4, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 3, 6, 14, 14, 4, 6, 14, 14, 11, 11, 11, 7, 14, 14, 4, 4, 14, 14, 4, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 3, 6, 14, 14, 4, 6, 14, 14, 11, 11, 11, 11, 14, 14, 4, 4, 14, 14, 8, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 7, 14, 14, 8, 6, 14, 14, 11, 11, 11, 11, 14, 14, 4, 6, 14, 14, 12, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 14, 14, 14, 3, 6, 14, 14, 11, 11, 11, 11, 14, 14, 4, 7, 14, 14, 11, 11, 11, 11, 11, 11, 11, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 12, 14, 14, 4, 6, 14, 14, 4, 4, 4, 6, 14, 14, 6, 6, 14, 14, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 12, 14, 14, 4, 12, 14, 14, 4, 4, 4, 6, 14, 14, 0, 6, 14, 14, 6, 4, 4, 4, 4, 4, 4, 4, 4
main:
xor ax, ax
mov ds, ax
mov es, ax
mov ah, 0 ;escolhe modo video
mov al, 13h ;modo VGA
int 10h
mov ah, 0xb ;scolhe cor da tela
mov bh, 0
mov bl, 3 ;cor da tela
int 10h
mov ah, 0xe ;escolhe cor da letra
mov bh, 0 ;numero da pagina
mov bl, 0xf ;cor branca da letra
mov si, var
mov cx, 50
mov dx, 50 ;linha
mov ah, 0Ch
laco:
lodsb
int 10h
inc cx
cmp cx, 90
je compara_eh_quinze
jmp laco
done:
jmp dnvo
compara_eh_quinze:
cmp dx, 89
je done
mov cx, 50
inc dx
jmp laco
;segunda img
dnvo:
mov si,var1
mov cx, 0
mov dx, 0 ;linha
mov ah, 0Ch
laco1:
lodsb
int 10h
inc cx
cmp cx, 40
je compara_eh_quinze1
jmp laco1
done1:
jmp $
compara_eh_quinze1:
cmp dx, 39
je done1
mov cx, 0
inc dx
jmp laco1
exit:
|
reference_asm/battle_menu_layout.asm | tashiww/maten_tools | 1 | 5775 | <reponame>tashiww/maten_tools<gh_stars>1-10
; ########################################################################################
; # Generated by the active disassembly feature of the Exodus emulation platform
; #
; # Battle menu adjustments!
; #
; # Creation Date: 2021-1-3 14:24:36
; # Analysis Region: 0x0000D894 - 0x0000DAFE
; ########################################################################################
window_tile_width equr d2 ; for window drawing routines
window_tile_height equr d3 ;
org $0000D894
MOVEM.l D4/D3/D2/D1/D0, -(A7)
MOVEQ #2, D4
BRA.b recolor_window_border
MOVEM.l D4/D3/D2/D1/D0, -(A7)
MOVEQ #1, D4
BRA.b recolor_window_border
MOVEM.l D4/D3/D2/D1/D0, -(A7)
CLR.w D4
recolor_window_border:
LSL.w #2, D2
MOVE.w loc_0000D928(PC,D2.w), D0
MOVE.w loc_0000D92A(PC,D2.w), D1
MOVEQ #8, D2
MOVEQ #5, D3
JSR $00003252 ; recolors window border somehow ... register values 1, 3, 8, 5 == red? but also white ??
MOVEM.l (A7)+, D0/D1/D2/D3/D4
RTS
loc_0000D8C4:
dc.b $FF, $FF, $E2, $00, $E2, $01, $E2, $02, $E5, $2F ;0x0 (0x0000D8C4-0x0000D8CE, Entry count: 0xA) [Unknown data]
dc.w $0002
dc.b $E2, $07, $E2, $00, $E5, $2F, $E5, $2F ;0x0 (0x0000D8D0-0x0000D8D8, Entry count: 0x8) [Unknown data]
dc.w $0001
dc.b $E2, $05, $E2, $06, $E5, $2F, $E5, $2F ;0x0 (0x0000D8DA-0x0000D8E2, Entry count: 0x8) [Unknown data]
dc.w $000C
dc.b $E2, $13, $E2, $14, $E2, $15, $E2, $03 ;0x0 (0x0000D8E4-0x0000D8EC, Entry count: 0x8) [Unknown data]
dc.w $000D
dc.b $E2, $13, $E2, $14, $E2, $15, $E2, $03 ;0x0 (0x0000D8EE-0x0000D8F6, Entry count: 0x8) [Unknown data]
dc.w $0005
dc.b $E2, $0F, $E2, $10, $E2, $11, $E5, $2F ;0x0 (0x0000D8F8-0x0000D900, Entry count: 0x8) [Unknown data]
dc.w $0004
dc.b $E2, $0A, $E2, $0B, $E2, $0C, $E2, $0B ;0x0 (0x0000D902-0x0000D90A, Entry count: 0x8) [Unknown data]
dc.w $0006
dc.b $E2, $08, $E2, $0D, $E2, $02, $E2, $0E ;0x0 (0x0000D90C-0x0000D914, Entry count: 0x8) [Unknown data]
dc.w $0003
dc.b $E2, $12, $E2, $02, $E2, $12, $E2, $04 ;0x0 (0x0000D916-0x0000D91E, Entry count: 0x8) [Unknown data]
dc.w $0000
dc.b $E2, $03, $E2, $04, $E5, $2F, $E5, $2F ;0x0 (0x0000D920-0x0000D928, Entry count: 0x8) [Unknown data]
loc_0000D928:
dc.w $0001
loc_0000D92A:
dc.w $0003
dc.b $00, $1F, $00, $03, $00, $01, $00, $09, $00, $1F, $00, $09, $00, $01, $00, $0F, $00, $1F, $00, $0F ;0x0 (0x0000D92C-0x0000D940, Entry count: 0x14) [Unknown data]
loc_0000D940:
dc.b $3F, $3F, $3F, $3F, $3F, $3F, $3F, $00 ;0x0 (0x0000D940-0x0000D948, Entry count: 0x8) [Unknown data]
loc_0000D948:
dc.b $28, $30, $00, $00 ;0x0 (0x0000D948-0x0000D94C, Entry count: 0x4) [Unknown data]
loc_0000D94C:
dc.b $2D, $30, $00, $00 ;0x0 (0x0000D94C-0x0000D950, Entry count: 0x4) [Unknown data]
org $d950
MOVEM.l A6/A1/A0/D7/D6/D5/D4/D3/D2/D1/D0, -(A7)
MOVE.w D2, D7
MULU.w #$0030, D7
MOVEA.l $00FFDAB8, A6 ; stores pointers to ram offsets for enemy/players?
ADDA.l D7, A6
TST.b (A6)
BEQ.w loc_0000DA38
MOVE.w D2, D7
LSL.w #2, D7
MOVE.w loc_0000D928(PC,D7.w), D6
MOVE.w loc_0000D92A(PC,D7.w), D7
MOVE.w D6, D0
MOVE.w D7, D1
BTST.l #0, D2
BEQ.b loc_0000D980
ADDQ.w #1, D0 ;Predicted (Code-scan)
loc_0000D980:
LEA loc_0000D940(PC), A0 ; loads blank spaces to clear npc name
JSR write_label_8x8 ; write_label_8x8
MOVE.w D6, x_tile_offset
MOVE.w D7, y_tile_offset
MOVEQ #8, window_tile_width
MOVEQ #5, window_tile_height
MOVEQ #3, D4
JSR draw_small_window
ADDQ.w #1, D6
MOVEA.l $20(A6), A0 ; party member name string location
JSR $0000352A ; nothing seemed to happen?
MOVEQ #6, y_tile_offset
SUB.w D0, y_tile_offset
LSR.w #1, y_tile_offset
MOVE.w D6, x_tile_offset
ADD.w D1, x_tile_offset
MOVE.w D7, y_tile_offset ; all of this fiddling is probably to set up having multiple party members
JSR write_label_8x8
MOVE.w D6, x_tile_offset
MOVE.w D7, y_tile_offset
LEA loc_0000D948(PC), A0 ; HP
ADDQ.w #2, y_tile_offset
JSR draw_label_8x8
LEA loc_0000D94C(PC), A0 ; MP
ADDQ.w #1, y_tile_offset
JSR draw_label_8x8
MOVE.w D6, x_tile_offset
ADDQ.w #1, x_tile_offset
MOVE.w D7, y_tile_offset
ADDQ.w #1, y_tile_offset
LEA loc_0000D8C4(PC), A1
TST.w $2(A6) ; check for 0hp lol
BEQ.b special_status_printer
MOVE.w $16(A6), D3 ; load status effects? $34c8+$16 = $34de
MOVEQ #8, D4
check_for_status_effects:
ADDQ.l #8, A1 ; skip past シボウ
ADDQ.l #2, A1 ; and there was an initial FF for some reason.. maybe the bit to check
MOVE.w (A1), D5 ; bit to check for status
BTST.l D5, D3 ; maaybe checking status effects?
BNE.b special_status_printer
DBF D4, check_for_status_effects ; there are 8 of them?!
BRA.b print_hp_mp_vals
special_status_printer:
ADDQ.l #2, A1
MOVEQ #3, D3 ; only write 4 letters (works for シボウ and dead...
MOVEA.w #$C000, A0
draw_status_effect:
; i probably want to bypass this special routine entirely and just use the normal write_label_8x8 routine
MOVE.w (A1)+, D2 ; $e200 for シ dead? $e201 for ボ how did they get the dakuten attached? wow at vram $4000, block $100 it has an extra alphabet for status effects
JSR write_to_vdp
ADDQ.w #1, x_tile_offset
DBF D3, draw_status_effect ; draw 4 letters
; if no status effects, perhaps?
print_hp_mp_vals:
MOVE.w D6, x_tile_offset
ADDQ.w #2, x_tile_offset
MOVE.w D7, y_tile_offset
ADDQ.w #2, y_tile_offset
CLR.l D2
MOVE.w $2(A6), D2 ; current hp
MOVEQ #4, D3 ; digit padding? mysterious
JSR draw_value_8x8
ADDQ.w #1, y_tile_offset
CLR.l D2
MOVE.w $6(A6), D2 ; max hp
MOVEQ #4, D3
JSR draw_value_8x8
loc_0000DA38:
MOVEM.l (A7)+, D0/D1/D2/D3/D4/D5/D6/D7/A0/A1/A6
RTS ; returned way back to $14b0c? that's some deep code...
MOVEM.l A6/A5/A0/D7/D6/D5/D4/D3/D2/D1/D0, -(A7)
MOVEA.l $00FFDAB4, A6
MOVEA.l A6, A5
ADDA.w #$01B0, A5
CLR.l (A5)
CLR.l $4(A5)
CLR.l $8(A5)
MOVEQ #8, D7
loc_0000DA5A:
MOVE.w (A6), D0
BEQ.b loc_0000DA80
TST.w $2(A6)
BEQ.b loc_0000DA80
MOVEQ #2, D6
CLR.w D5
loc_0000DA68:
MOVE.w (A5,D5.w), D1
BEQ.b loc_0000DA78
CMP.w D1, D0
BEQ.b loc_0000DA78
ADDQ.w #4, D5 ;Predicted (Code-scan)
DBF D6, loc_0000DA68 ;Predicted (Code-scan)
loc_0000DA78:
MOVE.w D0, (A5,D5.w)
ADDQ.w #1, $2(A5,D5.w)
loc_0000DA80:
ADDA.w #$0030, A6
DBF D7, loc_0000DA5A
MOVEQ #2, D6
MOVEQ #2, D7
CLR.w D5
; $da8e originally
draw_enemy_window:
TST.w (A5,D5.w) ; check if enemy id is set
BEQ.b erase_dead_window ; if no more enemies...
MOVE.w D7, x_tile_offset
MOVEQ #$00000014, y_tile_offset
MOVEQ #$0000000C, window_tile_width
MOVEQ #4, D3
MOVEQ #3, D4
JSR draw_small_window
; i think we're getting enemy name here?
MOVE.w (A5,D5.w), D2 ; enemy id
CMPI.w #7, D2 ; check for enemy arnas! when you have to fight him :>
BNE.b regular_enemy_branch
MOVEQ #1, D2 ;Predicted (Code-scan)
JSR $0000A1DC ;Predicted (Code-scan) ; must get npc name string from npc id
BRA.b draw_enemy_label ;Predicted (Code-scan)
regular_enemy_branch:
BSR.w $db5c ; get enemy name
draw_enemy_label:
ADDQ.w #1, x_tile_offset
ADDQ.w #2, y_tile_offset ; two rows, in case of dakutens
JSR write_label_8x8 ; writes enemy name
CLR.l D2
MOVE.w $2(A5,D5.w), D2 ; quantity of current enemy
ADDI.w #9, x_tile_offset ; scoot over 9 (right edge of window)
MOVEQ #1, D3 ; digits? offsets the number further to the right...
JSR draw_value_8x8 ; draw # of current enemy
BRA.b increment_window_position
erase_dead_window:
MOVE.w D7, D0
MOVEQ #$00000014, y_tile_offset
MOVEQ #$0000000C, window_tile_width
MOVEQ #4, D3
CLR.w D4
JSR $00001CFE ; probably draws something to vram ? seems to blank the next window spot, in case the monster died
increment_window_position:
ADDI.w #$000C, D7 ; becomes x offset on later loops
ADDQ.w #4, D5 ; enemy ids are 4 bytes apart, hence $4
DBF D6, draw_enemy_window ; loop until all enemy windows are displayed, starts at 3 somewhere
MOVEM.l (A7)+, D0/D1/D2/D3/D4/D5/D6/D7/A0/A5/A6
RTS ; returns to drawing the command selection menu
|
oeis/006/A006342.asm | neoneye/loda-programs | 11 | 17452 | ; A006342: Coloring a circuit with 4 colors.
; 1,1,4,10,31,91,274,820,2461,7381,22144,66430,199291,597871,1793614,5380840,16142521,48427561,145282684,435848050,1307544151,3922632451,11767897354,35303692060,105911076181,317733228541,953199685624,2859599056870,8578797170611,25736391511831,77209174535494,231627523606480,694882570819441,2084647712458321,6253943137374964,18761829412124890,56285488236374671,168856464709124011,506569394127372034,1519708182382116100,4559124547146348301,13677373641439044901,41032120924317134704,123096362772951404110
mov $1,3
pow $1,$0
div $1,8
mul $1,3
add $1,1
mov $0,$1
|
tools-src/gnu/gcc/gcc/ada/targparm.adb | enfoTek/tomato.linksys.e2000.nvram-mod | 80 | 20478 | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- T A R G P A R M --
-- --
-- B o d y --
-- --
-- $Revision$
-- --
-- Copyright (C) 1999-2001 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT 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 distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Namet; use Namet;
with Output; use Output;
with Sinput; use Sinput;
with Sinput.L; use Sinput.L;
with Fname.UF; use Fname.UF;
with Types; use Types;
package body Targparm is
type Targparm_Tags is
(AAM, CLA, DEN, DSP, FEL, HIM, LSI, MOV,
MRN, SCD, SCP, SNZ, UAM, VMS, ZCD, ZCG, ZCF);
Targparm_Flags : array (Targparm_Tags) of Boolean := (others => False);
-- Flag is set True if corresponding parameter is scanned
AAM_Str : aliased constant Source_Buffer := "AAMP";
CLA_Str : aliased constant Source_Buffer := "Command_Line_Args";
DEN_Str : aliased constant Source_Buffer := "Denorm";
DSP_Str : aliased constant Source_Buffer := "Functions_Return_By_DSP";
FEL_Str : aliased constant Source_Buffer := "Frontend_Layout";
HIM_Str : aliased constant Source_Buffer := "High_Integrity_Mode";
LSI_Str : aliased constant Source_Buffer := "Long_Shifts_Inlined";
MOV_Str : aliased constant Source_Buffer := "Machine_Overflows";
MRN_Str : aliased constant Source_Buffer := "Machine_Rounds";
SCD_Str : aliased constant Source_Buffer := "Stack_Check_Default";
SCP_Str : aliased constant Source_Buffer := "Stack_Check_Probes";
SNZ_Str : aliased constant Source_Buffer := "Signed_Zeros";
UAM_Str : aliased constant Source_Buffer := "Use_Ada_Main_Program_Name";
VMS_Str : aliased constant Source_Buffer := "OpenVMS";
ZCD_Str : aliased constant Source_Buffer := "ZCX_By_Default";
ZCG_Str : aliased constant Source_Buffer := "GCC_ZCX_Support";
ZCF_Str : aliased constant Source_Buffer := "Front_End_ZCX_Support";
type Buffer_Ptr is access constant Source_Buffer;
Targparm_Str : array (Targparm_Tags) of Buffer_Ptr :=
(AAM_Str'Access,
CLA_Str'Access,
DEN_Str'Access,
DSP_Str'Access,
FEL_Str'Access,
HIM_Str'Access,
LSI_Str'Access,
MOV_Str'Access,
MRN_Str'Access,
SCD_Str'Access,
SCP_Str'Access,
SNZ_Str'Access,
UAM_Str'Access,
VMS_Str'Access,
ZCD_Str'Access,
ZCG_Str'Access,
ZCF_Str'Access);
---------------------------
-- Get_Target_Parameters --
---------------------------
procedure Get_Target_Parameters is
use ASCII;
S : Source_File_Index;
N : Name_Id;
T : Source_Buffer_Ptr;
P : Source_Ptr;
Z : Source_Ptr;
Fatal : Boolean := False;
-- Set True if a fatal error is detected
Result : Boolean;
-- Records boolean from system line
begin
Name_Buffer (1 .. 6) := "system";
Name_Len := 6;
N := File_Name_Of_Spec (Name_Find);
S := Load_Source_File (N);
if S = No_Source_File then
Write_Line ("fatal error, run-time library not installed correctly");
Write_Str ("cannot locate file ");
Write_Line (Name_Buffer (1 .. Name_Len));
raise Unrecoverable_Error;
-- This must always be the first source file read, and we have defined
-- a constant Types.System_Source_File_Index as 1 to reflect this.
else
pragma Assert (S = System_Source_File_Index);
null;
end if;
P := Source_First (S);
Z := Source_Last (S);
T := Source_Text (S);
while T (P .. P + 10) /= "end System;" loop
for K in Targparm_Tags loop
if T (P + 3 .. P + 2 + Targparm_Str (K)'Length) =
Targparm_Str (K).all
then
P := P + 3 + Targparm_Str (K)'Length;
if Targparm_Flags (K) then
Set_Standard_Error;
Write_Line
("fatal error: system.ads is incorrectly formatted");
Write_Str ("duplicate line for parameter: ");
for J in Targparm_Str (K)'Range loop
Write_Char (Targparm_Str (K).all (J));
end loop;
Write_Eol;
Set_Standard_Output;
Fatal := True;
else
Targparm_Flags (K) := True;
end if;
while T (P) /= ':' or else T (P + 1) /= '=' loop
P := P + 1;
end loop;
P := P + 2;
while T (P) = ' ' loop
P := P + 1;
end loop;
Result := (T (P) = 'T');
case K is
when AAM => AAMP_On_Target := Result;
when CLA => Command_Line_Args_On_Target := Result;
when DEN => Denorm_On_Target := Result;
when DSP => Functions_Return_By_DSP_On_Target := Result;
when FEL => Frontend_Layout_On_Target := Result;
when HIM => High_Integrity_Mode_On_Target := Result;
when LSI => Long_Shifts_Inlined_On_Target := Result;
when MOV => Machine_Overflows_On_Target := Result;
when MRN => Machine_Rounds_On_Target := Result;
when SCD => Stack_Check_Default_On_Target := Result;
when SCP => Stack_Check_Probes_On_Target := Result;
when SNZ => Signed_Zeros_On_Target := Result;
when UAM => Use_Ada_Main_Program_Name_On_Target := Result;
when VMS => OpenVMS_On_Target := Result;
when ZCD => ZCX_By_Default_On_Target := Result;
when ZCG => GCC_ZCX_Support_On_Target := Result;
when ZCF => Front_End_ZCX_Support_On_Target := Result;
end case;
exit;
end if;
end loop;
while T (P) /= CR and then T (P) /= LF loop
P := P + 1;
exit when P >= Z;
end loop;
while T (P) = CR or else T (P) = LF loop
P := P + 1;
exit when P >= Z;
end loop;
if P >= Z then
Set_Standard_Error;
Write_Line ("fatal error, system.ads not formatted correctly");
Set_Standard_Output;
raise Unrecoverable_Error;
end if;
end loop;
for K in Targparm_Tags loop
if not Targparm_Flags (K) then
Set_Standard_Error;
Write_Line
("fatal error: system.ads is incorrectly formatted");
Write_Str ("missing line for parameter: ");
for J in Targparm_Str (K)'Range loop
Write_Char (Targparm_Str (K).all (J));
end loop;
Write_Eol;
Set_Standard_Output;
Fatal := True;
end if;
end loop;
if Fatal then
raise Unrecoverable_Error;
end if;
end Get_Target_Parameters;
end Targparm;
|
WDL/eel2/asm-nseel-x64.asm | m1cl/synth | 2 | 21584 | ; THIS FILE AUTOGENERATED FROM asm-nseel-x86-gcc.c by a2x64.php
%define EEL_F_SIZE 8
%define TARGET_X64
SECTION .text
global nseel_asm_1pdd
nseel_asm_1pdd:
mov rdi, qword 0xFEFEFEFEFEFEFEFE
%ifdef TARGET_X64
sub rsp, 128
fstp qword [rsp]
movq xmm0, [rsp]
%ifdef AMD64ABI
mov r15, rsi
call rdi
mov rsi, r15
%else
call rdi
%endif
movq [rsp], xmm0
fld qword [rsp]
add rsp, 128
%else
sub rsp, 16
fstp qword [rsp]
call rdi
add rsp, 16
%endif
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_1pdd_end
nseel_asm_1pdd_end:
global nseel_asm_2pdd
nseel_asm_2pdd:
mov rdi, qword 0xFEFEFEFEFEFEFEFE
%ifdef TARGET_X64
sub rsp, 128
fstp qword [rsp+8]
fstp qword [rsp]
movq xmm1, [rsp+8]
movq xmm0, [rsp]
%ifdef AMD64ABI
mov r15, rsi
call rdi
mov rsi, r15
%else
call rdi
%endif
movq [rsp], xmm0
fld qword [rsp]
add rsp, 128
%else
sub rsp, 16
fstp qword [rsp+8]
fstp qword [rsp]
call rdi
add rsp, 16
%endif
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_2pdd_end
nseel_asm_2pdd_end:
global nseel_asm_2pdds
nseel_asm_2pdds:
mov rax, qword 0xFEFEFEFEFEFEFEFE
%ifdef TARGET_X64
sub rsp, 128
fstp qword [rsp]
movq xmm0, [rdi]
movq xmm1, [rsp]
%ifdef AMD64ABI
mov r15, rsi
mov r14, rdi
call rax
mov rsi, r15
movq [r14], xmm0
mov rax, r14 ; set return value
%else
call rax
movq [rdi], xmm0
mov rax, rdi ; set return value
%endif
add rsp, 128
%else
sub rsp, 8
fstp qword [rsp]
push dword [rdi+4] ; push parameter
push dword [rdi] ; push the rest of the parameter
call rax
add rsp, 16
fstp qword [rdi] ; store result
mov rax, rdi ; set return value
%endif
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_2pdds_end
nseel_asm_2pdds_end:
global nseel_asm_exec2
nseel_asm_exec2:
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_exec2_end
nseel_asm_exec2_end:
global nseel_asm_invsqrt
nseel_asm_invsqrt:
mov rdx, 0x5f3759df
fst dword [rsi]
%ifdef TARGET_X64
mov rax, qword 0xFEFEFEFEFEFEFEFE
sub rcx, rcx
fmul qword [rax]
%else
fmul qword [qword 0xFEFEFEFEFEFEFEFE]
%endif
mov ecx, dword [rsi]
sar rcx, 1
sub rdx, rcx
mov dword [rsi], edx
fmul dword [rsi]
fmul dword [rsi]
%ifdef TARGET_X64
mov rax, qword 0xFEFEFEFEFEFEFEFE
fadd qword [rax]
%else
fadd qword [qword 0xFEFEFEFEFEFEFEFE]
%endif
fmul dword [rsi]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_invsqrt_end
nseel_asm_invsqrt_end:
global nseel_asm_sin
nseel_asm_sin:
fsin
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_sin_end
nseel_asm_sin_end:
global nseel_asm_cos
nseel_asm_cos:
fcos
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_cos_end
nseel_asm_cos_end:
global nseel_asm_tan
nseel_asm_tan:
fptan
fstp st0
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_tan_end
nseel_asm_tan_end:
global nseel_asm_sqr
nseel_asm_sqr:
fmul st0, st0
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_sqr_end
nseel_asm_sqr_end:
global nseel_asm_sqrt
nseel_asm_sqrt:
fabs
fsqrt
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_sqrt_end
nseel_asm_sqrt_end:
global nseel_asm_log
nseel_asm_log:
fldln2
fxch
fyl2x
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_log_end
nseel_asm_log_end:
global nseel_asm_log10
nseel_asm_log10:
fldlg2
fxch
fyl2x
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_log10_end
nseel_asm_log10_end:
global nseel_asm_abs
nseel_asm_abs:
fabs
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_abs_end
nseel_asm_abs_end:
global nseel_asm_assign
nseel_asm_assign:
%ifdef TARGET_X64
mov rdx, qword [rax]
mov rcx, rdx
shr rdx, 32
and rdx, 0x7FF00000
jz label_0
cmp rdx, 0x7FF00000
je label_0
jmp label_1
label_0:
sub rcx, rcx
label_1:
mov qword [rdi], rcx
mov rax, rdi
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%else
mov edx, dword [rax+4]
mov ecx, dword [rax]
and rdx, 0x7ff00000
jz label_2 ; if exponent=zero, zero
cmp rdx, 0x7ff00000
je label_2 ; if exponent=all 1s, zero
mov edx, dword [rax+4] ; reread
jmp label_3
label_2:
sub rcx, rcx
sub rdx, rdx
label_3:
mov dword [rdi], ecx
mov dword [rdi+4], edx
mov rax, rdi
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%endif
global nseel_asm_assign_end
nseel_asm_assign_end:
global nseel_asm_assign_fromfp
nseel_asm_assign_fromfp:
%ifdef TARGET_X64
fstp qword [rdi]
mov rdx, qword [rdi]
mov r15, 0x7FF0000000000000
and rdx, r15
jz label_4
cmp rdx, r15
jne label_5
label_4:
sub rcx, rcx
mov qword [rdi], rcx
label_5:
mov rax, rdi
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%else
fstp qword [rdi]
mov edx, dword [rdi+4]
and rdx, 0x7ff00000
jz label_6
cmp rdx, 0x7ff00000
jne label_7
label_6:
fldz
fstp qword [rdi]
label_7:
mov rax, rdi
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%endif
global nseel_asm_assign_fromfp_end
nseel_asm_assign_fromfp_end:
global nseel_asm_assign_fast
nseel_asm_assign_fast:
%ifdef TARGET_X64
mov rdx, qword [rax]
mov qword [rdi], rdx
mov rax, rdi
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%else
mov edx, dword [rax+4]
mov ecx, dword [rax]
mov dword [rdi], ecx
mov dword [rdi+4], edx
mov rax, rdi
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%endif
global nseel_asm_assign_fast_end
nseel_asm_assign_fast_end:
global nseel_asm_add
nseel_asm_add:
fadd
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_add_end
nseel_asm_add_end:
global nseel_asm_add_op
nseel_asm_add_op:
fadd qword [rdi]
mov rax, rdi
fstp qword [rdi]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_add_op_end
nseel_asm_add_op_end:
global nseel_asm_sub
nseel_asm_sub:
%ifdef __GNUC__
fsubr ; gnuc has fsub/fsubr backwards, ack
%else
fsub
%endif
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_sub_end
nseel_asm_sub_end:
global nseel_asm_sub_op
nseel_asm_sub_op:
fsubr qword [rdi]
mov rax, rdi
fstp qword [rdi]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_sub_op_end
nseel_asm_sub_op_end:
global nseel_asm_mul
nseel_asm_mul:
fmul
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_mul_end
nseel_asm_mul_end:
global nseel_asm_mul_op
nseel_asm_mul_op:
fmul qword [rdi]
mov rax, rdi
fstp qword [rdi]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_mul_op_end
nseel_asm_mul_op_end:
global nseel_asm_div
nseel_asm_div:
%ifdef __GNUC__
fdivr ; gcc inline asm seems to have fdiv/fdivr backwards
%else
fdiv
%endif
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_div_end
nseel_asm_div_end:
global nseel_asm_div_op
nseel_asm_div_op:
fld qword [rdi]
%ifndef __GNUC__
fxch ; gcc inline asm seems to have fdiv/fdivr backwards
%endif
fdiv
mov rax, rdi
fstp qword [rdi]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_div_op_end
nseel_asm_div_op_end:
global nseel_asm_mod
nseel_asm_mod:
fabs
fisttp dword [rsi]
fabs
fisttp dword [rsi+4]
xor rdx, rdx
%ifdef TARGET_X64
sub rax, rax
%endif
cmp dword [rsi], 0
je label_8 ; skip devide, set return to 0
mov eax, dword [rsi+4]
div dword [rsi]
label_8:
mov dword [rsi], edx
fild dword [rsi]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_mod_end
nseel_asm_mod_end:
global nseel_asm_shl
nseel_asm_shl:
fisttp dword [rsi]
fisttp dword [rsi+4]
mov ecx, dword [rsi]
mov eax, dword [rsi+4]
shl rax, cl
mov dword [rsi], eax
fild dword [rsi]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_shl_end
nseel_asm_shl_end:
global nseel_asm_shr
nseel_asm_shr:
fisttp dword [rsi]
fisttp dword [rsi+4]
mov ecx, dword [rsi]
mov eax, dword [rsi+4]
sar rax, cl
mov dword [rsi], eax
fild dword [rsi]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_shr_end
nseel_asm_shr_end:
global nseel_asm_mod_op
nseel_asm_mod_op:
fld qword [rdi]
fxch
fabs
fisttp dword [rdi]
fabs
fisttp dword [rsi]
%ifdef TARGET_X64
sub rax, rax
%endif
xor rdx, rdx
cmp dword [rdi], 0
je label_9 ; skip devide, set return to 0
mov eax, dword [rsi]
div dword [rdi]
label_9:
mov dword [rdi], edx
fild dword [rdi]
mov rax, rdi
fstp qword [rdi]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_mod_op_end
nseel_asm_mod_op_end:
global nseel_asm_or
nseel_asm_or:
fisttp qword [rsi]
fisttp qword [rsi+8]
%ifdef TARGET_X64
mov rdi, qword [rsi+8]
or qword [rsi], rdi
%else
mov edi, dword [rsi+8]
mov ecx, dword [rsi+12]
or dword [rsi], edi
or dword [rsi+4], ecx
%endif
fild qword [rsi]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_or_end
nseel_asm_or_end:
global nseel_asm_or0
nseel_asm_or0:
frndint
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_or0_end
nseel_asm_or0_end:
global nseel_asm_or_op
nseel_asm_or_op:
fld qword [rdi]
fxch
fisttp qword [rdi]
fisttp qword [rsi]
%ifdef TARGET_X64
mov rax, qword [rsi]
or qword [rdi], rax
%else
mov eax, dword [rsi]
mov ecx, dword [rsi+4]
or dword [rdi], eax
or dword [rdi+4], ecx
%endif
fild qword [rdi]
mov rax, rdi
fstp qword [rdi]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_or_op_end
nseel_asm_or_op_end:
global nseel_asm_xor
nseel_asm_xor:
fisttp qword [rsi]
fisttp qword [rsi+8]
%ifdef TARGET_X64
mov rdi, qword [rsi+8]
xor qword [rsi], rdi
%else
mov edi, dword [rsi+8]
mov ecx, dword [rsi+12]
xor dword [rsi], edi
xor dword [rsi+4], ecx
%endif
fild qword [rsi]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_xor_end
nseel_asm_xor_end:
global nseel_asm_xor_op
nseel_asm_xor_op:
fld qword [rdi]
fxch
fisttp qword [rdi]
fisttp qword [rsi]
%ifdef TARGET_X64
mov rax, qword [rsi]
xor qword [rdi], rax
%else
mov eax, dword [rsi]
mov ecx, dword [rsi+4]
xor dword [rdi], eax
xor dword [rdi+4], ecx
%endif
fild qword [rdi]
mov rax, rdi
fstp qword [rdi]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_xor_op_end
nseel_asm_xor_op_end:
global nseel_asm_and
nseel_asm_and:
fisttp qword [rsi]
fisttp qword [rsi+8]
%ifdef TARGET_X64
mov rdi, qword [rsi+8]
and qword [rsi], rdi
%else
mov edi, dword [rsi+8]
mov ecx, dword [rsi+12]
and dword [rsi], edi
and dword [rsi+4], ecx
%endif
fild qword [rsi]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_and_end
nseel_asm_and_end:
global nseel_asm_and_op
nseel_asm_and_op:
fld qword [rdi]
fxch
fisttp qword [rdi]
fisttp qword [rsi]
%ifdef TARGET_X64
mov rax, qword [rsi]
and qword [rdi], rax
%else
mov eax, dword [rsi]
mov ecx, dword [rsi+4]
and dword [rdi], eax
and dword [rdi+4], ecx
%endif
fild qword [rdi]
mov rax, rdi
fstp qword [rdi]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_and_op_end
nseel_asm_and_op_end:
global nseel_asm_uplus
nseel_asm_uplus:
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_uplus_end
nseel_asm_uplus_end:
global nseel_asm_uminus
nseel_asm_uminus:
fchs
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_uminus_end
nseel_asm_uminus_end:
global nseel_asm_sign
nseel_asm_sign:
%ifdef TARGET_X64
fst qword [rsp+-8]
mov rdx, qword [rsp+-8]
mov rcx, 0x7FFFFFFFFFFFFFFF
test rdx, rcx
jz label_10 ; zero zero, return the value passed directly
; calculate sign
inc rcx ; rcx becomes 0x80000...
fstp st0
fld1
test rdx, rcx
jz label_10
fchs
label_10:
%else
fst -dword [rsp+4]
mov ecx, -dword [rsp+4]
mov rdx, 0x7FFFFFFF
test rcx, rdx
jz label_11 ; zero zero, return the value passed directly
; calculate sign
inc rdx ; edx becomes 0x8000...
fstp st0
fld1
test rcx, rdx
jz label_11
fchs
label_11:
%endif
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_sign_end
nseel_asm_sign_end:
global nseel_asm_bnot
nseel_asm_bnot:
test rax, rax
setz al
and rax, 0xff
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_bnot_end
nseel_asm_bnot_end:
global nseel_asm_if
nseel_asm_if:
%ifdef TARGET_X64
sub rsp, 8
test rax, rax
jz label_12
mov rax, qword 0xFEFEFEFEFEFEFEFE
call rax
jmp label_13
label_12:
mov rax, qword 0xFEFEFEFEFEFEFEFE
call rax
label_13:
add rsp, 8
%else
sub rsp, 12
test rax, rax
jz label_14
mov rax, qword 0xFEFEFEFEFEFEFEFE
call rax
jmp label_15
label_14:
mov rax, qword 0xFEFEFEFEFEFEFEFE
call rax
label_15:
add rsp, 12
%endif
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_if_end
nseel_asm_if_end:
global nseel_asm_repeat
nseel_asm_repeat:
%ifdef TARGET_X64
fisttp qword [rsi]
mov rcx, qword [rsi]
%else
fisttp dword [rsi]
mov ecx, dword [rsi]
%endif
cmp rcx, 1
jl label_16
cmp rcx, 10000000
jl label_17
mov rcx, 10000000
label_17:
mov rdx, qword 0xFEFEFEFEFEFEFEFE
%ifdef TARGET_X64
sub rsp, 8 ; keep stack aligned to 16 byte
%else
sub rsp, 4 ; keep stack aligned to 16 byte
%endif
push rsi ; revert back to last temp workspace
push rcx
call rdx
pop rcx
pop rsi
%ifdef TARGET_X64
add rsp, 8 ; keep stack aligned to 16 byte
%else
add rsp, 4 ; keep stack aligned to 16 byte
%endif
dec rcx
jnz label_17
label_16:
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_repeat_end
nseel_asm_repeat_end:
global nseel_asm_fcall
nseel_asm_fcall:
mov rdx, qword 0xFEFEFEFEFEFEFEFE
%ifdef TARGET_X64
sub rsp, 8
call rdx
add rsp, 8
%else
sub rsp, 12 ; keep stack 16 byte aligned, 4 bytes for return address
call rdx
add rsp, 12
%endif
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_fcall_end
nseel_asm_fcall_end:
global nseel_asm_repeatwhile
nseel_asm_repeatwhile:
mov rcx, 10000000
label_18:
mov rdx, qword 0xFEFEFEFEFEFEFEFE
%ifdef TARGET_X64
sub rsp, 8 ; keep stack aligned -- required on x86 and x64
%else
sub rsp, 4 ; keep stack aligned -- required on x86 and x64
%endif
push rsi ; revert back to last temp workspace
push rcx
call rdx
pop rcx
pop rsi
%ifdef TARGET_X64
add rsp, 8 ; keep stack aligned -- required on x86 and x64
%else
add rsp, 4 ; keep stack aligned -- required on x86 and x64
%endif
test rax, rax
jz label_19
dec rcx
jnz label_18
label_19:
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_repeatwhile_end
nseel_asm_repeatwhile_end:
global nseel_asm_band
nseel_asm_band:
test rax, rax
jz label_20
mov rcx, qword 0xFEFEFEFEFEFEFEFE
%ifdef TARGET_X64
sub rsp, 8
%else
sub rsp, 12
%endif
call rcx
%ifdef TARGET_X64
add rsp, 8
%else
add rsp, 12
%endif
label_20:
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_band_end
nseel_asm_band_end:
global nseel_asm_bor
nseel_asm_bor:
test rax, rax
jnz label_21
mov rcx, qword 0xFEFEFEFEFEFEFEFE
%ifdef TARGET_X64
sub rsp, 8
%else
sub rsp, 12
%endif
call rcx
%ifdef TARGET_X64
add rsp, 8
%else
add rsp, 12
%endif
label_21:
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_bor_end
nseel_asm_bor_end:
global nseel_asm_equal
nseel_asm_equal:
fsub
fabs
%ifdef TARGET_X64
mov rax, qword 0xFEFEFEFEFEFEFEFE
fcomp qword [rax] ; [g_closefact]
%else
fcomp qword [qword 0xFEFEFEFEFEFEFEFE] ; [g_closefact]
%endif
fstsw ax
and rax, 256 ; old behavior: if 256 set, true (NaN means true)
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_equal_end
nseel_asm_equal_end:
global nseel_asm_notequal
nseel_asm_notequal:
fsub
fabs
%ifdef TARGET_X64
mov rax, qword 0xFEFEFEFEFEFEFEFE
fcomp qword [rax] ; [g_closefact]
%else
fcomp qword [qword 0xFEFEFEFEFEFEFEFE] ; [g_closefact]
%endif
fstsw ax
and rax, 256
xor rax, 256 ; old behavior: if 256 set, FALSE (NaN makes for false)
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_notequal_end
nseel_asm_notequal_end:
global nseel_asm_above
nseel_asm_above:
fcompp
fstsw ax
and rax, 1280 ; (1024+256) old behavior: NaN would mean 1, preserve that
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_above_end
nseel_asm_above_end:
global nseel_asm_beloweq
nseel_asm_beloweq:
fcompp
fstsw ax
and rax, 256 ; old behavior: NaN would be 0 (ugh)
xor rax, 256
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_beloweq_end
nseel_asm_beloweq_end:
global nseel_asm_booltofp
nseel_asm_booltofp:
test rax, rax
jz label_22
fld1
jmp label_23
label_22:
fldz
label_23:
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_booltofp_end
nseel_asm_booltofp_end:
global nseel_asm_fptobool
nseel_asm_fptobool:
fabs
%ifdef TARGET_X64
mov rax, qword 0xFEFEFEFEFEFEFEFE
fcomp qword [rax] ; [g_closefact]
%else
fcomp qword [qword 0xFEFEFEFEFEFEFEFE] ; [g_closefact]
%endif
fstsw ax
and rax, 256
xor rax, 256
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_fptobool_end
nseel_asm_fptobool_end:
global nseel_asm_min
nseel_asm_min:
fld qword [rdi]
fcomp qword [rax]
push rax
fstsw ax
test rax, 256
pop rax
jz label_24
mov rax, rdi
label_24:
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_min_end
nseel_asm_min_end:
global nseel_asm_max
nseel_asm_max:
fld qword [rdi]
fcomp qword [rax]
push rax
fstsw ax
test rax, 256
pop rax
jnz label_25
mov rax, rdi
label_25:
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_max_end
nseel_asm_max_end:
global nseel_asm_min_fp
nseel_asm_min_fp:
fcom
fstsw ax
test rax, 256
jz label_26
fxch
label_26:
fstp st0
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_min_fp_end
nseel_asm_min_fp_end:
global nseel_asm_max_fp
nseel_asm_max_fp:
fcom
fstsw ax
test rax, 256
jnz label_27
fxch
label_27:
fstp st0
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global nseel_asm_max_fp_end
nseel_asm_max_fp_end:
global _asm_generic3parm
_asm_generic3parm:
%ifdef TARGET_X64
%ifdef AMD64ABI
mov r15, rsi
mov rdx, rdi ; third parameter = parm
mov rdi, qword 0xFEFEFEFEFEFEFEFE ; first parameter= context
mov rsi, rcx ; second parameter = parm
mov rcx, rax ; fourth parameter = parm
mov rax, qword 0xFEFEFEFEFEFEFEFE ; call function
sub rsp, 128
call rax
mov rsi, r15
add rsp, 128
%else
mov rdx, rcx ; second parameter = parm
mov rcx, qword 0xFEFEFEFEFEFEFEFE ; first parameter= context
mov r8, rdi ; third parameter = parm
mov r9, rax ; fourth parameter = parm
mov rdi, qword 0xFEFEFEFEFEFEFEFE ; call function
sub rsp, 128
call rdi
add rsp, 128
%endif
%else
mov rdx, qword 0xFEFEFEFEFEFEFEFE
push rax ; push parameter
push rdi ; push parameter
push rcx ; push parameter
push rdx ; push context pointer
mov rdi, qword 0xFEFEFEFEFEFEFEFE
call rdi
add rsp, 16
%endif
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global _asm_generic3parm_end
_asm_generic3parm_end:
global _asm_generic3parm_retd
_asm_generic3parm_retd:
%ifdef TARGET_X64
%ifdef AMD64ABI
mov r15, rsi
mov rdx, rdi ; third parameter = parm
mov rdi, qword 0xFEFEFEFEFEFEFEFE ; first parameter= context
mov rsi, rcx ; second parameter = parm
mov rcx, rax ; fourth parameter = parm
mov rax, qword 0xFEFEFEFEFEFEFEFE ; call function
sub rsp, 128
call rax
mov rsi, r15
%else
mov rdx, rcx ; second parameter = parm
mov rcx, qword 0xFEFEFEFEFEFEFEFE ; first parameter= context
mov r8, rdi ; third parameter = parm
mov r9, rax ; fourth parameter = parm
mov rdi, qword 0xFEFEFEFEFEFEFEFE ; call function
sub rsp, 128
call rdi
%endif
movq [rsp], xmm0
fld qword [rsp]
add rsp, 128
%else
sub rsp, 16
mov dword [rsp+8], edi
mov rdx, qword 0xFEFEFEFEFEFEFEFE
mov rdi, qword 0xFEFEFEFEFEFEFEFE
mov dword [rsp+12], eax
mov dword [rsp+4], ecx
mov dword [rsp], edx
call rdi
add rsp, 16
%endif
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global _asm_generic3parm_retd_end
_asm_generic3parm_retd_end:
global _asm_generic2parm
_asm_generic2parm:
%ifdef TARGET_X64
%ifdef AMD64ABI
mov r15, rsi
mov rsi, rdi ; second parameter = parm
mov rdi, qword 0xFEFEFEFEFEFEFEFE ; first parameter= context
mov rdx, rax ; third parameter = parm
mov rcx, qword 0xFEFEFEFEFEFEFEFE ; call function
sub rsp, 128
call rcx
mov rsi, r15
add rsp, 128
%else
mov rcx, qword 0xFEFEFEFEFEFEFEFE ; first parameter= context
mov rdx, rdi ; second parameter = parm
mov r8, rax ; third parameter = parm
mov rdi, qword 0xFEFEFEFEFEFEFEFE ; call function
sub rsp, 128
call rdi
add rsp, 128
%endif
%else
mov rdx, qword 0xFEFEFEFEFEFEFEFE
sub rsp, 4 ; keep stack aligned
push rax ; push parameter
push rdi ; push parameter
push rdx ; push context pointer
mov rdi, qword 0xFEFEFEFEFEFEFEFE
call rdi
add rsp, 16
%endif
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global _asm_generic2parm_end
_asm_generic2parm_end:
global _asm_generic2parm_retd
_asm_generic2parm_retd:
%ifdef TARGET_X64
%ifdef AMD64ABI
mov r15, rsi
mov rsi, rdi ; second parameter = parm
mov rdi, qword 0xFEFEFEFEFEFEFEFE ; first parameter= context
mov rcx, qword 0xFEFEFEFEFEFEFEFE ; call function
mov rdx, rax ; third parameter = parm
sub rsp, 128
call rcx
mov rsi, r15
%else
mov rdx, rdi ; second parameter = parm
mov rcx, qword 0xFEFEFEFEFEFEFEFE ; first parameter= context
mov rdi, qword 0xFEFEFEFEFEFEFEFE ; call function
mov r8, rax ; third parameter = parm
sub rsp, 128
call rdi
%endif
movq [rsp], xmm0
fld qword [rsp]
add rsp, 128
%else
sub rsp, 16
mov rdx, qword 0xFEFEFEFEFEFEFEFE
mov rcx, qword 0xFEFEFEFEFEFEFEFE
mov dword [rsp], edx
mov dword [rsp+4], edi
mov dword [rsp+8], eax
call rcx
add rsp, 16
%endif
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global _asm_generic2parm_retd_end
_asm_generic2parm_retd_end:
global _asm_generic1parm
_asm_generic1parm:
%ifdef TARGET_X64
%ifdef AMD64ABI
mov rdi, qword 0xFEFEFEFEFEFEFEFE ; first parameter= context
mov r15, rsi
mov rsi, rax ; second parameter = parm
sub rsp, 128
mov rcx, qword 0xFEFEFEFEFEFEFEFE ; call function
call rcx
mov rsi, r15
add rsp, 128
%else
mov rcx, qword 0xFEFEFEFEFEFEFEFE ; first parameter= context
mov rdx, rax ; second parameter = parm
mov rdi, qword 0xFEFEFEFEFEFEFEFE ; call function
sub rsp, 128
call rdi
add rsp, 128
%endif
%else
mov rdx, qword 0xFEFEFEFEFEFEFEFE
sub rsp, 8 ; keep stack aligned
push rax ; push parameter
push rdx ; push context pointer
mov rdi, qword 0xFEFEFEFEFEFEFEFE
call rdi
add rsp, 16
%endif
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global _asm_generic1parm_end
_asm_generic1parm_end:
global _asm_generic1parm_retd
_asm_generic1parm_retd:
%ifdef TARGET_X64
sub rsp, 128
%ifdef AMD64ABI
mov rdi, qword 0xFEFEFEFEFEFEFEFE ; first parameter = context pointer
mov rcx, qword 0xFEFEFEFEFEFEFEFE ; function address
mov r15, rsi ; save rsi
mov rsi, rax ; second parameter = parameter
call rcx
mov rsi, r15
%else
mov rcx, qword 0xFEFEFEFEFEFEFEFE ; first parameter= context
mov rdi, qword 0xFEFEFEFEFEFEFEFE ; call function
mov rdx, rax ; second parameter = parm
call rdi
%endif
movq [rsp], xmm0
fld qword [rsp]
add rsp, 128
%else
mov rdx, qword 0xFEFEFEFEFEFEFEFE ; context pointer
mov rdi, qword 0xFEFEFEFEFEFEFEFE ; func-addr
sub rsp, 16
mov dword [rsp+4], eax ; push parameter
mov dword [rsp], edx ; push context pointer
call rdi
add rsp, 16
%endif
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global _asm_generic1parm_retd_end
_asm_generic1parm_retd_end:
global _asm_megabuf
_asm_megabuf:
%ifdef TARGET_X64
%ifdef AMD64ABI
mov rdi, qword 0xFEFEFEFEFEFEFEFE ; first parameter = context pointer
mov rdx, qword 0xFEFEFEFEFEFEFEFE
fadd qword [rdx]
fisttp dword [rsi]
sub rdx, rdx
; check if (%rsi) is in range, and buffer available, otherwise call function
mov edx, dword [rsi]
test rdx, 0xff800000 ; 0xFFFFFFFF - (NSEEL_RAM_BLOCKS*NSEEL_RAM_ITEMSPERBLOCK - 1)
jnz label_28
mov rax, rdx
shr rax, 13 ; log2(NSEEL_RAM_ITEMSPERBLOCK) - log2(sizeof(void*))
and rax, 0x3F8 ; (NSEEL_RAM_BLOCKS-1)*sizeof(void*)
mov rax, qword [rdi+rax]
test rax, rax
jz label_28
and rdx, 0xFFFF ; (NSEEL_RAM_ITEMSPERBLOCK-1)
shl rdx, 3 ; log2(sizeof(EEL_F))
add rax, rdx
jmp label_29
label_28:
mov r15, rsi ; save rsi
mov rsi, rdx ; esi becomes second parameter (edi is first, context pointer)
mov rdx, qword 0xFEFEFEFEFEFEFEFE
sub rsp, 128
call rdx
mov rsi, r15 ; restore rsi
add rsp, 128
label_29:
%else
mov rcx, qword 0xFEFEFEFEFEFEFEFE ; first parameter = context pointer
mov rdx, qword 0xFEFEFEFEFEFEFEFE
sub rdi, rdi
fadd qword [rdx]
fisttp dword [rsi]
; check if (%esi) is in range...
mov edi, dword [rsi]
test rdi, 0xff800000 ; 0xFFFFFFFF - (NSEEL_RAM_BLOCKS*NSEEL_RAM_ITEMSPERBLOCK - 1)
jnz label_30
mov rax, rdi
shr rax, 13 ; log2(NSEEL_RAM_ITEMSPERBLOCK) - log2(sizeof(void*))
and rax, 0x3F8 ; (NSEEL_RAM_BLOCKS-1)*sizeof(void*)
mov rax, qword [rcx+rax]
test rax, rax
jz label_30
and rdi, 0xFFFF ; (NSEEL_RAM_ITEMSPERBLOCK-1)
shl rdi, 3 ; log2(sizeof(EEL_F))
add rax, rdi
jmp label_31
label_30:
mov rdx, rdi ; rdx is second parameter (rcx is first)
mov rdi, qword 0xFEFEFEFEFEFEFEFE ; function ptr
sub rsp, 128
call rdi
add rsp, 128
label_31:
%endif
%else
mov rdx, qword 0xFEFEFEFEFEFEFEFE
fadd qword [qword 0xFEFEFEFEFEFEFEFE]
fisttp dword [rsi]
; check if (%esi) is in range, and buffer available, otherwise call function
mov edi, dword [rsi]
test rdi, 0xff800000 ; 0xFFFFFFFF - (NSEEL_RAM_BLOCKS*NSEEL_RAM_ITEMSPERBLOCK - 1)
jnz label_32
mov rax, rdi
shr rax, 14 ; log2(NSEEL_RAM_ITEMSPERBLOCK) - log2(sizeof(void *))
and rax, 0x1FC ; (NSEEL_RAM_BLOCKS-1)*sizeof(void*)
mov eax, dword [rdx+rax]
test rax, rax
jz label_32
and rdi, 0xFFFF ; (NSEEL_RAM_ITEMSPERBLOCK-1)
shl rdi, 3 ; log2(sizeof(EEL_F))
add rax, rdi
jmp label_33
label_32:
sub rsp, 8 ; keep stack aligned
push rdi ; parameter
push rdx ; push context pointer
mov rdi, qword 0xFEFEFEFEFEFEFEFE
call rdi
add rsp, 16
label_33:
%endif
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global _asm_megabuf_end
_asm_megabuf_end:
global _asm_gmegabuf
_asm_gmegabuf:
%ifdef TARGET_X64
%ifdef AMD64ABI
mov r15, rsi
mov rdi, qword 0xFEFEFEFEFEFEFEFE ; first parameter = context pointer
mov rdx, qword 0xFEFEFEFEFEFEFEFE
fadd qword [rdx]
fisttp dword [r15]
xor rsi, rsi
mov esi, dword [r15] ; r15 = esi (from above)
mov rdx, qword 0xFEFEFEFEFEFEFEFE
sub rsp, 128
call rdx
mov rsi, r15
add rsp, 128
%else
mov rcx, qword 0xFEFEFEFEFEFEFEFE ; first parameter = context pointer
mov rdx, qword 0xFEFEFEFEFEFEFEFE
fadd qword [rdx]
fisttp dword [rsi]
xor rdx, rdx
mov edx, dword [rsi]
mov rdi, qword 0xFEFEFEFEFEFEFEFE
sub rsp, 128
call rdi
add rsp, 128
%endif
%else
mov rdx, qword 0xFEFEFEFEFEFEFEFE
fadd qword [qword 0xFEFEFEFEFEFEFEFE]
fisttp dword [rsi]
sub rsp, 8 ; keep stack aligned
push dword [rsi] ; parameter
push rdx ; push context pointer
mov rdi, qword 0xFEFEFEFEFEFEFEFE
call rdi
add rsp, 16
%endif
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
global _asm_gmegabuf_end
_asm_gmegabuf_end:
global nseel_asm_stack_push
nseel_asm_stack_push:
%ifdef TARGET_X64
mov rdi, qword 0xFEFEFEFEFEFEFEFE
mov rcx, qword [rax]
mov rax, qword [rdi]
add rax, 8
mov rdx, qword 0xFEFEFEFEFEFEFEFE
and rax, rdx
mov rdx, qword 0xFEFEFEFEFEFEFEFE
or rax, rdx
mov qword [rax], rcx
mov qword [rdi], rax
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%else
mov rdi, qword 0xFEFEFEFEFEFEFEFE
mov ecx, dword [rax]
mov edx, dword [rax+4]
mov eax, dword [rdi]
add rax, 8
and rax, qword 0xFEFEFEFEFEFEFEFE
or rax, qword 0xFEFEFEFEFEFEFEFE
mov dword [rax], ecx
mov dword [rax+4], edx
mov dword [rdi], eax
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%endif
global nseel_asm_stack_push_end
nseel_asm_stack_push_end:
global nseel_asm_stack_pop
nseel_asm_stack_pop:
%ifdef TARGET_X64
mov rdi, qword 0xFEFEFEFEFEFEFEFE
mov rcx, qword [rdi]
movq xmm0, [rcx]
sub rcx, 8
mov rdx, qword 0xFEFEFEFEFEFEFEFE
and rcx, rdx
mov rdx, qword 0xFEFEFEFEFEFEFEFE
or rcx, rdx
mov qword [rdi], rcx
movq [rax], xmm0
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%else
mov rdi, qword 0xFEFEFEFEFEFEFEFE
mov ecx, dword [rdi]
fld qword [rcx]
sub rcx, 8
and rcx, qword 0xFEFEFEFEFEFEFEFE
or rcx, qword 0xFEFEFEFEFEFEFEFE
mov dword [rdi], ecx
fstp qword [rax]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%endif
global nseel_asm_stack_pop_end
nseel_asm_stack_pop_end:
global nseel_asm_stack_pop_fast
nseel_asm_stack_pop_fast:
%ifdef TARGET_X64
mov rdi, qword 0xFEFEFEFEFEFEFEFE
mov rcx, qword [rdi]
mov rax, rcx
sub rcx, 8
mov rdx, qword 0xFEFEFEFEFEFEFEFE
and rcx, rdx
mov rdx, qword 0xFEFEFEFEFEFEFEFE
or rcx, rdx
mov qword [rdi], rcx
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%else
mov rdi, qword 0xFEFEFEFEFEFEFEFE
mov ecx, dword [rdi]
mov rax, rcx
sub rcx, 8
and rcx, qword 0xFEFEFEFEFEFEFEFE
or rcx, qword 0xFEFEFEFEFEFEFEFE
mov dword [rdi], ecx
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%endif
global nseel_asm_stack_pop_fast_end
nseel_asm_stack_pop_fast_end:
global nseel_asm_stack_peek_int
nseel_asm_stack_peek_int:
%ifdef TARGET_X64
mov rdi, qword 0xFEFEFEFEFEFEFEFE
mov rax, qword [rdi]
mov rdx, qword 0xFEFEFEFEFEFEFEFE
sub rax, rdx
mov rdx, qword 0xFEFEFEFEFEFEFEFE
and rax, rdx
mov rdx, qword 0xFEFEFEFEFEFEFEFE
or rax, rdx
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%else
mov rdi, qword 0xFEFEFEFEFEFEFEFE
mov eax, dword [rdi]
mov rdx, qword 0xFEFEFEFEFEFEFEFE
sub rax, rdx
and rax, qword 0xFEFEFEFEFEFEFEFE
or rax, qword 0xFEFEFEFEFEFEFEFE
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%endif
global nseel_asm_stack_peek_int_end
nseel_asm_stack_peek_int_end:
global nseel_asm_stack_peek
nseel_asm_stack_peek:
%ifdef TARGET_X64
mov rdi, qword 0xFEFEFEFEFEFEFEFE
fisttp dword [rsi]
mov rax, qword [rdi]
mov rdx, qword [rsi]
shl rdx, 3 ; log2(sizeof(EEL_F))
sub rax, rdx
mov rdx, qword 0xFEFEFEFEFEFEFEFE
and rax, rdx
mov rdx, qword 0xFEFEFEFEFEFEFEFE
or rax, rdx
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%else
mov rdi, qword 0xFEFEFEFEFEFEFEFE
fisttp dword [rsi]
mov eax, dword [rdi]
mov edx, dword [rsi]
shl rdx, 3 ; log2(sizeof(EEL_F))
sub rax, rdx
and rax, qword 0xFEFEFEFEFEFEFEFE
or rax, qword 0xFEFEFEFEFEFEFEFE
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%endif
global nseel_asm_stack_peek_end
nseel_asm_stack_peek_end:
global nseel_asm_stack_peek_top
nseel_asm_stack_peek_top:
%ifdef TARGET_X64
mov rdi, qword 0xFEFEFEFEFEFEFEFE
mov rax, qword [rdi]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%else
mov rdi, qword 0xFEFEFEFEFEFEFEFE
mov eax, dword [rdi]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%endif
global nseel_asm_stack_peek_top_end
nseel_asm_stack_peek_top_end:
global nseel_asm_stack_exch
nseel_asm_stack_exch:
%ifdef TARGET_X64
mov rdi, qword 0xFEFEFEFEFEFEFEFE
mov rcx, qword [rdi]
movq xmm0, [rcx]
movq xmm1, [rax]
movq [rax], xmm0
movq [rcx], xmm1
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%else
mov rdi, qword 0xFEFEFEFEFEFEFEFE
mov ecx, dword [rdi]
fld qword [rcx]
fld qword [rax]
fstp qword [rcx]
fstp qword [rax]
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%endif
global nseel_asm_stack_exch_end
nseel_asm_stack_exch_end:
%ifdef TARGET_X64
global win64_callcode
win64_callcode:
%ifdef AMD64ABI
mov rax, rdi
%else
mov rax, rcx
%endif
push rbx
push rbp
%ifndef AMD64ABI
push rdi
push rsi
push r12
push r13
%endif
push r14 ; on AMD64ABI, we'll use r14/r15 to save edi/esi
push r15
call rax
pop r15
pop r14
%ifndef AMD64ABI
pop r13
pop r12
pop rsi
pop rdi
fclex
%endif
pop rbp
pop rbx
ret
db 0x89,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
%endif
|
notes/papers/fossacs-2012/BottomBottom.agda | asr/fotc | 11 | 10001 | {-# OPTIONS --exact-split #-}
{-# OPTIONS --no-sized-types #-}
{-# OPTIONS --no-universe-polymorphism #-}
{-# OPTIONS --without-K #-}
module BottomBottom where
open import Common.FOL.FOL
postulate bot bot' : ⊥
{-# ATP prove bot bot' #-}
{-# ATP prove bot' bot #-}
-- $ apia-fot BottomBottom.agda
-- Proving the conjecture in /tmp/BottomBottom/8-bot.tptp ...
-- Vampire 0.6 (revision 903) proved the conjecture
-- Proving the conjecture in /tmp/BottomBottom/8-bot39.tptp ...
-- Vampire 0.6 (revision 903) proved the conjecture
|
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1725.asm | ljhsiun2/medusa | 9 | 608 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r15
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0xd8e0, %rsi
lea addresses_WC_ht+0x98dc, %rdi
clflush (%rdi)
nop
nop
nop
nop
nop
and $11932, %rbp
mov $121, %rcx
rep movsb
nop
nop
dec %rbp
lea addresses_normal_ht+0x12b20, %rsi
lea addresses_WT_ht+0x152e0, %rdi
nop
cmp $46597, %r15
mov $39, %rcx
rep movsw
nop
nop
nop
nop
sub %r15, %r15
lea addresses_normal_ht+0x5436, %r13
add $10752, %rdx
movl $0x61626364, (%r13)
nop
nop
nop
dec %rsi
lea addresses_UC_ht+0x142e0, %r13
nop
nop
nop
nop
nop
xor $43354, %r15
vmovups (%r13), %ymm0
vextracti128 $1, %ymm0, %xmm0
vpextrq $0, %xmm0, %rbp
nop
nop
nop
nop
nop
cmp $3286, %rsi
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rbp
pop %r15
pop %r13
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %r13
push %rax
push %rbp
push %rbx
push %rdi
// Store
lea addresses_RW+0x8dd2, %r13
dec %rax
mov $0x5152535455565758, %rbx
movq %rbx, %xmm2
vmovups %ymm2, (%r13)
nop
nop
nop
cmp %r12, %r12
// Faulty Load
lea addresses_RW+0x1eae0, %r13
nop
nop
dec %r10
mov (%r13), %ebp
lea oracles, %r10
and $0xff, %rbp
shlq $12, %rbp
mov (%r10,%rbp,1), %rbp
pop %rdi
pop %rbx
pop %rbp
pop %rax
pop %r13
pop %r12
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 0, 'same': False, 'type': 'addresses_RW'}, 'OP': 'LOAD'}
{'dst': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 1, 'same': False, 'type': 'addresses_RW'}, 'OP': 'STOR'}
[Faulty Load]
{'src': {'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 0, 'same': True, 'type': 'addresses_RW'}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'congruent': 9, 'same': False, 'type': 'addresses_WC_ht'}, 'dst': {'congruent': 1, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'REPM'}
{'src': {'congruent': 5, 'same': False, 'type': 'addresses_normal_ht'}, 'dst': {'congruent': 11, 'same': False, 'type': 'addresses_WT_ht'}, 'OP': 'REPM'}
{'dst': {'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 0, 'same': False, 'type': 'addresses_normal_ht'}, 'OP': 'STOR'}
{'src': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 11, 'same': False, 'type': 'addresses_UC_ht'}, 'OP': 'LOAD'}
{'32': 21829}
32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32
*/
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.