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 |
|---|---|---|---|---|
src/libs/memory/memcpy.asm | QFSW/2048x86_64 | 6 | 51891 | <reponame>QFSW/2048x86_64
PUBLIC memcpy
.code
; copies a block of memory
; RCX = src
; RDX = dest
; R8 = size (bytes)
memcpy PROC
mloop:
DEC R8
MOV R9B, [RCX + R8]
MOV [RDX + R8], R9B
CMP R8, 0
JNE mloop
RET
memcpy ENDP
END |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_665.asm | ljhsiun2/medusa | 9 | 51892 | .global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r15
push %r9
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0xe741, %rsi
lea addresses_WC_ht+0xf1b5, %rdi
clflush (%rsi)
xor %r14, %r14
mov $39, %rcx
rep movsw
nop
nop
nop
xor $31614, %rdx
lea addresses_WT_ht+0xc703, %rsi
lea addresses_n... |
programs/oeis/191/A191901.asm | karttu/loda | 1 | 51893 | <filename>programs/oeis/191/A191901.asm
; A191901: Number of compositions of odd natural numbers into 6 parts <= n.
; 0,32,364,2048,7812,23328,58824,131072,265720,500000,885780,1492992,2413404,3764768,5695312,8388608,12068784,17006112,23522940,32000000,42883060,56689952,74017944,95551488,122070312,154457888,193710244,2... |
pass/rt/boot32.asm | virtines/wasp | 4 | 51895 | [bits 16]
[section .text]
extern __virtine_main
global _start
_start:
cli
mov eax, gdtr32
lgdt [eax]
mov eax, cr0
or al, 1
mov cr0, eax
jmp 08h:.trampoline
[bits 32]
.trampoline:
mov esp, 0x1000
mov ebp, esp
push dword 0
call __virtine_main
out 0xFA, ax ;; call the exit hypercall
global hcall
hcall:
... |
libsrc/_DEVELOPMENT/target/rc2014/driver/ram/c/sccz80/shadowread.asm | witchcraft2001/z88dk | 640 | 51896 |
; void *shadowread(void * restrict s1, const void * restrict s2, size_t n)
SECTION smc_lib
PUBLIC shadowread
EXTERN asm_push_di
EXTERN asm_pop_ei_jp
EXTERN asm_shadowcopy
.shadowread
IF __CPU_GBZ80__ | __CPU_INTEL__
ld hl,sp+2
ld c,(hl)
inc hl
ld b,(hl)
inc hl
ld e,(hl)
inc hl
ld d,(hl)
... |
Appl/Preferences/PrefMgr/prefmgr.asm | steakknife/pcgeos | 504 | 51897 | <gh_stars>100-1000
COMMENT @----------------------------------------------------------------------
Copyright (c) GeoWorks 1988 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: PrefMgr
FILE: prefmgr.asm
REVISION HISTORY:
Name Date Description
---- ---- -----------
cheng 2/90 Initial version
DESC... |
oeis/342/A342435.asm | neoneye/loda-programs | 11 | 51898 | <filename>oeis/342/A342435.asm
; A342435: a(n) = Sum_{k=1..n} gcd(k,n)^(gcd(k,n) - 2).
; Submitted by <NAME>(s4)
; 1,2,5,19,129,1303,16813,262166,4782981,100000133,2357947701,61917365564,1792160394049,56693912392115,1946195068359645,72057594038190124,2862423051509815809,121439531096599037355
mov $3,$0
mov $5,$0
lpb $3... |
Transynther/x86/_processed/NONE/_zr_un_xt_sm_/i7-8650U_0xd2.log_141_148.asm | ljhsiun2/medusa | 9 | 51899 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x1580a, %rsi
lea addresses_D_ht+0x810a, %rdi
nop
nop
add %rdx, %rdx
mov $22, %rcx
rep movsq
nop
nop
nop
nop
add %rbp, %rbp
lea addresses_WC_ht+0xe60a, %rdx
nop
nop
nop
nop
xor... |
oeis/271/A271494.asm | neoneye/loda-programs | 11 | 51900 | ; A271494: Expansion of (1+16*x)/((1+4*x)*(1-8*x)).
; Submitted by <NAME>(s1.)
; 1,20,112,1088,7936,66560,520192,4210688,33488896,268697600,2146435072,17184063488,137422176256,1099578736640,8795824586752,70369817919488,562945658454016,4503616807239680,36028728299487232,288230651029618688,2305841909702066176,18446748471... |
programs/oeis/060/A060265.asm | neoneye/loda | 22 | 51901 | <filename>programs/oeis/060/A060265.asm
; A060265: Largest prime less than 2n.
; 3,5,7,7,11,13,13,17,19,19,23,23,23,29,31,31,31,37,37,41,43,43,47,47,47,53,53,53,59,61,61,61,67,67,71,73,73,73,79,79,83,83,83,89,89,89,89,97,97,101,103,103,107,109,109,113,113,113,113,113,113,113,127,127,131,131,131,137,139,139,139,139,139,... |
sample/hello_world.asm | plankp/RLVM | 0 | 51903 | <gh_stars>0
# A typical "Hello, world!" program
.STACK 1
.SECTION text
main: LDC r0, _LC0 # Change to _LC1 will also work
call puts
MOV r0, 0
HALT r0
.SECTION data
_LC0: db 0x48,
db 0x65,
db 0x6c,
db 0x6c,
db 0x6f,
db 0x2c,
db 0x20,
db 0x77,
db 0x6f,
db 0x72,
db 0x6c,
db 0x64,
db 0x21,
db 0x00
_LC... |
ShitHead/resources/udg.asm | simonlaszcz/ShitHead | 0 | 51904 | <reponame>simonlaszcz/ShitHead
; Face-up UDGs run A, 2, 3 .. K. Codes 1 - 13
FACEUP_A
defb %01111111
defb %10000000
defb %10011100
defb %10100010
defb %10100010
defb %10111110
defb %10100010
defb %10100010
FACEUP_B
defb %01111111
defb %10000000
defb %10011100
defb %10100010
defb %10000010
defb %10011100
defb %10100000... |
Appl/Startup/RStartup/rstartupApp.asm | steakknife/pcgeos | 504 | 51905 | <reponame>steakknife/pcgeos<filename>Appl/Startup/RStartup/rstartupApp.asm
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
(c) Copyright Geoworks 1995 -- All Rights Reserved
GEOWORKS CONFIDENTIAL
PROJECT: PC GEOS
MODULE: Start up
FILE: rstartupApp.asm
AUTHOR: <NAME>, Aug ... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_19898_745.asm | ljhsiun2/medusa | 9 | 51906 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r14
push %r8
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x16643, %rsi
lea addresses_WC_ht+0x2fe1, %rdi
nop
sub %rax, %rax
mov $80, %rcx
rep movsb
nop
nop
cmp $6386, %r8
lea addresses_normal_ht+0x1060c, %r10
... |
gc95.asm | simontime/gc95 | 19 | 51907 | <reponame>simontime/gc95
title Windows CD Key Generator
type 8521
NLIST
include equates.inc
include memory.inc
LIST
program
db 04h
db 40h
dw Entry
db 00000011b
dm 'TigerDMGC'
db 21h
db 85
db ... |
test/test.std.outsln.asm | richRemer/atlatl | 0 | 51908 | global test_case
extern std.outsln
%include "String.inc"
section .text
test_case:
lea rax, [test_str] ; message
call std.outsln
ret
section .data
test_str_data: db "Bar"
junk_data: db "junk"
test_str:
istruc String
at String.pdata, dq test_str_data
at String.length, dq 3
i... |
Transynther/x86/_processed/US/_zr_/i7-8650U_0xd2_notsx.log_325_1172.asm | ljhsiun2/medusa | 9 | 51909 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r14
push %r8
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x18990, %r10
nop
sub $57680, %r8
mov (%r10), %r14d
nop
and %rcx, %rcx
lea addresses_normal_ht+0x336e, %rsi
lea addresses_D_ht+0x1b190, %rdi
nop
nop
nop
nop
nop
add $35184, %r1... |
programs/oeis/273/A273751.asm | neoneye/loda | 22 | 51910 | ; A273751: Triangle of the natural numbers written by decreasing antidiagonals.
; 1,2,3,4,5,7,6,8,10,13,9,11,14,17,21,12,15,18,22,26,31,16,19,23,27,32,37,43,20,24,28,33,38,44,50,57,25,29,34,39,45,51,58,65,73,30,35,40,46,52,59,66,74,82,91,36,41
mov $2,$0
lpb $0
sub $0,2
lpb $2
mov $0,$2
add $1,1
sub $2,... |
Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xca_notsx.log_21829_1150.asm | ljhsiun2/medusa | 9 | 51911 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x18fd6, %r9
nop
nop
nop
nop
nop
cmp %rbx, %rbx
mov $0x6162636465666768, %rbp
movq %rbp, %xmm3
movups %xmm3, (%r9)
nop
nop
dec %r10
lea addresses_UC_ht+0x17d6, %rsi
lea addresse... |
oeis/094/A094195.asm | neoneye/loda-programs | 11 | 51912 | <reponame>neoneye/loda-programs
; A094195: G.f.: (1-4*x)/((1-5*x)*(1-x)^2).
; Submitted by <NAME>(s2)
; 1,3,10,42,199,981,4888,24420,122077,610359,3051766,15258798,76293955,381469737,1907348644,9536743176,47683715833,238418579115,1192092895522,5960464477554,29802322387711,149011611938493,745058059692400,372529029846193... |
Palmtree.Math.Core.Sint/vs_build/x64_Release/pmc_clone.asm | rougemeilland/Palmtree.Math.Core.Sint | 0 | 51913 | ; Listing generated by Microsoft (R) Optimizing Compiler Version 19.16.27026.1
include listing.inc
INCLUDELIB OLDNAMES
PUBLIC PMC_Clone_X
; COMDAT pdata
pdata SEGMENT
$pdata$PMC_Clone_X DD imagerel $LN17@PMC_Clone_
DD imagerel $LN17@PMC_Clone_+112
DD imagerel $unwind$PMC_Clone_X
; COMDAT xdata
xdata SEGMENT
$unwi... |
playWithNumbers/primeNumber/PrimeNumberHaunting.asm | MinhasKamal/AlgorithmsImplementation | 70 | 51914 | ##Writer: <NAME>
##Date: 01-MAY-2014
##Function: Finds prime numbers in a certain range.
#####**data**#####
.data
prompt: .asciiz "Enter your range: "
new_line: .asciiz "\n"
#####**text**#####
.text
main:
la $a0, prompt #prompt for user input
li $v0, 4
syscall
li $v0, 5 #take start integer
syscall
ad... |
ASM/hexdump_nasm.asm | k1nm3nh4ck3r/OpenSecurityTrainingTaiwan | 9 | 51915 | <reponame>k1nm3nh4ck3r/OpenSecurityTrainingTaiwan<gh_stars>1-10
[bits 16]
;org 100h
CR EQU 0dh
LF EQU 0ah
MAX EQU 0ffh ; 0-max
segment code
..start:
mov ax,data ; Move segment address of data segment into AX
mov ds,ax ; Copy address from AX into DS
mov ax,stack ; Move segment address of... |
programs/oeis/267/A267612.asm | neoneye/loda | 22 | 51916 | <filename>programs/oeis/267/A267612.asm
; A267612: Triangle read by rows giving successive states of cellular automaton generated by "Rule 185" initiated with a single ON (black) cell.
; 1,0,0,1,0,1,0,1,1,0,1,0,1,1,1,1,0,1,0,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0... |
oeis/277/A277472.asm | neoneye/loda-programs | 11 | 51917 | ; A277472: a(n) = (-i)^n * Integral_{x>=0} H_n(i*x) * exp(-x), where H_n(x) is n-th Hermite polynomial, i=sqrt(-1).
; Submitted by <NAME>
; 1,2,10,60,492,4920,59160,828240,13253520,238563360,4771297440,104968543680,2519245713600,65500388553600,1834010896798080,55020326903942400,1760650461445075200,59862115689132556800,... |
Tests/Z80 Programs/testZ80AsmCharIncTRS80/testZ80AsmCharIncTRS80.asm | Simulators/PiBusRaider | 7 | 51918 |
org 0
loopstart:
ld e,0x30
loophere:
ld hl,0x3c00
ld (hl),e
ld bc,0x0001
loopin:
dec bc
ld a,b
or c
jp nz, loopin
inc e
ld a, e
cp a,0x3a
jp nz,loophere
jp loopstart
|
programs/oeis/141/A141325.asm | neoneye/loda | 22 | 51920 | ; A141325: a(n) = A000045(n) + A131531(n+3).
; 1,1,1,1,3,5,9,13,21,33,55,89,145,233,377,609,987,1597,2585,4181,6765,10945,17711,28657,46369,75025,121393,196417,317811,514229,832041,1346269,2178309,3524577,5702887,9227465,14930353,24157817,39088169,63245985,102334155,165580141,267914297,433494437,701408733,1134903169,18... |
9/01.asm | Changlon/x86Assembly | 0 | 51921 | ; @author Changlon <<EMAIL>>
; @github https://github.com/Changlon
; @date 2022-02-14 18:29:57
;指令的组成 = 操作码 + ModR/M SIB
; ModR/M字段的组成
; mod (7-6) reg/opcode (5-3) r/m (2-0)
; 11 -> [EAX/AX/AL..] 001 ->[cx/cl/ecx..] 000 -> mod 11
; 88 11001000 -> 88c8
; mov... |
src/specials.asm | QuinnPainter/Renegade-Rush | 1 | 51922 | INCLUDE "hardware.inc"
INCLUDE "macros.inc"
INCLUDE "collision.inc"
INCLUDE "spriteallocation.inc"
DEF TIME_CAR_INVISIBLE_TIME EQU 200 ; number of frames.
DEF TIME_CAR_SCREEN_FLASH_FRAMES EQU 10
SECTION "SpecialVars", WRAM0
SpecialState: DS 1 ; For rock: 0 = On car, 1 = On road. For time car: 0 = Effect inactive, 1 =... |
chap15/ex46/scalar.asm | JamesType/optimization-manual | 374 | 51923 | <gh_stars>100-1000
;
; Copyright (C) 2021 by Intel Corporation
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted.
;
; THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED W... |
oeis/122/A122883.asm | neoneye/loda-programs | 11 | 51925 | ; A122883: The (1,3)-entry in the 3 X 3 matrix M^n, where M = [1,1,1 / 4,2,1 / 9,3,1].
; Submitted by <NAME>
; 1,3,23,123,739,4263,24935,145155,846379,4932351,28749263,167560155,976617811,5692134423,33176213303,193365096243,1127014462459,6568721481903,38285314822175,223143166664715,1300573686738979,7580298950623431,441... |
programs/oeis/276/A276764.asm | karttu/loda | 1 | 51926 | ; A276764: 1^2 + 3^2, 2^2 + 4^2, 5^2 + 7^2, 6^2 + 8^2, ...
; 10,20,74,100,202,244,394,452,650,724,970,1060,1354,1460,1802,1924,2314,2452,2890,3044,3530,3700,4234,4420,5002,5204,5834,6052,6730,6964,7690,7940,8714,8980,9802,10084,10954,11252,12170,12484,13450,13780,14794,15140,16202,16564,17674,18052,19210,19604,20810,21... |
programs/oeis/081/A081304.asm | neoneye/loda | 22 | 51927 | <filename>programs/oeis/081/A081304.asm
; A081304: Number of numbers m <= n with prime factors less than 2*spf(m), where spf(m) is the smallest prime factor of m (A020639).
; 1,2,3,4,5,6,7,8,9,9,10,11,12,12,13,14,15,16,17,17,17,17,18,19,20,20,21,21,22,22,23,24,24,24,25,26,27,27,27,27,28,28,29,29,30,30,31,32,33,33,33,33... |
s2/sfx-original/C2 - Water Warning.asm | Cancer52/flamedriver | 9 | 51928 | Sound42_WaterWarning_Header:
smpsHeaderStartSong 2
smpsHeaderVoice Sound3F_40_42_Voices
smpsHeaderTempoSFX $01
smpsHeaderChanSFX $01
smpsHeaderSFXChannel cFM5, Sound42_WaterWarning_FM5, $0C, $08
; FM5 Data
Sound42_WaterWarning_FM5:
smpsSetvoice $00
dc.b nA4, $08, nA4, $25
smpsStop
|
Transynther/x86/_processed/US/_st_sm_/i3-7100_9_0x84_notsx.log_21829_88.asm | ljhsiun2/medusa | 9 | 51929 | <reponame>ljhsiun2/medusa<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r15
push %r8
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x4073, %rsi
lea addresses_A_ht+0x15c93, %rdi
clflush (%rdi)
nop
inc %r15
mov $9, %rcx
rep movsb
nop
nop
nop
nop
nop
sub %rsi, %rsi
lea addresses_U... |
PennSim/ascii.asm | acmahaja/ASCIItoBinaryProject | 0 | 51931 | <reponame>acmahaja/ASCIItoBinaryProject
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Programmer: <NAME>
; Class: ECE 109
; Section: 405
;
; ascii.asm
;
; Submitted: 03/28/2017
;
;
; This LC-3 assembly language program will print the binary ASCII code
; for a... |
programs/oeis/076/A076826.asm | jmorken/loda | 1 | 51932 | <reponame>jmorken/loda
; A076826: a(n) = 2*(Sum_{k=0..n} A010060(k)) - n, where A010060 is a Thue-Morse sequence.
; 0,1,2,1,2,1,0,1,2,1,0,1,0,1,2,1,2,1,0,1,0,1,2,1,0,1,2,1,2,1,0,1,2,1,0,1,0,1,2,1,0,1,2,1,2,1,0,1,0,1,2,1,2,1,0,1,2,1,0,1,0,1,2,1,2,1,0,1,0,1,2,1,0,1,2,1,2,1,0,1,0,1,2,1,2,1,0,1,2,1,0,1,0,1,2,1,0,1,2,1,2,1,... |
teste.asm | mur1ll0/xv6-stride | 0 | 51935 | <filename>teste.asm
_teste: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
//i=1;
}
return r;
}
int main(){
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 ... |
oeis/022/A022221.asm | neoneye/loda-programs | 0 | 51937 | ; A022221: Gaussian binomial coefficients [ n,3 ] for q = 6.
; Submitted by <NAME>(w4)
; 1,259,57535,12485095,2698853335,583026951031,125936508182839,27202382491194295,5875718100153221815,1269155234987097152695,274137535269957102205111,59213707780769522731688119,12790160886494733304250601655,276267475169340898392521763... |
_build/dispatcher/jmp_ippsGFpECSharedSecretDH_a40510aa.asm | zyktrcn/ippcp | 1 | 51938 | extern m7_ippsGFpECSharedSecretDH:function
extern n8_ippsGFpECSharedSecretDH:function
extern y8_ippsGFpECSharedSecretDH:function
extern e9_ippsGFpECSharedSecretDH:function
extern l9_ippsGFpECSharedSecretDH:function
extern n0_ippsGFpECSharedSecretDH:function
extern k0_ippsGFpECSharedSecretDH:function
extern ippcpJumpInd... |
asm/jp_dos_room_test.asm | Iemnur/DSVEdit | 70 | 51939 | .nds
.relativeinclude on
.erroronwarning on
.open "ftc/arm9.bin", 02000000h
.org 0x0203E534
push r1, r14
mov r0, 4h
bl 0203BF88h ; Set the top screen to 4 (cross with bat wings).
mov r0, 0h ; Save file 0.
bl 02010C1Ch ; Load a save file.
ldr r1, =020F6E97h
mov r0, 0h
strb r0, [r1] ; unknown value we h... |
kitty-jump.asm | archie-lhd/kitty-jump-mips-assembly | 2 | 51941 | #####################################################################
#
# Bitmap Display Configuration:
# - Unit width in pixels: 8
# - Unit height in pixels: 8
# - Display width in pixels: 256
# - Display height in pixels: 512
# - Base Address for Display: 0x10008000 ($gp)
#
#
# Which approved additional... |
_inc/Debug list - Ending and SS.asm | NatsumiFox/AMPS-Sonic-1-2005 | 2 | 51942 | ; ---------------------------------------------------------------------------
; Debug list - ending sequence / special stage
; ---------------------------------------------------------------------------
dc.w $D
dc.l Map_obj25+$25000000
dc.b 0, 0, $27, $B2
dc.l Map_obj47+$47000000
dc.b 0, 0, 3, $80
dc.l Map_obj28a... |
oeis/013/A013928.asm | neoneye/loda-programs | 11 | 51944 | ; A013928: Number of (positive) squarefree numbers < n.
; Submitted by <NAME>(s2.)
; 0,1,2,3,3,4,5,6,6,6,7,8,8,9,10,11,11,12,12,13,13,14,15,16,16,16,17,17,17,18,19,20,20,21,22,23,23,24,25,26,26,27,28,29,29,29,30,31,31,31,31,32,32,33,33,34,34,35,36,37,37,38,39,39,39,40,41,42,42,43,44,45,45,46,47,47,47,48,49,50,50,50,51,... |
oeis/321/A321875.asm | neoneye/loda-programs | 11 | 51946 | ; A321875: a(n) = Sum_{d|n} d*d!.
; Submitted by <NAME>(s1.)
; 1,5,19,101,601,4343,35281,322661,3265939,36288605,439084801,5748023639,80951270401,1220496112085,19615115520619,334764638530661,6046686277632001,115242726706374263,2311256907767808001,48658040163569088701,1072909785605898275299,24728016011107808044805,59459... |
libsrc/_DEVELOPMENT/math/float/math32/z80/f32_z80_sqr_32h_24x24.asm | rjcorrig/z88dk | 0 | 51948 | <reponame>rjcorrig/z88dk
;
; feilipu, 2019 May
;
; This Source Code Form is subject to the terms of the Mozilla Public
; License, v. 2.0. If a copy of the MPL was not distributed with this
; file, You can obtain one at http://mozilla.org/MPL/2.0/.
;
;-----------------------------------------------------------------... |
programs/oeis/092/A092808.asm | neoneye/loda | 22 | 51949 | ; A092808: Pair reversal of Jacobsthal numbers.
; 1,0,3,1,11,5,43,21,171,85,683,341,2731,1365,10923,5461,43691,21845,174763,87381,699051,349525,2796203,1398101,11184811,5592405,44739243,22369621,178956971,89478485,715827883,357913941,2863311531,1431655765
seq $0,193652 ; A020988 and A007583 interleaved.
add $0,3
dif $... |
src/menu_items.asm | onslaught-demogroup/ons_paddo_music_disk | 0 | 51950 | .var menu_x = 2
.var menu_y = 3
.var menu_h = 20
.var menu_w = 11
.var item_w = 50
menu_screen_lo:
.pc=* "menu_screen_lo"
.for(var i=0;i<menu_h;i++){
.byte <($0400 + (menu_y * $28) + menu_x + (i * $28))
}
menu_screen_hi:
.pc=* "menu_screen_hi"
.for(var i=0;i<menu_h;i++){
.byte >($0400 + (menu_y * $28) + menu_... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_1752.asm | ljhsiun2/medusa | 9 | 51951 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r14
push %r15
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x177ef, %r15
nop
sub %rbp, %rbp
mov (%r15), %cx
nop
nop
nop
and %r14, %r14
lea addresses_WC_ht+0xfce9, %rdi
nop
sub $20439, %r11
movb $0x61, (%rdi)
nop
nop
nop... |
_maps/obj26.asm | vladjester2020/Sonic1TMR | 0 | 51952 | ; --------------------------------------------------------------------------------
; Sprite mappings - output from SonMapEd - Sonic 1 format
; --------------------------------------------------------------------------------
SME_hGqPU:
dc.w SME_hGqPU_18-SME_hGqPU, SME_hGqPU_1E-SME_hGqPU
dc.w SME_hGqPU_29-SME_hGqP... |
oeis/138/A138099.asm | neoneye/loda-programs | 11 | 51953 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A138099: Irregular triangle read by rows: T(n,k) = k + floor(n/2), 1 <= k <= ceiling(n/2).
; 1,2,2,3,3,4,3,4,5,4,5,6,4,5,6,7,5,6,7,8,5,6,7,8,9,6,7,8,9,10,6,7,8,9,10,11,7,8,9,10,11,12,7,8,9,10,11,12,13,8,9,10,11,12,13,14,8,9,10,11,12,13,14,15,9,10,11,12,13,14,15,16,9,10,... |
oeis/182/A182442.asm | neoneye/loda-programs | 11 | 51955 | <filename>oeis/182/A182442.asm
; A182442: a(0)=0, a(1)=1, for n>1, a(n) = a(n-1)*2 + floor(a(n-2)/n).
; Submitted by <NAME>
; 0,1,2,4,8,16,33,68,140,287,588,1202,2453,4998,10171,20675,41985,85186,172704,349891,708417,1433495,2899190,5860705,11842209,23918846,48293161,97472205,196669165,396699440,799954518,1612705792,32... |
oeis/152/A152887.asm | neoneye/loda-programs | 11 | 51957 | <filename>oeis/152/A152887.asm
; A152887: Number of descents beginning with an even number and ending with an odd number in all permutations of {1,2,...,n}.
; Submitted by <NAME>(s2)
; 0,1,2,18,72,720,4320,50400,403200,5443200,54432000,838252800,10059033600,174356582400,2440992153600,47076277248000,753220435968000,1600... |
third_party/boringssl/win-x86_64/crypto/bn/modexp512-x86_64.asm | domenic/mojo | 5 | 51958 | <reponame>domenic/mojo
default rel
%define XMMWORD
%define YMMWORD
%define ZMMWORD
section .text code align=64
ALIGN 16
MULADD_128x512:
mov rax,QWORD[rsi]
mul rbp
add r8,rax
adc rdx,0
mov QWORD[rcx],r8
mov rbx,rdx
mov rax,QWORD[8+rsi]
mul rbp
add r9,rax
adc rdx,0
add r9,rbx
adc rdx,0
mov rbx,rdx
mov ... |
oeis/193/A193871.asm | neoneye/loda-programs | 11 | 51959 | <filename>oeis/193/A193871.asm
; A193871: Square array T(n,k) = k^n - k + 1 read by antidiagonals.
; Submitted by <NAME>
; 1,1,1,1,3,1,1,7,7,1,1,15,25,13,1,1,31,79,61,21,1,1,63,241,253,121,31,1,1,127,727,1021,621,211,43,1,1,255,2185,4093,3121,1291,337,57,1,1,511,6559,16381,15621,7771,2395,505,73,1,1,1023,19681,65533,78... |
header/002/generic_v1.asm | freem/nes_corelib | 16 | 51960 | <gh_stars>10-100
; Generic UxROM template (iNES)
; This template does not impose a specific "U*ROM" board layout.
;------------------------------------------------------------------------------;
; number of 16K PRG-ROM banks
PRG_BANKS = $08
; UOROM mirroring is hardwired via solder pads.
; %0000 = Horizontal
; %0001 =... |
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0.log_21829_1122.asm | ljhsiun2/medusa | 9 | 51961 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0.log_21829_1122.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r15
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x1e4a, %rdi
nop
nop
sub %rsi, %rsi
mov $0x6162636465666768, %r15
mov... |
data/sprites/sprite_mons.asm | genterz/pokecross | 28 | 51962 | SpriteMons:
; entries correspond to SPRITE_* constants past SPRITE_POKEMON
db UNOWN
db GEODUDE
db GROWLITHE
db WEEDLE
db SHELLDER
db ODDISH
db GENGAR
db ZUBAT
db MAGIKARP
db SQUIRTLE
db TOGEPI
db BUTTERFREE
db DIGLETT
db POLIWAG
db PIKACHU
db CLEFAIRY
db CHARMANDER
db JYNX
db STARMIE
db BULBASAUR
d... |
oeis/045/A045389.asm | neoneye/loda-programs | 11 | 51963 | <filename>oeis/045/A045389.asm
; A045389: Primes congruent to {2, 6} mod 7.
; Submitted by <NAME>(w1)
; 2,13,23,37,41,79,83,97,107,139,149,163,167,181,191,223,233,251,293,307,317,331,349,359,373,401,419,433,443,457,461,499,503,541,569,587,601,643,653,709,727,751,769,797,811,821,839,853,863,877,881,919,937,947,1021,1031... |
src/tutorialspoint.com/src/example17.asm | ishirshov/NASM-tutorial-for-Unix | 0 | 51964 | %include "defines.inc"
section .bss
res resb 1
section .data
msg db "The sum is:", 0x2, 0xA, 0xD
len equ $ - msg
section .text
global _start
_start:
mov ecx, '4'
sub ecx, '0'
mov edx, '5'
sub edx, '0'
call sum
mov [res], eax
sys_call SYS_WRITE, STDOUT, msg, len
... |
win64_examples/printf_1.asm | rgimad/fasm_programs | 8 | 51965 | <reponame>rgimad/fasm_programs
format PE64
entry start
include 'win64a.inc'
section '.code' code readable executable
start:
sub rsp, 40 ; allocate shadow space and alignment (32+8)
mov rcx, hello
mov rdx, [rsp]
call [printf]
call [getchar]
;mov rcx, hello
;mov rdx, [rsp]
;call [pr... |
src/tilesheet.asm | jardafis/CastleEscape | 1 | 51966 | public _tile0
section RODATA_5
;
; Include the auto generated tile data
;
_tile0:
IF !_ZXN
binary "sprite/ZXS_tilesheet.nxt"
ELSE
binary "sprite/ZXN_tilesheet.nxt"
tiles_end:
section RODATA_2
public tile_palette
public tile_palette_... |
Transynther/x86/_processed/AVXALIGN/_st_sm_/i7-7700_9_0x48.log_28_2092.asm | ljhsiun2/medusa | 9 | 51968 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r9
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x1c681, %rsi
lea addresses_D_ht+0x9c36, %rdi
clflush (%rsi)
nop
nop
nop
nop
xor $36829, %rbx
mov $24, %rcx
rep movsb
nop
nop
nop
nop
and $24997, %r9
lea addresses_WC_ht+0x19ad... |
Transynther/x86/_processed/P/_zr_/i7-7700_9_0x48_notsx.log_14_1854.asm | ljhsiun2/medusa | 9 | 51969 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/P/_zr_/i7-7700_9_0x48_notsx.log_14_1854.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r14
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x465f, %rax
nop
nop
nop
nop
and %r14, %r14
movw $0x6162, (%rax)
nop
n... |
test_t.asm | GkHabib/OS_Lab_project3 | 0 | 51971 |
_test_t: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "fcntl.h"
#define NUMOFCHILDS 10
int main(int argc, char const *argv[])
{
0: 8d 4c 24 04 lea 0x4(%esp),%ecx
4: 83 e4 f0 and $0xfffffff0,%esp
7: ff 71 fc pushl -0x4(%ecx)
... |
libmikeos/src.io/io_get_cpuid.asm | mynameispyo/InpyoOS | 0 | 51973 |
; @@@ void io_get_cpuid(unsigned long index, unsigned long *eax, unsigned long *ebx, unsigned long *ecx, unsigned long *edx);
section .text
use16
extern __heap_top
global _io_get_cpuid
_io_get_cpuid:
push bp
mov bp, sp
push di
mov eax, [bp + 4]
cpuid
mov di, [bp + 8] ; get pointer on the stack
or di, d... |
mem/dos/16bit/DosUnlockSeg.asm | prokushev/FamilyAPI | 1 | 51974 | ;/*!
; @file
;
; @ingroup fapi
;
; @brief DosUnlockSeg DOS wrapper
;
; (c) osFree Project 2022, <http://www.osFree.org>
; for licence see licence.txt in root directory, or project website
;
; This is Family API implementation for DOS, used with BIND tools
; to link required API
;
; @author <NAME> (<EMAI... |
compress.asm | neilbaldwin/PR8 | 8 | 51975 | ;
; Sequencer Pattern Compress/Decompress (RLE)
;
compress:
lda #WRAM_PATTERNS
jsr setMMC1r1
lda #<patterns
sta tmp0
lda #>patterns
sta tmp1
lda #<$7000
sta tmp2
lda #>$7000
sta tmp3
ldy #$00
lda #$FF
: sta (tmp2),y
iny
bne :-
ldx #$60 ;96 blocks
lda #$00
sta tmp4
: ldy #$00
lda (tmp0),y ;0?... |
libsrc/_DEVELOPMENT/target/zx/driver/terminal/zx_01_output_fzx_tty_z88dk/zx_01_output_fzx_tty_z88dk_stdio_msg_ictl.asm | jpoikela/z88dk | 640 | 51977 | <filename>libsrc/_DEVELOPMENT/target/zx/driver/terminal/zx_01_output_fzx_tty_z88dk/zx_01_output_fzx_tty_z88dk_stdio_msg_ictl.asm
SECTION code_driver
SECTION code_driver_terminal_output
PUBLIC zx_01_output_fzx_tty_z88dk_stdio_msg_ictl
EXTERN asm_vioctl_driver, asm_tty_reset, l_offset_ix_de
EXTERN zx_01_output_fzx_std... |
src/my_soft/spectrum/sped/sped54en/sped54en_paging.asm | chipsi007/zesarux | 0 | 51978 | ; SPED - SPectrum Ensamblador Desensamblador / SuPer Ensamblador Desensamblador
; Copyright (C) 1995 <NAME>
;
; This file is part of ZEsarUX.
;
; SPED is free software: you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foun... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_847.asm | ljhsiun2/medusa | 9 | 51979 | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r12
push %r8
push %rbx
push %rdi
// Faulty Load
lea addresses_PSE+0x12dbb, %rdi
nop
nop
nop
nop
nop
cmp %rbx, %rbx
vmovups (%rdi), %ymm2
vextracti128 $1, %ymm2, %xmm2
vpextrq $1, %xmm2, %r11
lea oracles, %rdi
and... |
oeis/069/A069754.asm | neoneye/loda-programs | 11 | 51980 | <filename>oeis/069/A069754.asm
; A069754: Counts transitions between prime and composite to reach the number n.
; Submitted by <NAME>
; 0,1,1,2,3,4,5,6,6,6,7,8,9,10,10,10,11,12,13,14,14,14,15,16,16,16,16,16,17,18,19,20,20,20,20,20,21,22,22,22,23,24,25,26,26,26,27,28,28,28,28,28,29,30,30,30,30,30,31,32,33,34,34,34,34,34... |
oeis/301/A301571.asm | neoneye/loda-programs | 11 | 51983 | <reponame>neoneye/loda-programs
; A301571: Number of vertices at distance 2 from a given vertex in the n-Keller graph.
; 0,10,29,84,247,734,2193,6568,19691,59058,177157,531452,1594335,4782982,14348921,43046736,129140179,387420506,1162261485,3486784420,10460353223,31381059630,94143178849,282429536504,847288609467,254186... |
programs/oeis/080/A080791.asm | karttu/loda | 0 | 51984 | <reponame>karttu/loda<filename>programs/oeis/080/A080791.asm
; A080791: Number of nonleading 0's in binary expansion of n.
; 0,0,1,0,2,1,1,0,3,2,2,1,2,1,1,0,4,3,3,2,3,2,2,1,3,2,2,1,2,1,1,0,5,4,4,3,4,3,3,2,4,3,3,2,3,2,2,1,4,3,3,2,3,2,2,1,3,2,2,1,2,1,1,0,6,5,5,4,5,4,4,3,5,4,4,3,4,3,3,2,5,4,4,3,4,3,3,2,4,3,3,2,3,2,2,1,5,4... |
source/Cosmos.Core.DebugStub/CmdMisc.asm | Geramy/Cosmos | 207 | 51985 | <reponame>Geramy/Cosmos<filename>source/Cosmos.Core.DebugStub/CmdMisc.asm
; Generated at 6/14/2016 12:11:29 PM
DebugStub_Ping:
mov byte AL, 0xD
Call DebugStub_ComWriteAL
DebugStub_Ping_Exit:
mov dword [static_field__Cosmos_Core_INTs_mLastKnownAddress], DebugStub_Ping_Exit
Ret
DebugStub_TraceOn:
mov dword [DebugSt... |
zombie.asm | cassianomaia/SO1-P2 | 0 | 51986 |
_zombie: file format elf32-i386
Disassembly of section .text:
00001000 <main>:
#include "stat.h"
#include "user.h"
int
main(void)
{
1000: 55 push %ebp
1001: 89 e5 mov %esp,%ebp
1003: 83 e4 f0 and $0xfffffff0,%esp
1006: 83 ec 10 ... |
programs/oeis/157/A157376.asm | neoneye/loda | 22 | 51987 | <reponame>neoneye/loda<filename>programs/oeis/157/A157376.asm
; A157376: a(n) = 6561*n^2 - 7732*n + 2278.
; 1107,13058,38131,76326,127643,192082,269643,360326,464131,581058,711107,854278,1010571,1179986,1362523,1558182,1766963,1988866,2223891,2472038,2733307,3007698,3295211,3595846,3909603,4236482,4576483,4929606,52958... |
forktest.asm | jieun-cloud/xv6-file | 1 | 51988 | <reponame>jieun-cloud/xv6-file<filename>forktest.asm<gh_stars>1-10
_forktest: file format elf32-i386
Disassembly of section .text:
00000000 <printf>:
#define N 1000
void
printf(int fd, const char *s, ...)
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 53 ... |
libsrc/gfx/wide/w_dcircle_square.asm | w5Mike/z88dk | 4 | 51989 | <filename>libsrc/gfx/wide/w_dcircle_square.asm
; Z88 Small C+ Graphics Functions
; Draw a circle on the Z88 map
; Adapted from my Spectrum Routine
; (C) 1995-1998 D.J.Morris
;
; HiRez, NO radius correction square pixels assumed
; Opt by Stefano, 2019: no table on stack, index register is now use... |
Transynther/x86/_processed/AVXALIGN/_ht_st_zr_un_/i9-9900K_12_0xa0_notsx.log_21829_1210.asm | ljhsiun2/medusa | 9 | 51990 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/AVXALIGN/_ht_st_zr_un_/i9-9900K_12_0xa0_notsx.log_21829_1210.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r8
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x12652, %r8
nop
nop
add $10051, %r12
mov (%r8), %rbp
n... |
GIOVANNI/gambatte/test/hwtests/window/on_screen/late_wx_ds_1.asm | ReallyEvilFish/1234 | 9 | 51991 | .size 8000
.text@48
jp lstatint
.text@100
jp lbegin
.data@143
c0
.text@150
lbegin:
ld a, 00
ldff(ff), a
ld a, 30
ldff(00), a
ld a, 01
ldff(4d), a
stop, 00
ld c, 44
ld b, 91
lbegin_waitly91:
ldff a, (c)
cmp a, b
jrnz lbegin_waitly91
xor a, a
ldff(40), a
ld a, 80
ldff(68), a
xor a, a
ldff(69), a
... |
base/ntos/ke/i386/callout.asm | 987432340/wrk-v1.2 | 1 | 51993 | title "Call Out to User Mode"
;++
;
; Copyright (c) Microsoft Corporation. All rights reserved.
;
; You may only use this code if you agree to the terms of the Windows Research Kernel Source Code License agreement (see License.txt).
; If you do not agree to the terms, do not use the code.
;
;
; Modul... |
programs/oeis/226/A226903.asm | karttu/loda | 0 | 51994 | ; A226903: Shiraishi numbers: a parametrized family of solutions c to the Diophantine equation a^3 + b^3 + c^3 = d^3 with d = c+1.
; 5,18,53,102,197,306,491,684,989,1290,1745,2178,2813,3402,4247,5016,6101,7074,8429,9630,11285,12738,14723,16452,18797,20826,23561,25914,29069,31770,35375,38448,42533,46002,50597,54486,5962... |
libsrc/_DEVELOPMENT/adt/b_vector/z80/asm_b_vector_push_back.asm | jpoikela/z88dk | 640 | 51995 |
; ===============================================================
; Mar 2014
; ===============================================================
;
; size_t b_vector_push_back(b_vector_t *v, int c)
;
; Append char to end of vector, return index of appended char.
;
; ======================================================... |
kernel/src/boot/mutiboot.asm | VenmoTools/OperatingSystem | 10 | 51996 | ;************************************************************
;* FileName : mutiboot *
;* Author : VenmoSnake *
;* ProjectName : boot *
;* Time : 2020/4/25 : 12:24 *
;*********... |
libsrc/games/mtx/joystick.asm | meesokim/z88dk | 0 | 51997 | ;
; Game device library for the Memotech MTX
; <NAME> - 2011
;
; $Id: joystick.asm,v 1.2 2015/01/19 01:32:44 pauloscustodio Exp $
;
PUBLIC joystick
KEYS:
defb 0
.joystick
;__FASTCALL__ : joystick no. in HL
ld a,l
ld hl,0
dec a
jr nz,no_cursor
; RIGHT stick
;xor a
FIRE:
ld a,$df ;... |
Transynther/x86/_processed/US/_ht_zr_/i3-7100_9_0xca_notsx.log_21829_1375.asm | ljhsiun2/medusa | 9 | 51998 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r14
push %r15
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x1b765, %rsi
lea addresses_WT_ht+0x17870, %rdi
nop
nop
nop
add $39812, %r14
mov $26, %rcx
rep movsw
nop
nop
nop
nop
nop
and $10653, %rbp
lea addresses_UC_ht+0x1... |
2. Big Number Multiplicative/2. Big Number Multiplicative/Source.asm | ShinoharaYuuyoru/Assembly-Language-Project | 0 | 51999 | <filename>2. Big Number Multiplicative/2. Big Number Multiplicative/Source.asm
.386
.model flat, stdcall
;include msvcrt.inc
includelib msvcrt.lib
scanf PROTO C :dword, :vararg
printf PROTO C :dword, :vararg
.data
szFmt db '%s', 0
szOut db '%s', 0ah, 0
FirNumM db 'Please input the first number:'
FirNum db 255 d... |
system.asm | palisv/x16-racer | 0 | 52001 | <reponame>palisv/x16-racer
.ifndef SYSTEM_ASM
SYSTEM_ASM=1
.include "system.inc"
.include "vera.inc"
;=================================================
;=================================================
;
; Random number generation
;
;-------------------------------------------------
;
; This random number generati... |
programs/oeis/109/A109238.asm | jmorken/loda | 1 | 52003 | ; A109238: a(n) = floor(n*(e^2+1)/2).
; 4,8,12,16,20,25,29,33,37,41,46,50,54,58,62,67,71,75,79,83,88,92,96,100,104,109,113,117,121,125,130,134,138,142,146,151,155,159,163,167,171,176,180,184,188,192,197,201,205,209,213,218,222,226
mov $3,$0
lpb $0
mul $0,8
mov $1,2
mul $1,$0
mod $0,2
add $1,7
div $1,81
lpe... |
external/source/shellcode/windows/x86/src/stager/stager_reverse_ipv6_tcp_nx.asm | loathsomeguy/metasploit-framework | 47 | 52004 | <reponame>loathsomeguy/metasploit-framework
;-----------------------------------------------------------------------------;
; Author: <NAME> (stephen_fewer[at]harmonysecurity[dot]com)
; Compatible: Windows 7, 2008, Vista, 2003, XP, 2000, NT4 - Assuming IPv6 is available
; Version: 1.0 (8 May 2011)
; Size: 298 bytes
; B... |
src/z80asm/dev/cpu/cpu_test_z180_err.asm | witchcraft2001/z88dk | 4 | 52005 | <filename>src/z80asm/dev/cpu/cpu_test_z180_err.asm
adc a', (hl) ; Error
adc a', (ix) ; Error
adc a', (ix+127) ; Error
adc a', (ix-128) ; Error
adc a', (iy) ; Error
adc a', (iy+127) ; Error
adc a', (iy-128) ... |
hexmain_asssign5delay.asm | GiantPanda0090/is1200_project | 0 | 52006 | <filename>hexmain_asssign5delay.asm<gh_stars>0
# hexmain.asm
# Written 2015-09-04 by <NAME>
# Copyright abandonded - this file is in the public domain.
.text
main:
li $a0,12 # change this to test different values
jal hexasc # call hexasc
nop # delay slot filler (just in case)
move $a0,$v0 # copy ret... |
programs/oeis/194/A194273.asm | jmorken/loda | 1 | 52007 | <reponame>jmorken/loda
; A194273: Concentric triangular numbers (see Comments lines for definition).
; 0,1,3,6,9,12,15,19,24,30,36,42,48,55,63,72,81,90,99,109,120,132,144,156,168,181,195,210,225,240,255,271,288,306,324,342,360,379,399,420,441,462,483,505,528,552,576,600,624,649,675,702,729,756,783,811
mov $2,$0
lpb $2... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_28_990.asm | ljhsiun2/medusa | 9 | 52008 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_28_990.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r8
push %r9
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0xc372, %r10
nop
nop
nop
sub %r12, %r12
mov (%r10), %r8d
nop
cmp $36336, %rax
lea addresses_WC... |
8085 Microprocessor/Assignment 3/sol3.asm | neeladripal/bcse-lab | 0 | 52010 | LXI H,2060H ; set up HL to point to address of N
MOV C,M ; transfer value of N in register C
MVI A,00 ; clear accumulator to store nth fibonacci number
MVI B,01 ; set B = 01H as the 2nd fibonacci number
CALL FIBONACCI ; compute the nth fibonacci number
STA 2050H ; ... |
1-source-files/main-sources/elite-missile.asm | markmoxon/disc-elite-beebasm | 14 | 52012 | <gh_stars>10-100
\ ******************************************************************************
\
\ DISC ELITE MISSILE SHIP BLUEPRINT FILE
\
\ Elite was written by <NAME> and <NAME> and is copyright Acornsoft 1984
\
\ The code on this site has been disassembled from the version released on Ian
\ Bell's personal websi... |
tools/yasm/tests/nasm/mem.asm | fasttr-org/ftr | 0 | 52013 | [BITS 16]
a32 mov ax, [eax]
mov ax, [eax]
mov ax, [di]
mov ax, [di-si+si]
mov ax, [bx-(bx-di)-2]
mov ax, [2*(bx+di)-bx-2*di]
mov ax, [2*(bx*2+di)-bx-2*bx-2*di]
mov ax, [2*(bx*2)-bx-2*bx+di]
mov ax, [(bx+di)*(bx+di)-bx*bx-2*bx*di-di*di+di]
mov ax, [(blah2-blah)*di]
blah
inc ax
blah2
mov ax, [(blah2-blah)*di]
[BITS 32]
m... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_2453.asm | ljhsiun2/medusa | 9 | 52014 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r14
push %r15
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x1a20, %rsi
lea addresses_WT_ht+0x1e2c0, %rdi
clflush (%rdi)
and %r10, %r10
mov $87, %rcx
rep movsl
nop
nop
dec %r14
lea addresses_A_ht+0x148c0, %r10
nop
nop
nop
inc %r15
and... |
Transynther/x86/_processed/AVXALIGN/_st_/i3-7100_9_0x84_notsx.log_21829_2127.asm | ljhsiun2/medusa | 9 | 52015 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %r8
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x12069, %r12
inc %r9
movw $0x6162, (%r12)
nop
nop
nop
nop
nop
lfence
lea addresses_normal_ht+0x9d29, %r13
clflush (%r13)
nop
nop
nop
nop
nop
inc %r8
mov (%r1... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.