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 |
|---|---|---|---|---|
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xa0.log_21829_1254.asm | ljhsiun2/medusa | 9 | 198949 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x2c92, %rbx
nop
nop
nop
nop
dec %r9
movb $0x61, (%rbx)
nop
nop
dec %rdi
lea addresses_UC_ht+0xf492, %rsi
lea addresses_normal_ht+0x1a649, %rdi
nop
nop
nop
inc %rax
mov $1... |
software/libs/printing.asm | Arkaeriit/asrm | 1 | 198950 | ;----------------------
;This lib contains some priting functions.
;It needs an implementation of printc
;it depends on math.asm and string.asm
;----------------------
;Print a string whose pointer is in R1 and whose length is in R2
label (print)
pushr R1
pushr R2
pushr R3 ;loop pointer
pushr R4 ;end l... |
ch03/p_code2.asm | zzb610/tinyc | 0 | 198951 | <reponame>zzb610/tinyc<gh_stars>0
; sum(1, 2)
var a,b,c
push 1
push 2
$sum
exit 0
FUNC @sum:
arg a, b
push a
push b
add
ret ~
ENDFUNC |
programs/oeis/079/A079505.asm | neoneye/loda | 22 | 198952 | ; A079505: The last number for which a determinant of base-n numbers is nonzero.
; 14,25,61,121,211,337,505,721,991,1321,1717,2185,2731,3361,4081,4897,5815,6841,7981,9241,10627,12145,13801,15601,17551,19657,21925,24361,26971,29761,32737,35905,39271,42841,46621,50617,54835,59281,63961,68881,74047,79465,85141,91081,97291... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_547.asm | ljhsiun2/medusa | 9 | 198953 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x1a261, %rsi
lea addresses_WC_ht+0x1c455, %rdi
nop
nop
dec %rbx
mov $98, %rcx
rep movsb
nop
nop
nop
xor $9366, %r12
lea addresses_D_ht+0x1b995, %rsi
lea addresses_UC_ht+0xc705, %... |
libsrc/_DEVELOPMENT/arch/sms/vdp/c/sdcc/sms_vdp_feature_disable.asm | jpoikela/z88dk | 640 | 198955 | <filename>libsrc/_DEVELOPMENT/arch/sms/vdp/c/sdcc/sms_vdp_feature_disable.asm<gh_stars>100-1000
; unsigned int sms_vdp_feature_disable(unsigned int features)
SECTION code_clib
SECTION code_arch
PUBLIC _sms_vdp_feature_disable
EXTERN asm_sms_vdp_feature_disable
_sms_vdp_feature_disable:
pop af
pop hl
p... |
Transynther/x86/_processed/NC/_zr_/i3-7100_9_0x84_notsx.log_21829_1777.asm | ljhsiun2/medusa | 9 | 198956 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r9
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0xe550, %r13
add %r14, %r14
mov $0x6162636465666768, %rdx
movq %rdx, %xmm3
vmovups %ymm3, (%r13)
nop
nop
nop
nop
and %rax, %rax
lea addresses_WT_ht+0x3bb0, %rsi
lea addresses_no... |
src/sm/randomizer/noflash.asm | ardnaxelarak/alttp_sm_combo_randomizer_rom | 0 | 198957 | ; Power Bomb explosion colors
org $888D85
db $01, $01, $00,
$02, $02, $00,
$03, $03, $00,
$04, $04, $00,
$05, $05, $00,
$06, $06, $00,
$07, $07, $00,
$08, $08, $00,
$09, $09, $00,
$08, $08, $00,
$07, $07, $00,
$06, $06, $00,
$05, $05, $00,
$04, $04, $00,
$03, $03, $00,
$02, ... |
boot/entry.asm | DarthChungo/ToniOS | 1 | 198958 | ;
; MIT License
; (c) <NAME>, 2020
;
; See attached LICENSE file for more info.
;
; boot/entry.asm:
; Defines a bridge way to call C code from within assembly
;
[bits 32]
global _start ; So nasm doesn't complaint about a missing _strart
_start:
[extern entry] ; Define calling point as an external symbol for the linke... |
lib/arch.asm | Kylogias/jdh-8 | 1 | 198959 | ; ARCHITECTURE CONSTANTS
; SPECIAL MEMORY ADDRESSES
@define ADDR_ROM 0x0000
@define ADDR_BANK 0x8000
@define ADDR_RAM 0xC000
@define ADDR_STACK 0xFEFF
; SPECIAL MEMORY-MAPPED REGISTERS
@define ADDR_MB 0xFFFA
@define ADDR_MBL 0xFFFA
@define ADDR_MBH 0xFFFB
@define ADDR_SP 0xFFFC
@define ADDR_SPL 0xFFFC
@define AD... |
vhdl-uprocessor/programs/primos.asm | hadryansalles/random-projects | 3 | 198960 | # r1 -> contador
# r2 -> parada
# r3 -> incremento para o contador
# r6 -> 1 registrador somente leitura nesse arquivo
# r7 -> endereco de retorno da funcao (usado pelo montador em JRL)
MOV 1, r6 # configuracao inicial
# Coloca os numeros em ordem na ram
MOV... |
programs/oeis/086/A086799.asm | karttu/loda | 1 | 198961 | <reponame>karttu/loda
; A086799: Replace all trailing 0's with 1's in binary representation of n.
; 1,3,3,7,5,7,7,15,9,11,11,15,13,15,15,31,17,19,19,23,21,23,23,31,25,27,27,31,29,31,31,63,33,35,35,39,37,39,39,47,41,43,43,47,45,47,47,63,49,51,51,55,53,55,55,63,57,59,59,63,61,63,63,127,65,67,67,71,69,71,71,79,73,75,75,79... |
oeis/024/A024642.asm | neoneye/loda-programs | 11 | 198963 | <filename>oeis/024/A024642.asm
; A024642: n written in fractional base 7/5.
; Submitted by <NAME>
; 0,1,2,3,4,5,6,50,51,52,53,54,55,56,530,531,532,533,534,535,536,5310,5311,5312,5313,5314,5315,5316,5360,5361,5362,5363,5364,5365,5366,53140,53141,53142,53143,53144,53145,53146,53620,53621,53622,53623,53624,53625
mov $3,1... |
programs/oeis/267/A267579.asm | karttu/loda | 0 | 198964 | <reponame>karttu/loda<gh_stars>0
; A267579: Middle column of the "Rule 167" elementary cellular automaton starting with a single ON (black) cell.
; 1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,... |
programs/oeis/040/A040209.asm | neoneye/loda | 22 | 198965 | <gh_stars>10-100
; A040209: Continued fraction for sqrt(224).
; 14,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28
mov $1,$0
cmp $0,0
sub $1,$0
gcd $1,2
add $1,12
add $0,$1
mul $0,$1... |
VirtualBox-5.0.0/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/CpuDxe/Ia32/IvtAsm.asm | egraba/vbox_openbsd | 1 | 198966 | TITLE IvtAsm.asm:
;------------------------------------------------------------------------------
;*
;* Copyright (c) 2008 - 2009, Intel Corporation. All rights reserved.<BR>
;* This program and the accompanying materials
;* are licensed and made available under the terms and conditions of the BSD License... |
Borland/CBuilder5/Source/RTL/source/memory/chkstk.asm | TrevorDArcyEvans/DivingMagpieSoftware | 1 | 198967 | ;[]-----------------------------------------------------------------[]
;| CHKSTK.ASM -- allocate local stack space |
;[]-----------------------------------------------------------------[]
;
; C/C++ Run Time Library - Version 10.0
;
; Copyright (c) 1991, 2000 by Inprise Corporation... |
oeis/110/A110858.asm | neoneye/loda-programs | 11 | 198968 | ; A110858: Triangle read by rows: number of order-preserving partial transformations (of an n-element chain) of width and waist both equal to r (width(alpha) = |Dom(alpha)| and waist(alpha) = max(Im(alpha)).
; Submitted by <NAME>
; 1,1,1,1,2,2,1,3,6,6,1,4,12,24,20,1,5,20,60,100,70,1,6,30,120,300,420,252,1,7,42,210,700,... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1405.asm | ljhsiun2/medusa | 9 | 198969 | .global s_prepare_buffers
s_prepare_buffers:
push %r8
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x158f2, %rsi
lea addresses_normal_ht+0x3dd2, %rdi
nop
add %rbx, %rbx
mov $75, %rcx
rep movsq
and $3010, %r8
lea addresses_UC_ht+0x17262, %r8
nop
nop
xor $34017, %rax
mov $0x616... |
oeis/212/A212586.asm | neoneye/loda-programs | 11 | 198970 | ; A212586: Nonnegative walks of length n on the x-axis starting at the origin using steps {1,0,-1} and visiting no point more than twice.
; Submitted by <NAME>
; 1,2,6,13,29,60,128,269,569,1198,2526,5321,11213,23624,49776,104873,220961,465546,980870,2066613,4354189,9173924,19328720,40724053,85802297,180778518,380885758... |
programs/oeis/089/A089083.asm | neoneye/loda | 22 | 198973 | <gh_stars>10-100
; A089083: T(n,k) = floor(k*n/2) * ceiling(k*n/2), triangular array read by rows, 1 <= k <= n.
; 0,1,16,4,81,400,16,256,1296,4096,36,625,3136,10000,24336,81,1296,6561,20736,50625,104976,144,2401,12100,38416,93636,194481,360000,256,4096,20736,65536,160000,331776,614656,1048576,400,6561,33124,104976
seq... |
unittests/32Bit_ASM/X87/D9_F6.asm | cobalt2727/FEX | 628 | 198974 | %ifdef CONFIG
{
"RegData": {
"MM4": ["0x8000000000000000", "0x4001"],
"MM5": ["0x0000000000000000", "0x0000"],
"MM6": ["0x8000000000000000", "0x4000"],
"MM7": ["0x8000000000000000", "0x3FFF"]
},
"Mode": "32BIT"
}
%endif
lea edx, [.data]
fld qword [edx + 8 * 0]
fld qword [edx + 8 * 1]
; Do S... |
programs/oeis/242/A242992.asm | neoneye/loda | 22 | 198975 | <reponame>neoneye/loda
; A242992: Least k>n/2, k<n, such that 2^(n-k)-1 divides 2^k-2, or 0 if no such k exists.
; 0,0,0,2,3,3,5,4,7,5,7,6,11,7,13,8,11,9,17,10,19,11,15,12,23,13,21,14,19,15,29,16,31,17,23,18,29,19,37,20,27,21,41,22,43,23,31,24,47,25,43,26,35,27,53,28,45,29,39,30,59,31,61,32,43,33,53,34,67,35,47,36,71,3... |
programs/oeis/062/A062148.asm | neoneye/loda | 22 | 198976 | ; A062148: Second (unsigned) column sequence of triangle A062138 (generalized a=5 Laguerre).
; 1,14,168,2016,25200,332640,4656960,69189120,1089728640,18162144000,319653734400,5928123801600,115598414131200,2365321396838400,50685458503680000,1135354270482432000,26538906072526848000,646300418472124416000,16372943934627151... |
oeis/315/A315546.asm | neoneye/loda-programs | 11 | 198977 | ; A315546: Coordination sequence Gal.5.294.2 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings.
; Submitted by <NAME>(s4)
; 1,6,11,17,23,29,35,41,46,52,58,63,69,75,81,87,93,98,104,110,115,121,127,133,139,145,150,156,162,167,173,179,185,19... |
libsrc/_DEVELOPMENT/target/zxn/driver/terminal/tshr_01_output_char_128/tshr_01_output_char_128_oterm_msg_scroll.asm | jpoikela/z88dk | 640 | 198978 | SECTION code_driver
SECTION code_driver_terminal_output
PUBLIC tshr_01_output_char_128_oterm_msg_scroll
EXTERN asm0_tshr_scroll_wc_up_pix
EXTERN zx_01_output_char_64_proc_stack_window_32
tshr_01_output_char_128_oterm_msg_scroll:
; enter : c = number of rows to scroll
; can use: af, bc, de, hl
;
... |
programs/oeis/157/A157732.asm | jmorken/loda | 1 | 198979 | ; A157732: a(n) = 388962*n^2 - 430416*n + 119071.
; 77617,814087,2328481,4620799,7691041,11539207,16165297,21569311,27751249,34711111,42448897,50964607,60258241,70329799,81179281,92806687,105212017,118395271,132356449,147095551,162612577,178907527,195980401,213831199,232459921,251866567,272051137,293013631,314754049,33... |
REALSPACE/Source/rutilso.asm | WhyWolfie/source2007 | 0 | 198980 | <gh_stars>0
.486p
.387
public _DotProductASM
public _TransformVertexASM
Data segment byte public '.rel' USE32
_retfloat dword ?
Data ends
_CODE segment para public USE32
_DotProductASM proc near ; ecx=vector edx=vector eax=return(float)
fld dword ptr [ecx]
fmul dword ptr [edx]
fld dword ptr [ecx+4]
fmul dwo... |
Second course/4th semester/Assembler/Lab11/CopyStr.asm | tekcellat/University | 0 | 198981 | <reponame>tekcellat/University
.386
.model FLAT, C
public CopyStr
.CODE
CopyStr:
PUSH EBP
0 MOV EBP, ESP
PUSH EBX
PUSH EDI
PUSH ESI
MOV ECX, [EBP + 16]
MOV EDI, [EBP + 12]
MOV ESI, [EBP + 8]
CLD
CMP ESI, EDI
JE EXIT
JA M1
STD
ADD EDI, ECX
ADD ESI, ECX
DEC EDI
DEC ESI
M1:
... |
programs/oeis/288/A288930.asm | neoneye/loda | 22 | 198983 | ; A288930: Positions of 0 in A288929; complement of A288931.
; 2,3,6,9,10,15,16,19,24,25,28,31,32,39,40,43,46,47,52,53,56,63,64,67,70,71,76,77,80,85,86,89,92,93,102,103,106,109,110,115,116,119,124,125,128,131,132,139,140,143,146,147,152,153,156,165,166,169,172,173,178,179,182,187,188,191,194,195,202,203,206,209,210,215... |
Transynther/x86/_processed/NC/_ht_st_zr_un_/i9-9900K_12_0xa0_notsx.log_21829_520.asm | ljhsiun2/medusa | 9 | 198984 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r9
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x174d7, %rdx
nop
nop
nop
cmp %rbp, %rbp
movups (%rdx), %xmm6
vpextrq $1, %xmm6, %rcx
nop
dec %rcx
lea addresses_UC_ht+0x11697, %rsi
lea addresses... |
newone/x.asm | alexeyneu/BlockZero | 0 | 198985 | <gh_stars>0
section .data
msg resb 32
db 10
hex_nums db '0123456789ABCDEF'
xb dq 0FF0FEFCE5A07E1CBh , 0EC0ACFBD7107A1BBh
xx resq 2
length dw 16
a1 equ 0
a2 equ 0
a3 equ 1
a4 equ 0
a equ a1 | (a2 << 2) | (a3 << 4) | (a4 << 6)
section .text
global main
main:
movdqu xmm1, [xb]
pshufd xmm0, xmm1, a
movdqu [xx... |
Asm/4.11.asm | cquca/csco_book_codes | 3 | 198986 | <filename>Asm/4.11.asm
#函数名称:$um(&X,N,$P,$N)
#函数描述:
#该子程序计算长度为N的数组X中所有正数的和以及所有负数的和
#调用示例:
la $a0, array
li $a1,4
jal sum
move $a0, $v0
#算法伪代码
v0=0;
v1=0;
while(a1>0)do
{
a1=a1-1;
t0=Mem(a0);
a0=a0+4;
If (t0 >0) then
v0=v0+t0;
else
v1=v1+t0 ;
}
Return |
iod/con2/ptr/scan.asm | olifink/smsqe | 0 | 198987 | ; Scan channel blocks V2.01 2000 <NAME>
;
; 2005-11-15 2.01 Tries to move main SBasic if it's outside of screen (MK)
;
; Registers:
; Entry Exit
; D0 error code
; A2 action routine
; A3 linkage block
;
section driver
include 'dev8_keys_con'
include 'dev8_keys_sys'
include 'dev8_keys_iod'
include... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_7_1830.asm | ljhsiun2/medusa | 9 | 198988 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %r9
push %rsi
lea addresses_normal_ht+0x1db70, %r9
nop
nop
nop
nop
nop
dec %r15
movw $0x6162, (%r9)
nop
nop
nop
xor %rsi, %rsi
pop %rsi
pop %r9
pop %r15
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r14
push %r... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca_notsx.log_84_569.asm | ljhsiun2/medusa | 9 | 198989 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %r8
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x14e9, %r15
nop
nop
nop
nop
cmp %rbp, %rbp
mov $0x6162636465666768, %rbx
movq %rbx, %xmm6
and $0xffffffffffffffc0, %r15
vmovaps %ymm6, (%r1... |
ComputerArchitecture/convert10to16.asm | mass1ve-err0r/unibi-OSS | 8 | 198990 | ;;
; Name: Convert DEC to HEX (convert10to16) in x86_64
; Author: <NAME>, <<EMAIL>>
;;
; system_consts (x86_64)
%define SYS_WRITE 1
%define SYS_READ 0
; fd consts
%define STDIN 0
%define STDOUT 1
; custom consts
%define NoError 0
%define NEWLINE 10
section .data
; errors
charError db "INPUT STRING CONTAINED ... |
Transynther/x86/_processed/NONE/_st_/i7-8650U_0xd2.log_2292_773.asm | ljhsiun2/medusa | 9 | 198991 | <filename>Transynther/x86/_processed/NONE/_st_/i7-8650U_0xd2.log_2292_773.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r14
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x9383, %rsi
lea addresses_UC_ht+0x172a3, %rdi
nop
nop
nop
dec %r13
mov $12, %rcx
rep movsq
nop
nop
dec %r10
lea ... |
dd/dev/open.asm | olifink/smsqe | 0 | 198992 | <reponame>olifink/smsqe
; Open DEV V2.00 1989 <NAME> QJUMP
section dev
xdef dev_open
xref iou_achb
xref iou_rchb
xref cv_streq
include 'dev8_keys_err'
include 'dev8_keys_sys'
include 'dev8_keys_chn'
include 'dev8_keys_iod'
include 'dev8_dd_dev_data'
;+++
; This routine expands the name given... |
programs/oeis/025/A025701.asm | neoneye/loda | 22 | 198993 | <reponame>neoneye/loda
; A025701: Index of 4^n within sequence of numbers of form 3^i*4^j.
; 1,3,6,10,16,23,31,40,51,63,76,90,106,123,141,160,181,203,226,250,276,303,331,361,392,424,457,492,528,565,603,643,684,726,769,814,860,907,955,1005,1056,1108,1161,1216,1272,1329,1388,1448,1509,1571,1635,1700,1766
mov $2,$0
add $... |
cards/bn4/ModCards/134-G005 FireSoul (0E).asm | RockmanEXEZone/MMBN-Mod-Card-Kit | 10 | 198994 | <reponame>RockmanEXEZone/MMBN-Mod-Card-Kit
.include "defaults_mod.asm"
table_file_jp equ "exe4-utf8.tbl"
table_file_en equ "bn4-utf8.tbl"
game_code_len equ 3
game_code equ 0x4234574A // B4WJ
game_code_2 equ 0x42345745 // B4WE
game_code_3 equ 0x42345750 // B4WP
card_type equ 1
card_id equ 125
card_no equ "... |
HlslDecompiler.Tests/ShaderAssembly/vs_normalize.asm | TBirdSoars/HlslDecompiler | 20 | 198995 | vs_3_0
def c0, 1, 0, 0, 0
dcl_position v0
dcl_position o0
dp3 r0.x, v0.xyz, v0.xyz
rsq r0.x, r0.x
mul o0.xyz, r0.xxx, v0.yxz
mov o0.w, c0.x
|
snesCcompilerCrashHandlerDemo/vectors.asm | Phillip-May/snes-homebrew | 11 | 198996 | <filename>snesCcompilerCrashHandlerDemo/vectors.asm<gh_stars>10-100
; SNES ROM startup code
;******************************************************************************
;*** Define a special section in case most of the code is not in bank 0. ***
;*****************************************************************... |
oeis/340/A340774.asm | neoneye/loda-programs | 11 | 198997 | <reponame>neoneye/loda-programs
; A340774: Dirichlet g.f.: Sum_{n>0} a(n)/n^s = zeta(s-1) * zeta(2*s-1).
; Submitted by <NAME>
; 1,2,3,6,5,6,7,12,12,10,11,18,13,14,15,28,17,24,19,30,21,22,23,36,30,26,36,42,29,30,31,56,33,34,35,72,37,38,39,60,41,42,43,66,60,46,47,84,56,60,51,78,53,72,55,84,57,58,59,90,61,62,84,120,65,66... |
Transynther/x86/_processed/NC/_zr_/i3-7100_9_0xca_notsx.log_21829_194.asm | ljhsiun2/medusa | 9 | 198998 | <filename>Transynther/x86/_processed/NC/_zr_/i3-7100_9_0xca_notsx.log_21829_194.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %r15
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x14f86, %rsi
lea addresses_normal_ht+0xec26, %rdi
add $46076, %r14
mov $11, %rcx
rep mo... |
examples/linkwdesc.asm | pahihu/t4 | 8 | 198999 | <filename>examples/linkwdesc.asm
; M.Bruestle 15feb2012
;
; Today I’ve written a little assembler program to confirm my assumption
; about the following (wrong) sentence in the ACWG (p 86):
; "When an communication instruction is executed the value of Wdesc, the
; pointer to the data and the message length are copi... |
Semester 3-1/CSE3108 Microprocessor Lab/Lab 02/190104037_Assignment02.asm | AKC23/AUST | 0 | 199000 | <reponame>AKC23/AUST
TITLE 8086 Code Template (for EXE file)
; AUTHOR emu8086
; DATE ?
; VERSION 1.00
; FILE ?.ASM
; Note: Set the delay to 100 ms in Emu 8086 and to 10 ms
; in I/O Emulation Kit to get best results for this sample
; ... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_910.asm | ljhsiun2/medusa | 9 | 199002 | <filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_910.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r14
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x126ab, %rsi
lea addresses_D_ht+0x317f, %rdi
nop
nop
nop
nop
nop
sub %r14, %r14
mov $69, %rcx
rep movsw
... |
kernel/asm/ticket.asm | madd-games/glidix | 98 | 199003 | <reponame>madd-games/glidix
; Glidix kernel
;
; Copyright (c) 2014-2017, <NAME>.
; All rights reserved.
;
; 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 above copyri... |
_incObj/6F SBZ Spin Platform Conveyor.asm | kodishmediacenter/msu-md-sonic | 9 | 199004 | ; ---------------------------------------------------------------------------
; Object 6F - spinning platforms that move around a conveyor belt (SBZ)
; ---------------------------------------------------------------------------
SpinConvey:
moveq #0,d0
move.b obRoutine(a0),d0
move.w SpinC_Index(pc,d0.w),d1
jsr ... |
Transynther/x86/_processed/NC/_zr_/i3-7100_9_0x84_notsx.log_301_1535.asm | ljhsiun2/medusa | 9 | 199005 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r13
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
// REPMOV
lea addresses_WC+0x1ffd7, %rsi
lea addresses_UC+0xe197, %rdi
sub %rbx, %rbx
mov $80, %rcx
rep movsw
nop
nop
xor %rsi, %rsi
// Store
... |
asm/por_fix_bosses_not_playing_music.asm | Iemnur/DSVEdit | 70 | 199006 | <reponame>Iemnur/DSVEdit
.nds
.relativeinclude on
.erroronwarning on
; Fixes the boss rush versions of certain bosses so they play the boss music when they're created.
; This is for the boss randomizer.
@Overlay119Start equ 0x02308EC0
@FreeSpace equ @Overlay119Start + 0x4C0
.open "ftc/overlay9_119", @Overlay119Start... |
programs/oeis/250/A250230.asm | karttu/loda | 0 | 199007 | <reponame>karttu/loda
; A250230: Number of length 3+1 0..n arrays with the sum of the cubes of adjacent differences multiplied by some arrangement of +-1 equal to zero.
; 8,27,52,89,132,187,248,321,400,491,588,697,812,939,1072,1217,1368,1531,1700,1881,2068,2267,2472,2689,2912,3147,3388,3641,3900,4171,4448,4737,5032,533... |
programs/oeis/153/A153643.asm | neoneye/loda | 22 | 199008 | <reponame>neoneye/loda
; A153643: Jacobsthal numbers A001045 incremented by 2.
; 2,3,3,5,7,13,23,45,87,173,343,685,1367,2733,5463,10925,21847,43693,87383,174765,349527,699053,1398103,2796205,5592407,11184813,22369623,44739245,89478487,178956973,357913943,715827885,1431655767,2863311533,5726623063,11453246125,2290649224... |
lib/core/stack/_float.asm | locodarwin/xc-basic3 | 11 | 199009 | PROCESSOR 6502
; Push immediate float on stack
; Expects 4 bytes, e. g pfloat 01,02,FE,FF
; TO ALLOW DIRECT COMPARISON OF NUMBERS
; IN FAC AND ON STACK, FLOATS ARE
; PUSHED IN REVERSE ORDER, M3-M2-M1-E
MAC pfloat ; @push
lda #${4}
pha
IF !FPUSH
lda #${3}
pha
lda #${2}
pha
lda #${1}
pha
ELSE
lda #${... |
Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca_notsx.log_21829_1708.asm | ljhsiun2/medusa | 9 | 199010 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r14
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x104db, %rbp
nop
nop
nop
nop
xor %rax, %rax
and $0xffffffffffffffc0, %rbp
movaps (%rbp), %xmm4
vpextrq $0, %xmm4, %r13
nop
nop
nop
nop
nop
and $42795, %r12
lea addresses_norm... |
src/base/f64_cmp.asm | rainer-erdmann/libm64 | 0 | 199011 | ;
; FILENAME : f64_cmp.asm
;
; DESCRIPTION :
; a set of comparisons safe against NAN
; assembly module written for MASM/NASM
;
; AUTHOR : <NAME>
;
; Copyright 2016-2019 <NAME>
;
; License: see accompanying file license.txt
;
; CHANGES :
;
; REF NO VERSION DATE WHO DETAIL
;
;
... |
programs/oeis/084/A084158.asm | jmorken/loda | 1 | 199012 | ; A084158: a(n) = A000129(n)*A000129(n+1)/2.
; 0,1,5,30,174,1015,5915,34476,200940,1171165,6826049,39785130,231884730,1351523251,7877254775,45912005400,267594777624,1559656660345,9090345184445,52982414446326,308804141493510,1799842434514735
mov $7,$0
mov $9,$0
lpb $9
clr $0,7
mov $0,$7
sub $9,1
sub $0,$9
cal... |
oeis/262/A262342.asm | neoneye/loda-programs | 11 | 199013 | <reponame>neoneye/loda-programs
; A262342: Area of Lewis Carroll's paradoxical F(2n+1) X F(2n+3) rectangle.
; Submitted by <NAME>(s1)
; 10,65,442,3026,20737,142130,974170,6677057,45765226,313679522,2149991425,14736260450,101003831722,692290561601,4745030099482,32522920134770,222915410843905,1527884955772562,10472279279... |
CISP 310/M4 - Basic Instructions/A4_Gas.asm | gb-camera/college-hw | 0 | 199014 | ; CISP 310 - <NAME>
; Assignment 4: Gas Mileage
; 10/11/2020
INCLUDE io.h
.DATA
tankCap DWORD ?
gasMile DWORD ?
prompt1 BYTE "Enter how many gallons of gas your car can hold.", 0
prompt2 BYTE "Enter how many miles your car can drive on a full tank.", 0
string BYTE 40 DUP (?)
resultLb BYTE ... |
boilerplate.asm | matthewtillett/z80-boilerplate | 1 | 199015 | <filename>boilerplate.asm
; ProgramName
; Description of program
; spanning multiple lines
; History
; ~~~~~~~
; v0.1 - 2017-11-25
; Initial release
;
; v0.2 - 2017-12-15
; - Bug fix print routine
; - Added hardware scrolling
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
; How to ... |
programs/oeis/155/A155020.asm | karttu/loda | 0 | 199016 | <filename>programs/oeis/155/A155020.asm
; A155020: a(0)=1, a(1)=1, a(2)=3; a(n) = 2*a(n-1) + 2*a(n-2) for n>2.
; 1,1,3,8,22,60,164,448,1224,3344,9136,24960,68192,186304,508992,1390592,3799168,10379520,28357376,77473792,211662336,578272256,1579869184,4316282880,11792304128,32217174016,88018956288,240472260608,6569824337... |
libsrc/target/tiki100/psg/get_psg.asm | ahjelm/z88dk | 640 | 199017 | ;
; TIKI-100 specific routines
; by <NAME>, Fall 2015
;
; int get_psg(int reg);
;
; Get a PSG register.
;
;
; $Id: get_psg.asm,v 1.2 2016-06-10 21:13:58 dom Exp $
;
SECTION code_clib
PUBLIC get_psg
PUBLIC _get_psg
get_psg:
_get_psg:
ld bc,$16
out (c),l
ld c,$17
in a,(c)
ld l,a
ret
|
6502EMU/dereferencer.asm | austinbentley/6502toAVR | 0 | 199018 | /*
* dereferencer.asm
*
* Created: 5/13/2018 12:35:43 AM
* Author: ROTP
*/
.MACRO dereferencer
;dereferencer:
dereferencer_SRAM_load:
; IF ZH <= HIGH SRAM_END_EMU then RAM
; ZH += HIGH(SRAM_START)
; load data into reg
; ZH -= HIGH(SRAM_START)
CPI ZH, HIGH(SRAM_END_EMU)+1
BRGE dereferencer_ROM_load
... |
example_04_player.asm | biermanncarl/cx16-concerto | 4 | 199019 | ; Copyright 2021 <NAME>
; Compile with: cl65 -t cx16 -o EXAMPLE04.PRG -C cx16-asm.cfg -u __EXEHDR__ "example_04_player.asm"
.zeropage
.include "concerto_synth/synth_zeropage.asm"
.code
jmp start
.include "concerto_player/concerto_player.asm"
.include "concerto_synth/x16.asm" ; get general X16 macros
start... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2677.asm | ljhsiun2/medusa | 9 | 199020 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r15
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x6920, %rsi
lea addresses_D_ht+0xad7e, %rdi
nop
nop
nop
sub $8368, %r13
mov $12, %rcx
rep movsb
nop
nop
nop
nop
and %r13, %r13
lea addresses_UC_ht+0xe8e0, %r15
inc %rdi
m... |
src/gdt.asm | solson/porcupine | 1 | 199021 | <reponame>solson/porcupine
bits 32
section .text
;;; loadGDT(gdtd:Pointer[GDTDescriptor])
global loadGDT
loadGDT:
push eax
mov eax, [esp+0x8] ; get the struct pointer
lgdt [eax] ; load the GDT
pop eax
;; Reload CS register containing code selector:
;; We can't directly... |
hello-world.asm | duckinator/200lx-music | 1 | 199023 | <reponame>duckinator/200lx-music<gh_stars>1-10
a 100
jmp 114 ; skip following data
; jmp to (256 + 7 + <length of this string>) converted to hex.
; `db 0d, 0a,` + `db 0d,0a,"$"` = 7
db 0d,0a,"Hello, world!"
db 0d,0a,"$"
; End of string marker above: "$"=24h
mov ah,9 ; Function 09 of Int 21h:
mov dx,102 ; DS:DX -> $... |
libsrc/enterprise/exos_create_channel_callee.asm | meesokim/z88dk | 0 | 199024 | ;
; Enterprise 64/128 specific routines
; by <NAME>, 2011
;
; exos_create_channel(unsigned char ch_number, char *device);
;
;
; $Id: exos_create_channel_callee.asm,v 1.4 2015/01/19 01:32:42 pauloscustodio Exp $
;
PUBLIC exos_create_channel_callee
PUBLIC ASMDISP_EXOS_CREATE_CHANNEL_CALLEE
exos_create_channel_callee:... |
BootloaderCorePkg/Library/AcpiInitLib/Ia32/S3Wake.nasm | elCaxper/slimbootloader | 1 | 199025 | ;; @file
; This is the assembly code for transferring to control to OS S3 waking vector
; for IA32 platform
;
; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
;
; SPDX-License-Identifier: BSD-2-Clause-Patent
;
;;
SECTION .text
global ASM_PFX(WakeUpBuffer)
ASM_PFX(WakeUpBuffer):
... |
libsrc/gfx/narrow/getx.asm | ahjelm/z88dk | 640 | 199027 | <filename>libsrc/gfx/narrow/getx.asm
INCLUDE "graphics/grafix.inc"
SECTION code_graphics
PUBLIC getx
PUBLIC _getx
EXTERN __gfx_coords
;
; $Id: getx.asm $
;
; ******************************************************************
;
; Get the current X coordinate of the graphics ... |
src/util/icon/gotoproc.asm | olifink/qspread | 0 | 199029 | * Sprite gotoproc
*
* Mode 4
* +----|---------------+
* - g gg ggg w w -
* |g g g ww ww |
* |g gg g wwwww |
* |g g g wwwww |
* | g g g wwwww |
* | wwwwwwwww |
* | wwwwwww |
* | wwwww |
* | www |
* | w |
* | |
* | ww ww w w |
* | w w w... |
src/sandbox/newsandbox.asm | rsouza01/asm_stepbystep | 0 | 199031 | section .data
section .text
global _start
_start:
nop
; Put your experiments between the two nops...
; Put your experiments between the two nops...
nop
section .bss
|
lubanturbo/src/main/cpp/include/simd/jiss2red-64.asm | skyNet2017/TakePhoto | 773 | 199033 | ;
; jiss2red-64.asm - reduced-size IDCT (64-bit SSE2)
;
; Copyright 2009 <NAME> <<EMAIL>> for Cendio AB
; Copyright 2009 <NAME>
;
; Based on
; x86 SIMD extension for IJG JPEG library
; Copyright (C) 1999-2006, MIYASAKA Masaru.
; For conditions of distribution and use, see copyright notice in jsimdext.inc
;
; This file ... |
programs/oeis/191/A191109.asm | neoneye/loda | 22 | 199034 | <filename>programs/oeis/191/A191109.asm
; A191109: a(1)=1, and if x is a term then 3x-1 and 3x+2 are terms too.
; 1,2,5,8,14,17,23,26,41,44,50,53,68,71,77,80,122,125,131,134,149,152,158,161,203,206,212,215,230,233,239,242,365,368,374,377,392,395,401,404,446,449,455,458,473,476,482,485,608,611,617,620,635,638,644,647,68... |
src/test.asm | eqv/recursive_disassembler | 1 | 199035 | <gh_stars>1-10
@start inc eax
push eax
jnz @start
jnz @cont
@loop push ebx
jmp @loop
db 0x0f, 0x04
@cont ret
add eax,1
|
gfx/routines.asm | ISSOtm/Aevilia-GB | 53 | 199036 | <gh_stars>10-100
SECTION "Graphic funcs", ROMX[$4000],BANK[1]
InitGBPalAndSryScreen::
ld a, $E4
ld [rBGP], a
ld [rOBP0], a
ld [rOBP1], a
ld hl, vFontTiles + $20 * VRAM_TILE_SIZE
ld de, v0Tiles0 + VRAM_TILE_SIZE
ld c, VRAM_TILE_SIZE
rst copy
ld a, %10000001
ld [rLCDC], a
ld a, 1
ld... |
libsrc/_DEVELOPMENT/stdio/z80/__stdio_verify_input.asm | jpoikela/z88dk | 640 | 199037 | <reponame>jpoikela/z88dk
SECTION code_clib
SECTION code_stdio
PUBLIC __stdio_verify_input
EXTERN error_eacces_mc, error_mc
EXTERN asm1_fflush_unlocked
__stdio_verify_input:
; Verify input from stream is possible
;
; enter : ix = FILE *
;
; exit : ix = FILE *
; carry set if problem with h... |
lib/am335x_sdk/ti/csl/arch/arp32/src/boot_arp32.asm | brandonbraun653/Apollo | 2 | 199038 | <filename>lib/am335x_sdk/ti/csl/arch/arp32/src/boot_arp32.asm
;/*
; * Copyright (C) 2014-2017 Texas Instruments Incorporated - http://www.ti.com/
; *
; * Redistribution and use in source and binary forms, with or without
; * modification, are permitted provided that the following conditions
; * are met:
; *
; * ... |
programs/oeis/188/A188221.asm | jmorken/loda | 1 | 199039 | <filename>programs/oeis/188/A188221.asm
; A188221: [nr+kr]-[nr]-[kr], where r=sqrt(5), k=1, [ ]=floor.
; 0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0... |
libsrc/_DEVELOPMENT/math/float/math48/c/sdcc_iy/cm48_sdcciy_log2_fastcall.asm | meesokim/z88dk | 0 | 199040 | <filename>libsrc/_DEVELOPMENT/math/float/math48/c/sdcc_iy/cm48_sdcciy_log2_fastcall.asm
; float log2(float x) __z88dk_fastcall
SECTION code_fp_math48
PUBLIC cm48_sdcciy_log2_fastcall
EXTERN cm48_sdcciyp_dx2m48, am48_log2, cm48_sdcciyp_m482d
cm48_sdcciy_log2_fastcall:
call cm48_sdcciyp_dx2m48
call am48_l... |
source/phase_edge_pull_cc.asm | stanford-mast/Grazelle-PPoPP18 | 19 | 199041 | <filename>source/phase_edge_pull_cc.asm
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Grazelle
; High performance, hardware-optimized graph processing engine.
; Targets a single machine with one or more x86-based sockets.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;... |
oeis/002/A002108.asm | neoneye/loda-programs | 11 | 199044 | <filename>oeis/002/A002108.asm
; A002108: 4th powers written backwards.
; Submitted by <NAME>(s1.)
; 1,61,18,652,526,6921,1042,6904,1656,1,14641,63702,16582,61483,52605,63556,12538,679401,123031,61,184491,652432,148972,677133,526093,679654,144135,656416,182707,18,125329,6758401,1295811,6336331,5260051,6169761,1614781,6... |
libsrc/_DEVELOPMENT/arch/sms/vram/c/sdcc/sms_memset_vram_callee.asm | jpoikela/z88dk | 640 | 199045 | <reponame>jpoikela/z88dk<gh_stars>100-1000
; void *sms_memset_vram(void *dst, unsigned char c, unsigned int n)
SECTION code_clib
SECTION code_arch
PUBLIC _sms_memset_vram_callee
EXTERN asm_sms_memset_vram
_sms_memset_vram_callee:
pop hl
pop de
dec sp
pop af
pop bc
push hl
jp asm_sms_memset... |
oeis/319/A319762.asm | neoneye/loda-programs | 11 | 199046 | ; A319762: Number of non-isomorphic intersecting set multipartitions (multisets of sets) of weight n with empty intersection.
; Submitted by <NAME>(l1)
; 1,0,0,0,0,0,1,1,4,9,24
mov $7,2
mov $9,$0
lpb $7
mov $0,$9
mov $6,0
sub $7,1
add $0,$7
trn $0,1
mov $2,1
mov $3,$0
mul $3,5
sub $3,1
lpb $3
m... |
engine/menus/delete_save.asm | Dev727/ancientplatinum | 28 | 199047 | _DeleteSaveData:
farcall BlankScreen
ld b, SCGB_DIPLOMA
call GetSGBLayout
call LoadStandardFont
call LoadFontsExtra
ld de, MUSIC_MAIN_MENU
call PlayMusic
ld hl, .Text_ClearAllSaveData
call PrintText
ld hl, .NoYesMenuHeader
call CopyMenuHeader
call VerticalMenu
ret c
ld a, [wMenuCursorY]
cp $1
ret z
far... |
oeis/087/A087131.asm | neoneye/loda-programs | 11 | 199048 | ; A087131: a(n) = 2^n*Lucas(n), where Lucas = A000032.
; Submitted by <NAME>
; 2,2,12,32,112,352,1152,3712,12032,38912,125952,407552,1318912,4268032,13811712,44695552,144637952,468058112,1514668032,4901568512,15861809152,51329892352,166107021312,537533612032,1739495309312
mov $3,2
lpb $0
sub $0,1
mov $2,$3
mul $... |
src/Shaders/Sdk/Direct3D11/BasicCompute11/BasicCompute11_Structured_Double.asm | tgjones/slimshader-cpp | 20 | 199050 | <reponame>tgjones/slimshader-cpp<filename>src/Shaders/Sdk/Direct3D11/BasicCompute11/BasicCompute11_Structured_Double.asm
//
// Generated by Microsoft (R) HLSL Shader Compiler 9.30.9200.16384
//
//
///
// Note: shader requires additional functionality:
// Double-precision floating point
//
//
// Buffer Definitions... |
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xa0_notsx.log_21829_1607.asm | ljhsiun2/medusa | 9 | 199052 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r8
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x17382, %rdx
nop
nop
nop
nop
xor %r14, %r14
mov $0x6162636465666768, %r9
movq %r9, %xmm5
movups %xmm5, (%rdx)
nop
nop
and $9578, %r8
lea addresses_WC_ht+0xb518, %rcx
nop
nop
no... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_130.asm | ljhsiun2/medusa | 9 | 199054 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r15
push %r8
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0xbce6, %rsi
lea addresses_A_ht+0x127e, %rdi
nop
nop
nop
nop
and $43467, %r11
mov $68, %rcx
rep movsw
nop
nop
nop
nop
xor %r15, %r15
lea addresses_D_ht+0x114e6, %rsi
lea ad... |
Transynther/x86/_processed/NONE/_xt_sm_/i7-8650U_0xd2.log_1371_737.asm | ljhsiun2/medusa | 9 | 199055 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %r8
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x1c994, %rcx
nop
nop
nop
nop
nop
cmp %r8, %r8
movb (%rcx), %bl
nop
nop
inc %rdi
lea addresses_A_ht+0xb494, %r15
nop
nop
nop
nop
cmp $20877, %rax
mov (%r15), %r10w
nop
nop
nop
... |
src/apple2enh/audio.asm | puzzud/retroleague | 4 | 199056 | <reponame>puzzud/retroleague
; apple2enh audio.asm
.import _InitializeMusicEngine
.export _InitializeAudio
.export _SoundKillAll
.exportzp Voice1ControlCache
.include "apple2.asm"
.segment "ZEROPAGE"
Voice1ControlCache:
.res 1
.segment "CODE"
;------------------------------------------------------------------... |
ffmpeg.js/libavcodec/x86/videodsp.asm | vivekjishtu/audioconverter.js | 82 | 199058 | ;******************************************************************************
;* Core video DSP functions
;* Copyright (c) 2012 <NAME> <<EMAIL>>
;*
;* This file is part of FFmpeg.
;*
;* FFmpeg is free software; you can redistribute it and/or
;* modify it under the terms of the GNU Lesser General Public
;* License as ... |
libsrc/graphics/kaypro/swapgfxbk.asm | jpoikela/z88dk | 640 | 199059 | <filename>libsrc/graphics/kaypro/swapgfxbk.asm
;
; Kaypro '84 pseudo graphics routines
; Version for the 2x3 graphics symbols
;
; <NAME> 2018
;
;
; Video memory paging.
;
;
; $Id: swapgfxbk.asm $
;
SECTION code_clib
PUBLIC swapgfxbk
PUBLIC _swapgfxbk
... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1131.asm | ljhsiun2/medusa | 9 | 199060 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r14
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0xe6a7, %rsi
lea addresses_UC_ht+0x11ca7, %rdi
nop
nop
cmp %r11, %r11
mov $83, %rcx
rep movsw
cmp %rsi, %rsi
lea addresses_WC_ht+0x14ca7, %rsi
nop
and %r14, %r1... |
Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0x48_notsx.log_21829_541.asm | ljhsiun2/medusa | 9 | 199062 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0x48_notsx.log_21829_541.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r15
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x11560, %rsi
lea addresses_A_ht+0x45a0, %rdi
nop
nop
nop
nop
nop
add $50220, %rd... |
oeis/345/A345340.asm | neoneye/loda-programs | 11 | 199064 | ; A345340: The number of squares with vertices from the vertices of the n-dimensional hypercube.
; Submitted by <NAME>
; 0,0,1,6,36,200,1120,6272,35392,200832,1145856,6566912,37779456,218050560,1262030848,7322034176,42570760192,247970693120,1446799212544,8453937692672,49463868522496,289761061240832,1699288462655488,997... |
src/binary_clock.asm | ovk/avr-binary-clock | 0 | 199067 | <filename>src/binary_clock.asm
.include "binary_clock.inc"
/********************************************************************************
* R A M
*******************************************************************************/
.DSEG
hours: .byte 1
minutes: .byte 1
seconds: .byte 1
/*****... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_725.asm | ljhsiun2/medusa | 9 | 199068 | <filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_725.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r13
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x1706a, %rcx
nop
and $55870, %r11
movups (%rcx), %xmm5
vpextrq $0, %xmm5, %rbp
sub %rbx, %rb... |
programs/oeis/143/A143939.asm | neoneye/loda | 22 | 199069 | <reponame>neoneye/loda<gh_stars>10-100
; A143939: Triangle read by rows: T(n,k) is the number of unordered pairs of vertices at distance k in the cycle C_n (1 <= k <= floor(n/2)).
; 1,3,4,2,5,5,6,6,3,7,7,7,8,8,8,4,9,9,9,9,10,10,10,10,5,11,11,11,11,11,12,12,12,12,12,6,13,13,13,13,13,13,14,14,14,14,14,14,7,15,15,15,15,15... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.