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
tests/S21-ApplePi/demo.asm
liffiton/256sim
1
56907
<gh_stars>1-10 # Author: <NAME> # Assumptions: # Button input comes from Address 0 in memory # LED positions are Addresses 0 to 99 in memory # Use $15 as implicit register for comparisons # Notes: # Current direction stored in $7 # 1 means lighting up from 0 to 99 # 0 means turning off from 99 ...
_maps/obj3E.asm
NatsumiFox/AMPS-Sonic-1-2005
2
56908
; --------------------------------------------------------------------------- ; Sprite mappings - prison capsule ; --------------------------------------------------------------------------- dc.w byte_1AD82-Map_obj3E, byte_1ADA6-Map_obj3E dc.w byte_1ADAC-Map_obj3E, byte_1ADCB-Map_obj3E dc.w byte_1ADD1-Map_obj3E, ...
libsrc/_DEVELOPMENT/stdio/z80/input_helpers/__stdio_recv_input_raw_eat_ws.asm
meesokim/z88dk
0
56909
SECTION code_stdio PUBLIC __stdio_recv_input_raw_eat_ws PUBLIC __stdio_recv_input_raw_eat_ws_repeat EXTERN asm_isspace, __stdio_recv_input_raw_eatc ; ALL HIGH LEVEL STDIO INPUT PASSES THROUGH __STDIO_RECV_INPUT_RAW_* ; EXCEPT FOR VFSCANF. THIS ENSURES STREAM STATE IS CORRECTLY MAINTAINED __stdio_recv_input_raw_ea...
programs/PROV.asm
cid0rz/CTS-Cidorz-Train-System
5
56910
<reponame>cid0rz/CTS-Cidorz-Train-System ##PROVIDER STATION hlt clr :load_data fig r3 [virtual-signal=signal-station-number] ;load station number fig r4 [virtual-signal=signal-L] ;load n of locos fig r5 [virtual-signal=signal-W] ;load n of wagons :listen btr [virtual-signal=signal-yellow] ;Providers will listen to y...
programs/oeis/008/A008838.asm
karttu/loda
0
56911
<reponame>karttu/loda<filename>programs/oeis/008/A008838.asm ; A008838: a(n) = floor(n/8)*ceiling(n/8). ; 0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,4,6,6,6,6,6,6,6,9,12,12,12,12,12,12,12,16,20,20,20,20,20,20,20,25,30,30,30,30,30,30,30,36,42,42,42,42,42,42,42,49,56,56,56,56,56,56,56,64,72,72,72,72,72,72,72,81,90,90,90,90,90,90,90...
programs/oeis/147/A147849.asm
neoneye/loda
22
56912
<filename>programs/oeis/147/A147849.asm<gh_stars>10-100 ; A147849: Smallest triangular number > n-th prime ; 3,6,6,10,15,15,21,21,28,36,36,45,45,45,55,55,66,66,78,78,78,91,91,91,105,105,105,120,120,120,136,136,153,153,153,153,171,171,171,190,190,190,210,210,210,210,231,231,231,231,253,253,253,253,276,276,276,276 seq $...
src/util/sprite/jmslogo.asm
olifink/qspread
0
56913
;Sprite source code generated with EASYSOURCE V3.02 ; 1991/92 <NAME> Software ;************************************************ ; -> jmslogo <- 1993 Jul 26 18:42:37 section sprite xdef mes_jms mes_jms sp1_jms dc.w $0100,$0000 ;form, time/adaption dc.w $0040,$0013 ;x size, y size dc.w ...
programs/oeis/191/A191307.asm
karttu/loda
0
56915
; A191307: Sum of the heights of the first peaks in all dispersed Dyck paths of length n (i.e., in Motzkin paths of length n with no (1,0)-steps at positive heights). ; 0,0,1,2,6,11,26,47,103,187,397,727,1519,2806,5809,10814,22254,41702,85460,161042,329002,622932,1269578,2413644,4909788,9367188,19024888,36408748,738509...
data/mapObjects/celadoncity.asm
longlostsoul/EvoYellow
16
56916
CeladonCityObject: db $f ; border block db $d ; warps db $d, $8, $0, CELADON_MART_1 db $d, $a, $2, CELADON_MART_1 db $9, $18, $0, CELADON_MANSION_1 db $3, $18, $2, CELADON_MANSION_1 db $3, $19, $2, CELADON_MANSION_1 db $9, $29, $0, CELADON_POKECENTER db $1b, $c, $0, CELADON_GYM db $13, $1c, $0, GAME_CORNER ...
libsrc/_DEVELOPMENT/alloc/malloc/c/sccz80/heap_alloc_unlocked_callee.asm
meesokim/z88dk
0
56917
; void *heap_alloc_unlocked(void *heap, size_t size) SECTION code_alloc_malloc PUBLIC heap_alloc_unlocked_callee heap_alloc_unlocked_callee: pop af pop hl pop de push af INCLUDE "alloc/malloc/z80/asm_heap_alloc_unlocked.asm"
third-party/gmp/gmp-src/mpn/alpha/ev67/gcd_11.asm
jhh67/chapel
1,602
56919
dnl Alpha ev67 mpn_gcd_11 -- Nx1 greatest common divisor. dnl Copyright 2003, 2004 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. dnl dnl The GNU MP Library is free software; you can redistribute it and/or modify dnl it under the terms of either: dnl dnl * the GNU Lesser General P...
programs/oeis/052/A052459.asm
karttu/loda
1
56920
<filename>programs/oeis/052/A052459.asm ; A052459: a(n) = n*(2*n^2 + 1)*(n^2 + 1)/6. ; 1,15,95,374,1105,2701,5775,11180,20049,33835,54351,83810,124865,180649,254815,351576,475745,632775,828799,1070670,1366001,1723205,2151535,2661124,3263025,3969251,4792815,5747770,6849249,8113505,9557951,11201200,13063105,15164799,1752...
Fibonacci.asm
KillerToxic50/Homebrew-CPU
1
56921
<filename>Fibonacci.asm // 0x0x LDI Load immediate // 0x1x STM Store memory // 0x2x LDM Load memory // 0x3x LDMA Load memory indexed by A // 0x4x ADDI Add immediate // 0x5x SUBI Sub immediate // 0x6x ADDM Add memory // 0x7x SUBM Sub memory // 0x8x JMPI Jump immediate // 0x9x JMPM Jump memory // 0xAx JMPA Jump...
src/main/resources/assets/codechickencore/asm/tweaks.asm
Jorch72/CodeChickenCore
37
56922
<reponame>Jorch72/CodeChickenCore<filename>src/main/resources/assets/codechickencore/asm/tweaks.asm #A bunch of vanilla tweaks list d_environmentallyFriendlyCreepers ALOAD 0 GETFIELD net/minecraft/entity/monster/EntityCreeper.field_70170_p:Lnet/minecraft/world/World; #worldObj INVOKEVIRTUAL net/minecraft/world/World.f...
sw/552tests/rand_simple/t_3_bnez.asm
JPShen-UWM/ThreadKraken
1
56923
<gh_stars>1-10 // seed 3 lbi r0, 29 // icount 0 slbi r0, 146 // icount 1 lbi r1, 182 // icount 2 slbi r1, 69 // icount 3 lbi r2, 8 // icount 4 slbi r2, 63 // icount 5 lbi r3, 88 // icount 6 slbi r3, 3 // icount 7 lbi r4, 125 // icount 8 slbi r4, 233 // icount 9 lbi r5, 184 // icount 10 slbi r5, 253 // icount 11 lbi r6,...
libsrc/strings/strlen.asm
grancier/z180
8
56924
<filename>libsrc/strings/strlen.asm ; int __FASTCALL__ strlen(char *s) ; return length of s ; 12.2006 aralbrec SECTION code_clib PUBLIC strlen PUBLIC _strlen ; enter: hl = char *s ; exit : hl = length, z flag set if 0 length ; uses : af, bc, hl .strlen ._strlen IF FORrcmx000 ld b,h ld c,l dec bc ld hl,-...
programs/oeis/303/A303815.asm
karttu/loda
0
56925
<reponame>karttu/loda ; A303815: Generalized 29-gonal (or icosienneagonal) numbers: m*(27*m - 25)/2 with m = 0, +1, -1, +2, -2, +3, -3, ... ; 0,1,26,29,79,84,159,166,266,275,400,411,561,574,749,764,964,981,1206,1225,1475,1496,1771,1794,2094,2119,2444,2471,2821,2850,3225,3256,3656,3689,4114,4149,4599,4636,5111,5150,5650...
programs/oeis/070/A070407.asm
karttu/loda
0
56926
<filename>programs/oeis/070/A070407.asm ; A070407: a(n) = 7^n mod 17. ; 1,7,15,3,4,11,9,12,16,10,2,14,13,6,8,5,1,7,15,3,4,11,9,12,16,10,2,14,13,6,8,5,1,7,15,3,4,11,9,12,16,10,2,14,13,6,8,5,1,7,15,3,4,11,9,12,16,10,2,14,13,6,8,5,1,7,15,3,4,11,9,12,16,10,2,14,13,6,8,5,1,7,15,3,4,11,9,12,16,10,2,14,13,6,8,5,1,7,15,3,4,11,...
test_random.asm
jhsie007/xv6
0
56927
_test_random: file format elf32-i386 Disassembly of section .text: 00001000 <main>: #include "types.h" #include "user.h" int main(){ 1000: 55 push %ebp 1001: 89 e5 mov %esp,%ebp 1003: 83 e4 f0 and $0xfffffff0,%esp 1006: 83 ec 10 ...
programs/oeis/263/A263997.asm
karttu/loda
1
56928
<filename>programs/oeis/263/A263997.asm ; A263997: Sequence of block lengths in a block spiral of width 1. ; 1,2,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33 sub $0,2 div $0,2 mov $1,$0 add $...
pwnlib/shellcraft/templates/amd64/linux/sigsuspend.asm
zaratec/pwntools
5
56931
<gh_stars>1-10 <% from pwnlib.shellcraft.amd64.linux import syscall %> <%page args="set"/> <%docstring> Invokes the syscall sigsuspend. See 'man 2 sigsuspend' for more information. Arguments: set(sigset_t): set </%docstring> ${syscall('SYS_sigsuspend', set)}
dino/lcs/enemy/9A.asm
zengfr/arcade_game_romhacking_sourcecode_top_secret_data
6
56932
copyright zengfr site:http://github.com/zengfr/romhack 00042A move.l D1, (A0)+ 00042C dbra D0, $42a 004D3C move.l D0, (A4)+ 004D3E move.l D0, (A4)+ 010AA6 move.b (A4)+, ($9a,A3) 010AAA bsr $12720 [enemy+9A] 01115A move.b (A4)+, ($9a,A3) 01115E cmpi.w #$a4, ($20,A3) [enemy+9A] 011228 move.b ...
mus/sfx.asm
EugenyN/glazx
9
56933
<filename>mus/sfx.asm ; [00] Fanfare 2 (todo) SFX00: DB $1F,$0B DB $AF,$0F DB $8A,$0F DB $71,$0F DB $64,$0F DB $3E,$0C DB $25,$0C DB $25,$0C DB $25,$0C DB $25,$0A DB $4B,$0A DB $4B,$0A DB $4B,$0A DB $3E,$08 DB $3E,$08 DB $3E,$08 DB $71,$08 DB $3E,$07 ...
oeis/021/A021957.asm
neoneye/loda-programs
11
56934
<gh_stars>10-100 ; A021957: Decimal expansion of 1/953. ; Submitted by <NAME> ; 0,0,1,0,4,9,3,1,7,9,4,3,3,3,6,8,3,1,0,5,9,8,1,1,1,2,2,7,7,0,1,9,9,3,7,0,4,0,9,2,3,3,9,9,7,9,0,1,3,6,4,1,1,3,3,2,6,3,3,7,8,8,0,3,7,7,7,5,4,4,5,9,6,0,1,2,5,9,1,8,1,5,3,2,0,0,4,1,9,7,2,7,1,7,7,3,3,4,7 mov $2,10 pow $2,$0 mul $2,10 div $2,953 ...
oeis/130/A130905.asm
neoneye/loda-programs
11
56935
<gh_stars>10-100 ; A130905: E.g.f.: exp(x^2 / 2) / (1 - x). ; Submitted by <NAME> ; 1,1,3,9,39,195,1185,8295,66465,598185,5982795,65810745,789739335,10266611355,143732694105,2155990411575,34495848612225,586429426407825,10555729709800275,200558864486205225,4011177290378833575,84234723097955505075,1853163908168770422225,...
more_less.asm
JesusCrie/MoreOrLessAssembly
4
56936
<filename>more_less.asm global main extern printf, scanf extern open, read, close extern srand, rand extern exit section .text main: ; Function header push rbp mov rbp, rsp sub rsp, 0x10 call read_random sta call ask_number cmp eax, dword [number] jl is_l...
programs/oeis/313/A313718.asm
neoneye/loda
22
56937
<filename>programs/oeis/313/A313718.asm ; A313718: Coordination sequence Gal.6.133.4 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings. ; 1,5,10,15,20,24,28,32,37,42,47,52,57,62,67,72,76,80,84,89,94,99,104,109,114,119,124,128,132,136,141,...
oeis/310/A310442.asm
neoneye/loda-programs
11
56938
<filename>oeis/310/A310442.asm ; A310442: Coordination sequence Gal.6.327.5 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings. ; Submitted by <NAME> ; 1,4,10,15,19,24,30,35,39,44,50,54,58,64,69,73,78,84,89,93,98,104,108,112,118,123,127,13...
deps/gmp.js/mpn/x86_64/addmul_2.asm
6un9-h0-Dan/cobaul
184
56940
dnl AMD64 mpn_addmul_2 -- Multiply an n-limb vector with a 2-limb vector and dnl add the result to a third limb vector. dnl Copyright 2008 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. dnl The GNU MP Library is free software; you can redistribute it and/or modify dnl it under the ...
simd/i386/jdsample-sse2.asm
1camper/libjpeg-turbo
522
56941
; ; jdsample.asm - upsampling (SSE2) ; ; Copyright 2009 <NAME> <<EMAIL>> for Cendio AB ; Copyright (C) 2016, <NAME>. ; ; Based on the x86 SIMD extension for IJG JPEG library ; Copyright (C) 1999-2006, MIYASAKA Masaru. ; For conditions of distribution and use, see copyright notice in jsimdext.inc ; ; This file should be...
libsrc/_DEVELOPMENT/font/fzx/z80/asm_fzx_string_extent.asm
teknoplop/z88dk
8
56945
<gh_stars>1-10 ; uint16_t fzx_string_extent(struct fzx_font *ff, char *s) SECTION code_font SECTION code_font_fzx PUBLIC asm_fzx_string_extent EXTERN asm_fzx_glyph_width, error_znc asm_fzx_string_extent: ; return width of string in pixels ; ; unprintable chars treated as '?' ; last char does not inclu...
oeis/217/A217589.asm
neoneye/loda-programs
11
56946
; A217589: Bit reversed 16-bit numbers. ; Submitted by <NAME>(w2) ; 0,32768,16384,49152,8192,40960,24576,57344,4096,36864,20480,53248,12288,45056,28672,61440,2048,34816,18432,51200,10240,43008,26624,59392,6144,38912,22528,55296,14336,47104,30720,63488,1024,33792,17408,50176,9216,41984,25600,58368,5120,37888,21504,54272...
Tek2/ASM/MinilibC/src/strncmp.asm
PhilippeDeSousa/EpitechBundle
1
56948
<filename>Tek2/ASM/MinilibC/src/strncmp.asm section .text global strncmp:function strncmp: mov rcx, 0 loop: mov al, [rdi + rcx] mov bl, [rsi + rcx] cmp al, 0 je end cmp al, bl jne end inc rcx cmp rcx, rdx je end jmp loop end: sub al, bl movsx rax, al ret
src/vcbuild/ldfpu.asm
LemonBoy/dmd
0
56949
;; Compiler implementation of the D programming language ;; Copyright (c) 1999-2016 by The D Language Foundation ;; All Rights Reserved ;; written by <NAME> ;; http://www.digitalmars.com ;; Distributed under the Boost Software License, Version 1.0. ;; http://www.boost.org/LICENSE_1_0.txt ;; https://github.com/dlang/dmd...
src/dispkern.asm
Gip-Gip/VePseu
5
56950
; VePseu's display kernel JMP drawStart ; FILE/SUBROUTINE NAMING SCHEME: ; ; dc_w1s1.asm ; | | | ; | | |- The shadow variant it draws (A or B, 1 or 2) ; | | ; | |- The wall it draws ; | ; |- Draw-code identifies ; ; See GLOSSARY.TXT for definitions of vague words dr...
Gathered CTF writeups/tokyowesterns_ctf_2019/EBC/payload_stage_2.asm
mihaid-b/CyberSakura
1
56951
; -------------------------------------------------------------------------------------------------- ; Decoded payload, stage 2 ; -------------------------------------------------------------------------------------------------- 0x04006354: 60 81 02 10 MOVqw R1, @R0 (+2, +0) 0x04006358: f7 32 f2 28 ...
msx/apps/libraries/msxdos/msxdos.asm
zoggins/yellow-msx-series-for-rc2014
19
56952
include "msxdos.inc" INITXT EQU 0x6C INIT32 EQU 0x6F POSIT EQU 0xC6 INIPLT EQU 0x141 EXTROM: EQU 0015FH H_NMI: EQU 0FDD6H NMI: EQU 00066H ; Function : Tests status of CTRL-STOP ; Output : Carry flag set when pressed ; Registers: AF ; Remark : In this routine, interrupts are inhibited BREAKX EQU $00B7 CALSLT...
bootloader/intel_16.asm
sihai90/thos
0
56953
<reponame>sihai90/thos ;======================================================================= ; Copyright <NAME> 2013. ; Distributed under the Boost Software License, Version 1.0. ; (See accompanying file LICENSE_1_0.txt or copy at ; http://www.boost.org/LICENSE_1_0.txt) ;============================================...
dimension/cell/dyn/hydrogen/hydrogen.asm
ekscrypto/Unununium
7
56955
;; $Header: /cvsroot/uuu/dimension/cell/dyn/hydrogen/hydrogen.asm,v 1.2 2002/01/23 01:44:33 jmony Exp $ ;; ;; Hydrogen - VOiD fixer upper ;; Copyright (C) 2001 - <NAME> ;; Distributed under the BSD License; see file "license" for details ;; ;; Currently does nothing usefull :P ;; This file should also be moved out of t...
oeis/242/A242643.asm
neoneye/loda-programs
11
56956
<reponame>neoneye/loda-programs ; A242643: a(n) = Sum_{d|n, d <= 6} d^2 + 6*Sum_{d|n, d>6} d. ; Submitted by <NAME> ; 1,5,10,21,26,50,43,69,64,90,67,138,79,131,125,165,103,212,115,226,178,203,139,330,176,239,226,315,175,405,187,357,274,311,278,516,223,347,322,514,247,554,259,483,449,419,283,714,337,540,418,567,319,698,...
programs/oeis/183/A183063.asm
karttu/loda
1
56957
; A183063: Number of even divisors of n. ; 0,1,0,2,0,2,0,3,0,2,0,4,0,2,0,4,0,3,0,4,0,2,0,6,0,2,0,4,0,4,0,5,0,2,0,6,0,2,0,6,0,4,0,4,0,2,0,8,0,3,0,4,0,4,0,6,0,2,0,8,0,2,0,6,0,4,0,4,0,4,0,9,0,2,0,4,0,4,0,8,0,2,0,8,0,2,0,6,0,6,0,4,0,2,0,10,0,3,0,6,0,4,0,6,0,2,0,8,0,4,0,8,0,4,0,4,0,2,0,12,0,2,0,4,0,6,0,7,0,4,0,8,0,2,0,6,0,4...
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0xca.log_227_1659.asm
ljhsiun2/medusa
9
56958
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r12 push %r14 push %rax push %rcx push %rdi push %rsi lea addresses_normal_ht+0x1a62b, %rdi add %r11, %r11 movb (%rdi), %cl inc %r14 lea addresses_UC_ht+0xc033, %r12 nop nop nop nop nop add %r14, %r14 movb $0x61, (%r12) nop mfence lea addresses_UC_h...
06/Testing.asm
tthero/tthero-nand2tetris
0
56959
@4 D=A @xMax M=D @16 D=A @yMax M=D @i M=0 (LOOPX) @i D=M @xMax D=M-D @ENDB D;JEQ @i D=M @SCREEN D=D+A @currScr M=D @j M=0 (LOOPY) @j D=M @yMax D=M-D @ENDLOOPY D;JEQ @32 D=A @currScr AM...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_144.asm
ljhsiun2/medusa
9
56961
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r15 push %r9 push %rax push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x199d5, %rsi lea addresses_WC_ht+0x1b2f5, %rdi inc %r9 mov $78, %rcx rep movsl nop nop sub $37793, %r15 lea addresses_WC_ht+0xef1d, %rsi lea addresses...
programs/oeis/317/A317333.asm
neoneye/loda
22
56963
; A317333: Indices m for which A058304(m) = 9. ; 1,6,14,25,30,38,49,57,62,70,78,89,97,102,113,121,126,134,142,153,158,166,177,185,193,198,206,217,225,230,241,249,254,262,270,281,286,294,305,313,318,326,334,345,353,358,369,377,385,390,398,409,414,422,433,441,449,454,462,473,481,486,497,505,510,518,526,537,542,550,561,56...
screen_splitting/key_reader.asm
cainex/c64_playground
0
56964
read_key: lda #%11111111 sta CIA1_PORTA_DIR lda #%00000000 sta CIA1_PORTB_DIR lda #KEY_ROW_1 sta CIA1_PORTA clc lda CIA1_PORTB and #KEY_w beq w_press lda CIA1_PORTB and #KEY_a beq a_press lda CIA1_PORTB and #KEY_s beq s_press ...
modules/errorhandler/bundles/bundle-as.asm
vladikcomper/md-modules
9
56965
############################################################ ## Bundle compilation script for use in AS-based programs ## ############################################################ #define BUNDLE-AS #file bundle-as/Debugger.asm #include Debugger.asm #endf #file bundle-as/ErrorHandler.asm #include ErrorHandler.asm ...
programs/oeis/252/A252932.asm
karttu/loda
0
56966
<filename>programs/oeis/252/A252932.asm<gh_stars>0 ; A252932: Number of n X 2 nonnegative integer arrays with upper left 0 and every value within 3 of its king move distance from the upper left and every value increasing by 0 or 1 with every step right, diagonally se or down. ; 2,5,13,34,83,176,329,558,879,1308,1861,25...
5-Aixs Dispenser/5-Aixs Dispenser/glm/RelWithDebInfo/dummy.asm
liuyuwang2016/Projects
1
56967
<reponame>liuyuwang2016/Projects ; Listing generated by Microsoft (R) Optimizing Compiler Version 18.00.40629.0 TITLE D:\USER\Desktop\glm-0.9.8.5\glm\glm\detail\dummy.cpp .686P .XMM include listing.inc .model flat INCLUDELIB MSVCRT PUBLIC _main ; Function compile flags: /Ogtp ; File d:\user\desktop\glm-0.9.8.5...
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_866_356.asm
ljhsiun2/medusa
9
56968
.global s_prepare_buffers s_prepare_buffers: ret .global s_faulty_load s_faulty_load: push %r10 push %r11 push %r12 push %r13 push %r15 push %rbp // Store lea addresses_WC+0x1058a, %r12 nop nop nop nop cmp %r13, %r13 movl $0x51525354, (%r12) nop nop nop xor $26350, %r10 // Faulty Load lea addresses_WC+0x1058a, %...
oeis/274/A274912.asm
neoneye/loda-programs
11
56969
<reponame>neoneye/loda-programs<filename>oeis/274/A274912.asm ; A274912: Square array read by antidiagonals upwards in which each new term is the least nonnegative integer distinct from its neighbors. ; Submitted by <NAME> ; 0,1,2,0,3,0,1,2,1,2,0,3,0,3,0,1,2,1,2,1,2,0,3,0,3,0,3,0,1,2,1,2,1,2,1,2,0,3,0,3,0,3,0,3,0,1,2,1...
src/var.asm
harraps/Simple-NES-Game
0
56971
<reponame>harraps/Simple-NES-Game<gh_stars>0 ; ========= ; VARIABLES ; ========= .org $0010 ; screen resolution: 256x240 ; for each character, store: ; - position on screen ; - sprites to display char_1: .byte CENTER_X, CENTER_Y, 0 char_2: .byte CENTER_X, CENTER_Y, 0 ; tile: .byte 0 ; counter: .byte 0 ; step...
mc-sema/validator/x86_64/tests/SBB32mr.asm
randolphwong/mcsema
2
56972
<gh_stars>1-10 BITS 64 ;TEST_FILE_META_BEGIN ;TEST_TYPE=TEST_F ;TEST_IGNOREFLAGS= ;TEST_FILE_META_END ; SBB32mr ;TEST_BEGIN_RECORDING lea rdi, [rsp-0x4] mov DWORD [rdi], 0xabcd4321 mov eax, 0x56781234 sbb [rdi], eax mov edx, [rdi] mov rdi, 0x0 ;TEST_END_RECORDING
cards/bn4/ModCards/134-D025 Charge ElecShok (0E).asm
RockmanEXEZone/MMBN-Mod-Card-Kit
10
56973
<filename>cards/bn4/ModCards/134-D025 Charge ElecShok (0E).asm .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 ...
third_party/virtualbox/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/PciHostBridgeDxe/Ia32/IoFifo.asm
Fimbure/icebox-1
521
56974
<reponame>Fimbure/icebox-1 ;------------------------------------------------------------------------------ ; ; Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR> ; This program and the accompanying materials ; are licensed and made available under the terms and conditions of the BSD License ; which ...
release/src-rt-6.x.4708/router/lzo/asm/i386/src_masm/lzo1x_f1.asm
zaion520/ATtomato
5
56975
; lzo1x_f1.asm -- lzo1x_decompress_asm_fast ; ; This file is part of the LZO real-time data compression library. ; ; Copyright (C) 1996-2017 <NAME> ; All Rights Reserved. ; ; The LZO library is free software; you can redistribute it and/or ; modify it under the terms of the GNU General Public License as ; publis...
programs/oeis/077/A077937.asm
jmorken/loda
1
56976
<gh_stars>1-10 ; A077937: Expansion of 1/(1-2*x-2*x^2+2*x^3). ; 1,2,6,14,36,88,220,544,1352,3352,8320,20640,51216,127072,315296,782304,1941056,4816128,11949760,29649664,73566592,182532992,452899840,1123732480,2788198656,6918062592,17165057536,42589842944,105673675776,262196922368 mov $2,$0 add $2,1 mov $4,$0 lpb $2 ...
sw/552tests/inst_tests/xori_5.asm
JPShen-UWM/ThreadKraken
1
56977
// Original test: ./rbatterm/hw4/problem6/xori_5.asm // Author: rbatterm // Test source code follows // Test random sequence (from Random.org) lbi r2, 8 //01000 xori r1, r2, 11 //01011 halt //= 00011
oeis/129/A129617.asm
neoneye/loda-programs
11
56978
<filename>oeis/129/A129617.asm ; A129617: a(1) = 0; a(2) = a(3) = 1; for n > 3: a(n) = 16*a(n-2)+14*a(n-3). ; Submitted by <NAME> ; 0,1,1,16,30,270,704,4740,15044,85696,307064,1581752,6112768,29606928,119948816,559289600,2333678048,10627917024,45168903168,202718165056,871493289024,3875855285248,16781946935168,742145906...
oeis/136/A136859.asm
neoneye/loda-programs
11
56979
<filename>oeis/136/A136859.asm<gh_stars>10-100 ; A136859: Numbers k such that k and k^2 use only the digits 0, 1, 4 and 6. ; Submitted by <NAME> ; 0,1,4,10,40,100,400,1000,4000,10000,40000,100000,400000,1000000,4000000,10000000,40000000,100000000,400000000,1000000000,4000000000,10000000000,40000000000,100000000000,4000...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_298.asm
ljhsiun2/medusa
9
56980
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r15 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0x740d, %rdx xor %r15, %r15 movb $0x61, (%rdx) nop nop nop add $13469, %rax lea addresses_WT_ht+0x1248d, %rsi lea addresses_D_ht+0xee0d, %rdi nop cmp %r11, %r11 mov $15, %rcx ...
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21591_500.asm
ljhsiun2/medusa
9
56981
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r8 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_WC_ht+0xdd32, %rsi lea addresses_WC_ht+0x70d0, %rdi nop nop nop xor %r12, %r12 mov $26, %rcx rep movsq xor $30240, %r12 lea addresses_normal_ht+0x1bd52, %rsi clflush (%rsi) nop xor $17607, %ra...
programs/oeis/236/A236305.asm
jmorken/loda
1
56982
; A236305: The number of P-positions in the game of Nim with up to 3 piles, allowing for piles of zero, such that the number of objects in each pile does not exceed n. ; 1,4,7,16,19,28,43,64,67,76,91,112,139,172,211,256,259,268,283,304,331,364,403,448,499,556,619,688,763,844,931,1024,1027,1036,1051,1072,1099,1132,1171,...
codigo/capitulo 32/while.asm
codeneomatrix/ENSAMBLADOR-x86-ACEVEDO
1
56985
<reponame>codeneomatrix/ENSAMBLADOR-x86-ACEVEDO segment .data textosuma db 0xA,0xD,"El valor final de ebx es: " lentextosuma equ $- textosuma saltodelinea db 0xA,0xD lensaltodelinea equ $- saltodelinea segment .bss valor resb 1 section .text global _start _start: mov eax, 3 ; almacenamos en eax el valor tr...
oeis/097/A097072.asm
neoneye/loda-programs
11
56986
<reponame>neoneye/loda-programs ; A097072: Expansion of (1 - 2*x + 2*x^2)/((1 - x^2)*(1 - 2*x)). ; Submitted by <NAME>(s1.) ; 1,0,3,4,11,20,43,84,171,340,683,1364,2731,5460,10923,21844,43691,87380,174763,349524,699051,1398100,2796203,5592404,11184811,22369620,44739243,89478484,178956971,357913940,715827883,1431655764,2...
programs/oeis/190/A190505.asm
jmorken/loda
1
56987
; A190505: n+[nr/s]+[nt/s]+[nu/s]; r=golden ratio, s=r+1, t=r+2, u=r+3. ; 3,8,13,18,22,27,32,37,41,46,51,56,60,65,70,75,79,84,89,94,99,103,108,113,118,122,127,132,137,141,146,151,156,160,165,170,175,180,184,189,194,199,203,208,213,218,222,227,232,237,241,246,251,256,261,265,270,275,280,284,289,294,299,303,308,313,318,...
data/pokemon/dex_entries/clefairy.asm
AtmaBuster/pokeplat-gen2
6
56988
db "FAIRY@" ; species name db "Though rarely" next "seen, it becomes" next "easier to spot," page "for some reason," next "on the night of a " next "full moon.@"
s2/music-original/92 - Special Stage.asm
Cancer52/flamedriver
9
56989
SpecStg_Header: smpsHeaderStartSong 2, 1 smpsHeaderVoice SpecStg_Voices smpsHeaderChan $06, $03 smpsHeaderTempo $01, $FF smpsHeaderDAC SpecStg_DAC smpsHeaderFM SpecStg_FM1, $0C, $08 smpsHeaderFM SpecStg_FM2, $00, $05 smpsHeaderFM SpecStg_FM3, $00, $0E smpsHeaderFM ...
Menus/l2print_boiler_text_inlineInclude.asm
ped7g/EliteNext
9
56990
;">print_boilder_text hl = text structure, b = message count" .BoilerTextLoop: push bc ; Save Message Count loop value ld c,(hl) ; Get Row into b inc hl ld b,(hl) ; Get Col into b inc hl ld e,(hl) ; Get text address Lo into E inc hl ld d,(hl) ; Get text address Hi into E inc ...
Userland/SampleCodeModule/asm/my_time.asm
BraveJero/bareOS
0
56991
<filename>Userland/SampleCodeModule/asm/my_time.asm GLOBAL getticks, getseconds getticks: ; uint64_t getticks(void) mov rax, 29 int 80h ret getseconds: ; uint64_t getseconds(void) mov rax, 30 int 80h ret
Transynther/x86/_processed/NONE/_xt_sm_/i7-8650U_0xd2_notsx.log_282_596.asm
ljhsiun2/medusa
9
56992
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r8 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_WC_ht+0x22ee, %rsi lea addresses_UC_ht+0x117ee, %rdi nop nop nop nop nop xor %rbp, %rbp mov $9, %rcx rep movsw nop nop sub %rdi, %rdi lea addresses_A_ht+0x1bd0e, %rsi lea addresses_WT_ht+0xeaf...
oeis/253/A253622.asm
neoneye/loda-programs
11
56993
; A253622: Centered heptagonal numbers (A069099) which are also centered pentagonal numbers (A005891). ; Submitted by <NAME> ; 1,106,15016,2132131,302747551,42988020076,6103996103206,866724458635141,123068769130086781,17474898492013687726,2481312517096813570276,352328902529255513291431,50028222846637186073812891,710365...
projects/07/StackArithmetic/SimpleAdd/SimpleAdd.asm
Youngermaster/Nand2Tetris-Solutions
0
56994
<reponame>Youngermaster/Nand2Tetris-Solutions // <NAME> @256 D=A @SP M=D @300 D=A @LCL M=D @400 D=A @ARG M=D @3000 D=A @THIS M=D @3010 D=A @THAT M=D @7 D=A @SP A=M M=D @SP M=M+1 @8 D=A @SP A=M M=D @SP M=M+1 @SP A=M-1 D=M A=A-1 D=D+M M=D @SP M=M-1
oeis/249/A249512.asm
neoneye/loda-programs
11
56995
<reponame>neoneye/loda-programs ; A249512: Expansion of 1/(1-x*sqrt(4*x^2+1)-2*x^2). ; Submitted by <NAME> ; 1,1,3,7,15,33,75,169,375,835,1875,4203,9375,20931,46875,104919,234375,523737,1171875,2621545,5859375,13098001,29296875,65523597,146484375,327500413,732421875,1637918089 mov $1,1 mov $3,$0 lpb $3 mov $0,$1 s...
lib/target/sc3000/classic/rom.asm
Frodevan/z88dk
38
56997
; CRT0 (rom) stub for the SEGA SC-3000/SG-1000 ; ; <NAME> - Jun 2010 ; ; $Id: sc3000_crt0.asm,v 1.18 2016-07-13 22:12:25 dom Exp $ ; ; Constants for ROM mode (-startup=2) defc ROM_Start = $0000 defc RAM_Start = $C000 defc RAM_Length = $0800 defc Stack_Top = $c400 defc CRT_ORG_CODE = ROM_Sta...
libsrc/_DEVELOPMENT/math/float/math32/c/sccz80/cm32_sccz80_fssqrt.asm
jpoikela/z88dk
0
56999
; float __fssqrt (float number) SECTION code_clib SECTION code_fp_math32 PUBLIC cm32_sccz80_fssqrt EXTERN cm32_sccz80_fsread1, m32_fssqrt_fastcall ; square root sccz80 float ; ; enter : stack = sccz80_float number, ret ; ; exit : DEHL = sccz80_float(number^0.5) ; ; uses : af, bc, de,...
os_1.asm
thet2mmy/os1
0
57000
org 0x7c00 bits 16 ; +++++++++++++++++++++++++++++++++ ; main source code file for os_1!!! ; +++++++++++++++++++++++++++++++++ ; this file should have been loaded from ; boot.asm begin: ; show our boot message ; ensure that the user knows the kernel booted properly mov si, boot_msg call print_string call show...
oeis/100/A100187.asm
neoneye/loda-programs
11
57001
<gh_stars>10-100 ; A100187: Structured octagonal anti-diamond numbers (vertex structure 7). ; Submitted by <NAME> ; 1,18,77,204,425,766,1253,1912,2769,3850,5181,6788,8697,10934,13525,16496,19873,23682,27949,32700,37961,43758,50117,57064,64625,72826,81693,91252,101529,112550,124341,136928,150337,164594,179725,195756,212...
oeis/065/A065761.asm
neoneye/loda-programs
11
57002
<gh_stars>10-100 ; A065761: Concatenation of increasing number of alternating digits in base 2, starting with 0. ; Submitted by <NAME> ; 0,3,24,399,12768,817215,104603520,26778501375,13710592704000,14039646928897023,28753196910381103104,117773094544920998318079,964797190511992818221703168,158072371693484903337443847208...
programs/oeis/281/A281006.asm
neoneye/loda
22
57003
<reponame>neoneye/loda<gh_stars>10-100 ; A281006: a(n) = A000203(n) - A052928(n-1). ; 1,3,2,5,2,8,2,9,5,10,2,18,2,12,10,17,2,23,2,24,12,16,2,38,7,18,14,30,2,44,2,33,16,22,14,57,2,24,18,52,2,56,2,42,34,28,2,78,9,45,22,48,2,68,18,66,24,34,2,110,2,36,42,65,20,80,2,60,28,76,2,125,2,42,50,66,20,92,2,108,41,46,2,142,24,48,34...
c0/2.asm
yujt-moon/manual-os
0
57009
section .text mov eax, 0x10 jmp $ section file2data ; 自定义的数据段,未使用“传统”的.data数据段 file2var db 3 section file2text ; 自定义的代码段,未使用“传统”的.text global print ; 导出print,供其他模块使用 print: mov edx, [esp+8] ; 字符串长度 mov ecx, [esp+4] ; 字符串 mov ebx, 1 mov eax, 4 ...
oeis/283/A283733.asm
neoneye/loda-programs
11
57010
; A283733: a(n) = a(n-1) + 1 + floor(n*golden ratio), with a(0) = 1. ; 1,3,7,12,19,28,38,50,63,78,95,113,133,155,178,203,229,257,287,318,351,385,421,459,498,539,582,626,672,719,768,819,871,925,981,1038,1097,1157,1219,1283,1348,1415,1483,1553,1625,1698,1773,1850,1928,2008,2089,2172,2257,2343,2431,2520,2611,2704,2798,289...
hello_world_asm/hello_world_4.asm
mjohnsullivan/zxspectrum
0
57011
<filename>hello_world_asm/hello_world_4.asm ; Scrolls hello world across and down the screen ; to compile with z88dk to a tap file, use ; z80asm +zx hello_world_4.asm ; make sure you're using a recent version of z88dk - tested with nightly build ; which can be downloaded from http://nightly.z88dk.org/ ; Alter...
programs/oeis/182/A182769.asm
neoneye/loda
22
57012
; A182769: Beatty sequence for (4 + sqrt(2))/2. ; 2,5,8,10,13,16,18,21,24,27,29,32,35,37,40,43,46,48,51,54,56,59,62,64,67,70,73,75,78,81,83,86,89,92,94,97,100,102,105,108,110,113,116,119,121,124,127,129,132,135,138,140,143,146,148,151,154,157,159,162,165,167,170,173,175,178,181,184,186,189,192,194,197,200,203,205,208,2...
oeis/311/A311601.asm
neoneye/loda-programs
11
57014
<reponame>neoneye/loda-programs<filename>oeis/311/A311601.asm ; A311601: Coordination sequence Gal.6.230.1 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings. ; 1,4,8,12,18,22,26,32,36,40,44,48,52,56,62,66,70,76,80,84,88,92,96,100,106,110,...
echo.asm
TusharGupta01/XV6
0
57015
<gh_stars>0 _echo: file format elf32-i386 Disassembly of section .text: 00000000 <main>: #include "stat.h" #include "user.h" int main(int argc, char *argv[]) { 0: 55 push %ebp 1: 89 e5 mov %esp,%ebp 3: 83 e4 f0 and $0xfffffff0,%esp 6: 83 ec 20...
data/pokemon/base_stats/salamence.asm
AtmaBuster/pokeplat-gen2
6
57017
db 0 ; species ID placeholder db 95, 135, 80, 100, 110, 80 ; hp atk def spd sat sdf db DRAGON, FLYING ; type db 45 ; catch rate db 218 ; base exp db NO_ITEM, DRAGON_SCALE ; items db GENDER_F50 ; gender ratio db 40 ; step cycles to hatch INCBIN "gfx/pokemon/salamence/front.dimensions" db GROWTH_SL...
oeis/024/A024074.asm
neoneye/loda-programs
11
57018
<reponame>neoneye/loda-programs<filename>oeis/024/A024074.asm ; A024074: a(n) = 6^n - n^12. ; 1,5,-4060,-531225,-16775920,-244132849,-2176735680,-13841007265,-68717797120,-282419458785,-999939533824,-3138065579665,-8913923665920,-23285024428465,-56615548211200,-129276152906049,-278653866803200,-565695577785025,-1055271...
Transynther/x86/_processed/NONE/_zr_un_/i7-7700_9_0xca.log_14394_1050.asm
ljhsiun2/medusa
9
57019
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_UC_ht+0x17195, %rsi lea addresses_normal_ht+0x3875, %rdi nop nop nop nop nop sub $14220, %rbp mov $96, %rcx rep movsw nop nop and %rdx, %rdx lea addresses_A_ht+0x1b2b5, %r13 cl...
rm.asm
keithczq/p4new
0
57020
<reponame>keithczq/p4new<filename>rm.asm _rm: file format elf32-i386 Disassembly of section .text: 00000000 <main>: #include "stat.h" #include "user.h" int main(int argc, char *argv[]) { 0: 8d 4c 24 04 lea 0x4(%esp),%ecx 4: 83 e4 f0 and $0xfffffff0,%esp 7: ff 71 fc ...
Transynther/x86/_processed/AVXALIGN/_zr_/i7-8650U_0xd2_notsx.log_2358_1259.asm
ljhsiun2/medusa
9
57021
<filename>Transynther/x86/_processed/AVXALIGN/_zr_/i7-8650U_0xd2_notsx.log_2358_1259.asm .global s_prepare_buffers s_prepare_buffers: push %r13 push %r8 push %r9 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_D_ht+0x79a2, %r9 nop nop nop nop xor $38274, %rcx movl $0x61626364, (%r9) nop nop cmp $13699, ...
programs/oeis/196/A196508.asm
jmorken/loda
1
57022
<reponame>jmorken/loda ; A196508: a(n) = 2^n*(n^2 - n + 4)-4. ; 0,4,20,76,252,764,2172,5884,15356,38908,96252,233468,557052,1310716,3047420,7012348,15990780,36175868,81264636,181403644,402653180,889192444,1954545660,4278190076,9328132092,20266876924,43889197052,94757715964,204010946556,438086664188,938450354172,2005749...
src/test/resources/data/potests/test55.asm
cpcitor/mdlz80optimizer
36
57023
; Test case: ONE: equ 1 ld a,(value) ; mdl:no-opt-start cp ONE*0 ; <-- should be optimized (but will not, since this is a protected block) call z,function1 ld a,2 ld (value),a end: jp end ; mdl:no-opt-end function1: ld a,0 ; <-- should be optimized xor a ret value: db 1
resources/war.asm
GeorgeBernard/350assembler
1
57024
<gh_stars>1-10 noop # War program noop # Write cards to memory addi $3, $0, 0 # i = 0 addi $4, $0, 51 # limit = 51 WriteCards: noop # write each card sw $3, 0($s3) # *i = i sw $3, 52($3) # *(i+52) = i addi...
programs/oeis/186/A186025.asm
karttu/loda
0
57025
<reponame>karttu/loda<gh_stars>0 ; A186025: a(n) = 0^n + 1 - F(n-1)^2 - F(n)^2, where F = A000045. ; 1,0,-1,-4,-12,-33,-88,-232,-609,-1596,-4180,-10945,-28656,-75024,-196417,-514228,-1346268,-3524577,-9227464,-24157816,-63245985,-165580140,-433494436,-1134903169,-2971215072,-7778742048,-20365011073,-53316291172,-139583...
base/mvdm/wow16/user/wclass.asm
npocmaka/Windows-Server-2003
17
57026
<filename>base/mvdm/wow16/user/wclass.asm TITLE wsubcls.asm _TEXT SEGMENT WORD PUBLIC 'CODE' _TEXT ENDS _DATA SEGMENT WORD PUBLIC 'DATA' _DATA ENDS DGROUP GROUP _DATA EXTRN CALLWINDOWPROC:FAR EXTRN DEFDLGPROC:FAR _TEXT SEGMENT ASSUME CS: _TEXT PUBLIC BUTTONWNDPRO...
Engine Hacks/CSA System FE8/SpellFix.asm
sme23/Christmas2
0
57027
.thumb .global SpellEngineFix .type SpellEngineFix, %function .macro blh to, reg ldr \reg, =\to mov lr, \reg .short 0xF800 .endm @ Hook to 0x08004EA0 SpellEngineFix: mov r5, #0x01 cmp r0, #0x00 bne Skip mov r0, r4 blh #0x08005208, r2 Skip: ldr r0, [ r4, #0x38 ] @ Vanilla @ Okay. Now I need to check whe...
libsrc/_DEVELOPMENT/stdlib/z80/asm_strtol.asm
meesokim/z88dk
0
57028
; =============================================================== ; Dec 2013 ; =============================================================== ; ; long strtol( const char * restrict nptr, char ** restrict endptr, int base) ; ; Read number encoded in given radix from string; if base == 0, ; radix is auto-detected as d...
data/pokemon/base_stats/starmie.asm
opiter09/ASM-Machina
1
57029
db DEX_STARMIE ; pokedex id db 60, 75, 85, 115, 100 ; hp atk def spd spc db WATER, PSYCHIC_TYPE ; type db 60 ; catch rate db 207 ; base exp INCBIN "gfx/pokemon/front/starmie.pic", 0, 1 ; sprite dimensions dw StarmiePicFront, StarmiePicBack db WATER_GUN, HARDEN, BUBBLEBEAM, FOCUS_ENERGY ; level 1 l...
45/beef/drv/csd/inc/csd_vram.asm
minblock/msdos
0
57030
<filename>45/beef/drv/csd/inc/csd_vram.asm ;* ;* CW : Character Windows ;* ;* csd_vram.asm : contains the default routines for direct ;* video RAM access (primary buffer = video RAM) ;* (update routines are no-ops) ;* ifndef PrepUpdateCsd_NonDefault ;***************************************************************...