max_stars_repo_path stringlengths 3 255 | max_stars_repo_name stringlengths 5 116 | max_stars_count int64 0 107k | id stringlengths 1 7 | content stringlengths 63 1.05M |
|---|---|---|---|---|
programs/oeis/175/A175029.asm | karttu/loda | 1 | 42488 | <reponame>karttu/loda<filename>programs/oeis/175/A175029.asm<gh_stars>1-10
; A175029: a(n)=2*n if n is prime, otherwise a(n)=3*n.
; 3,4,6,12,10,18,14,24,27,30,22,36,26,42,45,48,34,54,38,60,63,66,46,72,75,78,81,84,58,90,62,96,99,102,105,108,74,114,117,120,82,126,86,132,135,138,94,144,147,150,153,156,106,162,165,168,171,... |
bootloader/x86_64/partitions.asm | hyperswine/Redox2 | 43 | 42489 | <filename>bootloader/x86_64/partitions.asm
struc mbr_partition_rec
.sys: resb 1
.chs_start: resb 3
.ty: resb 1
.chs_end: resb 3
.lba_start: resd 1
.sector_count: resd 1
endstruc
; Find a partition to load RedoxFS from.
; The partition has to be one of the primary MBR partitions.
; OUT
; eax - start_lba
; CLOBBER
; ... |
cards/bn4/ModCards/134-A018 MegaFolder2 (0D).asm | RockmanEXEZone/MMBN-Mod-Card-Kit | 10 | 42490 | <gh_stars>1-10
.include "defaults_mod.asm"
table_file_jp equ "exe4-utf8.tbl"
table_file_en equ "bn4-utf8.tbl"
game_code_len equ 3
game_code equ 0x4234574A // B4WJ
game_code_2 equ 0x42345745 // B4WE
game_code_3 equ 0x42345750 // B4WP
card_type equ 1
card_id equ 18
card_no equ "018"
card_sub equ "Mod Card 0... |
oeis/083/A083081.asm | neoneye/loda-programs | 11 | 42491 | ; A083081: First super-diagonal of number array A083075.
; Submitted by <NAME>
; 1,13,229,4921,128841,4022341,146450893,6103787761,286833509137,15011892880381,866190689012661,54637591044108073,3740820141248285785,276304073198956644661,21900911192388373534621,1854361126371148948063201,167042820820317526424632353,1595171... |
dv3/fd/version.asm | olifink/smsqe | 0 | 42492 | <filename>dv3/fd/version.asm
; DV3 Floppy Disk Version
section version
xdef fd_vers
xdef fd.rev
; Version 3.00 Derived from Atari FD V2.18
; 3.01 Combined QXL Atari Version
; 3.02 Rationalised version with common routines
fd_vers equ '3.02'
fd.rev equ 0
fd_vmess
dc.w 'QXL Floppy Disk V'
dc.l fd_vers
... |
main.asm | Debankle/GTK-app-in-NASM | 0 | 42493 | <filename>main.asm
bits 64
global _main
%include "gtk.inc"
section .bss
window: resq 1
section .rodata
signal:
.destroy: db "destroy", 0
title: db "My GTK+3 Window!", 0
section .text
_destroy_window:
jmp _gtk_main_quit
_main:
push rbp
mov rbp, rsp... |
pin-3.22-98547-g7a303a835-gcc-linux/source/tools/Utils/tsx_check_ia32.asm | ArthasZhang007/15418FinalProject | 0 | 42495 | ;
; Copyright (C) 2012-2012 Intel Corporation.
; SPDX-License-Identifier: MIT
;
.686
.xmm
.model flat,c
ASSUME NOTHING
.CODE
ALIGN 4
SupportsTsx PROC
push ebp
mov ebp, esp
BYTE 0C7h
BYTE 0F8h
BYTE 002h
BYTE 000h
BYTE 000h
BYTE 000h
jmp successLabel
abortLabel:
mov ... |
Miei-sorgenti/new/Esami/26.07.19/1 Prodotto tra vettori/main.asm | DigiOhhh/LabArchitettura2-2017-2018 | 1 | 42496 | .data
A: .byte 1 0 0 0 2 0 0 0 3 0 0 0 4 0 0 0 5 0 0 0 6 0 0 0
B: .byte 0 0 0 0 1 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 0 0 0 1 0 0 0
.text
.globl main
main:
la $a0, A
li $a1, 6
la $a2, B
li $a3, 12
jal dotproduct
move $a0, $v0
li $v0, 1
syscall
li $v0, 10
sysc... |
libsrc/_DEVELOPMENT/math/float/math48/z80/am48_cosh.asm | jpoikela/z88dk | 640 | 42497 | <filename>libsrc/_DEVELOPMENT/math/float/math48/z80/am48_cosh.asm
; double cosh(double x)
SECTION code_clib
SECTION code_fp_math48
PUBLIC am48_cosh
EXTERN am48_exp, am48_dpopret, am48_dconst_1
EXTERN am48_ddiv, am48_dadd, am48_dxpopret
am48_cosh:
; hyperbolic cosine
; AC' = cosh(AC')
;
; enter : AC' =... |
programs/oeis/001/A001553.asm | karttu/loda | 0 | 42498 | <filename>programs/oeis/001/A001553.asm<gh_stars>0
; A001553: a(n) = 1^n + 2^n + ... + 6^n.
; 6,21,91,441,2275,12201,67171,376761,2142595,12313161,71340451,415998681,2438235715,14350108521,84740914531,501790686201,2978035877635,17706908038281,105443761093411,628709267031321,3752628871164355,22418196307542441
mov $1,8
... |
dot.asm | gp48k/lpfp | 17 | 42500 | ; Square norm of a vector
; Input: B = dimensions, HL = pointer to vector
; Output: HL = square norm
; Pollutes: AF, DE
FLEN: LD E,(HL)
INC HL
LD D,(HL)
EX DE,HL
CALL FSQUARE
DJNZ FLEN1
RET
FLEN1: PUSH HL
EX DE,HL
INC HL
CALL FLEN
EX DE,HL
POP HL
JP FADDP
; Scalar multiplication of two vectors
; Input: A =... |
data/mapHeaders/route6gate.asm | adhi-thirumala/EvoYellow | 16 | 42501 | <filename>data/mapHeaders/route6gate.asm
Route6Gate_h:
db GATE ; tileset
db ROUTE_6_GATE_HEIGHT, ROUTE_6_GATE_WIDTH ; dimensions (y, x)
dw Route6GateBlocks, Route6GateTextPointers, Route6GateScript ; blocks, texts, scripts
db $00 ; connections
dw Route6GateObject ; objects
|
PDALib/all.asm | DaimaoPPK/PDALib | 1 | 42502 | %pathsearch x86_32syscalls "/usr/include/PDALib/x86_32syscalls.asm"
%pathsearch x86_64syscalls "/usr/include/PDALib/x86_64syscalls.asm"
%pathsearch ESequences "/usr/include/PDALib/ESequences.asm"
%pathsearch ERRCODE "/usr/include/PDALib/ErrorCode.asm"
%ifidn __OUTPUT_FORMAT__, elf
%include x86_32syscalls
%elifidn ... |
programs/oeis/138/A138964.asm | neoneye/loda | 22 | 42503 | <reponame>neoneye/loda
; A138964: a(n) = 8^n mod 6^n.
; 0,2,28,80,208,1664,28864,137600,1660672,3207680,45816832,245602304,1239224320,1206665216,9653321728,390683230208,2185095872512,554107535360,38286179172352,306289433378816,1231595987009536,9852767896076288,78822143168610304,367333737664348160
mov $1,$0
min $0,1
mo... |
programs/oeis/266/A266984.asm | jmorken/loda | 1 | 42504 | <reponame>jmorken/loda<filename>programs/oeis/266/A266984.asm
; A266984: Decimal representation of the n-th iteration of the "Rule 81" elementary cellular automaton starting with a single ON (black) cell.
; 1,1,24,31,384,511,6144,8191,98304,131071,1572864,2097151,25165824,33554431,402653184,536870911,6442450944,8589934... |
libsrc/_DEVELOPMENT/math/integer/fast/l_fast_divu_64_64x64.asm | ahjelm/z88dk | 640 | 42505 |
; 2016 aralbrec
SECTION code_clib
SECTION code_math
PUBLIC l_fast_divu_64_64x64
EXTERN l_setmem_hl, error_divide_by_zero_mc
EXTERN l0_fast_divu_32_32x32
l_fast_divu_64_64x64:
; unsigned "fast" 64-bit division (copied from small)
;
; enter : +------------------------
; | +15
; ... |
programs/oeis/101/A101853.asm | karttu/loda | 1 | 42506 | ; A101853: a(n) = n*(20+15*n+n^2)/6.
; 6,18,37,64,100,146,203,272,354,450,561,688,832,994,1175,1376,1598,1842,2109,2400,2716,3058,3427,3824,4250,4706,5193,5712,6264,6850,7471,8128,8822,9554,10325,11136,11988,12882,13819,14800,15826,16898,18017,19184,20400,21666,22983,24352,25774,27250,28781,30368,32012,33714,35475,3729... |
Source/HBIOS/spk.asm | vipoo/RomWBW | 0 | 42507 | <gh_stars>0
;======================================================================
;
; BIT MODE SOUND DRIVER FOR SBC V2 USING BIT 0 OF RTC DRIVER
;
;======================================================================
;
; LIMITATIONS - CPU FREQUENCY ADJUSTMENT LIMITED TO 1MHZ RESOLUTION
; QUARTER TONES NOT ... |
libsrc/fcntl/nc100/_lseek.asm | jpoikela/z88dk | 640 | 42508 | <reponame>jpoikela/z88dk
;
; lseek a file on the Amstrad NC100 (max 64k files so can dump high
; bits)
;
; Supporting helpers
SECTION code_clib;
PUBLIC nc_lseek ; can't call it fseek as the OS does
PUBLIC _nc_lseek
.nc_lseek
._nc_lseek
pop hl
pop de
pop bc
push bc
push de
push hl
call 0xB8B4
j... |
solutions/41 - Image Decrypter/size-42_speed-8.asm | michaelgundlach/7billionhumans | 45 | 42509 | -- 7 Billion Humans (2053) --
-- 41: Image Decrypter --
-- Author: ansvonwa
-- Size: 42
-- Speed: 8
pickup w
step w
mem1 = set myitem
if mem1 > 8:
if mem1 > 10:
if mem1 == 12:
step w
endif
step w
a:
step w
step w
step w
step w
step w
step w
step w
step w
step w
step w
drop
b:
ste... |
src/find.asm | ShellCode33/FindTool | 0 | 42510 | <reponame>ShellCode33/FindTool
.386
.model flat,stdcall
option casemap:none
include c:\masm32\include\windows.inc
include c:\masm32\include\gdi32.inc
include c:\masm32\include\gdiplus.inc
include c:\masm32\include\user32.inc
include c:\masm32\include\kernel32.inc
include c:\masm32\include\msvcrt.inc
include... |
Assembly/kodongo_fixes.asm | CaitSith2/Enemizer | 2 | 42512 | <filename>Assembly/kodongo_fixes.asm
newKodongoCollision:
{
LDA $0DE0, X : INC A : AND.b #$03 : STA $0DE0, X
;If they collide more than 32time then kill them !
LDA $0DA0, X : INC A : STA $0DA0, X : CMP #$20 : BCC .continue
STZ $0DD0, X
.continue
RTL
} |
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_21829_349.asm | ljhsiun2/medusa | 9 | 42513 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %r15
push %r9
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0xaeb5, %rdx
nop
nop
nop
nop
nop
add %r11, %r11
movb (%rdx), %cl
nop
nop
nop
dec %rbx
lea addresses_WC_ht+0x1b0e5, %r15
nop
nop
add %r14, %r14
movb (%r15), %r9b
nop
n... |
Source application Beck DK40/libs/clibV270/SPI/spi9Edyn.asm | yassinehamouten/Gestion-acces | 0 | 42514 | <gh_stars>0
;******************************************************************************
;
; (c) 2007 by BECK IPC GmbH
; http://www.beck-ipc.com
;
;******************************************************************************
;
; Module: spi9Edyn.asm
; Function: Dynamic linking of SPI API Function spi_release... |
assembler_nasm_linux64.asm | AliMD/happy-new-year | 2 | 42515 | section .text
global _start ;must be declared for linker (ld)
_start: ;tell linker entry point
xor eax,eax ; eax:=0
lea edx,[rax+len] ;message length
mov al,1 ;system call number (sys_write)
mov esi,msg ;message to write
mov edi,eax ;file descriptor (stdout)
syscall ;call kernel
mov al,60 ;s... |
programs/oeis/329/A329847.asm | neoneye/loda | 22 | 42517 | ; A329847: Beatty sequence for (3+sqrt(89))/8.
; 1,3,4,6,7,9,10,12,13,15,17,18,20,21,23,24,26,27,29,31,32,34,35,37,38,40,41,43,45,46,48,49,51,52,54,55,57,59,60,62,63,65,66,68,69,71,73,74,76,77,79,80,82,83,85,87,88,90,91,93,94,96,97,99,101,102
add $0,1
mov $1,28
mul $1,$0
sub $1,1
div $1,18
mov $0,$1
|
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_4348_230.asm | ljhsiun2/medusa | 9 | 42518 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_4348_230.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r13
push %r14
push %r15
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
// Store
lea addresses_PSE+0x1eb13, %r13... |
0400/sum.asm | 20chan/asm-adventures | 0 | 42519 | <gh_stars>0
BITS 32
%include 'training.s'
global main
extern exit
section .text
main:
call read_hex
mov edx,eax
call read_hex
add eax,edx
call print_eax
push 0
call exit |
programs/oeis/115/A115562.asm | neoneye/loda | 22 | 42521 | ; A115562: a(n) = number of distinct squarefree ternary (cyclic) sequences uniquely containing every possible length-n substring.
; 2,3,0,6,0,0,0,0,0,0
mov $1,$0
pow $0,2
mov $2,$1
pow $2,$1
mul $1,$0
add $1,2
bin $1,$2
mov $0,$1
mod $0,10
|
vine.asm | cuhsat/vine | 0 | 42522 | ; The MIT License (MIT)
;
; Copyright (c) 2019 <NAME> <<EMAIL>>
;
; Permission is hereby granted, free of charge, to any person obtaining a copy
; of this software and associat... |
src/boot/demo_macros_dummy.nasm | maximsmol/nos | 1 | 42523 | %macro f_actively_cause_global_warming16 1
%endmacro
%macro f_actively_cause_global_warming32 1
%endmacro
%macro f_puts16_ptr 1
%endmacro
%macro f_puts16 1
%endmacro
%macro f_puts32 1
%endmacro
demopause: equ 130
%macro f_demo_puts16_ptr 1
%endmacro
%macro f_demo_puts16 1
%endmacro
%macro f_demo_puts32 1
%endmac... |
oeis/121/A121689.asm | neoneye/loda-programs | 11 | 42524 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A121689: G.f.: Sum_{n>=0} x^n * (1+x)^(n^2).
; Submitted by <NAME>
; 1,1,2,5,16,57,231,1023,4926,25483,140601,822422,5074015,32881868,223027542,1578435549,11625317128,88894615929,704269188135,5770209550496,48810504348082,425650324975153,3821377057170313,3527568225104157... |
pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho32-sect.asm | manggoguy/parsec-modified | 2,151 | 42525 | section .data
section __x
section __y segname=__Y
section __Z, __z
section __Y __bar
section __reallylongname12345
section __REALLYLONGSEGNAME __1
section __2 __reallylongsectname
section __2REALLYLONGSEGNAME __2reallylongsectname
|
lib/chibiakumas/SrcALL/V1_BankSwapper.asm | gilbertfrancois/msx | 0 | 42526 | ifdef BuildCPC
read "..\SrcCPC\CPC_V1_BankSwapper.asm"
endif
ifdef BuildZXS
read "..\SrcZX\ZX_V1_BankSwapper.asm"
endif
ifdef BuildENT
read "..\SrcENT\ENT_V1_BankSwapper.asm"
endif
ifdef BuildSAM
read "..\SrcSAM\SAM_V1_BankSwapper.asm"
endif
ifdef BuildGMB
read "..\SrcGB\GB_V1_BankSwappe... |
src/boot.asm | programmeruser2/os | 10 | 42527 | MBALIGN equ 1<<0
MEMINFO equ 1<<1
FLAGS equ MBALIGN | MEMINFO
MAGIC equ 0x1BADB002
CHECKSUM equ -(MAGIC + FLAGS)
section .multiboot
align 4
dd MAGIC
dd FLAGS
dd CHECKSUM
section .bss
align 16
stack_bottom:
resb 16386
stack_top:
section .text
global _start:function (_start.end - _start)
_start:
mov esp, stack_top
... |
libsrc/z80_crt0s/gbz80/sdcc/__moduint.asm | Frodevan/z88dk | 640 | 42529 | <gh_stars>100-1000
SECTION code_l_sdcc
PUBLIC __moduint
GLOBAL l_divu16
__moduint:
ld hl,sp+5
ld d,(hl)
dec hl
ld e,(hl)
dec hl
ld b,(hl)
dec hl
ld c,(hl)
call l_divu16
;; Already in DE
ret
|
oeis/021/A021993.asm | neoneye/loda-programs | 11 | 42530 | <filename>oeis/021/A021993.asm
; A021993: Decimal expansion of 1/989.
; Submitted by <NAME>(s2)
; 0,0,1,0,1,1,1,2,2,3,4,5,8,0,3,8,4,2,2,6,4,9,1,4,0,5,4,6,0,0,6,0,6,6,7,3,4,0,7,4,8,2,3,0,5,3,5,8,9,4,8,4,3,2,7,6,0,3,6,4,0,0,4,0,4,4,4,8,9,3,8,3,2,1,5,3,6,9,0,5,9,6,5,6,2,1,8,4,0,2,4,2,6,6,9,3,6,2,9
seq $0,83811 ; Numbers ... |
Driver/Net/NW/nwUserInfo.asm | steakknife/pcgeos | 504 | 42531 | <reponame>steakknife/pcgeos
COMMENT @----------------------------------------------------------------------
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC/GEOS
MODULE: Novell NetWare Driver
FILE: userInfo.asm
REVISION HISTORY:
Name Date Description
---- ---- -----------
Eric 8/92... |
programs/oeis/081/A081345.asm | neoneye/loda | 22 | 42532 | ; A081345: First row in maze arrangement of natural numbers A081344.
; 1,4,5,16,17,36,37,64,65,100,101,144,145,196,197,256,257,324,325,400,401,484,485,576,577,676,677,784,785,900,901,1024,1025,1156,1157,1296,1297,1444,1445,1600,1601,1764,1765,1936,1937,2116,2117,2304,2305,2500,2501,2704,2705,2916,2917,3136,3137,3364,33... |
Library/Convert/convertGeoWrite.asm | steakknife/pcgeos | 504 | 42533 | <filename>Library/Convert/convertGeoWrite.asm
COMMENT @----------------------------------------------------------------------
Copyright (c) Berkeley Softworks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Convert
FILE: convertText.asm
REVISION HISTORY:
Name Date Description
---- ---- --------... |
ftm/1-1.asm | zeta0134/bhop | 4 | 42534 | ; Dn-FamiTracker exported music data: smb1_allstars_2a03.0cc
;
; Module header
.word ft_song_list
.word ft_instrument_list
.word ft_sample_list
.word ft_samples
.word ft_groove_list
.byte 0 ; flags
.word 3600 ; NTSC speed
.word 3000 ; PAL speed
; Instrument pointer list
ft_instrument_list:
.word ft_inst_0
.... |
Source/DX8/homer2.asm | betajaen/dx8 | 9 | 42535 | ; SIZE 16x16
; PAL F06
;0100001000000000
;1210012100000000
;0100001000000000
;0000000000000000
;0033330000023000
;0300003000023000
;0033330000023000
;0000000000023000
;0000000000023000
;0000000000023000
;0000000000023000
;0000222222223000
;0000333333333000
;0000000000000000
;0000000000000000
;0000000000000000
db $04, $... |
tests/rule_arg_typed/48.asm | NullMember/customasm | 414 | 42536 | <filename>tests/rule_arg_typed/48.asm
#ruledef test
{
ld1 {x: i1} => 0x55 @ 0b000 @ x
}
ld1 2 ; error: failed / error: out of range |
src/firmware-tests/Platform/Lcd/BacklightMocks.asm | pete-restall/Cluck2Sesame-Prototype | 1 | 42537 | <filename>src/firmware-tests/Platform/Lcd/BacklightMocks.asm
#include "Platform.inc"
#include "TestDoubles.inc"
radix decimal
udata
global calledSetLcdBacklightFlag
global calledClearLcdBacklightFlag
calledSetLcdBacklightFlag res 1
calledClearLcdBacklightFlag res 1
BacklightMocks code
global initialiseLcdBac... |
examples/arr_cat.asm | mossx-dev/Mycore | 0 | 42538 | ;; Author: <NAME>
;; Data: 28-Oct-21
%include "std/type.asm"
%include "std/arr.asm"
global _start
section .data
arr_size: equ 10
section .text
_start:
mov r15, rsp
call main
mov eax, esi ; exit code
call sys~exit ; call exit
main:
mov rax, arr_size
... |
test/hello/arch/x86-64/hello.nasm | DerickEddington/psas | 0 | 42539 | %include "psas/conv.nasm"
section .text
proc foo:
; Push something to see in the stack segment file.
push 0x11223344
; Print 1st hello.
lea carg1_rdi, [rel msg1]
mov carg2_rsi, msg1_end - msg1
call_sysintf console_write
; Push something else, after call_sysintf, to see in the stack segment file.
push ... |
tests/struct/initializer_syntax.asm | cizo2000/sjasmplus | 220 | 42541 | ; Based on documentation example (definitions same as tests/docs_examples/c_structures.asm)
; But this test does focus on stressing initializers syntax
STRUCT SCOLOR
RED BYTE 4
GREEN BYTE 5
BLUE BYTE 6
ENDS
STRUCT SDOT
X BYTE 8
Y BYTE 9
C SCOLOR 10,11,12 ; us... |
programs/oeis/007/A007814.asm | jmorken/loda | 1 | 42542 | ; A007814: Exponent of highest power of 2 dividing n, a.k.a. the binary carry sequence, the ruler sequence, or the 2-adic valuation of n.
; 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,... |
core/core.asm | ArkAngeL43/port-scanning | 0 | 42544 | section .data
string db "Using Current CPU => < XXXXXXXXXXXX >",0xA
section .text
global _start
_start:
xor eax,eax
cpuid
mov edi,string
mov [edi+25],ebx
mov [edi+29],edx
mov [edi+33],ecx
mov eax,4
mov ebx,1
mov ecx,string
mov edx,41
... |
projects/04/fill/Fill.asm | chenshouao/nand2tetris | 0 | 42545 | <filename>projects/04/fill/Fill.asm<gh_stars>0
// This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by <NAME> Schocken, MIT Press.
// File name: projects/04/Fill.asm
// Runs an infinite loop that listens to the keyboard input.
// When a key is pressed (any key), the progra... |
programs/oeis/070/A070373.asm | jmorken/loda | 1 | 42549 | <reponame>jmorken/loda<gh_stars>1-10
; A070373: a(n) = 5^n mod 19.
; 1,5,6,11,17,9,7,16,4,1,5,6,11,17,9,7,16,4,1,5,6,11,17,9,7,16,4,1,5,6,11,17,9,7,16,4,1,5,6,11,17,9,7,16,4,1,5,6,11,17,9,7,16,4,1,5,6,11,17,9,7,16,4,1,5,6,11,17,9,7,16,4,1,5,6,11,17,9,7,16,4,1,5,6,11,17,9,7,16,4,1,5,6,11,17,9,7,16,4,1,5,6,11,17,9,7,16,4... |
base/ntos/io/pnpmgr/i386/pbiosa.asm | npocmaka/Windows-Server-2003 | 17 | 42551 | <gh_stars>10-100
title "Pnp Bios Bus Extender ASM support routines"
;++
;
; Copyright (c) Microsoft Corporation. All rights reserved.
;
; Module Name:
;
; pbiosa.asm
;
; Abstract:
;
; This file contains Pnp Bios ASM support routines.
;
; Author:
;
; <NAME> (shielint) Jan 15, 1998
;
; ... |
text/maps/route_10.asm | adhi-thirumala/EvoYellow | 16 | 42553 | <filename>text/maps/route_10.asm
_Route10BattleText1::
text "Wow, are you a"
line "#MANIAC too?"
cont "Want to see my"
cont "collection?"
done
_Route10EndBattleText1::
text "Humph."
line "I'm not angry!"
prompt
_Route10AfterBattleText1::
text "I have more rare"
line "#MON at home!"
done
_Route10BattleText... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_920.asm | ljhsiun2/medusa | 9 | 42554 | <filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_920.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r15
push %r9
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x8e44, %r15
nop
nop
nop
cmp $13179, %rdx
movb $0x61, (%r15)
nop
nop
nop
nop
and %rcx, %r... |
src/test/resources/data/generationtests/sjasmplus-test6-expected.asm | cpcitor/mdlz80optimizer | 36 | 42556 | ; Test case for eager macro evaluation and unary operator precedence
org #4000
label:
db 1 * 8 + 2
db 3 * 8 + 4
label2:
dw label, label2, 16384, 16705
|
oeis/254/A254865.asm | neoneye/loda-programs | 11 | 42558 | <gh_stars>10-100
; A254865: a(n) = Product_{k = 1+n-floor(n/3) .. n} k.
; 1,1,3,4,5,30,42,56,504,720,990,11880,17160,24024,360360,524160,742560,13366080,19535040,27907200,586051200,859541760,1235591280,29654190720,43609104000,62990928000,1700755056000,2506375872000,3634245014400,109027350432000,160945136352000,23410201... |
MSDOS/Virus.MSDOS.Unknown.v300.asm | fengjixuchui/Family | 3 | 42559 | <reponame>fengjixuchui/Family<gh_stars>1-10
;------------------------------------------------------------------------------
; V 300 ANDROMEDA <??:??:90> *.COM
;------------------------------------------------------------------------------
xseg segment
Assume cs:xseg
xproc ... |
Course Experiment/Assembly Language Course Exp/No.4 Experiment/uninst.asm | XJDKC/University-Code-Archive | 4 | 42560 | <filename>Course Experiment/Assembly Language Course Exp/No.4 Experiment/uninst.asm
.386
CODE SEGMENT USE16
ASSUME CS:CODE
START:
MOV AL,16H
MOV AH,35H
INT 21H
MOV AX,ES:[BX-2]
MOV DX,ES:[BX-4]
MOV DS,AX
MOV AL,16H
MOV AH,25H
INT 21H
MOV AH,4CH
INT 21H
CODE ENDS
END START |
HW_Example/h602-0.asm | smallru8/smallMasmLib | 0 | 42561 | TITLE (.asm)
INCLUDE Irvine32.inc
INCLUDE Macros.inc
.data
.code
main PROC
L1:
mWrite "First number : "
call ReadInt
mov ebx,eax
mWrite "Second number : "
call ReadInt
mWrite "GCD result : "
call GCD
call WriteDec
call crlf
call crlf
jmp L1
exit
main ENDP
;
;GCD
;eax = x
... |
programs/oeis/015/A015234.asm | neoneye/loda | 22 | 42562 | <reponame>neoneye/loda<gh_stars>10-100
; A015234: a(n) = (17 - 2*n)*n^2.
; 0,15,52,99,144,175,180,147,64,-81,-300,-605,-1008,-1521,-2156,-2925,-3840,-4913,-6156,-7581,-9200,-11025,-13068,-15341,-17856,-20625,-23660,-26973,-30576,-34481,-38700,-43245,-48128,-53361,-58956,-64925,-71280,-78033,-85196,-92781,-100800,-10926... |
c2000/C2000Ware_1_00_06_00/libraries/control/DCL/c28/source/DCL_DF11_L1.asm | ramok/Themis_ForHPSDR | 0 | 42563 | <gh_stars>0
; DCL_DF11_L1.asm - Full Direct Form 1 implementation in first order
;
; Copyright (C) 2018 Texas Instruments Incorporated - http://www.ti.com/
; ALL RIGHTS RESERVED
.if __TI_EABI__
.asg DCL_runDF11_L1, _DCL_runDF11_L1
.endif
.global _DCL_runDF11_L1
.def __cla_DCL_DF11_L1_sp
SIZEOF_LFRAME .s... |
Kernel/asm/ports.asm | jpmrno/Alma.old | 1 | 42564 | GLOBAL _port_write_byte
GLOBAL _port_write_word
GLOBAL _port_read_byte
GLOBAL _port_read_word
section .text
align 16
%macro pushaq 0
push rax
push rbx
push rcx
push rdx
push rbp
push rdi
push rsi
push r8
push r9
push r10
push r11
push r12
push r13
push r14
push r15
pushfq
%endmacro
align 16
%macro po... |
dos/DosExecPgm.asm | prokushev/FamilyAPI | 1 | 42565 | <reponame>prokushev/FamilyAPI
;/*!
; @file
;
; @ingroup fapi
;
; @brief DosExecPgm DOS wrapper
;
; (c) osFree Project 2018, <http://www.osFree.org>
; for licence see licence.txt in root directory, or project website
;
; This is Family API implementation for DOS, used with BIND tools
; to link required API... |
data/pokemon/base_stats/mightyena.asm | TastySnax12/pokecrystal16-493-plus | 2 | 42566 | db 0 ; species ID placeholder
db 70, 90, 70, 70, 60, 60
; hp atk def spd sat sdf
db DARK, DARK ; type
db 255 ; catch rate
db 128 ; base exp
db NO_ITEM, PSNCUREBERRY ; items
db GENDER_F50 ; gender ratio
db 100 ; unknown 1
db 15 ; step cycles to hatch
db 5 ; unknown 2
INCBIN "gfx/pokemon/mighty... |
oeis/176/A176524.asm | neoneye/loda-programs | 11 | 42567 | <filename>oeis/176/A176524.asm
; A176524: Decimal expansion of sqrt(235).
; Submitted by <NAME>(s3)
; 1,5,3,2,9,7,0,9,7,1,6,7,5,5,8,9,1,6,5,6,5,5,3,6,8,1,9,9,1,5,7,2,0,4,8,7,1,0,6,9,3,2,7,3,2,5,9,5,5,6,4,6,9,5,8,5,6,6,4,7,9,4,0,7,0,8,4,7,9,4,9,3,1,4,6,6,6,5,1,6,9,7,1,8,8,2,0,2,4,3,7,0,5,5,6,7,8,2,2,9
mov $3,$0
mul $3,... |
Transynther/x86/_processed/NC/_ht_/i7-7700_9_0xca_notsx.log_7_948.asm | ljhsiun2/medusa | 9 | 42569 | <filename>Transynther/x86/_processed/NC/_ht_/i7-7700_9_0xca_notsx.log_7_948.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r14
push %r15
push %r8
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0xdae9, %r15
nop
nop
nop
nop
nop
xor %r12, %r12
mov (%r15), %r14w
dec %r15
lea addresse... |
programs/oeis/028/A028859.asm | karttu/loda | 0 | 42570 | ; A028859: a(n+2) = 2*a(n+1) + 2*a(n); a(0) = 1, a(1) = 3.
; 1,3,8,22,60,164,448,1224,3344,9136,24960,68192,186304,508992,1390592,3799168,10379520,28357376,77473792,211662336,578272256,1579869184,4316282880,11792304128,32217174016,88018956288,240472260608,656982433792,1794909388800,4903783645184,13397386067968,36602339... |
programs/oeis/278/A278122.asm | karttu/loda | 1 | 42572 | <filename>programs/oeis/278/A278122.asm
; A278122: a(n) = 204*2^n - 248.
; 160,568,1384,3016,6280,12808,25864,51976,104200,208648,417544,835336,1670920,3342088,6684424,13369096,26738440,53477128,106954504,213909256,427818760,855637768,1711275784,3422551816,6845103880,13690208008,27380416264,54760832776
mov $1,2
pow $1... |
Transynther/x86/_processed/AVXALIGN/_st_/i9-9900K_12_0xca_notsx.log_21829_840.asm | ljhsiun2/medusa | 9 | 42573 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %r14
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x12cad, %rsi
lea addresses_WC_ht+0x177ad, %rdi
clflush (%rsi)
nop
nop
nop
nop
nop
xor %rbp, %rbp
mov $80, %rcx
rep movsl
inc %r12
lea addresses_A_ht+0x974d, %r11
nop
nop
nop
n... |
libsrc/malloc/malloc.asm | andydansby/z88dk-mk2 | 1 | 42574 | ; void __FASTCALL__ *malloc(unsigned int size)
; 12.2006 aralbrec
XLIB malloc
LIB HeapAlloc_callee
XREF _heap, ASMDISP_HEAPALLOC_CALLEE
.malloc
ld c,l
ld b,h
ld hl,_heap
jp HeapAlloc_callee + ASMDISP_HEAPALLOC_CALLEE
|
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1565.asm | ljhsiun2/medusa | 9 | 42575 | <filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1565.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %rax
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x197e9, %rcx
nop
nop
nop
nop
and $32836, %rbx
mov (%rcx), %r12w
nop... |
programs/oeis/138/A138460.asm | neoneye/loda | 22 | 42576 | <reponame>neoneye/loda
; A138460: a(n) = ((n-th prime)^6-(n-th prime)^5))/2.
; 16,243,6250,50421,805255,2227758,11358856,22284891,70799773,287156086,429437265,1248191226,2317124020,3087177303,5274935161,10873082818,20732804671,25337889030,44554128531,63148027285,74630577348
seq $0,40 ; The prime numbers.
mov $1,$0
sub... |
s2/music-original/96 - Super Sonic.asm | Cancer52/flamedriver | 9 | 42577 | <filename>s2/music-original/96 - Super Sonic.asm
Supersonic_Header:
smpsHeaderStartSong 2
smpsHeaderVoice Supersonic_Voices
smpsHeaderChan $06, $03
smpsHeaderTempo $01, $FA
smpsHeaderDAC Supersonic_DAC
smpsHeaderFM Supersonic_FM1, $F4, $13
smpsHeaderFM Supersonic_FM2, $F4, $0A
... |
oeis/198/A198017.asm | neoneye/loda-programs | 11 | 42579 | ; A198017: a(n) = n*(7*n + 11)/2 + 1.
; 1,10,26,49,79,116,160,211,269,334,406,485,571,664,764,871,985,1106,1234,1369,1511,1660,1816,1979,2149,2326,2510,2701,2899,3104,3316,3535,3761,3994,4234,4481,4735,4996,5264,5539,5821,6110,6406,6709,7019,7336,7660,7991,8329,8674,9026,9385,9751,10124,10504,10891,11285,11686,12094,12... |
setup.asm | satadriver/LiunuxOS_t | 0 | 42580 | .386p
.model Tiny
MBR_BUFFER_SEG EQU 6000H
NEWMBR_BUFFER_SEG EQU 6200H
FLAG_SECTOR_SEG EQU 6400H
FONT_SECTOR_SEG EQU 6600H
LOADER_BUFFER_SEG EQU 7000H
KERNEL_BUFFER_SEG EQU 8000h
SETUP_SECTOR_LIMIT EQU 1000H
INSTALL_FLAG EQU 00474a4ch
BAKMBR_SECTOR_OFFSET EQU 1
BAKMBR2_SECTOR_OFFSET EQU 2
FONT_SECTOR_OFFSET ... |
src/test/ref/sinusgenscale8.asm | jbrandwood/kickc | 2 | 42581 | /// @file
/// Sine Generator functions using only multiplication, addition and bit shifting
///
/// Uses a single division for converting the wavelength to a reciprocal.
/// Generates sine using the series sin(x) = x - x^/3! + x^-5! - x^7/7! ...
/// Uses the approximation sin(x) = x - x^/6 + x^/128
/// Optimization pos... |
programs/oeis/128/A128806.asm | neoneye/loda | 22 | 42582 | ; A128806: a(n) = A001316(n) + A046092(n).
; 1,6,14,28,42,64,88,120,146,184,224,272,316,372,428,496,546,616,688,768,844,932,1020,1120,1204,1308,1412,1528,1632,1756,1876,2016,2114,2248,2384,2528,2668,2820,2972,3136,3284,3452,3620,3800,3968,4156,4340
mov $2,$0
mov $3,$0
mov $4,$0
lpb $2
lpb $4
div $0,2
sub $4,... |
libsrc/oz/ozscreen/ozblankscreen.asm | meesokim/z88dk | 0 | 42583 | <gh_stars>0
;
; Sharp OZ family functions
;
; ported from the OZ-7xx SDK by by <NAME>
; by <NAME> - Oct. 2003
;
;
; display blanking control functions
; LCDStatus is 0c024h in the OS;
;
;
; ------
; $Id: ozblankscreen.asm,v 1.2 2015/01/19 01:33:02 pauloscustodio Exp $
;
PUBLIC ozblankscreen
EXTERN ozunblankscreen
... |
engine/events/lucky_number.asm | Dev727/ancientplatinum | 2 | 42584 | CheckForLuckyNumberWinners:
xor a
ld [wScriptVar], a
ld [wTempByteValue], a
ld a, [wPartyCount]
and a
ret z
ld d, a
ld hl, wPartyMon1ID
ld bc, wPartySpecies
.PartyLoop:
ld a, [bc]
inc bc
cp EGG
call nz, .CompareLuckyNumberToMonID
push bc
ld bc, PARTYMON_STRUCT_LENGTH
add hl, bc
pop bc
dec d
jr nz, .P... |
cordic.asm | olokelo/riscv-cordic | 0 | 42586 | <filename>cordic.asm
# Cordic algorithm in RISC-V 32bit assembly
# Calculates approximated sinus and cosinus values for given angle
# Uses fixed point arithmetic and doesn't require an FPU
# adapted from bsvi.ru/uploads/CORDIC--_10EBA/cordic.pdf
# Tested assemblers: RARS and GAS
# Author: oloke (github.com/olokelo)
# L... |
oeis/037/A037237.asm | neoneye/loda-programs | 11 | 42587 | <filename>oeis/037/A037237.asm
; A037237: Expansion of (3 + x^2) / (1 - x)^4.
; 3,12,31,64,115,188,287,416,579,780,1023,1312,1651,2044,2495,3008,3587,4236,4959,5760,6643,7612,8671,9824,11075,12428,13887,15456,17139,18940,20863,22912,25091,27404,29855,32448,35187,38076,41119,44320,47683,51212,54911,58784,62835,67068,714... |
programs/oeis/175/A175649.asm | neoneye/loda | 22 | 42588 | <reponame>neoneye/loda
; A175649: a(n) = sopf(n) + sopf(n+1).
; 2,5,5,7,10,12,9,5,10,18,16,18,22,17,10,19,22,24,26,17,23,36,28,10,20,18,12,38,39,41,33,16,33,31,17,42,58,37,23,48,53,55,56,21,33,72,52,12,14,27,35,68,58,21,25,31,53,90,69,71,94,43,12,20,34,83,86,45,40,85,76
seq $0,28387 ; a(n) = n + (n+1)^2.
seq $0,8472 ;... |
libsrc/_DEVELOPMENT/string/z80/asm_memccpy.asm | meesokim/z88dk | 0 | 42589 |
; ===============================================================
; Dec 2013
; ===============================================================
;
; void *memccpy(void * restrict s1, const void * restrict s2, int c, size_t n)
;
; Copy n chars from s2 to s1, stopping early the first time
; char c is copied.
;
; Return N... |
eater-6502/5besthelloworld.asm | willgames-afk/code_stuff | 0 | 42590 | <gh_stars>0
.org $8000 ;code starts at $8000
;LABEL DEFINITIONS
PORTB = $6000
PORTA = $6001
DDRB = $6002
DDRA = $6003
E = %10000000
RW = %01000000
RS = %00100000
reset:
;resets the processor
ldx #$ff;Reset stack pointer
txs
LDA #%11111111 ;set portB pins to output
STA DDRB
LDA #%11100... |
programs/oeis/180/A180724.asm | karttu/loda | 1 | 42591 | <filename>programs/oeis/180/A180724.asm<gh_stars>1-10
; A180724: a(n) = n^2 + largest prime < n^2.
; 7,16,29,48,67,96,125,160,197,234,283,336,389,448,507,572,641,720,797,880,963,1052,1147,1244,1349,1456,1557,1680,1787,1914,2045,2176,2309,2448,2587,2736,2883,3032,3197,3350,3523,3696,3869,4042,4229,4416,4601
mov $5,$0
c... |
Maths/asm_square.asm | ped7g/EliteNext | 9 | 42592 | <reponame>ped7g/EliteNext<filename>Maths/asm_square.asm
; "ASM_SQUA : TESTGOOD"
; "AP = A^2 A = low,P = hi"
inline_squde: MACRO
ld e,a
ld d,a
mul
ENDM
inline_squa: MACRO
ld e,a
ld d,a
mul
ld a,e
ENDM
asm_squa:
and SignMask8Bit
; "ASM SQUA2 : TESTGOOD"
; "AP = A^2 A = low,P = hi singed"... |
Kernel/ivt.asm | bestm80eva/blacklight-os | 0 | 42593 | <reponame>bestm80eva/blacklight-os
;; Blacklight OS interrupt vector table stuff
;; (c) 2011 <NAME>
; Blacklight OS is licensed under the Simplified BSD License (see license.txt)
; http://www.opensource.org/licenses/bsd-license.php
; ISR in CX, segment in BX, offset in DX
interrupt_set_gate:
pusha
;mov word ... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_862.asm | ljhsiun2/medusa | 9 | 42594 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r13
push %r14
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x1a748, %r12
add %r13, %r13
movb (%r12), %r14b
nop
inc %rdi
lea addresses_A_ht+0x14b78, %r12
nop
nop
nop
nop
nop
and %rbx, %rbx
mov $0x6162636465666768, %r13
movq %r13, %xmm3
... |
y2s2/csa/practicals/prac-5/14-challenge-2.asm | ouldevloper/university | 8 | 42595 | <reponame>ouldevloper/university<filename>y2s2/csa/practicals/prac-5/14-challenge-2.asm
; Display from 17-21
.MODEL SMALL
.STACK 100
.DATA
in1 DB "Enter a digit: $"
NL DB 13,10, "$"
total DB 0
num1 DB ?
num2 DB ?
.CODE
MAIN PROC
MOV AX,@DATA
MOV DS,AX
MOV CX, 4
INPUT:
M... |
nop.asm | Th4nat0s/No_Sandboxes | 35 | 42596 |
; Macro & Constantes defintions
%define NULL 0
%define HASH_NOSB_RENAMED.EXE $HASH_NOP_NOSB_RENAMED.EXE
%macro invoke 2-*
extern %1
%rotate %0-1
%rep %0-1
push %1
%rotate -1
%endrep
%rotate %0
call %1
%endmacro
%macro invokel 2-*
%rotate %0-1
%rep %0-1
push %1
%rotate -1
%... |
data/mapObjects/safarizoneresthouse4.asm | adhi-thirumala/EvoYellow | 16 | 42598 | <filename>data/mapObjects/safarizoneresthouse4.asm
SafariZoneRestHouse4Object:
db $a ; border block
db $2 ; warps
db $7, $2, $8, SAFARI_ZONE_NORTH
db $7, $3, $8, SAFARI_ZONE_NORTH
db $0 ; signs
db $3 ; objects
object SPRITE_OAK_AIDE, $6, $3, WALK, $2, $1 ; person
object SPRITE_WHITE_PLAYER, $3, $4, STAY, NON... |
maps/PokemonCommunicationCenter.asm | AtmaBuster/pokeplat-gen2 | 6 | 42599 | object_const_def ; object_event constants
PokemonCommunicationCenter_MapScripts:
db 0 ; scene scripts
db 0 ; callbacks
PokemonCommunicationCenter_MapEvents:
db 0, 0 ; filler
db 2 ; warp events
warp_event 6, 15, JUBILIFE_CITY, 9
warp_event 7, 15, JUBILIFE_CITY, 9
db 0 ; coord events
db 0 ; bg events
... |
bootblock.asm | mtreffert/xv6-staus-treffert | 0 | 42602 |
bootblock.o: file format elf32-i386
Disassembly of section .text:
00007c00 <start>:
.set CR0_PE_ON, 0x1 # protected mode enable flag
.globl start
start:
.code16 # Assemble for 16-bit mode
cli # Disable interrupts
7c00: fa cli ... |
kernel/arch/x86_64/irq/exception.asm | killvxk/MiraiOS | 0 | 42603 | <filename>kernel/arch/x86_64/irq/exception.asm
NROF_DEFINED_EXCS: equ 21
extern panic
extern printk
extern mapIdtEntry
extern lapicBase
extern tssSetIST
extern idtSetIST
extern idtSetDPL
extern excPF
extern kthreadExit
extern sysExit
global initExceptions:function
global undefinedInterrupt:function
global dummyInt... |
Library/ConView/NavControl/navcontrolHistory.asm | steakknife/pcgeos | 504 | 42604 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) Geoworks 1994 -- All Rights Reserved
PROJECT: Condo viewer
MODULE: navigation controller
FILE: navcontrolHistory.asm
AUTHOR: <NAME>, May 11, 1994
ROUTINES:
Name Description
---- -----------
REVISION... |
libsrc/stdio/ansi/c128/f_ansi_dline.asm | grancier/z180 | 0 | 42605 | ;
; ANSI Video handling for the Commodore 128 (Z80 mode)
; By <NAME> - 22/08/2001
;
; Clean a text line
;
; in: A = text row number
;
;
; $Id: f_ansi_dline.asm,v 1.5 2016/06/12 16:06:42 dom Exp $
;
SECTION code_clib
PUBLIC ansi_del_line
.ansi_del_line
ld hl,$2000
and a
jr z,isz
ld de,40
.sum_loop
ad... |
src/PJ/poco/poekit/pdrdemo/strfuncs.asm | AnimatorPro/Animator-Pro | 119 | 42606 | ;*****************************************************************************
;* strfuncs.asm - Because aa_syslib doesn't provide all the string utils.
;*****************************************************************************
_DATA segment public dword use32 'data'
_DATA ends
_CODE segment public dword u... |
coverage/PENDING_SUBMIT/amdvlk/0669-COVERAGE-instruction-simplify-1947/work/variant/2_spirv_opt_asm/shader.frag.asm | asuonpaa/ShaderTests | 0 | 42607 | ; SPIR-V
; Version: 1.0
; Generator: Khronos Glslang Reference Front End; 10
; Bound: 72
; Schema: 0
OpCapability Shader
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %4 "main" %12 %52
OpExecutionMode %4 Orig... |
text.asm | NotExactlySiev/psychofloat | 1 | 42608 | <gh_stars>1-10
; 0-1 xy, 6-7 ppu addr, text addr low byte in A
DrawText: subroutine
sta func2
lda #$ff
sta func3
jsr PPUFormat
lda func6
sta PPU_ADDR
lda func7
sta PPU_ADDR
ldy #0
.print
lda (func2),y
beq .out
sta PPU_DATA
... |
Working Disassembly/Levels/FBZ/Misc Object Data/Map - Flamethrower.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 5 | 42609 | dc.w word_3CFF4-Map_FBZFlameThrower
dc.w word_3CFFC-Map_FBZFlameThrower
dc.w word_3D00A-Map_FBZFlameThrower
dc.w word_3D018-Map_FBZFlameThrower
dc.w word_3D020-Map_FBZFlameThrower
dc.w word_3D028-Map_FBZFlameThrower
dc.w word_3D030-Map_FBZFlameThrower
dc.w word_3D038-Map_FBZFlameThrower
dc.w word_3D04... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.