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 |
|---|---|---|---|---|
libsrc/_DEVELOPMENT/math/integer/fast/l_fast_mulu_64_64x64.asm | ahjelm/z88dk | 4 | 49898 | <reponame>ahjelm/z88dk
; 2016 aralbrec
; fast optimization not complete
SECTION code_clib
SECTION code_math
PUBLIC l_fast_mulu_64_64x64
EXTERN l0_fast_mulu_64_32x32
EXTERN l_fast_mulu_32_32x32
l_fast_mulu_64_64x64:
; 64-bit multiplication
; enter : +-------------------------------
; | ... |
oeis/003/A003481.asm | neoneye/loda-programs | 11 | 49899 | ; A003481: a(n) = 7*a(n-1) - a(n-2) + 5.
; 2,20,143,986,6764,46367,317810,2178308,14930351,102334154,701408732,4807526975,32951280098,225851433716,1548008755919,10610209857722,72723460248140,498454011879263,3416454622906706,23416728348467684,160500643816367087,1100087778366101930,7540113804746346428,5168070885485832307... |
oeis/324/A324580.asm | neoneye/loda-programs | 11 | 49900 | <filename>oeis/324/A324580.asm
; A324580: a(n) = n * A276086(n).
; 0,2,6,18,36,90,30,70,120,270,450,990,300,650,1050,2250,3600,7650,2250,4750,7500,15750,24750,51750,15000,31250,48750,101250,157500,326250,210,434,672,1386,2142,4410,1260,2590,3990,8190,12600,25830,7350,15050,23100,47250,72450,148050,42000,85750,131250,26... |
programs/oeis/155/A155661.asm | neoneye/loda | 22 | 49901 | <reponame>neoneye/loda
; A155661: 10^n-7^n+1.
; 1,4,52,658,7600,83194,882352,9176458,94235200,959646394,9717524752,98022673258,986158712800,9903110989594,99321776927152,995252438490058,9966767069430400,99767369486012794,998371586402089552
mov $1,10
pow $1,$0
mov $2,7
pow $2,$0
sub $1,$2
add $1,1
mov $0,$1
|
oeis/020/A020595.asm | neoneye/loda-programs | 11 | 49902 | ; A020595: Expansion of 1/((1-6x)(1-9x)(1-10x)).
; Submitted by <NAME>(s2)
; 1,25,421,5965,76741,929005,10791061,121699645,1342777381,14569879885,156038219701,1653799781725,17380932862021,181408804717165,1882561696208341,19442349988398205,199976918230722661,2049766874087336845,20947749526851028981,213528831702049245085... |
src/LKS/MC_SPRITE.asm | Kannagi/LKS | 6 | 49903 | <reponame>Kannagi/LKS
.MACRO LKS_SPRITE_DRAW
ldx LKS_SPRITE.OAM
lda LKS_SPRITE.X+($20*\1)
sta LKS_BUF_OAML+0,x
lda LKS_SPRITE.Y+($20*\1)
sta LKS_BUF_OAML+1,x
lda LKS_SPRITE.Tile+($20*\1)
sta LKS_BUF_OAML+2,x
lda LKS_SPRITE.Flip+($20*\1)
sta LKS_BUF_OAML+3,x
.ENDM
.MACRO LKS_SPRITE_INIT
rep #$20
... |
programs/oeis/163/A163943.asm | jmorken/loda | 1 | 49904 | <filename>programs/oeis/163/A163943.asm
; A163943: Third left hand column of triangle A163940.
; 0,3,17,52,121,240,428,707,1102,1641,2355,3278,4447,5902,7686,9845,12428,15487,19077,23256,28085,33628,39952,47127,55226,64325,74503,85842,98427,112346,127690,144553,163032,183227,205241,229180,255153,283272,313652,346411,38... |
oeis/000/A000352.asm | neoneye/loda-programs | 11 | 49905 | <reponame>neoneye/loda-programs
; A000352: One half of the number of permutations of [n] such that the differences have three runs with the same signs.
; Submitted by <NAME>
; 5,29,118,418,1383,4407,13736,42236,128761,390385,1179354,3554454,10696139,32153963,96592972,290041072,870647517,2612991141,7841070590,2352740609... |
gnutls/nettle/x86_64/fat/cpuid.asm | TheShellLand/crossover-source | 0 | 49906 | C x86_64/fat/cpuid.asm
ifelse(<
Copyright (C) 2015 <NAME>
This file is part of GNU Nettle.
GNU Nettle is free software: you can redistribute it and/or
modify it under the terms of either:
* the GNU Lesser General Public License as published by the Free
Software Foundation; either version 3 o... |
programs/oeis/029/A029609.asm | neoneye/loda | 22 | 49907 | ; A029609: Central numbers in the (2,3)-Pascal triangle A029600.
; 1,5,15,50,175,630,2310,8580,32175,121550,461890,1763580,6760390,26001500,100291500,387793800,1502700975,5834015550,22687838250,88363159500,344616322050,1345644686100,5260247409300,20583576819000,80619009207750,316026516094380,1239796332370260,4867348564... |
out/init.asm | harveydong/learning-xv6 | 0 | 49908 | <reponame>harveydong/learning-xv6
.fs/init: file format elf64-x86-64
Disassembly of section .text:
0000000000000000 <main>:
char *argv[] = { "sh", 0 };
int
main(void)
{
0: 55 push %rbp
int pid, wpid;
if(open("console", O_RDWR) < 0){
1: be 02 00 00 00 mov $0x2,%esi
... |
Esercizi/Esercizi LA e LW (somme di word e byte)/Somma byte di un vettore con LW.asm | lucafioravanti/MIPS | 0 | 49909 | <gh_stars>0
.data 0x10010402
vettore:
.byte 5, 4, 100, 3
fine_dati:
.text
la $t8, vettore # USATA PER LA CONDIZIONE DI FINE AREA DATI (FINE VETTORE, SENZA LUNGHEZZA ESPLICITA)
lb $t0, vettore # first word loaded
la $s0, fine_dati
li $t3, 0 # int sum
li $t4, 0 # array index
for_loop:
# USO ... |
stage1/stage1-quest.asm | devtedlee/gamification-assembly-tutorial | 0 | 49910 | %include "io64.inc"
section .text
global CMAIN
CMAIN:
;write your code here
mov al, [ea]
mov [a], al
mov ax, [eb]
mov [b], ax
mov eax, [ec]
mov [c], eax
mov rax, [ed]
mov [d], rax
;mov [d], [ed]
;question point: why this code now work?
;(error message - invalid combinat... |
projects/04/fill/Fill.asm | gongqingkui/Nand2TetrisStudy | 0 | 49911 | <reponame>gongqingkui/Nand2TetrisStudy<gh_stars>0
// This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by <NAME> Schocken, MIT Press.
// File name: projects/04/Fill.asm
// Implements: gongqingkui At 126.com
// Runs an infinite loop that listens to the keyboard input.
// Wh... |
Transynther/x86/_processed/NONE/_ht_zr_un_/i9-9900K_12_0xa0_notsx.log_21829_707.asm | ljhsiun2/medusa | 9 | 49912 | .global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r15
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0xd211, %rcx
nop
nop
nop
add $7732, %r14
mov (%rcx), %r9
nop
nop
nop
nop
nop
sub $18967, %rdi
lea addresses_A_ht+0x14499, %rsi
lea addresses_UC_ht+0x1b549, %rdi
clflush (%rdi)
... |
src/x86/sad_avx.asm | SmilingWolf/rav1e | 0 | 49913 | <reponame>SmilingWolf/rav1e<filename>src/x86/sad_avx.asm
;
; Copyright (c) 2016, Alliance for Open Media. All rights reserved
;
; This source code is subject to the terms of the BSD 2 Clause License and
; the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
; was not distributed with this source ... |
programs/oeis/014/A014742.asm | neoneye/loda | 22 | 49914 | ; A014742: Expansion of (1+x^2)/(1 - 2*x - 2*x^2 + x^3).
; 1,2,7,17,46,119,313,818,2143,5609,14686,38447,100657,263522,689911,1806209,4728718,12379943,32411113,84853394,222149071,581593817,1522632382,3986303327,10436277601,27322529474,71531310823,187271402993,490282898158,1283577291479,3360448976281,8797769637362,23032... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1067.asm | ljhsiun2/medusa | 9 | 49915 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r8
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x1834a, %r10
nop
nop
nop
nop
xor $30639, %rsi
movl $0x61626364, (%r10)
nop
nop
sub %r10, %r10
lea addresses_normal_ht+0xb8a, %r10
nop
nop
nop
sub %rax, %rax
movw $0x6162, (%r1... |
programs/oeis/057/A057029.asm | karttu/loda | 0 | 49916 | ; A057029: Central column of arrays in A057027 and A057028.
; 1,6,12,27,39,64,82,117,141,186,216,271,307,372,414,489,537,622,676,771,831,936,1002,1117,1189,1314,1392,1527,1611,1756,1846,2001,2097,2262,2364,2539,2647,2832,2946,3141,3261,3466,3592,3807,3939,4164,4302,4537,4681,4926,5076,5331,5487,5752,5914,6189,6357,6642... |
Library/DHCP/dhcpUtils.asm | steakknife/pcgeos | 504 | 49917 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) Geoworks 1995 -- All Rights Reserved
PROJECT: Socket
MODULE: DHCP
FILE: dhcpUtils.asm
AUTHOR: <NAME>, Jun 27, 1995
ROUTINES:
Name Description
---- -----------
GLB DHCPEntry Entry poi... |
Appl/GeoWrite/Document/documentPrint.asm | steakknife/pcgeos | 504 | 49918 | COMMENT @----------------------------------------------------------------------
Copyright (c) Berkeley Softworks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: GeoWrite
FILE: documentMisc.asm
REVISION HISTORY:
Name Date Description
---- ---- -----------
Tony 3/92 Initial version
DESCRIPT... |
Library/Spreadsheet/Ruler/rulerVert.asm | steakknife/pcgeos | 504 | 49919 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1991 -- All Rights Reserved
PROJECT: PC/GEOS
MODULE: rulerVert.asm
FILE: rulerVert.asm
AUTHOR: <NAME>, Sep 23, 1991
ROUTINES:
Name Description
---- -----------
DrawVerticalRuler Draw vert... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_531_1113.asm | ljhsiun2/medusa | 9 | 49920 | <reponame>ljhsiun2/medusa<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x208d, %rsi
lea addresses_A_ht+0xa75, %rdi
nop
nop
nop
nop
nop
xor %r10, %r10
mov $100, %rcx
rep movsq
nop
nop
nop
nop
inc %r12
lea ... |
oeis/256/A256647.asm | neoneye/loda-programs | 11 | 49921 | <filename>oeis/256/A256647.asm<gh_stars>10-100
; A256647: 27-gonal pyramidal numbers: a(n) = n*(n+1)*(25*n-22)/6.
; Submitted by <NAME>(s1.)
; 0,1,28,106,260,515,896,1428,2136,3045,4180,5566,7228,9191,11480,14120,17136,20553,24396,28690,33460,38731,44528,50876,57800,65325,73476,82278,91756,101935,112840,124496,136928,1... |
oeis/084/A084154.asm | neoneye/loda-programs | 11 | 49922 | ; A084154: Binomial transform of sinh(x)*cosh(sqrt(2)*x).
; Submitted by <NAME>
; 0,1,2,10,32,116,392,1352,4608,15760,53792,183712,627200,2141504,7311488,24963200,85229568,290992384,993509888,3392055808,11581202432,39540700160,135000393728,460920178688,1573679923200,5372879343616,18344157519872,62630871408640,213835170... |
asm/tests/manual/str_pt1.asm | ZopharsDomain/PCX86-JAVASCRIPT-jemul8 | 67 | 49923 | ;
; jemul8 - JavaScript x86 Emulator
; Copyright (c) 2012 http://ovms.co. All Rights Reserved.
;
; MODULE: String test suite (boot sector)
;
org 0
jmp 0x07C0:start
start:
cli
; Update DS & ES to be 7C0 instead of 0
push CS
pop DS
push CS
pop ES
; Create stack
mov ax, 0x0000
mov ss, ax
mov sp, 0... |
contrib/libs/openssl/asm/windows/crypto/bn/rsaz-x86_64.asm | ZhekehZ/catboost | 4 | 49924 | <reponame>ZhekehZ/catboost<filename>contrib/libs/openssl/asm/windows/crypto/bn/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... |
HW#4/HW#4_2.asm | SCGTall/Water | 1 | 49925 | <gh_stars>1-10
##############################################################################
# Program : HW#4_2 Programmer: <NAME>
# Due Date: 10/15/19 Last Modified:10/15/19
# Course: CS3340 Section:501
#############################################################################
# Description:
# Write a MIPS assemb... |
libs/kernel/src/asm_isr.asm | AlexandreRouma/MemeOS | 12 | 49927 | <filename>libs/kernel/src/asm_isr.asm
.align 4
.global _isr0
.global _isr1
.global _isr2
.global _isr3
.global _isr4
.global _isr5
.global _isr6
.global _isr7
.global _isr8
.global _isr9
.global _isr10
.global _isr11
.global _isr12
.global _isr13
.global _isr14
.global _isr15
.global _isr16
.global _isr17
.global _is... |
Object/Optimized/kernel/LazyLoading.asm | collinsmichael/spartan | 16 | 49928 | <gh_stars>10-100
; Listing generated by Microsoft (R) Optimizing Compiler Version 18.00.40629.0
TITLE C:\Users\cex123\Desktop\FYP\develop\spartan\Source\Kernel\Memory\Paging\LazyLoading.c
.686P
.XMM
include listing.inc
.model flat
INCLUDELIB OLDNAMES
EXTRN _set_cr3:PROC
END
|
tests/testdata/tbuilder-in-2-bad.asm | roycrippen/sicxe | 0 | 49929 | a START 0
b FLOAT
c ADDR A, X
d ADD #10
c WORD 0 . error: duplicate symbol
END a
|
oeis/090/A090586.asm | neoneye/loda-programs | 11 | 49930 | ; A090586: Denominator of Sum/Product of first n numbers.
; Submitted by <NAME>(s2)
; 1,2,1,12,8,240,180,1120,8064,725760,604800,79833600,68428800,830269440,10897286400,2615348736000,2324754432000,711374856192000,640237370572800,11585247657984000,221172909834240000,102181884343418880000,93666727314800640000,20681613391... |
engine/gfx/crystal_layouts.asm | Dev727/ancientplatinum | 28 | 49931 | GetMysteryGift_MobileAdapterLayout:
ld a, b
cp SCGB_RAM
jr nz, .not_ram
ld a, [wSGBPredef]
.not_ram
push af
farcall ResetBGPals
pop af
ld l, a
ld h, 0
add hl, hl
ld de, .dw
add hl, de
ld a, [hli]
ld h, [hl]
ld l, a
ld de, .done
push de
jp hl
.done
ret
.dw
dw MG_Mobile_Layout00
dw MG_Mobile_Layout0... |
code/skooter/init.asm | abekermsx/skooted | 3 | 49932 | <filename>code/skooter/init.asm
; Initializes skooter
init_skooter:
call fix_skooter
call patch_skooter
ret
; Fix the PONY CANYON INC. release
fix_skooter:
ld a,($4003)
cp $7d ; detect PONY CANYON INC. release
ret nz
ld hl,$4000 + $2af
ld de,$4000
... |
bootdict/x86/sys-upcase.asm | ikysil/ikforth | 8 | 49933 | <reponame>ikysil/ikforth
; Convert character in AL to upper case, only ASCII a-z characters are supported
LABEL UPCASE
CMP AL,'a'
JB SHORT @@UC ; jump if AH < 'a'
CMP AL,'z'
JA SHORT @@UC... |
programs/oeis/230/A230980.asm | neoneye/loda | 22 | 49934 | <reponame>neoneye/loda<filename>programs/oeis/230/A230980.asm
; A230980: Number of primes <= n, starting at n=0.
; 0,0,1,2,2,3,3,4,4,4,4,5,5,6,6,6,6,7,7,8,8,8,8,9,9,9,9,9,9,10,10,11,11,11,11,11,11,12,12,12,12,13,13,14,14,14,14,15,15,15,15,15,15,16,16,16,16,16,16,17,17,18,18,18,18,18,18,19,19,19,19,20,20,21,21,21,21,21,... |
PRG/prg019.asm | narfman0/smb3_pp1 | 0 | 49935 | ; Super Mario Bros. 3 Full Disassembly by Southbird 2012
; For more info, see http://www.sonicepoch.com/sm3mix/
;
; PLEASE INCLUDE A CREDIT TO THE SOUTHBIRD DISASSEMBLY
; AND THE ABOVE LINK SOMEWHERE IN YOUR WORKS :)
;
; Original disassembler source generated by DCC6502 version v1.4
; (With labels, comments, and some s... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_1093.asm | ljhsiun2/medusa | 9 | 49936 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r8
push %r9
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x111c7, %rsi
lea addresses_normal_ht+0xda47, %rdi
cmp $59660, %r14
mov $52, %rcx
rep movsl
nop
nop
sub $64734, %r9
lea addresses_WC_ht+0xc6f7, %rbp
nop
nop
cmp %... |
oeis/141/A141964.asm | neoneye/loda-programs | 11 | 49940 | ; A141964: Primes congruent to 25 mod 27.
; Submitted by <NAME>
; 79,241,349,457,619,673,727,997,1051,1213,1321,1429,1483,1699,1753,1861,2131,2239,2293,2347,2617,2671,2833,2887,3049,3319,3373,3643,3697,3967,4021,4129,4507,4561,4723,4831,4993,5101,5209,5479,5641,5749,5857,6073,6343,6397,6451,6829,6883,6991,7207,7369,747... |
software/pcx86/bdsrc/boot/boot.asm | fatman2021/basicdos | 59 | 49941 | ;
; BASIC-DOS Boot Code
;
; @author <NAME> <<EMAIL>>
; @copyright (c) 2020-2021 <NAME>
; @license MIT <https://basicdos.com/LICENSE.txt>
;
; This file is part of PCjs, a computer emulation software project at pcjs.org
;
BIOSEQU equ 1
include macros.inc
include bios.inc
include disk.inc
include devapi.... |
data/pokemon/dex_entries/poliwhirl.asm | AtmaBuster/pokeplat-gen2 | 6 | 49942 | db "TADPOLE@" ; species name
db "Though it is"
next "skilled at walk-"
next "ing, it prefers to"
page "live underwater"
next "where there is"
next "less danger.@"
|
programs/oeis/186/A186315.asm | jmorken/loda | 1 | 49943 | <filename>programs/oeis/186/A186315.asm
; A186315: Adjusted joint rank sequence of (f(i)) and (g(j)) with f(i) before g(j) when f(i)=g(j), where f and g are the squares and hexagonal numbers. Complement of A186316.
; 1,3,5,7,8,10,12,13,15,17,19,20,22,24,25,27,29,30,32,34,36,37,39,41,42,44,46,48,49,51,53,54,56,58,59,61... |
src/MFORTH/mforthwords/mforth.asm | malyn/MFORTH | 10 | 49944 | ; Copyright (c) 2009-2012, <NAME> <<EMAIL>>.
; All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice
; unmodified, this list... |
Transynther/x86/_processed/NC/_ht_zr_/i7-7700_9_0xca.log_21829_121.asm | ljhsiun2/medusa | 9 | 49945 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r8
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x13bf1, %rsi
lea addresses_WC_ht+0x11d71, %rdi
nop
nop
nop
sub $7504, %rax
mov $84, %rcx
rep movsw
nop
nop
nop
inc %r8
lea addresses_UC_ht+0xcff1, %rax
sub $33145, %rdi
mo... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_21829_668.asm | ljhsiun2/medusa | 9 | 49946 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_21829_668.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r8
push %rax
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x17e21, %r8
nop
nop
nop
nop
nop
xor %rax, %rax
mov $0x6162636465666768, %rdi
movq %rdi, %xmm6
mov... |
generated-src/win-x86_64/crypto/fipsmodule/md5-x86_64.asm | jylama99/aws-lc | 0 | 49947 | <filename>generated-src/win-x86_64/crypto/fipsmodule/md5-x86_64.asm
; This file is generated from a similarly-named Perl script in the BoringSSL
; source tree. Do not edit by hand.
default rel
%define XMMWORD
%define YMMWORD
%define ZMMWORD
%ifdef BORINGSSL_PREFIX
%include "boringssl_prefix_symbols_nasm.inc"... |
src/third_party/nasm/travis/test/xcrypt.asm | Mr-Sheep/naiveproxy | 2,219 | 49948 | ;Testname=test; Arguments=-fbin -oxcrypt.bin; Files=stdout stderr xcrypt.bin
; BR 2029829
bits 32
rep xstore
rep xcryptecb
rep xcryptcbc
rep xcryptctr
rep xcryptcfb
rep xcryptofb
rep montmul
rep xsha1
rep xsha256
xstore
xcryptecb
xcryptcbc
xcryptctr
xcryptcfb
xcryptofb
montmul
xsha1
xsha256
|
oeis/112/A112518.asm | neoneye/loda-programs | 11 | 49949 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A112518: Expansion of 1/(1-x+2x^3+x^4).
; Submitted by <NAME>
; 1,1,1,-1,-4,-7,-6,3,21,40,40,-5,-106,-226,-256,-39,519,1257,1591,592,-2441,-6880,-9655,-5365,10836,37026,57411,41104,-43784,-195632,-335251,-288787,146261,1012395,1925220,1921485,-249566,-5112401,-10880591,... |
programs/oeis/124/A124156.asm | neoneye/loda | 22 | 49950 | <reponame>neoneye/loda<gh_stars>10-100
; A124156: Thickness of complete graph K_n.
; 1,1,1,1,2,2,2,2,3,3,3,3,3,3,3,3,4,4,4,4,4,4,5,5,5,5,5,5,6,6,6,6,6,6,7,7,7,7,7,7,8,8,8,8,8,8,9,9,9,9,9,9,10,10,10,10,10,10,11,11,11,11,11,11,12,12,12,12,12,12,13,13,13,13,13,13,14,14,14,14,14,14,15,15,15,15,15,15
mov $1,$0
add $0,2
div... |
libsrc/_DEVELOPMENT/arch/zx/display/c/sccz80/zx_aaddr2saddr.asm | Frodevan/z88dk | 640 | 49951 |
; void *zx_aaddr2saddr(void *attraddr)
SECTION code_clib
SECTION code_arch
PUBLIC zx_aaddr2saddr
EXTERN asm_zx_aaddr2saddr
defc zx_aaddr2saddr = asm_zx_aaddr2saddr
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _zx_aaddr2saddr
defc _zx_aaddr2saddr = zx_aaddr2saddr
ENDIF
|
oeis/067/A067424.asm | neoneye/loda-programs | 11 | 49952 | <filename>oeis/067/A067424.asm<gh_stars>10-100
; A067424: Ninth column of triangle A067417.
; Submitted by <NAME>(s4)
; 1,11,297,8019,216513,5845851,157837977,4261625379,115063885233,3106724901291,83881572334857,2264802453041139,61149666232110753,1651040988266990331,44578106683208738937,1203608880446635951299,324974397... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_6_1119.asm | ljhsiun2/medusa | 9 | 49955 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_6_1119.asm
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %r13
push %r15
push %rcx
push %rsi
// Store
mov $0x14f4550000000d64, %r12
nop
nop
and $55529, %... |
programs/oeis/275/A275314.asm | neoneye/loda | 22 | 49956 | ; A275314: Euler's gradus ("suavitatis gradus", or degrees of softness) function.
; 1,2,3,3,5,4,7,4,5,6,11,5,13,8,7,5,17,6,19,7,9,12,23,6,9,14,7,9,29,8,31,6,13,18,11,7,37,20,15,8,41,10,43,13,9,24,47,7,13,10,19,15,53,8,15,10,21,30,59,9,61,32,11,7,17,14,67,19,25,12,71,8,73,38,11,21,17,16,79,9,9,42,83,11,21,44,31,14,89,10... |
oeis/123/A123748.asm | neoneye/loda-programs | 11 | 49957 | ; A123748: Denominators of partial sums of a series for sqrt(5).
; Submitted by <NAME>
; 1,5,25,5,125,3125,15625,78125,78125,390625,9765625,48828125,244140625,244140625,78125,6103515625,30517578125,152587890625,152587890625,762939453125,19073486328125,95367431640625,476837158203125,476837158203125,2384185791015625,2980... |
src/asm/fonts.asm | DNS-OARC/pplib | 1 | 49958 | ;###############################################################################
;# This file is part of "Patrick's Programming Library", Version 7 (PPL7).
;# Web: http://www.pfp.de/ppl/
;#
;# $Author$
;# $Revision$
;# $Date$
;# $Id$
;#
;###############################################################################
;#... |
Codes/sub programs/addition.asm | nikhilnayak98/MIPSProject | 0 | 49959 | <gh_stars>0
.data
dimension: .asciiz "Enter matrix dimension: "
enter_first: .asciiz "Enter first matrix:\n"
enter_second: .asciiz "Enter second matrix:\n"
show_first: .asciiz "First entered matrix:\n"
show_second: .asciiz "Second entered matrix:\n"
show_result: .asciiz "Result of matrix addition:\n"
spa... |
CSE341-BRACU-Microprocessors/Assignment-2(Lab-3)/task4.asm | AIM3r4j/BRACU | 0 | 49961 | <filename>CSE341-BRACU-Microprocessors/Assignment-2(Lab-3)/task4.asm
.MODEL SMALL
.STACK 100H
.DATA
;variables
.CODE
MAIN PROC
;initialize DS
MOV AX,@DATA
MOV DS,AX
; enter your code here
;Taking input of Uppercase letter
mov ah,1
int 21h
mov cl , al
;Next line without carriage r... |
oeis/131/A131269.asm | neoneye/loda-programs | 11 | 49962 | <gh_stars>10-100
; A131269: a(n) = 3*a(n-1) - 2*a(n-2) - a(n-3) + a(n-4) with n>3, a(0)=1, a(1)=2, a(2)=3, a(3)=6.
; 1,2,3,6,11,20,35,60,101,168,277,454,741,1206,1959,3178,5151,8344,13511,21872,35401,57292,92713,150026,242761,392810,635595,1028430,1664051,2692508,4356587,7049124,11405741,18454896,29860669,48315598,7817... |
project/src/Layer2Routines.asm | darenm/SpecNSpritePlayground | 1 | 49963 | <reponame>darenm/SpecNSpritePlayground
;--------------------------------------------------------
; Routines for working with the Layer2 Spectrum Screen
;--------------------------------------------------------
; UploadSprites:
; ; SpecBong sprite gfx does use the default palette: color[i] = convert8bitColorTo9bit(i);... |
Transynther/x86/_processed/NC/_ht_zr_/i9-9900K_12_0xca_notsx.log_21829_2016.asm | ljhsiun2/medusa | 9 | 49964 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r13
push %r8
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x159ff, %rdi
nop
nop
nop
nop
nop
sub $8473, %r13
mov $0x6162636465666768, %rcx
movq %rcx, %xmm3
and $0xffffffffffffffc0, %rdi
vmovntdq %ymm3, (%rdi)
nop
nop
nop
... |
x_girilene_kadar_topla.asm | Redwoodcutter/x8086_examples | 4 | 49965 | DATA SEGMENT
NUM1 DB ?
NUM2 DB ?
RESULT DB ?
ENDS
CODE SEGMENT
START:
MOV AX,DATA
MOV DS,AX
dongu:
MOV AH,1
INT 21H
CMP al,'x'
jz dongu2
SUB AL,30H
add NUM1,AL
loop dongu
dongu2:
mov al,0
ADD AL,NUM1
... |
programs/oeis/207/A207836.asm | jmorken/loda | 1 | 49966 | ; A207836: a(n) = n*A052530(n)/2.
; 0,3,16,75,336,1463,6240,26199,108640,445995,1815792,7341347,29505840,117982815,469672384,1862393775,7359403968,28991540051,113892526800,446305331451,1744950085648,6808253393415,26513475730464,103072540115975,400058834841120,1550464509091707,6000723890790832
lpb $0
sub $0,1
add $... |
programs/oeis/014/A014640.asm | karttu/loda | 0 | 49967 | ; A014640: Even heptagonal numbers (A000566).
; 0,18,34,112,148,286,342,540,616,874,970,1288,1404,1782,1918,2356,2512,3010,3186,3744,3940,4558,4774,5452,5688,6426,6682,7480,7756,8614,8910,9828,10144,11122,11458,12496,12852,13950,14326,15484,15880,17098,17514,18792,19228,20566,21022,22420,22896,24354,24850,26368,26884,2... |
Assembly/Heap/Heap.asm | detlefgrohs/C256-Foenix-FMX | 0 | 49968 | <gh_stars>0
;;; =========================================================================
;;; My Heap Management Code
;;; =========================================================================
IncludeUnitTests = true
TraceEnabled = true
HEAP_PAGE_START = $0F0000
HEAP_PAGE_END = $0FFFFF
TEXT_COLOR ... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1012.asm | ljhsiun2/medusa | 9 | 49969 | <filename>Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1012.asm
.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_UC_ht+0xdc47, %rbx
nop
nop
sub %rbp, %rbp
movups (%rbx), %xmm6
vpextrq $1, %xmm6, %r15
nop
nop
... |
programs/oeis/008/A008529.asm | karttu/loda | 0 | 49970 | <reponame>karttu/loda
; A008529: Coordination sequence for 4-dimensional face-centered cubic orthogonal lattice.
; 1,14,68,202,456,870,1484,2338,3472,4926,6740,8954,11608,14742,18396,22610,27424,32878,39012,45866,53480,61894,71148,81282,92336,104350,117364,131418,146552,162806,180220,198834,218688,239822,262276,286090,... |
unittests/ASM/H0F38/XX_1C.asm | cobalt2727/FEX | 628 | 49971 | %ifdef CONFIG
{
"RegData": {
"MM0": "0x0",
"MM1": "0x0101010101010101",
"MM2": "0x0101010101010101",
"MM3": "0x0100010001010100"
}
}
%endif
mov rdx, 0xe0000000
mov rax, 0x0000000000000000
mov [rdx + 8 * 0], rax
mov rax, 0xFFFFFFFFFFFFFFFF
mov [rdx + 8 * 1], rax
mov rax, 0x0101010101010101
mov [rdx... |
Examples/ch10/List.asm | satadriver/LiunuxOS_t | 0 | 49972 | TITLE Creating a Linked List (List.asm)
; This program shows how the STRUC directive
; and the REPT directive can be combined to
; create a linked list at assembly time.
; Last update: 8/16/01
INCLUDE Irvine32.inc
ListNode STRUCT
NodeData DWORD ?
NextPtr DWORD ?
ListNode ENDS
TotalNodeCount = 15
NUL... |
programs/oeis/235/A235382.asm | jmorken/loda | 1 | 49973 | <reponame>jmorken/loda
; A235382: a(n) = smallest number of unit squares required to enclose n units of area.
; 4,8,10,12,12,14,14,16,16,16,18,18,18,20,20,20,20,22,22,22,22,24,24,24,24,24,26,26,26,26,26,28,28,28,28,28,28,30,30,30,30,30,30,32,32,32,32,32,32,32,34,34,34,34,34,34,34,36,36,36,36,36,36,36,36,38,38,38,38,38,... |
programs/oeis/118/A118263.asm | karttu/loda | 0 | 49974 | ; A118263: a(3n) = 2^n, a(3n+1) = 3^n, a(3n+2) = 4^n.
; 1,1,1,2,3,4,4,9,16,8,27,64,16,81,256,32,243,1024,64,729,4096,128,2187,16384,256,6561,65536,512,19683,262144,1024,59049,1048576,2048,177147,4194304,4096,531441,16777216,8192,1594323,67108864,16384,4782969
sub $0,1
lpb $0,1
mov $3,$0
sub $0,3
mov $1,$3
add ... |
Source/drivers/wire1.asm | MarcusCemes/micro-210-project | 0 | 49975 | ; file: drivers/wire1.asm target: ATmega128L-4MHz-STK300
; Interface with the Dallas 1-wire(R) module
; === Definitionms === ;
.equ DQ_port = PORTB
.equ DQ_pin = DQ
.equ DS18B20 = 0x28
.equ readROM = 0x33
.equ matchROM = 0x55
.equ skipROM = ... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_745.asm | ljhsiun2/medusa | 9 | 49976 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %r14
push %r8
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x1ef45, %r14
clflush (%r14)
nop
nop
inc %r8
mov $0x6162636465666768, %rax
movq %rax, %xmm3
vmovups %ymm3, (%r14)
nop
nop
nop
and ... |
libsrc/gfx/narrow/stencil_render2.asm | Frodevan/z88dk | 4 | 49979 | ;
; z88dk GFX library
; Render the "stencil" - plot/unplot based version.
; Stefano - Jul 2017
;
; Render the "stencil".
; The dithered horizontal lines base their pattern on the Y coordinate
; and on an 'intensity' parameter (0..11).
; Basic concept by <NAME>
;
; Machine code version by <NAME>, 22/4/2009
;
; st... |
audio/music/gymleaderbattle.asm | opiter09/ASM-Machina | 1 | 49980 | Music_GymLeaderBattle_Ch1::
tempo 104
volume 7, 7
duty_cycle 3
vibrato 8, 3, 4
toggle_perfect_pitch
note_type 12, 11, 3
rest 6
octave 3
note F#, 1
note F_, 1
note E_, 1
note F_, 1
note E_, 1
note D#, 1
note E_, 1
note D#, 1
note D_, 1
note D#, 1
note D_, 1
note C#, 1
note D_, 1
note C#, 1
note C_... |
libsrc/_DEVELOPMENT/font/font_4x8/_font_4x8_screen80.asm | jpoikela/z88dk | 640 | 49982 | ; SCREEN-80
; (C)1984 <NAME>
;
; Source: https://github.com/mist64/80columns
SECTION rodata_font
SECTION rodata_font_4x8
PUBLIC _font_4x8_screen80
PUBLIC _font_4x8_screen80_end
_font_4x8_screen80:
BINARY "font_4x8_screen80.bin"
_font_4x8_screen80_end:
|
Library/Net/netDir.asm | steakknife/pcgeos | 504 | 49983 | <gh_stars>100-1000
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC/GEOS
MODULE: Net Library
FILE: netDir.asm
AUTHOR: <NAME>, Dec 29, 1992
ROUTINES:
Name Description
---- -----------
REVISION HIS... |
oeis/145/A145558.asm | neoneye/loda-programs | 11 | 49984 | ; A145558: Denominators of partial sums of a certain alternating series of inverse central binomial coefficients.
; Submitted by <NAME>
; 1,6,15,420,36,1386,36036,40040,6126120,2116296,255816,267711444,3346393050,1745944200,6850263420,14440355289360,1604483921040,3800093497200,2671465728531600,534293145706320,952435607... |
Projects/PJZ2/Greetz/SectionData_PublicData.asm | jonathanbennett73/amiga-pjz-planet-disco-balls | 21 | 49985 | <reponame>jonathanbennett73/amiga-pjz-planet-disco-balls<filename>Projects/PJZ2/Greetz/SectionData_PublicData.asm
*****************************************************************************
* Included at the end of the code section (for (pc) data)
**********************************************************************... |
Operating_Systems_CSE_2005/Printing_Characters_Lab_2/print_character.asm | aadhityasw/VIT-Labs | 2 | 49986 | [BITS 16]
[ORG 0x7C00]
MOV AL,65
CALL PrintCharacter
JMP $
PrintCharacter:
MOV AH,0x0E
MOV BH,0x00
MOV BL,0x07
INT 0x10
RET
TIMES 510-($-$$) db 0
DW 0xAA55
|
programs/oeis/108/A108229.asm | jmorken/loda | 1 | 49988 | <filename>programs/oeis/108/A108229.asm
; A108229: n occurs Lucas number L(n) times (A000204).
; 1,2,2,2,3,3,3,3,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8
add $0,2
mul $0,2
add $0,3
mul $0,24
mov $2,6
add $2,$0
mod $0,2
add $0,$2... |
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xca.log_10_861.asm | ljhsiun2/medusa | 9 | 49989 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r13
push %r15
push %r8
push %rax
push %rbp
push %rbx
// Store
lea addresses_US+0xa6de, %r10
nop
nop
sub %rbp, %rbp
mov $0x5152535455565758, %r13
movq %r13, %xmm4
vmovups %ymm4, (%r10)
no... |
programs/oeis/108/A108217.asm | karttu/loda | 0 | 49991 | ; A108217: a(n) = n! + (n-2)!.
; 1,1,3,7,26,126,744,5160,41040,367920,3669120,40279680,482630400,6266937600,87657292800,1313901388800,21009968179200,356995102464000,6423296495616000
gcd $2,$0
mov $3,$0
sub $3,2
fac $3
add $3,3
fac $2
div $2,2
mul $2,2
add $2,$3
mov $1,$2
sub $1,4
add $1,1
|
data/maps/objects/VermilionDock.asm | opiter09/ASM-Machina | 1 | 49992 | <gh_stars>1-10
VermilionDock_Object:
db $f ; border block
def_warps
warp 14, 0, 5, LAST_MAP
warp 14, 2, 1, SS_ANNE_1F
def_signs
def_objects
def_warps_to VERMILION_DOCK
|
Walk.asm | TomasOchoa/CSCI-231-Program7-DrunkardWalk | 0 | 49993 | <reponame>TomasOchoa/CSCI-231-Program7-DrunkardWalk
;// NAME: <NAME>
;// DATE: 12/10/15
;// Prof <NAME>
;// PROGRAM 7 (Modified Walk.asm Code)
;// Drunkard's Walk (Walk.asm)
;// Drunkard's walk program. The professor starts at
;// coordinates 25, 25 and wanders around the immediate area.
INCLUDE Irvine32.i... |
engine/battle/consume_held_item.asm | Dev727/ancientplatinum | 28 | 49994 | ConsumeHeldItem:
push hl
push de
push bc
ldh a, [hBattleTurn]
and a
ld hl, wOTPartyMon1Item
ld de, wEnemyMonItem
ld a, [wCurOTMon]
jr z, .theirturn
ld hl, wPartyMon1Item
ld de, wBattleMonItem
ld a, [wCurBattleMon]
.theirturn
push hl
push af
ld a, [de]
ld b, a
farcall GetItemHeldEffect
ld hl, Consumab... |
Dark soft/Carberp Botnet/source - absource/pro/all source/Worm/Worm/kkqvx.asm | ExaByt3s/hack_scripts | 3 | 49996 | .file "e:\lcc\include\stddef.h"
_$M0:
.file "e:\projects\progs\petrosjan\bjwj\worm\kkqvx.c"
.text
.file "e:\lcc\include\stdlib.h"
_$M1:
.text
.file "e:\lcc\include\safelib.h"
_$M2:
.file "e:\lcc\include\stdlib.h"
_$M3:
.file "e:\lcc\include\string.h"
_$M4:
.file "e:\lcc\include\stdarg.h"
_$M5:
... |
Transynther/x86/_processed/AVXALIGN/_ht_st_zr_un_/i9-9900K_12_0xa0.log_21829_631.asm | ljhsiun2/medusa | 9 | 49998 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x17025, %rax
nop
nop
nop
sub $52660, %rbp
movb $0x61, (%rax)
nop
nop
nop
nop
and %rbp, %rbp
lea addresses_WC_ht+0x18255, %r9
clflush (%r9)
add %rax, %rax
movl ... |
programs/oeis/318/A318236.asm | neoneye/loda | 22 | 49999 | <reponame>neoneye/loda
; A318236: a(n) = (3*2^(4*n+3) + 1)/5.
; 5,77,1229,19661,314573,5033165,80530637,1288490189,20615843021,329853488333,5277655813325,84442493013197,1351079888211149,21617278211378381,345876451382054093,5534023222112865485,88544371553805847757,1416709944860893564109,22667359117774297025741,362677745... |
src/stars/tests/tests/pseudoOps/beqz_bnez_test.asm | kevintmcdonnell/stars | 9 | 120000 | .text
main:
# Zero test
li $t0, 0
beqz $t0, branch
li $a0, 0
li $v0, 1
syscall
j next
branch:
li $a0, 1
li $v0, 1
syscall
next:
li $t0, 1
beqz $t0, branch_2
li $a0, 0
li $v0, 1
syscall
j next_2
branch_2:
li $a0, 1
li $v0, 1
syscall
next_2:
# Zero test
li $t0, 0
bnez $t0, branch_3
li $a0, 0
li $v0, 1
syscal... |
Day-38/char_find_in_word.asm | MasumBhai/50-Day-challenge-with-Assembly-Language | 1 | 120001 | <reponame>MasumBhai/50-Day-challenge-with-Assembly-Language<gh_stars>1-10
;problem - find char is present in given string or not
.model small
.stack 100h
include 'emu8086.inc'
.data
n_line db 0ah,0dh,"$"
str db 'ABCAD'
.code
main proc
mov ax,@data
mov ds,ax
mov es,ax
lea di,str
mov al,'D'
... |
libsrc/_DEVELOPMENT/sound/ay/c/sdcc_iy/ay_wyz_start_effect.asm | Frodevan/z88dk | 640 | 120002 | IF !__CPU_INTEL__ & !__CPU_GBZ80__
SECTION code_sound_ay
PUBLIC _ay_wyz_start_effect
PUBLIC _ay_wyz_start_effect_callee
EXTERN asm_wyz_start_effect
_ay_wyz_start_effect_callee:
pop bc ;return address
pop de ;channel
pop hl ;number
push bc
jr start_effect
;void ay_wyz_start_effect(int channel, int effect_n... |
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_229.asm | ljhsiun2/medusa | 9 | 120003 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x130a, %rsi
lea addresses_A_ht+0x1027a, %rdi
nop
nop
nop
dec %rdx
mov $90, %rcx
rep movsl
nop
cmp $58177, %rsi
lea addresses_normal_ht+0x3822, %r13
nop
nop
nop
xor $192... |
boot/boot.asm | stevehb/quarant-os | 0 | 120005 | <reponame>stevehb/quarant-os<filename>boot/boot.asm
;; Boot sector
;; Loads kernel from the disk into memory
;; Switches processor to 32-bit Protected Mode
;; Executes loaded kernel
[org 0x7C00]
[bits 16]
;; Memory offset where our kernel is located
KERNEL_OFFSET equ 0x1000
;; Save the boot drive number
mov [BOOT_DR... |
oeis/144/A144498.asm | neoneye/loda-programs | 11 | 120006 | ; A144498: Column 2 of array in A144502.
; Submitted by <NAME>
; 1,5,30,229,2165,24576,326515,4976315,85630914,1642623355,34762642871,804650577600,20224019536825,548535471681029,15969883030969470,496754110707779461,16441934503725675485,576991048929859964160,21399021201104749243099,836326710446071005267035,3435478008444... |
programs/oeis/221/A221574.asm | jmorken/loda | 1 | 120007 | <filename>programs/oeis/221/A221574.asm
; A221574: Number of 0..n arrays of length 3 with each element differing from at least one neighbor by something other than 1.
; 2,9,26,59,114,197,314,471,674,929,1242,1619,2066,2589,3194,3887,4674,5561,6554,7659,8882,10229,11706,13319,15074,16977,19034,21251,23634,26189,28922,31... |
oeis/046/A046173.asm | neoneye/loda-programs | 11 | 120009 | ; A046173: Indices of square numbers that are also pentagonal.
; Submitted by <NAME>
; 1,99,9701,950599,93149001,9127651499,894416697901,87643708742799,8588189040096401,841554882220704499,82463790268588944501,8080609891439495856599,791817305570802005002201,77590015336047156994359099,7603029685627050583442189501,7450193... |
oeis/138/A138380.asm | neoneye/loda-programs | 11 | 120010 | <filename>oeis/138/A138380.asm
; A138380: First differences of A138377.
; Submitted by <NAME>
; 1,2,-1,-2,-4,-8,4,8,16,32,-16,-32,-64,-128,64,128,256,512,-256,-512,-1024,-2048,1024,2048,4096,8192,-4096,-8192,-16384,-32768,16384,32768,65536,131072,-65536,-131072,-262144,-524288,262144,524288,1048576,2097152,-1048576,-20... |
lib/startup.asm | RockingShip/xtools-historic | 0 | 120011 | <filename>lib/startup.asm
#define REG_SP r15
#define REG_AP r14
#define REG_BPW r13
#define REG_4 r12
#define REG_1 r11
#define REG_0 r10
___START::
lda REG_SP,0
lda REG_BPW,2
lda REG_4,4
lda REG_1,1
lda REG_0,0
jsb __main
jsb _exit
sav_svc:
.dsw 1
_SVC::
stw r1,sav_svc
ldw r1,4(r15)
stw r1,lbl+1
lb... |
Transynther/x86/_processed/NONE/_st_/i7-7700_9_0x48.log_21829_1734.asm | ljhsiun2/medusa | 9 | 120012 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x100f, %rsi
lea addresses_WC_ht+0xf4cf, %rdi
nop
nop
nop
cmp $48859, %rbp
mov $73, %rcx
rep movsq
nop
nop
nop
nop
inc %r10
lea addresses_WT_ht+0xbb4f, %rcx
nop
nop
nop
nop
nop
inc ... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_907.asm | ljhsiun2/medusa | 9 | 120013 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0xbe81, %rdi
nop
sub %rcx, %rcx
mov $0x6162636465666768, %rax
movq %rax, (%rdi)
xor %rcx, %rcx
lea addresses_A_ht+0x1a117, %rax
nop
nop
nop
nop
sub $14000, %rdx
movw $0x6162, (%... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.