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 |
|---|---|---|---|---|
Temp,Humid,Date,Time.asm | Pitiastsegu/TempHumidity | 0 | 204810 |
_Interrupt:
MOVWF R15+0
SWAPF STATUS+0, 0
CLRF STATUS+0
MOVWF ___saveSTATUS+0
MOVF PCLATH+0, 0
MOVWF ___savePCLATH+0
CLRF PCLATH+0
;Temp,Humid,Date,Time.c,25 :: void Interrupt(){
;Temp,Humid,Date,Time.c,26 :: if (TMR1IF_bit){
BTFSS TMR1IF_bit+0, BitPo... |
MicroProcessor Lab Programs/10a.asm | MyCollegeForums/4thSemISE | 0 | 204811 | <filename>MicroProcessor Lab Programs/10a.asm
assume cs:code, ds:data
data segment
fname2 db "Shashi.txt",0
msg1 db "File created successfully $"
fname1 db "ash.txt"
msg2 db "File deleted successfully $"
data ends
code segment
start:
mov ax,data
mov ds,ax
mov ah,3ch ;ope... |
programs/oeis/300/A300518.asm | neoneye/loda | 22 | 204812 | <reponame>neoneye/loda
; A300518: The greatest prime factor of the squarefree part of n, or 1 if n is square.
; 1,2,3,1,5,3,7,2,1,5,11,3,13,7,5,1,17,2,19,5,7,11,23,3,1,13,3,7,29,5,31,2,11,17,7,1,37,19,13,5,41,7,43,11,5,23,47,3,1,2,17,13,53,3,11,7,19,29,59,5,61,31,7,1,13,11,67,17,23,7,71,2,73,37,3,19,11,13,79,5,1,41,83,... |
oeis/295/A295736.asm | neoneye/loda-programs | 11 | 204813 | <reponame>neoneye/loda-programs
; A295736: a(n) = a(n-1) + 3*a(n-2) -2*a(n-3) - 2*a(n-4), where a(0) = 1, a(1) = -2, a(2) = -2, a(3) = 1.
; Submitted by <NAME>
; 1,-2,-2,1,-3,8,1,29,22,91,97,268,333,761,1030,2111,3013,5764,8521,15565,23574,41699,64249,111068,173269,294577,463750,778807,1234365,2054132,3272113,5408165,8... |
oeis/225/A225609.asm | neoneye/loda-programs | 11 | 204814 | <reponame>neoneye/loda-programs
; A225609: Recurrence a(n) = 2^n*a(n-1) + a(n-2) with a(0)=0, a(1)=1.
; Submitted by <NAME>
; 0,1,4,33,532,17057,1092180,139816097,35794013012,18326674478241,18766550459731796,38433913668205196449,157425329151518944386900,1289628334843156860622681249,21129270795495611155960953970516,6923... |
programs/oeis/076/A076565.asm | neoneye/loda | 22 | 204815 | ; A076565: Greatest prime divisor of 2n+1 (sum of two successive integers).
; 3,5,7,3,11,13,5,17,19,7,23,5,3,29,31,11,7,37,13,41,43,5,47,7,17,53,11,19,59,61,7,13,67,23,71,73,5,11,79,3,83,17,29,89,13,31,19,97,11,101,103,7,107,109,37,113,23,13,17,11,41,5,127,43,131,19,5,137,139,47,13,29,7,149,151,17,31,157,53,23,163,11,1... |
Appl/BigCalc/bigcalcBuildVariableArgsPCF.asm | steakknife/pcgeos | 504 | 204817 | <reponame>steakknife/pcgeos
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: bigcalcBuildVariableArgsPCF.asm
AUTHOR: <NAME>, May 5, 1992
ROUTINES:
Name Description
---- -----------... |
programs/oeis/084/A084509.asm | karttu/loda | 0 | 204818 | <filename>programs/oeis/084/A084509.asm
; A084509: Number of ground-state 3-ball juggling sequences of period n.
; 1,1,2,6,24,96,384,1536,6144,24576,98304,393216,1572864,6291456,25165824,100663296,402653184,1610612736,6442450944,25769803776,103079215104,412316860416,1649267441664,6597069766656,26388279066624,1055531162... |
danagy/fmod.asm | DW0RKiN/Floating-point-Library-for-Z80 | 12 | 204819 | <filename>danagy/fmod.asm
if not defined @FMOD
; Remainder after division
; In: BC dividend, HL modulus
; Out: HL = BC % HL = BC - int(BC/HL) * HL = frac(BC/HL) * HL => does not return correct results with larger exponent difference
; Pollutes: AF, BC, DE
@FMOD:
if not defined FMOD
; *******************************... |
libsrc/_DEVELOPMENT/arch/ts2068/display/z80/asm_tshc_saddr2cx.asm | jpoikela/z88dk | 640 | 204820 | <reponame>jpoikela/z88dk
; ===============================================================
; May 2017
; ===============================================================
;
; uchar tshc_saddr2cx(void *saddr)
;
; Character x coordinate corresponding to screen address.
;
; ===================================================... |
25_OR_ARRAY.asm | aleattene/lc2-exams | 0 | 204821 | ; ************ DESCRIZIONE SOTTOPROGRAMMA ************
Il seguente sottoprogramma denominato OR_ARRAY riceve:
- nel registro R0 l’indirizzo della prima cella di una zona di memoria contenente una sequenza
di stringhe di 16 bit ciascuna; la stringa costituita da tutti zeri è il terminatore
della sequenza e non vien... |
oeis/256/A256308.asm | neoneye/loda-programs | 11 | 204822 | <filename>oeis/256/A256308.asm
; A256308: Apply the transformation 0 -> 1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 0 to the digits of n written in base 8; do not convert back to base 10.
; Submitted by <NAME>(s4)
; 1,2,3,4,5,6,7,0,21,22,23,24,25,26,27,20,31,32,33,34,35,36,37,30,41,42,43,44,45,46,47,40,51,52,53,54,55,56,57,50,6... |
oeis/318/A318010.asm | neoneye/loda-programs | 11 | 204823 | <reponame>neoneye/loda-programs
; A318010: Number of nX2 0..1 arrays with every element unequal to 0, 1, 2 or 3 horizontally, vertically or antidiagonally adjacent elements, with upper left element zero.
; Submitted by <NAME>
; 2,8,28,97,338,1178,4105,14305,49850,173717,605368,2109583,7351463,25618337,89274637,31110375... |
gnu/gcc/gcc/config/xtensa/crtn.asm | ArrogantWombatics/openbsd-src | 105 | 204825 | <gh_stars>100-1000
# End of .init and .fini sections.
# Copyright (C) 2003 Free Software Foundation, Inc.
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# ... |
1541.asm | donnchawp/DolphinDOS2 | 10 | 204827 | <reponame>donnchawp/DolphinDOS2
ffff ff ???
0000 ff ???
0001 ff ???
0002 ff ???
0003 ff ???
0004 ff ???
0005 ff ???
0006 ff ???
0007 ff ???
0008 ff ???
0009 ff ???
000a ff ???
000b ff ???
000c ff ???
000d ff ???
000e ff ???
... |
programs/oeis/074/A074323.asm | neoneye/loda | 22 | 204828 | <reponame>neoneye/loda
; A074323: Coefficient of the highest power of q in the expansion of nu(0)=1, nu(1)=b and for n>=2, nu(n)=b*nu(n-1)+lambda*(n-1)_q*nu(n-2) with (b,lambda)=(1,2), where (n)_q=(1+q+...+q^(n-1)) and q is a root of unity.
; 1,1,3,2,6,4,12,8,24,16,48,32,96,64,192,128,384,256,768,512,1536,1024,3072,204... |
code/third.asm | CornPrincess/Assembly | 0 | 204830 | assume cs:code
code segment
mov ax,0ffffh
mov ds,ax
mov bx,6
mov al,[bx]
mov ah,0
mov dx,0
mov cx,3
s:add dx,ax;
loop s
mov ax,4c00h
int 21h
code ends
end |
libsrc/_DEVELOPMENT/stdlib/c/sdcc_iy/_lldivu__callee.asm | jpoikela/z88dk | 640 | 204831 |
; void _lldivu_(lldivu_t *ld, uint64_t numer, uint64_t denom)
SECTION code_clib
SECTION code_stdlib
PUBLIC __lldivu__callee
EXTERN asm__lldivu
__lldivu__callee:
ld ix,4
add ix,sp
call asm__lldivu
pop de
ld hl,18
add hl,sp
ld sp,hl
ex de,hl
jp (hl)
|
dv3/hd/check.asm | olifink/smsqe | 0 | 204832 | ; DV3 General Check Hard Disk for Open V3.00 1992 <NAME>
section dv3
xdef hd_check
xref hd_fpart
xref dv3_fcheck
xref dv3_slen
include 'dev8_keys_err'
include 'dev8_dv3_keys'
include 'dev8_dv3_hd_keys'
include 'dev8_mac_assert'
;+++
; DV3 Atari check hard disk for open
;
; d1-d6 scratch
; d7 c p... |
programs/oeis/255/A255043.asm | neoneye/loda | 22 | 204833 | <reponame>neoneye/loda
; A255043: a(n) = (5*9^n - 1)/2.
; 2,22,202,1822,16402,147622,1328602,11957422,107616802,968551222,8716961002,78452649022,706073841202,6354664570822,57191981137402,514727830236622,4632550472129602,41692954249166422,375236588242497802,3377129294182480222,30394163647642322002,273547472828780898022,... |
libsrc/_DEVELOPMENT/target/hbios/driver/terminal/rc_01_output_hbios0/rc_01_output_hbios0_oterm_msg_bell.asm | Frodevan/z88dk | 640 | 204834 | INCLUDE "config_private.inc"
SECTION code_driver
SECTION code_driver_terminal_output
PUBLIC rc_01_output_hbios0_oterm_msg_bell
PUBLIC rc_01_output_hbios0_oterm_msg_bell_0
EXTERN rc_01_output_hbios0_oterm_msg_putc_send
rc_01_output_hbios0_oterm_msg_bell:
; can use: af, bc, de, hl
bit 0,(ix+7)
ret z ... |
data/pokemon/base_stats/pidgeot.asm | Karkino/KarkCrystal16 | 0 | 204835 | <filename>data/pokemon/base_stats/pidgeot.asm
db 0 ; species ID placeholder
db 83, 95, 80, 101, 65, 65
; hp atk def spd sat sdf
db FLYING, FLYING ; type
db 45 ; catch rate
db 172 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_F50 ; gender ratio
db 100 ; unknown 1
db 15 ; step cycles to hatch
... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_320.asm | ljhsiun2/medusa | 9 | 204836 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_320.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r14
push %r8
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0xc731, %r14
nop
nop
nop
sub $13998, %r8
and $0xffffffffffffffc0, %r14
vmovaps (... |
x86/CodeConventions.asm | lantonov/asm | 150 | 204837 | The assembler works line by line, looking for the first token on the line
and handling the remaining tokens accordingly. The usual control flow constructs
like 'if' and 'then' along with macro definitions are left justified
and indented according to their nesting depth. When a line is responsible for
outputting data, ... |
Lenguajes de interfaz/prac01.asm | Abel-RM/materias-tec | 0 | 204838 | title prac01
.model small
.486
.stack
.data
mensaje db "hola mundo$",0dh,0ah
.code
main proc far
.startup
mov bx,0001h
lea dx, mensaje
mov ah, 09h
int 21h
.exit
main endp
end
|
Wizardry/ExternalHacks/StrMagSplit/GrowthGetters/Get_Mag_Growth.asm | sme23/WhatHeck | 1 | 204840 | .thumb
.org 0x0
.set MagCharTable, Extra_Growth_Boosts+4
.set MagClassTable, MagCharTable+4
.set ClassGrowthOption, MagClassTable+4
@r0=battle struct or char data ptr
ldr r1,[r0]
ldrb r1,[r1,#4] @unit ID growth
ldr r2, MagCharTable
lsl r1, #1 @index in mag char table
add r1, #1 @growth
ldrb r1, [r2, r1]
ldr r2,... |
programs/oeis/035/A035600.asm | karttu/loda | 1 | 204842 | ; A035600: Number of points of L1 norm 6 in cubic lattice Z^n.
; 0,2,24,146,608,1970,5336,12642,27008,53154,97880,170610,284000,454610,703640,1057730,1549824,2220098,3116952,4298066,5831520,7796978,10286936,13408034,17282432,22049250,27866072,34910514,43381856,53502738,65520920,79711106,96376832,115852418,138504984,164... |
oeis/142/A142391.asm | neoneye/loda-programs | 11 | 204843 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A142391: Primes congruent to 40 mod 47.
; Submitted by <NAME>
; 181,463,557,839,1873,2437,2531,2719,3001,3659,3847,4129,4787,5351,5821,6197,6761,6949,7043,7607,8171,8641,8923,9769,10333,10427,10709,11273,11743,12119,12401,12589,13999,14281,14563,14657,14939,15973,16067,... |
oeis/101/A101600.asm | neoneye/loda-programs | 11 | 204844 | ; A101600: G.f.: c(3x)^2, c(x) the g.f. of A000108.
; Submitted by <NAME>
; 1,6,45,378,3402,32076,312741,3127410,31899582,330595668,3471254514,36848701764,394807518900,4263921204120,46370143094805,507343918566690,5580783104233590,61682339573108100,684673969261499910
mov $1,$0
add $0,1
seq $0,108 ; Catalan numbers: C(n... |
libsrc/_DEVELOPMENT/sound/bit/c/sdcc_ix/bit_beep_di_callee.asm | meesokim/z88dk | 0 | 204845 |
; void bit_beep_di_callee(uint16_t duration_ms, uint16_t frequency_hz)
SECTION code_sound_bit
PUBLIC _bit_beep_di_callee, l0_bit_beep_di_callee
EXTERN asm_bit_beep_di
_bit_beep_di_callee:
pop af
pop hl
pop de
push af
l0_bit_beep_di_callee:
push ix
call asm_bit_beep_di
pop ix
ret
|
Practice/Assignments assembly class/30.asm | WardunIslam/CSE331L_Section_7_Summer_2020_NSU | 0 | 204846 |
; You may customize this and other start-up templates;
; The location of this template is c:\emu8086\inc\0_com_template.txt
org 100h
L1: NOP
L2: MOV AL, 01H
MOV AH, 00H
ADD AL, AH
MOV BL, 00H
MOV BH, 00H
MOV CL, 08H
L3: RCL AL, 1
JC L5
L4: INC BH
DEC CL
JNZ L3
JMP L6
L5: INC... |
MOS/mos.asm | chipsi007/ESP8266-6502duino | 1 | 204847 | <filename>MOS/mos.asm
.org $FC00
language = $8000
title = $8009
stack = $100
serbuf = $300 ; Serial input buffer $300-$3FF
scratchbuf = $280 ; $280-$2FF
osfileblock = $D1 ; $D1-$DD
oscliscratch1 = $DE ; $DE-$DF
oscliscratch2 = $E0 ; $E0-$E1
oscliaddr = $E2 ; $E2-$E3
timer = $E4 ; $E4-$E8
rdchscratch = $E9 ; 1 ... |
_inc/Special stage layout pointers.asm | NatsumiFox/AMPS-Sonic-1-2005 | 2 | 204848 | ; ---------------------------------------------------------------------------
; Special stage layout pointers
; ---------------------------------------------------------------------------
dc.l SS_1
dc.l SS_2
dc.l SS_3
dc.l SS_4
dc.l SS_5
dc.l SS_6
even |
src/kernel/string.asm | thomtl/Alpha-OS | 1 | 204849 | [bits 16]
; RET 0 if false 1 if true
; SI str1
; DI str2
strcmp:
pusha
.loop:
mov ax, [si]
cmp [di], ax
jne .stop
cmp byte [di], 0
je .stop
cmp byte [si], 0
je .stop
add di, 1
add si, 1
jmp .loop
.stop:
popa
mov ax,... |
test/asm/multiple-charmaps.asm | michealccc/rgbds | 522 | 204851 | new_: MACRO
IF _NARG > 1
println "newcharmap \1, \2"
newcharmap \1, \2
ELSE
println "newcharmap \1"
newcharmap \1
ENDC
ENDM
set_: MACRO
println "setcharmap \1"
setcharmap \1
ENDM
push_: MACRO
println "pushc"
pushc
ENDM
pop_: MACRO
println "popc"
popc
ENDM
print_mapped: MACRO
x = \1
println "{x}"
ENDM
... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1122.asm | ljhsiun2/medusa | 9 | 204852 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x137c6, %rcx
nop
nop
nop
nop
xor %r9, %r9
mov (%rcx), %r10
add $64943, %r12
lea addresses_D_ht+0x7aba, %rdx
nop
and %rax, %rax
movw $0x6162, (%rdx)
nop
nop
nop
cmp %... |
src/xyswinger.asm | onslaught-demogroup/ons_paddo_music_disk | 0 | 204853 | .var xys_height = 16
.var xys_width = 40
.var xys_top = 0
.var xys_bot = xys_top + xys_height
.var xys_logo_height = 25 * 2
.var xys_logo_width = 40 * 3
.var xys_logo_base = $4500
xys:
ldx xys_index
lda xys_lo_page_ptr: xys_x_lo,x
sta xys_x_scroll_reg
lda xys_y_lo,x
sta xys_y_scroll_reg
lda xys... |
programs/oeis/029/A029076.asm | neoneye/loda | 22 | 204854 | <filename>programs/oeis/029/A029076.asm
; A029076: Expansion of 1/((1-x)(1-x^4)(1-x^7)(1-x^11)).
; 1,1,1,1,2,2,2,3,4,4,4,6,7,7,8,10,11,11,13,15,16,17,20,22,23,25,28,30,32,35,38,40,43,47,50,53,57,61,64,68,73,77,81,86,92,96,101,107,113,118,124,131,137,143,150,158
lpb $0
mov $2,$0
sub $0,4
seq $2,25787 ; Expansion ... |
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca_notsx.log_21829_2005.asm | ljhsiun2/medusa | 9 | 204855 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r14
push %r15
push %r8
push %r9
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x3ff8, %r10
nop
nop
inc %rax
mov (%r10), %esi
nop
nop
and %rax, %rax
lea addresses_A_ht+0x19624, %r8
clflush (%r8)
nop
nop
nop
add %r9, %r9
movw $0x6162... |
programs/oeis/247/A247431.asm | karttu/loda | 0 | 204856 | <gh_stars>0
; A247431: The largest integer m such that A001950(m) < A003231(n).
; 1,2,3,5,6,8,9,10,12,13,14,16,17,19,20,21,23,24,25,27,28,30,31,32,34,35,37,38,39,41,42,43,45,46,48,49,50,52,53,55,56,57,59,60,61,63,64,66,67,68,70,71,72,74,75,77,78,79,81,82,84,85,86,88,89,90,92
mov $2,$0
add $2,1
mov $9,$0
lpb $2,1
mov... |
examples/yasm/example.asm | perweij/tundra | 262 | 204857 | <reponame>perweij/tundra
BITS 32
GLOBAL _foo
EXTERN _puts
SECTION .rodata
fmt: db "Hello world from asm", 0
SECTION .text
_foo:
sub esp, 8
push fmt
call _puts
add esp, 12
ret
|
programs/oeis/047/A047389.asm | karttu/loda | 1 | 204858 | <filename>programs/oeis/047/A047389.asm
; A047389: Numbers that are congruent to {3, 5} mod 7.
; 3,5,10,12,17,19,24,26,31,33,38,40,45,47,52,54,59,61,66,68,73,75,80,82,87,89,94,96,101,103,108,110,115,117,122,124,129,131,136,138,143,145,150,152,157,159,164,166,171
mov $1,$0
mul $1,3
div $1,2
mul $1,14
div $1,6
add $1,3
|
programs/oeis/047/A047926.asm | neoneye/loda | 22 | 204859 | <filename>programs/oeis/047/A047926.asm
; A047926: a(n) = (3^(n+1) + 2*n + 1)/4.
; 1,3,8,22,63,185,550,1644,4925,14767,44292,132866,398587,1195749,3587234,10761688,32285049,96855131,290565376,871696110,2615088311,7845264913,23535794718,70607384132,211822152373,635466457095,1906399371260,5719198113754,17157594341235,514... |
LM/Aula4/Atividades/ex5_v2.asm | Kw-Vinicius/Linguagem-de-Montagem- | 0 | 204860 | <filename>LM/Aula4/Atividades/ex5_v2.asm
; ---------------------------------------------------------------------------------------------
; <NAME>
;5. Considere dois vetores de números inteiros P=[2,3,5] e N=[8,6,7], em que N representa
;notas de 3 avaliações e P seus respectivos pesos. ... |
libsrc/_DEVELOPMENT/arch/ts2068/misc/c/sdcc_iy/tshc_visit_wc_attr.asm | jpoikela/z88dk | 640 | 204861 | <filename>libsrc/_DEVELOPMENT/arch/ts2068/misc/c/sdcc_iy/tshc_visit_wc_attr.asm
; void tshc_visit_wc_attr(struct r_Rect8 *r, void *function)
SECTION code_clib
SECTION code_arch
PUBLIC _tshc_visit_wc_attr
EXTERN asm_tshc_visit_wc_attr
_tshc_visit_wc_attr:
pop af
pop ix
pop de
push de
push de
p... |
programs/oeis/162/A162813.asm | jmorken/loda | 1 | 204862 | <reponame>jmorken/loda
; A162813: a(n) = 3*a(n-2) for n > 2; a(1) = 5, a(2) = 3.
; 5,3,15,9,45,27,135,81,405,243,1215,729,3645,2187,10935,6561,32805,19683,98415,59049,295245,177147,885735,531441,2657205,1594323,7971615,4782969,23914845,14348907,71744535,43046721,215233605,129140163
mul $0,4
add $0,3
mov $2,2
mov $4,4
... |
programs/oeis/296/A296954.asm | neoneye/loda | 22 | 204863 | ; A296954: Expansion of x*(1 - x + 4*x^2) / ((1 - x)*(1 - 2*x)).
; 0,1,2,8,20,44,92,188,380,764,1532,3068,6140,12284,24572,49148,98300,196604,393212,786428,1572860,3145724,6291452,12582908,25165820,50331644,100663292,201326588,402653180,805306364,1610612732,3221225468,6442450940,12884901884,25769803772,51539607548,1030... |
e.asm | Ericles-Porty/Assembly-Lessons | 2 | 204864 | <filename>e.asm
.data
a: .word 18
b: .word 18
d: .word 15
e: .word 40
g: .word 24
h: .word 12
k: .word 55
l: .word 12
.text
lw $s0, a
lw $s1, b
lw $s2, d
lw $s3, e
lw $s4, g
lw $s5, h
lw $s6, k
lw $s7, l
beq $s0, $s1, firstif
sub $t1, $s4, $s5 #else
j final
firstif: #if
add $t0, $s2, $s3
... |
programs/oeis/016/A016211.asm | neoneye/loda | 22 | 204865 | <reponame>neoneye/loda<gh_stars>10-100
; A016211: Expansion of 1/((1-x)(1-3x)(1-6x)).
; 1,10,73,478,2989,18298,110881,668566,4021237,24156946,145030249,870447214,5223480445,31343274154,188066819377,1128422439622,6770599207813,40623788957122,243743314873465
lpb $0
mov $2,$0
sub $0,1
seq $2,16137 ; Expansion of 1/... |
firmware/glyphs/glyphs10.asm | ddomurad/avrVideoCard | 0 | 204866 | .org 0x6000
.db 0x0, 0x0, 0xee, 0x0, 0x0, 0x11, 0xf, 0x0, 0x0, 0x80
.db 0x3c, 0x18, 0x0, 0xc0, 0x0, 0x3c, 0x0, 0x40, 0x7c, 0x3c
.db 0x7c, 0x7c, 0x3c, 0x7c, 0x0, 0x3c, 0x7e, 0x18, 0x0, 0x0
.db 0x3c, 0x0, 0x0, 0x0, 0x66, 0x0, 0x18, 0x0, 0x0, 0xc
.db 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0
.db 0x0, 0x0, 0x0, 0x0... |
lab02/lab2/ls.asm | ahchu1993/opsys | 0 | 204868 |
_ls: file format elf32-i386
Disassembly of section .text:
00000000 <fmtname>:
#include "user.h"
#include "fs.h"
char*
fmtname(char *path)
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 53 push %ebx
4: 83 ec 24 sub $0x24,%esp
... |
externals/mpir-3.0.0/mpn/x86w/udiv_qrnnd.asm | JaminChan/eos_win | 12 | 204869 |
; Copyright 1999, 2000, 2002 Free Software Foundation, Inc.
;
; This file is part of the GNU MP Library.
;
; The GNU MP Library is free software; you can redistribute it and/or
; modify it under the terms of the GNU Lesser General Public License as
; published by the Free Software Foundation; either version 2.1... |
oeis/040/A040528.asm | neoneye/loda-programs | 11 | 204871 | ; A040528: Continued fraction for sqrt(552).
; Submitted by <NAME>(s2.)
; 23,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46,2,46
mov $1,$0
cmp $0,0
sub $1,$0
add $0,1
gcd $1,2
add $1,20
... |
oeis/001/A001260.asm | neoneye/loda-programs | 11 | 204872 | ; A001260: Number of permutations of length n with 4 consecutive ascending pairs.
; Submitted by <NAME>
; 0,0,0,0,1,5,45,385,3710,38934,444990,5506710,73422855,1049946755,16035550531,260577696015,4489954146860,81781307674780,1570201107355980,31698434854748604,671260973394676605,14879618243581997745,34458063300926731658... |
S4/HW_Lab/count_vowels.asm | akxavier/Assignments | 0 | 204873 | ;count number of vowels in a given string
section .data
msg1 : db 'Enter string : '
l1 : equ $-msg1
msg_a : db 'No. of vowel a : '
l_a : equ $-msg_a
msg_e : db 'No. of vowel e : '
l_e : equ $-msg_e
msg_i : db 'No. of vowel i : '
l_i : equ $-msg_i
msg_o : db 'No. of vowel o : '
l_o : equ $-msg_o
msg_u : db 'No. of vowe... |
Microsoft/SAMPLES/ttfview/ttview/dbedit/src/winstub.asm | tig/Tigger | 1 | 204874 | TITLE WINSTUB - Assembly stub program for new format EXE files
.xlist
include cmacros.inc
.list
stubstack segment stack
dw 80h dup (?)
stubstack ends
sBegin CODE
assumes CS,CODE
WINSTUB PROC NEAR
call ws1
DB 'XEDIT Version 1.0',13,10
DB ... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_1452.asm | ljhsiun2/medusa | 9 | 204876 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r8
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0xd48b, %r12
nop
nop
nop
nop
inc %rdi
mov $0x6162636465666768, %r14
movq %r14, %xmm1
movups %xmm1, (%r12)
nop
nop
dec %rdx
lea addresses_normal_ht+0x10... |
misc/playSound.asm | TheStormkeeper/c64_fun | 13 | 204877 | <reponame>TheStormkeeper/c64_fun
;
; Demonstration of how to play a simple sound (on fire press).
; Uses raster interrupt.
;
!to "playsound.prg", cbm
; launch routine
*=$0801
!byte $0c, $08, $0a, $00, $9e, $20, $38, $31, $39, $32
deltaX !byte $0 ; dx for joystick movement ( -1 - left, 1 - right, 0 - none)
del... |
oeis/139/A139238.asm | neoneye/loda-programs | 11 | 204878 | ; A139238: First differences of Mersenne numbers A001348.
; Submitted by <NAME>
; 4,24,96,1920,6144,122880,393216,7864320,528482304,1610612736,135291469824,2061584302080,6597069766656,131941395333120,8866461766385664,567453553048682496,1729382256910270464,145268109580462718976,2213609288845146193920,7083549724304467820... |
oeis/142/A142531.asm | neoneye/loda-programs | 11 | 204879 | <filename>oeis/142/A142531.asm
; A142531: Primes congruent to 51 mod 52.
; Submitted by <NAME>
; 103,311,467,571,727,883,1039,1091,1559,1663,1871,2027,2131,2287,2339,2963,3067,3119,3691,3847,4003,4159,4211,4523,4679,4783,5147,5303,5407,5563,5927,6343,6551,6863,6967,7019,7331,7487,7591,7643,8059,8111,8423,8527,8839,9151... |
oeis/094/A094013.asm | neoneye/loda-programs | 11 | 204880 | <reponame>neoneye/loda-programs
; A094013: Expansion of (1-4*x)/(1-4*x-4*x^2).
; Submitted by <NAME>(s4)
; 1,0,4,16,80,384,1856,8960,43264,208896,1008640,4870144,23515136,113541120,548225024,2647064576,12781158400,61712891904,297976201216,1438756372480,6946930294784,33542746669056,161958707855360
mov $1,1
lpb $0
sub... |
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2_notsx.log_10105_939.asm | ljhsiun2/medusa | 9 | 204881 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r14
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x18d8b, %rsi
lea addresses_WC_ht+0x710f, %rdi
nop
nop
nop
cmp $43117, %r14
mov $86, %rcx
rep movsl
nop
nop
nop
nop
dec %rsi
lea addresses_UC_ht+0x10f, %rbx
nop
nop
add $5007, %... |
oeis/118/A118112.asm | neoneye/loda-programs | 11 | 204882 | <reponame>neoneye/loda-programs<filename>oeis/118/A118112.asm
; A118112: a(n) = binomial(3n,n) mod (n+1).
; 1,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,9,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,19,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,35,0,0,0,37,0,0,0,0,0,0,0,41,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
ad... |
AsmSamples/sort/sort_desc.asm | ytugba/My-Otiose-Projects | 1 | 204883 | ;
org 100h
ARRAY DB 11h, 99h, 22h, 88h, 33h, 77h, 44h, 55h
count DW 8
mov cx, count ; cx=8
dec cx ; cx=7
nextscan: mov bx, cx ; bx stores the number of comparisons
mov si, 0
nextcomp: mov al, ARRAY[si]
mov dl, ARRAY[si+1]
cmp al, dl
jn... |
src/SonicLostWorld/Mods/LinkSonicEverywhere/patch_LinksonicSetup.asm | lilystudent2016/cemu_graphic_packs | 1,002 | 204884 | [sonic2013_v48]
moduleMatches = 0xC5691A40
0x026D285C = GetPackFile:
0x026D28E4 = GetModelResource:
0x026D2C40 = GetSkeletonResource:
0x101AC668 = LinksonicPacLoad:
0x101AC678 = LinksonicPacInit:
0x101AC688 = chrLinkSonic:
|
Transynther/x86/_processed/AVXALIGN/_ht_zr_/i9-9900K_12_0xca_notsx.log_21829_219.asm | ljhsiun2/medusa | 9 | 204885 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r8
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0xb74f, %rsi
lea addresses_A_ht+0x16777, %rdi
clflush (%rsi)
nop
nop
cmp $25104, %rdx
mov $50, %rcx
rep movsl
xor %rdi, %rdi
lea addresses_UC_ht+0x1074f, %rsi
lea addr... |
Transynther/x86/_processed/AVXALIGN/_st_/i3-7100_9_0xca_notsx.log_21829_44.asm | ljhsiun2/medusa | 9 | 204886 | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r13
push %r14
push %rbx
push %rcx
push %rdx
push %rsi
// Load
lea addresses_WT+0x1cd5d, %r14
nop
nop
nop
sub %r13, %r13
vmovups (%r14), %ymm3
vextracti128 $1, %ymm3, %xmm3
vpextrq $0, %xmm3, %rsi
cmp $31696, %rdx
// Fault... |
List_2/exercise1.asm | dekoperez/SEL0433_microprocessorAplications | 0 | 204888 | <filename>List_2/exercise1.asm
;*******************************************************************************
; @INSTITUTION
; University of Sao Paulo | Sao Carlos School of Engineering | SEL
;------------------------------------------------------------------------------
; @DISCIPLINE
; Name: SEL0433 | Applications... |
programs/oeis/002/A002754.asm | neoneye/loda | 22 | 204889 | <reponame>neoneye/loda<gh_stars>10-100
; A002754: Related to coefficient of m in Jacobi elliptic function cn(z, m).
; 0,0,4,44,408,3688,33212,298932,2690416,24213776,217924020,1961316220,17651846024,158866614264,1429799528428,12868195755908,115813761803232,1042323856229152,9380914706062436,84428232354561996,75985409119... |
programs/oeis/002/A002821.asm | neoneye/loda | 22 | 204890 | ; A002821: a(n) = nearest integer to n^(3/2).
; 0,1,3,5,8,11,15,19,23,27,32,36,42,47,52,58,64,70,76,83,89,96,103,110,118,125,133,140,148,156,164,173,181,190,198,207,216,225,234,244,253,263,272,282,292,302,312,322,333,343,354,364,375,386,397,408,419,430,442,453,465,476,488,500,512,524,536,548,561,573,586,598,611,624,637... |
MSP430G2xx3_Code_Examples/Assembly_CCS/msp430g2x33_adc10_14.asm | collin-allen/ELEC327 | 4 | 204891 | ; --COPYRIGHT--,BSD_EX
; Copyright (c) 2012, Texas Instruments Incorporated
; 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 ... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1055.asm | ljhsiun2/medusa | 9 | 204892 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x121b9, %r11
nop
sub $46386, %rdi
mov (%r11), %rbp
cmp $37101, %rax
lea addresses_WC_ht+0x11a66, %rbp
nop
add $54886, %r12
movb (%rbp), %dl
nop
nop
no... |
programs/oeis/288/A288933.asm | jmorken/loda | 1 | 204894 | <gh_stars>1-10
; A288933: Positions of 0 in A288932; complement of A288934.
; 2,4,7,9,13,15,18,20,25,27,30,32,36,38,41,43,49,51,54,56,60,62,65,67,72,74,77,79,83,85,88,90,97,99,102,104,108,110,113,115,120,122,125,127,131,133,136,138,144,146,149,151,155,157,160,162,167,169,172,174,178,180,183,185,193,195,198,200,204,206,... |
oeis/028/A028263.asm | neoneye/loda-programs | 11 | 204895 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A028263: Elements in 3-Pascal triangle A028262 (by row) that are not 1.
; Submitted by <NAME>
; 3,4,4,5,8,5,6,13,13,6,7,19,26,19,7,8,26,45,45,26,8,9,34,71,90,71,34,9,10,43,105,161,161,105,43,10,11,53,148,266,322,266,148,53,11,12,64,201,414,588,588,414,201,64,12,13,76,26... |
src/lib/segments.asm | laamella-gad/moon-train | 1 | 204896 | * = $02
.dsection zp
.cerror * > $FF, "Too many zero page variables"
* = $0801
.dsection code
.cerror * > $CFFF, "Program too long!"
|
programs/oeis/081/A081013.asm | karttu/loda | 0 | 204898 | ; A081013: a(n) = Fibonacci(4*n+3) - 2, or Fibonacci(2*n)*Lucas(2*n+3).
; 0,11,87,608,4179,28655,196416,1346267,9227463,63245984,433494435,2971215071,20365011072,139583862443,956722026039,6557470319840,44945570212851,308061521170127,2111485077978048,14472334024676219
mul $0,2
lpb $0,1
sub $0,1
add $2,2
add $1,$2... |
src/dos32a/text/client/misc.asm | amindlost/dos32a | 5 | 204899 | <gh_stars>1-10
;
; Copyright (C) 1996-2006 by <NAME>. 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, th... |
programs/oeis/129/A129589.asm | neoneye/loda | 22 | 204900 | <reponame>neoneye/loda<filename>programs/oeis/129/A129589.asm<gh_stars>10-100
; A129589: a(n) = 2*A000129(n) + A000129(n-1) - n.
; 1,3,9,25,65,163,401,977,2369,5731,13849,33449,80769,195011,470817,1136673,2744193,6625091,15994409,38613945,93222337,225058659,543339697,1311738097,3166815937,7645370019,18457556025,4456048... |
libsrc/_DEVELOPMENT/stdio/c/sccz80/scanf.asm | meesokim/z88dk | 0 | 204901 | <filename>libsrc/_DEVELOPMENT/stdio/c/sccz80/scanf.asm<gh_stars>0
; int scanf(const char *format, ...)
INCLUDE "clib_cfg.asm"
SECTION code_stdio
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
IF __CLIB_OPT_MULTITHREAD & $02
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
PUBLIC scanf
EXTERN asm_scanf
defc scanf = asm_scanf
;;;;;;;;;;;;;;;;;;... |
Lista 2/4.asm | AtilaAssuncao/MIPS-AP2 | 0 | 204902 | .data
message2: .ascii "O numero ao quadrado e sua raiz e: "
jump: .ascii "\n"
float: .float 20.0
zero: .float 0.0
.text
main:
# Loading float
lwc1 $f0, float
lwc1 $f2, zero
# Condicionais
c.le.s $f2, $f0
bc1t positive
# Instrucao para finalizar o programa
li $v0, 10
syscall
positive:
... |
testcases/bcd.asm | Asintoerr/A-Sin-To-Err | 0 | 204903 | <reponame>Asintoerr/A-Sin-To-Err
; BCD subtraction test case
#define PLAINTEXT 0
#define KEY 1
#define CIPHERTEXT 2
#define DECODED 3
#define TEMP 4
; Plaintext 1, key 5, ciphertext (20 - 1 - 5) % 10 = 4, decrypted (20 - 4 - 5) % 10 = 1
lit #1 ; plaintext
st PLAINTEXT
lit #5 ... |
Transynther/x86/_processed/US/_zr_/i7-8650U_0xd2.log_4868_698.asm | ljhsiun2/medusa | 9 | 204904 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r13
push %r14
push %r15
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x11926, %r13
nop
nop
nop
nop
nop
dec %r14
movups (%r13), %xmm7
vpextrq $0, %xmm7, %r10
nop
nop
add $2728, %rdi
lea addresses_D_ht+0x9afe, %... |
oeis/020/A020062.asm | neoneye/loda-programs | 11 | 204905 | ; A020062: Integer part of Gamma(n+3/10)/Gamma(3/10).
; Submitted by <NAME>(s3)
; 1,0,0,0,2,12,67,425,3102,25750,239483,2466677,27873456,342843514,4559818740,65205407994,997642742321,16261576699844,281325276907303,5148252567403658,99361274550890613,2017033873383079453,42962821503059592360,958070919518228909643,22323052... |
CCS/simpleADCDemo/isr-link.asm | whitecloudy/wisp5 | 53 | 204906 | ; This file assigns ISR vector targets. This must be done in the client
; application so linker will observe these assignments, otherwise ISRs
; will not be linked.
.cdecls C,LIST, "wisp-base.h"
.sect ".int45" ; Timer0_A0 Vector
.short Timer0A0_ISR ; int53 = Timer0A0_ISR addr.
.sect ".int4... |
programs/oeis/264/A264981.asm | neoneye/loda | 22 | 204907 | ; A264981: Highest power of 9 dividing n.
; 1,1,1,1,1,1,1,1,9,1,1,1,1,1,1,1,1,9,1,1,1,1,1,1,1,1,9,1,1,1,1,1,1,1,1,9,1,1,1,1,1,1,1,1,9,1,1,1,1,1,1,1,1,9,1,1,1,1,1,1,1,1,9,1,1,1,1,1,1,1,1,9,1,1,1,1,1,1,1,1,81,1,1,1,1,1,1,1,1,9,1,1,1,1,1,1,1,1,9,1
mov $1,20
mov $2,$0
add $2,1
lpb $2
mul $1,9
dif $2,9
lpe
div $1,20
mo... |
Assembly/Homework/6-9.asm | chaohu/Daily-Learning | 12 | 204908 | <reponame>chaohu/Daily-Learning
.386
.model FLAT,STDCALL
OPTION CASEMAP:NONE
INCLUDE \masm32\INCLUDE\WINDOWS.INC
INCLUDE \masm32\INCLUDE\USER32.INC
INCLUDE \masm32\INCLUDE\KERNEL32.INC
INCLUDE \masm32\INCLUDE\COMCTL32.INC
INCLUDELIB \masm32\LIB\USER32.LIB
INCLUDELIB \masm32\LIB\KERNEL32.LIB
INCLUDELIB \masm32\... |
s.asm | Kwongrf/Assemble-Student-grade-management-system | 6 | 204909 | DATA SEGMENT
NOTICE DB 'Please input your choice: 1.Logging Data; 2.Sort and Output; 3.Get Average; 4. Statistic of Ranges; 5.Exit',0DH,0AH,'$'
ERR DB 'ERROR!',0DH,0AH,'$'
NOTICE1 DB 'Please input the NAME of the student:(ENTER for end)',0DH,0AH,'$'
NOTICE2 DB 'Please input the CLASS of the student:',0DH,0AH,'$'
... |
oeis/120/A120140.asm | neoneye/loda-programs | 11 | 204910 | ; A120140: a(1)=13; a(n)=floor((26+sum(a(1) to a(n-1)))/2).
; Submitted by <NAME>
; 13,19,29,43,65,97,146,219,328,492,738,1107,1661,2491,3737,5605,8408,12612,18918,28377,42565,63848,95772,143658,215487,323230,484845,727268,1090902,1636353,2454529,3681794,5522691,8284036,12426054,18639081
add $0,1
mov $3,26
lpb $0
su... |
programs/oeis/068/A068156.asm | neoneye/loda | 22 | 204912 | <reponame>neoneye/loda
; A068156: G.f.: (x+2)*(x+1)/((x-1)*(x-2)) = Sum_{n>=0} a(n)*(x/2)^n.
; 1,3,9,21,45,93,189,381,765,1533,3069,6141,12285,24573,49149,98301,196605,393213,786429,1572861,3145725,6291453,12582909,25165821,50331645,100663293,201326589,402653181,805306365,1610612733,3221225469,6442450941,12884901885,25... |
oeis/110/A110907.asm | neoneye/loda-programs | 11 | 204913 | <gh_stars>10-100
; A110907: Number of points in the standard root system version of the D_3 (or f.c.c.) lattice having L_infinity norm n.
; Submitted by <NAME>
; 1,12,50,108,194,300,434,588,770,972,1202,1452,1730,2028,2354,2700,3074,3468,3890,4332,4802,5292,5810,6348,6914,7500,8114,8748,9410,10092,10802,11532,12290,130... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_739.asm | ljhsiun2/medusa | 9 | 204915 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r9
push %rax
push %rsi
lea addresses_D_ht+0xf856, %r10
nop
nop
nop
nop
nop
xor $1129, %r13
mov (%r10), %eax
nop
nop
dec %r9
lea addresses_WC_ht+0x10c6c, %r13
nop
nop
nop
nop
add %rsi, %rsi
mov (%r13), %rax
nop
nop
nop
nop
dec %r13
pop %rsi
pop %rax
... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_15435_1377.asm | ljhsiun2/medusa | 9 | 204916 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r15
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0xf180, %r11
nop
nop
nop
nop
sub $36635, %rbx
mov $0x6162636465666768, %r13
movq %r13, %xmm2
movups %xmm2, (%r11)
nop
xor $14567, %rbx
lea addresses_normal_ht+0x69c6, %rdi
... |
oeis/068/A068244.asm | neoneye/loda-programs | 11 | 204917 | ; A068244: 1/6 the number of colorings of a 3 X 3 rhombic- or staggered- hexagonal array with n colors.
; Submitted by <NAME>
; 1,176,5490,65600,455875,2239776,8647716,27962880,78920325,200002000,464447126,1003294656,2039332295,3935444800,7261533000,12884914176,22089914121,36733221360,59442494650,93866696000,1449876630... |
innative-env/memset.x86.asm | Connicpu/innative | 381 | 204919 | <filename>innative-env/memset.x86.asm
page ,132
title _innative_internal_env_memset - set sections of memory all to one byte
;***
;memset.asm - set a section of memory to all one byte
;
; Copyright (c) Microsoft Corporation. All rights reserved.
;
;Purpose:
; contains the memset() routine
;
;**********... |
primitiv/pixelcga.asm | jasaldivara/retro-dos-graphics | 13 | 204920 |
%define VIDEOBIOS 0x10
%define SETVIDEOMODE 0
%define CGA4COLOR 0x04
%define WIDTHPX 320d
%define PXB 4 ; Pixeles por byte
%assign PYTERPERSCAN (WIDTHPX * PXB)
%define MEMCGAEVEN 0xB800
%define MEMCGAODD 0xBA00
org 100h
section .text
start:
; program code
mov ah, SETVIDEOMODE ; Estab... |
src/int_add.asm | MrPivato/mips_files | 0 | 204921 | <filename>src/int_add.asm
.data
number1: .word 10
number2: .word 20
.text
lw $t0, number1($zero)
lw $t1, number2($zero)
add $t2, $t0, $t1 # t2 = t0 + t1
li $v0, 1
add $a0, $zero, $t2 # move a value, add it to zero, a0 = zero + t2
syscall |
1571/64tass/signature.asm | silverdr/assembly | 23 | 204922 | <reponame>silverdr/assembly<gh_stars>10-100
; test 256k-bit of rom
; using signature generation test bits 15, 11, 8, 6
; exit if ok
signature .proc
php
sei ; no irqs
ldx #0
stx $00 ; sig_lo
stx $01 ; sig_hi
lda #3 ; skip checksum... |
base/atari/xmsbank.asm | zbyti/Mad-Pascal | 7 | 204924 |
; unit MISC: DetectMem
; by Tebe
.proc @xmsBank
ptr3 = eax ; position (4)
mva ptr3+3 ztmp+1 ; position shr 14
mva ptr3+2 ztmp
lda ptr3+1
.rept 6
lsr ztmp+1
ror ztmp
ror @
.endr
tax ; index to bank
lda portb
and #1
ora MAIN.SYSTEM.__PORTB_BANKS,x
sta portb
lda ptr3 ; ... |
oeis/294/A294085.asm | neoneye/loda-programs | 11 | 204926 | <gh_stars>10-100
; A294085: a(n) is the number of self-symmetric anonymous and neutral equivalence classes of preference profiles with 3 alternatives and n agents (IANC model).
; Submitted by <NAME>
; 1,1,3,4,8,10,17,20,30,35,49,56,75,84,108,120,150,165,202,220,264,286,338,364,425,455,525,560,640,680,771,816,918,969,10... |
oeis/142/A142769.asm | neoneye/loda-programs | 11 | 204928 | ; A142769: Primes congruent to 42 mod 59.
; Submitted by <NAME>
; 101,337,691,809,1163,1399,1753,1871,2579,3169,3877,4231,4349,4703,5647,6473,6709,6827,7417,8243,8597,8951,9187,10957,11311,11783,12373,12491,13553,13789,13907,14143,14851,14969,15559,15913,16267,17093,17683,19571,20161,21341,21577,22639,22993,23819,24527... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.