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 |
|---|---|---|---|---|
programs/oeis/158/A158137.asm | karttu/loda | 0 | 207363 | <reponame>karttu/loda
; A158137: Period 9: repeat [-2,4,-2,4,-2,-2,1,1,-2].
; -2,4,-2,4,-2,-2,1,1,-2,-2,4,-2,4,-2,-2,1,1,-2,-2,4,-2,4,-2,-2,1,1,-2,-2,4,-2,4,-2,-2,1,1,-2,-2,4,-2,4,-2,-2,1,1,-2,-2,4,-2,4,-2,-2,1,1,-2,-2,4,-2,4,-2,-2,1,1,-2,-2,4,-2,4,-2,-2,1,1,-2,-2,4,-2,4,-2,-2,1,1,-2,-2,4,-2
add $0,8
mov $2,$0
mov $3,... |
programs/oeis/046/A046631.asm | neoneye/loda | 22 | 207365 | <filename>programs/oeis/046/A046631.asm
; A046631: Number of cubic residues mod 3^n.
; 1,3,3,7,21,57,169,507,1515,4543,13629,40881,122641,367923,1103763,3311287,9933861,29801577,89404729,268214187,804642555,2413927663,7241782989,21725348961,65176046881,195528140643,586584421923
lpb $0
mov $2,$0
trn $0,3
trn $2,2... |
data/pokemon/base_stats/jynx.asm | AtmaBuster/pokeplat-gen2 | 6 | 207366 | <reponame>AtmaBuster/pokeplat-gen2<gh_stars>1-10
db 0 ; species ID placeholder
db 65, 50, 35, 95, 115, 95
; hp atk def spd sat sdf
db ICE, PSYCHIC ; type
db 45 ; catch rate
db 137 ; base exp
db ICE_BERRY, ICE_BERRY ; items
db GENDER_F100 ; gender ratio
db 25 ; step cycles to hatch
INCBIN "gfx/po... |
oeis/303/A303488.asm | neoneye/loda-programs | 11 | 207369 | ; A303488: a(n) = n! * [x^n] 1/(1 - 5*x)^(n/5).
; 1,1,14,312,9576,375000,17873856,1004306688,65006637696,4763494479744,389812500000000,35237024762075136,3487065897634615296,374960171943074285568,43532820293400237735936,5427359437500000000000000,723181462895975365595529216,102563963819340862347122245632
mov $1,$0
mov $... |
sw/552tests/inst_tests/jal_4.asm | JPShen-UWM/ThreadKraken | 1 | 207370 | // Original test: ./eharris/hw4/problem6/jal_0.asm
// Author: eharris
// Test source code follows
//Tests the basic jal command
lbi r1, 0x00
jal 2 //Jumps over next instruction
lbi r1, 0x01
lbi r2, 0x00
halt
//Ends with 0 in R1 and R2 and the address of the lbi $1, 0x01 inst in R7
|
programs/oeis/037/A037595.asm | neoneye/loda | 22 | 207371 | ; A037595: Base 9 digits are, in order, the first n terms of the periodic sequence with initial period 1,0,3.
; 1,9,84,757,6813,61320,551881,4966929,44702364,402321277,3620891493,32588023440,293292210961,2639629898649,23756669087844,213810021790597,1924290196115373
mul $0,2
add $0,4
mov $1,3
pow $1,$0
div $1,26
mul $1... |
tests/parsing/omega_struct_instance_pollution.asm | fengjixuchui/sjasmplus | 220 | 207373 | <filename>tests/parsing/omega_struct_instance_pollution.asm
; this test is based on Omega (CZ demo scener) issue report, when local label defined
; after structure instance did use as "main" label the last inner-field of structure
; instead of the main structure name. (ie. ".data" after "test: sss" got expanded as
; "t... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1377.asm | ljhsiun2/medusa | 9 | 207374 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1377.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r14
push %rax
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x18db, %rax
nop
nop
cmp %r14, %r14
mov $0x61626364656... |
6502EMU/Instructions/INY.asm | austinbentley/6502toAVR | 0 | 207375 | <gh_stars>0
/*
* INY.asm
*
* Created: 5/13/2018 4:12:18 PM
* Author: ROTP
*/
INY_implied: ;UNTESTED but highly likely to work.
swapPCwithTEMPPC
INC YR
updateNZfromREGISTER YR
ADIW ZH:ZL, 1
RET |
libsrc/_DEVELOPMENT/error/z80/error_einval_mc.asm | meesokim/z88dk | 0 | 207376 |
INCLUDE "clib_cfg.asm"
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
IF __CLIB_OPT_ERROR
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; verbose mode
SECTION code_error
PUBLIC error_einval_mc
EXTERN __EINVAL, errno_mc
pop hl
error_einval_mc:
; set hl = -1
; set carry flag
; set errno ... |
programs/oeis/047/A047878.asm | neoneye/loda | 22 | 207377 | <reponame>neoneye/loda
; A047878: a(n) is the least number of knight's moves from corner (0,0) to n-th diagonal of unbounded chessboard.
; 0,3,2,1,2,3,2,3,4,3,4,5,4,5,6,5,6,7,6,7,8,7,8,9,8,9,10,9,10,11,10,11,12,11,12,13,12,13,14,13,14,15,14,15,16,15,16,17,16,17,18,17,18,19,18,19,20,19,20,21,20,21,22,21,22,23,22,23,24,2... |
src/adc_soft_filter.asm | no111u3/m48_robo_asm | 0 | 207378 | ;****************************************************************
.include "m48def.inc"
.include "service.inc"
.include "display.inc"
; Some definitions for usefully
.def ADSH = r15 ; higher byte of summ
.def ADSL = r14 ; lower byte of summ
.def ACT = r13 ; counter of average values
.def SUMH = r12 ; out register ... |
programs/serial.asm | SuriyaaKudoIsc/alos | 3 | 207379 | ; ------------------------------------------------------------------
; Minicom-like program for alOS
; ------------------------------------------------------------------
; With this program and an appropriate serial (null modem) cable, you
; can log in to Linux machines. You will need your Linux box to establish
; a ... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1898.asm | ljhsiun2/medusa | 9 | 207380 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r14
push %r15
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x1c698, %rdi
nop
xor %r14, %r14
movb $0x61, (%rdi)
nop
xor $33514, %r9
lea addresses_WT_ht+0xd7a, %rsi
lea addresses_WC_ht+0xb8a2, %rdi
nop
sub %r12, %r12
mov $91, %rcx
rep mov... |
programs/oeis/277/A277425.asm | karttu/loda | 0 | 207382 | <gh_stars>0
; A277425: a(n) = sqrt(16*t^2 - 32*t + k^2 + 8*k - 8*k*t + 16), where t = ceiling(sqrt(n)) and k = t^2 - n.
; 0,2,3,4,4,5,6,7,8,6,7,8,9,10,11,12,8,9,10,11,12,13,14,15,16,10,11,12,13,14,15,16,17,18,19,20,12,13,14,15,16,17,18,19,20,21,22,23,24,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,16,17,18,19,20,21,22,... |
files-lab1/analyze.asm | naynasa/is1500-labbar | 0 | 207384 | <gh_stars>0
# analyze.asm
# This file written 2015 by <NAME>
# Copyright abandoned - this file is in the public domain.
.text
main:
li $s0,0x30
loop:
move $a0,$s0 # copy from s0 to a0
li $v0,11 # syscall with v0 = 11 will print out
syscall # one byte from a0 to the Run I/O window
addi $s0,$s0,0x3 # c... |
PRG/objects/3-F1A.asm | narfman0/smb3_pp1 | 0 | 207385 | .byte $00 ; Unknown purpose
.byte OBJ_GREENCHEEP, $21, $17
.byte OBJ_GREENCHEEP, $3A, $17
.byte OBJ_GREENCHEEP, $4C, $17
.byte $FF ; Terminator
|
src/z3/randomizer/sharedplayerpalettefix.asm | PJBoy/alttp_sm_combo_randomizer_rom | 31 | 207386 | <reponame>PJBoy/alttp_sm_combo_randomizer_rom
;SHARED SPRITE PALETTE FIX
;
;This is a repair so that sprites that previously shared Link's palette
;no longer share his palette. In the vanilla game this was not an issue
;but with custom sprites some very strange color transitions can occur.
;
;The convention in the com... |
Perl6 Compiler/compiled/02-op-math.asm | Itay2805/Perl6-Native-Compiler | 1 | 207387 | <gh_stars>1-10
[extern printf]
[section code]
[global main]
main:
push rbp
mov rbp, rsp
sub rsp, 0
mov rax, generated_string_17
lea rsi, [rax + 8]
mov rdi, str_fmt_line
xor ax, ax
call printf
mov rax, generated_string_18
lea rsi, [rax + 8]
mov rdi, str_fmt
xor ax, ax
call printf
mov rax, 0x1
mov rbx, rax... |
MSDOS/Virus.MSDOS.Unknown.boot-ds.asm | fengjixuchui/Family | 3 | 207388 | <filename>MSDOS/Virus.MSDOS.Unknown.boot-ds.asm
; Boot Record Program (C) Copyright <NAME> 1986
; From PC Magazine ca. January 1986
boots segment 'code'
public boot
assume cs:boots
boot proc far
; 30-byte DOS info -- set up for 2-sides, 9-sector
; change as needed for any other format
head:
... |
oeis/015/A015221.asm | neoneye/loda-programs | 11 | 207390 | <gh_stars>10-100
; A015221: Odd square pyramidal numbers.
; Submitted by <NAME>(m3)
; 1,5,55,91,285,385,819,1015,1785,2109,3311,3795,5525,6201,8555,9455,12529,13685,17575,19019,23821,25585,31395,33511,40425,42925,51039,53955,63365,66729,77531,81375,93665,98021,111895,116795,132349,137825
mov $1,$0
mod $0,2
add $1,1
su... |
asm/lex.asm | jethrodaniel/os | 1 | 207391 | <reponame>jethrodaniel/os
; vim: :set ft=nasm:
[bits 16]
; Skip whitespace in a null-terminated string whose current
; character's address is located in `bx`.
;
io.skip_whitespace:
push ax
.load:
mov al, [bx] ; ax = <this char>
.eof?:
if_equal_jmp al, 0, .return ; \0
.whitespace?:
if_equal_jmp al, 9, .next... |
programs/oeis/267/A267942.asm | karttu/loda | 0 | 207393 | <filename>programs/oeis/267/A267942.asm
; A267942: Interleave (n-1)^2 + 2 and (n+1)^2 + 2.
; 3,3,2,6,3,11,6,18,11,27,18,38,27,51,38,66,51,83,66,102,83,123,102,146,123,171,146,198,171,227,198,258,227,291,258,326,291,363,326,402,363,443,402,486,443,531,486,578,531,627,578,678,627,731,678,786,731
mov $1,$0
add $0,3
add $... |
oeis/077/A077932.asm | neoneye/loda-programs | 11 | 207394 | <reponame>neoneye/loda-programs
; A077932: Expansion of (1-x)^(-1)/(1+2*x+2*x^2-2*x^3).
; Submitted by <NAME>(s2)
; 1,-1,1,3,-9,15,-5,-37,115,-165,27,507,-1397,1835,139,-6741,16875,-19989,-7253,88235,-201941,212907,154539,-1138773,2394283,-2201941,-2662229,14516907,-28113237,21868203,41523883,-183010645,326709931,-2043... |
programs/oeis/175/A175776.asm | karttu/loda | 0 | 207395 | <reponame>karttu/loda
; A175776: Partial sums of floor(n^2/15).
; 0,0,0,0,1,2,4,7,11,16,22,30,39,50,63,78,95,114,135,159,185,214,246,281,319,360,405,453,505,561,621,685,753,825,902,983,1069,1160,1256,1357,1463,1575,1692,1815,1944,2079,2220,2367,2520,2680,2846,3019,3199,3386,3580,3781,3990,4206,4430,4662,4902,5150,5406,... |
Transynther/x86/_processed/AVXALIGN/_ht_/i7-7700_9_0xca.log_21829_69.asm | ljhsiun2/medusa | 9 | 207396 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r14
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x1287c, %r10
clflush (%r10)
nop
nop
add $20280, %r14
movb $0x61, (%r10)
nop
add %r12, %r12
lea addresses_A_ht+0x1ed8e, %rsi
lea addresses_D_ht+0xc4be, %rdi
nop... |
programs/oeis/302/A302393.asm | jmorken/loda | 1 | 207397 | ; A302393: Number of even parts in the partitions of 3n into 3 parts.
; 0,5,8,18,24,41,50,72,84,113,128,162,180,221,242,288,312,365,392,450,480,545,578,648,684,761,800,882,924,1013,1058,1152,1200,1301,1352,1458,1512,1625,1682,1800,1860,1985,2048,2178,2244,2381,2450,2592,2664,2813
mov $4,$0
mov $5,$0
lpb $4
mov $0,$5... |
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0xca.log_21829_993.asm | ljhsiun2/medusa | 9 | 207398 | <filename>Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0xca.log_21829_993.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r14
push %r15
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x1069, %rsi
lea addresses_UC_ht+0x49f0, %rdi
add $763, %r15
mov $18, %rcx
rep ... |
oeis/158/A158530.asm | neoneye/loda-programs | 11 | 207399 | <reponame>neoneye/loda-programs
; A158530: a(n) = Hermite(n,7).
; Submitted by <NAME>
; 1,14,194,2660,36076,483784,6412216,83965616,1085747600,13857016544,174454774816,2165226516544,26475166185664,318686890202240,3773262142004096,43902437062394624,501436254613401856,5615229578590998016,61564381443418309120,659753075378... |
oeis/041/A041026.asm | neoneye/loda-programs | 11 | 207400 | <filename>oeis/041/A041026.asm
; A041026: Numerators of continued fraction convergents to sqrt(18).
; Submitted by <NAME>
; 4,17,140,577,4756,19601,161564,665857,5488420,22619537,186444716,768398401,6333631924,26102926097,215157040700,886731088897,7309005751876,30122754096401,248291038523084,1023286908188737,8434586304... |
asm/por_super_slick_boots.asm | Iemnur/DSVEdit | 70 | 207401 | <filename>asm/por_super_slick_boots.asm
.nds
.relativeinclude on
.erroronwarning on
.open "ftc/overlay9_0", 021CDF60h
; Makes the player slide very far and fast when the Slick Boots are equipped.
.org 0x02204DD0 ; In the slide code for when the player has Slick Boots equipped. It multiplies the player's base slide s... |
programs/oeis/316/A316824.asm | neoneye/loda | 22 | 207402 | <reponame>neoneye/loda
; A316824: A second example of a word that is uniform morphic and recurrent, but neither pure morphic nor primitive morphic.
; 0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,... |
programs/oeis/166/A166525.asm | neoneye/loda | 22 | 207403 | ; A166525: a(n) = 10*n - a(n-1), with n>1, a(1)=1.
; 1,19,11,29,21,39,31,49,41,59,51,69,61,79,71,89,81,99,91,109,101,119,111,129,121,139,131,149,141,159,151,169,161,179,171,189,181,199,191,209,201,219,211,229,221,239,231,249,241,259,251,269,261,279,271,289,281,299,291,309,301,319,311,329,321,339,331,349,341,359,351,369... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_1900.asm | ljhsiun2/medusa | 9 | 207404 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_1900.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r15
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x1a38a, %rsi
lea addresses_A_ht+0x1a2fc, %rdi
nop
cmp $16339, %r15
mov $44, %rcx
rep movsw
nop
nop
no... |
gfx/pokemon/azurill/anim.asm | Ebernacher90/pokecrystal-allworld | 0 | 207405 | <reponame>Ebernacher90/pokecrystal-allworld
frame 0, 04
frame 1, 24
frame 2, 12
frame 3, 12
frame 2, 08
frame 3, 08
endanim |
src/Lib/Sassy/tests/all.asm | pnkfelix/larceny | 212 | 207407 | <gh_stars>100-1000
BITS 32
section .text
foo:
loop foo
loope foo, cx
loopz foo, ecx
loopne foo
loopnz foo, cx
jcxz foo
jecxz foo
call dword 0
call word 0
call dword 1000:1000
call word 1000:1000
call far dword [ecx]
call far word [ecx]
call ecx
call dword [ecx]
call cx
call word [ecx]
jmp dword 0
jmp near dword 0
jmp w... |
oeis/022/A022453.asm | neoneye/loda-programs | 11 | 207409 | <reponame>neoneye/loda-programs
; A022453: Expansion of 1/((1-x)*(1-5*x)*(1-7*x)*(1-9*x)).
; Submitted by <NAME>
; 1,22,320,3890,42861,444612,4433080,43016380,409466321,3843870602,35717758440,329381322270,3020187550381,27573503381992,250911867832400,2277497319225560,20632700169031041,186641825267602782,1686413862004270... |
EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/EfiCopyMemRep1.asm | James992927108/uEFI_Edk2_Practice | 8 | 207411 | ;/*++
;
;Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>
;This program and the accompanying materials
;are licensed and made available under the terms and conditions of the BSD License
;which accompanies this distribution. The full text of the license may be found at ... |
data/types/badge_type_boosts.asm | Dev727/ancientplatinum | 28 | 207412 | BadgeTypeBoosts:
; entries correspond to wJohtoBadges constants
db FLYING ; ZEPHYRBADGE
db BUG ; HIVEBADGE
db NORMAL ; PLAINBADGE
db GHOST ; FOGBADGE
db STEEL ; MINERALBADGE
db FIGHTING ; STORMBADGE
db ICE ; GLACIERBADGE
db DRAGON ; RISINGBADGE
; fallthrough
; entries correspond to wKanto... |
z80/float_z80.asm | artyom-beilis/float16 | 17 | 207413 | GLOBAL _f16_add
GLOBAL _f16_sub
GLOBAL _f16_mul
GLOBAL _f16_div
GLOBAL _f16_int
GLOBAL _f16_neg
GLOBAL _f16_from_int
GLOBAL _f16_add_hl_de
GLOBAL _f16_sub_hl_de
GLOBAL _f16_mul_hl_de
GLOBAL _f16_div_hl_de
GLOBAL _f16_int_hl
GLOBAL _f16_neg_hl
GLOBAL _f16_from_int_dehl
GLOBAL _f16_gt_hl_de
GLOBAL _f16_gte_hl_de
GLOBAL... |
src/main.asm | oldgitcodemonkey/HighScoreLib | 0 | 207415 | <reponame>oldgitcodemonkey/HighScoreLib
//
// test harness for high scrore rouines
//
BasicUpstart2(main)
*=$1000
// import constants and variable files
#import "../lib/vic.asm"
.macro pressFire(){
lda joystickPort2
and #$10
bne *-5
}
main:{
jsr setup.initHardware
// set a score in current score (this is ... |
hrm/36_alphabetizer.asm | glupmjoed/puzzles | 0 | 207416 | -- HUMAN RESOURCE MACHINE PROGRAM --
-- min([in1, in2 .. ~\0], [.. ~\0]) -> out
COPYFROM 23
COPYTO 12
a: -- load 1st word (w1)
INBOX
JUMPZ b
COPYTO [12]
BUMPUP 12
JUMP a
b:
COPYTO 11 -- i -> r11
JUMP d
c: -- w1[i] == w2[i], outbox ... |
day23/app/crack3.asm | ghosind/HariboteOS | 11 | 207417 | <filename>day23/app/crack3.asm
[BITS 32]
; io_out8(PIT_CTRL, 0x34);
MOV AL, 0x34
OUT 0x43, AL
; io_out8(PIT_CNT0, 0x40);
MOV AL, 0xff
OUT 0x40, AL
; io_out8(PIT_CNT0, 0x40);
MOV AL, 0xff
OUT 0x40, AL
MOV EDX, 4
INT 0x40
|
oeis/314/A314060.asm | neoneye/loda-programs | 11 | 207418 | <filename>oeis/314/A314060.asm
; A314060: Coordination sequence Gal.6.636.2 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,5,11,15,21,27,32,37,43,49,53,59,64,69,75,79,85,91,96,101,107,113,117,123,128,133,139,... |
decToHex.asm | kohnewlife/MIPS | 1 | 207420 | # Integers to hexadecimal numbers conversion
# Lab 5.1
# Data Memory Section
.data
number: .asciiz "Enter a number: "
.align 2
result: .space 40
# Program Memory section
.text
.globl main
main:
# Prompt the user to enter a number
li $v0, 4 #print string
la $a0, number #"Enter a number: "
syscall
# Ge... |
src/interrupts.asm | pwk4m1/TinyBIOS | 23 | 207421 | ; BSD 3-Clause License
;
; Copyright (c) 2020, k4m1 <<EMAIL>>
; All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; * Redistributions of source code must retain the above copyright notice,
; t... |
dd/qlnd/server.asm | olifink/smsqe | 0 | 207422 | * Network server V0.1 1985 <NAME> QJUMP
*
* FSERVE sets up file server
*
section nd
*
xdef fserve
*
xref ut_gtnm1 get name
xref ut_gxli1 get buffer size
xref ut_fjob find job (name in a1)
xref ut_fdev ... |
filt.asm | gek169/Simple_ISA | 12 | 207423 | <reponame>gek169/Simple_ISA
#!/usr/bin/sisa16_asm -run
..include"libc.hasm"
..main:
// lla %0xE000%; interrupt; //enable non-blocking IO.
lla %0xE001%; interrupt; //disable non-blocking IO.
:filt_looptop:
// lla %500%; alpush; proc_wait; alpop;
getchar;
sc %filt_printbytehex%
apush;lb 0; cmp; bpop; jmpifeq;... |
programs/oeis/200/A200058.asm | neoneye/loda | 22 | 207424 | ; A200058: Number of -n..n arrays x(0..3) of 4 elements with zero sum and elements alternately strictly increasing and strictly decreasing.
; 4,26,78,172,324,546,850,1252,1764,2398,3170,4092,5176,6438,7890,9544,11416,13518,15862,18464,21336,24490,27942,31704,35788,40210,44982,50116,55628,61530,67834,74556,81708,89302,9... |
programs/oeis/060/A060460.asm | neoneye/loda | 22 | 207425 | <reponame>neoneye/loda<gh_stars>10-100
; A060460: Consider the final n decimal digits of 2^j for all values of j. They are periodic. Sequence gives position (or phase) of the maximal value seen in these n digits.
; 3,12,53,254,1255,6256,31257,156258,781259,3906260,19531261,97656262,488281263,2441406264,12207031265,6103... |
oeis/298/A298754.asm | neoneye/loda-programs | 11 | 207426 | ; A298754: Numerator of sigma_3(n)/sigma_2(n).
; Submitted by <NAME>
; 1,9,14,73,63,126,172,117,757,567,666,146,1099,1548,882,151,2457,6813,3430,219,2408,5994,6084,1638,15751,9891,1022,12556,12195,7938,14896,12483,9324,22113,10836,55261,25327,6174,15386,567,34461,21672,39754,16206,6813,54756,51912,2114,39331,47253,3439... |
programs/oeis/049/A049084.asm | karttu/loda | 1 | 207428 | ; A049084: a(n) = pi(n) if n is prime, otherwise 0.
; 0,1,2,0,3,0,4,0,0,0,5,0,6,0,0,0,7,0,8,0,0,0,9,0,0,0,0,0,10,0,11,0,0,0,0,0,12,0,0,0,13,0,14,0,0,0,15,0,0,0,0,0,16,0,0,0,0,0,17,0,18,0,0,0,0,0,19,0,0,0,20,0,21,0,0,0,0,0,22,0,0,0,23,0,0,0,0,0,24,0,0,0,0,0,0,0,25,0,0,0,26,0,27,0,0,0,28,0,29,0,0,0,30,0,0,0,0,0,0,0,0,0,0... |
rustrat-prng-seed/src/asm/x86.asm | rustrat/rustrat | 16 | 207429 | <filename>rustrat-prng-seed/src/asm/x86.asm
.MODEL FLAT, C
.code
rdrand_fn PROC
; Using cdelc, callees have to preserve ebx
push ebx
push [esp-4]
; Used CPUID to check whether rdrand is supported
mov eax, 1
cpuid
bt ecx, 1Eh
jnc no_rdrand
pop edx
; Attempt to get a random number 48 times b... |
transformy/tables/gen/0031.asm | mborik/regression | 3 | 207431 | ld a, 14
ld (basescradr + #01ed), a
ld (basescradr + #090b), a
ld (basescradr + #092a), a
ld (basescradr + #0dec), a
ld a, 238
ld hl, basescradr + #05ed
ld (hl), a
inc hl
ld (hl), a
inc hl
ld (hl), a
ld hl, basescradr + #090c
ld (hl), a
inc hl
ld (hl), a
inc hl
ld (hl), a
inc hl
... |
oeis/270/A270445.asm | neoneye/loda-programs | 11 | 207432 | ; A270445: Expansion of 2*x*(1+4*x) / (1-12*x+16*x^2).
; 2,32,352,3712,38912,407552,4268032,44695552,468058112,4901568512,51329892352,537533612032,5629125066752,58948963008512,617321555034112,6464675252273152,67698958146732032,708952693724413952,7424248994345254912,77747744832552435712,814184954081105149952,85262555316... |
defines/megamini-defs.asm | dougmasten/coco_dev | 2 | 207433 | ; megamini-defs.asm
*pragmapush list ; Save state of list pragma
pragma nolist ; Turn off assembly listing and exclude from symbol list
ifndef MEGA_DEFS ; Load defines only once
ifndef MPI_DEFS
... |
oeis/016/A016301.asm | neoneye/loda-programs | 11 | 207434 | ; A016301: Expansion of 1/((1-2*x)*(1-5*x)*(1-11*x)).
; Submitted by <NAME>
; 1,18,237,2810,31941,356538,3947917,43557210,479780181,5280836858,58105480797,639241667610,7032065242021,77354752161978,850912446296877,9360087771874010,102961219803721461,1132574689406603898,12458327941301244157,137041639143457216410,15074581... |
programs/oeis/286/A286778.asm | neoneye/loda | 22 | 207435 | ; A286778: Sum of the common path length over all 2-tuples of nodes in a complete binary tree of height n.
; 0,2,22,142,734,3390,14718,61694,253438,1029118,4151294,16683006,66904062,267993086,1072791550,4292935678,17175543806,68710301694,274858508286,1099470733310,4397960527870,17592005689342,70368366690302,28147418818... |
programs/oeis/112/A112851.asm | neoneye/loda | 22 | 207436 | <filename>programs/oeis/112/A112851.asm
; A112851: a(n) = (n-1)*n*(n+1)*(n+2)*(2*n+1)/40.
; 0,0,3,21,81,231,546,1134,2142,3762,6237,9867,15015,22113,31668,44268,60588,81396,107559,140049,179949,228459,286902,356730,439530,537030,651105,783783,937251,1113861,1316136,1546776,1808664,2104872,2438667,2813517,3233097,370129... |
programs/oeis/000/A000537.asm | karttu/loda | 1 | 207437 | <gh_stars>1-10
; A000537: Sum of first n cubes; or n-th triangular number squared.
; 0,1,9,36,100,225,441,784,1296,2025,3025,4356,6084,8281,11025,14400,18496,23409,29241,36100,44100,53361,64009,76176,90000,105625,123201,142884,164836,189225,216225,246016,278784,314721,354025,396900,443556,494209,549081,608400,672400,74... |
0x05-libasm/8-strcasecmp.asm | alzheimeer/holbertonschool-system_linux | 1 | 207438 | <gh_stars>1-10
BITS 64
global asm_strcasecmp
section .text
asm_strcasecmp:
push rbp
mov rbp, rsp
push rcx
push r8
push r9
xor rcx, rcx
xor r8, r8
xor r9, r9
xor eax, eax
loop_strcasecmp:
mov r8b, [rdi + rcx]
mov r9b, [rsi + rcx]
cmp r8b, 65
jl check_9
cmp r8b, 90
jg check_9
add r8b, 32
check_9:
cm... |
ASM/src/item_overrides.asm | SenpaiGFM/OoT-Randomizer | 0 | 207439 | <reponame>SenpaiGFM/OoT-Randomizer
inventory_check:
andi a0, a0, 0xFF
li t0, SAVE_CONTEXT
beq a0, 0x8C, @@return ; Deku Nuts (5)
lbu v0, 0x75 (t0)
beq a0, 0x8D, @@return ; Deku Nuts (10)
lbu v0, 0x75 (t0)
beq a0, 0x00, @@return ; Deku Stick
lbu v0, 0x74... |
Week04_HackProgramming/swap.asm | abhishekmittal15/Nand2Tetris | 2 | 207440 | <filename>Week04_HackProgramming/swap.asm
// This program flips the value in R0 and R1 by storing the temporary value in R2
// @0
// D=M
// @2
// M=D
// @1
// D=M
// @0
// M=D
// @2
// D=M
// @1
// M=D
// In the above code instead of R2 we could have chosen any register and as long as we dont care about what regist... |
004-re-cmd-modify-end/hello.asm | gynvael/stream | 152 | 207442 | <filename>004-re-cmd-modify-end/hello.asm
[bits 64]
[org 0x140059100]
%define LastRetCode 0x1400309A0
%define IAT_swscanf 0x1400285D0
%define IAT_printf 0x140028790
sub rsp, 0x100
; Czy sa parametry?
mov rcx, [rcx+0x78]
test rcx, rcx
jz missing
; String --> Uint
lea rdx, [rel fmt]
mov r8, rsp
mov r... |
zombie.asm | Tookerton21/Xv6_OS | 0 | 207443 | <filename>zombie.asm
_zombie: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "stat.h"
#include "user.h"
int
main(void)
{
0: 8d 4c 24 04 lea 0x4(%esp),%ecx
4: 83 e4 f0 and $0xfffffff0,%esp
7: ff 71 fc pushl -0x4(%ecx)
a: 55 ... |
programs/oeis/190/A190332.asm | karttu/loda | 1 | 207444 | <reponame>karttu/loda
; A190332: n + [n*s/r] + [n*t/r]; r=1, s=sqrt(3), t=1/s.
; 2,6,9,12,15,19,23,25,29,32,36,38,42,46,48,52,55,59,61,65,69,72,75,78,82,86,88,92,95,98,101,105,109,111,115,118,122,124,128,132,135,138,141,145,147,151,155,158,161,164,168,172,174,178,181,184,187,191,195,197,201,204,208,210,214,218,221,224,... |
oeis/174/A174542.asm | neoneye/loda-programs | 11 | 207445 | ; A174542: Partial sums of odd Fibonacci numbers (A014437).
; 1,2,5,10,23,44,99,188,421,798,1785,3382,7563,14328,32039,60696,135721,257114,574925,1089154,2435423,4613732,10316619,19544084,43701901,82790070,185124225,350704366,784198803,1485607536,3321919439,6293134512,14071876561,26658145586,59609425685,112925716858,25... |
n05_g12_NguyenNangHung.asm | sudo-u-Hung-NN/MIPS | 0 | 207446 | <filename>n05_g12_NguyenNangHung.asm
#================================ Computer Architecture ============================
# @Author: <NAME>
# @StudentID: 20184118
# @Student: HEDSPI, SOICT, Hanoi University of Science and Technology
# @Contact: <EMAIL>
# @Program: Postfix Converter and calculator
# @Language: Assem... |
src/ayfx_drv.asm | remy/next-ayfx | 7 | 207447 | <reponame>remy/next-ayfx<gh_stars>1-10
; **************************************************************
; * ayfx driver
; **************************************************************
; Based on the border driver here:
; https://gitlab.com/thesmog358/tbblue/-/blob/master/src/asm/border/border_drv.asm
;
; Uses Shiru's ... |
libsrc/_DEVELOPMENT/alloc/malloc/c/sdcc_iy/free_fastcall.asm | meesokim/z88dk | 0 | 207449 |
; void free_fastcall(void *p)
INCLUDE "clib_cfg.asm"
SECTION code_alloc_malloc
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
IF __CLIB_OPT_MULTITHREAD & $01
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
PUBLIC _free_fastcall
_free_fastcall:
INCLUDE "alloc/malloc/z80/asm_free.asm"
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
ELSE
;;;;;;;;;;;;;;;;;;;... |
u7si/attenuateSounds.asm | JohnGlassmyer/UltimaHacks | 68 | 207450 | %include "include/u7si-all-includes.asm"
defineAddress seg_dseg, 0x532E, rolandVolumes
defineAddress seg_dseg, 0x53B5, adlibVolumes
startPatch EXE_LENGTH, attenuateSounds
%macro setVolume 3
%assign %%soundNumber %1
%assign %%rolandVolume %2
%assign %%adlibVolume %3
%assign %%off_rolandVolume off_rolandV... |
Src/Container/32/loadexecutable.asm | The-Cracker-Technology/hyperion | 0 | 207452 | <reponame>The-Cracker-Technology/hyperion<filename>Src/Container/32/loadexecutable.asm
;Loads the exe which is stored in input_image
;into memory and starts its execution
proc loadExecutable stdcall APITable:DWORD,\
input_image:DWORD
local str1[256]:BYTE, ret_val:DWORD, image_file_header:DWORD,\
loaded_file:DWORD
pu... |
libsrc/_DEVELOPMENT/arch/zx/nirvanam/c/sccz80/NIRVANAM_chars.asm | grancier/z180 | 0 | 207453 | ; ----------------------------------------------------------------
; Z88DK INTERFACE LIBRARY FOR THE NIRVANA ENGINE - by <NAME>
;
; See "nirvana-.h" for further details
; ----------------------------------------------------------------
; void NIRVANAM_chars(unsigned char *addr)
; fastcall
SECTION code_clib
SECTION co... |
oeis/020/A020795.asm | neoneye/loda-programs | 11 | 207454 | ; A020795: Decimal expansion of 1/sqrt(38).
; Submitted by <NAME>
; 1,6,2,2,2,1,4,2,1,1,3,0,7,6,2,5,3,8,1,6,4,4,7,8,7,4,6,8,8,0,3,7,4,8,4,8,0,3,2,5,1,6,4,2,1,6,6,9,5,9,4,0,6,6,9,7,0,3,8,3,4,7,5,5,9,1,0,1,0,5,1,7,1,1,2,2,0,1,6,8,9,8,1,4,9,1,3,9,4,2,0,8,4,1,8,1,5,7,7,5
mov $1,1
mov $2,1
mov $3,$0
add $3,8
mov $4,$0
add ... |
Test/Exec/Fib1.asm | CharlesCarley/ToyVM | 1 | 207455 | fib:
stp sp, 16
str x0, [sp, 0]
cmp x0, 2
blt retn
sub x2, x0, 2
str x2, [sp, 8]
sub x0, x0, 1
bl fib
ldr x2, [sp, 8]
str x3, [sp, 8]
mov x0, x2
bl fib
ldr x1, [sp, 8]
add x3, x1, x3
ldp sp, 16
ret
retn:
ldr x3, [sp, 0]
ldp sp, 1... |
libsrc/_DEVELOPMENT/arch/sms/misc/c/sdcc_iy/sms_cls_wc_callee.asm | jpoikela/z88dk | 640 | 207456 | ; void sms_cls_wc(struct r_Rect8 *r, unsigned int background)
SECTION code_clib
SECTION code_arch
PUBLIC _sms_cls_wc_callee
EXTERN asm_sms_cls_wc
_sms_cls_wc_callee:
pop hl
pop ix
ex (sp),hl
jp asm_sms_cls_wc
|
problemas de examenes/Maquina_Expendedora.asm | ubidragon/AVR-US | 0 | 207457 | /**
SEÑALES DE ENTRADA
PUERTO B
M: SE ACTIVA CUANDO EL USUARIO METE UNA MONEDA -->BIT2
S1 Y S0: FORMAN EL SENSOR DE MONEDAS --> BIT1 Y BIT0
SEÑALES DE SALIDA
PUERTO C
P: DEVUELVE EL PRODUCTO --> BIT0
C50: DEVUELVE CAMBIO DE 50 --> BIT1
C1: DA COMO CAMBIO UN EURO --> BIT2
TODO: DEVUELVE TODAS LAS MONEDAS INTRODUCIDAS... |
programs/oeis/273/A273850.asm | neoneye/loda | 22 | 207458 | <reponame>neoneye/loda
; A273850: First differences of number of active (ON,black) cells in n-th stage of growth of two-dimensional cellular automaton defined by "Rule 969", based on the 5-celled von Neumann neighborhood.
; 3,17,24,31,45,48,56,64,72,80,88,96,104,112,120,128,136,144,152,160,168,176,184,192,200,208,216,2... |
x86-64/read.asm | ShineyDev/assembly | 1 | 207459 | <reponame>ShineyDev/assembly
; ---------------------------------------------------------------------
; /x86-64/read.asm
;
; An x86-64 assembly for reading from streams.
; ---------------------------------------------------------------------
global read
section .text
; Reads a line of input from STDIN.
;
; Para... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1535.asm | ljhsiun2/medusa | 9 | 207461 | <filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1535.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r15
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0xa312, %rsi
lea addresses_WC_ht+0x15f1f, %rdi
nop
nop
nop
nop
add %rdx, %rdx
mov $97, %rcx
rep m... |
libsrc/_DEVELOPMENT/math/float/math48/c/sdcc_ix/cm48_sdccix_fdim_callee.asm | jpoikela/z88dk | 640 | 207462 | <reponame>jpoikela/z88dk
; float fdim(float x, float y) __z88dk_callee
SECTION code_clib
SECTION code_fp_math48
PUBLIC cm48_sdccix_fdim_callee, l0_cm48_sdccix_fdim_callee
EXTERN am48_fdim, cm48_sdccixp_dcallee2, cm48_sdccixp_m482d
cm48_sdccix_fdim_callee:
call cm48_sdccixp_dcallee2
; AC'= y
; AC = x
... |
syntax_test_z80asm.asm | Triceraprog/z80asm.sublime-package | 1 | 207464 | <reponame>Triceraprog/z80asm.sublime-package<filename>syntax_test_z80asm.asm
; SYNTAX TEST "Packages/z80asm/z80asm.sublime-syntax"
; This is a comment
; <- comment
romstart: jp start ; $0000 c3 00 10 ; called from: $22bd
; <- entity.name.label
; ^ keyword.control
; ... |
Driver/Video/VGAlike/Cyber16/cyber16EscTab.asm | steakknife/pcgeos | 504 | 207465 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GlobalPC 1999. All rights reserved.
GLOBALPC CONFIDENTIAL
PROJECT: GlobalPC
MODULE: Cyber16 Video Driver
FILE: cyber16EscTab.asm
AUTHOR: <NAME>, Mar 25, 1999
ROUTINES:
Name Description
---- --------... |
arch/z80/src/ez80/ez80f92_handlers.asm | eenurkka/incubator-nuttx | 1,006 | 207466 | ;**************************************************************************
; arch/z80/src/ez80/ez80f92_handlers.asm
;
; Licensed to the Apache Software Foundation (ASF) under one or more
; contributor license agreements. See the NOTICE file distributed with
; this work for additional information regarding copyright o... |
PRG/maps/World4S.asm | narfman0/smb3_pp1 | 0 | 207467 | <gh_stars>0
W4_InitIndex: .byte $00, (W4_ByRowType_S2 - W4_ByRowType), (W4_ByRowType_S3 - W4_ByRowType), (W4_ByRowType_S4 - W4_ByRowType)
W4_ByRowType: .byte $4B, $4E, $47, $41, $4B, $6B, $62, $6B, $6B, $62, $8E, $8F, $8B, $8B
W4_ByRowType_S2: .byte $4B, $4E, $42, $4B, $4B, $4B, $4B, $6B, $6B, $6B, $6F, $67, $6B, $8B, ... |
P6/data_P6/testpoint/testpoint38.asm | alxzzhou/BUAA_CO_2020 | 1 | 207468 | ori $1, $0, 2
ori $2, $0, 12
ori $3, $0, 15
ori $4, $0, 12
sw $1, 0($0)
sw $1, 4($0)
sw $1, 8($0)
sw $3, 12($0)
sw $3, 16($0)
sw $4, 20($0)
sw $4, 24($0)
sw $3, 28($0)
sw $1, 32($0)
sw $3, 36($0)
sw $3, 40($0)
sw $4, 44($0)
sw $2, 48($0)
sw $3, 52($0)
sw $1, 56($0)
sw $3, 60($0)
sw $3, 64($0)
sw $1... |
programs/oeis/187/A187107.asm | karttu/loda | 0 | 207469 | <filename>programs/oeis/187/A187107.asm
; A187107: Number of nontrivial compositions of differential operations and directional derivative of the n-th order on the space R^9.
; 8,8,9,10,12,15,20,28,41,62,96,151,240,384,617,994,1604,2591,4188,6772,10953,17718,28664,46375,75032,121400,196425,317818,514236,832047,1346276,... |
oeis/156/A156581.asm | neoneye/loda-programs | 11 | 207470 | <filename>oeis/156/A156581.asm
; A156581: Triangle T(n, k, m) = (m+2)^(k*(n-k)) with m = 15, read by rows.
; Submitted by <NAME>
; 1,1,1,1,17,1,1,289,289,1,1,4913,83521,4913,1,1,83521,24137569,24137569,83521,1,1,1419857,6975757441,118587876497,6975757441,1419857,1,1,24137569,2015993900449,582622237229761,58262223722976... |
programs/oeis/165/A165669.asm | neoneye/loda | 22 | 207471 | <reponame>neoneye/loda<gh_stars>10-100
; A165669: First digit of the decimal expansion of (n^2+2)/7 after the decimal point.
; 2,4,8,5,5,8,4,2,4,8,5,5,8,4,2,4,8,5,5,8,4,2,4,8,5,5,8,4,2,4,8,5,5,8,4,2,4,8,5,5,8,4,2,4,8,5,5,8,4,2,4,8,5,5,8,4,2,4,8,5,5,8,4,2,4,8,5,5,8,4,2,4,8,5,5,8,4,2,4,8,5,5,8,4,2,4,8,5,5,8,4,2,4,8,5,5,8... |
progref/yellow.asm | FolkertVanVerseveld/c64 | 1 | 207473 | #import "cbm64mem.inc"
.pc = $0801 "Basic Upstart Program"
:BasicUpstart($0810)
.pc = $0810 "Main Program"
init:
lda #$01
sta screen
lda #$07
sta colram
loop:
inc $d021
jmp loop
|
oeis/052/A052577.asm | neoneye/loda-programs | 11 | 207475 | ; A052577: a(n) = (3^(n+1)-1)*n!/2.
; Submitted by <NAME>(s2)
; 1,4,26,240,2904,43680,786960,16531200,396789120,10713669120,321413702400,10606692096000,381841394457600,14891820610867200,625456552834713600,28145546185236480000,1350986237814140928000,68900298484208615424000,3720616124549638938624000
mov $1,$0
mov $0,4
m... |
oeis/173/A173228.asm | neoneye/loda-programs | 11 | 207476 | <gh_stars>10-100
; A173228: The number of trailing zeros in (10^n)!
; Submitted by <NAME>
; 2,24,249,2499,24999,249998,2499999,24999999,249999998,2499999997,24999999997,249999999997,2499999999997,24999999999998,249999999999997,2499999999999996,24999999999999995,249999999999999995,2499999999999999995,2499999999999999999... |
Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xca.log_21829_1228.asm | ljhsiun2/medusa | 9 | 207477 | <reponame>ljhsiun2/medusa<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x1449e, %rsi
lea addresses_UC_ht+0x669e, %rdi
add $4873, %r12
mov $64, %rcx
rep movsw
nop
nop
nop
nop
xor %rbx, %rbx
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %r12
re... |
third_party/virtualbox/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/PciHostBridgeDxe/X64/IoFifo.asm | Fimbure/icebox-1 | 521 | 207480 | ;------------------------------------------------------------------------------
;
; Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>
; This program and the accompanying materials
; are licensed and made available under the terms and conditions of the BSD License
; which accompanies this distributi... |
assembly/lab1/src/2-4.asm | sabertazimi/hust-lab | 29 | 207481 | <gh_stars>10-100
.386
STACK SEGMENT USE16 STACK
DB 200 DUP(0)
STACK ENDS
DATA SEGMENT USE16
BUF1 DB 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
BUF2 DB 10 DUP(0)
BUF3 DB 10 DUP(0)
BUF4 DB 10 DUP(0)
DATA ENDS
CODE SEGMENT USE16
ASSUME ... |
Transynther/x86/_processed/NC/_st_zr_un_4k_/i7-7700_9_0x48.log_21829_1098.asm | ljhsiun2/medusa | 9 | 207482 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NC/_st_zr_un_4k_/i7-7700_9_0x48.log_21829_1098.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r15
push %r8
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x9b6d, %r11
cmp %r8, %r8
mov $0x616263... |
Chapter03/logical-operations/xor.nasm | firebitsbr/Penetration-Testing-with-Shellcode | 30 | 207485 | <reponame>firebitsbr/Penetration-Testing-with-Shellcode
global _start
section .text
_start:
mov rax,0x10111011
mov rbx,0x11010110
xor rax,rbx
mov rax, 60
mov rdi, 10
syscall
section .data
|
asm/branch.asm | dspmathguru/lipsi | 62 | 207486 | <reponame>dspmathguru/lipsi
#
# branch test program
#
ldi 0x73
br dest
ldi 0x34
dest:
subi 0x73
st r1
brz dozbr
ldi 0x11
dozbr:
add r1
st r1
ldi 0x23
brz dontzbr
subi 0x23
dontzbr:
add r1
st r1
ldi 0x55
brnz donzbr
addi 0x11
donzbr:
subi 0x55
add r1
st r1
brnz dontnzbr
ldi 0x88
dontnzbr:
subi 0x88
add r1
exit
|
non_regression/p2align_x86_macosx.o.asm | LRGH/plasmasm | 1 | 207487 | .macosx_version_min 10, 11
.section __TEXT,__text,regular,pure_instructions
.align 4, 0x90
.globl _toto
_toto:
pushl %ebp
movl %esp, %ebp
movl 8(%ebp), %eax
incl (%eax)
popl %ebp
ret
# ----------------------
.align 4, 0x90
.globl _tata
_tata:
pushl %ebp
movl %... |
programs/oeis/094/A094968.asm | neoneye/loda | 22 | 207488 | ; A094968: Indices of Fibonacci numbers in Stern's diatomic series A049456 regarded as a single linear sequence.
; 1,4,7,14,25,48,91,178,349,692,1375,2742,5473,10936,21859,43706,87397,174780,349543,699070,1398121,2796224,5592427,11184834,22369645,44739268,89478511,178956998,357913969,715827912,1431655795,2863311562,572... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.