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 |
|---|---|---|---|---|
oeis/250/A250813.asm | neoneye/loda-programs | 11 | 52509 | <filename>oeis/250/A250813.asm
; A250813: Number of (1+1) X (n+1) 0..2 arrays with nondecreasing x(i,j)-x(i,j-1) in the i direction and nondecreasing min(x(i,j),x(i-1,j)) in the j direction.
; 36,100,225,441,784,1296,2025,3025,4356,6084,8281,11025,14400,18496,23409,29241,36100,44100,53361,64009,76176,90000,105625,12320... |
Patches/cpu_tech_cancel.asm | abitalive/SuperSmashBros | 4 | 52510 | // Super Smash Bros. random CPU tech and Z cancel demonstration
arch n64.cpu
endian msb
//output "", create
include "LIB/N64.inc"
origin 0x0
insert "LIB/Super Smash Bros. (U) [!].z64"
constant Random(0x80018994) // Random integer
constant ChanceForward(30) // Chance to tech roll forward
constant ChanceBackward(30)... |
src/z80asm/dev/z80asm_lib/ldir.asm | jpoikela/z88dk | 0 | 52511 | <reponame>jpoikela/z88dk
; Substitute for the z80 ldir instruction
; Doesn't emulate the flags correctly
SECTION code_crt0_sccz80
PUBLIC __z80asm__ldir
.__z80asm__ldir
push af
loop:
ld a,(hl)
ld (de),a
inc hl
inc de
dec bc
ld a,b
or c
jp nz,loop
pop af
ret
|
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48.log_21829_981.asm | ljhsiun2/medusa | 9 | 52513 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r15
push %r8
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x5e92, %rsi
lea addresses_UC_ht+0x7840, %rdi
nop
nop
nop
nop
add %r8, %r8
mov $115, %rcx
rep movsb
nop
nop
nop
xor $27192, %r15
lea addresses_WC_ht+0x20e4, %rsi... |
oeis/092/A092296.asm | neoneye/loda-programs | 11 | 52514 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A092296: a(n) = 3*n + A090193(n).
; Submitted by <NAME>
; 1,5,6,11,12,16,18,22,26,29,30,34,36,40,44,46,50,51,54,58,62,64,68,69,74,75,79,83,84,88,90,94,98,100,104,105,108,112,116,118,122,123,128,129,133,136,140,141,146,147,151
mov $1,1
mov $2,$0
lpb $0
add $1,$0
div... |
Laboratorio 5/ejercicio1/lab5-ejercicio1.asm | djob195/microprogramacion | 0 | 52516 | .model small
.stack
.data
nombre db 10,13, 'Ingresa tu nombre:', 10, 13, '$' ; Cadena que indica que muestre su nombre
mayuscula db 10,13, 'Su nombre en mayuscula es:', 10, 13, '$' ; Su nombre en mayuscula es
vtext db 100 dup('$') ; Declaracion de vector de 100 b
aux db ?; variable auxili... |
programs/oeis/008/A008579.asm | neoneye/loda | 22 | 52517 | <reponame>neoneye/loda<gh_stars>10-100
; A008579: Coordination sequence for planar net 3.6.3.6. Spherical growth function for a certain reflection group in plane.
; 1,4,8,14,18,22,28,30,38,38,48,46,58,54,68,62,78,70,88,78,98,86,108,94,118,102,128,110,138,118,148,126,158,134,168,142,178,150,188,158,198,166,208,174,218,1... |
programs/oeis/301/A301672.asm | karttu/loda | 0 | 52519 | <reponame>karttu/loda
; A301672: Coordination sequence for node of type V2 in "krr" 2-D tiling (or net).
; 1,4,8,13,17,20,25,30,33,37,42,46,50,54,58,63,67,70,75,80,83,87,92,96,100,104,108,113,117,120,125,130,133,137,142,146,150,154,158,163,167,170,175,180,183,187,192,196,200,204,208,213,217,220,225,230,233,237,242,246,... |
libsrc/osca/get_device_count.asm | meesokim/z88dk | 0 | 52522 | ;
; Old School Computer Architecture - interfacing FLOS
; <NAME>, 2011
;
; Get number of devices
;
; $Id: get_device_count.asm,v 1.2 2015/01/19 01:33:00 pauloscustodio Exp $
;
INCLUDE "flos.def"
PUBLIC get_device_count
get_device_count:
call kjt_get_device_info
ld l,b
ld h,0
ret
|
programs/oeis/245/A245415.asm | karttu/loda | 0 | 52524 | ; A245415: Number of nonnegative integers with property that their base 5/2 expansion (see A024632) has n digits.
; 5,10,25,60,150,375,940,2350,5875,14685,36715,91785,229465,573660,1434150,3585375,8963440,22408600,56021500,140053750,350134375,875335935,2188339840,5470849600,13677124000,34192810000,85482025000,213705062... |
editLoadSave.asm | neilbaldwin/Pulsar | 11 | 52525 | ;---------------------------------------------------------------
; LOADING and SAVING stuff
;---------------------------------------------------------------
;.zp
;rleSource: .RES 2
;rleDestination: .RES 2
;.ram
;rleMode: .RES 1
;rleTokenLength: .RES 1
;rleToken: .RES 8
;rleTokenBuffer: .RES 8
;chunkCount: .RE... |
oeis/179/A179607.asm | neoneye/loda-programs | 11 | 52528 | <reponame>neoneye/loda-programs
; A179607: Eight white kings and one red king on a 3 X 3 chessboard. G.f.: (1 + 2*x - 4*x^2)/(1 - 2*x - 8*x^2).
; Submitted by <NAME>(s3)
; 1,4,12,56,208,864,3392,13696,54528,218624,873472,3495936,13979648,55926784,223690752,894795776,3579117568,14316601344,57266143232,229065097216,91625... |
Examples/conversion-routines/bytebin2bcd.asm | agguro/linux-nasm | 6 | 52529 | <filename>Examples/conversion-routines/bytebin2bcd.asm
;name: bytebin2bcd.asm
;
;description: bytebin2bcd.packed: Branch free byte to packed bcd conversion.
; bytebin2bcd.unpacked: Byte to unpacked bcd conversion.
;
;use:
;packed bcd: mov rdi,hexadecimal
; call bytebin2bcd.packed... |
programs/oeis/171/A171971.asm | neoneye/loda | 22 | 52530 | <reponame>neoneye/loda<gh_stars>10-100
; A171971: Integer part of the area of an equilateral triangle with side length n.
; 0,1,3,6,10,15,21,27,35,43,52,62,73,84,97,110,125,140,156,173,190,209,229,249,270,292,315,339,364,389,416,443,471,500,530,561,592,625,658,692,727,763,800,838,876,916,956,997,1039,1082,1126,1170,121... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_588.asm | ljhsiun2/medusa | 9 | 52532 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r15
push %r9
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x1c521, %rcx
nop
nop
add %r12, %r12
movb $0x61, (%rcx)
nop
nop
sub $47101, %rcx
lea addresses_A_ht+0x19e7, %rsi
lea addresses_D_ht+0x773, %rdi
clflush (%rdi)
nop
nop
nop
nop
nop
cmp $653... |
libsrc/_DEVELOPMENT/l/sccz80/8-gbz80/l_glong.asm | ahjelm/z88dk | 640 | 52534 | ; Z88 Small C+ Run Time Library
; Long functions
;
SECTION code_clib
SECTION code_l_sccz80
PUBLIC l_glong
PUBLIC l_glonghlp
; Pick up long from (*hl)
.l_glonghlp
ld a,(hl)
inc hl
ld h,(hl)
ld l,a
;Fetch long dehl from (hl)
.l_glong
inc hl
inc hl
inc hl
ld d,(hl)
dec hl... |
smsq/atari/kbd/init.asm | olifink/smsqe | 0 | 52535 | ; SMSQ ATARI ST Keyboard Driver Initialisation
section init
xdef kbd_init
xref kbd_initi
xref kbd_int
xref kbd_mint
xref iou_lkvm
include 'dev8_keys_qdos_sms'
include 'dev8_keys_sys'
include 'dev8_keys_iod'
include 'dev8_keys_atari'
include 'dev8_smsq_kbd_keys'
kbd_init
jsr kbd_initi ; inistall all b... |
code/file/save-sheets.asm | abekermsx/skooted | 3 | 52537 | <filename>code/file/save-sheets.asm
save_sheets:
call clear_fcb
ld de,fcb
ld c,_FMAKE
call bdos_wrapper
or a
ret nz
call initialize_fcb
ld hl,SKOOTER.SHEETS
ld b,3
save_sheets_loop:
push bc
ld de,save_buffer
ld ... |
oeis/044/A044162.asm | neoneye/loda-programs | 11 | 52538 | <reponame>neoneye/loda-programs<filename>oeis/044/A044162.asm
; A044162: Numbers n such that string 3,3 occurs in the base 7 representation of n but not of n-1.
; Submitted by <NAME>(s2.)
; 24,73,122,168,220,269,318,367,416,465,511,563,612,661,710,759,808,854,906,955,1004,1053,1102,1151,1176,1249,1298,1347,1396,1445,14... |
programs/oeis/265/A265429.asm | karttu/loda | 1 | 52539 | <gh_stars>1-10
; A265429: Total number of ON (black) cells after n iterations of the "Rule 188" elementary cellular automaton starting with a single ON (black) cell.
; 1,3,5,9,13,18,23,30,37,45,53,63,73,84,95,108,121,135,149,165,181,198,215,234,253,273,293,315,337,360,383,408,433,459,485,513,541,570,599,630,661,693,725... |
libBareMetal.asm | ReturnInfinity/BareMetal-examples | 7 | 52540 | ; =============================================================================
; BareMetal -- a 64-bit OS written in Assembly for x86-64 systems
; Copyright (C) 2008-2018 Return Infinity -- see LICENSE.TXT
;
; Version 1.0
; =============================================================================
; Let nasm know ... |
programs/oeis/214/A214263.asm | karttu/loda | 0 | 52541 | <reponame>karttu/loda
; A214263: Expansion of f(x^1, x^7) in powers of x where f() is Ramanujan's general theta function.
; 1,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,... |
Driver/Printer/Fax/FaxPrint/faxprintStartPage.asm | steakknife/pcgeos | 504 | 52543 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) Geoworks 1994. All rights reserved.
GEOWORKS CONFIDENTIAL
PROJECT: Pasta
MODULE: Fax
FILE: faxprintStartPage.asm
AUTHOR: <NAME>, Apr 7, 1993
ROUTINES:
Name Description
---- -----------
INT Pri... |
配套代码/L042/L042/1.asm | zmrbak/ReverseAnalysis | 35 | 52544 | ; Listing generated by Microsoft (R) Optimizing Compiler Version 19.24.28117.0
TITLE C:\Users\libit\source\repos\L042\L042\L042.cpp
.686P
.XMM
include listing.inc
.model flat
INCLUDELIB LIBCMT
INCLUDELIB OLDNAMES
PUBLIC ?a@@3PAY1BE@BO@HA ; a
_BSS SEGMENT
?a@@3PAY1BE@BO@HA DD 01770H DUP (?) ; a
_BSS ENDS
C... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_972.asm | ljhsiun2/medusa | 9 | 52545 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r15
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0xb279, %rbx
nop
nop
nop
cmp $3863, %rax
mov $0x6162636465666768, %r9
movq %r9, %xmm2
movups %xmm2, (%rbx)
nop
nop
nop
nop
cmp $20333, %r10
lea addresses_A_ht+0x1e445,... |
SrcAll/V1_Footer.asm | mytechnotalent/c64-assembly | 2 | 52547 | <reponame>mytechnotalent/c64-assembly
ifdef BuildPCE
include "..\SrcPCE\V1_Footer.asm"
endif
ifdef BuildNES
include "..\SrcNES\V1_Footer.asm"
endif
ifdef BuildSNS
include "..\SrcSNS\V1_Footer.asm"
endif
ifdef BuildA52
include "..\SrcA52\V1_Footer.asm"
endif
ifdef BuildA80
includ... |
a001.asm | funkacer/ZX80 | 0 | 52548 | <gh_stars>0
DEVICE ZXSPECTRUM48
org $8000
jp start ; jump over data to code (extended immediate)
string:
db "hello"
STRING_LENGTH = 5
ROM_CLS = $0DAF ; ROM address for "Clear Screen" routine
COLOR_ATTR = $5800 ; start of color attribute memory
ENTER = $0D ; Cha... |
programs/oeis/227/A227347.asm | karttu/loda | 0 | 52549 | ; A227347: Number of lattice points in the closed region bounded by the graphs of y = (5/6)*x^2, x = n, and y = 0, excluding points on the x-axis.
; 0,3,10,23,43,73,113,166,233,316,416,536,676,839,1026,1239,1479,1749,2049,2382,2749,3152,3592,4072,4592,5155,5762,6415,7115,7865,8665,9518,10425,11388,12408,13488,14628,158... |
Design/translate.asm | aaiijmrtt/JUCSE | 6 | 52550 | <reponame>aaiijmrtt/JUCSE
; procedure to translate voltages to coordinates using a lookup table
; begin at 2200h
lxi h, 2510h
mov a, m; load most significant 3 bits of potentiometer value
ral
ral
ral
mov b, a
inx h
mov a, m; load most significant 3 bits of potentiometer value
xra b
ral
mov l, a
mvi h, 24h; lookup tabl... |
number_BCD.asm | tor4z/nasm_training | 0 | 52551 | <gh_stars>0
global _start
section .data
msg db 'The Sum is: '
msgLen equ $ - msg
num1 db '12345' ; ASCII number1
num2 db '23456' ; ASCII number2
sum db ' ' ; To store result with 5 space
section .text
_start:
mov ecx, 5 ; Loop 5 times
mov esi, 4 ; Pointing to the right most digit, shift 4
clc ; C... |
data/pokemon/dex_entries/surskit.asm | AtmaBuster/pokeplat-gen2 | 6 | 52553 | db "POND SKATER@" ; species name
db "It secretes a"
next "thick, sweet-"
next "scented syrup from"
page "the tip of its"
next "head. It lives on"
next "weed-choked ponds.@"
|
Appl/GeoWrite/Document/documentMergeScrap.asm | steakknife/pcgeos | 504 | 52554 | <gh_stars>100-1000
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: documentMergeScrap.asm
AUTHOR: <NAME>, Nov 2, 1992
ROUTINES:
Name Description
---- -----------
MergeScrapIni... |
Driver/Printer/Fax/CCom/ccomInfo.asm | steakknife/pcgeos | 504 | 52555 | <reponame>steakknife/pcgeos
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1990 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Printer/Fax/CCom
FILE: ccomInfo.asm
AUTHOR: <NAME>, April 26, 1991
REVISION HISTORY:
Name Date Description
----... |
programs/oeis/285/A285109.asm | neoneye/loda | 22 | 52556 | ; A285109: a(n) = n multiplied by its smallest prime factor; a(1) = 1.
; 1,4,9,8,25,12,49,16,27,20,121,24,169,28,45,32,289,36,361,40,63,44,529,48,125,52,81,56,841,60,961,64,99,68,175,72,1369,76,117,80,1681,84,1849,88,135,92,2209,96,343,100,153,104,2809,108,275,112,171,116,3481,120,3721,124,189,128,325,132,4489,136,207,... |
programs/oeis/025/A025722.asm | karttu/loda | 0 | 52558 | <reponame>karttu/loda
; A025722: Index of 7^n within sequence of numbers of form 4^i*7^j.
; 1,3,6,11,17,25,34,44,56,69,84,100,117,136,156,178,201,225,251,278,307,337,368,401,435,471,508,546,586,627,670,714,759,806,854,904,955,1007,1061,1116,1173,1231,1290,1351,1413,1477,1542,1608,1676,1745,1816,1888
mov $2,$0
mov $3,$... |
oeis/211/A211620.asm | neoneye/loda-programs | 11 | 52559 | <reponame>neoneye/loda-programs
; A211620: Number of ordered triples (w,x,y) with all terms in {-n,...-1,1,...,n} and -1<=2w+x+y<=1.
; Submitted by <NAME>
; 0,2,16,38,76,122,184,254,340,434,544,662,796,938,1096,1262,1444,1634,1840,2054,2284,2522,2776,3038,3316,3602,3904,4214,4540,4874,5224,5582,5956,6338,6736,7142,7564... |
data/pokemon/base_stats/gorebyss.asm | AtmaBuster/pokeplat-gen2 | 6 | 52560 | <reponame>AtmaBuster/pokeplat-gen2
db 0 ; species ID placeholder
db 55, 84, 105, 52, 114, 75
; hp atk def spd sat sdf
db WATER, WATER ; type
db 60 ; catch rate
db 178 ; base exp
db NO_ITEM, DEEPSEASCALE ; items
db GENDER_F50 ; gender ratio
db 20 ; step cycles to hatch
INCBIN "gfx/pokemon/gorebyss... |
src/port/RL78/CLANG/rltos_scheduler_asm.asm | wraydev/rltos | 0 | 52562 | <filename>src/port/RL78/CLANG/rltos_scheduler_asm.asm<gh_stars>0
; rltos_kernel.asm
; @brief assembly code for CLANG compiler of RLTOS kernel.
; @details
; Contains the following functions:
; - void Rltos_enter_first_task(void);
; - void Rltos_yield(void);
; - void Rltos_tick(void);
; Global variables required by k... |
build/win32/BHAPI_VCC/Debug/List.asm | stasinek/BHAPI | 3 | 52564 | <filename>build/win32/BHAPI_VCC/Debug/List.asm
; Listing generated by Microsoft (R) Optimizing Compiler Version 13.10.3077
; Generated by VC++ for Common Language Runtime
.file "\Documents and Settings\stasiek.TC12\My Documents\prc++\x86_libraries\Bhapi\src\kits\support\List.cpp"
.global
.global
.bss
.local ,4
.lo... |
mms_exploit/qmg_files/code_exec_v2/poc.asm | googleprojectzero/SkCodecFuzzer | 289 | 52565 | <filename>mms_exploit/qmg_files/code_exec_v2/poc.asm
;
; Samsung Qmage codec exploit proof-of-concept for executing an arbitrary
; command on a remote affected device via an MMS processed by the default
; Samsung Messages app.
;
; Author: <NAME>, Google Project Zero
; Date: August 2020
; Bug: CVE-2020-8899 (cra... |
P5/P5Judger - random testpoints/mips_code.asm | flyinglandlord/BUAA-CO-2021 | 5 | 52566 | <reponame>flyinglandlord/BUAA-CO-2021
ori $1, $0, 104
ori $2, $0, 120
ori $3, $0, 8
ori $31, $0, 100
addu $3,$1,$4
jal subtest1
nop
back1:
addu $3,$31,$4
jal subtest2
nop
back2:
addu $0,$0,$4
jal subtest3
nop
back3:
addu $2,$1,$4
jal subtest4
nop
back4:
addu $3,$0,$4
jal subtest5
nop
back5:
addu $2,$31,$4
jal subtest6
... |
c2t1.asm | jibsen/com2text | 2 | 52567 | ;;
;; c2t1 -- converts a .com file into an executable text file
;;
;; Optimized with respect to the decoder size
;;
;; Copyright 2000-2015 <NAME>
;;
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
;; You may obtain a copy of the Li... |
Win32.Carberp.b/source - absource/pro/all source/bootkit/BKGen/i386/vbs16.asm | 010001111/Vx-Suites | 2 | 52568 | <filename>Win32.Carberp.b/source - absource/pro/all source/bootkit/BKGen/i386/vbs16.asm
;//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
;// BK initial loader stub. Version 2.9.2
;//
;// module: vbs16.asm
;// $Revision: 43 $
;// $Date: 2012-05-07 1... |
Programs/Source/conditionalJumpTest.asm | JetStarBlues/BenEater_CPU | 4 | 52569 | <reponame>JetStarBlues/BenEater_CPU
// Description:
// OUT = 0, 5, 10, ... 245, 255, 255, 245, ... 5, 0
// https://youtu.be/Zg1NdPKoosU
// Load increment value
LDI 5 // A = X, increment value
STA 15 // M[Y] = X
LDI 0 // A = 0, initial value
// Increase
OUT
ADD 15 // A += M[15]
JC 7 // if overflows, star... |
Library/Trans/SSheet/Lotus123/Import/importTraverseTree.asm | steakknife/pcgeos | 504 | 52571 | <gh_stars>100-1000
COMMENT @-----------------------------------------------------------------------
Copyright (c) Geoworks 1991 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: importTraverseTree.asm
AUTHOR: Cheng, 10/91
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:... |
string/s012.asm | czfshine/assembly-exercise | 1 | 52573 | <reponame>czfshine/assembly-exercise
; 8086 assembly file
; by:czfshine
; date: 2018/04/06 09:41:13
;已知数组A包含15个互不相等的整数,数组B包含20个互不相等的整数。
;试编制一个程序,把既在A中又在B中出现的整数存放于数组C中。
;算法复杂度可达nlogn,但是需要排序函数(todo),所以改用n^2的算法
;显然B比较大,所以从B取数与a比较即可
;还有可以用bitmap(todo),复杂度n,但是空间复杂度太高(题目说互不相同emmmmmmm)
; The Main Data segment
DATA SEGMEN... |
source/main/evaluate/binary/compare.asm | paulscottrobson/6502-basic | 3 | 52574 | <reponame>paulscottrobson/6502-basic
; ************************************************************************************************
; ************************************************************************************************
;
; Name: comparison.asm
; Purpose: Binary Compare Routines
; Created: 22nd Febru... |
Transynther/x86/_processed/NONE/_xt_sm_/i7-8650U_0xd2.log_72_634.asm | ljhsiun2/medusa | 9 | 52575 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r14
push %r8
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x1ded0, %rsi
lea addresses_D_ht+0xbef0, %rdi
nop
nop
nop
nop
sub %r12, %r12
mov $7, %rcx
rep movsb
xor $31079, %r8
lea addresses_WC_ht+0x88f0, %rsi
lea addresses_A_ht+0x1ca47, ... |
Appl/Art/Decks/GeoDeck/LCEagle.asm | steakknife/pcgeos | 504 | 52576 | LCEagle label byte
word C_BLACK
Bitmap <71,100,BMC_PACKBITS,BMF_4BIT or mask BMT_MASK>
db 0x00, 0x1f, 0xfa, 0xff, 0x00, 0xf0
db 0x01, 0xdd, 0xd0, 0xe1, 0x00, 0x01, 0xdd, 0xd0
db 0x00, 0x7f, 0xfa, 0xff, 0x00, 0xfc
db 0x01, 0xd0, 0x0b, 0xfe, 0xbb, 0x03, 0xfb, 0xfb,
0xbb, 0xff, 0xfb, 0xbb, 0x00, 0xbf, 0xef... |
Working Disassembly/Levels/MGZ/Misc Object Data/Map - Floating Platform.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 5 | 52578 | dc.w word_25656-Map_MGZFloatingPlatform
word_25656: dc.w 8 ; DATA XREF: ROM:00025654o
dc.b $DC, $D, 0, 0, $FF, $E0
dc.b $DC, $D, 0, 0, 0, 0
dc.b $EC, $D, 0, 8, $FF, $E0
dc.b $EC, $D, 8, 8, 0, 0
dc.b $FC, $D, 0, 8, $FF, $E0
dc.b $FC, $D, 8, 8, 0, 0
dc.b $... |
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_5437_1657.asm | ljhsiun2/medusa | 9 | 52579 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x11576, %r13
nop
nop
nop
nop
cmp %rbx, %rbx
mov (%r13), %edx
nop
nop
nop
nop
nop
sub $41284, %rax
lea addresses_A_ht+0xbfb2, %rdx
nop
nop
n... |
collector/src/calls_collector_msvc.asm | tyoma/micro-profiler | 194 | 52580 | ; Copyright (c) 2011-2021 by <NAME> (gevorkyan.org)
;
; Permission is hereby granted, free of charge, to any person obtaining a copy
; of this software and associated documentation files (the "Software"), to deal
; in the Software without restriction, including without limitation the rights
; to use, copy, modify, merg... |
programs/Serial Parot.asm | TheLogicMaster/lm8 | 10 | 52582 | <filename>programs/Serial Parot.asm
; Serial Parot --- Parots anything recieved over UART back over UART
jmp program
include "libraries/Serial.asm"
message: db "Say something!\n",$0
program:
jsr setup_serial
ldr =message,l
jsr print_string
loop:
in {serial_available},A
jr loop,Z
in... |
ASM/src/extended_items.asm | TreZc0/OoTR-Tournament-Fork | 0 | 52585 | ;==================================================================================================
; Item data
;==================================================================================================
; Dungeon indexes, used with the dungeon item / small key tables in the save context
DEKU_ID equ 0
DODON... |
DecimaltoHex/translateHexToASCII.asm | JaredsOSToolbox/AssemblerPrograms | 0 | 52586 | ; convert hex to ascii using offset values
; <NAME>
; CPSC-240-09 TR @ 11:30 - 13:20
; some light -> https://stackoverflow.com/questions/36336045/print-register-value-to-console
; I also included a bash script that I was using to compile the ASM files, thought it might be useful for the class
; cmp function -> https:... |
src/firmware-tests/Platform/ArithmeticBcd/ToBinary/ToBinaryTest.asm | pete-restall/Cluck2Sesame-Prototype | 1 | 52587 | <reponame>pete-restall/Cluck2Sesame-Prototype
#include "Platform.inc"
#include "FarCalls.inc"
#include "ArithmeticBcd.inc"
#include "TestFixture.inc"
radix decimal
udata
global expectedRAA
global expectedW
global expectedZero
global zero
expectedRAA res 1
expectedW res 1
expectedZero res 1
capturedW res 1... |
oeis/127/A127906.asm | neoneye/loda-programs | 11 | 52588 | ; A127906: a(n) = (n in base 10) * (n in base 2).
; Submitted by <NAME>
; 0,1,20,33,400,505,660,777,8000,9009,10100,11121,13200,14313,15540,16665,160000,170017,180180,190209,202000,212121,222420,232553,264000,275025,286260,297297,310800,321929,333300,344441,3200000,3300033,3400340,3500385,3603600,3703737,3804180,390432... |
P6/data_P6_2/ALUTest126.asm | alxzzhou/BUAA_CO_2020 | 1 | 52591 | addiu $3,$2,9290
subu $3,$4,$3
sll $3,$3,20
lbu $1,13($0)
ori $3,$3,20372
lb $4,15($0)
or $3,$3,$3
sw $6,8($0)
srlv $3,$3,$3
subu $4,$6,$3
lh $4,0($0)
andi $3,$5,12782
addiu $4,$4,30240
nor $5,$5,$3
lb $4,10($0)
addu $5,$3,$3
slti $1,$1,6816
addu $4,$1,$3
addu $3,$4,$3
srl $4,$0,15
sb $3,2($0)
addu $6,$3,$3
sltiu $1,$1... |
programs/oeis/289/A289060.asm | karttu/loda | 0 | 52592 | ; A289060: a(n) = 3*a(n-1) - 3*a(n-2) + *a(n-3) for n >= 8, where a(0) = 2, a(1) = 4, a(2) = 7, a(3) = 11, a(4) = 17, a(5) = 25, a(6) = 36, a(7) = 51.
; 2,4,7,11,17,25,36,51,70,93,120,151,186,225,268,315,366,421,480,543,610,681,756,835,918,1005,1096,1191,1290,1393,1500,1611,1726,1845,1968,2095,2226,2361,2500,2643,2790,... |
kernel.asm | MarcosZornitta/xv6-marcoszornitta | 0 | 52593 | <filename>kernel.asm
kernel: formato do arquivo elf32-i386
Desmontagem da seção .text:
80100000 <multiboot_header>:
80100000: 02 b0 ad 1b 00 00 add 0x1bad(%eax),%dh
80100006: 00 00 add %al,(%eax)
80100008: fe 4f 52 decb 0x52(%edi)
8010000b: e4 .byte 0xe4
... |
code/Forec/t17.asm | KongoHuster/assembly-exercise | 1 | 52594 | ;; last edit date: 2016/11/18
;; author: Forec
;; LICENSE
;; Copyright (c) 2015-2017, Forec <<EMAIL>>
;; Permission to use, copy, modify, and/or distribute this code for any
;; purpose with or without fee is hereby granted, provided that the above
;; copyright notice and this permission notice appear in all copies.
;... |
Transynther/x86/_processed/AVXALIGN/_st_sm_/i7-8650U_0xd2_notsx.log_11_510.asm | ljhsiun2/medusa | 9 | 52595 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r13
push %r14
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0xae5c, %rsi
lea addresses_UC_ht+0xd1a0, %rdi
nop
nop
xor %r13, %r13
mov $1, %rcx
rep movsq
and $36818, %rcx
lea addresses_WC_ht+0x198c8, %r13
clflush (%r13)
nop
nop
dec %... |
oeis/277/A277609.asm | neoneye/loda-programs | 11 | 52596 | ; A277609: Fourth column of Euler's difference table in A068106. It is 6 times the sequence A000261.
; Submitted by <NAME>
; 0,0,6,18,78,426,2790,21234,183822,1781802,19104774,224406930,2864826126,39486808938,584328412518,9238767895026,155416555683150,2771424197143914,52216883883837702,1036463580947218962,2161695864496... |
Working Disassembly/Levels/DDZ/Misc Object Data/Map - Missile Asteroid.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 5 | 52598 | dc.w word_83362-Map_DDZMissileAsteroid
dc.w word_833AC-Map_DDZMissileAsteroid
dc.w word_833AC-Map_DDZMissileAsteroid
dc.w word_833AC-Map_DDZMissileAsteroid
dc.w word_833AC-Map_DDZMissileAsteroid
dc.w word_833AC-Map_DDZMissileAsteroid
dc.w word_833BA-Map_DDZMissileAsteroid
dc.w word_833C8-Map_DDZMissileA... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_362.asm | ljhsiun2/medusa | 9 | 52599 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r14
push %r15
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x13ab3, %rbp
nop
nop
nop
add $1997, %r14
mov $0x6162636465666768, %rsi
movq %rsi, %xmm3
vmovups %ymm3, (%rbp)
nop
nop
nop
nop
sub %rdi, %rdi
lea addresses_WC_ht+0x149a5, %rdx... |
oeis/336/A336949.asm | neoneye/loda-programs | 11 | 52600 | <filename>oeis/336/A336949.asm
; A336949: a(n) = n! * [x^n] 1 / (exp(-n*x) - x).
; Submitted by <NAME>
; 1,2,14,195,4440,147745,6698448,394852577,29250137472,2652483234033,288363456748800,36952298766628465,5504130616452258816,941845623036360908489,183298110723156455921664,40221612394630225987208625,98764294345850976719... |
programs/oeis/134/A134444.asm | neoneye/loda | 22 | 52601 | <gh_stars>10-100
; A134444: (A000012 * A128174 + A128174 * A000012) - A000012.
; 1,1,1,3,1,1,3,3,1,1,5,3,3,1,1,5,5,3,3,1,1,7,5,5,3,3,1,1,7,7,5,5,3,3,1,1,9,7,7,5,5,3,3,1,1,9,9,7,7,5,5,3,3,1,1
seq $0,212012 ; Triangle read by rows in which row n lists the number of states of the subshells of the n-th shell of the nuclea... |
Transynther/x86/_processed/NC/_st_zr_un_sm_/i9-9900K_12_0xca_notsx.log_21829_1047.asm | ljhsiun2/medusa | 9 | 52603 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x187af, %rsi
lea addresses_D_ht+0x175c5, %rdi
nop
nop
sub %rbp, %rbp
mov $12, %rcx
rep movsw
nop
nop
nop
lfence
pop %rsi
pop %rdi
pop %rcx
pop %rbp
ret
.global s_faulty_load
s_faulty_... |
oeis/142/A142687.asm | neoneye/loda-programs | 11 | 52604 | <filename>oeis/142/A142687.asm
; A142687: Primes congruent to 35 mod 57.
; Submitted by <NAME>
; 149,263,491,719,947,1061,1289,1973,2087,2543,2657,2999,3797,3911,4139,4253,4481,4937,5051,5279,5393,5507,5849,6761,7103,7331,7559,7673,7901,8243,8699,9041,9497,9839,10067,10181,10979,11093,11321,11549,11777,12119,12347,1268... |
code/rom.asm | MrHaber/68k-nano | 212 | 52605 | <filename>code/rom.asm
; vim:noet:sw=8:ts=8:sts=8:ai:syn=asm68k
include "68000sbc.inc"
ROM_VER_MAJ equ $0000
ROM_VER_MIN equ $9910
ROM_DATE_YEAR equ $2020
ROM_DATE_MONTH equ $07
ROM_DATE_DAY equ $11
BAUD_DIV equ (((F_CPU*10)/(16*BAUD))+5)/10 ; compute one extra de... |
LAB4/es01.asm | ntauth/computer-architecture-unimib | 0 | 52606 | <filename>LAB4/es01.asm
.data
.globl main
.text
main:
# mettere le istruzioni per caricare i valori
# 10 5 20 e 100 rispettivamente nei registri
# $s0 $s1 $s2 $s3
# _____________
# _____________
# _____________
# _____________
add $t0, $s0, $s1
add $t1, $s2, $s3
add $t2, $t1, $t0... |
asm/kernel/macros/heap.asm | majacQ/retroputer | 58 | 52607 | <filename>asm/kernel/macros/heap.asm
.define MAKE_HEAP(heap, size) {
push c
push d
push x
LDPTR(d, x, heap())
ld c, size()
call [vectors.MAKE_HEAP]
pop x
pop d
pop c
}
.define GET_HEAP_FREE(heap) {
push d
push x
LDPTR(d, x, heap())
call [vectors.GET_HEAP_FREE]
pop... |
Projects/PJZ2/InterferenceBobs/InterferenceBobs.asm | jonathanbennett73/amiga-pjz-planet-disco-balls | 21 | 52608 | <reponame>jonathanbennett73/amiga-pjz-planet-disco-balls
*****************************************************************************
; Name : Template.s
; Coded by : Antiriad (<NAME> <<EMAIL>)
; Description : Template routine.
; Date last edited : 04/02/2020
******************************************... |
programs/oeis/212/A212014.asm | karttu/loda | 0 | 52609 | ; A212014: Total number of states of the first n subshells of the nuclear shell model in which the subshells are ordered by energy level in increasing order.
; 2,6,8,14,18,20,28,34,38,40,50,58,64,68,70,82,92,100,106,110,112,126,138,148,156,162,166,168,184,198,210,220,228,234,238,240,258,274,288,300,310,318,324,328,330,... |
oeis/322/A322048.asm | neoneye/loda-programs | 11 | 52610 | <filename>oeis/322/A322048.asm
; A322048: Final elements in rows when A322050 is displayed as a triangle.
; Submitted by <NAME>(s1)
; 1,5,15,35,81,173,357,725,1461,2933,5877,11765,23541,47093,94197,188405
lpb $0
sub $0,1
mov $1,$3
add $1,2
min $2,3
add $2,$3
add $3,$2
add $3,5
lpe
mov $0,$1
mul $0,2
add ... |
oeis/220/A220780.asm | neoneye/loda-programs | 11 | 52611 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A220780: Nonzero terms of A220779: exponent of highest power of 2 dividing an even sum 1^n + 2^n + ... + n^n.
; Submitted by <NAME>
; 2,1,4,2,2,1,6,3,2,1,4,2,2,1,8,4,2,1,4,2,2,1,6,3,2,1,4,2,2,1,10,5,2,1,4,2,2,1,6,3,2,1,4,2,2,1,8,4,2,1,4,2,2,1,6,3,2,1,4,2,2,1,12,6,2,1,4,... |
cpp/hanser_c_und_linux/svgalib-1.9.25/obsolete/support/trap-out.asm | maximilianharr/code_snippets | 0 | 52612 | ; TRAPOUT2.ASM v2.0 by ARK (<EMAIL>, <EMAIL>) 11-28-97
; Traps IN and OUT instructions in INT 10h and displays DX and AX/AL values.
;
; In the header "T DX/I AX/L", T is the Type of instruction (I=IN, O=OUT),
; DX/I is the value of DX or the Immediate value if port<256, and AX/L
; is the value of AX or AL depend... |
programs/oeis/173/A173067.asm | neoneye/loda | 22 | 52613 | ; A173067: a(n) = A130665(n-1) - A160715(n).
; 0,0,0,0,0,0,0,6,6,6,6,12,6
lpb $0
mul $0,2
add $2,10
trn $0,$2
add $0,28386
mod $0,10
add $1,6
lpe
mov $0,$1
|
src/kernel/hal/asm_abstraction.asm | StrBrkrs-NullException/NoolOS | 5 | 52615 | BITS 32
section .text
global HalaSendInterrupt
HalaSendInterrupt:
push ebp
mov ebp, esp
push eax
mov al, BYTE [ebp+8]
mov BYTE [intfunc+1], al
pop eax
intfunc:
int 0xFF
leave
ret
global HalaHalt
HalaHalt:
cli
... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1208.asm | ljhsiun2/medusa | 9 | 52616 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1208.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r9
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x4603, %rsi
lea addresses_A_ht+0x10e3c, %rdi
clflush (%rdi)
nop
and %rbp... |
NativeLib/src/interrupts_asm.asm | Michael-Kelley/RoseOS | 28 | 52617 | _TEXT SEGMENT
pushaq MACRO
push r15
push r14
push r13
push r12
push r11
push r10
push r9
push r8
push rdi
push rsi
push rbx
push rdx
push rcx
push rax
ENDM
popaq MACRO
pop rax
pop rcx
pop rdx
pop rbx
pop rsi
pop rdi
pop r8
pop r9
pop r10
pop r11
pop r12
pop r13
pop r14
pop r15
ENDM
EXTERN... |
oeis/290/A290195.asm | neoneye/loda-programs | 11 | 52618 | ; A290195: Decimal representation of the diagonal from the origin to the corner of the n-th stage of growth of the two-dimensional cellular automaton defined by "Rule 705", based on the 5-celled von Neumann neighborhood.
; Submitted by <NAME>(s1)
; 1,1,5,11,7,47,31,191,127,767,511,3071,2047,12287,8191,49151,32767,19660... |
programs/oeis/179/A179991.asm | jmorken/loda | 1 | 52620 | ; A179991: Nonhomogeneous three-term sequence a(n) = a(n-1) + a(n-2) + n.
; 2,3,8,15,28,49,84,141,234,385,630,1027,1670,2711,4396,7123,11536,18677,30232,48929,79182,128133,207338,335495,542858,878379,1421264,2299671,3720964,6020665,9741660,15762357,25504050,41266441,66770526,108037003,174807566,282844607,457652212,7404... |
ComputerStructure/SPARTAN6/Chapter4_Exercise2.asm | frisinacho/UMA | 1 | 52621 | .text
lui $4,0x0002
lui $3,0x0001
addi $1,$0,1
addi $7,$0,0
inicio:
lb $5,3($4)
nop
nop
nop
beq $5,$1,led1
lb $5,2,($4)
nop
nop
nop
beq $5,$1,led2
lb $5,1($4)
nop
nop
nop
beq $5,$1,led3
beq $0,$0,inicio
led1:
addi $7,$0,1
sb $1,1($3)
j mantener
led2:
addi $7,$0,2
sb $1,2($3)
j mantener
led3:
addi $7,$0,3
sb $1,3($3)
m... |
Transynther/x86/_processed/NONE/_st_/i7-7700_9_0x48.log_21829_799.asm | ljhsiun2/medusa | 9 | 52622 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x11569, %r9
nop
nop
nop
cmp %rdi, %rdi
movb $0x61, (%r9)
cmp %r12, %r12
lea addresses_WC_ht+0x12f69, %rsi
lea addresses_D_ht+0xf0f1, %rdi
nop
nop
nop
nop
nop
inc %r8
... |
programs/oeis/134/A134633.asm | karttu/loda | 0 | 52623 | <reponame>karttu/loda
; A134633: 5*n^5 + 3*n^3 + 2*n^2. Coefficients and exponents are the prime numbers in decreasing order.
; 0,10,192,1314,5344,16050,39600,85162,165504,297594,503200,809490,1249632,1863394,2697744,3807450,5255680,7114602,9465984,12401794,16024800,20449170,25801072,32219274,39855744,48876250,59460960... |
binutils-2.21.1/gcc-4.5.1/gcc/config/rs6000/e500crtresx32gpr.asm | cberner12/xv6 | 51 | 52624 | /*
* Special support for e500 eabi and SVR4
*
* Copyright (C) 2008, 2009 Free Software Foundation, Inc.
* Written by <NAME>
*
* This file 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 Foundation; either ver... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_2177.asm | ljhsiun2/medusa | 9 | 52625 | <filename>Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_2177.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %rax
push %rbp
push %rcx
lea addresses_D_ht+0x51b8, %rcx
nop
nop
and $9938, %rbp
mov (%rcx), %rax
nop
nop
nop
nop
nop
add $6891, %r12
pop %rcx
pop %rbp
pop %rax
pop %r12
ret
... |
coverage/PENDING_SUBMIT/amdvlk/0620-COVERAGE-instruction-simplify-1335/work/variant/1_spirv_asm/shader.frag.asm | asuonpaa/ShaderTests | 0 | 52626 | <reponame>asuonpaa/ShaderTests
; SPIR-V
; Version: 1.0
; Generator: Khronos Glslang Reference Front End; 10
; Bound: 104
; Schema: 0
OpCapability Shader
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %4 "main" %60 %85
... |
2_ConsecutiveMemoryReset.asm | furkanisitan/ExampleProgramsFor8085Microprocessor | 0 | 52628 | <reponame>furkanisitan/ExampleProgramsFor8085Microprocessor<filename>2_ConsecutiveMemoryReset.asm
MVI A, 0 ; A yı sıfırla
MVI B, 20 ; B ye 20 yükle
LXI H, 0200H ; HL ye 0200H yükle
NXT: MOV M, A ; M(HL) yi sıfırla
INX H ; HL yi 1 arttır
DCR B ; B yi 1 azalt
JNZ NXT ; B sıfır değilse NXT ye atla
HLT ; Sonlandır
; 0... |
oeis/192/A192032.asm | neoneye/loda-programs | 11 | 52629 | ; A192032: Square array read by antidiagonals: W(m,n) (m >= 0, n >= 0) is the Wiener index of the graph G(m,n) obtained in the following way: connect by an edge the center of an m-edge star with the center of an n-edge star. The Wiener index of a connected graph is the sum of distances between all unordered pairs of ve... |
HW7/ChristianWebber-HW9-1.asm | vonderborch/CS260 | 0 | 52630 | .data
World: .ascii "____f____"
XCoord: .byte 4
under: .ascii "_"
frog: .ascii "f"
.text
# Call main Frogger repeatedly until has to exit
main:
lui $t0, 0xFFFF
j frogger
bne $v0, $zero, exit
j main
#display a character on the screen
emitchar:
lui $t0, 0xFFFF
lw $t1, 8($t0)
andi $t1, $t1, 0x0001
beq $t1, $ze... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_1769.asm | ljhsiun2/medusa | 9 | 52631 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r8
push %r9
push %rbp
push %rdx
lea addresses_UC_ht+0x157eb, %r8
nop
nop
inc %rbp
mov $0x6162636465666768, %r11
movq %r11, %xmm7
and $0xffffffffffffffc0, %r8
vmovaps %ymm7, (%r8)
nop
nop
nop
nop
cmp %rdx, %rdx
lea addresses_UC_ht+0x68c3, %r9
an... |
programs/oeis/192/A192186.asm | karttu/loda | 0 | 52632 | ; A192186: a(n) = binomial(2*n, floor(n*sqrt(2))).
; 1,2,6,15,56,120,495,2002,4368,18564,38760,170544,735471,1562275,6906900,14307150,64512240,131128140,600805296,2707475148,5586853480,25518731280,51915526432,239877544005,1093260079344,2250829575120,10363194502115,21094923659355,97997533741800,197548686920970,925029565... |
bootblock.asm | danilocapkob/xv6plus | 1 | 52633 | <filename>bootblock.asm
bootblock.o: file format elf32-i386-freebsd
Disassembly of section .text:
00007c00 <start>:
7c00: fa cli
7c01: fc cld
7c02: 31 c0 xor %eax,%eax
7c04: 8e d8 mov %eax,%ds
7c06: 8e c0 ... |
reports/01_enum_ordinal_1.exp2.asm | arnaudroger/re2j-benchmark | 0 | 52634 | <filename>reports/01_enum_ordinal_1.exp2.asm
# JMH version: 1.19
# VM version: JDK 1.8.0_131, VM 25.131-b11
# VM invoker: /usr/lib/jvm/java-8-oracle/jre/bin/java
# VM options: <none>
# Warmup: 20 iterations, 1 s each
# Measurement: 20 iterations, 1 s each
# Timeout: 10 min per iteration
# Threads: 1 thread, will synchr... |
programs/oeis/061/A061536.asm | neoneye/loda | 22 | 52635 | <reponame>neoneye/loda<gh_stars>10-100
; A061536: a(1) = 1 and a(n) = a(n-1) + (the number of primes <= n) for n > 1.
; 1,2,4,6,9,12,16,20,24,28,33,38,44,50,56,62,69,76,84,92,100,108,117,126,135,144,153,162,172,182,193,204,215,226,237,248,260,272,284,296,309,322,336,350,364,378,393,408,423,438,453,468,484,500,516,532,5... |
modules/monitor/monitor.nasm | r-tty/radios | 0 | 52636 | ;*******************************************************************************
; monitor.nasm - RadiOS kernel monitor/debugger.
; Ported from <NAME>'s OS-32 by <NAME>.
;*******************************************************************************
module $monitor
%include "sys.ah"
%include "errors.ah"
%include "as... |
Transynther/x86/_processed/AVXALIGN/_st_sm_/i7-7700_9_0xca.log_14621_147.asm | ljhsiun2/medusa | 9 | 52637 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r15
push %r8
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x18da2, %r9
nop
nop
nop
nop
nop
add %r12, %r12
mov $0x6162636465666768, %rsi
movq %rsi, %xmm3
movups %xmm3, (%r9)
nop
and %r8, %r8
lea addresses_A_ht+0xa3a2, %rbx
nop
nop
nop
n... |
oeis/107/A107917.asm | neoneye/loda-programs | 11 | 52638 | <gh_stars>10-100
; A107917: a(n) = (n+1)(n+2)^2*(n+3)^3*(n+4)^2*(n+5)(n^2 + 6n + 10)/86400.
; Submitted by <NAME>
; 1,34,455,3626,20580,91728,340956,1099890,3166449,8302294,20131111,45677996,97894160,199645824,389817072,732389580,1329624009,2340785370,4008235231,6693165094,10923775940,17459327600,27374197500,4216691115... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.