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
Examples/ch10/Walk.asm
satadriver/LiunuxOS_t
0
124653
TITLE Drunkard's Walk (Walk.asm) ; Drunkard's walk program. This is a simple version that ; starts at coordinate 50,50 and wanders around the immediate area. ; Last update: 8/14/01. INCLUDE Irvine32.inc WalkMax = 30 StartX = 25 StartY = 25 DrunkardWalk STRUCT path COORD WalkMax DUP(<0,0>) pathsUsed W...
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_1423.asm
ljhsiun2/medusa
9
124654
.global s_prepare_buffers s_prepare_buffers: push %r13 push %r15 push %r8 push %r9 push %rax push %rcx push %rdi push %rsi lea addresses_WT_ht+0x3986, %rsi lea addresses_D_ht+0x4cc6, %rdi clflush (%rsi) nop xor $7285, %r15 mov $40, %rcx rep movsq nop nop nop dec %r15 lea addresses_A_ht+0xce46, %rsi lea addresses_WC_ht+...
Transynther/x86/_processed/US/_st_sm_/i7-7700_9_0xca.log_21829_1445.asm
ljhsiun2/medusa
9
124655
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %rax push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_UC_ht+0x381c, %rdi clflush (%rdi) nop nop nop nop nop and $26074, %r10 mov $0x6162636465666768, %rax movq %rax, %xmm2 movups %xmm2, (%rdi) nop nop cmp $1664, %rbp lea addresses_UC_h...
oeis/077/A077864.asm
neoneye/loda-programs
11
124656
; A077864: Expansion of (1-x)^(-1)/(1-x-2*x^2-x^3). ; Submitted by <NAME>(s1) ; 1,2,5,11,24,52,112,241,518,1113,2391,5136,11032,23696,50897,109322,234813,504355,1083304,2326828,4997792,10734753,23057166,49524465,106373551,228479648,490751216,1054084064,2264066145,4862985490,10445201845,22435238971,48188628152,103504307...
oeis/004/A004009.asm
neoneye/loda-programs
11
124657
<filename>oeis/004/A004009.asm ; A004009: Expansion of Eisenstein series E_4(q) (alternate convention E_2(q)); theta series of E_8 lattice. ; Submitted by <NAME> ; 1,240,2160,6720,17520,30240,60480,82560,140400,181680,272160,319680,490560,527520,743040,846720,1123440,1179360,1635120,1646400,2207520,2311680,2877120,2920...
oeis/041/A041110.asm
neoneye/loda-programs
11
124658
<reponame>neoneye/loda-programs ; A041110: Numerators of continued fraction convergents to sqrt(63). ; Submitted by <NAME> ; 7,8,119,127,1897,2024,30233,32257,481831,514088,7679063,8193151,122383177,130576328,1950451769,2081028097,31084845127,33165873224,495407070263,528572943487,7895428279081,8424001222568,12583144539...
ASM/Win/NASM/HelloWorld/HelloWorld.asm
EricJB77/RepoOfTime
3
124659
; Image base = 0x00400000 %define RVA(x) (x-0x00400000) section .text push dword hello call dword [printf] push byte +0 call dword [exit] ret section .data hello db "Hello world!" section .idata dd RVA(msvcrt_LookupTable) dd -1 dd 0 dd RVA(msvcrt_string) dd RVA(msvcrt_imports) times 5 dd 0 ; ends th...
programs/oeis/260/A260636.asm
neoneye/loda
22
124660
<reponame>neoneye/loda<filename>programs/oeis/260/A260636.asm ; A260636: a(n) = binomial(3n, n) mod n. ; 0,1,0,3,3,0,3,7,3,5,3,0,3,8,9,15,3,15,3,15,0,4,3,12,3,2,3,12,3,24,3,15,18,15,0,9,3,34,6,31,3,21,3,0,15,38,3,36,3,40,33,40,3,42,0,16,27,44,3,0,3,46,45,47,39,51,3,53,15,0,3,45,3,15,9,20,76,0,3,7,3,15,3,63,45,58,84,0,3...
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_795.asm
ljhsiun2/medusa
9
124661
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r14 push %r8 push %r9 push %rax push %rdx push %rsi lea addresses_A_ht+0xff92, %r8 nop add $26852, %r14 vmovups (%r8), %ymm0 vextracti128 $0, %ymm0, %xmm0 vpextrq $1, %xmm0, %rax nop nop dec %rsi lea addresses_normal_ht+0x4992, %r9 nop nop nop inc %rdx movb (...
src/zx81/zx81.asm
nagydani/qrc1
7
124663
; https://github.com/leiradel/qrc1 #target p #code _RAM, $4009, last - $4009 org $4009 ; SYSVARS which aren't saved ERR_NR: equ $4000 ; 1 less than the report code FLAGS: equ $4001 ; various flags to control de BASIC system ERR_SP: equ $4002 ; address of first item on machine stack RAMTOP: equ $4004 ; address ...
LearnAssembly/chap9/factorial.asm
wisemountain/wise.learn
3
124664
<reponame>wisemountain/wise.learn segment .data x dq 0 scanf_format db "%ld", 0 printf_format db "fact(%ld) = %ld", 0x0a, 0 segment .text global main global fact extern scanf extern printf main: push rbp mov rbp, rsp lea rdi, [scanf_format] lea rsi, [x] xor eax, eax cal...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_723.asm
ljhsiun2/medusa
9
124665
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r9 push %rax push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x7d79, %rbp nop nop nop nop nop dec %r10 mov $0x6162636465666768, %rax movq %rax, (%rbp) nop nop nop sub %r10, %r10 lea addresses_normal_ht+0x45e3, %r9...
oeis/081/A081038.asm
neoneye/loda-programs
11
124666
; A081038: 3rd binomial transform of (1,2,0,0,0,0,0,0,...). ; 1,5,21,81,297,1053,3645,12393,41553,137781,452709,1476225,4782969,15411789,49424013,157837977,502211745,1592728677,5036466357,15884240049,49977243081,156905298045,491636600541,1537671920841,4801302120177,14968765433493,46600873519365,144886352214753,44991025...
scripts/VictoryRoad2F.asm
opiter09/ASM-Machina
1
124667
VictoryRoad2F_Script: ld hl, wCurrentMapScriptFlags bit 6, [hl] res 6, [hl] call nz, VictoryRoad2Script_517c4 ld hl, wCurrentMapScriptFlags bit 5, [hl] res 5, [hl] call nz, VictoryRoad2Script_517c9 call EnableAutoTextBoxDrawing ld hl, VictoryRoad2TrainerHeaders ld de, VictoryRoad2F_ScriptPointers ld a, [wVi...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1938.asm
ljhsiun2/medusa
9
124669
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r9 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0x104fa, %rsi lea addresses_UC_ht+0x42ba, %rdi nop nop nop sub $28026, %rbx mov $111, %rcx rep movsq nop nop cmp $10390, %r9 lea addresses_D_ht+0x3b3e, %rbx nop nop nop n...
Working Disassembly/Levels/AIZ/Misc Object Data/Map - Rock.asm
TeamASM-Blur/Sonic-3-Blue-Balls-Edition
5
124670
<gh_stars>1-10 Map_21DCDC: dc.w Frame_21DCEA-Map_21DCDC ; ... dc.w Frame_21DD10-Map_21DCDC dc.w Frame_21DD2A-Map_21DCDC dc.w Frame_21DD44-Map_21DCDC dc.w Frame_21DD4C-Map_21DCDC dc.w Frame_21DD54-Map_21DCDC dc.w Frame_21DD5C-Map_21DCDC Frame_21DCEA: dc.w 6 dc.b $D8, $B, 0, 0,$FF,$E8 dc.b $D8, $B, 0, ...
Driver/IFS/DOS/MS4/ms4Strings.asm
steakknife/pcgeos
504
124671
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1992 -- All Rights Reserved PROJECT: PC GEOS MODULE: FILE: driStrings.asm AUTHOR: <NAME>, Mar 11, 1992 ROUTINES: Name Description ---- ----------- REVISION HISTORY: Name Date Descrip...
oeis/130/A130554.asm
neoneye/loda-programs
11
124672
<gh_stars>10-100 ; A130554: Denominators of partial sums for a series for 2*Pi*sqrt(3)/9. ; Submitted by <NAME> ; 1,6,5,140,1260,110,60060,72072,680680,12932920,38798760,11440660,185910725,5736673800,4621209450,3438179830800,10314539492400,140744203600,59365905078480,127212653739600,4056670180362800 mov $1,1 lpb $0 ...
src/lea.asm
hirohito-protagonist/hla-learn-adventure
0
124673
<gh_stars>0 ; Assembly code emitted by HLA compiler ; Version 2.16 build 4413 (prototype) ; HLA compiler written by <NAME> ; NASM compatible output bits 32 %define ExceptionPtr__hla_ [dword fs:0] global QuitMain__hla_ global DfltExHndlr__hla_ global _HLAMain global H...
programs/oeis/085/A085284.asm
karttu/loda
1
124674
<gh_stars>1-10 ; A085284: C(n+3,3)n^3/4. ; 0,1,20,135,560,1750,4536,10290,21120,40095,71500,121121,196560,307580,466480,688500,992256,1400205,1939140,2640715,3542000,4686066,6122600,7908550,10108800,12796875,16055676,19978245,24668560,30242360,36828000 mov $1,$0 mov $2,3 add $2,$0 bin $2,4 mov $3,1 mul $3,$0 mul $3,$2...
audio/music/dungeon2.asm
etdv-thevoid/pokemon-rgb-enhanced
9
124675
<filename>audio/music/dungeon2.asm Music_Dungeon2_Ch0:: tempo 144 volume 7, 7 duty 3 toggleperfectpitch vibrato 10, 1, 4 Music_Dungeon2_branch_7e892:: notetype 12, 11, 2 octave 4 E_ 4 E_ 4 E_ 4 E_ 4 A# 4 A# 4 A# 4 A# 4 E_ 4 E_ 4 E_ 4 E_ 4 octave 5 C# 4 C# 4 C# 4 C# 4 octave 3 E_ 4 E_ 4 E_ 4...
_inc/Pattern load cues.asm
vladjester2020/Sonic1TMR
0
124677
<filename>_inc/Pattern load cues.asm<gh_stars>0 ; --------------------------------------------------------------------------- ; Pattern load cues - index ; --------------------------------------------------------------------------- dc.w PLC_Main-ArtLoadCues, PLC_Main2-ArtLoadCues dc.w PLC_Explode-ArtLoadCues, PLC...
oeis/138/A138231.asm
neoneye/loda-programs
11
124678
<reponame>neoneye/loda-programs ; A138231: A009545 alternated with its first differences. ; Submitted by <NAME>(s2) ; 0,1,1,1,2,0,2,-2,0,-4,-4,-4,-8,0,-8,8,0,16,16,16,32,0,32,-32,0,-64,-64,-64,-128,0,-128,128,0,256,256,256,512,0,512,-512,0,-1024,-1024,-1024,-2048,0,-2048,2048,0,4096,4096,4096,8192,0,8192,-8192,0,-16384...
oeis/059/A059133.asm
neoneye/loda-programs
11
124679
<reponame>neoneye/loda-programs ; A059133: A hierarchical sequence (S(W2{2}c) - see A059126). ; Submitted by <NAME>(s2.) ; 4,18,52,126,280,594,1228,2502,5056,10170,20404,40878,81832,163746,327580,655254,1310608,2621322,5242756,10485630,20971384,41942898,83885932,167772006,335544160,671088474,1342177108,2684354382,53687...
programs/oeis/238/A238420.asm
neoneye/loda
22
124680
<filename>programs/oeis/238/A238420.asm ; A238420: a(n)=the Wiener index of the Lucas cube L_n. ; 0,4,9,40,120,390,1176,3536,10395,30260,87120,248844,705744,1989820,5581485,15586720,43356936,120187026,332134440,915304520,2516113215,6900949484,18888143904,51599794200,140718765600,383142771700,1041660829521,2828107288216...
MSDOS/Virus.MSDOS.Unknown.vir_rtns.asm
fengjixuchui/Family
3
124681
<filename>MSDOS/Virus.MSDOS.Unknown.vir_rtns.asm ;These routines were pulled from the VCL as an aid to those who ;wish to write themselves some utilities. I have tried to gather ;all the essential pieces of the routines, so that you can simply ;install them in modules. ; ; ; ; ;This is a DROPPER routine from the VCL. ...
Appl/Saver/Pith/pithMessage.asm
steakknife/pcgeos
504
124682
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1993 -- All Rights Reserved PROJECT: PC GEOS MODULE: FILE: pithMessage.asm AUTHOR: <NAME>, Jun 3, 1993 ROUTINES: Name Description ---- ----------- REVISION HISTORY: Name Date Descripti...
Transynther/x86/_processed/AVXALIGN/_ht_st_zr_un_/i9-9900K_12_0xa0.log_21829_1356.asm
ljhsiun2/medusa
9
124683
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r14 push %r15 push %r9 push %rax push %rbx push %rcx push %rdi push %rsi lea addresses_D_ht+0x2921, %rsi lea addresses_WC_ht+0x4bc1, %rdi nop nop nop add $61355, %r15 mov $95, %rcx rep movsw nop cmp $21886, %r15 lea addresses_UC_ht+0x1aea3, %rsi lea addr...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_1077.asm
ljhsiun2/medusa
9
124684
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r13 push %r15 push %r9 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_UC_ht+0x1dc7f, %rsi lea addresses_A_ht+0x1827, %rdi clflush (%rsi) nop nop nop sub $5274, %rdx mov $21, %rcx rep movsw nop nop nop nop nop cmp %r13, %r13 lea addresses...
programs/oeis/063/A063222.asm
jmorken/loda
1
124685
<reponame>jmorken/loda<filename>programs/oeis/063/A063222.asm ; A063222: Dimension of the space of weight 2n cuspidal newforms for Gamma_0( 58 ). ; 2,7,13,15,21,27,29,35,41,43,49,55,57,63,69,71,77,83,85,91,97,99,105,111,113,119,125,127,133,139,141,147,153,155,161,167,169,175,181,183,189,195,197,203,209,211,217,223,225,...
oeis/020/A020540.asm
neoneye/loda-programs
11
124686
<reponame>neoneye/loda-programs<gh_stars>10-100 ; A020540: a(n) = 8^(n+1) - 2^(n+2). ; Submitted by <NAME>(s1) ; 4,56,496,4064,32704,262016,2096896,16776704,134216704,1073739776,8589930496,68719468544,549755797504,4398046478336,35184372023296,281474976579584,2251799813423104,18014398508957696,144115188074807296 mov $2...
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_105.asm
ljhsiun2/medusa
9
124687
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r15 push %r8 push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0x8e88, %r11 nop nop nop nop nop and %r15, %r15 mov (%r11), %r12d xor $21150, %rcx lea addresses_WC_ht+0x355b, %rsi lea addresses_UC_ht+0x116de, %rdi nop nop dec %rdx mov $...
oeis/091/A091541.asm
neoneye/loda-programs
11
124688
<gh_stars>10-100 ; A091541: Four times triple factorials (3*n-2)!!! with leading 1 added. ; Submitted by <NAME> ; 1,4,4,16,112,1120,14560,232960,4426240,97377280,2434432000,68164096000,2113086976000,71844957184000,2658263415808000,106330536632320000,4572213075189760000,210321801458728960000,10305768271477719040000,5358...
src/PJ/rastlib/bymvseg.asm
AnimatorPro/Animator-Pro
119
124689
include raster.i CGROUP group code code segment dword 'CODE' assume cs:CGROUP,ds:CGROUP ;LONG pj_bym_get_vseg(Bytemap *r,void *pixbuf, ULONG x,ULONG y,ULONG height); public pj_bym_get_vseg pj_bym_get_vseg proc near bgvp struc ;stack frame bgv_ebp dd ? bgv_ret dd ? bgv_r dd ? bgv_pixbuf dd ? ...
kernel/crti.asm
ethan4984/rock
207
124690
section .init global _init:function _init: push rbp mov rbp, rsp section .fini global _fini:function _fini: push rbp mov rbp, rsp
EngineHacks/CoreSupport/ChapterInitHook/src/ChapInitCore.asm
MokhaLeee/FE16re-Proto
5
124691
<gh_stars>1-10 .cpu arm7tdmi .eabi_attribute 20, 1 @ Tag_ABI_FP_denormal .eabi_attribute 21, 1 @ Tag_ABI_FP_exceptions .eabi_attribute 23, 3 @ Tag_ABI_FP_number_model .eabi_attribute 24, 1 @ Tag_ABI_align8_needed .eabi_attribute 25, 1 @ Tag_ABI_align8_preserved .eabi_attribute 26, 1 @ Tag_ABI_enum_size .eabi_at...
programs/year17/prg.asm
banyek/HRM
0
124692
<reponame>banyek/HRM -- HUMAN RESOURCE MACHINE PROGRAM -- a: b: INBOX JUMPN c INBOX JUMPN g JUMP e c: INBOX JUMPN d JUMP f COMMENT 0 d: e: COPYFROM 4 -- default 0 OUTBOX JUMP b f: g: COPYFROM 5 -- default 1 OUTBOX JUMP a...
programs/oeis/018/A018892.asm
karttu/loda
1
124693
<gh_stars>1-10 ; A018892: Number of ways to write 1/n as a sum of exactly 2 unit fractions. ; 1,2,2,3,2,5,2,4,3,5,2,8,2,5,5,5,2,8,2,8,5,5,2,11,3,5,4,8,2,14,2,6,5,5,5,13,2,5,5,11,2,14,2,8,8,5,2,14,3,8,5,8,2,11,5,11,5,5,2,23,2,5,8,7,5,14,2,8,5,14,2,18,2,5,8,8,5,14,2,14,5,5,2,23,5,5,5,11,2,23,5,8,5,5,5,17,2,8,8,13,2,14,2,...
Transynther/x86/_processed/NONE/_ht_zr_un_/i7-7700_9_0xca.log_21829_292.asm
ljhsiun2/medusa
9
124694
<filename>Transynther/x86/_processed/NONE/_ht_zr_un_/i7-7700_9_0xca.log_21829_292.asm .global s_prepare_buffers s_prepare_buffers: push %r10 push %r14 push %r15 push %r9 push %rax push %rcx push %rdi push %rsi lea addresses_WT_ht+0xcc07, %rsi lea addresses_UC_ht+0x150eb, %rdi nop nop nop and %r9, %r9 mov $72, %rcx rep ...
Palmtree.Math.Core.Sint/vs_build/x86_Debug/TEST_op_Add.asm
rougemeilland/Palmtree.Math.Core.Sint
0
124698
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.16.27026.1 TITLE Z:\Sources\Lunor\Repos\rougemeilland\Palmtree.Math.Core.Sint\Palmtree.Math.Core.Sint\TEST_op_Add.c .686P .XMM include listing.inc .model flat INCLUDELIB MSVCRTD INCLUDELIB OLDNAMES _DATA SEGMENT COMM _uint_number_zero:DWORD CO...
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0x48.log_21829_507.asm
ljhsiun2/medusa
9
124699
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r13 push %r8 push %r9 push %rcx push %rdi push %rsi lea addresses_UC_ht+0x12697, %r9 nop nop nop nop nop inc %rcx mov $0x6162636465666768, %r11 movq %r11, %xmm0 and $0xffffffffffffffc0, %r9 vmovaps %ymm0, (%r9) nop nop nop nop xor $57054, %r8 lea ad...
engine/engine/interrupt/implementation/handler/active-video/pixel-output/prepare.asm
neomura/atmega328p-cartridge
0
124700
; Check whether we are on an odd or even row and load the appropriate framebuffer; additionally load the palette into the T flag. sbrc video_next_row, 0 rjmp interrupt_active_video_pixel_output_prepare_odd ; Even. load_immediate_z interrupt_framebuffer_b bst interrupt_flags, INTERRUPT_FLAG_PALETTE_B rjmp interrupt_act...
oeis/051/A051831.asm
neoneye/loda-programs
11
124701
; A051831: a(n) = Fibonacci(prime(n)) mod prime(n), where prime(n) is the n-th prime. ; Submitted by <NAME>(s1) ; 1,2,0,6,1,12,16,1,22,1,1,36,1,42,46,52,1,1,66,1,72,1,82,1,96,1,102,106,1,112,126,1,136,1,1,1,156,162,166,172,1,1,1,192,196,1,1,222,226,1,232,1,1,1,256,262,1,1,276,1,282,292,306,1,312,316,1,336,346,1,352,1,3...
src/ucode_scheduler.asm
DigiDwrf/neon64v2-easybuild
36
124703
<reponame>DigiDwrf/neon64v2-easybuild<gh_stars>10-100 // TODO this assumption will change if I add the dlist task, but for now // most of this assumes exactly 2 tasks. if num_rsp_tasks != 2 { error "assertion failed" } InitScheduler: sb r0, dmem_running_task (r0) lw t0, dmem_initial_task_ras (r0) sw t0, dmem_ta...
oeis/049/A049394.asm
neoneye/loda-programs
11
124704
; A049394: Expansion of (1-25*x)^(-6/5). ; Submitted by <NAME>(s3) ; 1,30,825,22000,577500,15015000,387887500,9974250000,255590156250,6531748437500,166559585156250,4239698531250000,107759004335937500,2735420879296875000,69362458010742187500,1757182269605468750000 add $0,1 mov $2,$0 seq $0,34688 ; Expansion of (1-25*x)...
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca.log_1_1660.asm
ljhsiun2/medusa
9
124705
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r9 push %rcx push %rdi push %rsi lea addresses_normal_ht+0x1d15f, %rsi lea addresses_D_ht+0x16df, %rdi clflush (%rdi) nop add %r11, %r11 mov $55, %rcx rep movsw nop nop nop nop nop cmp $10138, %r13 lea addresses_normal_ht+0x515f, %rsi lea addresses_...
VirtualBox-5.0.0/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/ResetVector/Vtf0/Ia32/Flat32ToFlat64.asm
egraba/vbox_openbsd
1
124706
<filename>VirtualBox-5.0.0/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/ResetVector/Vtf0/Ia32/Flat32ToFlat64.asm ;------------------------------------------------------------------------------ ; @file ; Transition from 32 bit flat protected mode into 64 bit flat protected mode ; ; Copyright (c) 2008 - 2009, Intel Corporati...
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xca_notsx.log_11_394.asm
ljhsiun2/medusa
9
124707
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r15 push %rax push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0x91af, %rsi lea addresses_D_ht+0x14619, %rdi nop nop nop cmp $21793, %r11 mov $37, %rcx rep movsw nop nop nop nop nop add %rbp, %rbp lea addresses_normal_ht+0x9d19, %rsi ...
programs/oeis/053/A053828.asm
jmorken/loda
1
124708
; A053828: Sum of digits of (n written in base 7). ; 0,1,2,3,4,5,6,1,2,3,4,5,6,7,2,3,4,5,6,7,8,3,4,5,6,7,8,9,4,5,6,7,8,9,10,5,6,7,8,9,10,11,6,7,8,9,10,11,12,1,2,3,4,5,6,7,2,3,4,5,6,7,8,3,4,5,6,7,8,9,4,5,6,7,8,9,10,5,6,7,8,9,10,11,6,7,8,9,10,11,12,7,8,9,10,11,12,13,2,3,4,5,6,7,8,3,4,5,6,7,8,9,4,5,6,7,8,9,10,5,6,7,8,9,10...
08/BasicLoop.asm
tthero/tthero-nand2tetris
0
124709
<filename>08/BasicLoop.asm<gh_stars>0 // push constant 0 @0 D=A @SP A=M M=D @SP M=M+1 // if-goto FDFD @SP AM=M-1 D=M @$FDFD D;JGT // push constant 1 @1 D=A @SP A=M M=D @SP M=M+1 // label FDFD ($FDFD) // push constant 2 @2 D=A @SP A=M M=D @SP M=M+1 // label EF ($EF) // goto EF @$EF 0;JMP
src/macro.asm
Shinao/Malicious
82
124710
<reponame>Shinao/Malicious ; Source of life ; Macro to avoid repetition when pushing offset with delta PDELTA macro Addr mov eax, offset Addr add eax, ebp push eax endm ; Macro to avoid repetition when pushing offset value with delta PVDELTA macro Addr mov eax, offset Addr add eax, ebp push [eax] ...
apps/breakfast/pde_fw/toast/examples/Assembly (CCE)/msp430x24x_dco_flashcal.asm
tp-freeforall/breakfast
1
124711
<reponame>tp-freeforall/breakfast<filename>apps/breakfast/pde_fw/toast/examples/Assembly (CCE)/msp430x24x_dco_flashcal.asm ;******************************************************************************* ; MSP430x24x Demo - DCO Calibration Constants Programmer ; ; NOTE: THIS CODE REPLACES THE TI FACTORY-PROGRAMM...
libsrc/rex/graphics/set4pix.asm
andydansby/z88dk-mk2
1
124712
<reponame>andydansby/z88dk-mk2<filename>libsrc/rex/graphics/set4pix.asm ; ; written by <NAME> ; ; $Id: set4pix.asm,v 1.2 2003/03/13 15:02:09 dom Exp $ XLIB set4pix LIB setpixsave .set4pix ld a,b add a,h ld d,a ld a,c add a,l ld e,a call setpixsave ;PIX(xc+x,yc+y) ld a,b sub h ld d,a call setpixsave ;...
reports/13_match_rune_1.combine.asm
arnaudroger/re2j-benchmark
0
124713
# JMH version: 1.19 # VM version: JDK 1.8.0_131, VM 25.131-b11 # VM invoker: /usr/lib/jvm/java-8-oracle/jre/bin/java # VM options: <none> # Warmup: 20 iterations, 1 s each # Measurement: 20 iterations, 1 s each # Timeout: 10 min per iteration # Threads: 1 thread, will synchronize iterations # Benchmark mode: Throughput...
programs/oeis/067/A067870.asm
karttu/loda
1
124714
<filename>programs/oeis/067/A067870.asm<gh_stars>1-10 ; A067870: Numbers k such that k and 3^k end with the same digit. ; 7,13,27,33,47,53,67,73,87,93,107,113,127,133,147,153,167,173,187,193,207,213,227,233,247,253,267,273,287,293,307,313,327,333,347,353,367,373,387,393,407,413,427,433,447,453,467,473,487,493,507,513,5...
macro.asm
Sahilsinggh/MP_SEM4
1
124715
<reponame>Sahilsinggh/MP_SEM4<filename>macro.asm %macro print 2 mov rax,01; mov rdi,01; mov rsi,%1; mov rdx,%2; syscall; %endmacro %macro read 2 mov rax,00; mov rdi,00; mov rsi,%1; mov rdx,%2; syscall; %endmacro %macro fopen 2 mov rax,02; //SYS_OPEN mov rdi,%1; ...
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_354.asm
ljhsiun2/medusa
9
124717
.global s_prepare_buffers s_prepare_buffers: push %r13 push %r14 push %r9 push %rbx push %rcx push %rdi push %rsi lea addresses_D_ht+0x3706, %rcx nop inc %rdi mov (%rcx), %rbx nop nop nop nop nop sub $2968, %r14 lea addresses_WC_ht+0x81f6, %rsi lea addresses_normal_ht+0x14106, %rdi nop add $41508, %r14 mov $74, %rcx re...
oeis/243/A243027.asm
neoneye/loda-programs
11
124718
<gh_stars>10-100 ; A243027: Number of length n+3 0..2 arrays with no four elements in a row with pattern abba (possibly a=b) and new values 0..2 introduced in 0..2 order. ; Submitted by <NAME> ; 12,32,85,226,601,1598,4249,11298,30041,79878,212393,564746,1501641,3992814,10616761,28229618,75061625,199586390,530693641,141...
oeis/139/A139293.asm
neoneye/loda-programs
11
124719
<reponame>neoneye/loda-programs ; A139293: (2^(2p - 1)/8)-1, where p is prime. ; Submitted by <NAME> ; 0,3,63,1023,262143,4194303,1073741823,17179869183,4398046511103,18014398509481983,288230376151711743,1180591620717411303423,302231454903657293676543,4835703278458516698824703 seq $0,6005 ; The odd prime numbers toget...
programs/oeis/090/A090239.asm
jmorken/loda
1
124720
; A090239: a(n) = A053838(n) + 2 modulo 3. ; 2,0,1,0,1,2,1,2,0,0,1,2,1,2,0,2,0,1,1,2,0,2,0,1,0,1,2,0,1,2,1,2,0,2,0,1,1,2,0,2,0,1,0,1,2,2,0,1,0,1,2,1,2,0,1,2,0,2,0,1,0,1,2,2,0,1,0,1,2,1,2,0,0,1,2,1,2,0,2,0,1,0,1,2,1,2,0,2,0,1,1,2,0,2,0,1,0,1,2,2,0,1,0,1,2 mov $2,$0 mov $3,32 lpb $0 sub $0,1 add $3,$2 div $2,3 lpe...
oeis/022/A022038.asm
neoneye/loda-programs
11
124721
<reponame>neoneye/loda-programs<filename>oeis/022/A022038.asm ; A022038: Define the sequence T(a_0,a_1) by a_{n+2} is the greatest integer such that a_{n+2}/a_{n+1}<a_{n+1}/a_n for n >= 0. This is T(8,57). ; Submitted by <NAME> ; 8,57,406,2891,20585,146572,1043641,7431068,52911654,376748420,2682572954,19100803803,13600...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_1475.asm
ljhsiun2/medusa
9
124722
.global s_prepare_buffers s_prepare_buffers: push %r14 push %r15 push %r8 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_D_ht+0x29d7, %rbx clflush (%rbx) dec %r14 movb (%rbx), %r8b nop sub $8833, %rbp lea addresses_WT_ht+0x18aa7, %rbp nop nop nop nop add $43088, %r15 movw $0x6162, (%rbp) nop nop nop no...
oeis/135/A135353.asm
neoneye/loda-programs
11
124724
<gh_stars>10-100 ; A135353: a(n) = 3*a(n-1) - 3*a(n-2) + 2*a(n-3). ; Submitted by <NAME> ; 2,-3,3,22,51,93,170,333,675,1366,2739,5469,10922,21837,43683,87382,174771,349533,699050,1398093,2796195,5592406,11184819,22369629,44739242,89478477,178956963,357913942,715827891,1431655773,2863311530,5726623053,11453246115,229064...
kernel/arch/x86_64/interrupt_handle.asm
jasonwer/WingOS
1
124725
<gh_stars>1-10 [BITS 64] section .text global idt_flush idt_flush: lidt [rdi] ret %macro push_all 0 push rax push rbx push rcx push rdx push rsi push rdi push rbp push r8 push r9 push r10 push r11 push r12 push r13 push r14 push r15 %endmacro %ma...
programs/oeis/164/A164545.asm
neoneye/loda
22
124726
<filename>programs/oeis/164/A164545.asm<gh_stars>10-100 ; A164545: a(n) = 4*a(n-1) + 4*a(n-2) for n > 1; a(0) = 1, a(1) = 8. ; 1,8,36,176,848,4096,19776,95488,461056,2226176,10748928,51900416,250597376,1209991168,5842354176,28209381376,136206942208,657665294336,3175488946176,15332616962048,74032423632896,35746016237977...
programs/oeis/330/A330035.asm
karttu/loda
0
124727
; A330035: a(n) = sign(tan(n)). ; 0,1,-1,-1,1,-1,-1,1,-1,-1,1,-1,-1,1,1,-1,1,1,-1,1,1,-1,1,1,-1,-1,1,-1,-1,1,-1,-1,1,-1,-1,1,1,-1,1,1,-1,1,1,-1,1,1,-1,-1,1,-1,-1,1,-1,-1,1,-1,-1,1,1,-1,1,1,-1,1,1,-1,1,1,-1,-1,1,-1,-1,1,-1,-1,1,-1 lpb $0,1 mul $0,2 mov $2,$0 cal $2,493 ; a(n) = floor(sin(n)). mov $0,0 mov $1,...
nes-test-roms/mmc3_irq_tests/source/4.Scanline_timing.asm
joebentley/ones
1,461
124728
; Tests basic MMC3 IRQ timing for scanlines 0, 1, and 240 .include "prefix_mmc3_validation.a" test_name: .db "MMC3 IRQ TIMING",0 reset: jsr begin_mmc3_tests lda #0 jsr clear_vram jsr clear_sprites lda #0 jsr begin_test ldy #5 ...
src/sh.asm
LessNick/CLi-for-WildCommander
8
124729
<reponame>LessNick/CLi-for-WildCommander ;--------------------------------------- ; sh - execute shell scripts ;--------------------------------------- shellExecute ex de,hl ld a,(hl) cp #00 jp z,errorPar call checkIsPath ex af,af' cp #00 call z,shellExe call restorePath ret shell...
test/extras.asm
Kylogias/jdh-8
911
124730
<gh_stars>100-1000 ; TEST ; a = 0x00 ; [0x8000] = 0xAA jmp [main] fail: mw a, 0x01 halt main: ; CHECK CMP F mw f, 0x08 cmp f, 0x08 and f, 0x02 jz f, [fail] ; CHECK EQ16 lda a, b, [fail] eq16 a, b, [fail] jz f, [fail] lda a, b, 0xFF04 lda c, d, 0xFE03 eq16 a, b, c, d jnz f, [fail] ...
Transynther/x86/_processed/AVXALIGN/_ht_zr_un_/i9-9900K_12_0xca.log_21829_1846.asm
ljhsiun2/medusa
9
124731
<filename>Transynther/x86/_processed/AVXALIGN/_ht_zr_un_/i9-9900K_12_0xca.log_21829_1846.asm .global s_prepare_buffers s_prepare_buffers: push %r13 push %r15 push %rax push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x1197d, %r13 clflush (%r13) nop nop nop nop nop sub %rbp, %rbp mov $0x616263646566...
tests/issue69.asm
jonfoster/customasm
0
124732
<filename>tests/issue69.asm ; ::: #subruledef opcode { A => 0x1 B => 0x2 C => 0x3 } #subruledef condition { X => 0xa Y => 0xb Z => 0xc {} => 0xa ; empty pattern, default to X } #subruledef instruction { {opc: opcode}{cnd: condition} => opc @ cnd } #ruledef { {ins: instruction} ...
base/mvdm/wow16/user/winrect.asm
npocmaka/Windows-Server-2003
17
124733
<filename>base/mvdm/wow16/user/winrect.asm TITLE - Converted Winrect.c to Assembler .286p .xlist include wow.inc include wowusr.inc include cmacros.inc NOEXTERNS=1 ; to suppress including most of the stuff in user.inc include user.inc .list sBegin CODE assumes cs, CODE...
vbox/src/VBox/Runtime/common/string/memcmp.asm
Nurzamal/rest_api_docker
0
124734
<gh_stars>0 ; $Id: memcmp.asm 69219 2017-10-24 15:01:30Z vboxsync $ ;; @file ; IPRT - No-CRT memcmp - AMD64 & X86. ; ; ; Copyright (C) 2006-2017 Oracle Corporation ; ; This file is part of VirtualBox Open Source Edition (OSE), as ; available from http://www.virtualbox.org. This file is free software; ; you can redistr...
data/pokemon/base_stats/skuntank.asm
TastySnax12/pokecrystal16-493-plus
2
124735
db 0 ; species ID placeholder db 103, 93, 67, 84, 71, 61 ; hp atk def spd sat sdf db POISON, DARK ; type db 60 ; catch rate db 168 ; base exp db NO_ITEM, PSNCUREBERRY ; items db GENDER_F50 ; gender ratio db 100 ; unknown 1 db 20 ; step cycles to hatch db 5 ; unknown 2 INCBIN "gfx/pokemon/skunt...
oeis/173/A173188.asm
neoneye/loda-programs
11
124736
; A173188: a(n) = binomial(n + 5, 5)*9^n. ; 1,54,1701,40824,826686,14880348,245525742,3788111448,55401129927,775615818978,10470813556203,137072468372112,1747673971744428,21778706417122872,266011342666286508,3192136111995438096,37707107822946112509,439176902879019428046,5050534383108723422529,57416601407972855750856,645...
oeis/005/A005654.asm
neoneye/loda-programs
11
124737
<filename>oeis/005/A005654.asm ; A005654: Number of bracelets (turn over necklaces) with n red, 1 pink and n-1 blue beads; also reversible strings with n red and n-1 blue beads; also next-to-central column in Losanitsch's triangle A034851. ; Submitted by <NAME> ; 1,2,6,19,66,236,868,3235,12190,46252,176484,676270,26006...
examples/arr.asm
mossx-dev/Mycore
0
124738
<filename>examples/arr.asm ;; Author: <NAME> ;; Data: 19-Oct-21 %include "std/type.asm" %include "std/arr.asm" global _start section .data arr_size: equ 25 section .text _start: mov r15, rsp call main mov eax, esi ; exit code call sys~exit ; call exit main:...
oeis/040/A040871.asm
neoneye/loda-programs
11
124740
; A040871: Continued fraction for sqrt(902). ; Submitted by <NAME> ; 30,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60,30,60 trn $0,1 mod $0,2 add $0,1 mul $0,30
libsrc/_DEVELOPMENT/stdio/c/sccz80/fgetc_unlocked.asm
jpoikela/z88dk
640
124742
<filename>libsrc/_DEVELOPMENT/stdio/c/sccz80/fgetc_unlocked.asm ; int fgetc_unlocked(FILE *stream) SECTION code_clib SECTION code_stdio PUBLIC fgetc_unlocked EXTERN asm_fgetc_unlocked fgetc_unlocked: push hl pop ix jp asm_fgetc_unlocked
ps.asm
spencer-hann/xv6-pdx
1
124743
_ps: file format elf32-i386 Disassembly of section .text: 00000000 <main>: #define UPROCS_MAX 64 // 1 16 64 72 int main(void) { 0: 8d 4c 24 04 lea 0x4(%esp),%ecx 4: 83 e4 f0 and $0xfffffff0,%esp 7: ff 71 fc pushl -0x4(%ecx) a: 55 push ...
src/bootloader/disk_load.asm
Thombrom/SnekOS
0
124744
; ; Routine to load sectors from ; the disk to a memory adress ; ; dh: Number of sectors to load ; dl: Drive number ; es:bx Location to read to ; disk_load: push dx mov ah, 0x02 ; BOIS read sector function mov al, dh ; Amount of sectors to read mov ch, 0x00 ...
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0x48_notsx.log_21829_757.asm
ljhsiun2/medusa
9
124745
.global s_prepare_buffers s_prepare_buffers: push %r14 push %rbx push %rcx push %rdi push %rsi lea addresses_normal_ht+0x26bd, %rsi lea addresses_D_ht+0x1df23, %rdi nop nop nop nop sub %r14, %r14 mov $45, %rcx rep movsw nop nop nop nop cmp $44941, %rdi lea addresses_WC_ht+0x5ebd, %rsi lea addresses_UC_ht+0x189fd, %rdi ...
oeis/237/A237262.asm
neoneye/loda-programs
11
124746
<reponame>neoneye/loda-programs ; A237262: Values of x in the solutions to x^2 - 8*x*y + y^2 + 11 = 0, where 0 < x < y. ; Submitted by <NAME> ; 1,2,6,15,47,118,370,929,2913,7314,22934,57583,180559,453350,1421538,3569217,11191745,28100386,88112422,221233871,693707631,1741770582,5461548626,13712930785,42998681377,1079616...
ascii 3b00.asm
bozimmerman/Zelch128
5
124747
<reponame>bozimmerman/Zelch128<gh_stars>1-10 * =$3B00 BYTE $00,$00,$00,$00,$00,$00,$00,$07,$14,$00,$00,$00,$00,$0D BYTE $00,$00,$14,$00,$00,$13,$00,$00,$00,$00,$18,$00,$00,$1B,$00,$00 BYTE $00,$00,$20,$21,$22,$23,$24,$25,$26,$27,$28,$29,$2A,$2B,$2C,$2D BYTE $2E,$2F,$30,$31,$3...
Transynther/x86/_processed/US/_st_sm_/i3-7100_9_0xca_notsx.log_7465_1755.asm
ljhsiun2/medusa
9
124749
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x3aba, %rsi lea addresses_D_ht+0x1bc52, %rdi nop and $53219, %r11 mov $8, %rcx rep movsw nop sub %r12, %r12 lea addresses_normal_ht+0x302, %rbp nop nop nop and %rdi, %rdi...
in/boot/boot.asm
Daliji/Diers
4
124750
<filename>in/boot/boot.asm<gh_stars>1-10 org 0x7c00 ;重定位到0x7c00处 jmp start ;跳转到start处执行 SETUPSEG equ 0x9000 ;setup程序将要加载到的地方 DATASEG equ 0x8000 ;数据将要保存的地方 ROOT_DEV db 0 ;设备号 start: mov ax,cs mov ds,ax mov es,ax mov ss,ax ;另各段寄存器与CS相等 mov [ROOT_DEV],dl ;保存设备号 call load_msg ;显示启动信息 mov ax,DATASEG...
Library/Chart/Utils/utilsFloat.asm
steakknife/pcgeos
504
124751
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1991 -- All Rights Reserved PROJECT: PC GEOS MODULE: FILE: utilsFloat.asm AUTHOR: <NAME> METHODS: Name Description ---- ----------- FUNCTIONS: Scope Name Description ----- ---- -----------...
programs/oeis/132/A132954.asm
karttu/loda
0
124752
<reponame>karttu/loda ; A132954: Period 6: repeat [1, 2, 4, -1, -2, -4]. ; 1,2,4,-1,-2,-4,1,2,4,-1,-2,-4,1,2,4,-1,-2,-4,1,2,4,-1,-2,-4,1,2,4,-1,-2,-4,1,2,4,-1,-2,-4,1,2,4,-1,-2,-4,1,2,4,-1,-2,-4,1,2,4,-1,-2,-4,1,2,4,-1,-2,-4,1,2,4,-1,-2,-4,1,2,4,-1,-2,-4,1,2 lpb $0,1 mod $0,6 lpe mov $1,2 pow $1,$0 lpb $1,1 sub $1...
data/mapHeaders/MtMoon1F.asm
AmateurPanda92/pokemon-rby-dx
9
124753
MtMoon1F_h: db CAVERN ; tileset db MT_MOON_1F_HEIGHT, MT_MOON_1F_WIDTH ; dimensions (y, x) dw MtMoon1F_Blocks ; blocks dw MtMoon1F_TextPointers ; texts dw MtMoon1F_Script ; scripts db 0 ; connections dw MtMoon1F_Object ; objects
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1725.asm
ljhsiun2/medusa
9
124754
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r9 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_A_ht+0xf7d8, %rsi lea addresses_D_ht+0xd3c0, %rdi nop nop nop add %rax, %rax mov $31, %rcx rep movsw nop inc %rbp lea addresses_WT_ht+0x1ad98, %r10 nop and $49916, %r9 mov (%r10), %e...
programs/oeis/073/A073783.asm
neoneye/loda
22
124755
<reponame>neoneye/loda<gh_stars>10-100 ; A073783: First differences of composite numbers. ; 2,2,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,2,2,1,1,1,1,2,1,1,2,2,1,1,2,1,1,1,1,2,1,1,1,1,2,2,1,1,1,1,2,1,1,2,2,1,1,1,1,2,1,1,2,1,1,1,1,2,1,1,1,1,1,1,2,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,1,1 seq $0,72668 ; Numbers one ...
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xa0.log_21829_1892.asm
ljhsiun2/medusa
9
124756
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r15 push %r9 push %rbx push %rcx push %rdi push %rsi lea addresses_WC_ht+0x19a94, %r9 cmp $44503, %r15 mov (%r9), %r13 nop nop and $17306, %r10 lea addresses_A_ht+0x17fc4, %rsi lea addresses_WT_ht+0x11624, %rdi clflush (%rsi) and %rbx, %rbx mov $125...
6_kyu/Find_the_missing_term_in_an_Arithmetic_Progression.asm
UlrichBerntien/Codewars-Katas
0
124757
<reponame>UlrichBerntien/Codewars-Katas<gh_stars>0 global find_missing section .text ; <--- int find_missing(const int *nums, size_t n) ---> find_missing: ; check arguments test rdi, rdi je .error_exit ; error: null pointer argument cmp rsi, 2 jb .error_exit ; error: less than 2 ...
oeis/022/A022352.asm
neoneye/loda-programs
11
124759
; A022352: Fibonacci sequence beginning 0, 18. ; Submitted by <NAME> ; 0,18,18,36,54,90,144,234,378,612,990,1602,2592,4194,6786,10980,17766,28746,46512,75258,121770,197028,318798,515826,834624,1350450,2185074,3535524,5720598,9256122,14976720,24232842,39209562,63442404,102651966,166094370,268746336,434840706,703587042,1...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_975.asm
ljhsiun2/medusa
9
124760
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r8 push %rbp push %rbx push %rcx push %rdx lea addresses_UC_ht+0x2b37, %rcx nop nop nop nop dec %rbp vmovups (%rcx), %ymm4 vextracti128 $1, %ymm4, %xmm4 vpextrq $0, %xmm4, %r11 nop nop nop nop xor $64172, %r13 lea addresses_normal_ht+0x144e1, %r11 n...
wof/lcs/123p/84.asm
zengfr/arcade_game_romhacking_sourcecode_top_secret_data
6
124761
copyright zengfr site:http://github.com/zengfr/romhack 001D88 move.w D1, ($84,A0) [123p+ 82] 001D8C move.w #$101, (A0) [123p+ 84] 007E48 rts [123p+ 84, enemy+84] 00806E move.b ($16,A0), D5 [123p+ 84, enemy+84] 00816E move.w ($84,A1), (A4)+ [123p+ 82, enemy+82] 008172 move.w ($5e,A1), (A4)+ [123p+ 84, enemy+...
src/minimum_burst.asm
mvdhout1992/ts-patches
33
124762
%include "TiberianSun.inc" %include "macros/patch.inc" ;;; Fixes common crash at 0047f938 caused by bad mods with Burst=0 in weapontypes hack 0x00680DAF call 0x004DD140 cmp eax, 0 jnz hackend mov eax, 1 jmp hackend
oeis/166/A166642.asm
neoneye/loda-programs
11
124763
<reponame>neoneye/loda-programs<filename>oeis/166/A166642.asm ; A166642: Totally multiplicative sequence with a(p) = 2*(p+1) for prime p. ; Submitted by <NAME> ; 1,6,8,36,12,48,16,216,64,72,24,288,28,96,96,1296,36,384,40,432,128,144,48,1728,144,168,512,576,60,576,64,7776,192,216,192,2304,76,240,224,2592,84,768,88,864,7...
externals/openssl-1.0.2d/tmp64/rsaz-x86_64.asm
doomdagger/cpython
0
124764
<filename>externals/openssl-1.0.2d/tmp64/rsaz-x86_64.asm default rel %define XMMWORD %define YMMWORD %define ZMMWORD section .text code align=64 EXTERN OPENSSL_ia32cap_P global rsaz_512_sqr ALIGN 32 rsaz_512_sqr: mov QWORD[8+rsp],rdi ;WIN64 prologue mov QWORD[16+rsp],rsi mov rax,rsp $L$SEH_begin_rsaz_512_sqr: m...
mie_string_x64.asm
herumi/mie_string
9
124765
; ; @author <NAME>(@herumi) ; @license modified new BSD license ; http://opensource.org/licenses/BSD-3-Clause ; ; https://github.com/herumi/mie_string ; ; for Win64 ; nasm -f win64 -D_WIN64 mie_string_x86.asm ; for Linux 64 ; nasm -f elf64 mie_string_x86.asm ; global mie_findCharRangeSSE global mie_findCharRangeAVX glo...