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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
59b59fcafbc819ad6da659595a64cc2241ac2baf | 598 | asm | Assembly | lab03/03-entry-fix/c-extra-nolibc/start.asm | adinasm/iocla-demos | a4109ed9fd3a34b097299f941617a6380267c003 | [
"MIT"
] | null | null | null | lab03/03-entry-fix/c-extra-nolibc/start.asm | adinasm/iocla-demos | a4109ed9fd3a34b097299f941617a6380267c003 | [
"MIT"
] | null | null | null | lab03/03-entry-fix/c-extra-nolibc/start.asm | adinasm/iocla-demos | a4109ed9fd3a34b097299f941617a6380267c003 | [
"MIT"
] | null | null | null | extern my_main
section .text
; /usr/include/x86_64-linux-gnu/asm/unistd_32.h
__NR_exit equ 1
global _start
_start:
call my_main
; Call __NR_exit(main_return_value) (system call).
;
; Use x86 Linux system call convention.
; https://en.wikibooks.org/wiki/X86_Assembly/Interfacing_with_Linux#Making... | 20.62069 | 92 | 0.692308 |
3bee863a8899419016055fd83ebfa026e25135a9 | 493 | asm | Assembly | oeis/093/A093563.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/093/A093563.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/093/A093563.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A093563: (6,1)-Pascal triangle.
; Submitted by Christian Krause
; 1,6,1,6,7,1,6,13,8,1,6,19,21,9,1,6,25,40,30,10,1,6,31,65,70,40,11,1,6,37,96,135,110,51,12,1,6,43,133,231,245,161,63,13,1,6,49,176,364,476,406,224,76,14,1,6,55,225,540,840,882,630,300,90,15,1,6,61,280,765,1380,1722,1512,930,390,105,16,1,6,67,341,1045,21... | 32.866667 | 328 | 0.655172 |
e9d6a5415898d20f51012408d503dc69a387b74a | 5,899 | asm | Assembly | libcpuid/masm-x64.asm | SpaceIm/libcpuid | 0f1ad691455fcc516c346a52605d4486dd393eab | [
"BSD-2-Clause"
] | 342 | 2015-01-02T18:20:45.000Z | 2022-03-21T13:54:12.000Z | libcpuid/masm-x64.asm | SpaceIm/libcpuid | 0f1ad691455fcc516c346a52605d4486dd393eab | [
"BSD-2-Clause"
] | 117 | 2015-02-12T15:08:03.000Z | 2022-02-12T17:08:23.000Z | libcpuid/masm-x64.asm | SpaceIm/libcpuid | 0f1ad691455fcc516c346a52605d4486dd393eab | [
"BSD-2-Clause"
] | 107 | 2015-01-17T01:55:58.000Z | 2022-03-06T14:44:16.000Z |
.code
; procedure exec_cpuid
; Signature: void exec_cpiud(uint32_t *regs)
exec_cpuid Proc
push rbx
push rcx
push rdx
push rdi
mov rdi, rcx
mov eax, [rdi]
mov ebx, [rdi+4]
mov ecx, [rdi+8]
mov edx, [rdi+12]
cpuid
mov [rdi], eax
mov [rdi+4], ebx
mov [rdi+8], ecx
mov [rdi+12], edx
pop rdi
pop rdx
pop... | 16.386111 | 60 | 0.69622 |
5b283dc2fbb73d31ae4d589aeb9661d9ee7aeeb4 | 1,747 | asm | Assembly | ay_zx.asm | jorgicor/altair | a83f4a5b177c366000f69cb261befb499602aa69 | [
"MIT"
] | null | null | null | ay_zx.asm | jorgicor/altair | a83f4a5b177c366000f69cb261befb499602aa69 | [
"MIT"
] | null | null | null | ay_zx.asm | jorgicor/altair | a83f4a5b177c366000f69cb261befb499602aa69 | [
"MIT"
] | null | null | null | ; ----------------------------------------------------------------------------
; Altair, CIDLESA's 1981 arcade game remade for the ZX Spectrum and
; Amstrad CPC.
; ----------------------------------------------------------------------------
; ---------------------
; AY-3-8912 sound chip.
; ---------------------
; (S)... | 14.680672 | 78 | 0.573555 |
17853dc66c38ddae6e3f9aaecc93831f122144f0 | 373 | asm | Assembly | programs/oeis/159/A159461.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/159/A159461.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/159/A159461.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A159461: Numbers of previous and following composites of n-th prime.
; 0,1,2,4,4,4,4,4,8,6,6,8,4,4,8,10,6,6,8,4,6,8,8,12,10,4,4,4,4,16,16,8,6,10,10,6,10,8,8,10,6,10,10,4,4,12,22,14,4,4,8,6,10,14,10,10,6,6,8,4,10,22,16,4,4,16,18,14,10,4,8,12,12,10,8,8,12,10,10,16,10,10,10,6,8,8,12,10,4,4,14,18,10,10,10,8,16,12,18,22
... | 62.166667 | 247 | 0.627346 |
a5fe73c2b7308c12d3ec78f72d8b9a7a7f5e66b9 | 5,389 | asm | Assembly | 45/qb/ir/excase.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null | 45/qb/ir/excase.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null | 45/qb/ir/excase.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null | page 49,132
TITLE excase - executors for SELECT CASE varients
;***
;excase - executors for SELECT CASE varients
;
; Copyright <C> 1987, Microsoft Corporation
;
;Purpose:
; Executors for SELECT CASE varients.
; Note that the actual comparison executors for case are in
; exmathop.asm.
;
;
;******************************... | 25.661905 | 77 | 0.70681 |
7bff588a63abb80bb27b4251f6738fbcf4dfde8a | 269 | asm | Assembly | libsrc/_DEVELOPMENT/stdio/c/sccz80/fread_unlocked_callee.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/stdio/c/sccz80/fread_unlocked_callee.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/stdio/c/sccz80/fread_unlocked_callee.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null |
; size_t fread_unlocked(void *ptr, size_t size, size_t nmemb, FILE *stream)
SECTION code_stdio
PUBLIC fread_unlocked_callee
EXTERN asm_fread_unlocked
fread_unlocked_callee:
pop af
pop ix
pop hl
pop bc
pop de
push af
jp asm_fread_unlocked
| 13.45 | 75 | 0.736059 |
ab4ca04950019659fda9119286adc7441951a029 | 1,096 | asm | Assembly | src/avmext/i386/trap.asm | wbenny/avmext | 3378c1785f073b42a2a4c64724d5b02864737dac | [
"MIT"
] | 54 | 2016-07-26T10:24:08.000Z | 2022-03-02T08:24:50.000Z | src/avmext/i386/trap.asm | c3358/avmext | 3378c1785f073b42a2a4c64724d5b02864737dac | [
"MIT"
] | 1 | 2018-07-17T05:08:37.000Z | 2018-07-17T05:08:37.000Z | src/avmext/i386/trap.asm | c3358/avmext | 3378c1785f073b42a2a4c64724d5b02864737dac | [
"MIT"
] | 25 | 2016-07-03T07:50:04.000Z | 2021-12-17T10:19:05.000Z | .386
.MODEL FLAT
include common.inc
;
; Extern functions.
;
EXTRN _AvmRdtscEmulationTrap0D@4:PROC
EXTRN _AvmpRdtscEmulationTrap0DOriginalHandler:DWORD
; ;
; ------------------------------------------------------------------- ;
; ... | 19.571429 | 71 | 0.448905 |
6749f7c44a1e0b80df5cc8105f62cc67212859ff | 840 | asm | Assembly | programs/oeis/026/A026608.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/026/A026608.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/026/A026608.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A026608: a(n) = number of 2's between n-th 1 and (n+1)st 1 in A026600.
; 2,0,2,0,1,1,1,2,1,0,1,1,1,2,0,2,0,1,1,2,0,2,0,2,0,1,2,0,1,1,1,2,0,2,0,1,1,2,0,2,0,2,0,1,1,2,0,2,0,1,1,1,2,0,1,2,0,2,0,2,0,1,1,2,0,2,0,1,1,1,2,1,0,1,1,1,2,0,2,0,2,0,1,1,1,2,0,2,0,1,1,2,0,2,0,2,0,1,1,2,0,2,0,1,1,1,2,0,1,2,0,2,0,2,0,1,1,2,0,2,0,1,1... | 36.521739 | 501 | 0.513095 |
4719b928a845478d3144513f9a3d0e44ec64be42 | 556 | asm | Assembly | src/tutorialspoint.com/src/example15.asm | ishirshov/NASM-tutorial-for-Unix | 75173993e35e29bce1c04908573cc034ff32363e | [
"Apache-2.0"
] | null | null | null | src/tutorialspoint.com/src/example15.asm | ishirshov/NASM-tutorial-for-Unix | 75173993e35e29bce1c04908573cc034ff32363e | [
"Apache-2.0"
] | null | null | null | src/tutorialspoint.com/src/example15.asm | ishirshov/NASM-tutorial-for-Unix | 75173993e35e29bce1c04908573cc034ff32363e | [
"Apache-2.0"
] | null | null | null | %include "defines.inc"
section .bss
sum resb 5
section .data
msg db 'The sum is:', 0xA, 0xD
len equ $ - msg
num_1 db '12345'
num_2 db '23456'
section .text
global _start
_start:
mov esi, 4 ;pointing to the rightmost digit
mov ecx, 5 ;num of digits
clc
add_loop:
mov al, [num... | 15.885714 | 48 | 0.589928 |
c27cbf0a78fb5a5ded37205d949d6774fb9f3eba | 618 | asm | Assembly | libsrc/_DEVELOPMENT/math/float/math48/c/sccz80/cm48_sccz80p_dcallee2.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/math/float/math48/c/sccz80/cm48_sccz80p_dcallee2.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/math/float/math48/c/sccz80/cm48_sccz80p_dcallee2.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z |
SECTION code_clib
SECTION code_fp_math48
PUBLIC cm48_sccz80p_dcallee2
cm48_sccz80p_dcallee2:
; collect two sccz80 double parameters from the stack.
;
; enter : stack = double x, double y, return_1, return_0
;
; exit : AC'= y
; AC = x
; stack = return_1
;
; uses : all exc... | 13.434783 | 59 | 0.511327 |
1791fe5b90f733a18d8cde2ac3de053443791a75 | 3,504 | asm | Assembly | sw/drivers/cpu/src/32b/f28x/f2805x/DCSM_Z2_ZoneSelectBlock.asm | Hao878/Toaero_ESC | 8afc32b54145ea5618d7497a758a2672b18c1acc | [
"MIT"
] | 3 | 2021-01-21T12:42:10.000Z | 2022-02-10T00:14:01.000Z | sw/drivers/cpu/src/32b/f28x/f2805x/DCSM_Z2_ZoneSelectBlock.asm | Hao878/Toaero_ESC | 8afc32b54145ea5618d7497a758a2672b18c1acc | [
"MIT"
] | null | null | null | sw/drivers/cpu/src/32b/f28x/f2805x/DCSM_Z2_ZoneSelectBlock.asm | Hao878/Toaero_ESC | 8afc32b54145ea5618d7497a758a2672b18c1acc | [
"MIT"
] | 3 | 2018-12-28T17:16:05.000Z | 2020-02-01T05:42:56.000Z | ;//###########################################################################
;//
;// FILE: F2805x_DCSM_Z2_ZoneSelectBlock._asm
;//
;// TITLE: F2805x Dual Code Security Module Zone 2 Zone Select Block Values.
;//
;// DESCRIPTION:
;//
;// This file is used to specify Z2 DCSM OTP and zone select
;// val... | 40.275862 | 82 | 0.603025 |
fccf3bc91f4e1f351d990d0de386dc4942ee661b | 484 | asm | Assembly | programs/oeis/248/A248183.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/248/A248183.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/248/A248183.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A248183: Least k such that 1/4 - sum{1/(h*(h+1)*(h+2))}, h = 1..k} < 1/n^2.
; 1,1,1,2,3,3,4,5,5,6,7,8,8,9,10,10,11,12,12,13,14,15,15,16,17,17,18,19,20,20,21,22,22,23,24,24,25,26,27,27,28,29,29,30,31,32,32,33,34,34,35,36,36,37,38,39,39,40,41,41,42,43,44,44,45,46,46,47,48,49,49,50,51,51,52,53,53,54,55,56,56,57,58,58,59... | 44 | 287 | 0.60124 |
3fb50af862b58de68f9ed71b4599e89b38a9f533 | 87 | asm | Assembly | src/main/fragment/mos6502-common/_deref_pwsz1=_deref_pwsz2_plus_vwsm3.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | 2 | 2022-03-01T02:21:14.000Z | 2022-03-01T04:33:35.000Z | src/main/fragment/mos6502-common/_deref_pwuz1=_deref_pwuz2_plus_vwum3.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | src/main/fragment/mos6502-common/_deref_pwuz1=_deref_pwuz2_plus_vwum3.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | ldy #0
clc
lda ({z2}),y
adc {m3}
sta ({z1}),y
iny
lda ({z2}),y
adc {m3}+1
sta ({z1}),y
| 8.7 | 12 | 0.517241 |
d021ae58144af2d93abb1ee9119bce83044d4de1 | 668 | asm | Assembly | oeis/015/A015535.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/015/A015535.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/015/A015535.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A015535: Expansion of x/(1 - 5*x - 2*x^2).
; Submitted by Jamie Morken(s4)
; 0,1,5,27,145,779,4185,22483,120785,648891,3486025,18727907,100611585,540513739,2903791865,15599986803,83807517745,450237562331,2418802847145,12994489360387,69810052496225,375039241201899,2014816311001945,10824160037413523,58150432809071505,3... | 44.533333 | 490 | 0.821856 |
2614185f17fc4388a1eee85e15a8c7cfb8dd041e | 126 | asm | Assembly | programs/oeis/140/A140438.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/140/A140438.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/140/A140438.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A140438: Number of letters in word for the number n in Tamil.
; 1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2
div $0,10
add $0,1
| 21 | 63 | 0.626984 |
2de5120f4ea42406e50aa547b6c4d85eb628e460 | 378 | asm | Assembly | cli/c64/artstudio.asm | micheldebree/retropixels | 39913cf1014aa16e7757eed32a54eadeba3c5fbb | [
"MIT"
] | 66 | 2017-10-06T06:38:42.000Z | 2022-02-10T17:21:36.000Z | cli/c64/artstudio.asm | micheldebree/retropixels | 39913cf1014aa16e7757eed32a54eadeba3c5fbb | [
"MIT"
] | 64 | 2016-09-29T06:16:28.000Z | 2022-02-27T23:21:31.000Z | cli/c64/artstudio.asm | micheldebree/retropixels | 39913cf1014aa16e7757eed32a54eadeba3c5fbb | [
"MIT"
] | 4 | 2017-11-04T17:04:26.000Z | 2021-06-02T05:09:36.000Z | !include "macros.asm"
!let bitmap = $2000
!let screenRam = bitmap + 8000
+basic_upstart(begin)
begin:
+d018_vic_mem(1,1,0)
+d016_screen_control(0,1,0)
lda #$3b
sta $d011
lda #0
sta $d020
ldx #0
loop:
!for i in range(4) {
lda i * $100 + screenRam,x
sta i * $100 + $0400,x
... | 13.5 | 34 | 0.550265 |
919d483ac00fdefe22f6714868459d55aa8a47c2 | 92 | asm | Assembly | test4.asm | adlternative/x86_nasm_learn | c16d633b8c2fad7cb4d674c62aa1c921e121d847 | [
"Apache-2.0"
] | null | null | null | test4.asm | adlternative/x86_nasm_learn | c16d633b8c2fad7cb4d674c62aa1c921e121d847 | [
"Apache-2.0"
] | null | null | null | test4.asm | adlternative/x86_nasm_learn | c16d633b8c2fad7cb4d674c62aa1c921e121d847 | [
"Apache-2.0"
] | null | null | null | cmp ax,bx
jg lbb
jl lbl
je lbz
lbb:
mov ax,bx
lbl:
mov bx,[0x1234]
lbz:
mov cx,[0x1234]
| 7.666667 | 16 | 0.652174 |
15288ae5ebab4a506524c3260dc1c764756a2ab8 | 5,093 | asm | Assembly | Transynther/x86/_processed/NONE/_zr_/i3-7100_9_0x84_notsx.log_21829_3037.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_zr_/i3-7100_9_0x84_notsx.log_21829_3037.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_zr_/i3-7100_9_0x84_notsx.log_21829_3037.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 %r15
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x1ebe9, %rdx
nop
nop
nop
nop
nop
inc %r10
mov $0x6162636465666768, %rsi
movq %rsi, %xmm2
movups %xmm2, (%rdx)
nop
dec %r10
lea addresses_A_ht+0x3d09, %rsi
lea addresses_D_ht+0x1c449, %... | 46.3 | 2,999 | 0.660122 |
b682e21365b368e2742908ef45c2bd4e5dab8815 | 3,317 | asm | Assembly | latest/boot/gdt.asm | soumitradev/assembly-fun | 3ab433e96ea1f6ea21121013800455a4fa999021 | [
"MIT"
] | 2 | 2020-08-09T06:17:13.000Z | 2021-03-06T11:18:38.000Z | latest/boot/gdt.asm | soumitradev/assembly-fun | 3ab433e96ea1f6ea21121013800455a4fa999021 | [
"MIT"
] | null | null | null | latest/boot/gdt.asm | soumitradev/assembly-fun | 3ab433e96ea1f6ea21121013800455a4fa999021 | [
"MIT"
] | null | null | null | ; I know i haven't explained how we're slowly moving to 32 bits, but we need to prepare
; a table called the Global Descriptor Table (GDT) to switch into 32 bit mode.
; This table gives the CPU information about what parts of memory it should protect, where
; new data can be stored, etc.
; The weird thing is, that the... | 34.915789 | 102 | 0.703346 |
a8a9ef2ec3deb7b16b1c6f391f5627d509e6910c | 602 | asm | Assembly | cc4x86/tests/regressive/asm_listings/regalloc_bug__optimize.asm | artyompal/C-compiler | 0c13e96b926d4c3282be8e9629cbc7ba439ea2d4 | [
"MIT"
] | 4 | 2017-03-19T20:10:55.000Z | 2022-01-20T08:34:25.000Z | cc4x86/tests/regressive/asm_listings/regalloc_bug__optimize_nocopyopt.asm | artyompal/C-compiler | 0c13e96b926d4c3282be8e9629cbc7ba439ea2d4 | [
"MIT"
] | null | null | null | cc4x86/tests/regressive/asm_listings/regalloc_bug__optimize_nocopyopt.asm | artyompal/C-compiler | 0c13e96b926d4c3282be8e9629cbc7ba439ea2d4 | [
"MIT"
] | null | null | null |
.686
.model flat
.xmm
.code
_test proc
push ebp
mov ebp,esp
sub esp,36
mov eax,2
cmp eax,3
jle label0000
; start of inline function f
mov eax,2
add eax,3
; end of inline function f
jmp label00... | 17.2 | 29 | 0.45515 |
fa3f7d018f80f351d6103e6c8d7f09703e04c61d | 650 | asm | Assembly | u7-common/patch-printAddressOnDivideByZero.asm | JohnGlassmyer/UltimaHacks | f9a114e00c4a1edf1ac7792b465feff2c9b88ced | [
"MIT"
] | 68 | 2018-03-04T22:34:22.000Z | 2022-03-10T15:18:32.000Z | u7-common/patch-printAddressOnDivideByZero.asm | ptrie/UltimaHacks | 2c3557a86d94ad8b54b26bc395b9aed1604f8be1 | [
"MIT"
] | 19 | 2018-11-20T04:06:49.000Z | 2021-11-08T16:37:10.000Z | u7-common/patch-printAddressOnDivideByZero.asm | ptrie/UltimaHacks | 2c3557a86d94ad8b54b26bc395b9aed1604f8be1 | [
"MIT"
] | 4 | 2020-09-01T17:57:36.000Z | 2022-01-04T20:51:11.000Z | ; Changes the divide-by-zero interrupt handler to include the CS:IP of the fault
; in the error message that the game subsequently prints on exit, to
; facilitate tracking down bugs.
[bits 16]
startPatch EXE_LENGTH, printAddressOnDivideByZero
startBlockAt addr_divideByZeroHandler
mov bp, sp
%assign ar... | 27.083333 | 80 | 0.792308 |
92cfc60a6d514c5f59cf76b2b928d9d3e84f942f | 872 | asm | Assembly | oeis/142/A142253.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/142/A142253.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/142/A142253.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A142253: Primes congruent to 4 mod 43.
; Submitted by Jamie Morken(s2)
; 47,563,821,907,1423,2111,2713,2971,3229,3659,3917,4003,4261,4519,4691,5981,6067,6841,7013,7529,7873,8389,8647,8819,9421,9679,9851,10453,10711,10883,11399,11657,11743,12517,12689,13033,13291,13463,13721,13807,14323,14753,15269,15527,16301,16903,1... | 31.142857 | 497 | 0.720183 |
47312d211f01dc8c4f2dc5abea616eaf10e7d90a | 2,828 | asm | Assembly | asm/memchr.asm | GabrielRavier/Generic-Assembly-Samples | fbf803960a14307b7fce0165058d0d4048abaf42 | [
"Unlicense"
] | null | null | null | asm/memchr.asm | GabrielRavier/Generic-Assembly-Samples | fbf803960a14307b7fce0165058d0d4048abaf42 | [
"Unlicense"
] | null | null | null | asm/memchr.asm | GabrielRavier/Generic-Assembly-Samples | fbf803960a14307b7fce0165058d0d4048abaf42 | [
"Unlicense"
] | null | null | null | ; Weird name to avoid linking warning
global @ASM_memchr@12
segment .text align=16
; According to the __fastcall calling convention, first argument goes to ecx and the second to edx
%define buffer ecx
%define loBuffer cl
%define character dl
%define exCharacter edx
%define result eax
%define regCount eax
... | 20.642336 | 99 | 0.656648 |
d9a3b466458e524b9d5f20f99ac540c31c3e84f6 | 5,906 | asm | Assembly | Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_2693.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_2693.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_2693.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 %r11
push %r9
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x6a28, %r9
nop
nop
xor %rsi, %rsi
movb $0x61, (%r9)
nop
nop
add $59314, %r9
lea addresses_WT_ht+0x7080, %rdi
nop
add %r11, %r11
movl $0x61626364, (%rdi)
nop
dec %r11
lea addresses_UC_ht+... | 41.013889 | 2,999 | 0.658483 |
6503c79837aea33869d9aa756cf05f8aad72137d | 415 | asm | Assembly | testdata/unit/brk_test.asm | tehmaze/mos65xx | 60dbe6b949efcf197106eeae4382e084493a27b0 | [
"MIT"
] | 3 | 2019-10-24T09:41:14.000Z | 2021-12-12T08:11:52.000Z | testdata/unit/brk_test.asm | tehmaze/mos65xx | 60dbe6b949efcf197106eeae4382e084493a27b0 | [
"MIT"
] | null | null | null | testdata/unit/brk_test.asm | tehmaze/mos65xx | 60dbe6b949efcf197106eeae4382e084493a27b0 | [
"MIT"
] | 1 | 2020-11-11T17:11:54.000Z | 2020-11-11T17:11:54.000Z |
; BRK interrupt test
;
; Expected Value: $FF = $44
JMP start ; Keep ISR at a fixed address when we change the program
ISR: ; $0603
DEC $FF
RTI
start:
; Setup interrupt vector
LDA #$03
STA $FFFE
LDA #$06
STA $FFFF
LDA #$45
STA $FF
; -1
BRK
NOP
INC $FF
BRK
NOP
; Check if carry is preserved across interrupt
LDA #$... | 10.375 | 66 | 0.691566 |
f02d1e47f471ad6465a7435409e46db7fe2c165c | 768 | asm | Assembly | oeis/175/A175461.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/175/A175461.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/175/A175461.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A175461: Semiprimes of form 8n+5.
; Submitted by Christian Krause
; 21,69,77,85,93,133,141,205,213,221,237,253,301,309,341,365,381,413,437,445,453,469,485,493,501,517,533,565,573,581,589,597,629,669,685,717,749,781,789,813,869,893,901,917,933,949,965,973,989,1037,1077,1101,1133,1141,1149,1157,1165,1189,1205,1253,1261... | 32 | 447 | 0.69401 |
ddd71113f3b10a7d30c390cd79b87b9fe245615f | 929 | asm | Assembly | Z80tests/tape3.asm | rickard-von-essen/QtSpecem | 49cf3526c50ce6f4ff556ab7067b4089e3e79857 | [
"MIT"
] | 2 | 2020-05-20T13:41:04.000Z | 2020-12-08T18:25:36.000Z | Z80tests/tape3.asm | rickard-von-essen/QtSpecem | 49cf3526c50ce6f4ff556ab7067b4089e3e79857 | [
"MIT"
] | null | null | null | Z80tests/tape3.asm | rickard-von-essen/QtSpecem | 49cf3526c50ce6f4ff556ab7067b4089e3e79857 | [
"MIT"
] | 1 | 2021-01-07T18:45:57.000Z | 2021-01-07T18:45:57.000Z | ; EXAMPLE TAPE : PRINT HEADERS
ORG 50000
LD A,2 ; upper screen
CALL 5633 ; open channel
CALL LOAD_HEADER
CALL PRINT_HEADER
; need to return to lower screen
LD A,1 ; lower screen
CALL 5633 ; open channel
... | 16.017241 | 65 | 0.517761 |
242c8f7b0e05740220a8b43df3144ef259afc5c3 | 847 | asm | Assembly | src/kernel/scheduler/scheduler.asm | nothotscott/VisualOS | 1d51f9721feffa303b7ac8fd8ac5520ee5ee3732 | [
"MIT"
] | 28 | 2021-01-05T07:53:36.000Z | 2021-12-09T17:57:09.000Z | src/kernel/scheduler/scheduler.asm | nothotscott/VisualOS | 1d51f9721feffa303b7ac8fd8ac5520ee5ee3732 | [
"MIT"
] | 4 | 2021-05-24T00:14:49.000Z | 2021-09-29T11:12:15.000Z | src/kernel/scheduler/scheduler.asm | nothotscott/VisualOS | 1d51f9721feffa303b7ac8fd8ac5520ee5ee3732 | [
"MIT"
] | 6 | 2020-12-19T02:02:22.000Z | 2022-01-10T11:47:48.000Z | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; File: gdt.asm
;; Copyright 2020-2021 Scott Maday
;; Check the LICENSE file that came with this program for licensing terms
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
%include "scheduler.inc"
EXTE... | 19.25 | 80 | 0.599764 |
cc7011f1b6bed4d978e5770ad1fa28e23b3dd604 | 905 | asm | Assembly | programs/oeis/208/A208377.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/208/A208377.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/208/A208377.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A208377: Number of n X 6 0..1 arrays avoiding 0 0 0 and 1 1 1 horizontally and 0 0 1 and 1 0 1 vertically.
; 26,676,2080,4212,7072,10660,14976,20020,25792,32292,39520,47476,56160,65572,75712,86580,98176,110500,123552,137332,151840,167076,183040,199732,217152,235300,254176,273780,294112,315172,336960,359476,382720,406... | 82.272727 | 724 | 0.81989 |
79153fbcac88c796374f6a4324bf4155a03e2da4 | 4,252 | asm | Assembly | src/cpu/smp.asm | InsaneMiner/tinyvale | 16f1a29c1e0efed4f3317c3b9a782a59b32157c0 | [
"BSD-3-Clause"
] | 11 | 2021-04-25T13:17:25.000Z | 2021-06-10T13:22:54.000Z | src/cpu/smp.asm | InsaneMiner/tinyvale | 16f1a29c1e0efed4f3317c3b9a782a59b32157c0 | [
"BSD-3-Clause"
] | null | null | null | src/cpu/smp.asm | InsaneMiner/tinyvale | 16f1a29c1e0efed4f3317c3b9a782a59b32157c0 | [
"BSD-3-Clause"
] | 1 | 2021-05-19T23:43:37.000Z | 2021-05-19T23:43:37.000Z | ; BSD 3-Clause License
; Copyright (c) 2021, AtieP
; All rights reserved.
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
; 1. Redistributions of source code must retain the above copyright notice, this
; list of co... | 26.911392 | 94 | 0.691204 |
16ca7c4a175d03272023a371dfd4851aac605c77 | 110 | asm | Assembly | Practicas/Practica_06/codigoFuente/P3_clase.asm | CodeRevenge/Proyecto-seminario-traductores-i | a5c6a500a6be8d5a1b24b4ecacd73e6f67a34041 | [
"MIT"
] | null | null | null | Practicas/Practica_06/codigoFuente/P3_clase.asm | CodeRevenge/Proyecto-seminario-traductores-i | a5c6a500a6be8d5a1b24b4ecacd73e6f67a34041 | [
"MIT"
] | null | null | null | Practicas/Practica_06/codigoFuente/P3_clase.asm | CodeRevenge/Proyecto-seminario-traductores-i | a5c6a500a6be8d5a1b24b4ecacd73e6f67a34041 | [
"MIT"
] | null | null | null | E1 ORG $4000
E2 ADCA #3
ADCA 3
ADCA 300
DC.B
DC.W 15,15
E3 EQU 20
ORG $4100
E4 EQU 30
E5 FILL 10,3
E6 END | 10 | 12 | 0.663636 |
8ef853595ed6f4c89e579048a884a40bcd89b272 | 738 | asm | Assembly | oeis/059/A059507.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/059/A059507.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/059/A059507.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A059507: Transform of A059502 applied to sequence 4,5,6,...
; Submitted by Christian Krause
; 4,9,24,66,182,501,1376,3771,10314,28158,76744,208839,567484,1539981,4173852,11299386,30556346,82547961,222790424,600753663,1618558734,4357256694,11721125644,31507528971,84637773172,227213317521,609588448416,1634503307826,438... | 38.842105 | 500 | 0.804878 |
f1823536865b79bb3695e5bd1044622f2f7dc196 | 4,116 | asm | Assembly | src/arch/x86_64/boot.asm | luksamuk/my-os | 1e1c3da1f23b2caf919114e7896a60ec92f910dd | [
"MIT"
] | 1 | 2018-02-05T18:06:38.000Z | 2018-02-05T18:06:38.000Z | src/arch/x86_64/boot.asm | luksamuk/my-os | 1e1c3da1f23b2caf919114e7896a60ec92f910dd | [
"MIT"
] | null | null | null | src/arch/x86_64/boot.asm | luksamuk/my-os | 1e1c3da1f23b2caf919114e7896a60ec92f910dd | [
"MIT"
] | null | null | null | global start
extern long_mode_start
section .text
bits 32
start:
mov esp, stack_top
mov edi, ebx ; Move Multiboot info pointer to edi
call check_multiboot
call check_cpuid
call check_long_mode
call set_up_page_tables
call enable_paging
; Map P4 table recursively
mov eax, p4_table
or eax, 0b11 ; Prese... | 23.930233 | 75 | 0.692663 |
2ad867bd785ecd565b312fd617e77e4c74930491 | 724 | asm | Assembly | programs/oeis/070/A070378.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/070/A070378.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/070/A070378.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A070378: a(n) = 5^n mod 28.
; 1,5,25,13,9,17,1,5,25,13,9,17,1,5,25,13,9,17,1,5,25,13,9,17,1,5,25,13,9,17,1,5,25,13,9,17,1,5,25,13,9,17,1,5,25,13,9,17,1,5,25,13,9,17,1,5,25,13,9,17,1,5,25,13,9,17,1,5,25,13,9,17,1,5,25,13,9,17,1,5,25,13,9,17,1,5,25,13,9,17,1,5,25,13,9,17,1,5,25,13,9,17,1,5,25,13,9,17,1,5,25,13,9,17,1,5... | 65.818182 | 626 | 0.587017 |
12347e69ff897ab17534d41d351004112b686e6a | 417 | asm | Assembly | oeis/058/A058384.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/058/A058384.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/058/A058384.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A058384: Largest power of 2 which is a divisor of p(n)-1, where p(n) = n-th prime.
; Submitted by Jon Maiga
; 1,2,4,2,2,4,16,2,2,4,2,4,8,2,2,4,2,4,2,2,8,2,2,8,32,4,2,2,4,16,2,2,8,2,4,2,4,2,2,4,2,4,2,64,4,2,2,2,2,4,8,2,16,2,256,2,4,2,4,8,2,4,2,2,8,4,2,16,2,4,32,2,2,4,2,2,4,4,16,8,2,4,2,16,2,2,64,8,4,2,2,2,2,2,2,2,4,8,... | 32.076923 | 213 | 0.577938 |
1c83388d22b1c9b0c36acf3698af53836ab934be | 552 | asm | Assembly | oeis/304/A304609.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/304/A304609.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/304/A304609.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A304609: a(n) = 114*n - 20.
; 94,208,322,436,550,664,778,892,1006,1120,1234,1348,1462,1576,1690,1804,1918,2032,2146,2260,2374,2488,2602,2716,2830,2944,3058,3172,3286,3400,3514,3628,3742,3856,3970,4084,4198,4312,4426,4540,4654,4768,4882,4996,5110,5224,5338,5452,5566,5680,5794,5908,6022,6136,6250,6364,6478,6592,6706,68... | 92 | 499 | 0.773551 |
ce76413496e2d02b33525da276f3cc980cc43338 | 2,245 | asm | Assembly | ASC/mips3.asm | ParaschivAlex/FMI-Thangs | 26d8a13b08344744ee6ab56f088dd4adb665980e | [
"MIT"
] | null | null | null | ASC/mips3.asm | ParaschivAlex/FMI-Thangs | 26d8a13b08344744ee6ab56f088dd4adb665980e | [
"MIT"
] | null | null | null | ASC/mips3.asm | ParaschivAlex/FMI-Thangs | 26d8a13b08344744ee6ab56f088dd4adb665980e | [
"MIT"
] | null | null | null | .data
v: .word 1, 2, 3, 4
n: .word 4
a: .word 10
c: .word 3
t: .word 4
.text
main:
la $t0, v
lw $t1, n
lw $t2, a
lw $t3, c
lw $t4, t
li $t5, 0
li $t6, 0
subu $sp, $sp, 4
sw $t4, 0($sp)
subu $sp, $sp, 4
sw $t3, 0($sp)
subu $sp, $sp, 4
sw $t2, 0($sp)
subu $sp, $sp, 4
sw $t1, 0($sp)
subu $sp, $sp... | 13.944099 | 71 | 0.483296 |
5ce1984d27b070954f62a5baf33b8f3aca1e97c3 | 655 | asm | Assembly | oeis/065/A065424.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/065/A065424.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/065/A065424.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A065424: Catalan-like formula: a(n) = binomial(6m, 3m+1)/(9m+6).
; Submitted by Jon Maiga
; 1,33,1326,59432,2851425,143291610,7446255180,396893583792,21579377870484,1192183281903845,66734212415276406,3776778437640143208,215744630060724034270,12423227699242323077940,720356761939547257421400,42024927437494196952957408,... | 43.666667 | 467 | 0.847328 |
70110df127d583f90713520f509d867af9492f6d | 376 | asm | Assembly | programs/oeis/165/A165222.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/165/A165222.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/165/A165222.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A165222: a(n) = (2^(n+4)+1)*(2^n+1).
; 34,99,325,1161,4369,16929,66625,264321,1052929,4203009,16794625,67143681,268505089,1073881089,4295245825,17180426241,68720590849,274880135169,1099516084225,4398055424001,17592203870209,70368779829249
add $0,2
mov $3,8
lpb $0,1
sub $0,1
mul $3,2
lpe
add $2,2
add $3,$2
add $3... | 20.888889 | 201 | 0.712766 |
635ad6e252deaeedbe4d0c0eca53b3b64ba6c629 | 429 | asm | Assembly | wof/lcs/base/2F6.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 | wof/lcs/base/2F6.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | a4a0c86c200241494b3f1834cd0aef8dc02f7683 | [
"Apache-2.0"
] | null | null | null | wof/lcs/base/2F6.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
0014A6 movea.w (A4)+, A1 [base+2F6]
0014AC subq.w #1, ($308,A5) [base+2F6]
00156C move.w A0, -(A4) [base+2F6]
001572 addq.w #1, ($308,A5) [base+2F6]
0083A2 movea.w (A3)+, A3 [base+2F6]
0083A8 subq.w #1, ($308,A5) [base+2F6]
01A83E move.w A6, ($2f6,A5) ... | 33 | 54 | 0.65035 |
375bd617213e5e747443138c759f57302e535097 | 859 | asm | Assembly | programs/oeis/022/A022114.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/022/A022114.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/022/A022114.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A022114: Fibonacci sequence beginning 2 9.
; 2,9,11,20,31,51,82,133,215,348,563,911,1474,2385,3859,6244,10103,16347,26450,42797,69247,112044,181291,293335,474626,767961,1242587,2010548,3253135,5263683,8516818,13780501,22297319,36077820,58375139,94452959,152828098,247281057,400109155,647390212,1047499367,1694889579,27... | 66.076923 | 725 | 0.847497 |
92710fa5c3961caa7304949ea2e279f3a36dcf39 | 423 | asm | Assembly | programs/oeis/189/A189176.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/189/A189176.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/189/A189176.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A189176: Row sums of the Riordan matrix (1+x/sqrt(1-4*x),(1-sqrt(1-4*x))/2) (A189175).
; 1,2,5,15,49,168,594,2145,7865,29172,109174,411502,1560090,5943200,22732740,87253605,335897865,1296447900,5015206350,19439895090,75487384830,293595204240,1143532045500
mov $2,$0
add $2,$0
bin $2,$0
add $0,1
mov $1,$2
div $1,$0
ad... | 20.142857 | 168 | 0.683215 |
4b87b6090727a4869b1d7ba5f8dfdb8cb698f228 | 3,768 | asm | Assembly | smsq/sms/rmjb.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | smsq/sms/rmjb.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | smsq/sms/rmjb.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | * Remove job V2.00 1986 Tony Tebby QJUMP
*
section sms
*
xdef sms_rmjb remove job
xdef sms_frjb force remove job
*
xref sms_ckjx check job exists
xref sms_nxjb next job in tree
xref sms_rte
xref sms_rtok
xref mem_rtpa remove from tpa
xref mem_rchp remove from common heap
xref ioa_topc
*
include ... | 22.836364 | 77 | 0.676486 |
e7a5ad994bdd608db078b9e697defb62834aad82 | 831 | asm | Assembly | oeis/142/A142745.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/142/A142745.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/142/A142745.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A142745: Primes congruent to 18 mod 59.
; Submitted by Jon Maiga
; 313,431,1021,1493,1847,2083,2437,2791,2909,3499,3617,3853,4561,4679,5387,5623,5741,6449,6803,7039,7393,8101,8219,8573,9281,9871,10343,11287,12113,12703,12821,13411,13883,14591,14827,15299,15889,16007,16361,17659,18013,18131,18367,18839,19429,20963,213... | 34.625 | 501 | 0.731649 |
c370b302284ab6593e6ba06a3de9c2d1a587b103 | 350 | asm | Assembly | programs/oeis/200/A200678.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/200/A200678.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/200/A200678.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A200678: Partial sums of A200675.
; 1,2,3,4,6,8,10,12,16,20,24,28,36,44,52,60,76,92,108,124,156,188,220,252,316,380,444,508,636,764,892,1020,1276,1532,1788,2044,2556,3068,3580,4092,5116,6140,7164,8188,10236,12284,14332,16380,20476,24572,28668,32764
lpb $0
mov $2,$0
sub $0,1
add $1,1
dif $2,2
gcd $2,2
mul... | 25 | 214 | 0.671429 |
0d427c09b8528a04892f0d5a259e7b182824bad7 | 588 | asm | Assembly | oeis/077/A077823.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/077/A077823.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/077/A077823.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A077823: Expansion of (1-x)^(-1)/(1-3*x-2*x^2-3*x^3).
; Submitted by Jon Maiga
; 1,4,15,57,214,802,3006,11265,42214,158191,592797,2221416,8324416,31194472,116896497,438051684,1641531463,6151387249,23051379726,86381508066,323701445398,1213021491505,4545611889510,17033982987735,63832237216741,239201513294224
mov $4,$0... | 19.6 | 228 | 0.627551 |
bcbbabe88363d0596b6a7e481956b1cc33f44f31 | 141 | asm | Assembly | other.7z/NEWS.7z/NEWS/テープリストア/NEWS_05/NEWS_05.tar/home/kimura/xl/code/id23.asm | prismotizm/gigaleak | d082854866186a05fec4e2fdf1def0199e7f3098 | [
"MIT"
] | null | null | null | other.7z/NEWS.7z/NEWS/テープリストア/NEWS_05/NEWS_05.tar/home/kimura/xl/code/id23.asm | prismotizm/gigaleak | d082854866186a05fec4e2fdf1def0199e7f3098 | [
"MIT"
] | null | null | null | other.7z/NEWS.7z/NEWS/テープリストア/NEWS_05/NEWS_05.tar/home/kimura/xl/code/id23.asm | prismotizm/gigaleak | d082854866186a05fec4e2fdf1def0199e7f3098 | [
"MIT"
] | null | null | null | Name: id23.asm
Type: file
Size: 7823
Last-Modified: '1993-05-17T02:50:35Z'
SHA-1: 275BC71E6B269DFBA050DAEC5F4E779EDA486EB6
Description: null
| 20.142857 | 47 | 0.808511 |
eaeb8bac648fa10e6cff1fa09fffed6dbe3ce5b2 | 766 | asm | Assembly | oeis/267/A267465.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/267/A267465.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/267/A267465.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A267465: Number of length-n 0..2 arrays with no following elements larger than the first repeated value.
; Submitted by Christian Krause
; 3,9,24,62,160,418,1112,3018,8352,23522,67240,194554,568304,1672146,4946808,14692970,43767616,130647490,390566216,1168815066,3500415888,10488664754,31439779864,94264813642,28268119... | 42.555556 | 500 | 0.819843 |
b7516502b7f3540f62aea7ac509a440ea2c2850a | 80 | asm | Assembly | src/main/fragment/mos6502-common/vdum1=vdum1_rol_8.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | 2 | 2022-03-01T02:21:14.000Z | 2022-03-01T04:33:35.000Z | src/main/fragment/mos6502-common/vdum1=vdum1_rol_8.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | src/main/fragment/mos6502-common/vdum1=vdum1_rol_8.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | lda {m1}+2
sta {m1}+3
lda {m1}+1
sta {m1}+2
lda {m1}
sta {m1}+1
lda #0
sta {m1}
| 8.888889 | 10 | 0.55 |
aba4c90612a47ac605374b79a830dcdb76d62321 | 1,435 | asm | Assembly | programs/oeis/058/A058319.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/058/A058319.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/058/A058319.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A058319: Coefficients (multiplied by 48) in Alternative Extended Simpson's rule for numerical integration.
; 17,59,43,49,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48
mov $3,2
m... | 17.083333 | 199 | 0.443902 |
053f3552baea482a9c737d07c8296e04aa75e0dd | 3,175 | asm | Assembly | PIC16/assy/timer0.asm | Classrooms/Microcontrollers | 554a2129d45a14306b69af0d72d5b3816b1e21ec | [
"MIT"
] | 1 | 2020-11-04T17:00:32.000Z | 2020-11-04T17:00:32.000Z | PIC16/assy/timer0.asm | Classrooms/Microcontrollers | 554a2129d45a14306b69af0d72d5b3816b1e21ec | [
"MIT"
] | null | null | null | PIC16/assy/timer0.asm | Classrooms/Microcontrollers | 554a2129d45a14306b69af0d72d5b3816b1e21ec | [
"MIT"
] | null | null | null | ; *******************************************************************
; Lesson 9 - Timer0
;
; Timer0 is a counter implemented in the processor. It may be used to count instruction
; cycles or external events, that occur at or below the instruction cycle rate.
; In the PIC18, Timer0 can be used as either an 8-bit or 16-... | 43.493151 | 151 | 0.51874 |
b39912f70af5707335b609d898612d6bc4d01e78 | 2,471 | asm | Assembly | CS202/lab5/lab5_1.asm | Wycers/Codelib | 86d83787aa577b8f2d66b5410e73102411c45e46 | [
"MIT"
] | 22 | 2018-08-07T06:55:10.000Z | 2021-06-12T02:12:19.000Z | CS202/lab5/lab5_1.asm | Wycers/Codelib | 86d83787aa577b8f2d66b5410e73102411c45e46 | [
"MIT"
] | 28 | 2020-03-04T23:47:22.000Z | 2022-02-26T18:50:00.000Z | CS202/lab5/lab5_1.asm | Wycers/Codelib | 86d83787aa577b8f2d66b5410e73102411c45e46 | [
"MIT"
] | 4 | 2019-11-09T15:41:26.000Z | 2021-10-10T08:56:57.000Z | .include "utils.asm"
.main
print_str("Welcome to use the simple arithmetic calculator on unsigned 31bit number:")
endl()
print_str("Please input operator: ")
li $v0, 0xC # $v0 = 0xC
syscall
move $s0, $v0 # $s0 = $v0
endl()
beq $s0, 0x2A, MUL # if $s0 == 0x2A then MUL
beq $s0, 0x2B, PLUS # if... | 21.119658 | 87 | 0.557669 |
7a44837859b4003085de87d7d2e97760a13b012b | 7,702 | asm | Assembly | Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xa0.log_21829_1157.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xa0.log_21829_1157.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xa0.log_21829_1157.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 %r14
push %r9
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x14d9, %rbx
nop
nop
nop
nop
sub $64944, %rcx
and $0xffffffffffffffc0, %rbx
vmovntdqa (%rbx), %ymm0
vextracti128 $0, %ymm0, %xmm0
vpextrq $0, %xmm0, %r13
nop
nop
nop
add %r... | 35.009091 | 2,999 | 0.659699 |
7529d35d4b036d354a7dc370a07d83fe41744c25 | 796 | asm | Assembly | asm_examples/addTwoNumber.asm | FZU-CS/assembly | 557afb09a1674cc4643ddf7641b257f203c4402c | [
"Apache-2.0"
] | null | null | null | asm_examples/addTwoNumber.asm | FZU-CS/assembly | 557afb09a1674cc4643ddf7641b257f203c4402c | [
"Apache-2.0"
] | null | null | null | asm_examples/addTwoNumber.asm | FZU-CS/assembly | 557afb09a1674cc4643ddf7641b257f203c4402c | [
"Apache-2.0"
] | null | null | null | title addTwoNumber
include irvine32.inc ; Assembly lib
.data ; Data Segment
t0 db 13h ; 13h -> t0, db means 8b
t1 db 56h ; 56h -> t1
sum dw 0 ; 0 -> sum, dw means 16b
.code ; Code Segment
main proc ; Main Procedure
xor ax,ax ... | 34.608696 | 75 | 0.517588 |
8f369b6131adf5b1c6e3b07ea9741fff44cfe0dd | 3,368 | asm | Assembly | 6502Code/src/timer1_test.asm | ccoulton/BE6502-Project | ecbc654c66f4be5f5ecfe8d5ad398dc1fb25237f | [
"MIT"
] | 1 | 2020-11-12T17:41:23.000Z | 2020-11-12T17:41:23.000Z | 6502Code/src/timer1_test.asm | ccoulton/BE6502-Project | ecbc654c66f4be5f5ecfe8d5ad398dc1fb25237f | [
"MIT"
] | null | null | null | 6502Code/src/timer1_test.asm | ccoulton/BE6502-Project | ecbc654c66f4be5f5ecfe8d5ad398dc1fb25237f | [
"MIT"
] | null | null | null | ;============================================================================================
;RAM: 32k $0000 to $3FFF
;ROM 32k $8000 to $FFFF
;LCD $8000 - $800F
;6522 $6000 - $600F
;
;==============================================================================
.target "65c02"
.setting "LaunchCommand", "wsl ../x6... | 35.829787 | 102 | 0.417458 |
af1bc1b59fb4974bda9e53fb0dea97dbe91dba26 | 2,984 | asm | Assembly | src/mainloop.asm | Aap-Dev/TiMPLESt-asm | 086be6e7ba7b709ccee3f6ad51f1e3eaf666dc77 | [
"MIT"
] | 1 | 2022-03-16T13:31:33.000Z | 2022-03-16T13:31:33.000Z | src/mainloop.asm | Aap-Dev/TiMPLEST-asm | 086be6e7ba7b709ccee3f6ad51f1e3eaf666dc77 | [
"MIT"
] | null | null | null | src/mainloop.asm | Aap-Dev/TiMPLEST-asm | 086be6e7ba7b709ccee3f6ad51f1e3eaf666dc77 | [
"MIT"
] | null | null | null |
mainloop:
mov si, prompt
call print_string
mov di, buffer
call get_string
mov si, buffer
cmp byte [si], 0 ; blank line?
je mainloop ; yes, ignore it
mov si, buffer
mov di, cmd_clear ; "clear" command
call strcmp
jc .clear
mov si, buffer
mov di, cmd_hi ; "hi" comma... | 19.376623 | 113 | 0.59685 |
b672bb4d9ad51092b3c0a0d34db6202068f0759b | 3,767 | asm | Assembly | src/ship.asm | howprice/specnext-invaders | f356f2f0f86203a40cf0ae42a9cb6bbff87e8b89 | [
"MIT"
] | 17 | 2021-01-03T17:10:18.000Z | 2022-01-05T06:01:46.000Z | src/ship.asm | howprice/specnext-invaders | f356f2f0f86203a40cf0ae42a9cb6bbff87e8b89 | [
"MIT"
] | null | null | null | src/ship.asm | howprice/specnext-invaders | f356f2f0f86203a40cf0ae42a9cb6bbff87e8b89 | [
"MIT"
] | null | null | null |
SHIP_STATE_ALIVE EQU 0
SHIP_STATE_DESTROYED EQU 1
SHIP_STATE_COUNT EQU 2
SHIP_MOVE_SPEED EQU 2
SHIP_X_MIN EQU 32 + 16 ; border + 16
SHIP_X_MAX EQU 32 + 256 - 16 - 32 ; border + ULA width - sprite width - 32
SHIP_START_X EQU SHIP_X_MIN
SHIP_Y... | 31.132231 | 138 | 0.562251 |
8e9a1a0cd180c1cc9eaae39eabffac6a2bb933ed | 697,952 | asm | Assembly | kernel.asm | HareeshwarKarthikeyan/Top-Command-in-Xv6-Operating-System | 90cf3c5edcf29518c7c8eca9d78058b26ecd2450 | [
"MIT-0"
] | 1 | 2020-05-02T06:57:57.000Z | 2020-05-02T06:57:57.000Z | kernel.asm | HareeshwarKarthikeyan/Top-Command-in-Xv6-Operating-System | 90cf3c5edcf29518c7c8eca9d78058b26ecd2450 | [
"MIT-0"
] | null | null | null | kernel.asm | HareeshwarKarthikeyan/Top-Command-in-Xv6-Operating-System | 90cf3c5edcf29518c7c8eca9d78058b26ecd2450 | [
"MIT-0"
] | null | null | null |
kernel: file format elf32-i386
Disassembly of section .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 0f in $0xf,%al
8010000c <entry>:... | 33.19629 | 123 | 0.53569 |
a553284475a9f9bfec6bf6a6374c470848f9da82 | 554 | asm | Assembly | oeis/140/A140842.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/140/A140842.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/140/A140842.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A140842: Primes of the form 210k + 17.
; Submitted by Jon Maiga
; 17,227,647,857,1277,1487,1697,1907,2957,3167,3797,4007,4217,4637,5477,5897,6317,6737,6947,7577,8627,8837,9257,9467,9677,9887,10937,11777,11987,12197,13037,13457,13877,14087,14717,15137,15767,16187,16607
mov $1,4
mov $2,$0
add $2,2
pow $2,2
lpb $2
su... | 21.307692 | 204 | 0.66426 |
3860425823638f83e97e64453864c51e8e98fee9 | 388 | asm | Assembly | libsrc/stdio/c128/fgetc_cons.asm | grancier/z180 | e83f35e36c9b4d1457e40585019430e901c86ed9 | [
"ClArtistic"
] | null | null | null | libsrc/stdio/c128/fgetc_cons.asm | grancier/z180 | e83f35e36c9b4d1457e40585019430e901c86ed9 | [
"ClArtistic"
] | null | null | null | libsrc/stdio/c128/fgetc_cons.asm | grancier/z180 | e83f35e36c9b4d1457e40585019430e901c86ed9 | [
"ClArtistic"
] | 1 | 2019-12-03T23:57:48.000Z | 2019-12-03T23:57:48.000Z | ;
; Keyboard routines for the Commodore 128 (Z80 mode)
; By Stefano Bodrato - 27/08/2001
;
; getkey() Wait for keypress
;
; $Id: fgetc_cons.asm,v 1.5 2016/06/12 17:07:43 dom Exp $
;
SECTION code_clib
PUBLIC fgetc_cons
PUBLIC _fgetc_cons
EXTERN getk
.fgetc_cons
._fgetc_cons
call getk
and a
jr nz,fge... | 13.37931 | 57 | 0.685567 |
9ee1d20d2c748c00564cf279b9f90fb43ab3f898 | 1,465 | asm | Assembly | src/spread/wdef/editdo.asm | olifink/qspread | d6403d210bdad9966af5d2a0358d4eed3f1e1c02 | [
"MIT"
] | null | null | null | src/spread/wdef/editdo.asm | olifink/qspread | d6403d210bdad9966af5d2a0358d4eed3f1e1c02 | [
"MIT"
] | null | null | null | src/spread/wdef/editdo.asm | olifink/qspread | d6403d210bdad9966af5d2a0358d4eed3f1e1c02 | [
"MIT"
] | null | null | null | * spread Mon, 1993 Jun 14 17:57:05
* - Edit Do window
include win1_mac_menu_long
include win1_keys_colour
include win1_keys_wman
include win1_keys_wwork
include win1_keys_wstatus
include win1_keys_wdef_long
section menu
xref.s met.eddo
size equ 6*80+12
high equ 6*12+10-30
window eddo
size size,hi... | 19.533333 | 48 | 0.686007 |
8606cedcd090bb018122b72d1b665cace43da596 | 567 | asm | Assembly | oeis/158/A158733.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/158/A158733.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/158/A158733.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A158733: a(n) = 1225*n^2 + 35.
; 35,1260,4935,11060,19635,30660,44135,60060,78435,99260,122535,148260,176435,207060,240135,275660,313635,354060,396935,442260,490035,540260,592935,648060,705635,765660,828135,893060,960435,1030260,1102535,1177260,1254435,1334060,1416135,1500660,1587635,1677060,1768935,1863260,1960035,2... | 81 | 501 | 0.825397 |
0ce89c6edf4c42cbdb603bf7b4897c8987610af4 | 375 | asm | Assembly | libsrc/enterprise/exos_destroy_channel.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/enterprise/exos_destroy_channel.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/enterprise/exos_destroy_channel.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z | ;
; Enterprise 64/128 specific routines
; by Stefano Bodrato, 2011
;
; exos_destroy_channel(unsigned char ch_number);
;
;
; $Id: exos_destroy_channel.asm,v 1.4 2016-06-19 20:17:32 dom Exp $
;
SECTION code_clib
PUBLIC exos_destroy_channel
PUBLIC _exos_destroy_channel
exos_destroy_channel:
_exos_destroy_chann... | 15 | 67 | 0.736 |
762d1a4682bb950cc8e6f8ea21e954d1c434f73e | 569 | asm | Assembly | programs/oeis/117/A117767.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/117/A117767.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/117/A117767.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A117767: a(n) is the differences between the smallest square greater than prime(n) and the largest square less than prime(n), where prime(n) = A000040(n) is the n-th prime number.
; 3,3,5,5,7,7,9,9,9,11,11,13,13,13,13,15,15,15,17,17,17,17,19,19,19,21,21,21,21,21,23,23,23,23,25,25,25,25,25,27,27,27,27,27,29,29,29,29,3... | 47.416667 | 292 | 0.669596 |
d107b2cb7375b22e3c3a89f3a0ef103008db6ed8 | 750 | asm | Assembly | oeis/134/A134019.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/134/A134019.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/134/A134019.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A134019: Let P(A) be the power set of an n-element set A. Then a(n) = the number of pairs of elements {x,y} of P(A) for which either 0) x and y are intersecting but for which x is not a subset of y and y is not a subset of x, or 1) x = y.
; Submitted by Christian Krause
; 1,2,4,11,46,227,1114,5231,23566,102827,438274... | 75 | 261 | 0.773333 |
a975d423d29c1638562900340720441f7a108654 | 522 | asm | Assembly | src/firmware-tests/Platform/TemperatureSensor/Initialisation/InitialisationChainTest.asm | pete-restall/Cluck2Sesame-Prototype | 99119b6748847a7b6aeadc4bee42cbed726f7fdc | [
"MIT"
] | 1 | 2019-12-12T09:07:08.000Z | 2019-12-12T09:07:08.000Z | src/firmware-tests/Platform/TemperatureSensor/Initialisation/InitialisationChainTest.asm | pete-restall/Cluck2Sesame-Prototype | 99119b6748847a7b6aeadc4bee42cbed726f7fdc | [
"MIT"
] | null | null | null | src/firmware-tests/Platform/TemperatureSensor/Initialisation/InitialisationChainTest.asm | pete-restall/Cluck2Sesame-Prototype | 99119b6748847a7b6aeadc4bee42cbed726f7fdc | [
"MIT"
] | null | null | null | #include "Platform.inc"
#include "FarCalls.inc"
#include "TemperatureSensor.inc"
#include "TestFixture.inc"
#include "../InitialiseAfterTemperatureSensorMock.inc"
radix decimal
InitialisationChainTest code
global testArrange
testArrange:
fcall initialiseInitialiseAfterTemperatureSensorMock
testAct:
fcall i... | 21.75 | 99 | 0.823755 |
6d777f847d56d16ab8340c49a9237ec8de789ad1 | 378 | asm | Assembly | oeis/115/A115311.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/115/A115311.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/115/A115311.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A115311: a(n) = gcd(Lucas(n)-1, Fibonacci(n)-1).
; Submitted by Christian Krause
; 0,2,1,2,2,1,4,2,3,2,22,1,8,2,29,2,42,1,76,2,55,2,398,1,144,2,521,2,754,1,1364,2,987,2,7142,1,2584,2,9349,2,13530,1,24476,2,17711,2,128158,1,46368,2,167761,2,242786,1,439204,2,317811,2,2299702,1
lpb $0
sub $0,1
add $1,1
mov $2,$3... | 25.2 | 195 | 0.626984 |
f6ad2d490674097d9cf3707ad8d2ab89d625cea4 | 1,603 | asm | Assembly | libsrc/_DEVELOPMENT/alloc/malloc/z80/asm_heap_alloc.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/alloc/malloc/z80/asm_heap_alloc.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/alloc/malloc/z80/asm_heap_alloc.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null |
; ===============================================================
; Dec 2013
; ===============================================================
;
; void *heap_alloc(void *heap, size_t size)
;
; Allocate size bytes from the heap, returning ptr to the
; allocated memory or 0 with carry set on failure.
;
; Returns 0 if s... | 21.958904 | 66 | 0.474111 |
c091f9796614ee58041a86645b4b23ee5242507a | 10,336 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0xca_notsx.log_21829_1601.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0xca_notsx.log_21829_1601.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0xca_notsx.log_21829_1601.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 %r13
push %r15
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0xc0f9, %r9
nop
xor %r15, %r15
movb (%r9), %bl
nop
nop
xor $44203, %rbp
lea addresses_WT_ht+0x14ef9, %rcx
nop
nop
add $51555, %r13
mov $0x6162636465666768, %r11
movq %... | 27.859838 | 2,999 | 0.65267 |
ae7120a4fc39641e1645ec0f28a0ed1e8b73b4f3 | 13,826 | asm | Assembly | zr16.asm | LHLaurini/zr16-fasmg | 97ab3107def24e6039250ff575b8e3a2dfe8305c | [
"Unlicense"
] | 1 | 2019-10-29T16:50:42.000Z | 2019-10-29T16:50:42.000Z | zr16.asm | LHLaurini/zr16-fasmg | 97ab3107def24e6039250ff575b8e3a2dfe8305c | [
"Unlicense"
] | 1 | 2022-03-22T11:58:11.000Z | 2022-03-22T11:58:11.000Z | zr16.asm | LHLaurini/zr16-fasmg | 97ab3107def24e6039250ff575b8e3a2dfe8305c | [
"Unlicense"
] | null | null | null |
element zr16.reg
element r0? : zr16.reg + 0
element r1? : zr16.reg + 1
element r2? : zr16.reg + 2
element r3? : zr16.reg + 3
element r4? : zr16.reg + 4
element r5? : zr16.reg + 5
element r6? : zr16.reg + 6
element r7? : zr16.reg + 7
element r8? : zr16.reg + 8
element r9? : zr16.reg + 9
element r10? : zr16.reg + 10
ele... | 32.303738 | 143 | 0.672573 |
3495b08ba69794fc5b1b0579c6dedfed43fe914e | 8,221 | asm | Assembly | Transynther/x86/_processed/US/_st_zr_un_/i9-9900K_12_0xa0_notsx.log_13833_1001.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/US/_st_zr_un_/i9-9900K_12_0xa0_notsx.log_13833_1001.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/US/_st_zr_un_/i9-9900K_12_0xa0_notsx.log_13833_1001.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 %r8
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x84af, %r9
clflush (%r9)
inc %rbx
movl $0x61626364, (%r9)
nop
sub $59051, %rsi
lea addresses_A_ht+0x952f, %rsi
lea addresses_A_ht+0x134ef, %rdi
nop
inc %r10
mov $33, %rcx
r... | 31.258555 | 2,999 | 0.656976 |
3c5334f09933376a109312f8712557d0536c03ae | 27,497 | asm | Assembly | Driver/Printer/Fax/CCom/ccomSetup.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Driver/Printer/Fax/CCom/ccomSetup.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Driver/Printer/Fax/CCom/ccomSetup.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 73 | 2018-11-19T20:46:53.000Z | 2022-03-29T00:59:26.000Z | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1991 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Printer/Fax/CCom
FILE: ccomSetup.asm
AUTHOR: Don Reeves, May 2, 1991
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:
... | 23.282811 | 79 | 0.596247 |
be63deb170c3c23e0d36a12df265988d4843da65 | 3,664 | asm | Assembly | src/syscalls/net.asm | moneytech/BareMetal-kernel | 7d5aed7a5c2b9bfd97c10dd3c0ebffb82e3970de | [
"BSD-2-Clause"
] | 289 | 2015-01-02T06:54:12.000Z | 2020-01-19T12:45:22.000Z | src/syscalls/net.asm | moneytech/BareMetal-kernel | 7d5aed7a5c2b9bfd97c10dd3c0ebffb82e3970de | [
"BSD-2-Clause"
] | 37 | 2015-01-14T18:13:35.000Z | 2018-10-25T19:06:03.000Z | src/syscalls/net.asm | moneytech/BareMetal-kernel | 7d5aed7a5c2b9bfd97c10dd3c0ebffb82e3970de | [
"BSD-2-Clause"
] | 83 | 2015-02-13T16:09:40.000Z | 2020-01-16T13:38:31.000Z | ; =============================================================================
; BareMetal -- a 64-bit OS written in Assembly for x86-64 systems
; Copyright (C) 2008-2020 Return Infinity -- see LICENSE.TXT
;
; Network Functions
; =============================================================================
; -------... | 26.550725 | 79 | 0.525109 |
4121b7fb6a2cc40fe5a7a6a950d4e2361899070a | 1,929 | asm | Assembly | src/spread/start.asm | olifink/qspread | d6403d210bdad9966af5d2a0358d4eed3f1e1c02 | [
"MIT"
] | null | null | null | src/spread/start.asm | olifink/qspread | d6403d210bdad9966af5d2a0358d4eed3f1e1c02 | [
"MIT"
] | null | null | null | src/spread/start.asm | olifink/qspread | d6403d210bdad9966af5d2a0358d4eed3f1e1c02 | [
"MIT"
] | null | null | null | * Spreadsheet 29/11-91
* - qdos job startup
include win1_keys_qdos_sms
include win1_mac_oli
include win1_spread_keys
section start
xdef jobbase,cltab
xref.l qs_vers,qs_date1,qs_date2,qs_date3
jobbase
bra start
dc.w 0
dc.w $4AFB
qd_name
dc.w 7
dc.b 'QSpread ... | 20.521277 | 78 | 0.630378 |
9460849202e6d83f72d738c5eac7b1714433488a | 696 | asm | Assembly | oeis/081/A081078.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/081/A081078.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/081/A081078.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A081078: a(n) = Lucas(4n) - 3, or Lucas(2n-1)*Lucas(2n+1).
; Submitted by Jamie Morken(s1)
; 4,44,319,2204,15124,103679,710644,4870844,33385279,228826124,1568397604,10749957119,73681302244,505019158604,3461452807999,23725150497404,162614600673844,1114577054219519,7639424778862804,52361396397820124,358890350005878079,... | 40.941176 | 491 | 0.824713 |
c247aeb3d7e4c7da8b5713c16887c4114633a777 | 1,495 | asm | Assembly | text/maps/silph_co_2f.asm | etdv-thevoid/pokemon-rgb-enhanced | 5b244c1cf46aab98b9c820d1b7888814eb7fa53f | [
"MIT"
] | 1 | 2022-01-09T05:28:52.000Z | 2022-01-09T05:28:52.000Z | text/maps/silph_co_2f.asm | ETDV-TheVoid/pokemon-rgb-enhanced | 5b244c1cf46aab98b9c820d1b7888814eb7fa53f | [
"MIT"
] | null | null | null | text/maps/silph_co_2f.asm | ETDV-TheVoid/pokemon-rgb-enhanced | 5b244c1cf46aab98b9c820d1b7888814eb7fa53f | [
"MIT"
] | null | null | null | _SilphCo2Text_59ded::
text "Eeek!"
line "No! Stop! Help!"
para "Oh, you're not"
line "with TEAM ROCKET."
cont "I thought..."
cont "I'm sorry. Here,"
cont "please take this!"
prompt
_ReceivedTM36Text::
text $52, " got"
line "@"
TX_RAM wcf4b
text "!@@"
_TM36ExplanationText::
text "TM47 is"
line "EXPLOSIO... | 15.412371 | 27 | 0.701672 |
562328a1c5e64e374fd8ce6167a7d9afec0230af | 1,100 | asm | Assembly | asm/memcpy.asm | pamoroso/suite8080 | 7811d427e4871c5ecc74c0d139bfae66a97424ea | [
"MIT"
] | 13 | 2021-09-12T20:13:58.000Z | 2022-03-01T02:19:14.000Z | asm/memcpy.asm | pamoroso/suite8080 | 7811d427e4871c5ecc74c0d139bfae66a97424ea | [
"MIT"
] | null | null | null | asm/memcpy.asm | pamoroso/suite8080 | 7811d427e4871c5ecc74c0d139bfae66a97424ea | [
"MIT"
] | 2 | 2021-11-05T08:15:59.000Z | 2021-11-05T11:01:54.000Z | ; Copy a block of memory.
;
; The program runs on CP/M but you need a debugger like DDT or SID to inspect the
; process and the machine state. From SID start the program with this command,
; which runs it until the breakpoint at address 'done':
;
; g,.done
org 100h
len equ 10 ... | 30.555556 | 81 | 0.414545 |
43bc9350c9dfba2c2ce036e7ac8ef344aa7bf858 | 3,471 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_340_1536.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_340_1536.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_340_1536.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 %r15
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x1ca78, %rsi
lea addresses_A_ht+0x44f8, %rdi
and %r8, %r8
mov $21, %rcx
rep movsb
sub $51693, %rdi
lea addresses_WT_ht+0x160a1, %r9
and %r15, %r15
movb $0x61, (%r9)
and %rdi, %r... | 28.45082 | 1,019 | 0.656871 |
4f741f29427cf9ce77aede6251e7d0ce56006aae | 376 | asm | Assembly | programs/oeis/132/A132913.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/132/A132913.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/132/A132913.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A132913: a(n) = ceiling(sqrt(n) + n^(1/3)).
; 2,3,4,4,4,5,5,5,6,6,6,6,6,7,7,7,7,7,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,13,13
mul $0,8
sub $0,1
lpb $0,1
sub $0,1
add $2,1
lpb $2,1
sub $0,$2
add $1,3
gcd $2,2
lpe
... | 18.8 | 166 | 0.529255 |
8e0965025809a9f215e756d077d6e1b185d1fa45 | 8,527 | asm | Assembly | falling_sand.asm | Darksonn/falling_sand-asm | 02a1273829de4830f973795dee83c70ee9ddd39f | [
"MIT"
] | 5 | 2020-05-31T15:14:31.000Z | 2021-06-19T00:53:47.000Z | falling_sand.asm | Darksonn/falling_sand-asm | 02a1273829de4830f973795dee83c70ee9ddd39f | [
"MIT"
] | null | null | null | falling_sand.asm | Darksonn/falling_sand-asm | 02a1273829de4830f973795dee83c70ee9ddd39f | [
"MIT"
] | null | null | null | BITS 16
mov ax, 7C0h
mov ds, ax
push ds ; register keyboard handler
push word 0
pop ds
cli
mov [9h * 4], word keyboardhandler
mov [9h * 4 + 2], word 7C0h
sti
pop ds
%define RANDOM 993
%define SPAWNING_TYPE 994
%define IS_SPAWNING 995
%define CLOCK_STEP 996
%define POSITION 997
%define IS_STEPPING_... | 23.108401 | 80 | 0.684531 |
bc03d80ddf0e038af8ced81554046b7e26b3100a | 2,983 | asm | Assembly | libtool/src/gmp-6.1.2/mpn/arm64/gcd_1.asm | kroggen/aergo | 05af317eaa1b62b21dc0144ef74a9e7acb14fb87 | [
"MIT"
] | 278 | 2015-11-03T03:01:20.000Z | 2022-01-20T18:21:05.000Z | libtool/src/gmp-6.1.2/mpn/arm64/gcd_1.asm | kroggen/aergo | 05af317eaa1b62b21dc0144ef74a9e7acb14fb87 | [
"MIT"
] | 374 | 2015-11-03T12:37:22.000Z | 2021-12-17T14:18:08.000Z | libtool/src/gmp-6.1.2/mpn/arm64/gcd_1.asm | kroggen/aergo | 05af317eaa1b62b21dc0144ef74a9e7acb14fb87 | [
"MIT"
] | 96 | 2015-11-22T07:47:26.000Z | 2022-01-20T19:52:19.000Z | dnl ARM v6t2 mpn_gcd_1.
dnl Based on the K7 gcd_1.asm, by Kevin Ryde. Rehacked for ARM by Torbjorn
dnl Granlund.
dnl Copyright 2000-2002, 2005, 2009, 2011-2013 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/o... | 23.674603 | 79 | 0.685887 |
8b1be70da8b513eddc07b6a04d5fefd2ee0c0cf5 | 5,620 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_636.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_636.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_636.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 %r9
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0xbed9, %r9
nop
nop
nop
nop
sub $9822, %r11
movl $0x61626364, (%r9)
nop
nop
nop
xor $23319, %rsi
lea addresses_D_ht+0x1a921, %r11
sub %rcx, %rcx
movb (%r11), %r9b
nop
nop
nop
n... | 42.575758 | 2,999 | 0.658897 |
b9c0db8066821c03bdf8fd0bd2b5913789ccc3a5 | 557 | asm | Assembly | programs/oeis/088/A088139.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/088/A088139.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/088/A088139.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A088139: a(n) = 2*a(n-1) - 6*a(n-2), a(0)=0, a(1)=1.
; 0,1,2,-2,-16,-20,56,232,128,-1136,-3040,736,19712,35008,-48256,-306560,-323584,1192192,4325888,1498624,-22958080,-54907904,27932672,385312768,603029504,-1105817600,-5829812224,-5024718848,24929435648,80007184384,10437754880,-459167596544,-980961722368,79308213452... | 42.846154 | 412 | 0.743268 |
27db35ba2d46d16da1a2f1e1a5b073480068cc58 | 1,298 | asm | Assembly | programs/oeis/231/A231000.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/231/A231000.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/231/A231000.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A231000: Number of years after which a date can fall on the same day of the week, in the Julian calendar.
; 0,5,6,11,17,22,23,28,33,34,39,45,50,51,56,61,62,67,73,78,79,84,89,90,95,101,106,107,112,117,118,123,129,134,135,140,145,146,151,157,162,163,168,173,174,179,185,190,191,196,201,202,207,213,218,219,224,229,230,23... | 49.923077 | 973 | 0.702619 |
a91c03e463554638a8f922550ba7287ce3a086c4 | 630 | asm | Assembly | oeis/165/A165797.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/165/A165797.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/165/A165797.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A165797: a(n) = n^( sigma(n) - tau(n) ).
; Submitted by Christian Krause
; 1,2,9,256,625,1679616,117649,8589934592,3486784401,100000000000000,25937424601,552061438912436417593344,23298085122481,83668255425284801560576,332525673007965087890625,20282409603651670423947251286016,48661191875666868481,265456074833292280954... | 70 | 453 | 0.860317 |
3de639c7e775f7221b130414764129e2c25c58e5 | 1,998 | asm | Assembly | programs/oeis/185/A185761.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/185/A185761.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/185/A185761.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A185761: Number of (n+1) X 2 binary arrays with no 2 X 2 subblock trace equal to any horizontal or vertical neighbor 2 X 2 subblock trace.
; 16,40,104,264,680,1736,4456,11400,29224,74824,191720,491016,1257896,3221960,8253544,21141384,54155560,138721096,355343336,910227720,2331601064,5972511944,15298916200,39188963976... | 285.428571 | 1,727 | 0.918919 |
31a9634f4ab99f7d4058c25cb14723e7c51336ca | 200 | asm | Assembly | libsrc/_DEVELOPMENT/math/float/am9511/lam32/c/sccz80/tan.asm | ahjelm/z88dk | c4de367f39a76b41f6390ceeab77737e148178fa | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/math/float/am9511/lam32/c/sccz80/tan.asm | C-Chads/z88dk | a4141a8e51205c6414b4ae3263b633c4265778e6 | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/math/float/am9511/lam32/c/sccz80/tan.asm | C-Chads/z88dk | a4141a8e51205c6414b4ae3263b633c4265778e6 | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z |
SECTION code_fp_am9511
PUBLIC tan
EXTERN cam32_sccz80_tan
defc tan = cam32_sccz80_tan
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _tan
EXTERN cam32_sdcc_tan
defc _tan = cam32_sdcc_tan
ENDIF
| 13.333333 | 28 | 0.815 |
eb54a30aeaa2e9560213569963767b111ef75ee4 | 5,892 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0xca_notsx.log_21829_1094.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0xca_notsx.log_21829_1094.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0xca_notsx.log_21829_1094.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 %r13
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x1aab8, %rsi
lea addresses_D_ht+0x1bbe8, %rdi
dec %r13
mov $65, %rcx
rep movsq
nop
nop
nop
and $22064, %r11
pop %rsi
pop %rdi
pop %rcx
pop %r13
pop %r11
ret
.global s_faulty_load
s_faulty_load:
p... | 35.709091 | 2,999 | 0.654616 |
02673dc222bc606d7d8d5f4bf84e628782a7992a | 237 | asm | Assembly | programs/oeis/016/A016893.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/016/A016893.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/016/A016893.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A016893: (5n+3)^9.
; 19683,134217728,10604499373,198359290368,1801152661463,10578455953408,46411484401953,165216101262848,502592611936843,1352605460594688,3299763591802133,7427658739644928,15633814156853823
mul $0,5
add $0,3
pow $0,9
| 33.857143 | 187 | 0.839662 |
c347beea43ff6f6d03ec27ad4345856dd8b0e989 | 96 | asm | Assembly | libsrc/_DEVELOPMENT/math/float/math32/lm32/c/sdcc/frexp.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/math/float/math32/lm32/c/sdcc/frexp.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/math/float/math32/lm32/c/sdcc/frexp.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z |
SECTION code_fp_math32
PUBLIC _frexp
EXTERN cm32_sdcc_frexp
defc _frexp = cm32_sdcc_frexp
| 13.714286 | 30 | 0.822917 |
aec4ee98ead761c2253c46adc6410465d4d8fbe8 | 543,824 | asm | Assembly | kernel/kernel.asm | DragonHole/xv6 | c5b5baf5e1c508e1d6bfd17d9c12ec2684ccc7fc | [
"MIT-0"
] | null | null | null | kernel/kernel.asm | DragonHole/xv6 | c5b5baf5e1c508e1d6bfd17d9c12ec2684ccc7fc | [
"MIT-0"
] | null | null | null | kernel/kernel.asm | DragonHole/xv6 | c5b5baf5e1c508e1d6bfd17d9c12ec2684ccc7fc | [
"MIT-0"
] | null | null | null |
kernel/kernel: 文件格式 elf64-littleriscv
Disassembly of section .text:
0000000080000000 <_entry>:
80000000: 00009117 auipc sp,0x9
80000004: 18010113 addi sp,sp,384 # 80009180 <stack0>
80000008: 6505 lui a0,0x1
8000000a: f14025f3 csrr a1,mhartid
8000... | 42.04608 | 93 | 0.518181 |
2cb24ea3c97a3f837195e0cdd0e5e135838f47d6 | 595 | asm | Assembly | examples/v2cpse2/week2-hello/asm.asm | florenso/cpp2 | a2b84987062d017637160a73f92f8aa531c81339 | [
"BSL-1.0"
] | null | null | null | examples/v2cpse2/week2-hello/asm.asm | florenso/cpp2 | a2b84987062d017637160a73f92f8aa531c81339 | [
"BSL-1.0"
] | null | null | null | examples/v2cpse2/week2-hello/asm.asm | florenso/cpp2 | a2b84987062d017637160a73f92f8aa531c81339 | [
"BSL-1.0"
] | null | null | null | .text
.global print_asciz
print_asciz:
push { r5, lr }
mov r5, r0
loop:
ldrb r0, [ r5 ]
add r0, r0, #0
beq done
bl magic
bl put_char
add r5, r5, #1
b loop
done:
pop { r5, pc }
.global application
application:
push {lr}
ldr r0, =string
bl print_asciz
pop {pc}
string: .as... | 13.522727 | 49 | 0.642017 |
0f683e883f49da90e0f31b9e5382ac4510dab57c | 296 | asm | Assembly | programs/oeis/100/A100219.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/100/A100219.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/100/A100219.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A100219: Expansion of (1-2*x)/((1-x)*(1-x+x^2)).
; 1,0,-2,-3,-2,0,1,0,-2,-3,-2,0,1,0,-2,-3,-2,0,1,0,-2,-3,-2,0,1,0,-2,-3,-2,0,1,0,-2,-3,-2,0,1,0,-2,-3,-2,0,1,0,-2,-3,-2,0,1,0,-2,-3,-2,0,1,0,-2,-3,-2,0,1,0,-2,-3,-2,0,1,0,-2,-3,-2,0
pow $0,2
gcd $0,12
lpb $0,1
sub $0,5
lpe
mov $1,$0
sub $1,1
| 26.909091 | 181 | 0.449324 |
2c1c8e82a1bbca8f09ea1b5d7150b26a36df4a9b | 9,584 | asm | Assembly | Palmtree.Math.Core.Sint/vs_build/x86_Debug/pmc_to.asm | rougemeilland/Palmtree.Math.Core.Sint | 0895fd4988b146f01ec705e091ef3fd79a721b40 | [
"MIT"
] | null | null | null | Palmtree.Math.Core.Sint/vs_build/x86_Debug/pmc_to.asm | rougemeilland/Palmtree.Math.Core.Sint | 0895fd4988b146f01ec705e091ef3fd79a721b40 | [
"MIT"
] | null | null | null | Palmtree.Math.Core.Sint/vs_build/x86_Debug/pmc_to.asm | rougemeilland/Palmtree.Math.Core.Sint | 0895fd4988b146f01ec705e091ef3fd79a721b40 | [
"MIT"
] | null | null | null | ; Listing generated by Microsoft (R) Optimizing Compiler Version 19.16.27026.1
TITLE Z:\Sources\Lunor\Repos\rougemeilland\Palmtree.Math.Core.Sint\Palmtree.Math.Core.Sint\pmc_to.c
.686P
.XMM
include listing.inc
.model flat
INCLUDELIB MSVCRTD
INCLUDELIB OLDNAMES
_DATA SEGMENT
COMM _uint_number_zero:DWORD
COMM _u... | 21.250554 | 100 | 0.668406 |
dff87e8f9e88cd1350774f302b4a28a9081dd2e7 | 226 | asm | Assembly | programs/oeis/016/A016806.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/016/A016806.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/016/A016806.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A016806: a(n) = (4n)^6.
; 0,4096,262144,2985984,16777216,64000000,191102976,481890304,1073741824,2176782336,4096000000,7256313856,12230590464,19770609664,30840979456,46656000000,68719476736,98867482624
pow $0,6
mul $0,4096
| 37.666667 | 177 | 0.809735 |
34bddd54c9c360ad167a8b6ffc26f2a4b07a0505 | 1,129 | asm | Assembly | Borland/CBuilder5/Source/RTL/source/memory/stkavail.asm | TrevorDArcyEvans/DivingMagpieSoftware | 7ffcfef653b110e514d5db735d11be0aae9953ec | [
"MIT"
] | 1 | 2021-05-27T10:27:25.000Z | 2021-05-27T10:27:25.000Z | Borland/CBuilder5/Source/RTL/source/memory/stkavail.asm | TrevorDArcyEvans/Diving-Magpie-Software | 7ffcfef653b110e514d5db735d11be0aae9953ec | [
"MIT"
] | null | null | null | Borland/CBuilder5/Source/RTL/source/memory/stkavail.asm | TrevorDArcyEvans/Diving-Magpie-Software | 7ffcfef653b110e514d5db735d11be0aae9953ec | [
"MIT"
] | null | null | null | ;[]-----------------------------------------------------------------[]
;| STKAVL.ASM -- available stack space |
;[]-----------------------------------------------------------------[]
;
; C/C++ Run Time Library - Version 10.0
;
; Copyright (c) 1991, 2000 by Inprise Corporation... | 29.710526 | 73 | 0.441098 |
81dc9dc53b7517cbb80fe9e624a47e21ad16f132 | 34,756 | asm | Assembly | fiat-amd64/327.96_ratio06423_seed3148466208367815_mul_p448_solinas.asm | dderjoel/fiat-crypto | 57a9612577d766a0ae83169ea9517bfa7f01ea4e | [
"BSD-1-Clause",
"Apache-2.0",
"MIT-0",
"MIT"
] | 491 | 2015-11-25T23:44:39.000Z | 2022-03-29T17:31:21.000Z | fiat-amd64/327.96_ratio06423_seed3148466208367815_mul_p448_solinas.asm | dderjoel/fiat-crypto | 57a9612577d766a0ae83169ea9517bfa7f01ea4e | [
"BSD-1-Clause",
"Apache-2.0",
"MIT-0",
"MIT"
] | 755 | 2016-02-02T14:03:05.000Z | 2022-03-31T16:47:23.000Z | fiat-amd64/327.96_ratio06423_seed3148466208367815_mul_p448_solinas.asm | dderjoel/fiat-crypto | 57a9612577d766a0ae83169ea9517bfa7f01ea4e | [
"BSD-1-Clause",
"Apache-2.0",
"MIT-0",
"MIT"
] | 117 | 2015-10-25T16:28:15.000Z | 2022-02-08T23:01:09.000Z | SECTION .text
GLOBAL mul_p448_solinas
mul_p448_solinas:
sub rsp, 0x4b0 ; last 0x30 (6) for Caller - save regs
mov [ rsp + 0x480 ], rbx; saving to stack
mov [ rsp + 0x488 ], rbp; saving to stack
mov [ rsp + 0x490 ], r12; saving to stack
mov [ rsp + 0x498 ], r13; saving to stack
mov [ rsp + 0x4a0 ], r14; saving to stac... | 38.660734 | 135 | 0.629244 |
6eab3ea37616e0ec839868e6ee4756b74343d535 | 302 | asm | Assembly | programs/oeis/049/A049632.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/049/A049632.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/049/A049632.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A049632: a(n)=T(n,n), array T as in A049627.
; 1,4,6,10,14,22,26,38,46,58,66,86,94,118,130,146,162,194,206,242,258,282,302,346,362,402,426,462,486,542,558,618,650,690,722,770,794,866
cal $0,49691 ; a(n)=T(n,n), array T as in A049687. Also a(n)=T(2n,2n), array T given by A049639.
mov $1,$0
add $1,1
| 43.142857 | 137 | 0.65894 |
d8392fd11eb7f032aa690a253ed9bb278109d679 | 7,485 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2064.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_2064.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_2064.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 %r8
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x8110, %rbx
nop
nop
nop
nop
nop
cmp $50424, %r8
movb $0x61, (%rbx)
nop
nop
nop
xor %rbp, %rbp
lea addresses_normal_ht+0x14130, %rcx
add %r8, %r8
mov $0x61626364656667... | 31.987179 | 2,999 | 0.653173 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.