hexsha stringlengths 40 40 | size int64 6 1.05M | ext stringclasses 3
values | lang stringclasses 1
value | max_stars_repo_path stringlengths 4 232 | max_stars_repo_name stringlengths 7 106 | max_stars_repo_head_hexsha stringlengths 40 40 | max_stars_repo_licenses listlengths 1 7 | max_stars_count int64 1 33.5k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 4 232 | max_issues_repo_name stringlengths 7 106 | max_issues_repo_head_hexsha stringlengths 40 40 | max_issues_repo_licenses listlengths 1 7 | max_issues_count int64 1 37.5k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 4 232 | max_forks_repo_name stringlengths 7 106 | max_forks_repo_head_hexsha stringlengths 40 40 | max_forks_repo_licenses listlengths 1 7 | max_forks_count int64 1 12.6k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 6 1.05M | avg_line_length float64 1.16 19.7k | max_line_length int64 2 938k | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d68898fe5a863b939eddb223a5b2f44fdde028ed | 227 | asm | Assembly | libsrc/games/pc88/bit_close.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/games/pc88/bit_close.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/games/pc88/bit_close.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z | ; $Id: bit_close.asm $
;
; NEC PC-8801 - 1 bit sound functions
;
; void bit_close();
;
; Stefano Bodrato - 2018
;
SECTION code_clib
PUBLIC bit_close
PUBLIC _bit_close
.bit_close
._bit_close
ret
| 12.611111 | 37 | 0.621145 |
fe425b07ff351ca535804bf147ae206d3976b24d | 1,115 | asm | Assembly | programs/oeis/100/A100152.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/100/A100152.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/100/A100152.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A100152: Structured truncated cubic numbers.
; 1,24,100,260,535,956,1554,2360,3405,4720,6336,8284,10595,13300,16430,20016,24089,28680,33820,39540,45871,52844,60490,68840,77925,87776,98424,109900,122235,135460,149606,164704,180785,197880,216020,235236,255559,277020,299650,323480,348541,374864,402480,431420,461715,4933... | 25.340909 | 695 | 0.730045 |
ccf876bfc844e87a77222a22dbdbc8113001c7e7 | 396 | asm | Assembly | Chapter_6/Program 6.1/x86_64/Program_6.1_NASM.asm | chen150182055/Assembly | e5e76bea438a3752b59775098205a77aa7087110 | [
"MIT"
] | 272 | 2016-12-28T02:24:21.000Z | 2022-03-30T21:05:37.000Z | Chapter_6/Program 6.1/x86_64/Program_6.1_NASM.asm | chen150182055/Assembly | e5e76bea438a3752b59775098205a77aa7087110 | [
"MIT"
] | 1 | 2018-04-17T19:47:52.000Z | 2018-04-17T19:47:52.000Z | Chapter_6/Program 6.1/x86_64/Program_6.1_NASM.asm | chen150182055/Assembly | e5e76bea438a3752b59775098205a77aa7087110 | [
"MIT"
] | 62 | 2017-02-02T14:39:37.000Z | 2022-01-04T09:02:07.000Z | ; Program 6.1
; Sum Program - NASM (64-bit)
; Copyright (c) 2020 Hall & Slonka
section .data
num1: dd 2
num2: dd 4
section .text
global _main, _sum
_main:
mov rax, 10
dec rax
mov rbx, 5
movsx rdi, DWORD [rel num1]
movsx rsi, DWORD [rel num2]
call _sum
add rax, rbx
dec rax
mov rax, 60
xor rdi, rdi
syscall
_sum:
p... | 10.702703 | 34 | 0.69697 |
e8d217405b251431417604627895b89587d826ed | 11,794 | asm | Assembly | Source/Apps/Timer.asm | vipoo/RomWBW | e463959fee431da2de3da962bd70cb0c556ffaed | [
"DOC",
"MIT"
] | 1 | 2021-11-10T12:31:51.000Z | 2021-11-10T12:31:51.000Z | Source/Apps/Timer.asm | vipoo/RomWBW | e463959fee431da2de3da962bd70cb0c556ffaed | [
"DOC",
"MIT"
] | 1 | 2018-08-03T10:46:18.000Z | 2018-08-03T10:46:18.000Z | Source/Apps/Timer.asm | vipoo/RomWBW | e463959fee431da2de3da962bd70cb0c556ffaed | [
"DOC",
"MIT"
] | null | null | null | ;===============================================================================
; TIMER - Display system timer value
;
;===============================================================================
;
; Author: Wayne Warthen (wwarthen@gmail.com)
;________________________________________________________________... | 23.216535 | 81 | 0.608445 |
572ed730e7711383640593c4cd253e279e0c42a6 | 962 | asm | Assembly | MicroProcessor Lab Programs/time.asm | vallabhiaf/4thSemIse | 55ed3c6fc29e4d2dd2c1fb71e31f5283ad47b9bf | [
"Apache-2.0"
] | null | null | null | MicroProcessor Lab Programs/time.asm | vallabhiaf/4thSemIse | 55ed3c6fc29e4d2dd2c1fb71e31f5283ad47b9bf | [
"Apache-2.0"
] | null | null | null | MicroProcessor Lab Programs/time.asm | vallabhiaf/4thSemIse | 55ed3c6fc29e4d2dd2c1fb71e31f5283ad47b9bf | [
"Apache-2.0"
] | null | null | null | assume cs:code
code segment
start:
mov ah,2ch ;function 2C under INT 21h returns time in ch(hrs), cl(mins)
int 21h ; in hex ( seconds and milliseconds omitted)
mov al,ch
call hex_bcd ; first convert the hrs into 24 hrs formatted bcd
call disp ; then, display it
mov dl,':'
mov ah,2... | 18.150943 | 77 | 0.586279 |
178d9d7a25a883a60ee7ab36f611fea0ee285c68 | 6,313 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1270.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1270.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1270.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r15
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0xb7fa, %rsi
lea addresses_UC_ht+0x1287a, %rdi
nop
nop
nop
nop
inc %r15
mov $5, %rcx
rep movsw
nop
nop
nop
nop
nop
xor $6290, %r9
lea addresses_WT_ht+0x6f3e, %r13
nop
nop
nop
nop
nop
add ... | 38.03012 | 2,999 | 0.653255 |
a0dd90404d2ff8b547a12e938d1d3d06ce1c128e | 471 | asm | Assembly | programs/oeis/249/A249020.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/249/A249020.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/249/A249020.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A249020: a(n) = floor( n * (n+5) / 10) + 1.
; 1,1,2,3,4,6,7,9,11,13,16,18,21,24,27,31,34,38,42,46,51,55,60,65,70,76,81,87,93,99,106,112,119,126,133,141,148,156,164,172,181,189,198,207,216,226,235,245,255,265,276,286,297,308,319,331,342,354,366,378,391,403,416,429,442,456,469,483,497,511,526,540,555,570,585,601,616,63... | 47.1 | 365 | 0.66879 |
1a646d5e307c37853b75f6d96aed3f3181e2b001 | 8,537 | asm | Assembly | bahamut/source/menu-dispatcher.asm | higan-emu/bahamut-lagoon-translation-kit | 6f08de5b92b597c0b9ecebd485cc975b99acfc13 | [
"0BSD"
] | 2 | 2021-08-15T04:10:10.000Z | 2021-08-15T20:14:13.000Z | bahamut/source/menu-dispatcher.asm | higan-emu/bahamut-lagoon-translation-kit | 6f08de5b92b597c0b9ecebd485cc975b99acfc13 | [
"0BSD"
] | 1 | 2022-02-16T02:46:39.000Z | 2022-02-16T04:30:29.000Z | bahamut/source/menu-dispatcher.asm | higan-emu/bahamut-lagoon-translation-kit | 6f08de5b92b597c0b9ecebd485cc975b99acfc13 | [
"0BSD"
] | 1 | 2021-12-25T11:34:57.000Z | 2021-12-25T11:34:57.000Z | namespace menu {
seek(codeCursor)
//Bahamut Lagoon shares a lot of code routines between each screen,
//which interferes greatly with tile allocation strategies.
//the dispatcher attempts to record when screens are entered into,
//in order to disambiguate shared routines, and call handlers for
//specific screens inst... | 30.708633 | 114 | 0.606068 |
397abf0a6e87080dd849df7e8eadfddfe0db4163 | 2,155 | asm | Assembly | Sources/Elastos/Runtime/Core/carapi/invokeCallback_ievc.asm | jingcao80/Elastos | d0f39852356bdaf3a1234743b86364493a0441bc | [
"Apache-2.0"
] | 7 | 2017-07-13T10:34:54.000Z | 2021-04-16T05:40:35.000Z | Sources/Elastos/Runtime/Core/carapi/invokeCallback_ievc.asm | jingcao80/Elastos | d0f39852356bdaf3a1234743b86364493a0441bc | [
"Apache-2.0"
] | null | null | null | Sources/Elastos/Runtime/Core/carapi/invokeCallback_ievc.asm | jingcao80/Elastos | d0f39852356bdaf3a1234743b86364493a0441bc | [
"Apache-2.0"
] | 9 | 2017-07-13T12:33:20.000Z | 2021-06-19T02:46:48.000Z | ;;=========================================================================
;; Copyright (C) 2012 The Elastos Open Source Project
;;
;; 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 License at
;;
;; ... | 23.423913 | 75 | 0.485847 |
6afcac3da73e8bebf903beec9ae035c1eb3d3049 | 7,512 | asm | Assembly | examples/3rd-party/Mancala/M.asm | brickpool/hp35s | 14fc5881af7f72e1dbbf408d0201b411e16a9190 | [
"MIT"
] | 3 | 2020-12-08T08:13:46.000Z | 2021-12-15T06:06:57.000Z | examples/3rd-party/Mancala/M.asm | brickpool/hp35s | 14fc5881af7f72e1dbbf408d0201b411e16a9190 | [
"MIT"
] | null | null | null | examples/3rd-party/Mancala/M.asm | brickpool/hp35s | 14fc5881af7f72e1dbbf408d0201b411e16a9190 | [
"MIT"
] | null | null | null | ; Mancala for the HP-35s
; This program is by Dan B. (brianddk) and is used here by permission.
; https://brianddk.github.io/prog/mancala/mancala.asm
MODEL P35S
SEGMENT Mancala CODE
;Main Mancala program
LBL M
XEQ init ; Init the game registers
main: ; Main game ... | 25.99308 | 75 | 0.347577 |
9d4cc111b1f0061841a5d51339806bd4b0006149 | 109 | asm | Assembly | 3° Período/Arquiterura-e-Organiza-o-de-Computadores/Operações Básicas MIPS 1.asm | sullyvan15/UVV | 2390cc2881792d036db1d8b098fe366f47cd98c3 | [
"MIT"
] | null | null | null | 3° Período/Arquiterura-e-Organiza-o-de-Computadores/Operações Básicas MIPS 1.asm | sullyvan15/UVV | 2390cc2881792d036db1d8b098fe366f47cd98c3 | [
"MIT"
] | 1 | 2020-10-07T23:33:21.000Z | 2020-10-08T01:15:11.000Z | 3° Período/Arquiterura-e-Organiza-o-de-Computadores/Operações Básicas MIPS 1.asm | sullyvan15/Universidade-Vila-Velha | 2390cc2881792d036db1d8b098fe366f47cd98c3 | [
"MIT"
] | null | null | null | .data
out_string: .ascii "\nHello, World!\n"
.text
main:
li $v0, 4
la $a0, out_string
syscall | 12.111111 | 39 | 0.59633 |
9d725982bd52176029ce6e59d58617f6c33a1135 | 1,061 | asm | Assembly | _build/dispatcher/jmp_ippsSHA256Unpack_cb89815c.asm | zyktrcn/ippcp | b0bbe9bbb750a7cf4af5914dd8e6776a8d544466 | [
"Apache-2.0"
] | 1 | 2021-10-04T10:21:54.000Z | 2021-10-04T10:21:54.000Z | _build/dispatcher/jmp_ippsSHA256Unpack_cb89815c.asm | zyktrcn/ippcp | b0bbe9bbb750a7cf4af5914dd8e6776a8d544466 | [
"Apache-2.0"
] | null | null | null | _build/dispatcher/jmp_ippsSHA256Unpack_cb89815c.asm | zyktrcn/ippcp | b0bbe9bbb750a7cf4af5914dd8e6776a8d544466 | [
"Apache-2.0"
] | null | null | null | extern m7_ippsSHA256Unpack:function
extern n8_ippsSHA256Unpack:function
extern y8_ippsSHA256Unpack:function
extern e9_ippsSHA256Unpack:function
extern l9_ippsSHA256Unpack:function
extern n0_ippsSHA256Unpack:function
extern k0_ippsSHA256Unpack:function
extern ippcpJumpIndexForMergedLibs
extern ippcpSafeInit:function
s... | 27.205128 | 91 | 0.792648 |
39e22a08ea893b123c61730e49177bac7c91e8cb | 318 | asm | Assembly | sort.asm | creativcoder/asm8085 | 94eee431aec7e49df6ea8df01cc4c5a370e86df7 | [
"MIT"
] | null | null | null | sort.asm | creativcoder/asm8085 | 94eee431aec7e49df6ea8df01cc4c5a370e86df7 | [
"MIT"
] | null | null | null | sort.asm | creativcoder/asm8085 | 94eee431aec7e49df6ea8df01cc4c5a370e86df7 | [
"MIT"
] | null | null | null | ;Rahul Sharma
;In place sorting of an array of numbers in memory
jmp start
;data
;code
start: lxi h,0000h ;stores array length
mov b,m
dcr b
oloop: mov c,b
lxi h,0001h ; top most data of array
iloop: mov a,m
inx h
cmp m
jz skip
jc skip
mov e,m
mov m,a
dcx h
mov m,e
inx h
skip: dcr c
jnz iloop
dcr b
jnz oloop
hlt
| 10.6 | 50 | 0.716981 |
6c337ac2c4f6de0d641335814866600e3635d66e | 5,296 | asm | Assembly | Transynther/x86/_processed/AVXALIGN/_st_sm_/i9-9900K_12_0xca.log_21829_1614.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/AVXALIGN/_st_sm_/i9-9900K_12_0xca.log_21829_1614.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/AVXALIGN/_st_sm_/i9-9900K_12_0xca.log_21829_1614.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r15
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x3f3d, %rdx
nop
nop
nop
nop
inc %r12
mov $0x6162636465666768, %r14
movq %r14, (%rdx)
nop
nop
nop
dec %rdx
lea addresses_WT_ht+0x1e83d, %rsi
lea addresses_UC_ht+0x11707, %rdi
and %r15, %... | 42.709677 | 2,999 | 0.656722 |
c54dfb90033f1dca2fa25001276df42a7d81a4ce | 511 | asm | Assembly | programs/oeis/025/A025710.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/025/A025710.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/025/A025710.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A025710: Index of 5^n within sequence of numbers of form 5^i*9^j.
; 1,2,4,7,10,14,19,25,31,38,46,55,64,74,85,96,108,121,135,149,164,180,197,214,232,251,271,291,312,334,356,379,403,428,453,479,506,534,562,591,621,652,683,715,748,781,815,850,886,922,959,997,1036,1075,1115,1156,1198
mov $2,$0
add $2,1
mov $6,$0
lpb $2
... | 20.44 | 214 | 0.598826 |
fbec8503ce6d9971463e241885b62a687b178f00 | 2,843 | asm | Assembly | Lab05/Task04.asm | PrabalChowdhury/CSE-341-MICROPROCESSOR | 88f0dea914890c5aa5bc10d0131233b2ebd27586 | [
"MIT"
] | null | null | null | Lab05/Task04.asm | PrabalChowdhury/CSE-341-MICROPROCESSOR | 88f0dea914890c5aa5bc10d0131233b2ebd27586 | [
"MIT"
] | null | null | null | Lab05/Task04.asm | PrabalChowdhury/CSE-341-MICROPROCESSOR | 88f0dea914890c5aa5bc10d0131233b2ebd27586 | [
"MIT"
] | null | null | null | .MODEL SMalL
.STACK 100H
.DATA
X DB "ENTER A HEX DIGIT: $"
Y DB "IN DECIMAL IT IS 1$"
Z DB "IN DECIMAL IT IS $"
P DB "DO YOU WANT TO DO IT AGAIN? :$"
Q DB "ILLEGAL CHARACTER, $"
R DB "INSERT AGAIN: $"
.CODE
MAIN PROC
MOV AX,@DATA
MOV DS,AX
SRT:
lea dx,X
mov ah,9... | 14.286432 | 38 | 0.408371 |
3a3debaadd52b90249d60a493853af0c96672fe8 | 378 | asm | Assembly | programs/oeis/335/A335115.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/335/A335115.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/335/A335115.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A335115: a(2*n) = 2*n - a(n), a(2*n+1) = 2*n + 1.
; 1,1,3,3,5,3,7,5,9,5,11,9,13,7,15,11,17,9,19,15,21,11,23,15,25,13,27,21,29,15,31,21,33,17,35,27,37,19,39,25,41,21,43,33,45,23,47,33,49,25,51,39,53,27,55,35,57,29,59,45,61,31,63,43,65,33,67,51,69,35,71,45,73,37,75
lpb $0,1
mov $2,$0
gcd $0,2
bin $0,2
sub $0,1... | 25.2 | 213 | 0.558201 |
0c8f8409a5896333840a33bb235f11e68ee35c5e | 599 | asm | Assembly | programs/oeis/244/A244413.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/244/A244413.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/244/A244413.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A244413: Exponent of highest power of 8 dividing n.
; 0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,... | 66.555556 | 501 | 0.522538 |
ceceab83803e09fc77cedb8b5aa8c26bc04c0fa1 | 8,524 | asm | Assembly | Transynther/x86/_processed/AVXALIGN/_st_4k_/i9-9900K_12_0xa0.log_21829_1084.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/AVXALIGN/_st_4k_/i9-9900K_12_0xa0.log_21829_1084.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/AVXALIGN/_st_4k_/i9-9900K_12_0xa0.log_21829_1084.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x1bcd6, %rsi
lea addresses_UC_ht+0x14ad6, %rdi
clflush (%rsi)
nop
nop
add $46527, %r14
mov $87, %rcx
rep movsq
sub $21669, %r8
lea addresses_normal_ht+0xb856, %rsi
lea addresses_normal_h... | 30.33452 | 2,999 | 0.652863 |
da8507dcc8ce5dc0b2b66962fbf1a0eef9a4faf6 | 439 | asm | Assembly | unix-x64/printhex.asm | mazoti/adler32 | a7d27786344277a6fe589ba98c0210d96c88fc8e | [
"BSD-3-Clause"
] | null | null | null | unix-x64/printhex.asm | mazoti/adler32 | a7d27786344277a6fe589ba98c0210d96c88fc8e | [
"BSD-3-Clause"
] | null | null | null | unix-x64/printhex.asm | mazoti/adler32 | a7d27786344277a6fe589ba98c0210d96c88fc8e | [
"BSD-3-Clause"
] | null | null | null | ; void printhex(int stdout_stderr, int number);
global printhex
section .data
hex_table db '0123456789abcdef'
section .text
printhex:
mov rbx,rsp
mov rdx,1 ; write 1 character
divide:
mov rcx,rsi
and rcx,15 ; push mod 16
push rcx
shr rsi,4
jnz divide
print_stack:
mov rax,4... | 14.633333 | 47 | 0.646925 |
335a4441ef30c33d5cad3d5359502e7ca96e5802 | 363 | asm | Assembly | verify/alfy/1_variable_definition/variable_list_with_value.alfy.asm | alexandruradovici/alf-alfy-asm-public | 43a73cc13c38f39125620fb9bd566c261cff1c73 | [
"BSD-2-Clause"
] | null | null | null | verify/alfy/1_variable_definition/variable_list_with_value.alfy.asm | alexandruradovici/alf-alfy-asm-public | 43a73cc13c38f39125620fb9bd566c261cff1c73 | [
"BSD-2-Clause"
] | 2 | 2017-05-18T20:29:57.000Z | 2017-05-19T19:03:07.000Z | verify/alfy/1_variable_definition/variable_list_with_value.alfy.asm | alexandruradovici/alf-alfy-asm-language-public | 43a73cc13c38f39125620fb9bd566c261cff1c73 | [
"BSD-2-Clause"
] | null | null | null |
; script
start:
; attribution
; value int 3
set r2 3
; n: r3
set r3 0
store r3 r2
; attribution
; value real 3.7
set r2 3700
; r: r3
set r3 4
store r3 r2
; attribution
; value logic false
set r2 0
; l: r... | 16.5 | 27 | 0.435262 |
e449b287a88e69b5759519061cf8c72a7fd34069 | 572 | asm | Assembly | oeis/058/A058344.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/058/A058344.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/058/A058344.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A058344: Difference between the sum of the odd aliquot divisors of n and the sum of the even aliquot divisors of n.
; 0,1,1,-1,1,2,1,-5,4,4,1,-8,1,6,9,-13,1,5,1,-10,11,10,1,-28,6,12,13,-12,1,6,1,-29,15,16,13,-29,1,18,17,-38,1,10,1,-16,33,22,1,-68,8,19,21,-18,1,14,17,-48,23,28,1,-60,1,30,41,-61,19,18,1,-22,27,22,1,-97... | 28.6 | 289 | 0.58042 |
9caa289597cc4959510611aae8b514c6ea6e5dcb | 75 | asm | Assembly | Scripts/game/gameplay/play.asm | 1888games/golf | 5078fc0699e5f91a53761cc30526b510d49e955c | [
"BSD-2-Clause"
] | 1 | 2022-02-13T16:09:18.000Z | 2022-02-13T16:09:18.000Z | Scripts/game/gameplay/play.asm | 1888games/golf | 5078fc0699e5f91a53761cc30526b510d49e955c | [
"BSD-2-Clause"
] | null | null | null | Scripts/game/gameplay/play.asm | 1888games/golf | 5078fc0699e5f91a53761cc30526b510d49e955c | [
"BSD-2-Clause"
] | null | null | null | PLAY: {
* = * "-Play"
Init: {
jsr ROUND_MANAGER.Init
rts
}
} | 5.357143 | 24 | 0.466667 |
7983c20492b8ecc3e03fa850049bd4ec80d3b75e | 914 | asm | Assembly | test/test.Array.splitb.asm | richRemer/atlatl | 169c0c9c29d277dc1295e6c37b0963af6e02741a | [
"MIT"
] | null | null | null | test/test.Array.splitb.asm | richRemer/atlatl | 169c0c9c29d277dc1295e6c37b0963af6e02741a | [
"MIT"
] | null | null | null | test/test.Array.splitb.asm | richRemer/atlatl | 169c0c9c29d277dc1295e6c37b0963af6e02741a | [
"MIT"
] | null | null | null | global test_case
extern Array.splitb
extern Array.eachb
extern std.outb
extern std.outln
extern sys.error
%include "Array.inc"
section .text
test_case:
mov rax, test_array ; Array to split
mov rbx, 4 ; delimit with value 4
call Array.splitb ; split into two ... | 25.388889 | 76 | 0.588621 |
c1e91081ee5426617560e096c1c686c4daf79988 | 469 | asm | Assembly | data/pokemon/base_stats/sinnoh/tangrowth.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | null | null | null | data/pokemon/base_stats/sinnoh/tangrowth.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | null | null | null | data/pokemon/base_stats/sinnoh/tangrowth.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | null | null | null | db 0 ; 465 DEX NO
db 100, 100, 125, 50, 110, 50
; hp atk def spd sat sdf
db GRASS, GRASS ; type
db 30 ; catch rate
db 211 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_F50 ; gender ratio
db 100 ; unknown 1
db 20 ; step cycles to hatch
db 5 ; unknown 2
INCBIN "gfx/pokemon/sinnoh/tangrowth/f... | 21.318182 | 55 | 0.667377 |
565d3fd4f8bf4d2bbb0f0ddac73eed3e399ee2be | 1,100 | asm | Assembly | If else programming exercises and solutions in C/3- C program to check whether a number is positive, negative or zero/project.asm | MahmoudFawzy01/C-solutions-Code4win- | 491d86770895ec4c31a69c7e3d47a88dedc4427a | [
"Apache-2.0"
] | null | null | null | If else programming exercises and solutions in C/3- C program to check whether a number is positive, negative or zero/project.asm | MahmoudFawzy01/C-solutions-Code4win- | 491d86770895ec4c31a69c7e3d47a88dedc4427a | [
"Apache-2.0"
] | null | null | null | If else programming exercises and solutions in C/3- C program to check whether a number is positive, negative or zero/project.asm | MahmoudFawzy01/C-solutions-Code4win- | 491d86770895ec4c31a69c7e3d47a88dedc4427a | [
"Apache-2.0"
] | null | null | null | .file "project.c"
.def __main; .scl 2; .type 32; .endef
.section .rdata,"dr"
.LC0:
.ascii "\12Input num1: \0"
.LC1:
.ascii "%d\0"
.LC2:
.ascii "Number is positive.\0"
.LC3:
.ascii "Number is negative.\0"
.LC4:
.ascii "Number is zero.\0"
.text
.globl main
.def main; .scl 2; .type 32; .endef
.seh_proc main
ma... | 18.032787 | 72 | 0.626364 |
841134aef66eaf1e4db76592adc76d3eb50bd16d | 1,000 | asm | Assembly | programs/oeis/014/A014217.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/014/A014217.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/014/A014217.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A014217: a(n) = floor(phi^n), where phi = (1+sqrt(5))/2 is the golden ratio.
; 1,1,2,4,6,11,17,29,46,76,122,199,321,521,842,1364,2206,3571,5777,9349,15126,24476,39602,64079,103681,167761,271442,439204,710646,1149851,1860497,3010349,4870846,7881196,12752042,20633239,33385281,54018521,87403802,141422324,228826126,37024... | 45.454545 | 729 | 0.788 |
2fe83084c67bcb0373c8e4c68de4ff6007084142 | 13,624 | asm | Assembly | aom_20170505/aom_dsp/x86/halfpix_variance_impl_sse2.asm | rainliu/aom_analyzer | 440652d155140c00a2827512a54103be3d6ff7e4 | [
"MIT"
] | null | null | null | aom_20170505/aom_dsp/x86/halfpix_variance_impl_sse2.asm | rainliu/aom_analyzer | 440652d155140c00a2827512a54103be3d6ff7e4 | [
"MIT"
] | null | null | null | aom_20170505/aom_dsp/x86/halfpix_variance_impl_sse2.asm | rainliu/aom_analyzer | 440652d155140c00a2827512a54103be3d6ff7e4 | [
"MIT"
] | null | null | null | ;
; 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 code in the LICENSE file, you can
; obtain it at ww... | 38.925714 | 109 | 0.388359 |
055262e9ead3933be7857eb1a59a17fe78e2353f | 1,477 | asm | Assembly | programs/oeis/135/A135673.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/135/A135673.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/135/A135673.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A135673: Ceiling(n + n^(2/3)).
; 2,4,6,7,8,10,11,12,14,15,16,18,19,20,22,23,24,25,27,28,29,30,32,33,34,35,36,38,39,40,41,43,44,45,46,47,49,50,51,52,53,55,56,57,58,59,61,62,63,64,65,66,68,69,70,71,72,73,75,76,77,78,79,80,82,83,84,85,86,87,89,90,91,92,93,94,96,97,98,99,100,101,103,104,105,106,107,108,109,111,112,113,11... | 36.02439 | 916 | 0.628301 |
bd34b0d2aaca2466ff1fda1b981fe7fc3336a3d2 | 1,104 | asm | Assembly | programs/oeis/198/A198263.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/198/A198263.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/198/A198263.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A198263: Ceiling(n*sqrt(8)).
; 0,3,6,9,12,15,17,20,23,26,29,32,34,37,40,43,46,49,51,54,57,60,63,66,68,71,74,77,80,83,85,88,91,94,97,99,102,105,108,111,114,116,119,122,125,128,131,133,136,139,142,145,148,150,153,156,159,162,165,167,170,173,176,179,182,184,187,190,193,196,198,201,204,207,210,213,215,218,221,224,227,230... | 69 | 961 | 0.712862 |
7c819cac5ea1ecade764464f9a6501721392d500 | 1,003 | asm | Assembly | books_and_notes/professional_courses/Assembly_language_and_programming/sources/汇编语言程序设计教程第四版/codes/9_3.asm | gxw1/review_the_national_post-graduate_entrance_examination | 8812779a7a4ce185a531d120562d5194b697c0c9 | [
"MIT"
] | 640 | 2019-03-30T11:32:43.000Z | 2022-03-31T14:05:18.000Z | books_and_notes/professional_courses/Assembly_language_and_programming/sources/汇编语言程序设计教程第四版/codes/9_3.asm | yyzVegst/review_the_national_post-graduate_entrance_examination | 8812779a7a4ce185a531d120562d5194b697c0c9 | [
"MIT"
] | 6 | 2019-07-22T01:57:24.000Z | 2022-01-20T15:03:16.000Z | books_and_notes/professional_courses/Assembly_language_and_programming/sources/汇编语言程序设计教程第四版/codes/9_3.asm | yyzVegst/review_the_national_post-graduate_entrance_examination | 8812779a7a4ce185a531d120562d5194b697c0c9 | [
"MIT"
] | 212 | 2019-04-10T02:31:50.000Z | 2022-03-30T02:32:47.000Z | STACK SEGMENT STACK
DW 100 DUP(?)
STACK ENDS
CODE SEGMENT
ASSUME CS:CODE,SS:STACK
START: MOV AH,1
INT 21H
SUB AL,20H
CMP AL,'A'
JB STOP
JZ ZAB
CMP AL,'Z'
JA STOP
JZ YZA ... | 20.895833 | 33 | 0.376869 |
f3273b2f85b392796edf2a5f5ae870949bc301cf | 168 | asm | Assembly | data/pokemon/dex_entries/slowpoke.asm | AtmaBuster/pokeplat-gen2 | fa83b2e75575949b8f72cb2c48f7a1042e97f70f | [
"blessing"
] | 6 | 2021-06-19T06:41:19.000Z | 2022-02-15T17:12:33.000Z | data/pokemon/dex_entries/slowpoke.asm | AtmaBuster/pokeplat-gen2-old | 01e42c55db5408d72d89133dc84a46c699d849ad | [
"blessing"
] | null | null | null | data/pokemon/dex_entries/slowpoke.asm | AtmaBuster/pokeplat-gen2-old | 01e42c55db5408d72d89133dc84a46c699d849ad | [
"blessing"
] | 3 | 2021-01-15T18:45:40.000Z | 2021-10-16T03:35:27.000Z | db "DOPEY@" ; species name
db "It is always so"
next "absent-minded that"
next "it won't react,"
page "even if its"
next "flavorful tail is"
next "bitten.@"
| 16.8 | 27 | 0.64881 |
273f4094d3cfab27992b2cd686796822249b1ffc | 5,891 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_40.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_40.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_40.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %r15
push %rax
push %rcx
push %rdx
lea addresses_D_ht+0x1cf28, %r15
nop
nop
inc %r12
mov $0x6162636465666768, %rax
movq %rax, %xmm1
movups %xmm1, (%r15)
nop
nop
nop
nop
nop
and $57587, %rdx
lea addresses_UC_ht+0x19aa8, %rcx
nop
nop
nop
and ... | 35.275449 | 2,999 | 0.656425 |
6b694d9ce2965cab26f631d10e3f09b1d304052a | 3,987 | asm | Assembly | data/tilesets/cinnabar_collision.asm | Trap-Master/spacworld97-thingy | a144827abecacdfec6cdc3baa32098e9290adf70 | [
"blessing"
] | null | null | null | data/tilesets/cinnabar_collision.asm | Trap-Master/spacworld97-thingy | a144827abecacdfec6cdc3baa32098e9290adf70 | [
"blessing"
] | null | null | null | data/tilesets/cinnabar_collision.asm | Trap-Master/spacworld97-thingy | a144827abecacdfec6cdc3baa32098e9290adf70 | [
"blessing"
] | null | null | null | tilecoll FLOOR, FLOOR, FLOOR, FLOOR ; 00
tilecoll FLOOR, FLOOR, FLOOR, FLOOR ; 01
tilecoll FLOOR, FLOOR, FLOOR, FLOOR ; 02
tilecoll FLOOR, FLOOR, FLOOR, FLOOR ; 03
tilecoll WALL, WALL, WALL, WALL ; 04
tilecoll WALL, WALL, DOOR, WALL ; 05
tilecoll WALL, WALL, WALL, WALL ; 06
tilecoll WALL, WALL, WALL, WALL ; 07
... | 39.87 | 47 | 0.702032 |
37ea87ab21463867dfc47a6f7a05e02c4e1ffc7f | 341 | asm | Assembly | programs/oeis/111/A111648.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/111/A111648.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/111/A111648.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A111648: a(n) = A001541(n)^2 + A001653(n)^2 + A002315(n)^2.
; 3,83,2811,95483,3243603,110187011,3743114763,127155714923,4319551192611,146737584833843,4984758333158043,169335045742539611,5752406796913188723,195412496049305876963
seq $0,38762 ; a(n) = 6*a(n-1) - a(n-2) for n >= 2, with a(0)=3, a(1)=13.
pow $0,2
sub $0... | 37.888889 | 167 | 0.709677 |
8c94df4da911d834988f60373b47f3960029885a | 627 | asm | Assembly | oeis/100/A100178.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/100/A100178.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/100/A100178.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A100178: Structured hexagonal diamond numbers (vertex structure 5).
; 1,8,29,72,145,256,413,624,897,1240,1661,2168,2769,3472,4285,5216,6273,7464,8797,10280,11921,13728,15709,17872,20225,22776,25533,28504,31697,35120,38781,42688,46849,51272,55965,60936,66193,71744,77597,83760,90241,97048,104189,111672,119505,127696,13... | 62.7 | 499 | 0.800638 |
0e42bd208eea589803186be20308448fe136c16b | 210 | asm | Assembly | src/test/resources/data/searchtests/opt-test3.asm | cpcitor/mdlz80optimizer | 75070d984e1f08474e6d397c7e0eb66d8be0c432 | [
"Apache-2.0"
] | 36 | 2020-06-29T06:52:26.000Z | 2022-02-10T19:41:58.000Z | src/test/resources/data/searchtests/opt-test3.asm | cpcitor/mdlz80optimizer | 75070d984e1f08474e6d397c7e0eb66d8be0c432 | [
"Apache-2.0"
] | 39 | 2020-07-02T18:19:34.000Z | 2022-03-27T18:08:54.000Z | src/test/resources/data/searchtests/opt-test3.asm | cpcitor/mdlz80optimizer | 75070d984e1f08474e6d397c7e0eb66d8be0c432 | [
"Apache-2.0"
] | 7 | 2020-07-02T06:00:05.000Z | 2021-11-28T17:31:13.000Z | org #4000
call f1
loop:
jr loop
f1:
ld a, b
or d
or c
jr nz, label1
ld l, 0
jr label2
label1:
ld a, b
cp c
ret
label2:
ld a, b
or d
or e
ret
| 8.076923 | 17 | 0.438095 |
0ef90a33dbf11f8606bf553d9cabbc74344e2e2e | 5,871 | asm | Assembly | Transynther/x86/_processed/NC/_zr_/i7-8650U_0xd2.log_21829_1415.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NC/_zr_/i7-8650U_0xd2.log_21829_1415.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NC/_zr_/i7-8650U_0xd2.log_21829_1415.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r13
push %r15
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x795d, %r15
nop
dec %r10
mov $0x6162636465666768, %r12
movq %r12, %xmm6
movups %xmm6, (%r15)
nop
nop
inc %r13
lea addresses_normal_ht+0x191e9, %rsi
lea addresses_D_ht+0x130bd, %rdi
sub ... | 35.581818 | 2,999 | 0.654233 |
4d31830da7fc714dbc08d07687c0ce931e8d8de9 | 895 | asm | Assembly | programs/oeis/314/A314205.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/314/A314205.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/314/A314205.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A314205: Coordination sequence Gal.5.133.5 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.
; 1,5,11,17,22,26,31,37,43,48,53,59,65,70,74,79,85,91,96,101,107,113,118,122,127,133,139,144,149,155,161,166,170,175,181,187,192,197,203,209,2... | 24.861111 | 186 | 0.620112 |
394409342b3e677bea8ec6d8071e8210e0a2a17b | 588 | asm | Assembly | src/hook_deploy_pfx_ninja.asm | szapp/Ninja | 7b018a5aa82bdb9f1eadea910ed1ff4711d4485a | [
"MIT"
] | 17 | 2018-07-11T20:53:46.000Z | 2022-03-01T18:20:42.000Z | src/hook_deploy_pfx_ninja.asm | szapp/Ninja | 7b018a5aa82bdb9f1eadea910ed1ff4711d4485a | [
"MIT"
] | 24 | 2018-10-23T07:47:33.000Z | 2021-02-09T09:06:25.000Z | src/hook_deploy_pfx_ninja.asm | szapp/Ninja | 7b018a5aa82bdb9f1eadea910ed1ff4711d4485a | [
"MIT"
] | null | null | null | ; Hook PFX parser in zCParticleFX::ParseParticleFXScript
%include "inc/macros.inc"
%if GOTHIC_BASE_VERSION == 1
%include "inc/symbols_g1.inc"
%elif GOTHIC_BASE_VERSION == 2
%include "inc/symbols_g2.inc"
%endif
%ifidn __OUTPUT_FORMAT__, bin
org g1g2(0x58CA22,0x5AC7BC)
%endif
bits 32
section .tex... | 22.615385 | 99 | 0.605442 |
f7086d6f5b921925feb05d37f00cfeb443c43dcf | 1,451 | asm | Assembly | programs/oeis/073/A073929.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/073/A073929.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/073/A073929.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A073929: a(1) = 1, a(n) = smallest number not included earlier such that the n-th partial sum (n>1) is divisible by n+1.
; 1,2,5,7,3,10,4,13,15,6,18,20,8,23,9,26,28,11,31,12,34,36,14,39,41,16,44,17,47,49,19,52,54,21,57,22,60,62,24,65,25,68,70,27,73,75,29,78,30,81,83,32,86,33,89,91,35,94,96,37,99,38,102,104,40,107,109... | 53.740741 | 893 | 0.678842 |
1e8ad7e2176beb38269d8130db19ff50cbb24e84 | 407 | asm | Assembly | programs/oeis/192/A192466.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/192/A192466.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/192/A192466.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A192466: Coefficient of x in the reduction by x^2->x+2 of the polynomial p(n,x)=1+x^n+x^(2n).
; 2,6,24,90,352,1386,5504,21930,87552,349866,1398784,5593770,22372352,89483946,357924864,1431677610,5726666752,22906579626,91626143744,366504225450,1466016202752,5864063412906,23456250855424,93824997829290
add $0,3
mov $1,4... | 27.133333 | 205 | 0.739558 |
ee2e46ca2dc2941a16e5db5282909a7a651c1571 | 80 | asm | Assembly | data/maps/headers/PewterNidoranHouse.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | 1 | 2022-02-15T00:19:44.000Z | 2022-02-15T00:19:44.000Z | data/maps/headers/PewterNidoranHouse.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | null | null | null | data/maps/headers/PewterNidoranHouse.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | null | null | null |
map_header PewterNidoranHouse, PEWTER_NIDORAN_HOUSE, HOUSE, 0
end_map_header
| 20 | 62 | 0.85 |
3c2aa1708083cd3363112f3517857bafff6162e5 | 37,041 | asm | Assembly | uprogs/echo.asm | zhiyihuang/xv6_rpi_port | 6dc126f558d0a9aecb60db92cf516d7597944689 | [
"MIT"
] | 36 | 2015-03-19T09:26:31.000Z | 2021-09-23T09:04:44.000Z | uprogs/echo.asm | zhiyihuang/xv6_rpi_port | 6dc126f558d0a9aecb60db92cf516d7597944689 | [
"MIT"
] | 4 | 2015-04-21T00:14:20.000Z | 2020-07-06T06:03:03.000Z | uprogs/echo.asm | zhiyihuang/xv6_rpi_port | 6dc126f558d0a9aecb60db92cf516d7597944689 | [
"MIT"
] | 15 | 2015-10-31T10:31:01.000Z | 2019-10-12T01:45:17.000Z |
_echo: file format elf32-littlearm
Disassembly of section .text:
00000000 <main>:
int
main(int argc, char *argv[])
{
int i;
for(i = 1; i < argc; i++)
0: e3500001 cmp r0, #1
#include "stat.h"
#include "user.h"
int
main(int argc, char *argv[])
{
4: e92d4878 push {r3, r4, r5, r6, fp, lr}
8: e1a060... | 22.233493 | 60 | 0.555979 |
74adb1ea8d5ed70ee0963a9c7d7a8e1cfd5c6874 | 374 | asm | Assembly | ee/hot/pick.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | ee/hot/pick.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | ee/hot/pick.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | ; Function to set PICK HOTKEY V2.00 1988 Tony Tebby QJUMP
section hotkey
xdef hot_pick
xref hot_seti
include 'dev8_ee_hk_data'
;+++
; Set up a PICK HOTKEY
;
; error = HOT_PICK (key,name)
;---
hot_pick
moveq #hki.pick,d6 ; set pick
jmp ... | 18.7 | 66 | 0.52139 |
4397f5b04cb3d26d23a921e0cf5fe163f2919933 | 332 | asm | Assembly | programs/oeis/070/A070386.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/070/A070386.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/070/A070386.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A070386: a(n) = 5^n mod 39.
; 1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8,1,5,25,8
mov $1,1
mov $2,$0
lpb $2
mul $1,5
mod $1,39
sub $2,1
lp... | 27.666667 | 226 | 0.539157 |
44ba472678a2dbb1a2d89ebf957d01a2fd8a95e8 | 690 | asm | Assembly | data/types/names.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | 1 | 2022-02-15T00:19:44.000Z | 2022-02-15T00:19:44.000Z | data/types/names.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | null | null | null | data/types/names.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | null | null | null | TypeNames:
table_width 2, TypeNames
dw .Sound
dw .Fighting
dw .Flying
dw .Poison
dw .Ground
dw .Rock
dw .Bird
dw .Bug
dw .Ghost
REPT FIRE - GHOST - 1
dw .Normal
ENDR
dw .Fire
dw .Water
dw .Grass
dw .Electric
dw .Psychic
dw .Ice
dw .Dragon
assert_table_length NUM_TYPES
.Sound: db "SOUND@"
.Fig... | 15.333333 | 30 | 0.604348 |
3ea9e18da21190c4fd2076e105c903fdc81f0317 | 10,463 | asm | Assembly | nes-test-roms/stomper/smwstomp.asm | joebentley/ones | d2c7d21bd94dda9d312c56a197cddec164035d4f | [
"BSD-2-Clause"
] | 1,461 | 2022-02-25T17:44:34.000Z | 2022-03-30T06:18:29.000Z | nes-test-roms/stomper/smwstomp.asm | joebentley/ones | d2c7d21bd94dda9d312c56a197cddec164035d4f | [
"BSD-2-Clause"
] | 20 | 2020-11-09T19:57:25.000Z | 2021-12-24T07:09:53.000Z | nes-test-roms/stomper/smwstomp.asm | joebentley/ones | d2c7d21bd94dda9d312c56a197cddec164035d4f | [
"BSD-2-Clause"
] | 34 | 2022-02-25T19:53:56.000Z | 2022-03-31T07:25:28.000Z | ;SMW Stomper
;A Demonstration of Smooth Mid-Screen Vertical Scrolling
;WITHOUT the need for an 8 scanline 'buffer' region
;Quietust, 2002/05/18
temp:
temp_l: .block 1
temp_h: .block 1
even_frame: .block 1
shake_y: .block 1
screen_x: .block 1
screen_y: .block 1
stomper_x: .block 1
stomper_y: .block 1
irq_num: .block ... | 23.199557 | 71 | 0.609481 |
c44d6d4b9f6b2e0ed01bd304bbc6e894c53f9e77 | 8,106 | asm | Assembly | dino/lc/scene.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | a4a0c86c200241494b3f1834cd0aef8dc02f7683 | [
"Apache-2.0"
] | 6 | 2020-10-14T15:29:10.000Z | 2022-02-12T18:58:54.000Z | dino/lc/scene.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | a4a0c86c200241494b3f1834cd0aef8dc02f7683 | [
"Apache-2.0"
] | null | null | null | dino/lc/scene.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | a4a0c86c200241494b3f1834cd0aef8dc02f7683 | [
"Apache-2.0"
] | 1 | 2020-12-17T08:59:10.000Z | 2020-12-17T08:59:10.000Z | copyright zengfr site:http://github.com/zengfr/romhack
018078 move.b ($4d9,A5), D0
01807C lsl.w #2, D0
01807E moveq #$0, D1
018080 move.b ($786,A5), D1
018084 add.w D1, D0
018086 move.b ($c,PC,D0.w), D1
01808A subq.b #1, D1
;--------
01E3C4 lsl.w #4, D0
01E3C6 lea ($2c,PC,D0.w), A0 ... | 25.570978 | 54 | 0.533925 |
758fbba2198c60ddd2e3b4a7dba5176d419753a8 | 12,114 | nasm | Assembly | AmdSevPkg/ResumeFromEfi/RestoreState.nasm | secure-migration/resume-from-efi-edk2 | 5decc7e941353f10a50ea0736f93811a0d3f2e99 | [
"Python-2.0",
"Zlib",
"BSD-2-Clause",
"MIT",
"BSD-2-Clause-Patent",
"BSD-3-Clause"
] | null | null | null | AmdSevPkg/ResumeFromEfi/RestoreState.nasm | secure-migration/resume-from-efi-edk2 | 5decc7e941353f10a50ea0736f93811a0d3f2e99 | [
"Python-2.0",
"Zlib",
"BSD-2-Clause",
"MIT",
"BSD-2-Clause-Patent",
"BSD-3-Clause"
] | null | null | null | AmdSevPkg/ResumeFromEfi/RestoreState.nasm | secure-migration/resume-from-efi-edk2 | 5decc7e941353f10a50ea0736f93811a0d3f2e99 | [
"Python-2.0",
"Zlib",
"BSD-2-Clause",
"MIT",
"BSD-2-Clause-Patent",
"BSD-3-Clause"
] | null | null | null | #include "StateLayout.h"
%define ENABLE_DEBUG
DEFAULT REL
SECTION .text
extern ASM_PFX(gIntermediateCR3)
extern ASM_PFX(gSourceCpuStateCR4)
extern ASM_PFX(gRelocatedResumeCpuStatePhase2)
extern ASM_PFX(gRelocatedResumeCpuStatePhase3)
%define X86_CR4_PGE BIT7
%define FLAG_POSITION 0xf00
%define FLAG_RESTO... | 27.848276 | 107 | 0.653376 |
3bf0f8e2e91c55d347f5b8bea68c97b8eb936561 | 321 | asm | Assembly | programs/oeis/004/A004966.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/004/A004966.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/004/A004966.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A004966: a(n) = ceiling(n*phi^11), where phi is the golden ratio, A001622.
; 0,200,399,598,797,996,1195,1394,1593,1792,1991,2190,2389,2588,2787,2986,3185,3384,3583,3782,3981,4180,4379,4578,4777,4976,5175,5374,5573,5772,5971,6170,6369,6568,6767
mov $1,$0
trn $1,1
mov $2,$0
sub $0,$1
lpb $2
add $0,199
sub $2,1
lpe... | 26.75 | 168 | 0.697819 |
30e85a733c609fb92e41390a76668f09858dcde1 | 685 | asm | Assembly | programs/oeis/078/A078734.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/078/A078734.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/078/A078734.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A078734: Start with 1,2, concatenate 2^k previous terms and change last term as follows: 1->2, 2->3, 3->1.
; 1,2,1,3,1,2,1,1,1,2,1,3,1,2,1,2,1,2,1,3,1,2,1,1,1,2,1,3,1,2,1,3,1,2,1,3,1,2,1,1,1,2,1,3,1,2,1,2,1,2,1,3,1,2,1,1,1,2,1,3,1,2,1,1,1,2,1,3,1,2,1,1,1,2,1,3,1,2,1,2,1,2,1,3,1,2,1,1,1,2,1,3,1,2,1,3,1,2,1,3,1,2,1,1,1... | 62.272727 | 501 | 0.540146 |
159b19a9a779be00fd24d7fb5acee99a67c88352 | 133 | asm | Assembly | Bank_H/3_startinit.asm | ndf-zz/fv1testing | 1ea474b6d93e888f091de15bcaed0d5a57905f22 | [
"CC0-1.0"
] | null | null | null | Bank_H/3_startinit.asm | ndf-zz/fv1testing | 1ea474b6d93e888f091de15bcaed0d5a57905f22 | [
"CC0-1.0"
] | null | null | null | Bank_H/3_startinit.asm | ndf-zz/fv1testing | 1ea474b6d93e888f091de15bcaed0d5a57905f22 | [
"CC0-1.0"
] | 1 | 2019-11-26T12:02:28.000Z | 2019-11-26T12:02:28.000Z | ; FV-1 Testing
;
; Program: Prepare Test 4
;
or 0x7fffff
skp RUN,main
wrax REG0,1.0
main: wrax DACL,0.0
ldax REG0
wrax DACR,0.0
| 12.090909 | 25 | 0.684211 |
398e6bbfb12dfb67e58137e1178b183b1ee9f02b | 6,010 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2078.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2078.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2078.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %r14
push %rax
push %rbx
push %rdx
lea addresses_WC_ht+0x1a85e, %r13
nop
xor $45889, %rdx
mov $0x6162636465666768, %r14
movq %r14, (%r13)
nop
nop
nop
nop
nop
inc %r13
lea addresses_UC_ht+0xbec2, %rdx
nop
nop
nop
nop
nop
sub %rax, %rax
movw ... | 38.280255 | 2,999 | 0.654742 |
dd92ac440589c135eb00fba2115250ba17a492cf | 7,009 | asm | Assembly | scripts/Route17.asm | AmateurPanda92/pokemon-rby-dx | f7ba1cc50b22d93ed176571e074a52d73360da93 | [
"MIT"
] | 9 | 2020-07-12T19:44:21.000Z | 2022-03-03T23:32:40.000Z | scripts/Route17.asm | JStar-debug2020/pokemon-rby-dx | c2fdd8145d96683addbd8d9075f946a68d1527a1 | [
"MIT"
] | 7 | 2020-07-16T10:48:52.000Z | 2021-01-28T18:32:02.000Z | scripts/Route17.asm | JStar-debug2020/pokemon-rby-dx | c2fdd8145d96683addbd8d9075f946a68d1527a1 | [
"MIT"
] | 2 | 2021-03-28T18:33:43.000Z | 2021-05-06T13:12:09.000Z | Route17_Script:
call EnableAutoTextBoxDrawing
ld hl, Route17TrainerHeader0
ld de, Route17_ScriptPointers
ld a, [wRoute17CurScript]
call ExecuteCurMapScriptInTable
ld [wRoute17CurScript], a
ret
Route17_ScriptPointers:
dw CheckFightingMapTrainers
dw DisplayEnemyTrainerTextAndStartBattle
dw EndTrainerBattle
Ro... | 21.368902 | 52 | 0.829362 |
342576309213c9c9800e2b9633f08f4382bc1779 | 2,029 | asm | Assembly | Source/Levels/L0609.asm | AbePralle/FGB | 52f004b8d9d4091a2a242a012dc8c1f90d4c160d | [
"MIT"
] | null | null | null | Source/Levels/L0609.asm | AbePralle/FGB | 52f004b8d9d4091a2a242a012dc8c1f90d4c160d | [
"MIT"
] | null | null | null | Source/Levels/L0609.asm | AbePralle/FGB | 52f004b8d9d4091a2a242a012dc8c1f90d4c160d | [
"MIT"
] | null | null | null | ; L0609.asm outback farm
; Generated 11.05.2000 by mlevel
; Modified 11.05.2000 by Abe Pralle
INCLUDE "Source/Defs.inc"
INCLUDE "Source/Levels.inc"
WATERINDEX EQU 4
VAR_WATER EQU 0
;---------------------------------------------------------------------
SECTION "Level0609Section",ROMX
;------------------------------... | 27.053333 | 70 | 0.426811 |
134459625d51bde8c097eb41a36e38d38d3cca55 | 760 | asm | Assembly | asm/showtext/main.asm | BoKoIsMe/J1900_FreeBSD | 19c4f7f01a37f4eda11a64040dad307a06563fb9 | [
"BSD-2-Clause"
] | null | null | null | asm/showtext/main.asm | BoKoIsMe/J1900_FreeBSD | 19c4f7f01a37f4eda11a64040dad307a06563fb9 | [
"BSD-2-Clause"
] | null | null | null | asm/showtext/main.asm | BoKoIsMe/J1900_FreeBSD | 19c4f7f01a37f4eda11a64040dad307a06563fb9 | [
"BSD-2-Clause"
] | null | null | null | .286
.model small,stdcall
include showtext.inc
includelib showtext.lib
drawChar proto,location:WORD,char:BYTE,color:BYTE
.data
currentPosition COORD <0,0>
szString db "Welcom to the ASM world.",0dh,0ah,0
LENSTRING EQU $ - szString
.stack 200h
.code
.startup
push ds
pop es
mov ah,0002h
int 10... | 19 | 93 | 0.717105 |
59fd2e53ab77246c06d8db1c21f90c4b710321bc | 330 | asm | Assembly | oeis/005/A005856.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/005/A005856.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/005/A005856.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A005856: The coding-theoretic function A(n,10,8).
; 1,1,1,1,1,2,2,3,4,6,9,12,17,21
mov $2,$0
lpb $0
sub $2,5
mov $0,$2
add $1,1
lpb $2
add $1,1
lpb $2
mov $4,$3
cmp $4,0
add $3,$4
sub $0,$3
sub $1,$3
add $1,$0
trn $2,2
lpe
trn $2,8
lpe
lpe
mov $0,$1... | 13.2 | 51 | 0.457576 |
c6657dc9b1a33f56e8d1a8d859729dd0d52edb37 | 416 | asm | Assembly | programs/oeis/332/A332126.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/332/A332126.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/332/A332126.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A332126: a(n) = 2*(10^(2n+1)-1)/9 + 4*10^n.
; 6,262,22622,2226222,222262222,22222622222,2222226222222,222222262222222,22222222622222222,2222222226222222222,222222222262222222222,22222222222622222222222,2222222222226222222222222,222222222222262222222222222,22222222222222622222222222222,2222222222222226222222222222222
... | 29.714286 | 273 | 0.793269 |
6fd28ac31142f526d3111c590137adf17778f223 | 35,067 | asm | Assembly | s3d/music-original/Credits.asm | Cancer52/flamedriver | 9ee6cf02c137dcd63e85a559907284283421e7ba | [
"0BSD"
] | 9 | 2017-10-09T20:28:45.000Z | 2021-06-29T21:19:20.000Z | s3d/music-original/Credits.asm | Cancer52/flamedriver | 9ee6cf02c137dcd63e85a559907284283421e7ba | [
"0BSD"
] | 12 | 2018-08-01T13:52:20.000Z | 2022-02-21T02:19:37.000Z | s3d/music-original/Credits.asm | Cancer52/flamedriver | 9ee6cf02c137dcd63e85a559907284283421e7ba | [
"0BSD"
] | 2 | 2018-02-17T19:50:36.000Z | 2019-10-30T19:28:06.000Z | Snd_Credits_Header:
smpsHeaderStartSong 3
smpsHeaderVoice Snd_Credits_Voices
smpsHeaderChan $06, $03
smpsHeaderTempo $01, $40
smpsHeaderDAC Snd_Credits_DAC
smpsHeaderFM Snd_Credits_FM1, $00, $12
smpsHeaderFM Snd_Credits_FM2, $F4, $19
smpsHeaderFM Snd_Credits_FM3, $F4, $1... | 38.87694 | 101 | 0.572932 |
01fd370aa2741bbcf42c4f1339668c0ef55014bf | 335 | asm | Assembly | lab_06/output.asm | ak-karimzai/asm | e5433922cbb69cae3c03be86447e0e83fbd8cb0b | [
"Unlicense"
] | null | null | null | lab_06/output.asm | ak-karimzai/asm | e5433922cbb69cae3c03be86447e0e83fbd8cb0b | [
"Unlicense"
] | null | null | null | lab_06/output.asm | ak-karimzai/asm | e5433922cbb69cae3c03be86447e0e83fbd8cb0b | [
"Unlicense"
] | 2 | 2021-06-07T06:29:31.000Z | 2021-06-08T16:52:03.000Z | extern new_line:byte
public print
code_seg segment para public 'code'
assume cs:code_seg
start:
print proc near
mov dx, offset new_line
mov ah, 09
int 21h
mov dx, bx
int 21h
mov dx, offset new_line
int 21h
ret
print endp
code_seg end... | 16.75 | 35 | 0.579104 |
a6929e8f8beb72af2b1cbb81b07babede6f313a2 | 6,787 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_12370_73.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_12370_73.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_12370_73.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r8
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0xcf7a, %rsi
lea addresses_UC_ht+0x8756, %rdi
nop
nop
nop
and %r13, %r13
mov $118, %rcx
rep movsw
nop
nop
nop
sub $57065, %r10
lea addresses_UC_ht+0x16a56, %rbp
add $12755, %rb... | 33.269608 | 2,999 | 0.655223 |
3a4862bc19ecc57b41016fcce55d132acac62ab6 | 2,186 | asm | Assembly | libsrc/target/vz/stdio/generic_console_ioctl.asm | Frodevan/z88dk | f27af9fe840ff995c63c80a73673ba7ee33fffac | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/target/vz/stdio/generic_console_ioctl.asm | Frodevan/z88dk | f27af9fe840ff995c63c80a73673ba7ee33fffac | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/target/vz/stdio/generic_console_ioctl.asm | Frodevan/z88dk | f27af9fe840ff995c63c80a73673ba7ee33fffac | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z |
MODULE generic_console_ioctl
PUBLIC generic_console_ioctl
SECTION code_clib
EXTERN generic_console_cls
EXTERN __console_h
EXTERN __console_w
EXTERN __vz200_mode
EXTERN generic_console_font32
... | 28.763158 | 137 | 0.467521 |
d90a791ae0c1045fdfd93bc853bbca99faa35522 | 638 | asm | Assembly | malban/Release/VRelease/Release.History/VRelease_2017_04_23/Song/track_09_08.asm | mikepea/vectrex-playground | 0de7d2d6db0914d915f4334402f747ab3bcdc7e6 | [
"0BSD"
] | 5 | 2018-01-14T10:03:50.000Z | 2020-01-17T13:53:49.000Z | malban/Release/VRelease/Release.History/VRelease_2017_04_23/Song/track_09_08.asm | mikepea/vectrex-playground | 0de7d2d6db0914d915f4334402f747ab3bcdc7e6 | [
"0BSD"
] | null | null | null | malban/Release/VRelease/Release.History/VRelease_2017_04_23/Song/track_09_08.asm | mikepea/vectrex-playground | 0de7d2d6db0914d915f4334402f747ab3bcdc7e6 | [
"0BSD"
] | null | null | null | dw $0040
track_09_08:
db $FF, $18, $97, $DE, $63, $FE, $1A, $7E, $E6, $34
db $ED, $FC, $70, $30, $FF, $BC, $9E, $3F, $18, $F9
db $DE, $8E, $3D, $6F, $27, $8F, $FD, $E8, $E9, $C4
db $BE, $EA, $A3, $EE, $FD, $2F, $3F, $A8, $F6, $8C
db $4B, $AC, $E1, $D3, $48, $FF, $18, $7D, $E6, $3F
db $E1, $A7, $EE, $63, $4E, $DF... | 45.571429 | 52 | 0.4279 |
198e500af4267ca77cc07f7a50896384de647598 | 289 | asm | Assembly | programs/oeis/176/A176514.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/176/A176514.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/176/A176514.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A176514: Period 6: repeat [3, 1, 1, 3, 2, 1].
; 3,1,1,3,2,1,3,1,1,3,2,1,3,1,1,3,2,1,3,1,1,3,2,1,3,1,1,3,2,1,3,1,1,3,2,1,3,1,1,3,2,1,3,1,1,3,2,1,3,1,1,3,2,1,3,1,1,3,2,1,3,1,1,3,2,1,3,1,1,3,2,1,3,1,1,3,2,1,3,1,1,3,2,1,3,1,1,3,2,1,3,1,1,3,2,1,3,1,1,3
mov $2,$0
mod $0,3
sub $0,3
gcd $0,$2
| 36.125 | 201 | 0.50519 |
776fc54afa45f0147e659408594b131a5bc357e1 | 140 | asm | Assembly | test_data/ligador_carregador/moodle_B.asm | Perruci/sb20172 | c7e803c97e389ff7455e6a10cfa238175a186cb4 | [
"MIT"
] | null | null | null | test_data/ligador_carregador/moodle_B.asm | Perruci/sb20172 | c7e803c97e389ff7455e6a10cfa238175a186cb4 | [
"MIT"
] | 1 | 2017-10-22T01:43:05.000Z | 2017-10-22T01:46:29.000Z | test_data/ligador_carregador/moodle_B.asm | Perruci/sb20172 | c7e803c97e389ff7455e6a10cfa238175a186cb4 | [
"MIT"
] | null | null | null |
mod_b: begin
section text
val: extern
l1: extern
public y
public mod_b
output y
output val
output y + 2
jmp l1
section data
y: space 3
end
| 9.333333 | 12 | 0.757143 |
448f87c4cd31acc6529c986d637a1223e20acfaa | 828 | asm | Assembly | oeis/083/A083559.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/083/A083559.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/083/A083559.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A083559: Nearest integer to 1/(Sum_{k>=n} 1/k^4).
; 1,12,50,134,280,507,834,1277,1855,2586,3489,4580,5878,7401,9168,11195,13501,16104,19023,22274,25876,29847,34206,38969,44155,49782,55869,62432,69490,77061,85164,93815,103033,112836,123243,134270,145936,158259,171258,184949,199351,214482,230361,247004,264430,282657,30... | 43.578947 | 498 | 0.742754 |
2edf58c0177046ae18385469679671b1b5dff220 | 3,129 | asm | Assembly | src/setup.asm | freem/freem_pong | e7236e05d304cafe5ac7341bbc05607e5c3172c4 | [
"Unlicense"
] | 1 | 2021-09-13T18:05:13.000Z | 2021-09-13T18:05:13.000Z | src/setup.asm | freem/freem_pong | e7236e05d304cafe5ac7341bbc05607e5c3172c4 | [
"Unlicense"
] | 4 | 2016-07-10T20:59:49.000Z | 2016-07-10T21:02:25.000Z | src/setup.asm | freem/freem_pong | e7236e05d304cafe5ac7341bbc05607e5c3172c4 | [
"Unlicense"
] | null | null | null | ; Program Setup
;==============================================================================;
ProgramSetup:
; lots of this will differ for PCE/NES.
;==============================================================================;
; NES-specific section
;==============================================================... | 21 | 80 | 0.613934 |
c778f1c556466aabd5720197af154973f1b3324c | 86 | asm | Assembly | gfx/pokemon/ivysaur/anim_idle.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 28 | 2019-11-08T07:19:00.000Z | 2021-12-20T10:17:54.000Z | gfx/pokemon/ivysaur/anim_idle.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 13 | 2020-01-11T17:00:40.000Z | 2021-09-14T01:27:38.000Z | gfx/pokemon/ivysaur/anim_idle.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 22 | 2020-05-28T17:31:38.000Z | 2022-03-07T20:49:35.000Z | setrepeat 2
frame 0, 07
frame 3, 07
dorepeat 1
frame 0, 08
frame 1, 06
endanim
| 10.75 | 12 | 0.674419 |
8ce5e7a78d070fdb15b66f608843b4ca66e9b7b4 | 35,405 | asm | Assembly | Appl/Calendar/DayPlan/dayplanPrint.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Appl/Calendar/DayPlan/dayplanPrint.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Appl/Calendar/DayPlan/dayplanPrint.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 73 | 2018-11-19T20:46:53.000Z | 2022-03-29T00:59:26.000Z | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1989 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Calendar/DayPlan
FILE: dayplanPrint.asm
AUTHOR: Don Reeves, May 27, 1990
ROUTINES:
Name Description
---- -----------
DayPlanPrint High l... | 29.260331 | 79 | 0.632679 |
3ef4fc3504d723bdd2d8a5558ca21180fc73b4ba | 37,111 | asm | Assembly | tmp1/c55x-sim2/foo/Debug/sd_test.asm | jwestmoreland/eZdsp-DBG-sim | f6eacd75d4f928dec9c751545e9e919d052e4ade | [
"MIT"
] | 1 | 2020-08-27T11:31:13.000Z | 2020-08-27T11:31:13.000Z | tmp1/c55x-sim2/foo/Debug/sd_test.asm | jwestmoreland/eZdsp-DBG-sim | f6eacd75d4f928dec9c751545e9e919d052e4ade | [
"MIT"
] | null | null | null | tmp1/c55x-sim2/foo/Debug/sd_test.asm | jwestmoreland/eZdsp-DBG-sim | f6eacd75d4f928dec9c751545e9e919d052e4ade | [
"MIT"
] | null | null | null | ;*******************************************************************************
;* TMS320C55x C/C++ Codegen PC v4.4.1 *
;* Date/Time created: Sat Sep 29 23:07:17 2018 *
;****************************************************************************... | 44.391148 | 134 | 0.645307 |
16c4d2d24372c599ec03cdb4b86346137448ff3b | 3,426 | asm | Assembly | B2G/external/libvpx/vp8/common/arm/neon/shortidct4x4llm_neon.asm | wilebeast/FireFox-OS | 43067f28711d78c429a1d6d58c77130f6899135f | [
"Apache-2.0"
] | 3 | 2015-08-31T15:24:31.000Z | 2020-04-24T20:31:29.000Z | third_party/libvpx/source/libvpx/vp8/common/arm/neon/shortidct4x4llm_neon.asm | roisagiv/webrtc-ios | 953395a7d7a0922c825edb2304d2e458f3392686 | [
"BSD-3-Clause"
] | null | null | null | third_party/libvpx/source/libvpx/vp8/common/arm/neon/shortidct4x4llm_neon.asm | roisagiv/webrtc-ios | 953395a7d7a0922c825edb2304d2e458f3392686 | [
"BSD-3-Clause"
] | 4 | 2015-09-16T11:40:39.000Z | 2019-06-10T01:08:46.000Z | ;
; Copyright (c) 2010 The WebM project authors. All Rights Reserved.
;
; Use of this source code is governed by a BSD-style license
; that can be found in the LICENSE file in the root of the source
; tree. An additional intellectual property rights grant can be found
; in the file PATENTS. All contributing proje... | 27.408 | 96 | 0.508173 |
1954c6a27a3d0ecf3cd7b969239d2b674f81a20d | 6,841 | asm | Assembly | Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xca_notsx.log_21829_801.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xca_notsx.log_21829_801.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xca_notsx.log_21829_801.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r15
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x19689, %rbp
nop
nop
nop
add $9520, %rdx
mov (%rbp), %rax
nop
nop
add $29769, %r14
lea addresses_D_ht+0x1e6c1, %rdi
nop
cmp %r15, %r15
mov $0x6162636465666768, ... | 34.725888 | 2,999 | 0.661599 |
efffd42bbf456a11cacf074d5ddff552bb906dd8 | 493 | asm | Assembly | programs/oeis/327/A327917.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/327/A327917.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/327/A327917.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A327917: Triangle T read by rows: T(k, n) = A(k-n, k) with the array A(k, n) = F(2*k+n) = A000045(2*k+n), for k >= 0 and n >= 0.
; 0,1,1,3,2,1,8,5,3,2,21,13,8,5,3,55,34,21,13,8,5,144,89,55,34,21,13,8,377,233,144,89,55,34,21,13,987,610,377,233,144,89,55,34,21,2584,1597,987,610,377,233,144,89,55,34,6765,4181,2584,1597,... | 82.166667 | 214 | 0.604462 |
14d5e81602902fdf336cb1dfb4ca3aba70626d62 | 11,349 | asm | Assembly | libtool/src/gmp-6.1.2/mpn/ia64/mode1o.asm | kroggen/aergo | 05af317eaa1b62b21dc0144ef74a9e7acb14fb87 | [
"MIT"
] | 1,602 | 2015-01-06T11:26:31.000Z | 2022-03-30T06:17:21.000Z | libtool/src/gmp-6.1.2/mpn/ia64/mode1o.asm | kroggen/aergo | 05af317eaa1b62b21dc0144ef74a9e7acb14fb87 | [
"MIT"
] | 11,789 | 2015-01-05T04:50:15.000Z | 2022-03-31T23:39:19.000Z | libtool/src/gmp-6.1.2/mpn/ia64/mode1o.asm | kroggen/aergo | 05af317eaa1b62b21dc0144ef74a9e7acb14fb87 | [
"MIT"
] | 498 | 2015-01-08T18:58:18.000Z | 2022-03-20T15:37:45.000Z | dnl Itanium-2 mpn_modexact_1c_odd -- mpn by 1 exact remainder.
dnl Contributed to the GNU project by Kevin Ryde.
dnl Copyright 2003-2005 Free Software Foundation, Inc.
dnl This file is part of the GNU MP Library.
dnl
dnl The GNU MP Library is free software; you can redistribute it and/or modify
dnl it under th... | 33.087464 | 79 | 0.698388 |
cf9725c7dea010c794abb3cf36303f7b419e3757 | 871 | asm | Assembly | oeis/027/A027976.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/027/A027976.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/027/A027976.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A027976: n-th diagonal sum of right justified array T given by A027960.
; 1,1,4,6,10,18,29,47,78,126,204,332,537,869,1408,2278,3686,5966,9653,15619,25274,40894,66168,107064,173233,280297,453532,733830,1187362,1921194,3108557,5029751,8138310,13168062,21306372,34474436,55780809,90255245,146036056,236291302,382327358,61... | 34.84 | 489 | 0.748565 |
bff2ea677a3ae532183518aa0017c482ad06b9be | 981 | asm | Assembly | programs/oeis/083/A083254.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/083/A083254.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/083/A083254.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A083254: a(n) = 2*phi(n) - n.
; 1,0,1,0,3,-2,5,0,3,-2,9,-4,11,-2,1,0,15,-6,17,-4,3,-2,21,-8,15,-2,9,-4,27,-14,29,0,7,-2,13,-12,35,-2,9,-8,39,-18,41,-4,3,-2,45,-16,35,-10,13,-4,51,-18,25,-8,15,-2,57,-28,59,-2,9,0,31,-26,65,-4,19,-22,69,-24,71,-2,5,-4,43,-30,77,-16,27,-2,81,-36,43,-2,25,-8,87,-42,53,-4,27,-2,49,-32,95,... | 109 | 830 | 0.557594 |
ec978320b4e4e743526f7a428b830eb43c1267a5 | 3,626 | asm | Assembly | chapter7/Project6.asm | pcooksey/Assembly-x86-64 | 4abe63454787eaea78e10de545bb61b047f702c1 | [
"MIT"
] | null | null | null | chapter7/Project6.asm | pcooksey/Assembly-x86-64 | 4abe63454787eaea78e10de545bb61b047f702c1 | [
"MIT"
] | null | null | null | chapter7/Project6.asm | pcooksey/Assembly-x86-64 | 4abe63454787eaea78e10de545bb61b047f702c1 | [
"MIT"
] | null | null | null | ;;;
;;; This is Suggested Project 7.9.2.6
;;; Basically do simple signed addition, subtraction, multiplication, modulo
;;; With signed double-word and quad-word sizes
;;; Pg. 137 for the problem
;;; Pg. 24 for Registers
;;; Pg. 48 for Data Types
SECTION .data
SUCCESS: equ 0 ; Default success value
SYS_EXIT: ... | 36.626263 | 84 | 0.516547 |
224713139c2ce6a925e8ba3c7db54a2f3e6d2844 | 4,397 | asm | Assembly | MIPS Runner/MIPS Runner/Long.asm | VuHuy-cse-9/MIPS-Runner | aea3adaa68fdce18e73ae4452977cf33e423ce98 | [
"MIT"
] | null | null | null | MIPS Runner/MIPS Runner/Long.asm | VuHuy-cse-9/MIPS-Runner | aea3adaa68fdce18e73ae4452977cf33e423ce98 | [
"MIT"
] | null | null | null | MIPS Runner/MIPS Runner/Long.asm | VuHuy-cse-9/MIPS-Runner | aea3adaa68fdce18e73ae4452977cf33e423ce98 | [
"MIT"
] | 1 | 2020-11-26T17:28:30.000Z | 2020-11-26T17:28:30.000Z | .data
array: .word 5, 1, 50, 26, 17, 20, 9, 12, 42, 85, 99, 33, 46, 75, 80, 19, 55, 56, 57, 60, 42, 53, 44, 11, 98, 97, 69, 96, 2, 77, 66, 32, 13, 91, 89, 30, 50, 51, 76, 40, 3, 4, 6, 7, 8, 9, 10, 82, 81, 71
size: .word 50
spaceSymb: .asciiz " "
.text
.globl _main
_main:
la $a0, array
add $a1, $0, $0
lw $a2, s... | 21.767327 | 202 | 0.544235 |
8a2201d7b0cab979cbaaedf3c7bf23f97e560234 | 359 | asm | Assembly | programs/oeis/083/A083088.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/083/A083088.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/083/A083088.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A083088: First column of table A083087.
; 1,2,4,6,7,9,11,12,14,16,18,19,21,23,24,26,28,30,31,33,35,36,38,40,41,43,45,47,48,50,52,53,55,57,59,60,62,64,65,67,69,70,72,74,76,77,79,81,82,84,86,88,89,91,93,94,96,98,100,101,103,105,106,108,110,111,113,115
mov $2,$0
pow $0,2
div $0,2
lpb $0,1
add $1,1
sub $0,$1
sub $... | 23.933333 | 209 | 0.626741 |
5e90933978f22320091a30e2c99e8baa38670918 | 2,655 | asm | Assembly | cpm/ndos/necho.asm | erikp9000/cpm-ndos | d2e17f3aa11e22d30510278e78814151934355d2 | [
"MIT"
] | null | null | null | cpm/ndos/necho.asm | erikp9000/cpm-ndos | d2e17f3aa11e22d30510278e78814151934355d2 | [
"MIT"
] | 7 | 2020-06-03T01:12:06.000Z | 2020-06-12T19:11:33.000Z | cpm/ndos/necho.asm | erikp9000/cpm-ndos | d2e17f3aa11e22d30510278e78814151934355d2 | [
"MIT"
] | null | null | null | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; NECHO.ASM
;;
;; NDOS Message echo
;;
;; On start, dma contains command line argument length byte
;; and command line.
;; Stack pointer should be within CCP.
;; Check for NDOS; display error if not running.
;; Copy command line arguments to buf and call NDOS to sen... | 18.964286 | 84 | 0.592844 |
b010284a56bd330e7d03d724cd91a39bfc827e4c | 374 | asm | Assembly | pd-x16-build.asm | lvcabral/x16-petdraw | ebe580db6e4a368055cef366003482bee44a3f35 | [
"MIT"
] | null | null | null | pd-x16-build.asm | lvcabral/x16-petdraw | ebe580db6e4a368055cef366003482bee44a3f35 | [
"MIT"
] | null | null | null | pd-x16-build.asm | lvcabral/x16-petdraw | ebe580db6e4a368055cef366003482bee44a3f35 | [
"MIT"
] | null | null | null | //Petdraw (Commander X16 version)
//by David Murray 2019
//dfwgreencars@gmail.com
//
//Converted to KickAssembler
//by Marcelo Lv Cabral 2020
//https://github.com/lvcabral
.cpu _65c02
#import "pd-x16-main.asm"
#import "pd-x16-editor.asm"
#import "pd-x16-pixel.asm"
#import "pd-x16-screen.asm"
#import "pd-x16-disk.asm"... | 20.777778 | 33 | 0.724599 |
427ca624ff1177d0526e32c79a2dd113db63dbec | 436 | asm | Assembly | oeis/333/A333695.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/333/A333695.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/333/A333695.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A333695: Numerators of coefficients in expansion of Sum_{k>=1} phi(k) * log(1/(1 - x^k)).
; Submitted by Christian Krause
; 1,3,7,11,21,7,43,43,61,63,111,77,157,129,49,171,273,61,343,231,43,333,507,301,521,471,547,473,813,147,931,683,259,819,129,671,1333,1029,1099,903,1641,43,1807,111,427,1521,2163,399,2101,1563,637,... | 39.636364 | 214 | 0.674312 |
8fd8520e386ed305922cc342b2d7586588bb5216 | 698 | asm | Assembly | oeis/020/A020968.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/020/A020968.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/020/A020968.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A020968: Expansion of 1/((1-7*x)*(1-8*x)*(1-11*x)).
; Submitted by Jamie Morken(s2)
; 1,26,455,6700,89661,1130766,13712035,161844800,1874156921,21406992706,242089527615,2717862993300,30349359729781,337562780465846,3743627395703195,41428143398876200,457728746687336241,5051402198472270186,55698140476085454775,613752674... | 41.058824 | 493 | 0.82235 |
b6d51658f20fcbb5a7f239bd7ad346e5a542c5af | 691 | asm | Assembly | oeis/092/A092985.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/092/A092985.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/092/A092985.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A092985: a(n) is the product of first n terms of an arithmetic progression with the first term 1 and common difference n.
; 1,1,3,28,585,22176,1339975,118514880,14454403425,2326680294400,478015854767451,122087424094272000,37947924636264267625,14105590169042424729600,6178966019176767549393375,3150334059785191453342744... | 53.153846 | 481 | 0.861071 |
4676b33af2fa2b2b28b16b462983b6fc61d72e82 | 1,268 | asm | Assembly | programs/oeis/024/A024042.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/024/A024042.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/024/A024042.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A024042: a(n) = 4^n - n^6.
; 1,3,-48,-665,-3840,-14601,-42560,-101265,-196608,-269297,48576,2422743,13791232,62282055,260905920,1062351199,4278190080,17155731615,68685464512,274830861063,1099447627776,4397960744983,17592072664512,70368596141775,281474785607680,1125899662701999,4503599318454720,18014398122061495,72057... | 115.272727 | 1,171 | 0.90694 |
c82cafd0266bf5176bf6a4407d9ed75b934ce49a | 576 | asm | Assembly | data/baseStats/typhlosion.asm | adhi-thirumala/EvoYellow | 6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c | [
"Unlicense"
] | 16 | 2018-08-28T21:47:01.000Z | 2022-02-20T20:29:59.000Z | data/baseStats/typhlosion.asm | adhi-thirumala/EvoYellow | 6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c | [
"Unlicense"
] | 5 | 2019-04-03T19:53:11.000Z | 2022-03-11T22:49:34.000Z | data/baseStats/typhlosion.asm | adhi-thirumala/EvoYellow | 6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c | [
"Unlicense"
] | 2 | 2019-12-09T19:46:02.000Z | 2020-12-05T21:36:30.000Z | db DEX_TYPHLOSION ; pokedex id
db 78 ; base hp
db 84 ; base attack
db 78 ; base defense
db 109 ; base speed
db 92 ; base special
db FIRE ; species type 1
db FIRE ; species type 2
db 31 ; catch rate
db 209 ; base exp yield
INCBIN "pic/ymon/typhlosion.pic",0,1 ; sprite dimensions
dw TyphlosionPicFront
dw Typh... | 19.862069 | 57 | 0.725694 |
fefd9b4e4e4d008c6bc01a12aa793d02d7e74002 | 841 | asm | Assembly | engine/engine/interrupt/declarations/video-standards/pal-60.asm | neomura/atmega328p-cartridge | e7152425e5253cd4e513cad41dc03d306003e91e | [
"MIT"
] | null | null | null | engine/engine/interrupt/declarations/video-standards/pal-60.asm | neomura/atmega328p-cartridge | e7152425e5253cd4e513cad41dc03d306003e91e | [
"MIT"
] | 2 | 2021-04-17T09:31:24.000Z | 2021-04-17T09:31:53.000Z | engine/engine/interrupt/declarations/video-standards/pal-60.asm | neomura/atmega328p-cartridge | e7152425e5253cd4e513cad41dc03d306003e91e | [
"MIT"
] | null | null | null | ; Approximately 63.5usec, the duration of a scanline in CPU cycles, rounded to the nearest multiple of the colorburst frequency.
.equ SCANLINE_CYCLES = 1127
; Approximately 4.7usec, the duration of a HSYNC pulse in CPU cycles.
.equ HSYNC_PULSE_CYCLES = 83
; Approximately 58.8usec, the duration of of a VSYNC pulse in ... | 44.263158 | 128 | 0.794293 |
ffbcdd522edce4278b434e2e9b581e36c8db1f6d | 225 | asm | Assembly | data/mapHeaders/OaksLab.asm | AmateurPanda92/pokemon-rby-dx | f7ba1cc50b22d93ed176571e074a52d73360da93 | [
"MIT"
] | 9 | 2020-07-12T19:44:21.000Z | 2022-03-03T23:32:40.000Z | data/mapHeaders/OaksLab.asm | JStar-debug2020/pokemon-rby-dx | c2fdd8145d96683addbd8d9075f946a68d1527a1 | [
"MIT"
] | 7 | 2020-07-16T10:48:52.000Z | 2021-01-28T18:32:02.000Z | data/mapHeaders/OaksLab.asm | JStar-debug2020/pokemon-rby-dx | c2fdd8145d96683addbd8d9075f946a68d1527a1 | [
"MIT"
] | 2 | 2021-03-28T18:33:43.000Z | 2021-05-06T13:12:09.000Z | OaksLab_h:
db DOJO ; tileset
db OAKS_LAB_HEIGHT, OAKS_LAB_WIDTH ; dimensions (y, x)
dw OaksLab_Blocks ; blocks
dw OaksLab_TextPointers ; texts
dw OaksLab_Script ; scripts
db 0 ; connections
dw OaksLab_Object ; objects
| 25 | 55 | 0.773333 |
d1d83b03bbe598e44289a1eab49cb17a85015b23 | 371 | asm | Assembly | oeis/180/A180435.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/180/A180435.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/180/A180435.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A180435: a(n) = a(n-1)*2^n+n, a(0)=1.
; Submitted by Jon Maiga
; 1,3,14,115,1844,59013,3776838,483435271,123759429384,63364827844617,64885583712887818,132885675443994251275,544299726618600453222412,4458903360459574912797999117,73054672657769675371282417532942
mov $2,1
lpb $0
sub $0,1
add $1,$2
add $1,1
mul $... | 23.1875 | 196 | 0.725067 |
02d9a67cba9617640db7e827a61dcd9c35a981e1 | 698 | asm | Assembly | src/call_on_stack-msvc-win32.asm | qgymib/call_on_stack | 33243364ee08c9916b610436c3cc811941201c39 | [
"MIT"
] | null | null | null | src/call_on_stack-msvc-win32.asm | qgymib/call_on_stack | 33243364ee08c9916b610436c3cc811941201c39 | [
"MIT"
] | null | null | null | src/call_on_stack-msvc-win32.asm | qgymib/call_on_stack | 33243364ee08c9916b610436c3cc811941201c39 | [
"MIT"
] | null | null | null | .model flat
.code
_call_on_stack__asm PROC
push ebp
mov ebp, esp
sub esp, 8h
; backup callee saved registers
push esi
push edi
; backup stack
mov esi, esp
mov edi, ebp
; get func and arg
mov eax, DWORD PTR 12[ebp]
mov ecx,... | 19.942857 | 37 | 0.510029 |
6ae2b4e8ac6b122a25573c9ec6abd9f07fef59af | 9,031 | asm | Assembly | blocks.asm | acmahaja/BLOCKS_Project | c24b17b63931352d6e5f85efe99d0644498f7269 | [
"Apache-2.0"
] | null | null | null | blocks.asm | acmahaja/BLOCKS_Project | c24b17b63931352d6e5f85efe99d0644498f7269 | [
"Apache-2.0"
] | null | null | null | blocks.asm | acmahaja/BLOCKS_Project | c24b17b63931352d6e5f85efe99d0644498f7269 | [
"Apache-2.0"
] | null | null | null | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Programmer: Anjaney Chirag Mahajan
; Class: ECE 109
; Section: 405
;
; blocks.asm
;
; Submitted: 03/28/2017
;
;
; The function of this program is to draw and manipulate the location of a
; box on the screen
;
;;;... | 30.822526 | 80 | 0.454324 |
5c0dff429a6f6b43b02189da6f3894c10005c6a6 | 69,955 | asm | Assembly | ffmpeg.js/libavcodec/x86/h264_intrapred.asm | vivekjishtu/audioconverter.js | 803d516a1238dd1ad7738c851a99737007f95cb5 | [
"BSD-3-Clause"
] | 82 | 2015-01-18T08:41:47.000Z | 2022-02-08T19:23:19.000Z | FFmpeg-build/ffmpeg/libavcodec/x86/h264_intrapred.asm | hetissimpel/radioformac | af3145d12d88b925892937ecdac95d12b6439fda | [
"MIT"
] | 5 | 2015-01-24T13:07:23.000Z | 2021-03-19T13:37:17.000Z | FFmpeg-build/ffmpeg/libavcodec/x86/h264_intrapred.asm | hetissimpel/radioformac | af3145d12d88b925892937ecdac95d12b6439fda | [
"MIT"
] | 25 | 2015-01-25T14:52:03.000Z | 2021-09-05T23:59:49.000Z | ;******************************************************************************
;* H.264 intra prediction asm optimizations
;* Copyright (c) 2010 Jason Garrett-Glaser
;* Copyright (c) 2010 Holger Lubitz
;* Copyright (c) 2010 Loren Merritt
;* Copyright (c) 2010 Ronald S. Bultje
;*
;* This file is part of FFmpeg.
;*
;* F... | 25.880503 | 95 | 0.460553 |
11416b090ceec38b1532e567ef41ce6539631c37 | 749 | asm | Assembly | oeis/126/A126986.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/126/A126986.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/126/A126986.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A126986: Expansion of 1/(1+4*x*c(x)), c(x) the g.f. of Catalan numbers A000108.
; Submitted by Christian Krause
; 1,-4,12,-40,124,-408,1272,-4176,13020,-42808,133096,-439344,1358872,-4514800,13853040,-46469280,140945820,-479312760,1430085000,-4958382960,14453014920,-51500944080,145230007440,-537922074720,144690294818... | 37.45 | 481 | 0.76235 |
8225c6b03a0202703f23b02688ea1f5dda071ddc | 5,169 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2923.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2923.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2923.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x16975, %rbx
nop
nop
cmp %rax, %rax
mov $0x6162636465666768, %r10
movq %r10, %xmm3
vmovups %ymm3, (%rbx)
nop
nop
cmp %r9, %r9
lea addresses_UC_ht+0x156c5, %rsi
lea addresses_D... | 44.179487 | 2,999 | 0.66183 |
e26dc6cccbc41bebdbccc6c6d0bdb174b3870e9d | 133 | asm | Assembly | src/stack_top_win_x64.asm | znone/taskpp | 1c630e232041007cc6497d10f0c30a035663ca91 | [
"Apache-2.0"
] | 4 | 2019-03-14T01:47:53.000Z | 2020-06-24T10:48:54.000Z | src/stack_top_win_x64.asm | znone/taskpp | 1c630e232041007cc6497d10f0c30a035663ca91 | [
"Apache-2.0"
] | null | null | null | src/stack_top_win_x64.asm | znone/taskpp | 1c630e232041007cc6497d10f0c30a035663ca91 | [
"Apache-2.0"
] | null | null | null |
.CODE
?stack_top@this_task@taskpp@@YAPEAXXZ PROC
mov rax, rsp
add rax, 8
ret
?stack_top@this_task@taskpp@@YAPEAXXZ ENDP
END
| 12.090909 | 42 | 0.736842 |
46fe9d2aa7440bde5333d91187b84e5247bf6dd8 | 6,964 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_648.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_648.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_648.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r14
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x1851a, %rbp
nop
nop
cmp $48254, %r9
mov $0x6162636465666768, %rdx
movq %rdx, %xmm0
vmovups %ymm0, (%rbp)
nop
nop
nop
nop
nop
dec %r14
lea addresses_UC_ht+0x215a, %r... | 34.305419 | 2,999 | 0.661976 |
5dfb1bace744182036361c4426647afc69aa2b48 | 373 | asm | Assembly | programs/oeis/070/A070383.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/070/A070383.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/070/A070383.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A070383: a(n) = 5^n mod 36.
; 1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17
mov $1,1
mov $2,$0
lp... | 31.083333 | 267 | 0.589812 |
61e5cc7a5afacfb0af774c323cfb00e36a2cf59b | 4,631 | asm | Assembly | Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xa0_notsx.log_21829_467.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xa0_notsx.log_21829_467.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xa0_notsx.log_21829_467.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x157cb, %r9
add $33486, %r12
vmovups (%r9), %ymm7
vextracti128 $0, %ymm7, %xmm7
vpextrq $0, %xmm7, %r11
nop
nop
nop
nop
sub $46967, %r12
lea addresses_A_ht+0x18778, %rcx
nop
nop
nop
add ... | 49.265957 | 2,999 | 0.658173 |
4e79be876c02d34986d5c5a10cd873e9b24ee728 | 97 | asm | Assembly | lab3_test_harness/test/state_data_in/15.asm | Zaydax/PipelineProcessor | f45f7d1a245f291218d53a7f16fd7f98a50ce47e | [
"MIT"
] | 2 | 2017-03-05T17:40:26.000Z | 2017-03-15T01:41:25.000Z | lab3_test_harness/test/state_data_in/15.asm | Zaydax/PipelineProcessor | f45f7d1a245f291218d53a7f16fd7f98a50ce47e | [
"MIT"
] | null | null | null | lab3_test_harness/test/state_data_in/15.asm | Zaydax/PipelineProcessor | f45f7d1a245f291218d53a7f16fd7f98a50ce47e | [
"MIT"
] | null | null | null | .ORIG x1234
STB R7, R6, x4
STB R7, R6, x4
STB R7, R6, x4
STB R7, R6, x4
STB R7, R6, x4
.END
| 12.125 | 15 | 0.587629 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.