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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
a35325a0cc2c40ae31dc23dcad36e104bf6531dc | 726 | asm | Assembly | kernel/interrupts.asm | clima-dev/climaos | f65e4b6bbcbfbd9f4e28fb909c4de4ead21dbe57 | [
"0BSD"
] | 2 | 2022-03-03T14:09:32.000Z | 2022-03-06T16:02:11.000Z | kernel/interrupts.asm | clima-dev/climaos | f65e4b6bbcbfbd9f4e28fb909c4de4ead21dbe57 | [
"0BSD"
] | null | null | null | kernel/interrupts.asm | clima-dev/climaos | f65e4b6bbcbfbd9f4e28fb909c4de4ead21dbe57 | [
"0BSD"
] | null | null | null | %include "doall.inc"
extern isr_handler
; Common handler for the ISRs
isr_common_format:
pushall
mov r15, rsp ; stash rsp somewhere it will be safe
and rsp, ~0xf ; C expects a 16-byte aligned stack
cld ; and DF=0
mov rdi, r15 ; pointer to `regs_t`
call isr_handler
mov rsp, r15 ; res... | 15.125 | 77 | 0.661157 |
d16a006a2b459fdb705323c90038016571b96112 | 2,208 | asm | Assembly | programs/oeis/169/A169967.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/169/A169967.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/169/A169967.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A169967: Numbers whose decimal expansion contains only 0's and 4's.
; 0,4,40,44,400,404,440,444,4000,4004,4040,4044,4400,4404,4440,4444,40000,40004,40040,40044,40400,40404,40440,40444,44000,44004,44040,44044,44400,44404,44440,44444,400000,400004,400040,400044,400400,400404,400440,400444,404000,404004,404040,404044,40... | 245.333333 | 1,997 | 0.85779 |
9383b38b1034d66b012910523fd937ebdd3b0787 | 331 | asm | Assembly | MySource/if-else char.asm | mdabdullahibnaharun/Assembly-Language | a56500622b961c7ecf9690ad9d2136c3e05ea1f7 | [
"MIT"
] | null | null | null | MySource/if-else char.asm | mdabdullahibnaharun/Assembly-Language | a56500622b961c7ecf9690ad9d2136c3e05ea1f7 | [
"MIT"
] | null | null | null | MySource/if-else char.asm | mdabdullahibnaharun/Assembly-Language | a56500622b961c7ecf9690ad9d2136c3e05ea1f7 | [
"MIT"
] | null | null | null |
org 100h
.model small
.stack 100h
.data
.code
main proc
mov ah,1
int 21h
cmp al,'A'
jl end_if
cmp al,'Z'
jg end_if
mov dl,al
mov ah,2
int 21h
end_if:
mov ah,4ch
int 21h
main endp
end main
re... | 7.880952 | 15 | 0.41994 |
81611fed61a39719d7821d7b598ff87a8160052f | 2,130 | asm | Assembly | sample/assembly/correct_asm/correct_asm.asm | TheNotary/webserver-hackme-edu | c9f02f080d5d22467f2bace776012a0c39c7c686 | [
"MIT"
] | null | null | null | sample/assembly/correct_asm/correct_asm.asm | TheNotary/webserver-hackme-edu | c9f02f080d5d22467f2bace776012a0c39c7c686 | [
"MIT"
] | null | null | null | sample/assembly/correct_asm/correct_asm.asm | TheNotary/webserver-hackme-edu | c9f02f080d5d22467f2bace776012a0c39c7c686 | [
"MIT"
] | null | null | null | ; asm_c_call.asm print a string using printf and getenv
; Assemble: nasm -f elf64 -l asm_c_call.lst asm_c_call.asm
; Link: gcc -m64 -o asm_c_call asm_c_call.o
; Run: ./asm_c_call
; Equivalent C code
; // hello.c
; #include <stdio.h>
; int main()
; {
; char envKey[] = "PATH";
; //char envVal[5]; // ... | 28.4 | 107 | 0.573239 |
2a0918e47b066a69c0043ad79437f55b1aab1311 | 970 | asm | Assembly | programs/oeis/023/A023472.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/023/A023472.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/023/A023472.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A023472: a(n) = n - 30.
; -30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63... | 121.25 | 882 | 0.676289 |
f58db7b0239208b60dd7df03eaa3511fdd78d2e2 | 2,434 | asm | Assembly | programs/oeis/157/A157511.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/157/A157511.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/157/A157511.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A157511: a(n) = 5000*n^2 + 200*n + 1.
; 5201,20401,45601,80801,126001,181201,246401,321601,406801,502001,607201,722401,847601,982801,1128001,1283201,1448401,1623601,1808801,2004001,2209201,2424401,2649601,2884801,3130001,3385201,3650401,3925601,4210801,4506001,4811201,5126401,5451601,5786801,6132001,6487201,6852401,7... | 187.230769 | 2,297 | 0.872638 |
f03ed80d3b303c652e5d079eb9c114bcb088240e | 9,226 | asm | Assembly | source/analysis/element.asm | paulscottrobson/remslash | a3999ee765d25592558eff05bdb46df953afd089 | [
"MIT"
] | null | null | null | source/analysis/element.asm | paulscottrobson/remslash | a3999ee765d25592558eff05bdb46df953afd089 | [
"MIT"
] | null | null | null | source/analysis/element.asm | paulscottrobson/remslash | a3999ee765d25592558eff05bdb46df953afd089 | [
"MIT"
] | null | null | null | ; ******************************************************************************
; ******************************************************************************
;
; Name : element.asm
; Purpose : Get current/Next element
; Author : Paul Robson (paul@robsons.org.uk)
; Created : 14th October 2019
;
; **********... | 28.83125 | 80 | 0.490028 |
a3c11a8af41616f69b9629a284b44e0f149cb7fa | 456 | asm | Assembly | FillScreen/FillScreen.asm | sonicspiral/N64_ASM_Videos | 591bbaf337d43162529f255fea2306d9ee33630c | [
"BSD-2-Clause"
] | 23 | 2019-02-04T17:23:55.000Z | 2022-02-28T16:13:17.000Z | FillScreen/FillScreen.asm | sonicspiral/N64_ASM_Videos | 591bbaf337d43162529f255fea2306d9ee33630c | [
"BSD-2-Clause"
] | 2 | 2019-12-09T04:20:31.000Z | 2019-12-14T18:22:58.000Z | FillScreen/FillScreen.asm | sonicspiral/N64_ASM_Videos | 591bbaf337d43162529f255fea2306d9ee33630c | [
"BSD-2-Clause"
] | 2 | 2019-12-08T20:28:40.000Z | 2022-02-04T23:41:51.000Z | // N64 Fill Screen
arch n64.cpu
endian msb
output "FillScreen.N64", create
origin $00000000
base $80000000 // Set this to the range you are inserting your blob
include "../LIB/N64.INC"
include "../LIB/COLORS16.INC"
lui at, VI_BASE
lw at, VI_ORIGIN(at)
lui a0, LIME_GREEN16
ori a0, LIME_GREEN16
la a1, 320 * 240 * ... | 19.826087 | 67 | 0.692982 |
2ed9e0aec0d12e5548ebdac5a6279ccbb3aa8169 | 307 | asm | Assembly | libsrc/_DEVELOPMENT/stdio/c/sdcc_iy/fseek_unlocked.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/stdio/c/sdcc_iy/fseek_unlocked.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/stdio/c/sdcc_iy/fseek_unlocked.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z |
; int fseek_unlocked(FILE *stream, long offset, int whence)
SECTION code_clib
SECTION code_stdio
PUBLIC _fseek_unlocked
EXTERN asm_fseek_unlocked
_fseek_unlocked:
pop af
pop ix
pop hl
pop de
pop bc
push bc
push de
push hl
push hl
push af
jp asm_fseek_unlocked
| 11.807692 | 59 | 0.697068 |
0647873e0f509f7cd1010f90215c21b70409aa83 | 7,163 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_429.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_notsx.log_21829_429.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_notsx.log_21829_429.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 %r8
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x11c83, %rsi
lea addresses_WT_ht+0x16d3b, %rdi
inc %r8
mov $9, %rcx
rep movsb
nop
xor $17337, %r12
lea addresses_D_ht+0xa5a8, %rdi
add %r13, %r13
mov (%rdi), %cx
add $42153, %... | 38.718919 | 2,999 | 0.657127 |
235cde535b529b4d1222cbdaf98e4b410ba056ad | 431 | asm | Assembly | programs/oeis/083/A083356.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/083/A083356.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/083/A083356.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A083356: Total area of all incongruent integer-sided rectangles of area <= n.
; 0,1,3,6,14,19,31,38,54,72,92,103,139,152,180,210,258,275,329,348,408,450,494,517,613,663,715,769,853,882,1002,1033,1129,1195,1263,1333,1513,1550,1626,1704,1864,1905,2073,2116,2248,2383,2475,2522,2762,2860
lpb $0
mov $2,$0
sub $0,1
... | 35.916667 | 206 | 0.682135 |
c3786d1ea451e9856913a35224aa54ff1d941a3b | 1,189 | asm | Assembly | 14-ilinux-start-kernel/kernel/kernel.asm | weimanzhou/ilinux | b65cb77510e5a28f6342c373dea156125a8b1d42 | [
"Apache-2.0"
] | null | null | null | 14-ilinux-start-kernel/kernel/kernel.asm | weimanzhou/ilinux | b65cb77510e5a28f6342c373dea156125a8b1d42 | [
"Apache-2.0"
] | null | null | null | 14-ilinux-start-kernel/kernel/kernel.asm | weimanzhou/ilinux | b65cb77510e5a28f6342c373dea156125a8b1d42 | [
"Apache-2.0"
] | null | null | null | ; =====================================================================
; 导入的函数或变量
; ---------------------------------------------------------------------
extern ilinux_main
; =====================================================================
; 导出的函数或变量
; ------------------------------------------------------------... | 25.297872 | 71 | 0.257359 |
43e9ffdef5c9c171f4ac75f5e1cc37f5c5e6238a | 640 | asm | Assembly | programs/oeis/287/A287742.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/287/A287742.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/287/A287742.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A287742: Binary representation of the diagonal from the corner to the origin of the n-th stage of growth of the two-dimensional cellular automaton defined by "Rule 342", based on the 5-celled von Neumann neighborhood.
; 1,1,10,10,101,101,1010,1010,10101,10101,101010,101010,1010101,1010101,10101010,10101010,101010101,... | 58.181818 | 305 | 0.8 |
0b284802a6bc67fc1b7ecc567dc6cb0435a9d4d4 | 2,012 | asm | Assembly | programs/oeis/099/A099721.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/099/A099721.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/099/A099721.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A099721: a(n) = n^2*(2*n+1).
; 0,3,20,63,144,275,468,735,1088,1539,2100,2783,3600,4563,5684,6975,8448,10115,11988,14079,16400,18963,21780,24863,28224,31875,35828,40095,44688,49619,54900,60543,66560,72963,79764,86975,94608,102675,111188,120159,129600,139523,149940,160863,172304,184275,196788,209855,223488,237699,25250... | 223.555556 | 1,932 | 0.854871 |
86aa53e3afaf388d33b124e281808887c381da29 | 7,896 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_196.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_196.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_196.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 %r8
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x1bf87, %rsi
lea addresses_WC_ht+0x1b147, %rdi
nop
nop
and %r9, %r9
mov $56, %rcx
rep movsw
nop
nop
nop
nop
add $62261, %r8
lea addresses_UC_ht+0x1a417, %rsi
lea addresses_WC_ht... | 34.784141 | 2,999 | 0.661094 |
12ae840018704715dd4e4802d0b788ded2aa0fc7 | 642 | asm | Assembly | oeis/226/A226450.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/226/A226450.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/226/A226450.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A226450: a(n) = n*(3*n^2 - 5*n + 3).
; 0,1,10,45,124,265,486,805,1240,1809,2530,3421,4500,5785,7294,9045,11056,13345,15930,18829,22060,25641,29590,33925,38664,43825,49426,55485,62020,69049,76590,84661,93280,102465,112234,122605,133596,145225,157510,170469,184120,198481,213570,229405,246004,263385,281566,300565,320400... | 45.857143 | 500 | 0.753894 |
2324a571ad1051b65fc0c93809b087dbbf6fd74b | 1,684 | asm | Assembly | keyboard-scan-1.asm | BumfuzzledGames/c64-example-projects | 1a27bc8aa141ba15a1461affad7b24d5b00671a0 | [
"Unlicense"
] | null | null | null | keyboard-scan-1.asm | BumfuzzledGames/c64-example-projects | 1a27bc8aa141ba15a1461affad7b24d5b00671a0 | [
"Unlicense"
] | null | null | null | keyboard-scan-1.asm | BumfuzzledGames/c64-example-projects | 1a27bc8aa141ba15a1461affad7b24d5b00671a0 | [
"Unlicense"
] | null | null | null | // Scan the keyboard part 1
BasicUpstart2(Start)
#import "C64.inc"
// This is the first in a series of programs that shows how to
// scan the keyboard without using the kernal ROM. The objective
// of this program is to look for a single key: the INST/DEL key.
// Why might you want to scan the keyboard manual... | 37.422222 | 66 | 0.685273 |
2a87c3f53a03ea6e60ec609f5460cf4f3402c764 | 336 | asm | Assembly | programs/oeis/081/A081325.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/081/A081325.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/081/A081325.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A081325: sigma(n^2) modulo 4.
; 1,3,1,3,3,3,1,3,1,1,1,3,3,3,3,3,3,3,1,1,1,3,1,3,1,1,1,3,3,1,1,3,1,1,3,3,3,3,3,1,3,3,1,3,3,3,1,3,1,3,3,1,3,3,3,3,1,1,1,1,3,3,1,3,1,3,1,1,1,1,1,3,3,1,1,3,1,1,1,1,1,1,1,3,1,3,3,3,3,1,3,3,1,3,3,3,3,3,1,3
add $0,1
pow $0,2
sub $0,1
seq $0,46897 ; Sum of divisors of n that are not divisible... | 37.333333 | 201 | 0.559524 |
459e526d5020c3cb2a2872edaedcc0be6f6c315b | 31,916 | asm | Assembly | Legacy Windows/Win95.Etymo-Crypt.asm | fengjixuchui/Family | 2abe167082817d70ff2fd6567104ce4bcf0fe304 | [
"MIT"
] | 3 | 2021-05-15T15:57:13.000Z | 2022-03-16T09:11:05.000Z | Legacy Windows/Win95.Etymo-Crypt.asm | fengjixuchui/Family | 2abe167082817d70ff2fd6567104ce4bcf0fe304 | [
"MIT"
] | null | null | null | Legacy Windows/Win95.Etymo-Crypt.asm | fengjixuchui/Family | 2abe167082817d70ff2fd6567104ce4bcf0fe304 | [
"MIT"
] | 3 | 2021-05-15T15:57:15.000Z | 2022-01-08T20:51:04.000Z | ; *************************************************************************
; ******************** ********************
; ******************** Win95.Etymo-Crypt ********************
; ******************** by ********************
; **********... | 45.015515 | 79 | 0.441597 |
d13dea5a1c0d6b4fa6c6d67e8e2831d98da8f2ef | 2,100 | asm | Assembly | libsrc/_DEVELOPMENT/stdio/z80/asm_fflush_unlocked.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/stdio/z80/asm_fflush_unlocked.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/stdio/z80/asm_fflush_unlocked.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null |
; ===============================================================
; Jan 2014
; ===============================================================
;
; int fflush_unlocked(FILE *stream)
;
; Flush the stream. For streams most recently written to, this
; means sending any buffered output to the device. For streams
; most ... | 19.090909 | 65 | 0.538095 |
5c45a3e37c19283765a6c128b2c23dcefdb7d88d | 304 | asm | Assembly | programs/oeis/055/A055865.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/055/A055865.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/055/A055865.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A055865: Second column of triangle A055864.
; 0,2,12,100,1080,14406,229376,4251528,90000000,2143588810,56757583872,1654301902188,52644347205632,1816448730468750,67553994410557440,2694045224950414864,114692890480116793344,5191945444217181018258
mov $2,$0
add $0,2
sub $2,1
pow $0,$2
add $2,2
mul $0,$2
| 30.4 | 199 | 0.809211 |
7f39d9c8e0e159f5ca58f079fd44aef978460555 | 5,380 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_701.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_701.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_701.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 %r12
push %r14
push %rbp
push %rcx
push %rdi
lea addresses_WT_ht+0x1c5db, %r12
nop
nop
nop
dec %rbp
mov $0x6162636465666768, %r14
movq %r14, %xmm1
vmovups %ymm1, (%r12)
nop
nop
and %rcx, %rcx
lea addresses_UC_ht+0x10690, %r11
nop
add %rdi, %rdi
movb ... | 44.46281 | 2,999 | 0.658178 |
7813051e07975264050358a1f36e00e12a571548 | 1,548 | asm | Assembly | programs/oeis/008/A008218.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/008/A008218.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/008/A008218.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A008218: Floor(n/4)*floor((n+1)/4)*floor((n+2)/4).
; 0,0,0,0,1,1,2,4,8,8,12,18,27,27,36,48,64,64,80,100,125,125,150,180,216,216,252,294,343,343,392,448,512,512,576,648,729,729,810,900,1000,1000,1100,1210,1331,1331,1452,1584,1728,1728,1872,2028,2197,2197,2366,2548,2744,2744,2940,3150,3375,3375,3600,3840,4096,4096,4352... | 119.076923 | 1,408 | 0.795866 |
425a6b5e9cfe4007c0624f4affeed2761a8beb92 | 23,999 | asm | Assembly | src/isa/avx/masm/log10f.asm | jepler/aocl-libm-ose | 4033e022da428125747e118ccd6fdd9cee21c470 | [
"BSD-3-Clause"
] | 66 | 2020-11-04T17:06:10.000Z | 2022-03-10T08:03:12.000Z | src/isa/avx/masm/log10f.asm | HollowMan6/aocl-libm-ose | 4033e022da428125747e118ccd6fdd9cee21c470 | [
"BSD-3-Clause"
] | 8 | 2021-04-18T18:37:53.000Z | 2022-03-11T12:49:31.000Z | src/isa/avx/masm/log10f.asm | HollowMan6/aocl-libm-ose | 4033e022da428125747e118ccd6fdd9cee21c470 | [
"BSD-3-Clause"
] | 8 | 2020-11-09T03:45:01.000Z | 2021-11-08T02:25:31.000Z | ;
; Copyright (C) 2008-2020 Advanced Micro Devices, Inc. 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 l... | 31.536137 | 87 | 0.435435 |
00374e8d89a5879f6bb28ee18bff3226ec8776eb | 348 | asm | Assembly | oeis/021/A021325.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/021/A021325.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/021/A021325.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A021325: Decimal expansion of 1/321.
; Submitted by Jon Maiga
; 0,0,3,1,1,5,2,6,4,7,9,7,5,0,7,7,8,8,1,6,1,9,9,3,7,6,9,4,7,0,4,0,4,9,8,4,4,2,3,6,7,6,0,1,2,4,6,1,0,5,9,1,9,0,0,3,1,1,5,2,6,4,7,9,7,5,0,7,7,8,8,1,6,1,9,9,3,7,6,9,4,7,0,4,0,4,9,8,4,4,2,3,6,7,6,0,1,2,4
seq $0,42 ; Unary representation of natural numbers.
mu... | 38.666667 | 199 | 0.591954 |
f93036396e1608ae450f6889bd67f35aa6ff743b | 6,243 | asm | Assembly | maps/RuinsOfAlphKabutoChamber.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 28 | 2019-11-08T07:19:00.000Z | 2021-12-20T10:17:54.000Z | maps/RuinsOfAlphKabutoChamber.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 13 | 2020-01-11T17:00:40.000Z | 2021-09-14T01:27:38.000Z | maps/RuinsOfAlphKabutoChamber.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 22 | 2020-05-28T17:31:38.000Z | 2022-03-07T20:49:35.000Z | object_const_def ; object_event constants
const RUINSOFALPHKABUTOCHAMBER_RECEPTIONIST
const RUINSOFALPHKABUTOCHAMBER_SCIENTIST
RuinsOfAlphKabutoChamber_MapScripts:
db 2 ; scene scripts
scene_script .CheckWall ; SCENE_DEFAULT
scene_script .DummyScene ; SCENE_FINISHED
db 1 ; callbacks
callback MAPCALLBACK_TILES... | 22.376344 | 203 | 0.809066 |
91d4884ed23136a170bcb5e837c4bbd443958f01 | 256 | asm | Assembly | programs/oeis/332/A332872.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/332/A332872.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/332/A332872.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A332872: Number of ordered set partitions of {1..n} where no element of any block is greater than any element of a non-adjacent consecutive block.
; 1,1,3,10,34,116,396,1352,4616,15760
trn $0,1
seq $0,7052 ; Number of order-consecutive partitions of n.
| 42.666667 | 148 | 0.75 |
e495fe8fe43657ac17ae8bd8a29f39f809e358c3 | 651 | asm | Assembly | oeis/155/A155485.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/155/A155485.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/155/A155485.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A155485: a(n) = 5^n + (1 - 4^n)/3.
; Submitted by Christian Krause
; 1,4,20,104,540,2784,14260,72664,368780,1865744,9416100,47430024,238548220,1198333504,6014037140,30159664184,151156234860,757212830064,3791790773380,18981860359144,95000927764700,475371142699424,2378321729000820,11897472707018904,59510819783153740,29... | 46.5 | 495 | 0.835637 |
a27d5b7055f8edad5cf5b8605293df273d012eac | 204 | asm | Assembly | mc-sema/validator/x86/tests/Cmp32RR1.asm | randolphwong/mcsema | eb5b376736e7f57ff0a61f7e4e5a436bbb874720 | [
"BSD-3-Clause"
] | 2 | 2021-08-07T16:21:29.000Z | 2021-11-17T10:58:37.000Z | mc-sema/validator/x86/tests/Cmp32RR1.asm | randolphwong/mcsema | eb5b376736e7f57ff0a61f7e4e5a436bbb874720 | [
"BSD-3-Clause"
] | null | null | null | mc-sema/validator/x86/tests/Cmp32RR1.asm | randolphwong/mcsema | eb5b376736e7f57ff0a61f7e4e5a436bbb874720 | [
"BSD-3-Clause"
] | null | null | null | BITS 32
;TEST_FILE_META_BEGIN
;TEST_TYPE=TEST_F
;TEST_IGNOREFLAGS=
;TEST_FILE_META_END
; Cmp32RR1
mov eax, 0x4
mov ebx, 0x2
;TEST_BEGIN_RECORDING
cmp eax, ebx
;TEST_END_RECORDING
| 15.692308 | 25 | 0.72549 |
ce7b79bdd30dc240c13123f16fd0b1f5cee602ae | 771 | asm | Assembly | oeis/037/A037705.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/037/A037705.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/037/A037705.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A037705: Base-7 digits are, in order, the first n terms of the periodic sequence with initial period 1,3,0,2.
; Submitted by Jamie Morken(s1)
; 1,10,70,492,3445,24118,168826,1181784,8272489,57907426,405351982,2837463876,19862247133,139035729934,973250109538,6812750766768,47689255367377,333824787571642,233677351300149... | 77.1 | 473 | 0.848249 |
7bff37d94b2595080aad36ac1b3db4d281865631 | 503 | asm | Assembly | oeis/180/A180434.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/180/A180434.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/180/A180434.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A180434: Decimal expansion of constant (2 - Pi/2).
; Submitted by Jon Maiga
; 4,2,9,2,0,3,6,7,3,2,0,5,1,0,3,3,8,0,7,6,8,6,7,8,3,0,8,3,6,0,2,4,8,5,5,7,9,0,1,4,1,5,3,0,0,3,1,2,4,4,7,0,8,9,5,1,2,5,2,7,7,0,3,8,4,6,0,9,1,7,9,6,8,5,6,8,9,5,5,0,0,6,8,5,9,8,2,5,8,7,3,2,8,9,4,1,4,6,6,0
add $0,1
mov $2,1
mov $3,$0
mul $3,5
lp... | 18.62963 | 201 | 0.526839 |
68129db7baa3ba3845f1295004f5c75a9bad533f | 314 | asm | Assembly | run/linux64/cwrap.asm | pedroreissantos/B-programming-language | c5741e669c6c586107f15cd1a4dd85c08dcf5614 | [
"BSD-3-Clause"
] | 4 | 2021-07-23T01:17:41.000Z | 2021-12-10T21:28:37.000Z | run/linux64/cwrap.asm | pedroreissantos/B-programming-language | c5741e669c6c586107f15cd1a4dd85c08dcf5614 | [
"BSD-3-Clause"
] | null | null | null | run/linux64/cwrap.asm | pedroreissantos/B-programming-language | c5741e669c6c586107f15cd1a4dd85c08dcf5614 | [
"BSD-3-Clause"
] | 16 | 2019-03-16T20:21:50.000Z | 2020-05-22T15:18:07.000Z | section .text
global _char, _lchar, _putchar, prints
extern Char, lchar, putchar, _prints
_char:
mov rdi, [rsp+8]
mov rsi, [rsp+16]
jmp Char
_lchar:
mov rdi, [rsp+8]
mov rsi, [rsp+16]
mov rdx, [rsp+24]
jmp lchar
_putchar:
mov rdi, [rsp+8]
jmp putchar
prints:
push qword rdi
call _prints
add rsp, 8
| 14.952381 | 39 | 0.681529 |
f700c338fcce6a364a251e749fb8c9fc6fc15111 | 550 | asm | Assembly | oeis/016/A016793.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/016/A016793.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/016/A016793.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A016793: a(n) = (3*n + 2)^5.
; 32,3125,32768,161051,537824,1419857,3200000,6436343,11881376,20511149,33554432,52521875,79235168,115856201,164916224,229345007,312500000,418195493,550731776,714924299,916132832,1160290625,1453933568,1804229351,2219006624,2706784157,3276800000,3939040643,4704270176,5584059449,6590815232,... | 78.571429 | 490 | 0.852727 |
626e92ecddfd55de38266dc7733b8c33b7249fe0 | 33,574 | asm | Assembly | engine/movie/crystal_intro.asm | Ebernacher90/pokecrystal-allworld | 5d623c760e936842cf92563912c5bd64dd69baef | [
"blessing"
] | null | null | null | engine/movie/crystal_intro.asm | Ebernacher90/pokecrystal-allworld | 5d623c760e936842cf92563912c5bd64dd69baef | [
"blessing"
] | null | null | null | engine/movie/crystal_intro.asm | Ebernacher90/pokecrystal-allworld | 5d623c760e936842cf92563912c5bd64dd69baef | [
"blessing"
] | null | null | null | Copyright_GFPresents:
ld de, MUSIC_NONE
call PlayMusic
call ClearBGPalettes
call ClearTileMap
ld a, HIGH(vBGMap0)
ldh [hBGMapAddress + 1], a
xor a ; LOW(vBGMap0)
ldh [hBGMapAddress], a
ldh [hJoyDown], a
ldh [hSCX], a
ldh [hSCY], a
ld a, $90
ldh [hWY], a
call WaitBGMap
ld b, SCGB_GAMEFREAK_LOGO
call GetS... | 15.740272 | 64 | 0.720468 |
af0eb8d996a88ea177ea5f24278740d785c1d3b6 | 1,736 | asm | Assembly | Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48.log_2_841.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48.log_2_841.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48.log_2_841.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:
ret
.global s_faulty_load
s_faulty_load:
push %r12
push %r14
push %r15
push %r9
push %rbp
push %rcx
push %rsi
// Store
lea addresses_D+0x1f034, %r12
nop
nop
nop
nop
cmp %rcx, %rcx
mov $0x5152535455565758, %rsi
movq %rsi, %xmm4
vmovups %ymm4, (%r12)
nop
nop
nop
nop
nop
... | 17.714286 | 125 | 0.642281 |
cc92fc4c1efd87c383d139430eed856afcf09a9a | 3,765 | asm | Assembly | VirtualBox-5.0.0/src/VBox/ValidationKit/utils/cpu/exceptionsR3-asm.asm | egraba/vbox_openbsd | 6cb82f2eed1fa697d088cecc91722b55b19713c2 | [
"MIT"
] | 1 | 2015-04-30T14:18:45.000Z | 2015-04-30T14:18:45.000Z | VirtualBox-5.0.0/src/VBox/ValidationKit/utils/cpu/exceptionsR3-asm.asm | egraba/vbox_openbsd | 6cb82f2eed1fa697d088cecc91722b55b19713c2 | [
"MIT"
] | null | null | null | VirtualBox-5.0.0/src/VBox/ValidationKit/utils/cpu/exceptionsR3-asm.asm | egraba/vbox_openbsd | 6cb82f2eed1fa697d088cecc91722b55b19713c2 | [
"MIT"
] | null | null | null | ; $Id: exceptionsR3-asm.asm $
;; @file
; exceptionsR3-asm.asm - assembly helpers.
;
;
; Copyright (C) 2009-2015 Oracle Corporation
;
; This file is part of VirtualBox Open Source Edition (OSE), as
; available from http://www.virtualbox.org. This file is free software;
; you can redistribute it and/or modify it under t... | 24.933775 | 80 | 0.546348 |
163aa7e0ab9ab059432f0fd547fda0c489357ce7 | 5,669 | asm | Assembly | terminal.asm | jhunkeler/minos | 877e9bfe8e7d9e93536f4cb4af36aac65805be11 | [
"MIT"
] | 1 | 2017-12-05T16:51:06.000Z | 2017-12-05T16:51:06.000Z | terminal.asm | jhunkeler/minos | 877e9bfe8e7d9e93536f4cb4af36aac65805be11 | [
"MIT"
] | null | null | null | terminal.asm | jhunkeler/minos | 877e9bfe8e7d9e93536f4cb4af36aac65805be11 | [
"MIT"
] | null | null | null | %ifndef _TERMINAL_ASM
%define _TERMINAL_ASM
%include "builtins.asm"
T_BUFSZ equ 255 ; maximum length of terminal input buffer
terminal:
push bp
mov bp, sp
mov byte [terminal_exit], 0
mov ax, ds
mov es, ax
sub sp, 2 ; variable for buffer start address
sub sp, T_BUFSZ ; reserve space for tokens
c... | 23.42562 | 67 | 0.676133 |
52955d327ff11130997b27095e4e0a9ace5141cc | 354 | asm | Assembly | libsrc/_DEVELOPMENT/sound/bit/c/sdcc_iy/bit_synth.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/sound/bit/c/sdcc_iy/bit_synth.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/sound/bit/c/sdcc_iy/bit_synth.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z |
; void bit_synth(int dur, int freq_1, int freq_2, int freq_3, int freq_4)
SECTION code_clib
SECTION smc_sound_bit
PUBLIC _bit_synth
EXTERN l0_bit_synth_callee
_bit_synth:
pop af
pop de
pop bc
ld d,c
pop hl
pop bc
ld h,c
pop bc
push bc
push bc
push hl
push bc
push de
p... | 11.8 | 73 | 0.669492 |
76daba7a74dd8b23aaafafc380908332eb4cde39 | 29 | asm | Assembly | tests/bank_default/1.asm | NullMember/customasm | 6e34d6432583a41278e6b3596f1817ae82149531 | [
"Apache-2.0"
] | 414 | 2016-10-14T22:39:20.000Z | 2022-03-30T07:52:44.000Z | tests/bank_default/1.asm | NullMember/customasm | 6e34d6432583a41278e6b3596f1817ae82149531 | [
"Apache-2.0"
] | 100 | 2018-03-22T16:12:24.000Z | 2022-03-26T09:19:23.000Z | tests/bank_default/1.asm | NullMember/customasm | 6e34d6432583a41278e6b3596f1817ae82149531 | [
"Apache-2.0"
] | 47 | 2017-06-29T15:12:13.000Z | 2022-03-10T04:50:51.000Z | #d8 1, 2, 3, 4 ; = 0x01020304 | 29 | 29 | 0.551724 |
6207283968dfdca459d2207e07fa65468ba4b314 | 923 | asm | Assembly | uw1/eop-flipToPanel.asm | JohnGlassmyer/UltimaHacks | f9a114e00c4a1edf1ac7792b465feff2c9b88ced | [
"MIT"
] | 68 | 2018-03-04T22:34:22.000Z | 2022-03-10T15:18:32.000Z | uw1/eop-flipToPanel.asm | ptrie/UltimaHacks | 2c3557a86d94ad8b54b26bc395b9aed1604f8be1 | [
"MIT"
] | 19 | 2018-11-20T04:06:49.000Z | 2021-11-08T16:37:10.000Z | uw1/eop-flipToPanel.asm | ptrie/UltimaHacks | 2c3557a86d94ad8b54b26bc395b9aed1604f8be1 | [
"MIT"
] | 4 | 2020-09-01T17:57:36.000Z | 2022-01-04T20:51:11.000Z | %ifndef EXE_LENGTH
%include "../UltimaPatcher.asm"
%include "include/uw1.asm"
%include "include/uw1-eop.asm"
%endif
[bits 16]
startPatch EXE_LENGTH, \
expanded overlay procedure: flipToPanel
startBlockAt addr_eop_flipToPanel
push bp
mov bp, sp
; bp-based stack frame:
%assign arg_panelNumber ... | 17.75 | 73 | 0.690141 |
753fb6c6a4c3648e2b42d70d6379a73605cceb4c | 42,316 | asm | Assembly | testrandom.asm | Vignesh-Nadar/xv6 | 601dda244865540bb0ace21a2ff5ae7e6cf181f9 | [
"MIT-0"
] | null | null | null | testrandom.asm | Vignesh-Nadar/xv6 | 601dda244865540bb0ace21a2ff5ae7e6cf181f9 | [
"MIT-0"
] | null | null | null | testrandom.asm | Vignesh-Nadar/xv6 | 601dda244865540bb0ace21a2ff5ae7e6cf181f9 | [
"MIT-0"
] | null | null | null |
_testrandom: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "stat.h"
#include "user.h"
#include "fcntl.h"
int main(int argc, char *argv[]) {
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 83 e4 f0 and $0xfffffff0,%esp
... | 33.934242 | 105 | 0.433359 |
908811a45f4207d81c25920cec82e4a93dd7f406 | 11,453 | asm | Assembly | Appl/Games/CWord/cwordBoardBounds.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Appl/Games/CWord/cwordBoardBounds.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Appl/Games/CWord/cwordBoardBounds.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 73 | 2018-11-19T20:46:53.000Z | 2022-03-29T00:59:26.000Z | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) Geoworks 1994 -- All Rights Reserved
PROJECT: Crossword
MODULE:
FILE: cwordBoardBounds.asm
AUTHOR: Peter Trinh, Aug 30, 1994
ROUTINES:
Name Description
---- -----------
METHODS
-------
BoardMe... | 23.044266 | 79 | 0.602462 |
4b11daa87661f7874543ff0dd7776d47802840fb | 3,141 | asm | Assembly | private/windows/media/avi/video/libentry.asm | King0987654/windows2000 | 01f9c2e62c4289194e33244aade34b7d19e7c9b8 | [
"MIT"
] | 17 | 2020-11-13T13:42:52.000Z | 2021-09-16T09:13:13.000Z | multimedia/media/avi/video/libentry.asm | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 2 | 2020-10-19T08:02:06.000Z | 2020-10-19T08:23:18.000Z | multimedia/media/avi/video/libentry.asm | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 14 | 2020-11-14T09:43:20.000Z | 2021-08-28T08:59:57.000Z | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; DLLENTRY.ASM
;
; simulates the NT DllEntryPoint call for a Win16 DLL
;
; Copyright (c) Microsoft Corporation 1989, 1990. All rights reserved.
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
... | 25.128 | 78 | 0.453359 |
d713d48bc30cb5b7e7045e31688c30d37229d994 | 927 | asm | Assembly | ASM/attack3.asm | dequeb/asmbattle | 27e8b209de5787836e288a2f2f9b7644ce07563e | [
"MIT"
] | null | null | null | ASM/attack3.asm | dequeb/asmbattle | 27e8b209de5787836e288a2f2f9b7644ce07563e | [
"MIT"
] | null | null | null | ASM/attack3.asm | dequeb/asmbattle | 27e8b209de5787836e288a2f2f9b7644ce07563e | [
"MIT"
] | null | null | null | START: MOV A, SP ; current position
MOV B, END ; program area
MOV C, 0x25 ; marker value (%)
LOOP: CMP A, B ; while A != B
JE NEXT
MOV [A], C
DEC A
JMP LOOP
BEFORE: MOV C, END ; Point to var
MOV D, 0 ; Point to output
CALL 0x09 ; Call ROM print CALL 0x09 ; Call ROM print
N... | 23.175 | 75 | 0.578209 |
e60fab290d35269a7a0809a336e0dc2c0862a69d | 3,751 | asm | Assembly | WangShuang_book/p299.asm | SmirnovKol/Learning_x86_assembly_language | 239b2fb60d6df87316b98184c9c6b6f36940ccbe | [
"MIT"
] | 1 | 2018-11-21T23:34:24.000Z | 2018-11-21T23:34:24.000Z | WangShuang_book/p299.asm | SmirnovKol/Learning_x86_assembly_language | 239b2fb60d6df87316b98184c9c6b6f36940ccbe | [
"MIT"
] | null | null | null | WangShuang_book/p299.asm | SmirnovKol/Learning_x86_assembly_language | 239b2fb60d6df87316b98184c9c6b6f36940ccbe | [
"MIT"
] | null | null | null | ;store a new "int 7ch" interrupt handler at 0000:0204
;store the old entry address of "int 7ch" at 0000:0200
;the new "int 7ch" provides 4 sub procedure:
; 1. clear screen (when (ah)=0)
; 2. set font color of the whole screen (when (ah)=1)
; 3. set background color of the whole screen (when (ah)=2)
; 4. scroll up the ... | 17.05 | 149 | 0.647027 |
1c2828e489e3bb1a365b3c2e22200d3c4ccfea83 | 563 | asm | Assembly | oeis/101/A101362.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/101/A101362.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/101/A101362.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A101362: a(n) = (n+1)*n^4.
; 0,2,48,324,1280,3750,9072,19208,36864,65610,110000,175692,269568,399854,576240,810000,1114112,1503378,1994544,2606420,3360000,4278582,5387888,6716184,8294400,10156250,12338352,14880348,17825024,21218430,25110000,29552672,34603008,40321314,46771760,54022500,62145792,71218118,81320304,92537... | 70.375 | 494 | 0.827709 |
47ce820f8459b2855aef2f54ab09f8548987aa45 | 1,950 | asm | Assembly | programs/oeis/213/A213764.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/213/A213764.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/213/A213764.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A213764: Antidiagonal sums of the convolution array A213762.
; 1,8,31,90,225,516,1123,2366,4885,9960,20151,40578,81481,163340,327115,654726,1310013,2620656,5242015,10484810,20970481,41941908,83884851,167770830,335542885,671087096,1342175623,2684352786,5368707225,10737416220,21474834331,42949670678,85899343501,1717986... | 121.875 | 1,767 | 0.909744 |
28d199d63ae7347dd2b9da3230c57b2cf6cfe88d | 9,062 | asm | Assembly | src/dos32a/text/client/config.asm | amindlost/dos32a | 06d8e3a0b2397d872205d6c99a7de0d6b8628bcc | [
"Unlicense"
] | 5 | 2022-01-21T08:09:42.000Z | 2022-03-17T10:15:55.000Z | src/dos32a/text/client/config.asm | amindlost/dos32a | 06d8e3a0b2397d872205d6c99a7de0d6b8628bcc | [
"Unlicense"
] | null | null | null | src/dos32a/text/client/config.asm | amindlost/dos32a | 06d8e3a0b2397d872205d6c99a7de0d6b8628bcc | [
"Unlicense"
] | 1 | 2022-02-19T22:58:50.000Z | 2022-02-19T22:58:50.000Z | ;
; Copyright (C) 1996-2006 by Narech K. 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... | 20.880184 | 78 | 0.59424 |
7962608b0cf415b316caf30c624c756afe070245 | 5,285 | asm | Assembly | Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xa0.log_21829_1582.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.log_21829_1582.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.log_21829_1582.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 %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x13703, %r8
nop
nop
nop
nop
dec %rcx
movb $0x61, (%r8)
and $9679, %r13
lea addresses_UC_ht+0x10c67, %rsi
lea addresses_WC_ht+0xee13, %rdi
add %r13, %r13
mov $73, %rcx
rep movsl
nop
nop
... | 44.788136 | 2,999 | 0.659035 |
89acec251cecf2e54bf9391c6cb4bea611cb5db1 | 487 | asm | Assembly | programs/oeis/096/A096494.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/096/A096494.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/096/A096494.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A096494: Largest value in the periodic part of the continued fraction of sqrt(prime(n)).
; 2,2,4,4,6,6,8,8,8,10,10,12,12,12,12,14,14,14,16,16,16,16,18,18,18,20,20,20,20,20,22,22,22,22,24,24,24,24,24,26,26,26,26,26,28,28,28,28,30,30,30,30,30,30,32,32,32,32,32,32,32,34,34,34,34,34,36,36,36,36,36,36,38,38,38,38,38,38,40... | 37.461538 | 292 | 0.655031 |
ed4c4ca45ceeb4e42d2f97316687865e48beeb11 | 3,118 | asm | Assembly | asm/math.asm | trapexit/chipce8 | 657cc8753a964d54c20093a1a506524231e456ce | [
"MIT"
] | 14 | 2015-06-03T00:13:46.000Z | 2021-02-10T16:06:22.000Z | HuC/math.asm | trapexit/chipce8 | 657cc8753a964d54c20093a1a506524231e456ce | [
"MIT"
] | null | null | null | HuC/math.asm | trapexit/chipce8 | 657cc8753a964d54c20093a1a506524231e456ce | [
"MIT"
] | 3 | 2016-06-21T14:17:58.000Z | 2020-03-06T14:29:30.000Z | ;
; MATH.ASM - MagicKit Standard Math Routines
;
;
; ----
; divu8
; ----
; 8-bit unsigned division
; ----
; OUT : _CL = _AL / _BL
; _DL = _AL % _BL
; ----
divu8:
lda <_al
asl A
sta <_cl
cla
ldy #8
.l1:
rol A
cmp <_bl
bcc .l2
sbc <_bl
.l2:
rol <_cl
dey
bne ... | 11.505535 | 52 | 0.498396 |
518ae9edc3b60aa3847a0f2bea6605b646c27c9d | 4,998 | asm | Assembly | source/unary/unary.asm | paulscottrobson/Atomic-Basic-2 | 8ee2d894ff06137a7ac0616862be4476dec04f9e | [
"MIT"
] | null | null | null | source/unary/unary.asm | paulscottrobson/Atomic-Basic-2 | 8ee2d894ff06137a7ac0616862be4476dec04f9e | [
"MIT"
] | null | null | null | source/unary/unary.asm | paulscottrobson/Atomic-Basic-2 | 8ee2d894ff06137a7ac0616862be4476dec04f9e | [
"MIT"
] | 1 | 2021-10-21T22:53:41.000Z | 2021-10-21T22:53:41.000Z | ; *******************************************************************************************
; *******************************************************************************************
;
; Name : unary.asm
; Purpose : Simple Unary Functions
; Date : 27th July 2019
; Author : Paul Robson (paul@robsons.org.uk)... | 26.870968 | 93 | 0.388155 |
0e998dd9b4e36cab33b7b6aa6df499e264d37bcf | 570 | asm | Assembly | programs/oeis/184/A184741.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/184/A184741.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/184/A184741.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A184741: floor(n*s+h-h*s), where s=(e-1)/(e-2) and h=-1/2; complement of A184740.
; 3,5,7,10,12,15,17,19,22,24,27,29,31,34,36,38,41,43,46,48,50,53,55,58,60,62,65,67,70,72,74,77,79,82,84,86,89,91,93,96,98,101,103,105,108,110,113,115,117,120,122,125,127,129,132,134,137,139,141,144,146,149,151,153,156,158,160,163,165,16... | 33.529412 | 357 | 0.661404 |
8a7b7dee725c8f4b578d2b41fef7e69ea813d829 | 251 | asm | Assembly | oeis/340/A340550.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/340/A340550.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/340/A340550.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A340550: Number of main classes of doubly symmetric diagonal Latin squares of order n.
; Submitted by Christian Krause
; 1,0,0,1,0,0,0,47,0,0,0
sub $2,$0
sub $0,7
max $0,$2
pow $0,4
mov $1,3
pow $2,2
sub $1,$2
sub $1,$2
gcd $0,$1
mul $0,2
div $0,4
| 15.6875 | 88 | 0.653386 |
05afecc7c41a8ecee40f7a489a898bc824a6d2e1 | 6,291 | asm | Assembly | musiced/playersupport.asm | nanoflite/victracker | 5728bba3a9df449996ab1c0a0911cf282ac4657e | [
"BSD-3-Clause"
] | 1 | 2021-09-20T20:35:14.000Z | 2021-09-20T20:35:14.000Z | musiced/playersupport.asm | nanoflite/victracker | 5728bba3a9df449996ab1c0a0911cf282ac4657e | [
"BSD-3-Clause"
] | null | null | null | musiced/playersupport.asm | nanoflite/victracker | 5728bba3a9df449996ab1c0a0911cf282ac4657e | [
"BSD-3-Clause"
] | null | null | null | ;**************************************************************************
;*
;* FILE playersupport.asm
;* Copyright (c) 2003 Daniel Kahlin <daniel@kahlin.net>
;* Written by Daniel Kahlin <daniel@kahlin.net>
;* $Id: playersupport.asm,v 1.10 2003/08/09 20:28:47 tlr Exp $
;*
;* DESCRIPTION
;* Functions needed to hand... | 17.771186 | 75 | 0.663964 |
3542355d13c2ea47c273f6c2228325471369215c | 8,255 | asm | Assembly | Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xa0_notsx.log_21829_551.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xa0_notsx.log_21829_551.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xa0_notsx.log_21829_551.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 %r8
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x18431, %rsi
lea addresses_WT_ht+0x7c17, %rdi
clflush (%rsi)
cmp %r10, %r10
mov $67, %rcx
rep movsq
nop
xor $22167, %r10
lea addresses_UC_ht+0x804f, %rsi
lea addresses_A_ht+0x89... | 33.02 | 2,999 | 0.658147 |
33ca56f493cff1d9e868c8e30750ec9b8a330467 | 351 | asm | Assembly | programs/oeis/239/A239053.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/239/A239053.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/239/A239053.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A239053: Sum of divisors of 4*n-1.
; 4,8,12,24,20,24,40,32,48,56,44,48,72,72,60,104,68,72,124,80,84,120,112,120,156,104,108,152,144,144,168,128,132,240,140,168,228,152,192,216,164,168,260,248,180,248,216,192,336,200,240,312,212,264,296
mul $0,4
add $0,2
cal $0,203 ; a(n) = sigma(n), the sum of the divisors of n. Als... | 43.875 | 200 | 0.680912 |
c8495090aa4e8e597fc8621b02d22c4aa0113443 | 965 | asm | Assembly | oeis/167/A167351.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/167/A167351.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/167/A167351.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A167351: Totally multiplicative sequence with a(p) = (p+1)*(p+2) = p^2+3p+2 for prime p.
; Submitted by Jon Maiga
; 1,12,20,144,42,240,72,1728,400,504,156,2880,210,864,840,20736,342,4800,420,6048,1440,1872,600,34560,1764,2520,8000,10368,930,10080,1056,248832,3120,4104,3024,57600,1482,5040,4200,72576,1806,17280,1980,2... | 27.571429 | 497 | 0.645596 |
ec8b4da6f969cd6e66aaa383e58c537721b248f3 | 6,120 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0xca_notsx.log_21829_191.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_191.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_191.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:
ret
.global s_faulty_load
s_faulty_load:
push %r12
push %r13
push %r9
push %rbp
push %rcx
push %rdi
push %rsi
// REPMOV
lea addresses_UC+0x1c21a, %rsi
lea addresses_WC+0x6f8a, %rdi
nop
nop
nop
dec %rbp
mov $18, %rcx
rep movsw
nop
nop
nop
nop
nop
xor $12310, %r12
// St... | 35.172414 | 2,999 | 0.651961 |
c40944c52a9654008cfc6b1291a780d193c0d8d0 | 327 | asm | Assembly | programs/oeis/112/A112355.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/112/A112355.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/112/A112355.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A112355: Triangular numbers that are the sum of three positive triangular numbers.
; 3,10,15,21,28,36,45,55,66,78,91,105,120,136,153,171,190,210,231,253,276,300,325,351,378,406,435,465,496,528,561,595,630,666,703,741,780,820,861,903,946,990,1035,1081,1128,1176,1225,1275,1326
cmp $1,$0
add $0,3
sub $1,$0
bin $1,2
mov... | 36.333333 | 192 | 0.721713 |
b23207709b84f0af28895b82786c3fdebd697d56 | 3,257 | asm | Assembly | dv3/dv3/pos.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | dv3/dv3/pos.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | dv3/dv3/pos.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | ; DV3 file position routines V3.00 1992 Tony Tebby
section dv3
xdef dv3_posa
xdef dv3_posr
xdef dv3_posi
include 'dev8_dv3_keys'
include 'dev8_keys_err'
include 'dev8_mac_assert'
;+++
; DV3 set initial file position
;
; d0 p
; d1 r zero
; d2 s
; d5 r sector number of previous sector
; d6 c p f... | 21.85906 | 79 | 0.689285 |
1d28ec340c49c227238e58143f2909e3ace6195a | 3,109 | asm | Assembly | print.asm | rudla/multiloops | b4e346d95ba6f272bb754252b6fcdb9482d7cc67 | [
"MIT"
] | null | null | null | print.asm | rudla/multiloops | b4e346d95ba6f272bb754252b6fcdb9482d7cc67 | [
"MIT"
] | null | null | null | print.asm | rudla/multiloops | b4e346d95ba6f272bb754252b6fcdb9482d7cc67 | [
"MIT"
] | null | null | null | PRINTING_START
;putchr_proc_adr Address of current output routine.
PrintChar .proc
;Purpose:
; Print character in register A.
pha
rol
rol
rol
rol
and #3
tay
pla
eor taic,y
ldy #0
sta (scr),y
inw scr
rts
TAIC dta b(%01000000, %00100000, %01100000, %00000000)
.end... | 15.623116 | 77 | 0.604053 |
d64d7f9f505961b5a2a238d24d1ccb2e3ecf373c | 1,016 | asm | Assembly | programs/oeis/027/A027772.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/027/A027772.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/027/A027772.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A027772: (n+1)*C(n+1,12).
; 12,169,1274,6825,29120,105196,334152,957372,2519400,6172530,14226212,31097794,64899744,130007500,251100200,469364220,851809140,1504982115,2594796750,4374736275,7225370880,11708971560,18644037360,29205813000,45060397200,68541870852,102884055624,152521100004,223474139200,323844851720,4644409... | 112.888889 | 936 | 0.889764 |
68f27ad95b76ae549bd0a5bd5bbb5e5ceb361c24 | 779 | asm | Assembly | src/BreathOfTheWild/Cheats/MasterModeTweaks/patch_MasterModeTweaks.asm | ActualMandM/cemu_graphic_packs | 881c787900f6febdc614533bb68634c30558c3d3 | [
"CC0-1.0"
] | 184 | 2020-11-30T01:03:35.000Z | 2022-03-31T14:09:33.000Z | src/BreathOfTheWild/Cheats/MasterModeTweaks/patch_MasterModeTweaks.asm | ActualMandM/cemu_graphic_packs | 881c787900f6febdc614533bb68634c30558c3d3 | [
"CC0-1.0"
] | 69 | 2020-12-06T15:36:20.000Z | 2022-03-29T12:35:36.000Z | src/BreathOfTheWild/Cheats/MasterModeTweaks/patch_MasterModeTweaks.asm | ActualMandM/cemu_graphic_packs | 881c787900f6febdc614533bb68634c30558c3d3 | [
"CC0-1.0"
] | 40 | 2020-12-19T15:00:45.000Z | 2022-02-24T16:32:40.000Z | [BotwMasterModeTweaksV208]
moduleMatches = 0x6267BFD0
# Constants
merge0x129 = $bit0 + $bit1 + $bit3 + $bit5 + $bit8
;Combines bits set by the user in rules.txt to a bitmask. Split between 2 patches because vanilla compiled it to 2 hex values instead of 1 for some
;reason. There's no overlap in vanilla between the 2 ... | 41 | 148 | 0.745828 |
1ab79a8830571154ba9fc4b7ef3c525b332032ee | 8,005 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_346.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_0xca_notsx.log_21829_346.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_0xca_notsx.log_21829_346.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 %r15
push %r8
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0xd3ea, %r8
nop
nop
nop
nop
sub %rdi, %rdi
movups (%r8), %xmm7
vpextrq $1, %xmm7, %r12
nop
nop
nop
nop
nop
cmp $6543, %rsi
lea addresses_UC_ht+0x6fec, %rsi
lea addresses_A_ht+0x... | 31.392157 | 2,999 | 0.65659 |
6463b41beff5248fa2392fbda934b94c37aee01a | 1,204 | asm | Assembly | programs/oeis/106/A106389.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/106/A106389.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/106/A106389.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A106389: Numbers j such that 6j^2 + 6j + 1 = 13k.
; 1,11,14,24,27,37,40,50,53,63,66,76,79,89,92,102,105,115,118,128,131,141,144,154,157,167,170,180,183,193,196,206,209,219,222,232,235,245,248,258,261,271,274,284,287,297,300,310,313,323,326,336,339,349,352,362,365,375,378,388,391,401,404,414,417,427,430,440,443,453,45... | 109.454545 | 1,081 | 0.748339 |
4b05d3ea7ba1651d2cb436790b41f7a44a89657e | 453 | nasm | Assembly | x86_64/src/02-datatype.nasm | karng87/nasm_game | a97fdb09459efffc561d2122058c348c93f1dc87 | [
"MIT"
] | null | null | null | x86_64/src/02-datatype.nasm | karng87/nasm_game | a97fdb09459efffc561d2122058c348c93f1dc87 | [
"MIT"
] | null | null | null | x86_64/src/02-datatype.nasm | karng87/nasm_game | a97fdb09459efffc561d2122058c348c93f1dc87 | [
"MIT"
] | null | null | null | section .data
hello_world: db 'Hello world to the nasm', 0xA
len: equ $-hello_world
var1: db 0x11, 0x22
var2: dw 0x3344
var3: dd 0xaabbccdd
var4: dq 0xaabbccdd11223344
repeat_buffer: times 128 db 0xAA
section .bss
buffer: resb 64
section .text
global main
main:
mov rax, 1
mov rdi, 1
m... | 15.62069 | 48 | 0.646799 |
35eb1706e2a59dad1c30008637a79ea22ee8d76a | 3,062 | asm | Assembly | bootloader/bit16/detect_mem.asm | mstniy/cerius | ac8a0e3e68243f3e38b2a259e7a7b6f87e6787e3 | [
"MIT"
] | 2 | 2018-01-28T19:04:56.000Z | 2018-12-12T20:59:40.000Z | bootloader/bit16/detect_mem.asm | mstniy/cerius | ac8a0e3e68243f3e38b2a259e7a7b6f87e6787e3 | [
"MIT"
] | null | null | null | bootloader/bit16/detect_mem.asm | mstniy/cerius | ac8a0e3e68243f3e38b2a259e7a7b6f87e6787e3 | [
"MIT"
] | null | null | null | [bits 16]
; WORD __stdcall detect_mem(WORD pBuf, WORD max_entries)
; Enumerates chunks of free memory, using SMAP BIOS function.
; Each item of the list consists of two 64-bit fields.
; Low address field: Base address of the chunk.
; High address field: Length of the chunk.
; Returns the number of list it... | 28.091743 | 272 | 0.658393 |
799a3bca445cbeb45ac9d9b0e842ec01749413ef | 353 | asm | Assembly | oeis/052/A052733.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/052/A052733.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/052/A052733.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A052733: E.g.f.: x^2*(1-sqrt(1-4*x))/2.
; Submitted by Christian Krause
; 0,0,0,6,24,240,3600,70560,1693440,47900160,1556755200,57081024000,2328905779200,104589041356800,5124863026483200,272011960636416000,15543540607795200000,951264685197066240000,62070020709108572160000
mov $2,$0
trn $0,1
seq $0,52717 ; E.g.f. x*(... | 39.222222 | 200 | 0.747875 |
6f47409475d612aca723ff789db4515d84169b9f | 508 | asm | Assembly | programs/oeis/259/A259549.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/259/A259549.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/259/A259549.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A259549: Triangle T(n,k) with rows of length 2n-1 filled with consecutive integers, each appearing twice except for the last term, T(n,2n-1) = n(n+1)/2.
; 1,2,2,3,4,4,5,5,6,7,7,8,8,9,9,10,11,11,12,12,13,13,14,14,15,16,16,17,17,18,18,19,19,20,20,21,22,22,23,23,24,24,25,25,26,26,27,27,28,29,29,30,30,31,31,32,32,33,33,3... | 24.190476 | 190 | 0.624016 |
e858e9c40e9ae1054b0f147c5da239baff9bced2 | 995 | asm | Assembly | libsrc/games/rx78/joystick.asm | Toysoft/z88dk | f930bef9ac4feeec91a07303b79ddd9071131a24 | [
"ClArtistic"
] | null | null | null | libsrc/games/rx78/joystick.asm | Toysoft/z88dk | f930bef9ac4feeec91a07303b79ddd9071131a24 | [
"ClArtistic"
] | null | null | null | libsrc/games/rx78/joystick.asm | Toysoft/z88dk | f930bef9ac4feeec91a07303b79ddd9071131a24 | [
"ClArtistic"
] | 1 | 2019-12-03T23:28:20.000Z | 2019-12-03T23:28:20.000Z |
MODULE joystick
SECTION code_clib
PUBLIC joystick
PUBLIC _joystick
; 0 = #define MOVE_RIGHT 1
; 1 = #define MOVE_LEFT 2
; 2 = #define MOVE_DOWN 4
; 3 = #define MOVE_UP 8
; 4 = #define MOVE_FIRE 16
; 5 = #define MOVE_FIRE2 32
; hl = 1 - player 1 joystick
; = 2 - player 2 joystick
; Ports 10, 11, 12 = J... | 11.436782 | 39 | 0.629146 |
8f09342b261ab5d0cc5c45a14a543c488f125ce4 | 887 | asm | Assembly | oeis/097/A097893.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/097/A097893.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/097/A097893.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A097893: Partial sums of the central trinomial coefficients (A002426).
; Submitted by Jon Maiga
; 1,2,5,12,31,82,223,616,1723,4862,13815,39468,113257,326198,942425,2730032,7926659,23061590,67214399,196211252,573590621,1678941350,4920076877,14433305000,42381641381,124558477682,366371703833,1078441860036,3176682213943,... | 27.71875 | 487 | 0.730552 |
b399d6515eae6733aa57bda524db0e546258166e | 1,862 | asm | Assembly | gfx/Global_Blocks.asm | tbsp/Adjustris | d899e2f539c07ac49fd42c055605bf778a2df09d | [
"CC0-1.0"
] | 11 | 2017-10-30T17:27:32.000Z | 2021-08-30T19:52:51.000Z | gfx/Global_Blocks.asm | tbsp/Adjustris | d899e2f539c07ac49fd42c055605bf778a2df09d | [
"CC0-1.0"
] | 2 | 2017-11-18T01:15:58.000Z | 2018-02-01T07:09:09.000Z | gfx/Global_Blocks.asm | tbsp/Adjustris | d899e2f539c07ac49fd42c055605bf778a2df09d | [
"CC0-1.0"
] | 3 | 2017-10-31T16:25:15.000Z | 2019-08-31T22:10:49.000Z | ; GLOBAL_BLOCKS.Z80
;
; Tile Source File.
;
; Info:
; Section : Tiles
; Bank : 0
; Form : All tiles as one unit.
; Format : Gameboy 4 color.
; Compression : None.
; Counter : None.
; Tile size : 8 x 8
;... | 29.555556 | 50 | 0.489259 |
08ca55db153efde0435bf62a76bdc3c39c7f099c | 29,229 | asm | Assembly | Appl/Icon/Format/formatFormat.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Appl/Icon/Format/formatFormat.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Appl/Icon/Format/formatFormat.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 73 | 2018-11-19T20:46:53.000Z | 2022-03-29T00:59:26.000Z | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: Icon Editor
MODULE: Format
FILE: formatFormat.asm
AUTHOR: Steve Yegge, Aug 31, 1992
ROUTINES:
Name Description
---- -----------
INT DBViewerAddForma... | 24.812394 | 79 | 0.617298 |
64bde4791f0bfb903e6e71b8f271f9d2b8b977d4 | 1,698 | asm | Assembly | apu/channel_1/channel_1_stop_div.asm | endrift/SameSuite | 89ffe653cdd888385935fe9a2f1062d2dcc18cdb | [
"MIT"
] | 21 | 2018-09-09T01:49:32.000Z | 2022-03-22T20:49:05.000Z | apu/channel_1/channel_1_stop_div.asm | mattcurrie/SameSuite | ab8d88e5606928060fe84b07c85a4d05edce3bca | [
"MIT"
] | 3 | 2020-10-18T16:33:08.000Z | 2021-09-04T10:58:51.000Z | apu/channel_1/channel_1_stop_div.asm | mattcurrie/SameSuite | ab8d88e5606928060fe84b07c85a4d05edce3bca | [
"MIT"
] | 9 | 2018-09-29T19:18:03.000Z | 2021-05-15T14:23:08.000Z | RESULTS_START EQU $c000
RESULTS_N_ROWS EQU 7
include "base.inc"
; Channel 1 behave similarly to channel 3, but with a smaller length
; range. See channel_3_stop_div.
CorrectResults:
db $1F, $1F, $1F, $1F, $1F, $1F, $20, $20
db $00, $00, $00, $00, $08, $08, $00, $00
db $00, $00, $00, $00, $08, $08, $08, $08
db $00... | 19.078652 | 83 | 0.55477 |
59731a5d197afdcdef472562dffc86eb8a888257 | 8,012 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xa0.log_21829_942.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xa0.log_21829_942.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xa0.log_21829_942.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+0x1a1db, %rsi
lea addresses_A_ht+0x12653, %rdi
clflush (%rsi)
nop
nop
nop
nop
sub %rax, %rax
mov $22, %rcx
rep movsw
nop
nop
nop
nop
nop
and $43713, %rsi
lea addresses_WT_ht... | 31.793651 | 2,999 | 0.652646 |
f21862c88064f451cfed29b5cbe31d77e0d102c0 | 884 | asm | Assembly | libsrc/oz/ozscreen/ozunblankscreen.asm | dex4er/deb-z88dk | 9ee4f23444fa6f6043462332a1bff7ae20a8504b | [
"ClArtistic"
] | 1 | 2018-09-04T23:07:24.000Z | 2018-09-04T23:07:24.000Z | libsrc/oz/ozscreen/ozunblankscreen.asm | dex4er/deb-z88dk | 9ee4f23444fa6f6043462332a1bff7ae20a8504b | [
"ClArtistic"
] | null | null | null | libsrc/oz/ozscreen/ozunblankscreen.asm | dex4er/deb-z88dk | 9ee4f23444fa6f6043462332a1bff7ae20a8504b | [
"ClArtistic"
] | null | null | null | ;
; Sharp OZ family functions
;
; ported from the OZ-7xx SDK by by Alexander R. Pruss
; by Stefano Bodrato - Oct. 2003
;
;
; display blanking control functions
; LCDStatus is 0c024h in the OS;
;
;
; ------
; $Id: ozunblankscreen.asm,v 1.1 2003/10/21 17:15:21 stefano Exp $
;
XLIB ozunblankscreen
XD... | 17 | 67 | 0.464932 |
aab1763efebdd4b03ef4c584b9da2f2217e964af | 2,110 | asm | Assembly | itemdowngrade.asm | pepperpow/z3randomizer | 9f6f9122ec2ce5652eb67433a35afd9168e1763b | [
"MIT"
] | 31 | 2018-05-03T06:43:23.000Z | 2021-07-16T13:17:01.000Z | itemdowngrade.asm | pepperpow/z3randomizer | 9f6f9122ec2ce5652eb67433a35afd9168e1763b | [
"MIT"
] | 13 | 2018-05-08T20:15:54.000Z | 2022-01-20T21:28:53.000Z | itemdowngrade.asm | pepperpow/z3randomizer | 9f6f9122ec2ce5652eb67433a35afd9168e1763b | [
"MIT"
] | 26 | 2018-05-04T12:25:41.000Z | 2022-03-23T20:27:57.000Z | ;================================================================================
; Item Downgrade Fix
;--------------------------------------------------------------------------------
ItemDowngradeFix:
JSR ItemDowngradeFixMain
JSL CountChestKeyLong
RTL
ItemDowngradeFixMain:
JSL.l AddInventory
BMI .dontWrite ; thi... | 28.90411 | 89 | 0.609479 |
947284d08343aa69b72f436c5f0eba5e94fa770c | 6,771 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_2428.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_21829_2428.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_21829_2428.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 %r14
push %r15
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0xa5c0, %rsi
lea addresses_D_ht+0x149c8, %rdi
and $49744, %r13
mov $120, %rcx
rep movsq
nop
nop
nop
nop
and %r14, %r14
lea addresses_A_ht+0x4f60, %rax
nop
add %r15, %r15
mov (... | 36.015957 | 2,999 | 0.659282 |
bfea1e1754e7761bd280240367192f569f15cc42 | 6,817 | asm | Assembly | 1581/64tass/fastld.asm | silverdr/assembly | c2851f7033223e089285dce22443b7e219ed4f61 | [
"Unlicense"
] | 23 | 2015-03-23T15:16:57.000Z | 2022-03-18T12:43:42.000Z | 1581/64tass/fastld.asm | silverdr/assembly | c2851f7033223e089285dce22443b7e219ed4f61 | [
"Unlicense"
] | null | null | null | 1581/64tass/fastld.asm | silverdr/assembly | c2851f7033223e089285dce22443b7e219ed4f61 | [
"Unlicense"
] | 8 | 2016-04-13T11:19:35.000Z | 2021-12-22T07:39:00.000Z | slodown jmp endcmd ; not today
fstload .proc
lda #bit3
bit fsflag ; fast serial enabled ?
beq slodown
jsr spout ; output
jsr set_fil ; setup filename for parser
bcs m9
jsr autoi ; init mechanism
lda nodrv ; chk status
... | 22.424342 | 68 | 0.447264 |
26ef5c3ebb318b1a63a10505307b4d3b190be38f | 320 | asm | Assembly | programs/oeis/040/A040215.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/040/A040215.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/040/A040215.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A040215: Continued fraction for sqrt(231).
; 15,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30,5,30
sub $0,1
mod $0,2
mul $0,10
add $0,2
pow $0,2
mov $1,$0
div $1,26
mul $1,5
add $1,5
| 24.615385 | 189 | 0.60625 |
160d7294aa1e2b11f1f80c4a772071181c4da4cb | 1,854 | asm | Assembly | lib/target/krokha/classic/krokha_crt0.asm | ahjelm/z88dk | c4de367f39a76b41f6390ceeab77737e148178fa | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | lib/target/krokha/classic/krokha_crt0.asm | C-Chads/z88dk | a4141a8e51205c6414b4ae3263b633c4265778e6 | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | lib/target/krokha/classic/krokha_crt0.asm | C-Chads/z88dk | a4141a8e51205c6414b4ae3263b633c4265778e6 | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z | ;
; There's only 512 bytes of user memory to play with on this machine,
; so strip everything down as much as we can
;
;
MODULE krokha_crt0
defc crt0 = 1
INCLUDE "zcc_opt.def"
EXTERN _main ;main() is always external to crt0 code
EXTERN asm_im1_handler
PUBLIC cleanup ... | 21.310345 | 69 | 0.64671 |
efcedcfa8d08cbddc0a9bb3926c1d8a0fdf37e43 | 3,058 | asm | Assembly | code/action-select.asm | martendo7/cookie-shooter-gb | b733f227e154cf63392f85dd72ac79f39937135a | [
"MIT"
] | 3 | 2021-04-22T01:21:25.000Z | 2021-05-30T21:17:52.000Z | code/action-select.asm | martendo/cookie-shooter-gb | b733f227e154cf63392f85dd72ac79f39937135a | [
"MIT"
] | 1 | 2021-05-13T00:30:35.000Z | 2021-05-13T23:22:55.000Z | code/action-select.asm | martendo/cookie-shooter-gb | b733f227e154cf63392f85dd72ac79f39937135a | [
"MIT"
] | null | null | null | INCLUDE "defines.inc"
SECTION "Action Select Variables", HRAM
hActionSelection::
DS 1
SECTION "Action Select Screen", ROM0
LoadActionSelectScreen::
; Load tiles
ld de, ActionSelectTiles
ld hl, _VRAM9000
ld bc, ActionSelectTiles.end - ActionSelectTiles
rst LCDMemcopy
; ... | 23.343511 | 64 | 0.56998 |
05534361a3946400d20be8d66b35e67f1b354781 | 371 | asm | Assembly | oeis/030/A030894.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/030/A030894.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/030/A030894.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A030894: [ exp(6/17)*n! ].
; Submitted by Christian Krause
; 1,2,8,34,170,1024,7173,57385,516468,5164680,56811482,681737791,8862591291,124076278077,1861144171155,29778306738485,506231214554248,9112161861976473,173131075377552995,3462621507551059902
add $0,1
mov $2,1
lpb $0
mul $1,2
mul $2,$0
sub $0,1
add $1,... | 21.823529 | 189 | 0.716981 |
52f632f8ab18ceec74434384e855baa06076cbdd | 1,255 | asm | Assembly | libsrc/_DEVELOPMENT/math/float/math16/z80/coeff_f16_exp10.asm | ahjelm/z88dk | c4de367f39a76b41f6390ceeab77737e148178fa | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/math/float/math16/z80/coeff_f16_exp10.asm | C-Chads/z88dk | a4141a8e51205c6414b4ae3263b633c4265778e6 | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/math/float/math16/z80/coeff_f16_exp10.asm | C-Chads/z88dk | a4141a8e51205c6414b4ae3263b633c4265778e6 | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z | ;
; Extracted from cephes-math
;
; Cephes is a C language library for special functions of mathematical physics
; and related items of interest to scientists and engineers.
; https://fossies.org/
;
; Coefficients from lolremez, to make use of additional accuracy in
; calculation from 32-bit mantissa poly() function.
;
... | 29.186047 | 80 | 0.549801 |
ef0d4609c7c86654fe6111c66134967b5f6e723f | 276 | asm | Assembly | tests/roms/lorom.asm | AndreaOrru/Gilgamesh | c688dcecd80236d2e62641ee4d157e1ef042c7d9 | [
"BSD-2-Clause"
] | 25 | 2015-11-27T01:47:24.000Z | 2018-09-17T12:57:45.000Z | tests/roms/lorom.asm | AndreaOrru/gilgamesh | c688dcecd80236d2e62641ee4d157e1ef042c7d9 | [
"BSD-2-Clause"
] | 122 | 2019-08-11T18:54:09.000Z | 2020-05-31T08:43:44.000Z | tests/roms/lorom.asm | AndreaOrru/Gilgamesh | c688dcecd80236d2e62641ee4d157e1ef042c7d9 | [
"BSD-2-Clause"
] | null | null | null | arch 65816
lorom
;; Empty ROM.
org $008000
fill $8000
;; Minimal ROM header.
org $00FFC0
title:
db "TEST"
;; LoROM.
org $00FFD6
rom_type:
db $20
;; 2048 bytes.
org $00FFD7
rom_size:
db $01
org $00FFEA
nmi_vector:
dw $0000
org $00FFFC
reset_vector:
dw $8000
| 8.903226 | 22 | 0.663043 |
6b20f6b82c126805a55ef1a09fe11bbd00b7f0f3 | 592 | asm | Assembly | asm/example.asm | tuomasisola/z80ide | ddb3b69b7f42578bcd5689dfd93a267ec78250df | [
"MIT"
] | null | null | null | asm/example.asm | tuomasisola/z80ide | ddb3b69b7f42578bcd5689dfd93a267ec78250df | [
"MIT"
] | null | null | null | asm/example.asm | tuomasisola/z80ide | ddb3b69b7f42578bcd5689dfd93a267ec78250df | [
"MIT"
] | null | null | null | ; **********************************************************************
; ** Hardware: SC114 / SCM **
; **********************************************************************
ORG $8000
LD HL, String_Hello
CALL Print_String_HL
RET
Print_String_HL:
LD A, (HL)
OR A
... | 19.733333 | 72 | 0.442568 |
0337fc63e335aaacdf472eb5b1f8faa57e55112a | 616 | asm | Assembly | Assembly/create.asm | fengjixuchui/NASM-Assembly-Linux-Notes | 1baafcda327030eb282c9c66936b01bbf4f0892a | [
"MIT"
] | 22 | 2019-12-25T13:54:42.000Z | 2022-03-14T00:17:58.000Z | Assembly/create.asm | fengjixuchui/NASM-Assembly-Linux-Notes | 1baafcda327030eb282c9c66936b01bbf4f0892a | [
"MIT"
] | null | null | null | Assembly/create.asm | fengjixuchui/NASM-Assembly-Linux-Notes | 1baafcda327030eb282c9c66936b01bbf4f0892a | [
"MIT"
] | 6 | 2019-12-25T08:42:42.000Z | 2021-11-01T02:59:30.000Z | ; Create
; Compile with: nasm -f elf create.asm
; Link with (64 bit systems require elf_i386 option): ld -m elf_i386 create.o -o create
; Run with: ./create
%include 'functions.asm'
SECTION .data
filename db 'readme.txt', ; the filename to create
SECTION .text
global _start
_start:
mov ecx, ... | 29.333333 | 87 | 0.600649 |
8ae8dce962b609a7ab6eb3173392111c0aeb9d27 | 202 | asm | Assembly | libsrc/sos/sos_wopen.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/sos/sos_wopen.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/sos/sos_wopen.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | ; S-OS specific routines
; by Stefano Bodrato, 2013
;
; $Id: sos_wopen.asm,v 1.2 2015/01/19 01:33:07 pauloscustodio Exp $
;
PUBLIC sos_wopen
sos_wopen:
call $1faf
ld hl,0
ret c
inc hl
ret
| 12.625 | 73 | 0.673267 |
bf1af5f24a2fa83af808a3191a8b6c706788e171 | 771 | asm | Assembly | programs/oeis/208/A208375.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/208/A208375.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/208/A208375.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A208375: Number of n X 4 0..1 arrays avoiding 0 0 0 and 1 1 1 horizontally and 0 0 1 and 1 0 1 vertically.
; 10,100,240,420,640,900,1200,1540,1920,2340,2800,3300,3840,4420,5040,5700,6400,7140,7920,8740,9600,10500,11440,12420,13440,14500,15600,16740,17920,19140,20400,21700,23040,24420,25840,27300,28800,30340,31920,335... | 77.1 | 604 | 0.793774 |
ed0c9dcfab81021904c2a2bac1024ec9922c2021 | 1,779 | asm | Assembly | programs/oeis/153/A153793.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/153/A153793.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/153/A153793.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A153793: 13 times pentagonal numbers: a(n) = 13*n*(3*n-1)/2.
; 0,13,65,156,286,455,663,910,1196,1521,1885,2288,2730,3211,3731,4290,4888,5525,6201,6916,7670,8463,9295,10166,11076,12025,13013,14040,15106,16211,17355,18538,19760,21021,22321,23660,25038,26455,27911,29406,30940,32513,34125,35776,37466,39195,40963,42770,44... | 197.666667 | 1,667 | 0.833052 |
59723a582ce55581ee97394ae9eadb46f166b561 | 1,428 | asm | Assembly | src/test/ref/liverange-problem-0.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | 2 | 2022-03-01T02:21:14.000Z | 2022-03-01T04:33:35.000Z | src/test/ref/liverange-problem-0.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | src/test/ref/liverange-problem-0.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | // Error where the compiler is reusing the same ZP for two byte* variables.
// SCREEN_1 and SCREEN_2 are both allocated to ZP: 4
// Problem is that outside main() scope statements have zero call-paths and then isStatementAllocationOverlapping() never checks liveranges
// CallPath code must be rewritten to use @begin as... | 23.8 | 139 | 0.636555 |
351cafd9964641152ccaeec55ce2feb4657a8542 | 1,860 | asm | Assembly | programs/oeis/109/A109975.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/109/A109975.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/109/A109975.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A109975: Second differences of A045623, prefixed by an initial 1.
; 1,2,4,9,20,44,96,208,448,960,2048,4352,9216,19456,40960,86016,180224,376832,786432,1638400,3407872,7077888,14680064,30408704,62914560,130023424,268435456,553648128,1140850688,2348810240,4831838208,9932111872,20401094656,41875931136,85899345920,176093... | 155 | 1,715 | 0.917742 |
3520ab1947c7bc02bcf65142346a3cb83a51e300 | 22,654 | asm | Assembly | Appl/Saver/Swarm/swarm.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Appl/Saver/Swarm/swarm.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Appl/Saver/Swarm/swarm.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: Specific Screen Saver -- Swarm
FILE: swarm.asm
AUTHOR: John & Adam, Mar 25, 1991
REVISION HISTORY:
Name Date Description
---- ---- ------... | 22.079922 | 80 | 0.597599 |
84d5a2374427185f030d1e20b0df2302389d3903 | 539 | asm | Assembly | oeis/072/A072292.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/072/A072292.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/072/A072292.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A072292: Number of proper powers b^d <= n (b > 1, d > 1).
; Submitted by Jon Maiga
; 0,0,0,1,1,1,1,2,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,5,5,6,6,6,6,6,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11... | 29.944444 | 238 | 0.554731 |
7562ccb5e712f0dddb4e28f91041396fa13d83a4 | 389 | asm | Assembly | programs/oeis/291/A291509.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/291/A291509.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/291/A291509.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A291509: The arithmetic function uhat(n,2,4).
; -7,-8,-7,-8,-7,-8,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-23,-24,-25,-26,-27,-28,-29,-30,-31,-32,-33,-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70... | 35.363636 | 272 | 0.51671 |
b22cdb13d83e5b52d0f5ec84cdfa85d85ddc2311 | 1,041 | asm | Assembly | kernel/arch/interrupts.asm | Twometer/nekosys | cbcdaddaf8087cde1c375dbc19c576475965f5b4 | [
"Apache-2.0"
] | 1 | 2021-08-28T19:50:32.000Z | 2021-08-28T19:50:32.000Z | kernel/arch/interrupts.asm | Twometer/nekosys | cbcdaddaf8087cde1c375dbc19c576475965f5b4 | [
"Apache-2.0"
] | null | null | null | kernel/arch/interrupts.asm | Twometer/nekosys | cbcdaddaf8087cde1c375dbc19c576475965f5b4 | [
"Apache-2.0"
] | null | null | null | ; Total number of interrupt vectors
%define NUM_VECTORS 16
%include "kernel/arch/regutil.asm"
; define ptr to register states struct
register_states equ s_eax
global register_states
; Interrupt handler generator macro
%macro def_ireq_handler 1
global irq%1
extern irq%1_handler
irq%1:
; save regs
save_all_regs
... | 16.265625 | 44 | 0.732949 |
56c0ec0551db67068d117999a8bae30e383dbb36 | 398 | asm | Assembly | oeis/323/A323191.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/323/A323191.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/323/A323191.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A323191: Expansion of (1 - x^5) / ((1 + x) * (1 + x^4)) in powers of x.
; Submitted by Jon Maiga
; 1,-1,1,-1,0,-1,1,-1,2,-1,1,-1,0,-1,1,-1,2,-1,1,-1,0,-1,1,-1,2,-1,1,-1,0,-1,1,-1,2,-1,1,-1,0,-1,1,-1,2,-1,1,-1,0,-1,1,-1,2,-1,1,-1,0,-1,1,-1,2,-1,1,-1,0,-1,1,-1,2,-1,1,-1,0,-1,1,-1,2,-1,1
mov $2,-1
pow $2,$0
seq $0,2571... | 44.222222 | 188 | 0.467337 |
1a231daf68430cbe942d85456af6cca8759ac57d | 657 | asm | Assembly | oeis/006/A006060.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/006/A006060.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/006/A006060.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A006060: Triangular star numbers.
; Submitted by Jamie Morken(m4)
; 1,253,49141,9533161,1849384153,358770992581,69599723176621,13501987525271953,2619315980179582321,508133798167313698381,98575337528478677903653,19123107346726696199610361,3709784249927450584046506441,719679021378578686608822639253,13961402036319433775... | 54.75 | 468 | 0.849315 |
72392c8414a369ce10fdbcbca90ab54969fe6260 | 1,134 | asm | Assembly | tb/tprog/asm/test.sb.sh.sw.lb.lbu.lh.lhu.lw.asm | mshaklunov/mips_onemore | b52b01f4d3bf458285b610aafd700d23e8c7f676 | [
"MIT"
] | null | null | null | tb/tprog/asm/test.sb.sh.sw.lb.lbu.lh.lhu.lw.asm | mshaklunov/mips_onemore | b52b01f4d3bf458285b610aafd700d23e8c7f676 | [
"MIT"
] | null | null | null | tb/tprog/asm/test.sb.sh.sw.lb.lbu.lh.lhu.lw.asm | mshaklunov/mips_onemore | b52b01f4d3bf458285b610aafd700d23e8c7f676 | [
"MIT"
] | null | null | null |
#SB SH SW LB LBU LH LHU LW INSTRUCTIONS
#EACH INPUT DATA BIT GETS 1 AND 0
#1 SB LB LBU
lui $1 0x1000
ori $1 0x0000
lui $2 0x0000
ori $2 0x0055
lui $3 0x0000
ori $3 0x00AA
lui $4 0x0000
ori $4 0x0045
lui $5 0x0000
ori $5 0x0089
lui $6 0xFFFF
ori $6 0xFFAA
lui $7 0xFFFF
ori $7 0xFF89
sb... | 13.829268 | 39 | 0.525573 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.