max_stars_repo_path
stringlengths
3
255
max_stars_repo_name
stringlengths
5
116
max_stars_count
int64
0
107k
id
stringlengths
1
7
content
stringlengths
63
1.05M
data/mapHeaders/SilphCoElevator.asm
AmateurPanda92/pokemon-rby-dx
9
54224
<reponame>AmateurPanda92/pokemon-rby-dx SilphCoElevator_h: db LOBBY ; tileset db SILPH_CO_ELEVATOR_HEIGHT, SILPH_CO_ELEVATOR_WIDTH ; dimensions (y, x) dw SilphCoElevator_Blocks ; blocks dw SilphCoElevator_TextPointers ; texts dw SilphCoElevator_Script ; scripts db 0 ; connections dw SilphCoElevator_Object ; obje...
Test_StoreAddress/testprogram-storeaddress.asm
colasgrenier/pipelined-mips-processor
0
54225
<gh_stars>0 # Write a series of numbers to all points in memory. ori $2, $2, 8191 loop: sw $1, 0($1) # store a word in the address at the address pointed to by R1 (initially 0) addi $1, $1, 4 # increment R1 by 4 beq $1, $2, end j loop end: j end
coverage/IN_CTS/0494-COVERAGE-nir-opt-find-array-copies-595/work/variant/1_spirv_asm/shader.frag.asm
asuonpaa/ShaderTests
0
54226
; SPIR-V ; Version: 1.0 ; Generator: Khronos Glslang Reference Front End; 10 ; Bound: 125 ; Schema: 0 OpCapability Shader %1 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Fragment %4 "main" %106 OpExecutionMode %4 Origin...
oeis/226/A226730.asm
neoneye/loda-programs
11
54228
; A226730: a(n) = n! + (2*n-1)!/(n-1)!. ; Submitted by <NAME> ; 2,8,66,864,15240,333360,8653680,259499520,8821975680,335224915200,14079333945600,647648004326400,32382382493260800,1748648405555251200,101421603773538048000,6288139373806338048000,415017197646001606656000,29051203816724366204928000,214978908208547254534963...
solutions/50 - Cubical Communication/size-19_speed-67.asm
michaelgundlach/7billionhumans
45
54229
<gh_stars>10-100 -- 7 Billion Humans (2053) -- -- 50: Cubical Communication -- -- Author: soerface -- Size: 19 -- Speed: 67 if sw == 1: jump a endif if sw == 2: jump b endif if sw != 3: listenfor ok endif listenfor ok b: listenfor ok a: takefrom s giveto se takefrom sw giveto se takefrom sw giveto se takefrom sw g...
src/entry.asm
gnarlie/bad-os-64
7
54230
<reponame>gnarlie/bad-os-64<filename>src/entry.asm USE64 [EXTERN main] [EXTERN irq_handler] [EXTERN isr_handler] [EXTERN console_clear_screen] [EXTERN console_print_string] [EXTERN task_poll_for_work] [EXTERN panic] [GLOBAL start] [GLOBAL create_gate] [GLOBAL create_isr_handler] [GLOBAL install_gdt] [GLOBAL install_...
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_21829_1569.asm
ljhsiun2/medusa
9
54231
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r14 push %r15 push %r9 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_normal_ht+0xf23e, %rax cmp %r10, %r10 mov (%rax), %r15d nop nop inc %r14 lea addresses_WC_ht+0x9c6d, %rbp sub %rax, %rax movl $0x61626364, (%rbp) nop nop nop and %r15, %r15...
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_566.asm
ljhsiun2/medusa
9
54232
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r15 push %r9 push %rax push %rcx push %rdi push %rsi lea addresses_D_ht+0xde14, %r13 cmp %r10, %r10 mov $0x6162636465666768, %r9 movq %r9, (%r13) nop nop nop add $40601, %rsi lea addresses_WT_ht+0x12c74, %rsi lea addresses_D_ht+0x19ed4, %rdi clflush...
oeis/006/A006053.asm
neoneye/loda-programs
11
54234
; A006053: a(n) = a(n-1) + 2*a(n-2) - a(n-3). ; Submitted by <NAME> ; 0,0,1,1,3,4,9,14,28,47,89,155,286,507,924,1652,2993,5373,9707,17460,31501,56714,102256,184183,331981,598091,1077870,1942071,3499720,6305992,11363361,20475625,36896355,66484244,119801329,215873462,388991876,700937471,1263047761,2275930827,4101088878,7...
programs/oeis/055/A055377.asm
karttu/loda
1
54235
<reponame>karttu/loda ; A055377: a(n) = largest prime <= n/2. ; 2,2,3,3,3,3,5,5,5,5,7,7,7,7,7,7,7,7,11,11,11,11,13,13,13,13,13,13,13,13,17,17,17,17,19,19,19,19,19,19,19,19,23,23,23,23,23,23,23,23,23,23,23,23,29,29,29,29,31,31,31,31,31,31,31,31,31,31,31,31,37,37,37,37,37,37,37,37,41,41,41,41,43,43,43,43,43,43,43,43,47,4...
samples/vector.asm
mateusragazzi/MIPS-Codes
2
54236
.text la $t1, vetor # $t1 = endereço inicial de vetor na memória la $t7, n # $t7 = endereço de n addi $t0, $zero, 0 # i = 0 lw $t7, ($t7) # lê o tamanho do vetor subi $t7, $t7, 1 # n = n - 1 for: slt $t2, $t0, $t7 # condition (step 1) beq $t2, $zero, endfor # condition (step 2) # put your code her...
data/pokemon/base_stats/hoenn/swellow.asm
Dev727/ancientplatinum
0
54237
db 0 ; 277 DEX NO db 60, 85, 60, 125, 50, 50 ; hp atk def spd sat sdf db NORMAL, FLYING ; type db 45 ; catch rate db 162 ; base exp db NO_ITEM, NO_ITEM ; items db GENDER_F50 ; gender ratio db 100 ; unknown 1 db 15 ; step cycles to hatch db 5 ; unknown 2 INCBIN "gfx/pokemon/hoenn/swellow/front...
Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0xca_notsx.log_343_1577.asm
ljhsiun2/medusa
9
54239
<filename>Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0xca_notsx.log_343_1577.asm .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r12 push %r13 push %rbx push %rcx push %rdi push %rsi lea addresses_WC_ht+0x656, %rsi lea addresses_WT_ht+0x1cbd6, %rdi clflush (%rdi) nop nop nop nop nop cmp %...
oeis/312/A312205.asm
neoneye/loda-programs
11
54240
; A312205: Coordination sequence Gal.4.43.1 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings. ; Submitted by <NAME> ; 1,4,8,13,19,25,30,34,38,42,46,51,57,63,68,72,76,80,84,89,95,101,106,110,114,118,122,127,133,139,144,148,152,156,160,165...
aom_20170505/aom_ports/x86_abi_support.asm
rainliu/aom_analyzer
0
54241
; ; Copyright (c) 2016, Alliance for Open Media. All rights reserved ; ; This source code is subject to the terms of the BSD 2 Clause License and ; the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License ; was not distributed with this source code in the LICENSE file, you can ; obtain it at ww...
programs/oeis/339/A339183.asm
jmorken/loda
1
54242
<filename>programs/oeis/339/A339183.asm ; A339183: Number of partitions of n into two parts such that the smaller part is a nonzero square. ; 0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,...
examples/4_sample.asm
AbdulrahmanAbumdas/emu8086
287
54243
name "flags" org 100h ; this sample shows how cmp instruction sets the flags. ; usually cmp instruction is followed by any relative ; jump instruction such as: je, ja, jl, jae... ; it is recommended to click "flags" and "analyze" ; for better visual expirience before stepping through this code. ; (signed/unsigned)...
programs/oeis/204/A204002.asm
karttu/loda
0
54244
; A204002: Symmetric matrix based on f(i,j)=min{2i+j,i+2j}, by antidiagonals. ; 3,4,4,5,6,5,6,7,7,6,7,8,9,8,7,8,9,10,10,9,8,9,10,11,12,11,10,9,10,11,12,13,13,12,11,10,11,12,13,14,15,14,13,12,11,12,13,14,15,16,16,15,14,13,12,13,14,15,16,17,18,17,16,15,14,13,14,15,16,17,18,19,19 lpb $0,1 sub $0,1 add $2,1 mov $1,$...
swap.asm
Unshifted1337/Nand2Tris-Hack
0
54245
<gh_stars>0 //Swapping of 2 numbers using temp variable //Author: Unshifted1337 @10 D=A @temp M=D @R0 M=D @20 D=A @R1 M=D @R0 M=D @temp D=A @R1 M=D
Irvine/Examples/ch12/floatTest32.asm
alieonsido/ASM_TESTING
0
54246
<reponame>alieonsido/ASM_TESTING ; 32-bit Floating-Point I/O Test (floatTest32.asm) ; This program demonstrates floating-point ; I/O procedures in the Irvine32 library. INCLUDE Irvine32.inc INCLUDE macros.inc .data first REAL8 123.456 second REAL8 10.0 third REAL8 ? .code main PROC finit ; initialize FPU ...
EXP2/EXP2.asm
ronchifabricio/progparamicroprocessadores
2
54248
_main: ;EXP2.c,3 :: void main() { ;EXP2.c,5 :: TRISC.RC0 = 0; BCF TRISC+0, 0 ;EXP2.c,6 :: TRISE.RD0 = 0; BCF TRISE+0, 0 ;EXP2.c,8 :: while(1) { L_main0: ;EXP2.c,9 :: PORTC.RC0 = 1; BSF PORTC+0, 0 ;EXP2.c,10 :: PORTE.RE0 = 0; BCF PORTE+0, 0 ;EXP2.c,11 :: Dela...
data/pokemon/dex_entries/sudowoodo.asm
AtmaBuster/pokeplat-gen2
6
54249
<reponame>AtmaBuster/pokeplat-gen2 db "IMITATION@" ; species name db "If a tree branch" next "shakes when there" next "is no wind, it's a" page "SUDOWOODO, not a" next "tree. It hides" next "from the rain.@"
win32/VC10/Win32/libxml2_Debug/xmlmodule.asm
txwizard/libxml2_x64_and_ARM
0
54250
<gh_stars>0 ; Listing generated by Microsoft (R) Optimizing Compiler Version 19.16.27027.1 TITLE C:\Users\DAG\Documents\_Clients\CodeProject Authors Group\Windows on ARM\libxml2\libxml2-2.9.9\xmlmodule.c .686P .XMM include listing.inc .model flat INCLUDELIB MSVCRTD INCLUDELIB OLDNAMES _DATA SEGMENT COMM _xmlMa...
i4k_OGLShader/exe/mzk.asm
Polyrhythm/demo
0
54251
<filename>i4k_OGLShader/exe/mzk.asm<gh_stars>0 ; Listing generated by Microsoft (R) Optimizing Compiler Version 19.10.25019.0 TITLE C:\Users\polyr\Development\cpp\4k\i4k_OGLShader\src\mzk.cpp .686P .XMM include listing.inc .model flat INCLUDELIB LIBCMT INCLUDELIB OLDNAMES PUBLIC ?mzk_init@@YGXPAF@Z ...
mycode1.asm
rask0ne/word-number-
0
54252
<reponame>rask0ne/word-number- .model small .stack 100h .data len db 200 res db 0 string db 200 dup('$') number db 'number$' .code shift proc near cld mov di, si xor cx, cx shiftstart: mov bl, byte ptr [si] cmp bl, '$' je add6 inc cx inc ...
programs/oeis/247/A247035.asm
neoneye/loda
22
54254
<filename>programs/oeis/247/A247035.asm ; A247035: Expansion of 2*(x+1)*(x^4+6*x^3+5*x^2+6*x+1)/(x^6-18*x^3+1). ; 2,14,22,58,266,398,1042,4774,7142,18698,85666,128158,335522,1537214,2299702,6020698,27584186,41266478,108037042,494978134,740496902,1938646058,8882022226,13287677758,34787592002,159381421934,238437702742,62...
xp-pic-asm-midi-echo.X/src/xp-midi-echo.asm
gom9000/pic-assembly-midi-xp
1
54256
;============================================================================= ; @(#)xp-midi-echo.asm ; ________.________ ; ____ ____ ______/ __ \ ____/ ; / ___\ / _ \/ ___/\____ /____ \ ; / /_/ > <_> )___ \ / // \ ; \___ / \____/____ > /____//______ / ;/_____/...
programs/oeis/214/A214920.asm
neoneye/loda
22
54257
; A214920: a(n) is the least m > 0 such that Fibonacci(n-m) divides Lucas(n+m). ; 1,1,2,1,3,3,6,5,8,7,9,9,12,11,14,13,15,15,18,17,20,19,21,21,24,23,26,25,27,27,30,29,32,31,33,33,36,35,38,37,39,39,42,41,44,43,45,45,48,47,50,49,51,51,54,53,56,55,57,57,60,59,62,61,63,63,66,65,68,67,69,69,72,71,74,73,75,75,78,77,80,79,81,8...
Framework/trackmo/framework/irqhandler.asm
kosmonautdnb/TheLandsOfZador
0
54258
<gh_stars>0 topirq_install SUBROUTINE lda topirq_rasterline+1 ora #$02 sta $ff0a lda topirq_rasterline sta $ff0b lda #<topirq_stub sta $fffe lda #>topirq_stub sta $ffff rts topirq_stub SUBROUTINE sta .exit+1 stx .exit+3 sty .exit+5 jsr topirq_handler inc $ff09 .exit lda #$00 ldx #$00 ldy ...
files/input_asm_file.asm
CRThu/carrot_inside_cpu_interpreter
1
54259
LOCATE 0 ADDI $0, $1, 123 ;$1=$0+123 ;$1=123 ADDI $1, $2, 456 ;$2=$1+456 ;$2=579 SW $0, $2, 10 ;RAM($0+10)=$2 ;RAM(10)=579 LW $0, $3, 10 ;$3=RAM($0+10) ;$3=579 ADD $1, $3, $4 ;$4=$1+$3 ;$4=702 SUB $4, $2, $5 ;$5=$...
oeis/203/A203580.asm
neoneye/loda-programs
11
54260
<reponame>neoneye/loda-programs ; A203580: a(n) = Sum{d(i)*2^i: i=0,1,...,m}, where Sum{d(i)*7^i: i=0,1,...,m}=n, d(i)∈{0,1,...,6} ; Submitted by <NAME> ; 0,1,2,3,4,5,6,2,3,4,5,6,7,8,4,5,6,7,8,9,10,6,7,8,9,10,11,12,8,9,10,11,12,13,14,10,11,12,13,14,15,16,12,13,14,15,16,17,18,4,5,6,7,8,9,10,6,7,8,9,10,11,12,8,9,10,11,12...
oeis/206/A206427.asm
neoneye/loda-programs
11
54261
; A206427: Square array 2^(m-1)*(3^n+1), read by antidiagonals. ; Submitted by <NAME> ; 1,2,2,5,4,4,14,10,8,8,41,28,20,16,16,122,82,56,40,32,32,365,244,164,112,80,64,64,1094,730,488,328,224,160,128,128,3281,2188,1460,976,656,448,320,256,256,9842,6562,4376,2920,1952,1312,896,640,512,512 lpb $0 add $1,1 sub $0,$1 ...
libsrc/target/zx/if1/if1_find_sector.asm
ahjelm/z88dk
640
54262
<gh_stars>100-1000 ; ; ZX IF1 & Microdrive functions ; ; int if1_find_sector (int drive); ; ; Find a free sector in the specified drive ; ; Create an empty file, then delete it just to discover ; which sector can be written !!!. ; ; ; $Id: if1_find_sector.asm $ ; SECTION code_clib PUBLIC if1_find_sector PUB...
src/util/oli/app/cnvterm.asm
olifink/qspread
0
54263
; convert termination character to signed value include win1_keys_k section utility xdef cnv_term ;+++ ; convert termination character ; ; d1.b : termination character d1.l : +1/0/-1 ; no errors set ;--- cnv_term cmpi.b #k.esc,d1 beq.s term_esc ...
programs/oeis/083/A083481.asm
neoneye/loda
22
54264
<filename>programs/oeis/083/A083481.asm ; A083481: Smallest k such that n(n+1)*k is a square. ; 2,6,3,5,30,42,14,2,10,110,33,39,182,210,15,17,34,38,95,105,462,506,138,6,26,78,21,203,870,930,62,66,1122,1190,35,37,1406,1482,390,410,1722,1806,473,55,230,2162,141,3,2,102,663,689,318,330,770,798,3306,3422,885,915,3782,434,7...
Suma - Version 3.0.1.asm
Jon2G/ASMCalculator
0
54265
.model small .stack .data num_1 db 0,0,0,0,0,0,0,0,0 decimal_1 db 0,0,0,0,0,0,0,0,0 num_2 db 0,0,0,0,0,0,0,0,0 decimal_2 db 0,0,0,0,0,0,0,0,0 num_glo_res db 0,0,0,0,0,0,0,0,0,0 dec_glo_res db 0,0,0,0,0,0,0,0,0 display_str db "000009934.876500000+" d...
src/test/ref/signed-indexed-subtract.asm
jbrandwood/kickc
2
54266
<filename>src/test/ref/signed-indexed-subtract.asm // Tests that signed indexed subtract works as intended // Commodore 64 PRG executable file .file [name="signed-indexed-subtract.prg", type="prg", segments="Program"] .segmentdef Program [segments="Basic, Code, Data"] .segmentdef Basic [start=$0801] .segmentdef Code ...
programs/oeis/174/A174836.asm
neoneye/loda
22
54267
; A174836: a(n) = 1 + ((6*n-1)*2^n + (-1)^n)/3. ; 1,4,16,46,124,310,748,1750,4012,9046,20140,44374,96940,210262,453292,972118,2075308,4412758,9349804,19748182,41593516,87381334,183151276,383079766,799713964,1666536790,3467291308,7203018070,14942907052,30959555926,64066595500,132428158294 mov $2,$0 lpb $2 add $0,$1 ...
programs/oeis/277/A277209.asm
neoneye/loda
22
54268
<reponame>neoneye/loda ; A277209: Partial sums of repdigit numbers (A010785). ; 0,1,3,6,10,15,21,28,36,45,56,78,111,155,210,276,353,441,540,651,873,1206,1650,2205,2871,3648,4536,5535,6646,8868,12201,16645,22200,28866,36643,45531,55530,66641,88863,122196,166640,222195,288861,366638,455526,555525,666636,888858,1222191,16...
oeis/272/A272665.asm
neoneye/loda-programs
11
54271
<reponame>neoneye/loda-programs<gh_stars>10-100 ; A272665: Imaginary parts of b(n) sequence used to define A143056. ; Submitted by <NAME> ; 0,0,1,2,4,6,7,4,-8,-36,-87,-162,-244,-278,-145,360,1520,3608,6641,9882,11028,5166,-16073,-64084,-149528,-272076,-399911,-436682,-179684,712530,2698335,6192720,11140064,16170928,172...
45/runtime/rt/llscreen.asm
minblock/msdos
0
54274
TITLE LLSCREEN - Screen Statement Interface ;*** ;LLSCREEN - Screen Statement Interface ; ; Copyright <C> 1987, Microsoft Corporation ; ;Purpose: ; This module contains B$SCRSTT, the screen statement support routine. ; ;***************************************************************************** INCLUDE switch.inc ...
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48_notsx.log_5791_1321.asm
ljhsiun2/medusa
9
54275
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r13 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0x51aa, %r13 nop nop nop cmp $54113, %rbp mov $0x6162636465666768, %rsi movq %rsi, (%r13) nop nop nop nop sub %r13, %r13 lea addresses_WC_ht+0xbbca, %rsi lea addresses_WT_...
oeis/163/A163296.asm
neoneye/loda-programs
11
54276
; A163296: Absolute value of the Sum_{x=0..A141468(n)} x*(-1)^x. ; Submitted by <NAME> ; 0,1,2,3,4,5,5,6,7,8,8,9,10,11,11,12,13,13,14,14,15,16,17,17,18,18,19,20,20,21,22,23,23,24,25,25,26,26,27,28,28,29,29,30,31,32,32,33,33,34,35,35,36,37,38,38,39,39,40,41,41,42,43,43,44,44,45,46,46,47,47,48,48,49,50,50,51,52,53,53,54,...
oeis/003/A003519.asm
neoneye/loda-programs
11
54277
<reponame>neoneye/loda-programs ; A003519: a(n) = 10*C(2n+1, n-4)/(n+6). ; Submitted by <NAME> ; 1,10,65,350,1700,7752,33915,144210,600875,2466750,10015005,40320150,161280600,641886000,2544619500,10056336264,39645171810,155989499540,612815891050,2404551645100,9425842448792,36921502679600,144539291740025,565588532895750...
data/pokemon/base_stats/combusken.asm
AtmaBuster/pokeplat-gen2
6
54278
<gh_stars>1-10 db 0 ; species ID placeholder db 60, 85, 60, 55, 85, 60 ; hp atk def spd sat sdf db FIRE, FIRE ; type db 45 ; catch rate db 142 ; base exp db NO_ITEM, NO_ITEM ; items db GENDER_F12_5 ; gender ratio db 20 ; step cycles to hatch INCBIN "gfx/pokemon/combusken/front.dimensions" db G...
Transynther/x86/_processed/AVXALIGN/_ht_zr_un_/i7-8650U_0xd2_notsx.log_21829_925.asm
ljhsiun2/medusa
9
54279
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r14 push %r8 push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0x6e64, %rcx clflush (%rcx) nop nop nop dec %r10 movb (%rcx), %r8b nop nop nop nop dec %r12 lea addresses_WT_ht+0x11584, %r14 nop nop nop nop add %rdx...
tests/test_programs/alive.asm
Nauja/moro8asm
0
54280
; I'm alive ; by PJP start: lda #$0F sta $0 ;xpos sta $1 ;ypos loop: lda $fe and #$3 cmp #$0 beq go_left cmp #$1 beq go_right cmp #$2 beq go_down dec $1 draw: lda $1 and #$1f asl tax lda ypos,x sta $2 inx lda ypos,x sta $3 lda $0 and #$1f tay lda ($2),y tax inx txa sta ($2),y jmp loop go...
src/VMTranslator/fixtures/MemoryAccess/StaticTest/StaticTest_PASS.asm
tuzmusic/HackManager
1
54281
<filename>src/VMTranslator/fixtures/MemoryAccess/StaticTest/StaticTest_PASS.asm // push constant 111 @111 D=A // store the current address as a value @SP // >> push constant value (111) onto stack << A=M // move to top of stack M=D // write value of D to current location @SP ...
libsrc/_DEVELOPMENT/arch/sms/SMSlib/z80/asm_SMSlib_setColor.asm
jpoikela/z88dk
640
54282
<filename>libsrc/_DEVELOPMENT/arch/sms/SMSlib/z80/asm_SMSlib_setColor.asm ; ************************************************** ; SMSlib - C programming library for the SMS/GG ; ( part of devkitSMS - github.com/sverx/devkitSMS ) ; ************************************************** INCLUDE "SMSlib_private.inc" SECTION ...
artwork/barbaro_agacha.asm
fjpena/sword-of-ianna-zx
67
54283
; ASM source file created by SevenuP v1.20 ; SevenuP (C) Copyright 2002-2006 by <NAME>, aka Metalbrain ;GRAPHIC DATA: ;Pixel Size: ( 24, 32) ;Char Size: ( 3, 4) ;Frames: 3 ;Sort Priorities: X char, Char line, Y char, Frame number ;Data Outputted: Gfx ;Interleave: Sprite ;Mask: ...
Transynther/x86/_processed/US/_zr_/i7-8650U_0xd2_notsx.log_2_441.asm
ljhsiun2/medusa
9
54284
.global s_prepare_buffers s_prepare_buffers: push %r13 push %r14 push %r15 push %r9 push %rbp push %rcx push %rdi push %rsi lea addresses_normal_ht+0x12eb, %rsi lea addresses_normal_ht+0x1af16, %rdi nop nop nop nop inc %r13 mov $90, %rcx rep movsb xor %rcx, %rcx lea addresses_normal_ht+0xc6b, %r15 dec %r14 mov $0x61626...
programs/oeis/108/A108577.asm
karttu/loda
1
54285
<filename>programs/oeis/108/A108577.asm ; A108577: Number of symmetry classes of 3 X 3 magic squares (with distinct positive entries) having all entries < n. ; 0,0,0,0,0,0,0,0,0,1,2,5,8,12,16,23,30,40,50,63,76,93,110,132,154,180,206,238,270,308,346,390,434,485,536,595,654,720,786,861,936,1020,1104,1197,1290,1393,1496,1...
Transynther/x86/_processed/US/_ht_zr_/i7-7700_9_0xca_notsx.log_21829_1018.asm
ljhsiun2/medusa
9
54286
.global s_prepare_buffers s_prepare_buffers: push %r13 push %r15 push %r8 push %rax push %rcx push %rdi push %rsi lea addresses_normal_ht+0x1a976, %rsi lea addresses_WT_ht+0x11dbe, %rdi nop nop cmp %r13, %r13 mov $68, %rcx rep movsb nop nop nop nop cmp %rax, %rax lea addresses_UC_ht+0x16bbe, %rsi lea addresses_A_ht+0x1...
Snippeturi/drafts/2/pb1.asm
DanBrezeanu/IOCLA
2
54289
%include "io.inc" section .text global CMAIN CMAIN: push ebp mov ebp, esp mov eax, 0xfd110000 mov ecx, 0x00ff0000 and eax, ecx shr eax, 22 mov ecx, 2 push eax and eax, ecx shr eax, 1 PRINT_DEC 4, eax pop eax shr ecx, 1 and eax, ecx PRINT_DEC 4, eax ...
boot/krnldr.asm
USN484259/COFUOS
1
54290
IA32_EFER equ 0xC0000080 IA32_APIC_BASE equ 0x1B HIGHADDR equ 0xFFFF_8000_0000_0000 SYSINFO_BASE equ 0x0500 SYSINFO_LEN equ 0x100 GDT_BASE equ 0x0600 GDT_LIM equ 0x600 ;96 entries IDT_BASE equ 0x0C00 IDT_LIM equ 0x400 ;64 entries PAGE_SIZE equ 0x1000 SECTOR_SIZE equ 0x200 LDR_STK equ 0x02000 P...
programs/oeis/052/A052226.asm
neoneye/loda
22
54292
<reponame>neoneye/loda ; A052226: Partial sums of A050404. ; 1,15,92,372,1170,3102,7260,15444,30459,56485,99528,167960,273156,430236,658920,984504,1438965,2062203,2903428,4022700,5492630,7400250,9849060,12961260,16880175,21772881,27833040,35283952,44381832,55419320,68729232,84688560,103722729,126310119,152986860,184351...
x86-64-assembly/hamming/hamming.asm
0x28/exercism
0
54293
section .text global distance distance: xor rax, rax loop: mov cl, [rsi] mov dl, [rdi] test cl, cl jz done test dl, dl jz fail inc rsi inc rdi cmp cl, dl je loop inc rax jmp loop fail: mov rax, -1 ret done: test dl, dl jne fail ret
EEL7030/Rep CAEE/Mic 8085/Ints85a.asm
GSimas/MicroC
0
54294
<gh_stars>0 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;Ints85a.asm - Interrupcoes do 8085 ;Prof. <NAME> - 04.01.2000 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MOSTRAA EQU 036EH DELAY EQU 05F1H RST7.5 EQU 20CEH ORG 2000H LXI SP,20C0H ; Inicializa pilha...
programs/oeis/194/A194142.asm
neoneye/loda
22
54297
; A194142: Sum{floor(j*(3-sqrt(3)) : 1<=j<=n}; n-th partial sum of Beatty sequence for 3-sqrt(3). ; 1,3,6,11,17,24,32,42,53,65,78,93,109,126,145,165,186,208,232,257,283,310,339,369,400,432,466,501,537,575,614,654,695,738,782,827,873,921,970,1020,1071,1124,1178,1233,1290,1348,1407,1467,1529,1592,1656 mov $2,$0 add $2,1...
programs/oeis/245/A245415.asm
neoneye/loda
22
54298
; A245415: Number of nonnegative integers with property that their base 5/2 expansion (see A024632) has n digits. ; 5,10,25,60,150,375,940,2350,5875,14685,36715,91785,229465,573660,1434150,3585375,8963440,22408600,56021500,140053750,350134375,875335935,2188339840,5470849600,13677124000,34192810000,85482025000,213705062...
Library/Config/Pref/prefSerial.asm
steakknife/pcgeos
504
54300
<filename>Library/Config/Pref/prefSerial.asm<gh_stars>100-1000 COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1992 -- All Rights Reserved PROJECT: PC GEOS MODULE: FILE: prefSerial.asm AUTHOR: <NAME> ROUTINES: Name Description ---- ----------- ...
Transynther/x86/_processed/US/_zr_/i3-7100_9_0x84_notsx.log_28_2022.asm
ljhsiun2/medusa
9
54303
.global s_prepare_buffers s_prepare_buffers: push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x2934, %rsi lea addresses_WT_ht+0x5c84, %rdi nop nop add %rdx, %rdx mov $127, %rcx rep movsl nop nop xor %rax, %rax pop %rsi pop %rdx pop %rdi pop %rcx pop %rax ret .global s_faulty_load s_faulty_load...
libsrc/math/mbf32/c/sccz80/l_f32_swap.asm
jpoikela/z88dk
0
54304
SECTION code_fp_mbf32 PUBLIC l_f32_swap ; Entry: dehl = right hand operand ; Stack: defw return address ; defw left hand LSW ; defw left hand MSW l_f32_swap: pop af ; Return pop bc ; left-LSW ex de,hl ; de = right-LSW, hl = right-MSW ex (sp),hl ; hl = left-MSW, (sp) = right-MSW pu...
src/tocompress/map-catacombs2.asm
santiontanon/talesofpopolon-ext
4
54306
<reponame>santiontanon/talesofpopolon-ext include "../constants.asm" org #0000 skybox: db 0 texture_set: db 1 floortypeandcolor: ; db 0 db #60 ceilingtypeandcolor: ; db 0 db #d0 map: db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ...
programs/oeis/008/A008413.asm
karttu/loda
1
54307
; A008413: Coordination sequence for 5-dimensional cubic lattice. ; 1,10,50,170,450,1002,1970,3530,5890,9290,14002,20330,28610,39210,52530,69002,89090,113290,142130,176170,216002,262250,315570,376650,446210,525002,613810,713450,824770,948650,1086002,1237770,1404930,1588490,1789490,2009002,2248130,2508010,2789810,309473...
programs/oeis/053/A053615.asm
neoneye/loda
22
54308
<reponame>neoneye/loda<filename>programs/oeis/053/A053615.asm ; A053615: Pyramidal sequence: distance to nearest product of two consecutive integers (promic or heteromecic numbers). ; 0,1,0,1,2,1,0,1,2,3,2,1,0,1,2,3,4,3,2,1,0,1,2,3,4,5,4,3,2,1,0,1,2,3,4,5,6,5,4,3,2,1,0,1,2,3,4,5,6,7,6,5,4,3,2,1,0,1,2,3,4,5,6,7,8,7,6,5,...
Transynther/x86/_processed/NC/_zr_/i7-8650U_0xd2_notsx.log_21829_944.asm
ljhsiun2/medusa
9
54310
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r14 push %r8 push %rbp push %rcx push %rdi push %rsi lea addresses_normal_ht+0x2b80, %r14 nop nop nop nop add %rbp, %rbp and $0xffffffffffffffc0, %r14 vmovaps (%r14), %ymm5 vextracti128 $1, %ymm5, %xmm5 vpextrq $0, %xmm5, %r12 nop nop nop xor $16813, %rsi lea...
oeis/219/A219088.asm
neoneye/loda-programs
11
54311
<gh_stars>10-100 ; A219088: Floor((n + 1/2)^5). ; 0,7,97,525,1845,5032,11602,23730,44370,77378,127628,201135,305175,448403,640973,894660,1222981,1641308,2166998,2819506,3620506,4594013,5766503,7167031,8827351,10782039,13068609,15727636,18802876,22341384,26393634,31013641,36259082,42191409,48875979,56382167,64783487,741...
libsrc/games/zx81snd/bit_open.asm
andydansby/z88dk-mk2
1
54312
; $Id: bit_open.asm,v 1.1 2011/11/15 16:40:47 stefano Exp $ ; ; ZX81 1 bit sound functions ; ; void bit_open(); ; ; <NAME> - 11/11/2001 ; XLIB bit_open XREF snd_tick .bit_open xor a ret
proteus/TwoPhaseFlow/utils/petsc.options.asm
acatwithacomputer/proteus
0
54313
-rans2p_ksp_type gmres -rans2p_pc_type asm -rans2p_pc_asm_type basic -rans2p_ksp_max_it 2000 -rans2p_ksp_gmres_modifiedgramschmidt -rans2p_ksp_gmres_restart 300 -rans2p_sub_ksp_type preonly -rans2p_sub_pc_factor_mat_solver_type superlu -rans2p_ksp_knoll -rans2p_sub_pc_type lu -rans3p_ksp_type fgmres -rans3p_pc_type asm...
src/synth.asm
trilkk/faemiyah-demoscene_2017-08_4k_intro_primordial_soup
5
54315
<filename>src/synth.asm .data fc1: .byte 0x00 .byte 0x00 .byte 0x53 .byte 0x40 global_volume: .byte 0x00 .byte 0x00 .byte 0x80 .byte 0x3f end_fade: .byte 0x00 .byte 0xff .byte 0x7f .byte 0x3f delay_dry: .byte 0x00 .byte 0xcc .byte 0xcc .byte 0x3e stereo_mod: .byte 0x00 .byte 0x62 .byte 0x80 .byte 0x3f main_tune: .byte ...
kernel/mm/vfs_cache.asm
TheMachine02/Sorcery
14
54317
<reponame>TheMachine02/Sorcery vfs_cache: .map_page: ; doesnt destroy hl, bc ; return page in a or error in a with carry set ; iy should be the inode push hl push bc push de push iy ; cache page within kernel memory in priority ld de, KERNEL_MM_PAGE_CACHE_MASK ; for inode, we need to extract the 12 bits of inform...
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0x48_notsx.log_19991_164.asm
ljhsiun2/medusa
9
54318
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r15 push %r8 push %rax push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0x14ad4, %rsi lea addresses_normal_ht+0x61d4, %rdi nop nop dec %r8 mov $49, %rcx rep movsb nop nop nop add $4128, %rax lea addresses_normal_ht+0x132d4, %rbx xor ...
asm/mips/progs/program4.asm
TomRegan/synedoche
1
54320
########################################################################## ##Author : <NAME> <<EMAIL>> ## ##Last modified : 2011-07-22 ## ##Description : MIPS assembly program: Calculates factorial ## ## recursively ...
programs/oeis/135/A135569.asm
neoneye/loda
22
54321
; A135569: a(n) = S2(n)*2^n; where S2(n) is digit sum of n, n in binary notation. ; 0,2,4,16,16,64,128,384,256,1024,2048,6144,8192,24576,49152,131072,65536,262144,524288,1572864,2097152,6291456,12582912,33554432,33554432,100663296,201326592,536870912,805306368,2147483648,4294967296,10737418240,4294967296,17179869184,34...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1008.asm
ljhsiun2/medusa
9
54323
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r8 push %r9 push %rax push %rcx push %rdi push %rsi lea addresses_D_ht+0x18f69, %r10 nop nop nop sub $23551, %rax mov $0x6162636465666768, %r8 movq %r8, %xmm4 movups %xmm4, (%r10) nop nop nop and $11766, %r11 lea addresses_UC_ht+0x2f29, %rsi lea add...
data/wild/johto_grass.asm
genterz/pokecross
28
54324
<reponame>genterz/pokecross<filename>data/wild/johto_grass.asm ; Johto Pokémon in grass JohtoGrassWildMons: map_id SPROUT_TOWER_2F db 2 percent, 2 percent, 2 percent ; encounter rates: morn/day/nite ; morn db 3, RATTATA db 4, RATTATA db 5, RATTATA db 3, RATTATA db 6, RATTATA db 5, RATTATA db 5, RATTATA ; d...
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_8_324.asm
ljhsiun2/medusa
9
54325
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r13 push %r14 push %r8 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0xdd2b, %rbp nop sub $32729, %r11 movb $0x61, (%rbp) nop and $38991, %r14 lea addresses_D_ht+0x13d25, %rbp sub %r10, %r10 movb (%rbp), %r14b n...
untested/x64/intDiv.asm
GabrielRavier/Generic-Assembly-Samples
0
54328
<reponame>GabrielRavier/Generic-Assembly-Samples global _intDiv segment .text align=16 _intDiv: pxor xmm0, xmm0 pxor xmm1, xmm0 cvtsi2ss xmm0, edi cvtsi2ss xmm1, esi divss xmm0, xmm1 cvttss2si eax, xmm0 ret align 16 _intDivAVX: vxorps xmm0, xmm0, xmm0 vxorps xmm1, xmm1, xmm1 vcvtsi2ss xmm0, xmm0, edi...
realdeal/clear.asm
Admiral-Enigma/C64-playground
0
54329
<reponame>Admiral-Enigma/C64-playground<filename>realdeal/clear.asm processor 6502 org $1000 lda #$00 sta $d020 sta $d021 tax lda #$20 loop: sta $0400,x sta $0500,x sta $0600,x sta $0700,x dex bne loop
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xa0.log_21829_248.asm
ljhsiun2/medusa
9
54330
<filename>Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xa0.log_21829_248.asm<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r14 push %r8 push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0xf03c, %rsi lea addresses_WT_ht+0x8996, %rdi nop nop add %r14, %r14 mov $55...
oeis/109/A109712.asm
neoneye/loda-programs
11
54332
<gh_stars>10-100 ; A109712: UnitarySigmaUnitaryPhi(n) or USUP(n). ; Submitted by <NAME> ; 1,3,2,5,4,6,6,9,8,12,10,10,12,18,8,17,16,24,18,20,12,30,22,18,24,36,26,30,28,24,30,33,20,48,24,40,36,54,24,36,40,36,42,50,32,66,46,34,48,72,32,60,52,78,40,54,36,84,58,40,60,90,48,65,48,60,66,80,44,72,70,72,72,108,48,90,60,72,78,68...
libsrc/psg/trs80/set_psg_callee.asm
teknoplop/z88dk
0
54333
; ; TRS-80 (EG2000+HT1080) specific routines ; by <NAME>, Fall 2015 ; ; int set_psg(int reg, int val); ; ; Play a sound by PSG ; ; ; $Id: set_psg_callee.asm,v 1.1 2015/10/28 07:21:45 stefano Exp $ ; PUBLIC set_psg_callee PUBLIC ASMDISP_SET_PSG_CALLEE set_psg_callee: pop hl pop de ex (sp),hl .asmentry...
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_6460_820.asm
ljhsiun2/medusa
9
54334
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r14 push %r9 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0xbfc3, %rsi lea addresses_WT_ht+0x15487, %rdi xor $20463, %r9 mov $4, %rcx rep movsq nop nop nop cmp %r12, %r12 lea addresses_normal_ht+0x150e7, %rax nop nop add $17033, %r14 v...
oeis/146/A146887.asm
neoneye/loda-programs
11
54335
; A146887: a(n) = prime(n)*a(n-1) - a(n-2). ; Submitted by <NAME> ; 1,1,2,9,61,662,8545,144603,2738912,62850373,1819921905,56354728682,2083305039329,85359151883807,3668360225964372,172327571468441677,9129692927601444509,538479555157016784354,32838123171650422401085 mov $1,1 mov $2,1 lpb $0 sub $0,1 mov $4,$2 mov...
src/avxfish.asm
TomCrypto/avxfish
4
54337
BITS 64 global avxfish section .text %ifidn __OUTPUT_FORMAT__, win64 %define ARG0 rcx %define ARG1 rdx %define ARG2 r8 %elifidn __OUTPUT_FORMAT__, elf64 %define ARG0 rdi %define ARG1 rsi %define ARG2 rdx %else %error Unsupported output format %endif %define next 1 %define load 2 %define last 3 %macro...
programs/oeis/200/A200244.asm
neoneye/loda
22
54338
<filename>programs/oeis/200/A200244.asm ; A200244: a(n)=1 iff binary weight of n-th prime is even. ; 0,1,1,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,0,1,0,1,0,1,0,1,1,1,1,1,0,1,0,1,1,0,1,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,1,1,0,1,0 seq $0,6005 ; The ...
DriverInitialize.asm
nanabingies/KiLogr
0
54339
<filename>DriverInitialize.asm .text:00401068 ; =============== S U B R O U T I N E ======================================= .text:00401068 .text:00401068 ; Attributes: bp-based frame .text:00401068 .text:00401068 sub_401068 proc near ; CODE XREF: start+B↓j .text:00401068 .text:00401068 arg_0 ...
c2nasm/e.asm
TimerChen/MxCompiler
2
54340
<reponame>TimerChen/MxCompiler<filename>c2nasm/e.asm default rel global main SECTION .text main: push rbp mov rbp, rsp mov qword [rbp-18H], 5 mov qword [rbp-10H], 2 mov rax, qword [rbp-18H] cqo idiv qword [rbp-10H] mov q...
src/sound_test.asm
stid/kick-c64-dead-test
22
54342
<filename>src/sound_test.asm #importonce #import "./data.asm" #import "./macros.asm" #import "./mem_map.asm" #import "./zeropage_map.asm" * = * "sound test" soundTest: { ldx #$09 !: lda strSound,x //label sound test sta VIDEO_RAM+$118,x dex ...
Appl/Preferences/Setup/setupDispRes.asm
steakknife/pcgeos
504
54343
<reponame>steakknife/pcgeos COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1990 -- All Rights Reserved PROJECT: PC GEOS MODULE: Graphical Setup -- Display-resolution support FILE: setupDispRes.asm AUTHOR: <NAME>, Oct 9, 1990 ROUTINES: Name De...
work/_ff3-DSfy-ff3c_v1.asm
ypyp-pprn-mnmn/ff3_hack
4
54344
<filename>work/_ff3-DSfy-ff3c_v1.asm ;; _ff3-DSfy-only-fast-window.asm ;; ;; creates a patch merely including 'fast window rendering' feature ;; ;================================================================================================== ;; feature flags. __HACK_FOR_FF3C _OPTIMIZE_FIELD_WINDOW _FEATURE...
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48.log_21829_587.asm
ljhsiun2/medusa
9
54345
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %r15 push %r9 push %rcx lea addresses_D_ht+0x1dab, %r12 nop and $51139, %r9 mov (%r12), %r13w nop nop and $17628, %r13 lea addresses_normal_ht+0x1c5ab, %r12 nop nop nop nop nop add %r15, %r15 mov (%r12), %rcx nop inc %r12 pop %rcx pop %r9 pop %r15 po...
non_regression/other_x64_linux.att.s.asm
LRGH/plasmasm
1
54346
<filename>non_regression/other_x64_linux.att.s.asm .file "ptx.c" .section .text.unlikely,"ax",@progbits .LCOLDB0: .LCOLDE0: .LCOLDB1: .LCOLDE1: .LCOLDB3: .LCOLDE3: .LCOLDB4: .LCOLDE4: .LCOLDB6: .LCOLDE6: .LCOLDB9: .LCOLDE9: .LCOLDB10: .LCOLDE10: .LCOLDB11: .LCOLDE11: .LCOLDB29: .LCOLDE29: .LCOLDB30: .LCOLDE30: ...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_116.asm
ljhsiun2/medusa
9
54347
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r15 push %r8 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_WT_ht+0x135ee, %rsi nop nop nop nop sub %r8, %r8 mov $0x6162636465666768, %r10 movq %r10, %xmm7 vmovups %ymm7, (%rsi) nop nop nop nop xor %r15, %r15 lea addresses_WC_ht+0x8...
asix/FreeRTOSSource/tasks.asm
temcocontrols/Programmable-Controller
1
54348
;-------------------------------------------------------- ; File Created by SDCC : FreeWare ANSI-C Compiler ; Version 2.4.8 #964 (Feb 23 2005) ; This file generated Fri May 20 14:05:27 2005 ;-------------------------------------------------------- .module ______Source_tasks .optsdcc -mmcs51 --model-large ;---------...
tests/R/test5.asm
madhav-datt/mmcpu
0
54349
<gh_stars>0 main: nor $s0, $0, $0 xor $s1, $s0, $0 xor $s2, $s0, $s0 nor $s3, $s2, $s1 or $s4, $s3, $s2 and $s5, $s4, $s3 sra $s6, $s5, 2 slt $t0, $s6, $s5 and $t1, $t0, $s6 xor $t2, $t0, $s3
Fora de Aula/mul.asm
marinisz/Assembly
0
54350
.data .text #adicionando valores as variaveis addi $s0,$zero,10 addi $s1,$zero,4 #multiplicando e armazenando mul $t0,$s0,$s1 #mostando li $v0,1 add $a0,$zero,$t0 syscall
programs/oeis/128/A128697.asm
neoneye/loda
22
54351
<filename>programs/oeis/128/A128697.asm ; A128697: Sum of the eighth powers of the first n Fibonacci numbers. ; 0,1,2,258,6819,397444,17174660,832905381,38655764742,1824449669638,85558387560263,4022147193262344,188906406088298760,8875457294194960201,416941824416535235082,19587673124144635235082,920198619736386114829803...
builtin/builtin.asm
Engineev/mocker
14
54352
<gh_stars>10-100 default rel global __alloc global __string__add global __string__substring global __string__ord global __string__parseInt global __string__equal global __string__inequal global __string__less global __string__less_equal global __string___ctor_ global getInt global print global _printInt global _...