repo_id
stringlengths
5
115
size
int64
590
5.01M
file_path
stringlengths
4
212
content
stringlengths
590
5.01M
AlbrechtL/welle.io
5,224
src/libs/mpg123/synth_stereo_neon64_accurate.S
/* synth_stereo_neon64_accurate: NEON optimized synth for AArch64 (stereo specific, MPEG-compliant 16bit output version) copyright 1995-2014 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ ...
AlbrechtL/welle.io
9,211
src/libs/mpg123/dct64_x86_64_float.S
/* dct64_x86_64_float: SSE optimized dct64 for x86-64 (float output version) copyright 1995-2009 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ #include "mangle.h" #ifdef IS_MSABI /* sho...
albs-br/msx-mk
9,780
variables.s
RamStart: ; ---------------------------- ; step page page page drawing value saved to value saved to ; value active restoring bg sprites restore bg 0 restore bg 1 ; ----- --------- ------------ --------------- ----...
albs-br/msx-mk
2,045
TripleBuffer/RestoreBg.s
; Input: ; HL: Y of base of page (constants: Y_BASE_PAGE_n) ; IX: Player Vars base addr RestoreBg: ; Set HMMM command parameters based on Player Vars (frame n - 2) and execute it ; Destiny_Y = Y of base of page + Player.Restore_BG_Y ld d, 0 ld a, (ix + Player_Struct.Restore_BG_1_Y) ...
albs-br/msx-mk
2,123
TripleBuffer/GetCurrentFrameAndGoToNext.s
; Inputs: ; IX: Player Vars base addr ; Outputs: ; IY: Player current frame header addr GetCurrentFrameAndGoToNext: ; HL = (Animation_CurrentFrame_Header) ld l, (ix + Player_Struct.Animation_CurrentFrame_Header) ld h, (ix + Player_Struct.Animation_CurrentFrame_Header + 1) ; HL++ ...
albs-br/msx-mk
13,115
TripleBuffer/DrawSprite.s
; Inputs: ; A: value of R#14 to set VDP to write/read VRAM (constants: R14_PAGE_n) ; IY: addr of current frame header ; IX: Player Vars base addr (already pointing to next frame) DrawSprite: ld (TripleBuffer_Vars.R14_Value), a ; set R#14 ; ld a, 0000 0000 b ; page 0 ; ld a, 0000 0010 b ; p...
AlbrechtL/welle.io
6,172
src/libs/mpg123/synth_arm_accurate.S
/* synth_arm_accurate: ARM optimized synth (ISO compliant 16bit output version) copyright 1995-2009 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ #include "mangle.h" #define WINDOW r0 #...
albs-br/msx-mk
1,154
TripleBuffer/TripleBuffer_Constants.s
; Triple buffer constants: R2_PAGE_0: equ 0001 1111 b ; page 0 (0x00000) R2_PAGE_1: equ 0011 1111 b ; page 1 (0x08000) R2_PAGE_2: equ 0101 1111 b ; page 2 (0x10000) R2_PAGE_3: equ 0111 1111 b ; page 3 (0x18000) R14_PAGE_0: equ 0000 0000 b ; page 0 R14_PAGE_1: equ 0000 0010...
albs-br/msx-mk
15,163
Include/MsxBios.s
;---------------------------------------------------------- ; msxbios.s - by Danilo Angelo 2020 ; Adapted from http://www.konamiman.com/msx/msx2th/th-ap.txt ; ; Standard MSX variables and routines addresses ;---------------------------------------------------------- ; --- system variables --- BIOS_HWVER: equ 0x00...
albs-br/msx-mk
2,044
Include/MsxConstants.s
PORT_0: equ 0x98 PORT_1: equ 0x99 PORT_2: equ 0x9a PORT_3: equ 0x9b ; PPI (Programmable Peripheral Interface) PPI.A: equ $a8 ; PPI port A: primary slot selection register ; 33221100: number of slot to select on page n PPI.B: equ $a9 ; PPI port B: read the keyboard matrix row specified via the PPI port C ($AA) PPI...
albs-br/msx-mk
29,367
Include/CommonRoutines.s
; Common routines for MSX 2 (some work on MSX 1) ; v.0.1.0 (when changed remember to update file on other projects) ; Fill all RAM with 0x00 ; TODO: this can be MUCH improved by using LDIR to fill a ; range of bytes (e.g. 16 or 256), meaning there is a trade-off between speed and size ; PS. 16x 16 bytes LDIR can be a...
albs-br/msx-mk
4,952
Sounds/OPL4.s
; Original by Bitvision Software ; Converted (with adaptations) to TNI Asm by Andre Baptista ; Output: ; z: not available ; nz: available IsOPL4Available: in a, (0xc4) cp 0xff ret OPL4_Init: xor a ld (Var_IsOPL4Available), a call IsOPL4Available ret z ...
albs-br/msx-mk
1,974
Sounds/Headers.s
headers_begin: ;up to 384 headers, 12 bytes per header = 4608 bytes ;so 0x200000 + 0x1200 = 0x201200 ... where data should start ;header sample 0 db 0x20, 0x12, 0x00 ;8 bits & start address at wave mem...
AlbrechtL/welle.io
5,524
src/libs/mpg123/synth_arm.S
/* synth_arm: ARM optimized synth copyright 1995-2009 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ #include "mangle.h" #define WINDOW r0 #define B0 r1 #define SAMPLES r2 #define REG_CL...
AlbrechtL/welle.io
6,224
src/libs/mpg123/synth_sse_s32.S
/* synth_sse_s32: SSE optimized synth (s32 output version) copyright 1995-2009 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ #include "mangle.h" /* real *window; */ #define WINDOW %ebx ...
AlbrechtL/welle.io
4,116
src/libs/mpg123/synth_neon_accurate.S
/* synth_neon_accurate: ARM NEON optimized synth (MPEG compliant 16-bit output version) copyright 1995-2010 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ #include "mangle.h" #define WIN...
AlbrechtL/welle.io
5,130
src/libs/mpg123/synth_x86_64.S
/* synth_x86_64: SSE optimized synth for x86-64 copyright 1995-2009 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ #include "mangle.h" #ifdef IS_MSABI /* short *window; */ #define ARG0 %...
albs-br/msx-mk
18,064
GameLogic/Player_Logic.s
Player_Jump_Delta_Y: db -24, -16, -16, -8, -8, -8, -4, -4, -2, -2, 0, 0 db 0, 0, 2, 2, 4, 4, 8, 8, 8, 16, 16, 24 .size: equ $ - Player_Jump_Delta_Y ; Inputs: ; IX: Player Vars base addr Player_Logic: ; switch (Player.Position) ld a, (ix + Player_Struct.Position) ...
albs-br/msx-mk
3,595
GameLogic/Players_Init.s
Players_Init: ; ------------ init player 1 ld ix, Player_1_Vars ld hl, Scorpion_Stance_Left_Animation_Headers ld b, 36 ;64 - (58/2) ; X coord ld c, 100 ; Y coord ld de, Scorpion_All_Animations_Left ld a, SIDE.LEFT call Player_Init ...
albs-br/msx-mk
7,469
GameLogic/CheckCollision.s
CheckCollision_Hurtboxes: push ix, iy ld ix, Player_1_Vars.HurtBox ld iy, Player_2_Vars.HurtBox call CheckCollision_Obj1xObj2 jp c, .collision jp .return .collision: call PushPlayersApart .return: ld ix, Player...
albs-br/msx-mk
11,815
GameLogic/ReadInput.s
KEYBOARD: equ 0 ;JOYSTICK: equ 1 INPUT_UP: equ 1000 0000 b INPUT_DOWN: equ 0100 0000 b INPUT_LEFT: equ 0010 0000 b INPUT_RIGHT: equ 0001 0000 b INPUT_UP_RIGHT: equ 1001 0000 b INPUT_DOWN_RIGHT: equ 0101 0000 b INPUT_UP_LEFT: equ 1010 0000 b INPUT_DOWN_LEFT: equ 0110 ...
AlbrechtL/welle.io
5,628
src/libs/mpg123/dct36_neon64.S
/* dct36_neon64: NEON optimized dct36 for AArch64 copyright 1995-2014 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ #include "mangle.h" #ifndef __APPLE__ .section .rodata #else .data ...
AlbrechtL/welle.io
5,672
src/libs/mpg123/dct64_neon_float.S
/* dct64_neon_float: ARM NEON optimized dct64 (float output version) copyright 1995-2010 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ #include "mangle.h" #ifndef _M_ARM .code 32 #endi...
AlbrechtL/welle.io
9,230
src/libs/mpg123/dct64_sse_float.S
/* dct64_sse_float: SSE optimized dct64 (float output version) copyright 1995-2009 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ #include "mangle.h" #define ARG(n) (8+n*4)(%ebp) #define...
AlbrechtL/welle.io
6,686
src/libs/mpg123/synth_x86_64_s32.S
/* synth_x86_64_s32: SSE optimized synth for x86-64 (s32 output version) copyright 1995-2009 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ #include "mangle.h" #ifdef IS_MSABI /* short *...
AlbrechtL/welle.io
3,984
src/libs/mpg123/synth_neon_s32.S
/* synth_neon_s32: ARM NEON optimized synth (32-bit output version) copyright 1995-2010 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ #include "mangle.h" #define WINDOW r0 #define B0 r1...
AlbrechtL/welle.io
4,529
src/libs/mpg123/synth_stereo_neon64_float.S
/* synth_stereo_neon64_float: NEON optimized synth for AArch64 (stereo specific, float output version) copyright 1995-2014 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ #include "mangle....
AlbrechtL/welle.io
10,649
src/libs/mpg123/synth_stereo_sse_accurate.S
/* synth_stereo_sse_accurate: SSE optimized synth (stereo specific, MPEG-compliant 16bit output version) copyright 1995-2009 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ #include "mangl...
AlbrechtL/welle.io
6,221
src/libs/mpg123/dct64_neon.S
/* dct64_neon: ARM NEON optimized dct64 copyright 1995-2010 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ #include "mangle.h" #ifndef _M_ARM .code 32 #endif #ifndef __APPLE__ .fpu neo...
AlbrechtL/welle.io
6,052
src/libs/mpg123/synth_sse_accurate.S
/* synth_sse_accurate: SSE optimized synth (MPEG-compliant 16bit output version) copyright 1995-2009 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ #include "mangle.h" /* real *window; *...
AlbrechtL/welle.io
6,947
src/libs/mpg123/synth_stereo_avx_accurate.S
/* synth_stereo_avx_accurate: AVX optimized synth for x86-64 (stereo specific, MPEG-compliant 16bit output version) copyright 1995-2013 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ #inc...
AlbrechtL/welle.io
4,518
src/libs/mpg123/synth_stereo_neon64.S
/* synth_stereo_neon64: NEON optimized synth for AArch64 (stereo specific version) copyright 1995-2014 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Taihei Monma */ #include "mangle.h" #ifndef __APPLE_...
AlbrechtL/welle.io
6,270
src/libs/mpg123/synth_i586.S
/* decode_i586: asm synth copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Stefan Bieschewski synth_1to1 works the same way as the c version of this file. only two types of changes hav...
albs-br/msx-mk
2,074
Data/scorpion/scorpion_all_animations.s
; TODO: pointers to all animations Scorpion_All_Animations_Left: dw Scorpion_Stance_Left_Animation_Headers dw Scorpion_Walking_Left_Animation_Headers dw Scorpion_Walking_Backwards_Left_Animation_Headers dw Scorpion_Jumping_Up_Left_Animation_Headers dw Scorpion_Jumping_Forw...
albs-br/msx-mk
2,040
Data/subzero/subzero_all_animations.s
Subzero_All_Animations_Left: dw 0 ; Subzero_Stance_Left_Animation_Headers dw 0 ; Subzero_Walking_Left_Animation_Headers dw 0 ; Subzero_Walking_Backwards_Left_Animation_Headers dw 0 ; Subzero_Jumping_Up_Left_Animation_Headers dw 0 ; Subzero_Jumping_Forward_Left_Animation_Head...
albs-br/msx-mk
19,868
Data/scorpion/jumping-forward/left/scorpion_jumping_forward_left_frames_0_to_7_data.s
Scorpion_Jumping_Forward_Left_Frames_0_to_7_Data: db 0, 0, 0, 3, 51, 51, 48, 0, 51, 51, 51, 51, 3, 51, 51, 51, 51, 48, 51, 51, 51, 51, 51, 51, 3, 51, 51, 51, 51, 51, 51, 0, 3, 51, 51, 51, 51, 51, 51, 0, 3, 51, 51, 51, 51, 51, 51, 0, 0, 51, 51, 51, 51, 51, 51, 51, 0, 0, 51, 51, 51, 51, 51, 51, 51, 51, 3, 51, 51, 51, 51...
albs-br/msx-mk
1,391
Data/scorpion/jumping-forward/left/scorpion_jumping_forward_left_frame_2_list.s
db 8, 6 dw 0x8000 + 4677 db 127, 8 dw 0x8000 + 4683 db 128, 9 dw 0x8000 + 4691 db 126, 11 dw 0x8000 + 4700 db 128, 11 dw 0x8000 + 4711 db 127, 12 dw 0x8000 + 4722 db 128, 13 dw 0x8000 + 4734 db 128, 13 dw 0x8000 + 4747 db 128, 13 dw 0x8000 + 4760 db 127, 15 dw 0x8000 + 4773 db 128, 15 dw 0x8000 + 4788 db 12...
albs-br/msx-mk
1,249
Data/scorpion/jumping-forward/left/scorpion_jumping_forward_left_frame_7_list.s
db 5, 4 dw 0x8000 + 7392 db 127, 5 dw 0x8000 + 7396 db 128, 6 dw 0x8000 + 7401 db 127, 7 dw 0x8000 + 7407 db 128, 7 dw 0x8000 + 7414 db 128, 9 dw 0x8000 + 7421 db 128, 10 dw 0x8000 + 7430 db 128, 11 dw 0x8000 + 7440 db 128, 12 dw 0x8000 + 7451 db 18, 1 dw 0x8000 + 7463 db 110, 13 dw 0x8000 + 7464 db 14, 1 d...
albs-br/msx-mk
1,220
Data/scorpion/jumping-forward/left/scorpion_jumping_forward_left_frame_3_list.s
db 9, 7 dw 0x8000 + 5220 db 127, 9 dw 0x8000 + 5227 db 128, 10 dw 0x8000 + 5236 db 127, 12 dw 0x8000 + 5246 db 128, 12 dw 0x8000 + 5258 db 127, 14 dw 0x8000 + 5270 db 128, 15 dw 0x8000 + 5284 db 128, 15 dw 0x8000 + 5299 db 128, 15 dw 0x8000 + 5314 db 128, 16 dw 0x8000 + 5329 db 128, 16 dw 0x8000 + 5345 db 1...
albs-br/msx-mk
1,423
Data/scorpion/jumping-forward/left/scorpion_jumping_forward_left_frame_5_list.s
db 5, 3 dw 0x8000 + 6309 db 128, 3 dw 0x8000 + 6312 db 128, 4 dw 0x8000 + 6315 db 128, 5 dw 0x8000 + 6319 db 129, 4 dw 0x8000 + 6324 db 128, 4 dw 0x8000 + 6328 db 128, 5 dw 0x8000 + 6332 db 129, 4 dw 0x8000 + 6337 db 128, 5 dw 0x8000 + 6341 db 128, 5 dw 0x8000 + 6346 db 128, 5 dw 0x8000 + 6351 db 127, 5 dw ...
albs-br/msx-mk
1,399
Data/scorpion/jumping-forward/left/scorpion_jumping_forward_left_frame_1_list.s
db 6, 5 dw 0x8000 + 4143 db 128, 10 dw 0x8000 + 4148 db 127, 12 dw 0x8000 + 4158 db 128, 12 dw 0x8000 + 4170 db 127, 14 dw 0x8000 + 4182 db 128, 14 dw 0x8000 + 4196 db 128, 14 dw 0x8000 + 4210 db 127, 15 dw 0x8000 + 4224 db 128, 15 dw 0x8000 + 4239 db 128, 15 dw 0x8000 + 4254 db 127, 16 dw 0x8000 + 4269 db ...
albs-br/msx-mk
1,152
Data/scorpion/jumping-forward/left/scorpion_jumping_forward_left_frames_0_to_7_list.s
Scorpion_Jumping_Forward_Left_Frame_0: .List: INCLUDE "Data/scorpion/jumping-forward/left/scorpion_jumping_forward_left_frame_0_list.s" Scorpion_Jumping_Forward_Left_Frame_1: .List: INCLUDE "Data/scorpion/jumping-forward/left/scorpion_jumping_forward_left_frame_1_list.s" Scorpion_Jumping_Forward_Left_Fr...
albs-br/msx-mk
1,152
Data/scorpion/jumping-forward/left/scorpion_jumping_forward_left_frame_headers.s
Scorpion_Jumping_Forward_Left_Frame_0_Header: INCLUDE "Data/scorpion/jumping-forward/left/scorpion_jumping_forward_left_frame_0_header.s" Scorpion_Jumping_Forward_Left_Frame_1_Header: INCLUDE "Data/scorpion/jumping-forward/left/scorpion_jumping_forward_left_frame_1_header.s" Scorpion_Jumping_Forward_Left_Fr...
albs-br/msx-mk
1,418
Data/scorpion/jumping-forward/left/scorpion_jumping_forward_left_frame_6_list.s
db 16, 1 dw 0x8000 + 6848 db 128, 2 dw 0x8000 + 6849 db 128, 2 dw 0x8000 + 6851 db 128, 2 dw 0x8000 + 6853 db 128, 2 dw 0x8000 + 6855 db 127, 4 dw 0x8000 + 6857 db 128, 4 dw 0x8000 + 6861 db 128, 4 dw 0x8000 + 6865 db 128, 4 dw 0x8000 + 6869 db 128, 4 dw 0x8000 + 6873 db 126, 6 dw 0x8000 + 6877 db 128, 6 dw...
albs-br/msx-mk
1,370
Data/scorpion/jumping-forward/left/scorpion_jumping_backwards_left_animation.s
Scorpion_Jumping_Backwards_Left_Animation_Headers: dw Scorpion_Jumping_Forward_Left_Frame_0_Header, Scorpion_Jumping_Forward_Left_Frame_0_Header, Scorpion_Jumping_Forward_Left_Frame_0_Header dw Scorpion_Jumping_Forward_Left_Frame_6_Header, Scorpion_Jumping_Forward_Left_Frame_6_Header, Scorpion_Jumping_Forward_Left_F...
albs-br/msx-mk
1,361
Data/scorpion/jumping-forward/left/scorpion_jumping_forward_left_frame_4_list.s
db 12, 3 dw 0x8000 + 5764 db 127, 5 dw 0x8000 + 5767 db 128, 6 dw 0x8000 + 5772 db 127, 7 dw 0x8000 + 5778 db 128, 8 dw 0x8000 + 5785 db 121, 4 dw 0x8000 + 5793 db 7, 8 dw 0x8000 + 5797 db 120, 6 dw 0x8000 + 5805 db 7, 10 dw 0x8000 + 5811 db 120, 7 dw 0x8000 + 5821 db 8, 10 dw 0x8000 + 5828 db 120, 19 dw 0x...
albs-br/msx-mk
3,131
Data/scorpion/jumping-forward/left/scorpion_jumping_forward_left_frame_0_list.s
db 11, 3 dw 0x8000 + 3158 db 128, 4 dw 0x8000 + 3161 db 127, 5 dw 0x8000 + 3165 db 128, 6 dw 0x8000 + 3170 db 128, 6 dw 0x8000 + 3176 db 127, 8 dw 0x8000 + 3182 db 128, 8 dw 0x8000 + 3190 db 128, 8 dw 0x8000 + 3198 db 127, 9 dw 0x8000 + 3206 db 127, 9 dw 0x8000 + 3215 db 127, 10 dw 0x8000 + 3224 db 127, 11 ...
albs-br/msx-mk
1,368
Data/scorpion/jumping-forward/left/scorpion_jumping_forward_left_animation.s
Scorpion_Jumping_Forward_Left_Animation_Headers: dw Scorpion_Jumping_Forward_Left_Frame_0_Header, Scorpion_Jumping_Forward_Left_Frame_0_Header, Scorpion_Jumping_Forward_Left_Frame_0_Header dw Scorpion_Jumping_Forward_Left_Frame_1_Header, Scorpion_Jumping_Forward_Left_Frame_1_Header, Scorpion_Jumping_Forward_Left_Fra...
albs-br/msx-mk
4,122
Data/scorpion/block/left/scorpion_block_left_frame_2_list.s
db 16, 3 dw 0x8000 + 2136 db 121, 3 dw 0x8000 + 2139 db 7, 4 dw 0x8000 + 2142 db 121, 4 dw 0x8000 + 2146 db 7, 4 dw 0x8000 + 2150 db 120, 5 dw 0x8000 + 2154 db 8, 4 dw 0x8000 + 2159 db 120, 6 dw 0x8000 + 2163 db 8, 4 dw 0x8000 + 2169 db 119, 7 dw 0x8000 + 2173 db 9, 4 dw 0x8000 + 2180 db 119, 6 dw 0x8000 + ...
albs-br/msx-mk
13,349
Data/scorpion/block/left/scorpion_block_left_frames_0_to_2_data.s
db 0, 0, 51, 0, 0, 0, 51, 51, 48, 1, 0, 51, 51, 51, 0, 1, 16, 51, 51, 51, 48, 0, 17, 0, 51, 51, 51, 48, 0, 17, 3, 51, 51, 51, 48, 0, 17, 3, 51, 51, 60, 64, 0, 16, 3, 51, 51, 204, 224, 0, 0, 51, 51, 62, 190, 192, 0, 0, 3, 51, 59, 187, 176, 0, 0, 51, 51, 11, 187, 255, 0, 51, 51, 51, 60, 191, 188, 0, 3, 51, 51, 12, 251, ...
albs-br/msx-mk
3,752
Data/scorpion/block/left/scorpion_block_left_frame_0_list.s
db 15, 4 dw 0x8000 + 0 db 127, 5 dw 0x8000 + 4 db 128, 6 dw 0x8000 + 9 db 128, 6 dw 0x8000 + 15 db 127, 7 dw 0x8000 + 21 db 128, 7 dw 0x8000 + 28 db 128, 7 dw 0x8000 + 35 db 128, 7 dw 0x8000 + 42 db 128, 7 dw 0x8000 + 49 db 128, 7 dw 0x8000 + 56 db 128, 7 dw 0x8000 + 63 db 128, 7 dw 0x8000 + 70 db 128, 7 d...
albs-br/msx-mk
4,020
Data/scorpion/block/left/scorpion_block_left_frame_1_list.s
db 12, 3 dw 0x8000 + 1092 db 127, 4 dw 0x8000 + 1095 db 128, 5 dw 0x8000 + 1099 db 127, 6 dw 0x8000 + 1104 db 128, 6 dw 0x8000 + 1110 db 128, 6 dw 0x8000 + 1116 db 128, 6 dw 0x8000 + 1122 db 128, 6 dw 0x8000 + 1128 db 11, 3 dw 0x8000 + 1134 db 117, 6 dw 0x8000 + 1137 db 11, 4 dw 0x8000 + 1143 db 117, 7 dw 0...
albs-br/msx-mk
1,233
Data/scorpion/block/left/scorpion_block_left_animation.s
Scorpion_Block_Left_Animation_Headers: dw Scorpion_Block_Left_Frame_0_Header, Scorpion_Block_Left_Frame_0_Header, Scorpion_Block_Left_Frame_0_Header dw Scorpion_Block_Left_Frame_1_Header, Scorpion_Block_Left_Frame_1_Header, Scorpion_Block_Left_Frame_1_Header dw Scorpion_Block_Left_Frame_2_Header, Scorpion_Block_Left...
albs-br/msx-mk
3,538
Data/scorpion/kick/left/scorpion_kick_left_frame_0_list.s
db 11, 3 dw 0x8000 + 0 db 128, 4 dw 0x8000 + 3 db 127, 5 dw 0x8000 + 7 db 128, 5 dw 0x8000 + 12 db 128, 5 dw 0x8000 + 17 db 128, 5 dw 0x8000 + 22 db 128, 5 dw 0x8000 + 27 db 128, 5 dw 0x8000 + 32 db 128, 5 dw 0x8000 + 37 db 128, 5 dw 0x8000 + 42 db 128, 6 dw 0x8000 + 47 db 127, 7 dw 0x8000 + 53 db 128, 8 d...
albs-br/msx-mk
2,885
Data/scorpion/kick/left/scorpion_kick_left_frame_4_list.s
db 35, 1 dw 0x8000 + 4185 db 127, 3 dw 0x8000 + 4186 db 128, 3 dw 0x8000 + 4189 db 127, 5 dw 0x8000 + 4192 db 127, 6 dw 0x8000 + 4197 db 127, 8 dw 0x8000 + 4203 db 128, 8 dw 0x8000 + 4211 db 127, 9 dw 0x8000 + 4219 db 127, 10 dw 0x8000 + 4228 db 128, 5 dw 0x8000 + 4238 db 8, 2 dw 0x8000 + 4243 db 119, 6 dw ...
albs-br/msx-mk
1,536
Data/scorpion/kick/left/scorpion_high_kick_left_animation.s
Scorpion_High_Kick_Left_Animation_Headers: ; high kick frames seq: ; 0, 1, 2, 3, 4, 5, 3, 2, 1, 0 dw Scorpion_Kick_Left_Frame_0_Header, Scorpion_Kick_Left_Frame_0_Header, Scorpion_Kick_Left_Frame_0_Header dw Scorpion_Kick_Left_Frame_1_Header, Scorpion_Kick_Left_Frame_1_Header, Scorpion_Kick_Left_Frame...
albs-br/msx-mk
3,075
Data/scorpion/kick/left/scorpion_kick_left_frame_5_list.s
db 12, 1 dw 0x8000 + 5093 db 126, 4 dw 0x8000 + 5094 db 127, 5 dw 0x8000 + 5098 db 122, 2 dw 0x8000 + 5103 db 5, 6 dw 0x8000 + 5105 db 122, 4 dw 0x8000 + 5111 db 5, 7 dw 0x8000 + 5115 db 123, 4 dw 0x8000 + 5122 db 5, 8 dw 0x8000 + 5126 db 122, 15 dw 0x8000 + 5134 db 128, 16 dw 0x8000 + 5149 db 128, 17 dw 0x...
albs-br/msx-mk
29,028
Data/scorpion/kick/left/scorpion_kick_left_frames_0_to_6_data.s
db 0, 0, 0, 0, 51, 51, 48, 1, 3, 51, 51, 48, 1, 3, 51, 51, 48, 17, 3, 51, 51, 51, 17, 3, 51, 51, 51, 17, 3, 51, 51, 51, 17, 3, 51, 51, 51, 17, 3, 51, 51, 51, 1, 3, 51, 52, 227, 1, 3, 51, 12, 192, 48, 0, 0, 3, 60, 204, 188, 48, 3, 48, 3, 52, 190, 203, 60, 192, 3, 51, 51, 51, 48, 204, 191, 204, 191, 3, 51, 51, 51, 51, 5...
albs-br/msx-mk
4,154
Data/scorpion/kick/left/scorpion_kick_left_frame_1_list.s
db 13, 2 dw 0x8000 + 1148 db 127, 4 dw 0x8000 + 1150 db 128, 4 dw 0x8000 + 1154 db 128, 5 dw 0x8000 + 1158 db 127, 6 dw 0x8000 + 1163 db 128, 6 dw 0x8000 + 1169 db 128, 6 dw 0x8000 + 1175 db 128, 6 dw 0x8000 + 1181 db 128, 6 dw 0x8000 + 1187 db 128, 6 dw 0x8000 + 1193 db 128, 6 dw 0x8000 + 1199 db 128, 7 dw...
albs-br/msx-mk
1,416
Data/scorpion/kick/left/scorpion_low_kick_left_animation.s
Scorpion_Low_Kick_Left_Animation_Headers: ; low kick frames seq: ; 0, 1, 3, 6, 3, 1, 0 dw Scorpion_Kick_Left_Frame_0_Header, Scorpion_Kick_Left_Frame_0_Header, Scorpion_Kick_Left_Frame_0_Header dw Scorpion_Kick_Left_Frame_1_Header, Scorpion_Kick_Left_Frame_1_Header, Scorpion_Kick_Left_Frame_1_Header ; dw S...
albs-br/msx-mk
3,089
Data/scorpion/kick/left/scorpion_kick_left_frame_3_list.s
db 3, 2 dw 0x8000 + 3197 db 9, 1 dw 0x8000 + 3199 db 118, 4 dw 0x8000 + 3200 db 9, 2 dw 0x8000 + 3204 db 119, 4 dw 0x8000 + 3206 db 8, 3 dw 0x8000 + 3210 db 119, 6 dw 0x8000 + 3213 db 8, 4 dw 0x8000 + 3219 db 120, 6 dw 0x8000 + 3223 db 7, 9 dw 0x8000 + 3229 db 121, 16 dw 0x8000 + 3238 db 128, 16 dw 0x8000 +...
albs-br/msx-mk
2,908
Data/scorpion/kick/left/scorpion_kick_left_frame_2_list.s
db 5, 2 dw 0x8000 + 2281 db 127, 3 dw 0x8000 + 2283 db 128, 4 dw 0x8000 + 2286 db 127, 5 dw 0x8000 + 2290 db 128, 5 dw 0x8000 + 2295 db 128, 5 dw 0x8000 + 2300 db 128, 5 dw 0x8000 + 2305 db 128, 6 dw 0x8000 + 2310 db 128, 6 dw 0x8000 + 2316 db 128, 7 dw 0x8000 + 2322 db 128, 12 dw 0x8000 + 2329 db 129, 12 d...
albs-br/msx-mk
2,678
Data/scorpion/kick/left/scorpion_kick_left_frame_6_list.s
db 38, 1 dw 0x8000 + 6056 db 127, 3 dw 0x8000 + 6057 db 127, 5 dw 0x8000 + 6060 db 127, 6 dw 0x8000 + 6065 db 101, 4 dw 0x8000 + 6071 db 24, 9 dw 0x8000 + 6075 db 103, 6 dw 0x8000 + 6084 db 23, 12 dw 0x8000 + 6090 db 104, 8 dw 0x8000 + 6102 db 24, 12 dw 0x8000 + 6110 db 100, 3 dw 0x8000 + 6122 db 4, 8 dw 0x...
albs-br/msx-mk
3,572
Data/scorpion/crouching-block/left/scorpion_crouching_block_left_frames_0_to_0_data.s
db 0, 3, 48, 0, 16, 51, 51, 0, 15, 177, 1, 3, 51, 51, 48, 187, 187, 191, 1, 51, 51, 51, 51, 187, 187, 187, 191, 192, 16, 51, 51, 51, 51, 27, 187, 187, 255, 192, 16, 51, 51, 51, 51, 59, 187, 191, 252, 3, 51, 51, 51, 51, 15, 191, 255, 3, 48, 0, 51, 51, 51, 51, 60, 207, 251, 188, 51, 51, 0, 51, 51, 51, 51, 52, 239, 255, ...
albs-br/msx-mk
2,973
Data/scorpion/crouching-block/left/scorpion_crouching_block_left_frame_0_list.s
db 12, 3 dw 0x8000 + 5913 db 127, 5 dw 0x8000 + 5916 db 7, 2 dw 0x8000 + 5921 db 121, 5 dw 0x8000 + 5923 db 6, 3 dw 0x8000 + 5928 db 122, 10 dw 0x8000 + 5931 db 128, 10 dw 0x8000 + 5941 db 128, 9 dw 0x8000 + 5951 db 128, 10 dw 0x8000 + 5960 db 127, 11 dw 0x8000 + 5970 db 128, 12 dw 0x8000 + 5981 db 128, 14 ...
albs-br/msx-mk
4,010
Data/scorpion/walking/left/scorpion_walking_left_frame_1_list.s
db 13, 4 dw 0x8000 + 1177 db 128, 5 dw 0x8000 + 1181 db 127, 6 dw 0x8000 + 1186 db 128, 6 dw 0x8000 + 1192 db 128, 6 dw 0x8000 + 1198 db 123, 2 dw 0x8000 + 1204 db 5, 6 dw 0x8000 + 1206 db 122, 3 dw 0x8000 + 1212 db 6, 6 dw 0x8000 + 1215 db 122, 4 dw 0x8000 + 1221 db 6, 6 dw 0x8000 + 1225 db 121, 5 dw 0x800...
albs-br/msx-mk
1,129
Data/scorpion/walking/left/scorpion_walking_backwards_left_animation.s
Scorpion_Walking_Backwards_Left_Animation_Headers: dw Scorpion_Walking_Left_Frame_8_Header, Scorpion_Walking_Left_Frame_8_Header, Scorpion_Walking_Left_Frame_8_Header dw Scorpion_Walking_Left_Frame_7_Header, Scorpion_Walking_Left_Frame_7_Header, Scorpion_Walking_Left_Frame_7_Header dw Scorpion_Walking_Left_Frame_6_H...
albs-br/msx-mk
3,616
Data/scorpion/walking/left/scorpion_walking_left_frame_2_list.s
db 13, 4 dw 0x8000 + 2287 db 128, 4 dw 0x8000 + 2291 db 127, 6 dw 0x8000 + 2295 db 128, 6 dw 0x8000 + 2301 db 128, 6 dw 0x8000 + 2307 db 123, 1 dw 0x8000 + 2313 db 5, 6 dw 0x8000 + 2314 db 122, 3 dw 0x8000 + 2320 db 6, 6 dw 0x8000 + 2323 db 121, 4 dw 0x8000 + 2329 db 7, 6 dw 0x8000 + 2333 db 121, 5 dw 0x800...
albs-br/msx-mk
1,080
Data/scorpion/walking/left/scorpion_walking_left_frame_headers.s
Scorpion_Walking_Left_Frame_0_Header: INCLUDE "Data/scorpion/walking/left/scorpion_walking_left_frame_0_header.s" Scorpion_Walking_Left_Frame_1_Header: INCLUDE "Data/scorpion/walking/left/scorpion_walking_left_frame_1_header.s" Scorpion_Walking_Left_Frame_2_Header: INCLUDE "Data/scorpion/walking/left/s...
albs-br/msx-mk
4,091
Data/scorpion/walking/left/scorpion_walking_left_frame_7_list.s
db 13, 4 dw 0x8000 + 7559 db 128, 4 dw 0x8000 + 7563 db 127, 6 dw 0x8000 + 7567 db 128, 6 dw 0x8000 + 7573 db 128, 6 dw 0x8000 + 7579 db 123, 2 dw 0x8000 + 7585 db 4, 7 dw 0x8000 + 7587 db 123, 3 dw 0x8000 + 7594 db 6, 6 dw 0x8000 + 7597 db 121, 4 dw 0x8000 + 7603 db 6, 7 dw 0x8000 + 7607 db 122, 4 dw 0x800...
albs-br/msx-mk
1,119
Data/scorpion/walking/left/scorpion_walking_left_animation.s
Scorpion_Walking_Left_Animation_Headers: dw Scorpion_Walking_Left_Frame_0_Header, Scorpion_Walking_Left_Frame_0_Header, Scorpion_Walking_Left_Frame_0_Header dw Scorpion_Walking_Left_Frame_1_Header, Scorpion_Walking_Left_Frame_1_Header, Scorpion_Walking_Left_Frame_1_Header dw Scorpion_Walking_Left_Frame_2_Header, Sco...
albs-br/msx-mk
3,536
Data/scorpion/walking/left/scorpion_walking_left_frame_6_list.s
db 13, 4 dw 0x8000 + 6473 db 127, 5 dw 0x8000 + 6477 db 128, 5 dw 0x8000 + 6482 db 128, 6 dw 0x8000 + 6487 db 127, 7 dw 0x8000 + 6493 db 123, 2 dw 0x8000 + 6500 db 6, 6 dw 0x8000 + 6502 db 121, 4 dw 0x8000 + 6508 db 6, 6 dw 0x8000 + 6512 db 122, 4 dw 0x8000 + 6518 db 7, 6 dw 0x8000 + 6522 db 121, 4 dw 0x800...
albs-br/msx-mk
42,045
Data/scorpion/walking/left/scorpion_walking_left_frames_0_to_8_data.s
db 0, 3, 51, 48, 0, 51, 51, 51, 1, 16, 51, 51, 51, 0, 17, 16, 51, 51, 51, 48, 17, 16, 51, 51, 51, 48, 12, 192, 1, 17, 3, 51, 51, 51, 48, 0, 12, 192, 1, 17, 51, 51, 51, 60, 192, 0, 0, 14, 187, 1, 0, 51, 51, 51, 204, 224, 0, 3, 60, 187, 0, 0, 3, 51, 59, 190, 192, 0, 0, 51, 60, 228, 3, 0, 3, 51, 59, 191, 188, 0, 3, 51, 5...
albs-br/msx-mk
3,862
Data/scorpion/walking/left/scorpion_walking_left_frame_3_list.s
db 13, 3 dw 0x8000 + 3328 db 128, 4 dw 0x8000 + 3331 db 127, 5 dw 0x8000 + 3335 db 128, 5 dw 0x8000 + 3340 db 128, 6 dw 0x8000 + 3345 db 127, 7 dw 0x8000 + 3351 db 123, 2 dw 0x8000 + 3358 db 5, 7 dw 0x8000 + 3360 db 122, 4 dw 0x8000 + 3367 db 6, 7 dw 0x8000 + 3371 db 122, 4 dw 0x8000 + 3378 db 6, 7 dw 0x800...
albs-br/msx-mk
3,794
Data/scorpion/walking/left/scorpion_walking_left_frame_5_list.s
db 13, 4 dw 0x8000 + 5452 db 128, 5 dw 0x8000 + 5456 db 127, 6 dw 0x8000 + 5461 db 128, 6 dw 0x8000 + 5467 db 128, 6 dw 0x8000 + 5473 db 122, 3 dw 0x8000 + 5479 db 6, 6 dw 0x8000 + 5482 db 122, 3 dw 0x8000 + 5488 db 6, 6 dw 0x8000 + 5491 db 122, 4 dw 0x8000 + 5497 db 6, 6 dw 0x8000 + 5501 db 121, 5 dw 0x800...
albs-br/msx-mk
4,177
Data/scorpion/walking/left/scorpion_walking_left_frame_8_list.s
db 14, 3 dw 0x8000 + 8696 db 127, 4 dw 0x8000 + 8699 db 128, 5 dw 0x8000 + 8703 db 127, 6 dw 0x8000 + 8708 db 128, 6 dw 0x8000 + 8714 db 123, 1 dw 0x8000 + 8720 db 5, 6 dw 0x8000 + 8721 db 122, 3 dw 0x8000 + 8727 db 6, 6 dw 0x8000 + 8730 db 122, 3 dw 0x8000 + 8736 db 6, 6 dw 0x8000 + 8739 db 121, 5 dw 0x800...
albs-br/msx-mk
4,127
Data/scorpion/walking/left/scorpion_walking_left_frame_0_list.s
db 13, 4 dw 0x8000 + 0 db 128, 4 dw 0x8000 + 4 db 127, 6 dw 0x8000 + 8 db 128, 6 dw 0x8000 + 14 db 128, 6 dw 0x8000 + 20 db 123, 2 dw 0x8000 + 26 db 4, 7 dw 0x8000 + 28 db 123, 3 dw 0x8000 + 35 db 5, 7 dw 0x8000 + 38 db 122, 4 dw 0x8000 + 45 db 6, 7 dw 0x8000 + 49 db 122, 4 dw 0x8000 + 56 db 6, 7 dw 0x8000...
albs-br/msx-mk
3,855
Data/scorpion/walking/left/scorpion_walking_left_frame_4_list.s
db 13, 4 dw 0x8000 + 4392 db 127, 5 dw 0x8000 + 4396 db 128, 5 dw 0x8000 + 4401 db 127, 7 dw 0x8000 + 4406 db 128, 7 dw 0x8000 + 4413 db 123, 2 dw 0x8000 + 4420 db 5, 7 dw 0x8000 + 4422 db 122, 4 dw 0x8000 + 4429 db 6, 6 dw 0x8000 + 4433 db 122, 4 dw 0x8000 + 4439 db 6, 7 dw 0x8000 + 4443 db 121, 5 dw 0x800...
albs-br/msx-mk
1,278
Data/scorpion/walking/left/scorpion_walking_left_frames_0_to_8_data_and_list.s
Scorpion_Walking_Left_Frames_0_to_8_Data: INCLUDE "Data/scorpion/walking/left/scorpion_walking_left_frames_0_to_8_data.s" ; ------------------------------------------------------------------------ Scorpion_Walking_Left_Frame_0: .List: INCLUDE "Data/scorpion/walking/left/scorpion_walking_left_frame_0_list.s" Sc...
albs-br/msx-mk
2,162
Data/scorpion/crouching/left/scorpion_crouching_left_frame_2_list.s
db 14, 7 dw 0x8000 + 5162 db 126, 11 dw 0x8000 + 5169 db 127, 13 dw 0x8000 + 5180 db 127, 15 dw 0x8000 + 5193 db 128, 16 dw 0x8000 + 5208 db 127, 17 dw 0x8000 + 5224 db 128, 17 dw 0x8000 + 5241 db 128, 17 dw 0x8000 + 5258 db 128, 17 dw 0x8000 + 5275 db 128, 17 dw 0x8000 + 5292 db 128, 17 dw 0x8000 + 5309 db...
albs-br/msx-mk
11,438
Data/scorpion/crouching/left/scorpion_crouching_left_frames_0_to_2_data.s
db 0, 0, 0, 0, 1, 16, 3, 51, 0, 0, 17, 0, 51, 51, 48, 0, 17, 3, 51, 51, 48, 1, 16, 3, 51, 51, 51, 1, 16, 3, 51, 51, 51, 1, 0, 51, 51, 51, 51, 1, 51, 51, 51, 51, 51, 0, 0, 51, 51, 51, 51, 51, 0, 0, 48, 51, 51, 51, 51, 192, 3, 51, 48, 51, 51, 51, 3, 60, 64, 1, 27, 188, 3, 51, 51, 48, 51, 51, 62, 228, 176, 1, 187, 187, 1...
albs-br/msx-mk
3,827
Data/scorpion/crouching/left/scorpion_crouching_left_frame_0_list.s
db 17, 4 dw 0x8000 + 3175 db 128, 5 dw 0x8000 + 3179 db 127, 6 dw 0x8000 + 3184 db 128, 6 dw 0x8000 + 3190 db 128, 6 dw 0x8000 + 3196 db 128, 6 dw 0x8000 + 3202 db 128, 6 dw 0x8000 + 3208 db 128, 6 dw 0x8000 + 3214 db 127, 7 dw 0x8000 + 3220 db 127, 8 dw 0x8000 + 3227 db 127, 9 dw 0x8000 + 3235 db 125, 12 d...
albs-br/msx-mk
1,315
Data/scorpion/crouching/left/scorpion_crouching_left_animation.s
Scorpion_Crouching_Left_Animation_Headers: dw Scorpion_Crouching_Left_Frame_0_Header, Scorpion_Crouching_Left_Frame_0_Header, Scorpion_Crouching_Left_Frame_0_Header dw Scorpion_Crouching_Left_Frame_1_Header, Scorpion_Crouching_Left_Frame_1_Header, Scorpion_Crouching_Left_Frame_1_Header dw Scorpion_Crouching_Left_Fra...
albs-br/msx-mk
2,919
Data/scorpion/crouching/left/scorpion_crouching_left_frame_1_list.s
db 18, 3 dw 0x8000 + 4272 db 128, 4 dw 0x8000 + 4275 db 127, 5 dw 0x8000 + 4279 db 128, 6 dw 0x8000 + 4284 db 127, 7 dw 0x8000 + 4290 db 125, 10 dw 0x8000 + 4297 db 127, 11 dw 0x8000 + 4307 db 127, 12 dw 0x8000 + 4318 db 127, 15 dw 0x8000 + 4330 db 127, 17 dw 0x8000 + 4345 db 127, 18 dw 0x8000 + 4362 db 128...
albs-br/msx-mk
35,798
Data/scorpion/stance/left/scorpion_frames_0_to_6_data.s
db 0, 3, 51, 0, 0, 0, 51, 51, 48, 1, 19, 51, 51, 51, 17, 19, 51, 51, 51, 0, 17, 3, 51, 51, 51, 0, 1, 17, 51, 51, 51, 51, 0, 1, 16, 51, 51, 51, 206, 0, 1, 16, 0, 1, 16, 51, 51, 60, 203, 192, 1, 17, 192, 204, 0, 16, 51, 60, 204, 235, 64, 3, 0, 14, 187, 0, 16, 51, 52, 187, 187, 192, 0, 51, 51, 203, 187, 1, 0, 48, 51, 239...
albs-br/msx-mk
4,263
Data/scorpion/stance/left/scorpion_frame_1_list.s
db 14, 4 dw 0x8000 + 1203 db 128, 5 dw 0x8000 + 1207 db 127, 6 dw 0x8000 + 1212 db 128, 6 dw 0x8000 + 1218 db 128, 6 dw 0x8000 + 1224 db 128, 6 dw 0x8000 + 1230 db 128, 6 dw 0x8000 + 1236 db 123, 2 dw 0x8000 + 1242 db 5, 6 dw 0x8000 + 1244 db 122, 4 dw 0x8000 + 1250 db 6, 6 dw 0x8000 + 1254 db 122, 4 dw 0x8...
albs-br/msx-mk
4,315
Data/scorpion/stance/left/scorpion_frame_6_list.s
db 14, 3 dw 0x8000 + 7197 db 127, 5 dw 0x8000 + 7200 db 128, 5 dw 0x8000 + 7205 db 127, 7 dw 0x8000 + 7210 db 128, 7 dw 0x8000 + 7217 db 128, 7 dw 0x8000 + 7224 db 129, 6 dw 0x8000 + 7231 db 121, 3 dw 0x8000 + 7237 db 6, 7 dw 0x8000 + 7240 db 122, 3 dw 0x8000 + 7247 db 7, 6 dw 0x8000 + 7250 db 121, 4 dw 0x8...
albs-br/msx-mk
4,155
Data/scorpion/stance/left/scorpion_frame_4_list.s
db 14, 3 dw 0x8000 + 4826 db 128, 4 dw 0x8000 + 4829 db 127, 5 dw 0x8000 + 4833 db 128, 6 dw 0x8000 + 4838 db 128, 6 dw 0x8000 + 4844 db 128, 6 dw 0x8000 + 4850 db 128, 6 dw 0x8000 + 4856 db 122, 3 dw 0x8000 + 4862 db 6, 6 dw 0x8000 + 4865 db 122, 3 dw 0x8000 + 4871 db 6, 6 dw 0x8000 + 4874 db 121, 5 dw 0x8...
albs-br/msx-mk
4,086
Data/scorpion/stance/left/scorpion_frame_0_list.s
db 14, 4 dw 0x8000 + 0 db 127, 5 dw 0x8000 + 4 db 128, 5 dw 0x8000 + 9 db 128, 5 dw 0x8000 + 14 db 127, 7 dw 0x8000 + 19 db 128, 7 dw 0x8000 + 26 db 128, 7 dw 0x8000 + 33 db 123, 3 dw 0x8000 + 40 db 5, 7 dw 0x8000 + 43 db 122, 4 dw 0x8000 + 50 db 6, 7 dw 0x8000 + 54 db 122, 4 dw 0x8000 + 61 db 6, 7 dw 0x80...
albs-br/msx-mk
4,363
Data/scorpion/stance/left/scorpion_frame_5_list.s
db 14, 4 dw 0x8000 + 6007 db 128, 5 dw 0x8000 + 6011 db 127, 6 dw 0x8000 + 6016 db 128, 6 dw 0x8000 + 6022 db 128, 6 dw 0x8000 + 6028 db 122, 3 dw 0x8000 + 6034 db 6, 6 dw 0x8000 + 6037 db 122, 3 dw 0x8000 + 6043 db 6, 6 dw 0x8000 + 6046 db 121, 4 dw 0x8000 + 6052 db 7, 6 dw 0x8000 + 6056 db 120, 5 dw 0x800...
albs-br/msx-mk
4,308
Data/scorpion/stance/left/scorpion_frame_3_list.s
db 14, 4 dw 0x8000 + 3628 db 128, 5 dw 0x8000 + 3632 db 127, 6 dw 0x8000 + 3637 db 128, 6 dw 0x8000 + 3643 db 128, 6 dw 0x8000 + 3649 db 122, 3 dw 0x8000 + 3655 db 6, 6 dw 0x8000 + 3658 db 122, 3 dw 0x8000 + 3664 db 6, 6 dw 0x8000 + 3667 db 121, 5 dw 0x8000 + 3673 db 7, 6 dw 0x8000 + 3678 db 121, 5 dw 0x800...
albs-br/msx-mk
4,395
Data/scorpion/stance/left/scorpion_frame_2_list.s
db 14, 4 dw 0x8000 + 2408 db 128, 4 dw 0x8000 + 2412 db 127, 6 dw 0x8000 + 2416 db 128, 6 dw 0x8000 + 2422 db 128, 6 dw 0x8000 + 2428 db 123, 2 dw 0x8000 + 2434 db 5, 6 dw 0x8000 + 2436 db 122, 4 dw 0x8000 + 2442 db 6, 6 dw 0x8000 + 2446 db 122, 4 dw 0x8000 + 2452 db 6, 6 dw 0x8000 + 2456 db 121, 5 dw 0x800...
albs-br/msx-mk
3,750
Data/scorpion/uppercut/left/scorpion_uppercut_left_frame_1_list.s
db 24, 3 dw 0x8000 + 873 db 127, 4 dw 0x8000 + 876 db 128, 4 dw 0x8000 + 880 db 127, 6 dw 0x8000 + 884 db 128, 6 dw 0x8000 + 890 db 128, 6 dw 0x8000 + 896 db 128, 6 dw 0x8000 + 902 db 128, 6 dw 0x8000 + 908 db 128, 6 dw 0x8000 + 914 db 126, 8 dw 0x8000 + 920 db 128, 8 dw 0x8000 + 928 db 127, 9 dw 0x8000 + 9...
albs-br/msx-mk
1,103
Data/scorpion/uppercut/left/scorpion_uppercut_left_animation.s
Scorpion_Uppercut_Left_Animation_Headers: dw Scorpion_Uppercut_Left_Frame_0_Header, Scorpion_Uppercut_Left_Frame_0_Header, Scorpion_Uppercut_Left_Frame_0_Header dw Scorpion_Uppercut_Left_Frame_1_Header, Scorpion_Uppercut_Left_Frame_1_Header, Scorpion_Uppercut_Left_Frame_1_Header dw Scorpion_Uppercut_Left_Frame_2_Hea...
albs-br/msx-mk
4,602
Data/scorpion/uppercut/left/scorpion_uppercut_left_frame_3_list.s
db 23, 2 dw 0x8000 + 3139 db 127, 3 dw 0x8000 + 3141 db 128, 4 dw 0x8000 + 3144 db 128, 4 dw 0x8000 + 3148 db 128, 4 dw 0x8000 + 3152 db 128, 4 dw 0x8000 + 3156 db 128, 4 dw 0x8000 + 3160 db 128, 4 dw 0x8000 + 3164 db 128, 4 dw 0x8000 + 3168 db 128, 4 dw 0x8000 + 3172 db 128, 4 dw 0x8000 + 3176 db 128, 3 dw...
albs-br/msx-mk
4,292
Data/scorpion/uppercut/left/scorpion_uppercut_left_frame_5_list.s
db 21, 2 dw 0x8000 + 5487 db 127, 4 dw 0x8000 + 5489 db 128, 5 dw 0x8000 + 5493 db 127, 6 dw 0x8000 + 5498 db 128, 6 dw 0x8000 + 5504 db 128, 6 dw 0x8000 + 5510 db 128, 6 dw 0x8000 + 5516 db 128, 6 dw 0x8000 + 5522 db 128, 6 dw 0x8000 + 5528 db 127, 7 dw 0x8000 + 5534 db 128, 7 dw 0x8000 + 5541 db 128, 7 dw...
albs-br/msx-mk
4,217
Data/scorpion/uppercut/left/scorpion_uppercut_left_frame_2_list.s
db 21, 3 dw 0x8000 + 1940 db 127, 5 dw 0x8000 + 1943 db 128, 5 dw 0x8000 + 1948 db 128, 5 dw 0x8000 + 1953 db 128, 5 dw 0x8000 + 1958 db 127, 6 dw 0x8000 + 1963 db 128, 6 dw 0x8000 + 1969 db 128, 6 dw 0x8000 + 1975 db 128, 7 dw 0x8000 + 1981 db 128, 7 dw 0x8000 + 1988 db 19, 1 dw 0x8000 + 1995 db 109, 7 dw ...
albs-br/msx-mk
4,302
Data/scorpion/uppercut/left/scorpion_uppercut_left_frame_4_list.s
db 15, 2 dw 0x8000 + 4316 db 128, 2 dw 0x8000 + 4318 db 127, 4 dw 0x8000 + 4320 db 128, 5 dw 0x8000 + 4324 db 128, 6 dw 0x8000 + 4329 db 128, 7 dw 0x8000 + 4335 db 128, 8 dw 0x8000 + 4342 db 128, 8 dw 0x8000 + 4350 db 129, 8 dw 0x8000 + 4358 db 131, 5 dw 0x8000 + 4366 db 128, 6 dw 0x8000 + 4371 db 126, 8 dw...
albs-br/msx-mk
27,156
Data/scorpion/uppercut/left/scorpion_uppercut_left_frames_0_to_5_data.s
db 0, 51, 0, 0, 3, 51, 51, 19, 51, 51, 51, 48, 1, 3, 51, 51, 51, 48, 0, 3, 51, 51, 51, 48, 16, 51, 51, 51, 51, 48, 3, 51, 51, 51, 51, 48, 241, 51, 51, 51, 51, 51, 0, 11, 188, 51, 51, 51, 51, 51, 192, 187, 192, 3, 51, 51, 51, 62, 188, 11, 188, 48, 3, 51, 51, 51, 11, 255, 203, 176, 51, 51, 51, 51, 51, 11, 191, 1, 251, 1...
albs-br/msx-mk
3,245
Data/scorpion/uppercut/left/scorpion_uppercut_left_frame_0_list.s
db 25, 3 dw 0x8000 + 0 db 127, 4 dw 0x8000 + 3 db 128, 5 dw 0x8000 + 7 db 127, 6 dw 0x8000 + 12 db 128, 6 dw 0x8000 + 18 db 128, 6 dw 0x8000 + 24 db 128, 6 dw 0x8000 + 30 db 127, 7 dw 0x8000 + 36 db 127, 8 dw 0x8000 + 43 db 128, 8 dw 0x8000 + 51 db 127, 9 dw 0x8000 + 59 db 128, 9 dw 0x8000 + 68 db 127, 10 ...