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 |
|---|---|---|---|---|
1997-fall/mp2/out/mp2.asm | ece291/machine-problems | 3 | 50796 | <reponame>ece291/machine-problems
PAGE 75, 132
TITLE ECE291:MP2:MP2-Compress - Your Name - Date
COMMENT *
Data Compression.
The world contains a great deal of data. Luckily, a great
deal of it is redundant (i.e., repeats itself or has repeating
patterns). Using compre... |
data/pokemon/base_stats/golbat.asm | opiter09/ASM-Machina | 1 | 50798 | db DEX_GOLBAT ; pokedex id
db 75, 80, 70, 90, 75
; hp atk def spd spc
db SOUND, FLYING ; type
db 90 ; catch rate
db 171 ; base exp
INCBIN "gfx/pokemon/front/golbat.pic", 0, 1 ; sprite dimensions
dw GolbatPicFront, GolbatPicBack
db SUPERSONIC, SONICBOOM, BITE, NO_MOVE ; level 1 learnset
db GROWT... |
kernel/data.asm | paulscottrobson/MZ-System | 0 | 50800 | ; ***************************************************************************************
; ***************************************************************************************
;
; Name : data.asm
; Author : <NAME> (<EMAIL>)
; Date : 15th November 2018
; Purpose : Data area
;
; ******************************... |
defines/psg-defs.asm | dougmasten/coco_libraries | 2 | 50801 | ; psg-defs.asm
*pragmapush list ; Save state of list pragma
pragma nolist ; Turn off assembly listing and exclude from symbol list
ifndef PSG_DEFS ; Load defines only once
; CoCo PSG by <NAME>
; - YM2149 classic sound chip
; - D... |
help.asm | cotarr/calc-pi-x86-64-asm | 0 | 50802 | %define HELP4334
%include "var_header.inc" ; Header has global variable definitions for other modules
%include "func_header.inc" ; Header has global function definitions for other modules
;--------------------------------------------------------------
;
; SINGLE THREAD FLOATING POINT MULTI-PRECISION CALCULATOR
;
; ... |
oeis/128/A128634.asm | neoneye/loda-programs | 11 | 50803 | <gh_stars>10-100
; A128634: Number of parallel permutations of length n.
; 0,2,8,26,82,262,856,2858,9722,33590,117570,416022,1485798,5348878,19389688,70715338,259289578,955277398,3534526378,13128240838,48932534038,182965127278,686119227298,2579808294646,9723892802902,36734706144302,139067101832006,527495903500718,20044... |
mymp2test.asm | xiaoqing2027/Operating-System | 0 | 50804 |
_mymp2test: file format elf32-i386
Disassembly of section .text:
00000000 <tmain>:
#include "types.h"
#include "user.h"
void tmain(void* arg){
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 83 ec 28 sub $0x28,%esp
//printf(1, "argument: %d\n", arg);... |
programs/oeis/138/A138473.asm | neoneye/loda | 22 | 50806 | ; A138473: a(n) = Fibonacci(8*n).
; 0,21,987,46368,2178309,102334155,4807526976,225851433717,10610209857723,498454011879264,23416728348467685,1100087778366101931,51680708854858323072,2427893228399975082453,114059301025943970552219,5358359254990966640871840,251728825683549488150424261,11825896447871834976429068427,55556... |
Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xa0_notsx.log_158_692.asm | ljhsiun2/medusa | 9 | 50807 | <filename>Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xa0_notsx.log_158_692.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x1d8c5, %rsi
lea addresses_WT_ht+0x1c438, %rdi
nop
sub %r12, %r12
mov $33, %rcx
rep movsl
nop
nop
... |
decreasoner.macosx/software/relsat-dist/gmp-3.1/mpn/powerpc32/sub_n.asm | problem-frames/openpf | 1 | 50809 | dnl PowerPC-32 mpn_sub_n -- Subtract two limb vectors of the same length > 0
dnl and store difference in a third limb vector.
dnl Copyright (C) 1995, 1997, 2000 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
d... |
tests/z80/all_fake.asm | NEO-SPECTRUMAN/sjasmplus | 1 | 50810 | <gh_stars>1-10
ORG 0x8000 : OUTPUT "all_fake.bin"
OPT reset --zxnext=cspect --syntax=f ; fakes warning ON
break ; CSpect emulator breakpoint (was used to verify all fakes below in debugger)
rl_bc rl bc
rl_de rl de
rl_hl rl hl
rr_bc rr bc
rr_de ... |
libs/pthread/pthread_entry.asm | HumbleHunger/xbook2 | 416 | 50811 | <reponame>HumbleHunger/xbook2<gh_stars>100-1000
; 线程执行入口,启动时会先进入这个入口,再进入用户线程例程执行
[bits 32]
[section .text]
extern __pthread_exit ; 导入函数
global __pthread_entry ; 导出函数
__pthread_entry:
push ebx ; 参数入栈
call ecx ; 跳转到线程入口
push eax ; 退出状态入栈
call __pthread_exit ;调用线程... |
examples/asm/is_asm_enabled.asm | consort-cmake/consort-cmake | 0 | 50812 | section .text
%ifdef CONSORT_LINUX
global is_asm_enabled:function
%else
global is_asm_enabled
%endif
%ifdef CONSORT_WINDOWS_X86_64
proc_frame is_asm_enabled
%endif
is_asm_enabled:
mov eax, 1
ret
%ifdef CONSORT_WINDOWS_X86_64
endproc_frame
%endif
|
Pure64 v0.5.0 Distribution/src/init_hdd.asm | svilerino/intel_multicore | 1 | 50815 | ; =============================================================================
; Pure64 -- a 64-bit OS loader written in Assembly for x86-64 systems
; Copyright (C) 2008-2012 Return Infinity -- see LICENSE.TXT
;
; INIT HDD
; =============================================================================
; The co... |
tester.asm | ern0/ppro-tester | 1 | 50816 | <filename>tester.asm<gh_stars>1-10
;FASM source
include 'ppro.inc'
;-------------------------------------------------------
ORG 256
MOV AH,9 ; print title
LEA DX,[txt_title]
INT 21H
FNINIT ; fill FPU stack
FLDLG2
FLD ST0
FADD ST0,ST0
FLDLN2
FLD ST0
FADD ST0,ST0
... |
libsrc/stdio/ansi/sprinter/f_ansi_cls.asm | meesokim/z88dk | 0 | 50817 | ;
; Sprinter C Library
;
; ANSI Video handling for Sprinter
;
; CLS - Clear the screen
;
;
; <NAME> - Apr. 2000
;
;
; $Id: f_ansi_cls.asm,v 1.3 2015/01/19 01:33:19 pauloscustodio Exp $
;
PUBLIC ansi_cls
.ansi_cls
ld d,0 ;top left x
ld e,0 ;top left y
ld h,32 ;height
ld l,80 ;depth
xor a ;fill char... |
programs/oeis/295/A295295.asm | neoneye/loda | 22 | 50818 | <gh_stars>10-100
; A295295: Sum of squarefree divisors of the powerful part of n: a(n) = A048250(A057521(n)).
; 1,1,1,3,1,1,1,3,4,1,1,3,1,1,1,3,1,4,1,3,1,1,1,3,6,1,4,3,1,1,1,3,1,1,1,12,1,1,1,3,1,1,1,3,4,1,1,3,8,6,1,3,1,4,1,3,1,1,1,3,1,1,4,3,1,1,1,3,1,1,1,12,1,1,6,3,1,1,1,3,4,1,1,3,1,1,1,3,1,4,1,3,1,1,1,3,1,8,4,18
seq ... |
libsrc/target/multi8/stdio/fgetc_cons.asm | jpoikela/z88dk | 640 | 50819 | ;
;
; getkey() Wait for keypress
;
SECTION code_clib
PUBLIC fgetc_cons
PUBLIC _fgetc_cons
EXTERN getk
EXTERN msleep
EXTERN __CLIB_FGETC_CONS_DELAY
fgetc_cons:
_fgetc_cons:
ld hl,__CLIB_FGETC_CONS_DELAY
call msleep
loop:
call getk
ld a,h
or l
jr z,loop
ret
|
timer.asm | jorgicor/altair | 0 | 50820 | <filename>timer.asm
; ----------------------------------------------------------------------------
; Altair, CIDLESA's 1981 arcade game remade for the ZX Spectrum and
; Amstrad CPC.
; ----------------------------------------------------------------------------
; --------------------------------------------------------... |
programs/oeis/047/A047493.asm | neoneye/loda | 22 | 50821 | <reponame>neoneye/loda<gh_stars>10-100
; A047493: Numbers that are congruent to {1, 4, 5, 7} mod 8.
; 1,4,5,7,9,12,13,15,17,20,21,23,25,28,29,31,33,36,37,39,41,44,45,47,49,52,53,55,57,60,61,63,65,68,69,71,73,76,77,79,81,84,85,87,89,92,93,95,97,100,101,103,105,108,109,111,113,116,117,119,121,124
mov $1,$0
mul $0,6
add ... |
OSDev/Try-12/boot/16/switch32.asm | Ashwin-Paudel/Tries | 0 | 50823 | ;
; switch32.asm
; KripayaOS Project
; Author(s): [Ashwin: <EMAIL>]
;
[bits 16]
switch_32:
; Disable Interrupts
cli
; Load the GDT
lgdt [gdt_descriptor32]
; Enable 32 Bit
mov eax, cr0
or eax, 0x00000001
mov cr0, eax
; Remove all the 32 bit instructions
jmp code_seg:init_32
[bits 32]
init_32:
; Set up ... |
libsrc/_DEVELOPMENT/math/float/math48/c/sdcc_ix/cm48_sdccix_scalbn_callee.asm | jpoikela/z88dk | 640 | 50825 |
; float scalbn(float x, int n) __z88dk_callee
SECTION code_clib
SECTION code_fp_math48
PUBLIC cm48_sdccix_scalbn_callee, l0_cm48_sdccix_scalbn_callee
EXTERN cm48_sdccixp_d2m48, am48_scalbn, cm48_sdccixp_m482d
cm48_sdccix_scalbn_callee:
pop af
pop de
pop hl ; hlde = float x
... |
okk/lab2/lab2_proteus.asm | smithros/kpi-stuff | 21 | 50827 | CODE SEGMENT PUBLIC 'CODE'
ASSUME CS:CODE
START:
ORG 100H
JMP begin
ARRAY DB 3,6,9,2,8,4,5,7,1,3
begin:
MOV CX, 9
MOV BX, 0
next:
MOV AL, ARRAY[BX]
TEST AL, 1
JNE n_xch
PUSH AX
MOV AL, ARRAY[BX+1]
TEST AL, 1
JZ n_xch
MOV ARRAY[BX], AL
POP AX
... |
libsrc/_DEVELOPMENT/libgen/c/sccz80/glob_dos.asm | jpoikela/z88dk | 38 | 50828 | <gh_stars>10-100
; unsigned char glob_dos(const char *s, const char *pattern)
SECTION code_string
PUBLIC glob_dos
EXTERN l0_glob_dos_callee
glob_dos:
pop af
pop de
pop hl
push hl
push de
push af
jp l0_glob_dos_callee
|
engine/phone/scripts/derek.asm | Trap-Master/spacworld97-thingy | 0 | 50829 | <filename>engine/phone/scripts/derek.asm
DerekPhoneCalleeScript:
gettrainername STRING_BUFFER_3, POKEFANM, DEREK1
farscall PhoneScript_AnswerPhone_Male
checkflag ENGINE_DEREK_HAS_NUGGET
iftrue .Nugget
farscall PhoneScript_Random2
ifequal 0, .NoContest
checkflag ENGINE_DAILY_BUG_CONTEST
iftrue .NoContest
readva... |
uuu/src/apps/semaphore_test/semaphore_test.asm | ekscrypto/Unununium | 7 | 50830 | ; Unununium Operating Engine
; Copyright (C) 2001, <NAME>
; Distributed under the BSD License
;
; This is a little application to test the semaphore mechanism of the thread
; engine. It will create 4 threads, that all try to acquire a lock on a
; created semaphore.
[bits 32]
section s_app_semaphore_test
global app... |
src/Shaders/Sdk/Direct3D11/PNTriangles11/PNTriangles11_HS.asm | tgjones/slimshader-cpp | 20 | 50831 | <filename>src/Shaders/Sdk/Direct3D11/PNTriangles11/PNTriangles11_HS.asm
//
// Generated by Microsoft (R) HLSL Shader Compiler 9.30.9200.16384
//
//
///
// Buffer Definitions:
//
// cbuffer cbPNTriangles
// {
//
// float4x4 g_f4x4World; // Offset: 0 Size: 64 [unused]
// float4x4 g_f4x4ViewProject... |
factorial/Factorial.asm | gmarciani/assimply | 1 | 50832 | # @Name: Factorial
# @Description: The program computes the factorial of N.
#
# @Author: <NAME> <<EMAIL>>
.data
msg_welcome: .asciiz "Il programma calcola il fattoriale di n.\n\n"
msg_input: .asciiz "Inserisci n: "
msg_result: .asciiz "\nRisultato: "
.text
.globl main
### MAIN ###
main:
welcome:
la $a0,msg_welcom... |
Assembly/shell_gfx.asm | CaitSith2/Enemizer | 2 | 50833 | ;================================================================================
; insert kholdstare & trinexx shell gfx file
;--------------------------------------------------------------------------------
GFX_Kholdstare_Shell:
incbin shell.gfx
GFX_Trinexx_Shell:
incbin rocks.gfx
GFX_Trinexx_Shell2:
incbin rocks2.... |
playground/TracerEntry.asm | marcelocaetano/XSharp | 0 | 50834 | ; We need to make sure Int3 can never run more than one instance at a time.
; We are not threaded yet, when we are we have to change stuff to thread vars and a lot of other stuff.
; Two Int3 calls currently can never happen at the same time normally, but IRQs can happen while the DebugStub is
; running. We also need to... |
programs/oeis/024/A024899.asm | neoneye/loda | 22 | 50835 | <reponame>neoneye/loda
; A024899: Numbers k such that 6*k + 1 is prime.
; 1,2,3,5,6,7,10,11,12,13,16,17,18,21,23,25,26,27,30,32,33,35,37,38,40,45,46,47,51,52,55,56,58,61,62,63,66,68,70,72,73,76,77,81,83,87,90,91,95,96,100,101,102,103,105,107,110,112,115,118,121,122,123,125,126,128,131,135,137,138,142,143,146,147,151,15... |
lab3.asm | lucasxsong/lab2-f17 | 0 | 50837 | <gh_stars>0
_lab3: file format elf32-i386
Disassembly of section .text:
00001000 <main>:
#include "types.h"
#include "user.h"
int main(int argc, char* argv[]) {
1000: 55 push %ebp
1001: 89 e5 mov %esp,%ebp
1003: 83 e4 f0 and $0xfffffff0,%esp
... |
Epilog/asm/MSVC2015-64/func-va-omitfp-opt.asm | Dovgalyuk/AntiTaint | 1 | 50838 | <reponame>Dovgalyuk/AntiTaint
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.00.23506.0
include listing.inc
INCLUDELIB MSVCRT
INCLUDELIB OLDNAMES
PUBLIC __local_stdio_printf_options
PUBLIC _vfprintf_l
PUBLIC printf
PUBLIC func
PUBLIC main
PUBLIC ??_C@_03JDANDILB@?$CFd?5?$AA@ ; `st... |
fibonacci.asm | dannyvc95/asm-algorithms | 0 | 50839 | <gh_stars>0
%macro sys_write 3
mov eax,1
mov rdi, %1
mov rsi, %2
mov rdx, %3
syscall
%endmacro
section .data
Stmsg: db "Sucesion de numeros de Fibonacci",10
StmsgLen equ $-Stmsg
Edmsg: db "...",10
EdmsgLen equ $-Edmsg
a: dq 1
b: dq 1
table db '0123456789'
section .bss
... |
src/third_party/nasm/test/loopoffs.asm | Mr-Sheep/naiveproxy | 2,219 | 50840 | ;Testname=unoptimized; Arguments=-fbin -oloopoffs.bin -O0; Files=stdout stderr loopoffs.bin
;Testname=optimized; Arguments=-fbin -oloopoffs.bin -Ox; Files=stdout stderr loopoffs.bin
bits 16
delay: loop delay
loop $
delay2: a32 loop delay2
a32 loop $
delay3: loop delay3,ecx
loop $,ecx
delay4: a32 loop delay4,ecx
... |
Day-34/my_answer_in_StackoverFlow.asm | MasumBhai/50-Day-challenge-with-Assembly-Language | 1 | 50841 | ; Day-34 Date-30/05/21
; stackoverflow anser link: https://stackoverflow.com/a/67784267/13939591
.model small ; declaring this code will be consists of one data segment and one code segment
.stack 100h ; stack is initializeed to offset address at 100h
.data ; D... |
programs/oeis/224/A224039.asm | jmorken/loda | 1 | 50842 | <filename>programs/oeis/224/A224039.asm
; A224039: Number of 3 X n 0..1 arrays with antidiagonals unimodal and rows and diagonals nondecreasing.
; 8,21,37,58,85,119,161,212,273,345,429,526,637,763,905,1064,1241,1437,1653,1890,2149,2431,2737,3068,3425,3809,4221,4662,5133,5635,6169,6736,7337,7973,8645,9354,10101,10887,11... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_935.asm | ljhsiun2/medusa | 9 | 50843 | <filename>Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_935.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r15
push %r8
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0xbd41, %rsi
lea addresses_UC_ht+0x7ac1, %rdi
add %r15, %r15
mov $51, %rcx
rep movsl
nop
nop
nop
xor $... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_303.asm | ljhsiun2/medusa | 9 | 50844 | .global s_prepare_buffers
s_prepare_buffers:
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x15d5b, %rsi
lea addresses_WC_ht+0x1395b, %rdi
nop
nop
nop
sub $57615, %r9
mov $89, %rcx
rep movsq
nop
nop
nop
add %rdi, %rdi
pop %rsi
pop %rdi
pop %rcx
pop %r9
ret
.global s_faulty_load
s_faulty_load:
push %r1... |
TestData/test.asm | robertmuth/Cwerg | 171 | 50846 | # comment
;;; comment
.num four pos 4
.num pointone flt .1111
.mem global1 four ro
.data 16 [0 0 1 1 2 2 3 3]
.data 1 "hello world\0"
.mem global2 four rw
.fun fun1 normal [s32 rout1 u8 rout2] = [s8 rin1 u8 rin2]
.stk slot1 4 8
.num minus_one neg -1
.num plus_one pos 1
.reg [r0... |
TurtleTools/Examples/test_inxy.asm | foxostro/TurtleTTL | 1 | 50847 | <reponame>foxostro/TurtleTTL
LI X, 0
LI Y, 0
INXY
INXY
INXY
INXY
INXY
INXY
INXY
INXY
INXY
INXY
HLT # unreachable |
tests/bfp-012-loadtest.asm | mtalexander/hyperion | 187 | 50848 | TITLE 'bfp-012-loadtest.asm: Test IEEE Test Data Class, Load And Test'
***********************************************************************
*
*Testcase IEEE Test Data Classs and Load And Test
* Exhaustively test results from the Test Data Class instruction.
* Exhaustively test condition code setting from Load A... |
Palmtree.Math.Core.Sint/vs_build/x64_Debug/pmc_to.asm | rougemeilland/Palmtree.Math.Core.Sint | 0 | 50852 | <filename>Palmtree.Math.Core.Sint/vs_build/x64_Debug/pmc_to.asm
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.16.27026.1
include listing.inc
INCLUDELIB MSVCRTD
INCLUDELIB OLDNAMES
_DATA SEGMENT
COMM uint_number_zero:QWORD
COMM uint_number_one:QWORD
_DATA ENDS
msvcjmc SEGMENT
__7B7A869E_ctype@h... |
programs/oeis/010/A010055.asm | jmorken/loda | 1 | 50854 | <filename>programs/oeis/010/A010055.asm
; A010055: 1 if n is a prime power p^k (k >= 0), otherwise 0.
; 1,1,1,1,1,0,1,1,1,0,1,0,1,0,0,1,1,0,1,0,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,... |
release/src/router/gmp/mpn/ia64/aors_n.asm | ghsecuritylab/Toastman-Tinc | 5 | 50855 | <filename>release/src/router/gmp/mpn/ia64/aors_n.asm
dnl IA-64 mpn_add_n/mpn_sub_n -- mpn addition and subtraction.
dnl Contributed to the GNU project by <NAME>.
dnl Copyright 2003-2005, 2010, 2011 Free Software Foundation, Inc.
dnl This file is part of the GNU MP Library.
dnl
dnl The GNU MP Library is free sof... |
Transynther/x86/_processed/AVXALIGN/_st_/i3-7100_9_0x84_notsx.log_21829_2413.asm | ljhsiun2/medusa | 9 | 50857 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r15
push %r8
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x18b9c, %rsi
lea addresses_WC_ht+0xc32c, %rdi
nop
nop
sub $24075, %rax
mov $122, %rcx
rep movsq
nop
nop
nop
add %rcx, %rcx
lea addresses_A_ht+0xaa9c, %r15
nop
add %r8, %r8
mov... |
programs/oeis/224/A224337.asm | neoneye/loda | 22 | 50859 | <reponame>neoneye/loda
; A224337: Number of idempotent 6X6 0..n matrices of rank 5.
; 378,2910,12282,37494,93306,201678,393210,708582,1199994,1932606,2985978,4455510,6453882,9112494,12582906,17038278,22674810,29713182,38399994,49009206,61843578,77236110,95551482,117187494,142576506,172186878,206524410,246133782,2915999... |
oeis/247/A247326.asm | neoneye/loda-programs | 11 | 50861 | <gh_stars>10-100
; A247326: Number of paths from (0,0) to (n,3), with vertices (i,k) satisfying 0 <= k <= 3, consisting of segments given by the vectors (1,1), (1,2), (1,-1).
; Submitted by <NAME>
; 0,0,2,2,6,10,20,40,74,150,282,558,1072,2088,4050,7850,15254,29562,57412,111344,216106,419294,813594,1578750,3063264,59441... |
data/pokemon/base_stats/sinnoh/buneary.asm | Dev727/ancientplatinum | 0 | 50862 | db 0 ; 427 DEX NO
db 55, 66, 44, 85, 44, 56
; hp atk def spd sat sdf
db NORMAL, NORMAL ; type
db 190 ; catch rate
db 84 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_F50 ; gender ratio
db 100 ; unknown 1
db 20 ; step cycles to hatch
db 5 ; unknown 2
INCBIN "gfx/pokemon/sinnoh/buneary/front... |
programs/oeis/221/A221855.asm | neoneye/loda | 22 | 50864 | <filename>programs/oeis/221/A221855.asm<gh_stars>10-100
; A221855: Number of cyclotomic cosets of 13 mod 10^n.
; 4,12,30,72,130,204,294,400,522,660,814,984,1170,1372,1590,1824,2074,2340,2622,2920,3234,3564,3910,4272,4650,5044,5454,5880,6322,6780,7254,7744,8250,8772,9310,9864,10434,11020,11622,12240,12874,13524,14190,14... |
src/petscii_addresses.asm | onslaught-demogroup/ons_paddo_music_disk | 0 | 50865 | <gh_stars>0
/*
Memory Map
----------
These are the raw addresses of each of the
animation frames based on the file groups
in petscii_include.asm
Need to have this since we are dynamically
loading the groups of frames into the animation
buffer...
You need to load, de-exomize and then
use these labels to actually ad... |
oeis/224/A224233.asm | neoneye/loda-programs | 11 | 50867 | <reponame>neoneye/loda-programs<filename>oeis/224/A224233.asm
; A224233: Decimal expansion of number of inches in a meter.
; 3,9,3,7,0,0,7,8,7,4,0,1,5,7,4,8,0,3,1,4,9,6,0,6,2,9,9,2,1,2,5,9,8,4,2,5,1,9,6,8,5,0,3,9,3,7,0,0,7,8,7,4,0,1,5,7,4,8,0,3,1,4,9,6,0,6,2,9,9,2,1,2,5,9,8,4,2,5,1,9
add $0,3
mov $2,10
pow $2,$0
div $... |
PennSim/monaco.asm | acmahaja/Monaco | 0 | 50868 | <reponame>acmahaja/Monaco<filename>PennSim/monaco.asm
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Programmer: <NAME>
; Class: ECE 109
; Section: 405
;
; monaco.asm
;
; Submitted: 03/28/2017
;
;
; The program user will be able to direct their block through
; a race course,... |
programs/oeis/229/A229147.asm | neoneye/loda | 22 | 50869 | ; A229147: a(n) = n^4*(3*n+2).
; 0,5,128,891,3584,10625,25920,55223,106496,190269,320000,512435,787968,1171001,1690304,2379375,3276800,4426613,5878656,7688939,9920000,12641265,15929408,19868711,24551424,30078125,36558080,44109603,52860416,62948009,74520000,87734495,102760448,119778021,138978944,160566875,184757760,2117... |
src/lantern.asm | hackneyc/CastleEscape | 2 | 50870 | <filename>src/lantern.asm
public _lanternFlicker
public _lanternList
include "defs.inc"
section CODE_2
;
; On entry:
; hl - Pointer to lantern table
;
_lanternFlicker:
ld a, (hl) ; Number of lanterns
or a
... |
Transynther/x86/_processed/NC/_zr_/i3-7100_9_0x84_notsx.log_21829_2757.asm | ljhsiun2/medusa | 9 | 50871 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0xdb8a, %r11
nop
and $33959, %rbx
movups (%r11), %xmm1
vpextrq $0, %xmm1, %rcx
nop
nop
nop
nop
lfence
lea addresses_UC_ht+0x17bca, %rsi
lea addresses_UC_ht+0x117ea, %rdi
nop
n... |
libsrc/interrupts/im1/im1_install_isr.asm | Frodevan/z88dk | 640 | 50872 |
SECTION code_clib
PUBLIC im1_install_isr
PUBLIC _im1_install_isr
PUBLIC asm_im1_install_isr
EXTERN im1_vectors
EXTERN CLIB_IM1_VECTOR_COUNT
EXTERN asm_interrupt_add_handler
im1_install_isr:
_im1_install_isr:
pop bc
pop de
push de
push bc
; de = vector to add
asm_im1_install_isr:
ld hl, im1... |
programs/oeis/051/A051403.asm | karttu/loda | 0 | 50873 | ; A051403: a(n) = (n+2)*(a(n-1)-a(n-2)).
; 0,1,3,8,25,102,539,3496,26613,231170,2250127,24227484,285705641,3660694198,50624828355,751426146512,11913622408669,200919532718826,3591112295892983,67803855263483140
mov $8,$0
mov $10,$0
lpb $10,1
clr $0,8
mov $0,$8
sub $10,1
sub $0,$10
mov $5,$0
mov $7,$0
lpb $... |
routine.asm | Chatatata/SysProgHW1_2 | 0 | 50875 |
; <NAME>
; 150120016
; Assembly to generating 2D Neumann automata
;
; STACK PARAMETERS MUTATED?
; ebp+8 : Input matrix (int32_t[BUFSIZ][BUFSIZ]) NO
; ebp+12 : Width of the input matrix ... |
libsrc/_DEVELOPMENT/math/float/math48/z80/am48_fmod.asm | jpoikela/z88dk | 640 | 50876 | <filename>libsrc/_DEVELOPMENT/math/float/math48/z80/am48_fmod.asm<gh_stars>100-1000
; double fmod(double x, double y)
SECTION code_clib
SECTION code_fp_math48
PUBLIC am48_fmod
EXTERN mm48_mod
; computes result of AC' % AC
;
; enter : AC = double y
; AC' = double x
;
; exit : success
... |
Library/Chart/Main/mainUpdate.asm | steakknife/pcgeos | 504 | 50877 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1991 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: mainUpdate.asm
AUTHOR: <NAME>, Nov 13, 1991
METHODS:
Name Description
---- -----------
REVISION HISTORY:
Name Date Descriptio... |
source/binary/divide.asm | paulscottrobson/AtomicBasic | 1 | 50879 | <filename>source/binary/divide.asm
; *******************************************************************************************
; *******************************************************************************************
;
; Name : divide.asm
; Purpose : 32 bit Divide (and Modulus)
; Date : 3rd June 2019
; Au... |
untested/x86/rand.asm | GabrielRavier/Generic-Assembly-Samples | 0 | 50881 | global _rand
global _srand
segment .data align=16
next dd 1
segment .text align=16
_rand:
mov eax, 123459876
mov ecx, [next]
test ecx, ecx
cmove ecx, eax
mov eax, 110892733
mul ecx
mov eax, edx
mov edx, ecx
sub edx, eax
shr edx, 1
add edx, eax
shr edx, 16
imul eax, edx, -127773
imul edx, edx, -... |
sh.asm | dylsugar/cs461_hw6 | 0 | 50882 |
_sh: file format elf64-x86-64
Disassembly of section .text:
0000000000001000 <runcmd>:
struct cmd *parsecmd(char*);
// Execute cmd. Never returns.
void
runcmd(struct cmd *cmd)
{
1000: f3 0f 1e fa endbr64
1004: 55 push %rbp
1005: 48 89 e5 mov %rsp,%rb... |
Module 2/4. JmpCallPop/FuckTheWorldShellcode.asm | hoangcuongflp/SLAE | 47 | 50883 | ; FuckTheWorldShellcode.asm
; by Abatchy
;
; nasm -felf32 FuckTheWorldShellcode.asm && ld -o FuckTheWorldShellcode FuckTheWorldShellcode.o
; Shellcode generated: "\x31\xc0\xb0\x04\x31\xdb\xb3\x01\xeb\x11\x59\x31\xd2\xb2\x19\xcd\x80\x31\xc0\xb0\x01\x31\xdb\xb3\x05\xcd\x80\xe8\xea\xff\xff\xff"
global _start ;... |
ioq3/build/release-js-js/baseq3/cgame/cg_info.asm | RawTechnique/quake-port | 1 | 50884 | code
proc CG_DrawLoadingIcons 20 20
ADDRLP4 0
CNSTI4 0
ASGNI4
ADDRGP4 $75
JUMPV
LABELV $72
ADDRLP4 8
CNSTI4 78
ADDRLP4 0
INDIRI4
MULI4
CNSTI4 16
ADDI4
ASGNI4
ADDRLP4 4
CNSTI4 284
ASGNI4
ADDRLP4 8
INDIRI4
CVIF4 4
ARGF4
ADDRLP4 4
INDIRI4
CVIF4 4
ARGF4
ADDRLP4 16
CNSTF4 1115684864
ASGNF4
ADDRLP4 16
INDIRF4
ARGF4
ADDRLP4 1... |
src/kernel/core/entry.asm | Oyami-Srk/OmochaOS | 42 | 50885 | ;; entry for multiboot bootloader.
%include "multiboot.i"
;; definations
MB_MAGIC equ 0x1BADB002
MB_FLAGS equ MULTIBOOT_FLAG
MB_CHECKSUM equ -(MB_MAGIC + MB_FLAGS)
KERNEL_BASE equ 0x80000000
STACKSIZE equ 0x4000 ; 16 Kib
;; multiboot header
[section .multiboot]
align 4
dd MB_MAGIC
dd MB_FLAGS
d... |
MdePkg/Library/BaseIoLibIntrinsic/Ia32/IoFifo.nasm | sscargal/ipmctl | 151 | 50886 | ;------------------------------------------------------------------------------
;
; Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>
; Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR>
;
; This program and the accompanying materials are licensed and made available
; under the terms an... |
hello_jump.asm | EdTheBass/asm_tutorial | 97 | 50887 | <gh_stars>10-100
bits 64
default rel
segment .data
switch:
dq main.case0
dq main.case1
dq main.case2
i: dq 2
a: dq 3
b: dq 5
segment .bss
temp resq 1
segment .text
global main
extern ExitProcess
main:
; This block basically implements:
; if (a < b) {
; temp = a;
; a = b;
... |
programs/oeis/062/A062199.asm | neoneye/loda | 22 | 50888 | ; A062199: Second (unsigned) column sequence of triangle A062140 (generalized a=4 Laguerre).
; 1,12,126,1344,15120,181440,2328480,31933440,467026560,7264857600,119870150400,2092278988800,38532804710400,746943599001600,15205637551104000,324386934423552000,7237883474325504000,168600109166641152000,4093235983656787968000,... |
linux32/lesson36.asm | mashingan/notes-asmtutor | 1 | 50890 | <reponame>mashingan/notes-asmtutor<filename>linux32/lesson36.asm<gh_stars>1-10
format ELF executable 3
entry start
include 'procs.inc'
macro xorc reg {
xor reg, reg
}
segment readable writable
request db 'GET / HTTP/1.1', 0dh, 0ah, 'Host: 172.16.58.3:80'
rept 2 {
db 0dh, 0ah
}
db 0h
request.length =... |
driver/test/resources/kernels/a_plus_b.asm | okayvlev/red-o-lator | 0 | 50892 | <gh_stars>0
/* Disassembling 'a_plus_b.bin' */
.amdcl2
.gpu Iceland
.64bit
.arch_minor 0
.arch_stepping 4
.driver_version 200406
.compile_options " -D__AMD__=1 -D__Ellesmere__=1 -D__Ellesmere=1 -DFP_FAST_FMA=1 -D__IMAGE_SUPPORT__=1 -cl-denorms-are-zero -m64 -Dcl_khr_fp64=1 -Dcl_amd_fp64=1 -Dcl_khr_global_int32_base_ato... |
Transynther/x86/_processed/US/_st_zr_sm_/i7-8650U_0xd2.log_2082_1286.asm | ljhsiun2/medusa | 9 | 50893 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %r15
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x8597, %rsi
lea addresses_D_ht+0x93ce, %rdi
clflush (%rsi)
clflush (%rdi)
nop
nop
nop
nop
cmp $34445, %r15
mov $3, %rcx
rep movsl
xor %r11, %r11
lea addresses_normal_ht+0xc49b... |
programs/oeis/212/A212979.asm | neoneye/loda | 22 | 50894 | <filename>programs/oeis/212/A212979.asm
; A212979: Number of (w,x,y) with all terms in {0,...,n} and range=average.
; 1,1,1,7,10,13,19,25,34,40,49,61,70,82,94,109,124,136,154,172,190,208,226,250,271,292,316,340,367,391,418,448,475,505,535,568,601,631,667,703,739,775,811,853,892,931,973,1015,1060,1102,1147,1195,1240
mo... |
src/unison/test/fast/Hexagon/speed/h264ref.memalloc.no_mem_exit.asm | Patstrom/disUnison | 88 | 50895 | <filename>src/unison/test/fast/Hexagon/speed/h264ref.memalloc.no_mem_exit.asm
.text
.file "h264ref.memalloc.no_mem_exit.ll"
.globl no_mem_exit
.align 16
.type no_mem_exit,@function
no_mem_exit: // @no_mem_exit
// BB#0:
{
r2 = ##.str.20
r3 = r0
allocframe(#8)
}
{
r1 = #300
... |
main.asm | mssarts128/tetris.c64 | 1 | 50896 |
/*
----------------------------------
Tetris for 6502. (c) WdW 2015
----------------------------------
*/
.const plot = $fff0 // routine to set cursor position
.const chrout = $ffd2 // routine to print character
// game modes
.const MODE_ATTRACT = 1
.const MODE_SELECTLEVEL = 2
.const MODE_PLAY = 3
.const MOD... |
asm/script/profiles/profile_29/script.asm | h3rmit-git/F-Zero-Climax-GBA-Translation | 6 | 50897 | ; F-Zero Climax Translation by Normmatt
.align 4
Profile29_CharacterProfile:
.sjis "銀河警察に対こうす",TextNL,"る悪のそしき「ダー",TextNL,"クミリオン」のボス。",TextNL,"F-ZEROの賞金",TextNL,"を資金源とし、そし",TextNL,"きを拡大させている。",TextNL,"その悪事はとどまる",TextNL,"所を知らない。",TextNL,"彼自身もきょうい的",TextNL,"なパワーの持ち主で",TextNL,"キャプテンファル",TextNL,"コンでさえ簡単に",TextNL,"手出しができな... |
libsrc/_DEVELOPMENT/stdlib/c/sccz80/dtoa_callee.asm | jpoikela/z88dk | 640 | 50898 |
; size_t dtoa(double x, char *buf, uint16_t prec, uint16_t flag)
SECTION code_clib
SECTION code_stdlib
PUBLIC dtoa_callee
EXTERN dcallee1, asm_dtoa
dtoa_callee:
pop af
pop bc
pop de
pop hl
push af
call dcallee1
jp asm_dtoa
|
programs/oeis/085/A085977.asm | neoneye/loda | 22 | 50899 | <filename>programs/oeis/085/A085977.asm
; A085977: Number of 3's in decimal expansion of prime(n).
; 0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,2,1,0,0,0,1,0,0,0,0,1,1,1,1,2,1,2,2,1,1,2,1,1,2,1,2,1,1,0,0,0,0,1,2,1,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0
seq $0,6005 ; The ... |
lib/avx512/zuc_x16_avx512.asm | dongbinghua/intel-ipsec-mb | 174 | 50900 | <filename>lib/avx512/zuc_x16_avx512.asm<gh_stars>100-1000
;;
;; Copyright (c) 2020-2021, Intel Corporation
;;
;; Redistribution and use in source and binary forms, with or without
;; modification, are permitted provided that the following conditions are met:
;;
;; * Redistributions of source code must retain the ab... |
programs/oeis/110/A110568.asm | karttu/loda | 1 | 50901 | <filename>programs/oeis/110/A110568.asm
; A110568: Period 6: repeat [1, 0, 2, 2, 0, 1].
; 1,0,2,2,0,1,1,0,2,2,0,1,1,0,2,2,0,1,1,0,2,2,0,1,1,0,2,2,0,1,1,0,2,2,0,1,1,0,2,2,0,1,1,0,2,2,0,1,1,0,2,2,0,1,1,0,2,2,0,1,1,0,2,2,0,1,1,0,2,2,0,1,1,0,2,2,0,1,1,0,2,2,0,1,1,0,2,2,0,1,1,0,2
mul $0,2
mov $1,$0
add $1,7
mov $2,$0
gcd $... |
oeis/089/A089155.asm | neoneye/loda-programs | 11 | 50902 | ; A089155: a(n) = (2*n)!*(Integral_{x=0..sqrt(2/3)} 1/(1-x^2)^(n+1/2) dx)/((n!*2^n)*sqrt(2)).
; Submitted by <NAME>
; 1,5,47,687,14001,369645,12013695,463731975,20719022625,1051207269525,59685242540175,3748724456313375,258029176261158225,19313242781012905725,1561734017924407502175,135675820682608239408375,1260223967531... |
win64_examples/debug_test/strcat1.asm | rgimad/fasm_programs | 8 | 50903 | <filename>win64_examples/debug_test/strcat1.asm
format MS COFF ;PE CONSOLE
public start ; if ms coff
;include 'WIN32AX.INC'
section '.data' data readable writeable
string1: times 256 db 0
string2: times 256 db 0
azazalolkek dd 55
;len1 dd 0
;len2 dd 0
section '.code' code rea... |
programs/oeis/033/A033889.asm | neoneye/loda | 22 | 50904 | ; A033889: a(n) = Fibonacci(4*n + 1).
; 1,5,34,233,1597,10946,75025,514229,3524578,24157817,165580141,1134903170,7778742049,53316291173,365435296162,2504730781961,17167680177565,117669030460994,806515533049393,5527939700884757,37889062373143906,259695496911122585,1779979416004714189,12200160415121876738,836211434898484... |
present/hello.asm | amitgajurel/BSU-R---User-Group | 2 | 50905 | <reponame>amitgajurel/BSU-R---User-Group
section .text
global _start ; must be declared for linker (ld)
_start: ;tell linker entry point
mov edx, len ; message length
mov ecx, msg ; message to write
mov ebx, 1 ; file descriptor... |
u7-common/patch-eop-keepMoving.asm | JohnGlassmyer/UltimaHacks | 68 | 50906 | <reponame>JohnGlassmyer/UltimaHacks<filename>u7-common/patch-eop-keepMoving.asm
[bits 16]
startPatch EXE_LENGTH, eop-keepMoving
%assign CYCLE_SPEED_FORWARD_KEY 'q'
%assign CYCLE_SPEED_REVERSE_KEY 'Q'
%assign MAX_SPEED 3
startBlockAt addr_eop_keepMoving
push bp
mov bp, sp
; bp-based stack frame:
%assig... |
programs/oeis/071/A071604.asm | neoneye/loda | 22 | 50908 | ; A071604: a(n) is the number of 7-smooth numbers <= n.
; 1,2,3,4,5,6,7,8,9,10,10,11,11,12,13,14,14,15,15,16,17,17,17,18,19,19,20,21,21,22,22,23,23,23,24,25,25,25,25,26,26,27,27,27,28,28,28,29,30,31,31,31,31,32,32,33,33,33,33,34,34,34,35,36,36,36,36,36,36,37,37,38,38,38,39,39,39,39,39,40,41,41,41,42,42,42,42,42,42,43,4... |
Appl/Bindery/Document/documentSearchSp.asm | steakknife/pcgeos | 504 | 50909 | <gh_stars>100-1000
COMMENT @----------------------------------------------------------------------
Copyright (c) Geoworks 1992-1994 -- All Rights Reserved
PROJECT: GEOS
MODULE: Studio
FILE: documentSearchSp.asm
ROUTINES:
Name Description
---- -----------
INT FindMasterCallback Callback rout... |
oeis/181/A181511.asm | neoneye/loda-programs | 11 | 50910 | <reponame>neoneye/loda-programs
; A181511: Triangle T(n,k) = n!/(n-k)! read by rows, 0 <= k < n.
; Submitted by <NAME>
; 1,1,2,1,3,6,1,4,12,24,1,5,20,60,120,1,6,30,120,360,720,1,7,42,210,840,2520,5040,1,8,56,336,1680,6720,20160,40320,1,9,72,504,3024,15120,60480,181440,362880,1,10,90,720,5040,30240,151200,604800,1814400... |
dv3/qw1/frmt.asm | olifink/smsqe | 0 | 50911 | ; DV3 MSDOS Format V3.01 2017 <NAME>
; based on
; DV3 MSDOS Format V3.00 1993 <NAME>
section dv3
xdef qw1_frmt
include 'dev8_dv3_keys'
include 'dev8_keys_err'
;+++
; DV3 QLW1 Format - not implemented
;
; d0 cr format type / error code
; d7 c p drive ID / number
; a1 c p pointer ... |
programs/oeis/188/A188821.asm | karttu/loda | 0 | 50913 | <reponame>karttu/loda<gh_stars>0
; A188821: Number of n X 6 binary arrays without the pattern 0 1 diagonally or antidiagonally.
; 64,441,1296,2704,4624,7056,10000,13456,17424,21904,26896,32400,38416,44944,51984,59536,67600,76176,85264,94864,104976,115600,126736,138384,150544,163216,176400,190096,204304,219024,234256,25... |
22_Timing/main.asm | DebugBSD/SDLExamples | 3 | 50914 | <filename>22_Timing/main.asm
; ML64 template file
; Compile: uasm64.exe -nologo -win64 -Zd -Zi -c testUasm.asm
; Link: link /nologo /debug /subsystem:console /entry:main testUasm.obj user32.lib kernel32.lib
OPTION WIN64:8
; Include libraries
includelib SDL2.lib
includelib SDL2main.lib
includelib SDL2_image.lib
includ... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_5251_1617.asm | ljhsiun2/medusa | 9 | 50915 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x14e93, %rsi
lea addresses_UC_ht+0x18553, %rdi
dec %rax
mov $110, %rcx
rep movsq
nop
nop
nop
nop
add %rax, %rax
lea addresses_normal_ht+0x73b, %rsi
nop
cmp %rbx, %rbx
movw $0x6162,... |
library_dir_dir/system_library_unbundled/source/pc_mowse_.s.archive/buffer.asm | dancrossnyc/multics | 65 | 50916 | <gh_stars>10-100
; ***********************************************************
; * *
; * Copyright, (C) Honeywell Bull Inc., 1987 *
; * *
; * Copyright, (C) Honeywell Information Systems Inc., ... |
src/05-hello_inc/hello_inc.asm | zhongwei/nasm | 0 | 50917 | %include 'functions.asm'
SECTION .data
msg1 db 'Hello, brave new world!', 0Ah
msg2 db 'This is how we recycle in NASM.', 0Ah
SECTION .text
global _start
_start:
mov eax, msg1
call sprint
mov eax, msg2
call sprint
call quit
|
Transynther/x86/_processed/AVXALIGN/_st_4k_sm_/i7-8650U_0xd2.log_2_1703.asm | ljhsiun2/medusa | 9 | 50918 | .global s_prepare_buffers
s_prepare_buffers:
push %r8
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x7422, %rsi
lea addresses_UC_ht+0xd942, %rdi
add %rbx, %rbx
mov $56, %rcx
rep movsl
nop
nop
nop
nop
nop
and $51799, %r9
lea addresses_normal_ht+0x1346d, %r8
clflush (%r8)
and %rax, %rax
m... |
source/ll_size.asm | mateuszstompor/Linked-List-x86-64-ASM | 5 | 50919 | ;
; Created by <NAME> on 21/06/2019.
;
%include "source/list.asm"
%include "source/offsets.asm"
global LL_SIZE
section .text
LL_SIZE:
add rdi, LL_LIST_SIZE_OFFSET
mov rax, [rdi]
ret
|
user/mkdir.asm | zhangxu0329/6.S081 | 0 | 50920 | <filename>user/mkdir.asm<gh_stars>0
user/_mkdir: file format elf64-littleriscv
Disassembly of section .text:
0000000000000000 <main>:
#include "kernel/stat.h"
#include "user/user.h"
int
main(int argc, char *argv[])
{
0: 7179 addi sp,sp,-48
2: f406 sd ra,40(sp)
4: f022 ... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_349.asm | ljhsiun2/medusa | 9 | 50921 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r14
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x20fa, %rbx
sub %r14, %r14
movups (%rbx), %xmm6
vpextrq $1, %xmm6, %rsi
nop
nop
nop
inc %r12
lea addresses_WC_ht+0xfcfa, %rsi
lea addresses_WC_ht+0x11d3a, ... |
mem/mem_zero_detect_avx.asm | hzhuang1/isa-l | 344 | 50922 | <filename>mem/mem_zero_detect_avx.asm
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Copyright(c) 2011-2018 Intel Corporation All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions
; ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.