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
uebung9/a3.asm
Sebb767/rechnerarchitektur
1
54353
<gh_stars>1-10 section .text extern printf global main main: ; eax = tmp ; ebx = fib1 ; ecx = fib2 ; edx = counter mov ebx, 1 mov ecx, 1 mov edx, 100 lp: mov eax, ecx add eax, ebx mov ecx, ebx mov ebx, eax dec edx cmp edx, 0 jle end jmp lp end: mov [storage], eax push storage push format ca...
4-3-3/4-3-3.asm
shellqiqi/ASM
0
54354
<filename>4-3-3/4-3-3.asm CODE SEGMENT PARA 'CODE' ASSUME CS:CODE START: MOV AH, 0 INT 33H ; BUTTON -> AL SUB AL, 10000B CMP AL, 3H JA PRSW ; UNAVAILABLE MOV BL, AL ; BL IS FUNCTION 1+ 2- 3* PRSW: ; MOV DX, 06060H ; DEBUG ; MOV BL, 3 ; DEBUG INT 31H ; SWITCH -> DX INT 30H ; L...
programs/oeis/267/A267313.asm
neoneye/loda
22
54355
<filename>programs/oeis/267/A267313.asm ; A267313: Expansion of x*(-1 + 2*x + 3*x^2 - 2*x^3 + x^4)/((1 - x)^3*(1 + x + x^2)^2). ; 0,-1,1,4,0,5,11,4,12,21,11,22,34,21,35,50,34,51,69,50,70,91,69,92,116,91,117,144,116,145,175,144,176,209,175,210,246,209,247,286,246,287,329,286,330,375,329,376,424,375,425,476,424,477,531,4...
tests/bank_labelalign/3.asm
NullMember/customasm
414
54356
<filename>tests/bank_labelalign/3.asm #ruledef test { ld {x} => 0x55 @ x`8 } #labelalign 32 #bankdef a { #addr 0, #size 8, #outp 0 } #labelalign 64 #bankdef b { #addr 0, #outp 8 * 8 } #bank a ld $ label1: ld $ #bank b ld $ label2: ld $ ; = 0x5500000055040000_55000000000000005508
programs/oeis/092/A092810.asm
karttu/loda
1
54357
; A092810: Binomial transform of a Jacobsthal trisection. ; 1,6,54,486,4374,39366,354294,3188646,28697814,258280326,2324522934,20920706406,188286357654,1694577218886,15251194969974,137260754729766,1235346792567894,11118121133111046 mul $0,2 lpb $0,1 add $3,2 add $1,$3 add $4,$1 mov $2,$4 sub $2,1 mov $1,$2...
kernel/net/socket.asm
ssebs/xos
15
54358
;; xOS32 ;; Copyright (C) 2016-2017 by <NAME>. use32 ; Socket Functions, abstract TCP and UDP internal functionality.. ; ; ; struct socket ; { ; u8 flags; ; u8 protocol; // 0 = TCP, 1 = UDP ; u16 window; // 512 for UDP ; u32 seq; // TCP: sequence of next packet to be sent, unused for UDP ; u32 ack; // TCP: ackn...
programs/add8bit.asm
bogas04/asm8085
1
54360
<gh_stars>1-10 ; numbers are stored at C050 and C051 ; result is to be stored at C052 LXI H,C050 MOV A,M INX H ADD M STA C052 HLT
programs/oeis/027/A027780.asm
neoneye/loda
22
54361
; A027780: a(n) = 7*(n+1)*C(n+2,7)/2. ; 21,196,1008,3780,11550,30492,72072,156156,315315,600600,1089088,1893528,3174444,5155080,8139600,12534984,18877089,27861372,40378800,57557500,80810730,111891780,152956440,206633700 mov $1,$0 add $0,7 bin $0,$1 add $1,6 mul $0,$1 div $0,2 mul $0,7
Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0xca_notsx.log_21829_1714.asm
ljhsiun2/medusa
9
54362
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r13 push %r9 push %rdx lea addresses_D_ht+0x36a9, %r13 nop nop sub $20020, %r11 movl $0x61626364, (%r13) dec %r9 lea addresses_D_ht+0x1efa9, %rdx nop nop add $4529, %r12 mov $0x6162636465666768, %r9 movq %r9, %xmm5 movups %xmm5, (%rdx) xor $38366, %...
src/lib/barden_hexcv.asm
hallorant/bitmit
6
54365
<filename>src/lib/barden_hexcv.asm ifndef INCLUDE_BARDEN_HEXCV INCLUDE_BARDEN_HEXCV equ 1 ; _ _ _ ;| | | | | | ;| |__ __ _ _ __ __| | ___ _ __ | |__ _____ _______ __ ;| '_ \ / _` | '__/ _` |/ _ \ '_ \ | '_ \ / _ \ \/ / __\ \ / / ;| |_) | (_| | | | (_|...
oeis/152/A152920.asm
neoneye/loda-programs
11
54366
<filename>oeis/152/A152920.asm ; A152920: Triangle read by rows: triangle A062111 reversed. ; Submitted by <NAME> ; 0,1,1,2,3,4,3,5,8,12,4,7,12,20,32,5,9,16,28,48,80,6,11,20,36,64,112,192,7,13,24,44,80,144,256,448,8,15,28,52,96,176,320,576,1024,9,17,32,60,112,208,384,704,1280,2304,10,19,36,68,128,240,448,832,1536,2816 ...
main.asm
CurlyPaul/cpc-z80-simple-screen-rupture
0
54369
org &200 run start start: call Screen_Init di ;; Create the smallest possible interrupt handler im 1 ld hl,&C9FB ;; C9 FB are the bytes for the Z80 opcodes EI:RET ld (&0038),hl ;; setup interrupt handler call Palette_Init call InitCRTC ;; Note we need to change the screen mode with the PPI as the ;; firmware n...
lab_files/lab5/test/lab5_test_predict/predict_test.asm
OrigamiAyc/COD2020
7
54370
_test0: add $t0, $0, $0 # $t0 = 0 0 addi $t1, $0, 100 # $t1 = 100 4 j _test1 # 8 _test1: addi $t0, $t0, 1 # $t0++ 12 bne $t0, $t1, _test1 # 16 _success: j _success # 20
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1712.asm
ljhsiun2/medusa
9
54371
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: ret .global s_faulty_load s_faulty_load: push %r12 push %r14 push %r15 push %r9 push %rax push %rdx push %rsi // Store lea addresses_WC+0x1839b, %rax nop nop nop xor %r12, %r12 movw $0x5152, (%rax) nop xor %rdx, %rdx // Load lea addresses_A+0...
Src/diskio.asm
slowcorners/Minimal-FORTH
1
54373
; ---------------------------------------------------------------------- ; DISK I/O HRW: DB ^3 "R/" ^'W' ; ***** R/W DW HMSMOD RW: DW DOCOL TOR DW LIT 32 SLMOD ONEP TBANK DW BBUF STAR FROMR ZBRAN +RW10 DW SWAP RW10: DW ...
data/pokemon/base_stats/drapion.asm
TastySnax12/pokecrystal16-493-plus
2
54374
<reponame>TastySnax12/pokecrystal16-493-plus db 0 ; species ID placeholder db 70, 90, 110, 95, 60, 75 ; hp atk def spd sat sdf db POISON, DARK ; type db 45 ; catch rate db 175 ; base exp db NO_ITEM, POISON_BARB ; items db GENDER_F50 ; gender ratio db 100 ; unknown 1 db 20 ; step cycles to hatch ...
source/expression/integer/multiply.asm
paulscottrobson/x16-basic
1
54375
; ***************************************************************************** ; ***************************************************************************** ; ; Name : multiply.asm ; Purpose : 16x16 Multiply ; Author : <NAME> (<EMAIL>) ; Date : 8th February 2020 ; ; *******************************************...
oeis/253/A253713.asm
neoneye/loda-programs
11
54376
; A253713: Second partial sums of 13th powers (A010801). ; Submitted by <NAME> ; 1,8194,1610710,70322090,1359736595,15709845116,126948964044,787943896860,3990804658005,17193665419150,64919238324226,219638016608374,677231901484775,1928540559615320,5126044286105240,12827147639965656,30432829026732009,68861475279169530,14...
programs/oeis/056/A056134.asm
neoneye/loda
22
54377
; A056134: Smallest positive integer which is the geometric mean of n and an integer other than n. ; 2,4,6,2,10,12,14,4,3,20,22,6,26,28,30,4,34,6,38,10,42,44,46,12,5,52,9,14,58,60,62,8,66,68,70,6,74,76,78,20,82,84,86,22,15,92,94,12,7,10,102,26,106,18,110,28,114,116,118,30,122,124,21,8,130,132,134,34,138,140 mov $1,$0 ...
c64/transmit64-ass/test_bench_mul_short.asm
cloudarts/transmit64
0
54379
<reponame>cloudarts/transmit64 .pc = $0801 "Basic Upstart" :BasicUpstart(start) .pc = $0810 "Program" .import source "sub_mul.asm" start: lda #3 sta sub_mul_int16_val1 lda #100 sta sub_mul_int16_val2 jsr sub_mul_int16 end: rts
exampl04/jacts/jacts.asm
AlexRogalskiy/Masm
0
54380
.386 .model flat,stdcall option casemap:none ;----------------------------------------------------- ;About Joe's Alarm/Countdown Timer/StopWatch! ;Author: farrier <EMAIL> ;Dialog window with the following functions ; Stopwatch with "1/100 sec accuracy" at least that is what is displayed! ; immediate lap...
oeis/063/A063871.asm
neoneye/loda-programs
11
54381
; A063871: Trajectory of 3 under map n->7n-1 if n odd, n->n/2 if n even. ; Submitted by <NAME> ; 3,20,10,5,34,17,118,59,412,206,103,720,360,180,90,45,314,157,1098,549,3842,1921,13446,6723,47060,23530,11765,82354,41177,288238,144119,1008832,504416,252208,126104,63052,31526,15763,110340,55170,27585,193094,96547,675828,33...
libsrc/interrupts/nmi/nmi_handler.asm
jpoikela/z88dk
38
54382
SECTION code_clib PUBLIC asm_nmi_handler EXTERN nmi_vectors EXTERN asm_interrupt_handler asm_nmi_handler: push af push hl ld hl,nmi_vectors call asm_interrupt_handler pop hl pop af retn
oeis/142/A142417.asm
neoneye/loda-programs
11
54383
; A142417: Primes congruent to 4 mod 49. ; Submitted by <NAME> ; 53,151,347,641,739,1033,1229,1327,1523,1621,2111,2503,2699,2797,3581,4463,4561,5051,5443,5639,5737,6521,6619,7109,7207,8089,8677,8971,9461,10343,11519,11617,11813,12107,12401,13381,13577,14557,14753,14851,15439,15733,16223,16811,17203,17497,17791,17987,18...
asm/read_and_repeat.asm
FKD13/RCPU
17
54385
<reponame>FKD13/RCPU .data .format string 'You wrote: %s, and that was %d characters long.\n' .printf 0 .fgets 1 .stdin_fileno 0 .size 20 .free_memory string 'AAAAAAAAAAAAAAAAAAA' .text .global main: main: ; Get string of size 20 from stdin LDV A, .stdin_fileno PSH A LDV A, .size PSH A LDV ...
oeis/256/A256016.asm
neoneye/loda-programs
11
54386
; A256016: a(n) = n! * Sum_{k=0..n} k^n/k!. ; Submitted by <NAME> ; 1,1,6,57,796,15145,374526,11669665,447595800,20733553809,1141067915290,73552752257281,5484203261135028,467864288815609465,45236104846954021014,4915818294874879570305,596044703812665607374256,80118478395137652912476449,11870487496575403846760198322,1928...
programs/oeis/030/A030662.asm
karttu/loda
0
54387
<reponame>karttu/loda<filename>programs/oeis/030/A030662.asm ; A030662: Number of combinations of n things from 1 to n at a time, with repeats allowed. ; 1,5,19,69,251,923,3431,12869,48619,184755,705431,2704155,10400599,40116599,155117519,601080389,2333606219,9075135299,35345263799,137846528819,538257874439,21040989637...
oeis/139/A139786.asm
neoneye/loda-programs
11
54388
<filename>oeis/139/A139786.asm ; A139786: a(n) = 7^n mod 6^n. ; 0,1,13,127,1105,1255,24337,263671,725953,42823,40610545,163341463,780593185,5464152295,51309760081,45711664183,2200721587585,12583941205639,3454291215793,430419865184215,3012939056289505,10122098073837607,92791637157241105,517919756258420599,20459778477017...
src/x86/gas/syscall0.asm
Biolunar/linux_syscall
8
54389
<reponame>Biolunar/linux_syscall<gh_stars>1-10 /* * Copyright 2018-2021 <NAME> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * ...
Kernel/asm/libasm.asm
nicodonof/SoundblasterOS
0
54391
<filename>Kernel/asm/libasm.asm GLOBAL outb GLOBAL inb GLOBAL write_cr3 GLOBAL get_cr3 GLOBAL get_cr4 GLOBAL get_cr0 GLOBAL set_paging GLOBAL forceScheduler GLOBAL getEflags GLOBAL userToKernel GLOBAL kernelToUser extern sPrintf extern kernelStack outb: ;outb(value, port) mov rdx, rsi mov rax, rdi out dx, al ...
y2s2/csa/practicals/prac-5/9-loop-ex-3-2.asm
ouldevloper/university
8
54392
<reponame>ouldevloper/university ; Allow user to enter 1 char, 1 num, display it num times .MODEL SMALL .STACK 100 .DATA CHAR DB ? COUNT DB ? pro DB "Enter a character: $" pro2 DB "Enter a number: $" NL DB 13,10,"$" .CODE MAIN PROC MOV AX,@DATA MOV DS,AX MOV AH, 09H LEA DX, pro ...
programs/oeis/103/A103457.asm
neoneye/loda
22
54393
; A103457: a(n) = 3^n + 1 - 0^n. ; 1,4,10,28,82,244,730,2188,6562,19684,59050,177148,531442,1594324,4782970,14348908,43046722,129140164,387420490,1162261468,3486784402,10460353204,31381059610,94143178828,282429536482,847288609444 mov $1,3 pow $1,$0 div $1,3 mul $1,3 add $1,1 mov $0,$1
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_971.asm
ljhsiun2/medusa
9
54394
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r14 push %r8 push %rcx push %rdi push %rsi lea addresses_UC_ht+0xd1f5, %r11 nop nop nop cmp %r10, %r10 movups (%r11), %xmm3 vpextrq $1, %xmm3, %r14 nop nop nop nop nop sub $62800, %r10 lea addresses_normal_ht+0x1b88d, %rsi lea address...
Graphics/TextArea.asm
jaredwhitney/os3
5
54395
Textarea_type equ 0 Textarea_image equ 4 Textarea_x equ 8 Textarea_y equ 12 Textarea_w equ 16 Textarea_h equ 20 Textarea_text equ Component_CLASS_SIZE Textarea_len equ Component_CLASS_SIZE+4 Textarea_cursorPos equ Component_CLASS_SIZE+8 Textarea_scrolls equ Component_CLASS_SIZE+12 Textar...
Kernel/asm/interrupts.asm
gprinc/RoundTwo
1
54396
<filename>Kernel/asm/interrupts.asm ; ; interrups.asm ; ; Created on: Apr 18, 2010 ; Author: anizzomc ; GLOBAL _cli GLOBAL _sti GLOBAL picMasterMask GLOBAL picSlaveMask GLOBAL _lidt GLOBAL haltcpu GLOBAL _irq00Handler GLOBAL _irq01Handler GLOBAL _irq02Handler GLOBAL _irq03Handler GLOBAL _irq04Handler GLOBAL _irq...
masm/lesson14/Lesson14-MASM/lesson14.asm
neozhou2009/nehe-opengl
177
54397
<filename>masm/lesson14/Lesson14-MASM/lesson14.asm<gh_stars>100-1000 ; Attempt at NeHe's tutorial 14 : Drawing outline fonts ; ; Author: <NAME> [<EMAIL>] ; Date: July 3 2003 ; ; With thanks to NeHe for the OpenGL tutorials <http://nehe.gamedev.net/> ; Inspiration for x86 Assembler from Nico <<EMAIL>> ; OpenGL x86 inclu...
Driver/Task/TaskMax/taskmaxStrings.asm
steakknife/pcgeos
504
54398
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1991 -- All Rights Reserved PROJECT: PC GEOS MODULE: FILE: taskmaxStrings.asm AUTHOR: <NAME>, Sep 21, 1991 ROUTINES: Name Description ---- ----------- REVISION HISTORY: Name Date Des...
programs/oeis/157/A157838.asm
jmorken/loda
1
54400
; A157838: 3600n^2 - 6049n + 2541. ; 92,4843,16794,35945,62296,95847,136598,184549,239700,302051,371602,448353,532304,623455,721806,827357,940108,1060059,1187210,1321561,1463112,1611863,1767814,1930965,2101316,2278867,2463618,2655569,2854720,3061071,3274622,3495373,3723324,3958475,4200826,4450377,4707128,4971079,524223...
programs/oeis/014/A014913.asm
neoneye/loda
22
54403
<reponame>neoneye/loda ; A014913: a(1)=1, a(n) = 24*a(n-1) + n. ; 1,26,627,15052,361253,8670078,208081879,4993965104,119855162505,2876523900130,69036573603131,1656877766475156,39765066395403757,954361593489690182,22904678243752564383,549712277850061545208,13193094668401477085009,316634272041635450040234,759922252899925...
programs/oeis/124/A124354.asm
neoneye/loda
22
54404
<reponame>neoneye/loda ; A124354: Orders of the automorphisms groups of the n-antiprism graph. ; 48,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236 mov $1,9 mov $2,...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_777.asm
ljhsiun2/medusa
9
54405
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r13 push %r9 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_A_ht+0x17f8e, %rbp nop nop nop dec %rbx movw $0x6162, (%rbp) nop nop nop nop sub %rbp, %rbp lea addresses_UC_ht+0x11aee, %rbp nop xor $48706, %r13 mov $0x6162636465666768, ...
0.6-VGA-and-cursor/src/kernel/libc.asm
CedricFauth/VIteen-a-16-bit-OS
13
54407
bits 16 global _vga_putchar global _outb _vga_putchar: push bp mov bp, sp pushf push ax push bx push es mov ax, 0xB800 mov es, ax mov ax, [bp+4] mov di, [bp+6] mov [es:di], ax pop ax mov es, ax pop bx pop ax popf mov sp, bp pop bp ret _outb: push bp mov bp, sp pushf push eax push edx m...
libsrc/_DEVELOPMENT/string/c/sccz80/strchrnul.asm
Frodevan/z88dk
640
54409
<filename>libsrc/_DEVELOPMENT/string/c/sccz80/strchrnul.asm ; char *strchrnul(const char *s, int c) SECTION code_clib SECTION code_string PUBLIC strchrnul EXTERN asm_strchrnul strchrnul: pop de pop bc pop hl push hl push bc push de IF __CLASSIC && __CPU_GBZ80__ call asm_strchrnul ld d,...
programs/oeis/140/A140325.asm
karttu/loda
0
54410
; A140325: a(n) = binomial(n+8,8) * 2^n. ; 1,18,180,1320,7920,41184,192192,823680,3294720,12446720,44808192,154791936,515973120,1666990080,5239111680,16066609152,48199827456,141764198400,409541017600,1163958681600,3259084308480,9001280471040,24548946739200,66175421644800,176467791052800,465874968379392,1218442224992256...
programs/oeis/268/A268413.asm
neoneye/loda
22
54412
<reponame>neoneye/loda ; A268413: a(n) = Sum_{k = 0..n} (-1)^k*14^k. ; 1,-13,183,-2561,35855,-501969,7027567,-98385937,1377403119,-19283643665,269971011311,-3779594158353,52914318216943,-740800455037201,10371206370520815,-145196889187291409,2032756448622079727,-28458590280709116177,398420263929927626479,-55778836950189...
programs/oeis/131/A131725.asm
neoneye/loda
22
54413
<reponame>neoneye/loda ; A131725: Partial sums of A131711. ; 0,1,3,8,10,19,19,28,36,41,49,50,50,51,53,58,60,69,69,78,86,91,99,100,100,101,103,108,110,119,119,128,136,141,149,150,150,151,153,158,160,169,169,178,186,191,199,200 lpb $0 mov $2,$0 sub $0,1 seq $2,131711 ; Period 12: repeat 0, 1, 2, 5, 2, 9, 0, 9, 8, ...
base.asm
SeijiNoda/MASM32-Assembly-Game
1
54414
; ######################################################################### ; ; GENERIC.ASM is a roadmap around a standard 32 bit ; windows application skeleton written in MASM32. ; ; ######################################################################### ; Assembler specific inst...
Code/MPLAB/M16C5x_Tst3.asm
MorrisMA/M16C5x
9
54415
;******************************************************************************* ; M16C5x_Tst3.ASM ; ; This is the source for the test program used to develop the PIC16C5x proce- ; core. It has also been used to test the P16C5x version of the PIC16C5x core. ; ; The first instruction of the program is expected to ...
engine/hidden_object_functions3.asm
adhi-thirumala/EvoYellow
16
54416
; prints text for bookshelves in buildings without sign events PrintBookshelfText: ld a, [wPlayerFacingDirection] ; player's sprite facing direction cp SPRITE_FACING_UP jr nz, .noMatch ; facing up ld a, [wCurMapTileset] ld b, a aCoord 8, 7 ld c, a ld hl, BookshelfTileIDs .loop ld a, [hli] cp $ff jr z, .noMat...
data/pokemon/dex_entries/dialga.asm
AtmaBuster/pokeplat-gen2
6
54419
<gh_stars>1-10 db "TEMPORAL@" ; species name db "This #MON can" next "control the flow" next "of time. It uses" page "this power to" next "travel through the" next "past and future.@"
tests/test3.asm
kasselouris/Compiler
4
54420
<gh_stars>1-10 b Lmain L0: sw $ra, ($sp) L1: lw $t1, -16($sp) sw $t1, -16($s0) L2: lw $t1, -12($sp) sw $t1, -16($sp) L3: addi $fp, $sp, 24 lw $t0, -12($sp) sw $t0, -12($fp) L4: addi $t0, $sp, -20 sw $t0, -8($fp) L5: lw $t0, -4($sp) sw $t0, -4($fp) addi $sp, $sp, 24 jal L0 addi $sp, ...
oeis/002/A002489.asm
neoneye/loda-programs
11
54421
<reponame>neoneye/loda-programs<gh_stars>10-100 ; A002489: a(n) = n^(n^2), or (n^n)^n. ; Submitted by <NAME> ; 1,1,16,19683,4294967296,298023223876953125,10314424798490535546171949056,256923577521058878088611477224235621321607,6277101735386680763835789423207666416102355444464034512896,1966270504755529136180759085269121...
samples/hola.asm
wilsonpilon/msx-menu
0
54422
; hola.asm ;bdos: equ 5 org 5 bdos: org 100H if defined CPM86 ; Install a call to bdos in the cp/m bdos call address ld a,0CDh ld (5),a ld a,0E0h ld (6),a ld a,0C3h ld (7),a endif ld bc,2565 ; scf ccf sigue: push bc call sayhello ; ld a, 1 ;otro: ; dec a ; defb...
oeis/053/A053666.asm
neoneye/loda-programs
11
54424
; A053666: Product of digits of n-th prime. ; Submitted by <NAME>iga ; 2,3,5,7,1,3,7,9,6,18,3,21,4,12,28,15,45,6,42,7,21,63,24,72,63,0,0,0,0,3,14,3,21,27,36,5,35,18,42,21,63,8,9,27,63,81,2,12,28,36,18,54,8,10,70,36,108,14,98,16,48,54,0,3,9,21,9,63,84,108,45,135,126,63,189,72,216,189,0,0,36,8,12,36,108,48,144,140,24,72,...
contrib/boringssl-cmake/win-x86/crypto/fipsmodule/co-586.asm
pdv-ru/ClickHouse
15,577
54425
<reponame>pdv-ru/ClickHouse ; This file is generated from a similarly-named Perl script in the BoringSSL ; source tree. Do not edit by hand. %ifdef BORINGSSL_PREFIX %include "boringssl_prefix_symbols_nasm.inc" %endif %ifidn __OUTPUT_FORMAT__,obj section code use32 class=code align=64 %elifidn __OUTPUT_FORMAT__,win32 %...
constants/item_data_constants.asm
AtmaBuster/pokeplat-gen2
6
54426
; item_attributes struct members (see data/items/attributes.asm) const_def const ITEMATTR_PRICE const ITEMATTR_PRICE_HI const ITEMATTR_EFFECT const ITEMATTR_PARAM const ITEMATTR_PERMISSIONS const ITEMATTR_POCKET const ITEMATTR_HELP ITEMATTR_STRUCT_LENGTH EQU const_value ; item types const_def 1 const ITEM ...
programs/oeis/037/A037529.asm
karttu/loda
1
54428
; A037529: Base-4 digits are, in order, the first n terms of the periodic sequence with initial period 1,1,2. ; 1,5,22,89,357,1430,5721,22885,91542,366169,1464677,5858710,23434841,93739365,374957462,1499829849,5999319397,23997277590,95989110361,383956441445,1535825765782,6143303063129,24573212252517,98292849010070 mov...
src/chapter_7/signed_byte_operations.asm
marinjurjevic/x86-64_programming
0
54430
; Chapter 7 ; 7.9.2 Suggested Projects ; 2) Create a program to compute various signed ; byte arithmetic expressions ; *********************************** ; Data declarations section .data ; operands bNum1 db 10 bNum2 db -20 bNum3 db 30 bNum4 db ...
Kernel/asm/interrupts.asm
nclozza/so-tp3
0
54432
<reponame>nclozza/so-tp3<filename>Kernel/asm/interrupts.asm GLOBAL _cli GLOBAL _sti GLOBAL picMasterMask GLOBAL picSlaveMask GLOBAL haltcpu GLOBAL _hlt GLOBAL _irq00Handler GLOBAL _irq01Handler GLOBAL _irq02Handler GLOBAL _irq03Handler GLOBAL _irq04Handler GLOBAL _irq05Handler GLOBAL _changeThread GLOBAL _yieldThrea...
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48.log_21829_161.asm
ljhsiun2/medusa
9
54434
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r14 push %r8 push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0xdb30, %rsi lea addresses_WT_ht+0x64f0, %rdi nop nop nop nop nop sub %rdx, %rdx mov $126, %rcx rep movsb nop xor %rsi, %rsi lea addresses_UC_ht+0x19830, %r8 clflush (%r8)...
programs/oeis/261/A261585.asm
karttu/loda
0
54436
<reponame>karttu/loda<filename>programs/oeis/261/A261585.asm ; A261585: Number of sexagesimal digits of Fibonacci numbers in base-60 representation. ; 1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,10,10,10,10...
Transynther/x86/_processed/AVXALIGN/_zr_/i7-8650U_0xd2_notsx.log_1640_1408.asm
ljhsiun2/medusa
9
54437
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r12 push %r14 push %rbp push %rcx push %rdi push %rsi lea addresses_D_ht+0x14caa, %r12 nop nop nop nop nop xor %r10, %r10 mov $0x6162636465666768, %r14 movq %r14, %xmm1 movups %xmm1, (%r12) nop nop nop nop nop add $25376, %r11 lea add...
oeis/108/A108850.asm
neoneye/loda-programs
11
54438
<reponame>neoneye/loda-programs<filename>oeis/108/A108850.asm ; A108850: Number of 1's in the binary expansion of the repunits. ; 0,1,3,6,6,9,8,10,12,18,15,16,21,17,20,23,28,33,30,35,34,38,39,39,37,39,44,47,51,48,50,48,59,62,55,55,56,62,60,64,66,64,68,62,77,76,78,76,76,73,83,81,86,105,89,94,94,103,97,93,89,90,105,109,1...
data/pokemon/base_stats/gyarados.asm
Trap-Master/spacworld97-thingy
0
54439
<filename>data/pokemon/base_stats/gyarados.asm db 0 ; species ID placeholder db 95, 125, 79, 81, 60, 100 ; hp atk def spd sat sdf db WATER, FLYING ; type db 45 ; catch rate db 214 ; base exp db NO_ITEM, NO_ITEM ; items db GENDER_F0 ; gender ratio db 100 ; unknown 1 db 5 ; step cycles to hatch db...
examples/output3.asm
SeTSeR/CompilerLab
2
54440
<reponame>SeTSeR/CompilerLab [BITS 64] default rel global a global b global f1 global f2 global f3 global df1 global df2 global df3 section .rodata a dq 0.000000 b dq 4.000000 const2 dq 2.000000 const3 dq 4.000000 const4 dq 0.628319 const5 dq 0.000000 ...
thirdparty/ffmpeg/libavfilter/x86/vf_framerate.asm
yashrajsingh1998/ApraPipes1
2,151
54441
;***************************************************************************** ;* x86-optimized functions for framerate filter ;* ;* Copyright (C) 2018 <NAME> ;* ;* Based on vf_blend.asm, Copyright (C) 2015 <NAME> ;* ;* This file is part of FFmpeg. ;* ;* FFmpeg is free software; you can redistribute it and/or ;* modify...
uti/usethings.asm
olifink/smsqe
0
54442
<gh_stars>0 ; Use and Free all kind of standard things  1993 <NAME> V0.03 section utility include dev8_keys_wman include dev8_keys_wstatus include dev8_keys_qdos_sms include dev8_keys_thg xdef ut_thuse ; use a thing xdef ut_thfre ; free a thing xdef ut_ushok ; use Hotkey xdef ut_frhok ; free Hotkey ...
Misc/Opencores/c16_latest.tar/c16/trunk/test.asm
Main-Project-MEC/Systolic-Processor-On-FPGA
3
54443
<reponame>Main-Project-MEC/Systolic-Processor-On-FPGA<gh_stars>1-10 IN_RX_DATA = 0x00 ; IN_STATUS = 0x01 ; IN_TEMPERAT = 0x02 ; IN_DIP_SWITCH = 0x03 ; IN_CLK_CTR_LOW = 0x05 ; IN_CLK_CTR_HIGH = 0x06 ; MEMTOP =0x2000 OUT_TX_DATA = 0x00 ; OUT_LEDS = 0x02 ; OUT_INT_MASK = 0x03 ; OUT_RESET_TIMER = 0x04 ...
audio/music/elmslab.asm
Dev727/ancientplatinum
28
54444
<filename>audio/music/elmslab.asm Music_ElmsLab: musicheader 4, 1, Music_ElmsLab_Ch1 musicheader 1, 2, Music_ElmsLab_Ch2 musicheader 1, 3, Music_ElmsLab_Ch3 musicheader 1, 4, Music_ElmsLab_Ch4 Music_ElmsLab_Ch1: tempo 144 volume $77 dutycycle $3 tone $0001 vibrato $10, $15 stereopanning $f0 notetype $c, $b2...
bootloader/kernel.asm
vitoriapinheiro/InfrasoftwareProject
1
54445
org 0x7e00 jmp 0x0000:start data: ; dados da interface console texto_menu_console db 'PLAYSTATION 6', 0 ; texto console texto_menu_pong db 'P - JOGAR PONG', 0 ; texto jogar Pong console texto_menu_space db 'S - JOGAR SPACE INVADERS', 0 ; texto jogar S...
programs/oeis/258/A258402.asm
karttu/loda
1
54446
; A258402: a(n) = (n^2 + 4*n + 6) * n^2. ; 0,11,72,243,608,1275,2376,4067,6528,9963,14600,20691,28512,38363,50568,65475,83456,104907,130248,159923,194400,234171,279752,331683,390528,456875,531336,614547,707168,809883,923400,1048451,1185792,1336203,1500488,1679475,1874016,2084987,2313288,2559843,2825600,3111531,3418632,...
hello.asm
rlt3/Little-Man-Computer
2
54447
PRINT LDD INDEX BRZ EXIT PRT LDA INDEX ADD ONE STA INDEX BRA PRINT EXIT HLT ONE DAT 1 INDEX DAT STRING STRING DAT 72 DAT 101 DAT 108 DAT 108 DAT 111 DAT 44 DAT 32 DAT 87 DAT 111 DAT 114 DAT 108 ...
oeis/074/A074557.asm
neoneye/loda-programs
11
54448
<filename>oeis/074/A074557.asm ; A074557: 3^n + 6^n + 9^n. ; Submitted by <NAME>(s1) ; 3,18,126,972,7938,67068,578826,5065092,44732898,397517868,3547309626,31744033812,284606850258,2554928116668,22955161402026,206361331428132,1855841341806018,16694108488251468,150196195641088026,1351461078575264052,12161321620983776178...
test/e2e/gcd.branches.asm
matanlurey/armv4t.dart
8
54449
<reponame>matanlurey/armv4t.dart ; ARM MODE. code32 processor CPU32_V1 gcd: CMP r0, r1 ; 0x00 | set condition codes based on r0 - r1 BEQ done ; 0x40 | if result was 0, goto done (0x30), we found the GCD BLT less ; 0x08 | if result was - or + overflow, goto less (0x20) SUB r0, r0, r...
libsrc/osca/dir_get_entry_size.asm
RC2014Z80/z88dk
8
54450
; ; Old School Computer Architecture - interfacing FLOS ; <NAME>, 2011 ; ; Get file size (long) associated to current directory entry ; ; $Id: dir_get_entry_size.asm,v 1.5 2016-06-22 22:13:09 dom Exp $ ; INCLUDE "flos.def" SECTION code_clib PUBLIC dir_get_entry_size PUBLIC _dir_get_entry_size dir_ge...
oeis/203/A203229.asm
neoneye/loda-programs
11
54452
<reponame>neoneye/loda-programs ; A203229: (n-1)-st elementary symmetric function of (1,16,...,n^4). ; Submitted by <NAME> ; 1,17,1393,357904,224021776,290539581696,697854274212096,2859056348455305216,18760911610508623282176,187626456226399005573120000,2747212346823835568109649920000,56968733990900457398848318341120000...
src/firmware/Platform/Arithmetic4.asm
pete-restall/Cluck2Sesame-Prototype
1
54454
<reponame>pete-restall/Cluck2Sesame-Prototype #include "Platform.inc" #include "GeneralPurposeRegisters.inc" radix decimal Arithmetic4 code global mul4x4 mul4x4: .safelySetBankFor RAA clrw bcf STATUS, C btfsc RAA, 0 addwf RBA, W rlf RBA btfsc RAA, 1 addwf RBA, W rlf RBA btfsc RAA, 2 addwf RBA, W rlf ...
Platform/C64/src/2d.asm
martinhaye/lawless-legends
51
54455
<reponame>martinhaye/lawless-legends RASTER_TOP_FRAME=170 REGISTER_01=%00110101 ;#$35 (53) mapPosX = $0a ;and $0b mapPosY = $0c ;and $0d mapSizeX = $0e ;and $0f mapSizeY = $10 ;$and 11 tile = $12 x = $13 y = $14 tileBitmapPointer_LO = $15 tileBitmapPointer_HI = $16 mapBitmapPointer_LO = $17 mapBitmapPointer_HI = $1...
programs/oeis/336/A336529.asm
neoneye/loda
22
54457
; A336529: a(n) = (n^3+5*n+3)/3 + 2*floor(n/2) + a(n-2), with a(0)=1 and a(1)=3. ; 1,3,10,20,43,75,132,208,325,475,686,948,1295,1715,2248,2880,3657,4563,5650,6900,8371,10043,11980,14160,16653,19435,22582,26068,29975,34275,39056,44288,50065,56355,63258,70740,78907,87723,97300,107600,118741,130683,143550,157300,172063,18...
Driver/Mouse/mouseSerCommon.asm
steakknife/pcgeos
504
54458
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1989 -- All Rights Reserved PROJECT: PC GEOS MODULE: Mouse Driver Common Code FILE: mouseSerCommon.asm AUTHOR: <NAME>, Sep 25, 1989 ROUTINES: Name Description ---- ----------- MouseOpenPort ...
oeis/244/A244151.asm
neoneye/loda-programs
11
54459
; A244151: 0-additive sequence: start with a(1) = 2; thereafter, a(n) = smallest number not already in sequence which is not the sum of any previous two terms. ; Submitted by <NAME> ; 2,3,4,8,9,14,15,20,21,26,27,32,33,38,39,44,45,50,51,56,57,62,63,68,69,74,75,80,81,86,87,92,93,98,99,104,105,110,111,116,117,122,123,128,...
P6/data_P6_2/ALUTest42.asm
alxzzhou/BUAA_CO_2020
1
54460
<filename>P6/data_P6_2/ALUTest42.asm addiu $5,$3,-32002 addu $4,$1,$3 addu $3,$4,$3 lh $6,10($0) addu $3,$6,$3 lh $0,12($0) xor $3,$4,$3 sltu $4,$4,$3 sh $0,10($0) sra $5,$3,28 andi $3,$3,28480 sw $4,8($0) ori $3,$3,57994 srav $5,$0,$3 srav $3,$3,$3 lb $4,9($0) xori $1,$4,470 lw $1,16($0) slt $3,$3,$3 srl $3,$3,9 and $...
user/wc.asm
Holmesus/6.S081-2020
0
54461
user/_wc: file format elf64-littleriscv Disassembly of section .text: 0000000000000000 <wc>: char buf[512]; void wc(int fd, char *name) { 0: 7119 addi sp,sp,-128 2: fc86 sd ra,120(sp) 4: f8a2 sd s0,112(sp) 6: f4a6 sd s1,104(sp) 8: ...
oeis/114/A114243.asm
neoneye/loda-programs
11
54462
<reponame>neoneye/loda-programs ; A114243: a(n) = (n+1)(n+2)^2*(n+3)(n+4)(3n+5)/240. ; Submitted by <NAME>(s3) ; 1,12,66,245,714,1764,3864,7722,14355,25168,42042,67431,104468,157080,230112,329460,462213,636804,863170,1152921,1519518,1978460,2547480,3246750,4099095,5130216,6368922,7847371,9601320,11670384,14098304,16933...
programs/oeis/120/A120892.asm
neoneye/loda
22
54464
<reponame>neoneye/loda ; A120892: a(n)=3*a(n-1)+3*a(n-2)-a(n-3);a(0)=1,a(1)=0,a(2)=3. a(n)=4*{a(n-1)+(-1)^n}-a(n-2);a(0)=1,a(1)=0. ; 1,0,3,8,33,120,451,1680,6273,23408,87363,326040,1216801,4541160,16947843,63250208,236052993,880961760,3287794051,12270214440,45793063713,170902040408,637815097923,2380358351280,8883618307...
main.asm
nesdoug/SNES_13
11
54465
<reponame>nesdoug/SNES_13 ; example 13 SNES code .p816 .smart .include "regs.asm" .include "variables.asm" .include "macros.asm" .include "init.asm" .include "library.asm" .include "Background/metatiles.asm" .include "MUSIC/music.asm" .segment "CODE" ; enters here in forced blank Main: .a16 ; the setting from...
frisbee.asm
SayantonDibbo/lab2_os
1
54466
<reponame>SayantonDibbo/lab2_os _frisbee: file format elf32-i386 Disassembly of section .text: 00000000 <main>: int cur_owner = 0; void *frisbee_task(void *arg); int main(int argc, char *argv[]) { 0: 55 push %ebp 1: 89 e5 mov %esp,%ebp 3: 57 ...
test/addr64x.asm
bitwiseworks/nasm-os2
3
54467
<reponame>bitwiseworks/nasm-os2 ;Testname=O0; Arguments=-O0 -fbin -oaddr64.bin; Files=stdout stderr addr64.bin ;Testname=O1; Arguments=-O1 -fbin -oaddr64.bin; Files=stdout stderr addr64.bin ;Testname=Ox; Arguments=-Ox -fbin -oaddr64.bin; Files=stdout stderr addr64.bin bits 64 mov rdx,[rax] mov eax,[byte rsp+0x0...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_864.asm
ljhsiun2/medusa
9
54468
.global s_prepare_buffers s_prepare_buffers: push %r13 push %r8 push %r9 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_WT_ht+0x9cbc, %rsi lea addresses_WC_ht+0x124bc, %rdi nop nop nop nop add $38568, %rbp mov $73, %rcx rep movsb cmp %rdi, %rdi lea addresses_WT_ht+0x5494, %rcx nop nop nop cmp $33887, %...
oeis/016/A016316.asm
neoneye/loda-programs
11
54472
<gh_stars>10-100 ; A016316: Expansion of 1/((1-2x)(1-8x)(1-9x)). ; Submitted by <NAME> ; 1,19,255,2975,32231,333759,3353335,32976175,319155111,3051352799,28893830615,271497720975,2535105456391,23548956856639,217804673719095,2007154559579375,18439691005140071,168959618797797279,1544655767192730775,14094055488835543375,1...
text/maps/fuchsia_gym.asm
longlostsoul/EvoYellow
16
54473
<reponame>longlostsoul/EvoYellow _KogaBeforeBattleText:: text "KOGA: Fwahahaha!" para "A mere child like" line "you dares to" cont "challenge me?" para "Very well, I" line "shall show you" cont "true terror as a" cont "ninja master!" para "You shall feel" line "the despair of" cont "poison and sleep" con...
programs/oeis/141/A141955.asm
neoneye/loda
22
54474
; A141955: Primes congruent to 11 mod 27. ; 11,173,227,281,389,443,659,821,929,983,1091,1307,1361,1523,1847,1901,2063,2333,2441,2549,2657,2711,2819,2927,3089,3251,3359,3413,3467,4007,4493,4547,4817,4871,5087,5303,5519,5573,5843,5897,6113,6221,6329,6491,6599,6653,6761,6869,6977,7193,7247,7517,7841,7949,8111,8219,8273,85...
oeis/341/A341704.asm
neoneye/loda-programs
11
54475
<filename>oeis/341/A341704.asm ; A341704: a(n) = 20*binomial(n,6) + 2*binomial(n,3) + 1. ; Submitted by <NAME> ; 1,1,1,3,9,21,61,211,673,1849,4441,9571,18921,34893,60789,101011,161281,248881,372913,544579,777481,1087941,1495341,2022483,2695969,3546601,4609801,5926051,7541353,9507709,11883621,14734611,18133761,22162273,...
PRIDE_64_128_AVR/Pride_Sce2_CTR/Pride_Sce2_CTR.asm
FreeDisciplina/BlockCiphersOnAVR
12
54477
/* * Pride_Sce2_CTR.asm * * Created: 2015/9/15 14:12:38 * Author: LuoPeng * * Time : 2015.9.25 */ .EQU PTEXT_NUM_BYTE = 16 ; 128 bits is 16 bytes .EQU WHITEN_KEY0_NUM_BYTE = 8 ; whiten key0 is 8 bytes .EQU KEYS_NUM_BYTE = 80 ; round keys .EQU ENC_DEC_ROUNDS = 19 .EQU COUNT_SIZE_BYTE = 8 #define EN...
Transynther/x86/_processed/AVXALIGN/_st_/i9-9900K_12_0xa0_notsx.log_21829_1220.asm
ljhsiun2/medusa
9
54478
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r15 push %r8 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_UC_ht+0x7f6c, %r10 nop nop nop and %rdi, %rdi movw $0x6162, (%r10) cmp %rbp, %rbp lea addresses_D_ht+0x11b95, %rsi lea addresses_D_ht+0x427d, %rdi cmp %r15, %r15 mov $42, %rcx rep mo...
programs/oeis/239/A239592.asm
karttu/loda
1
54479
<gh_stars>1-10 ; A239592: (n^4 - n^3 + 4*n^2 + 2)/2. ; 1,3,13,46,129,301,613,1128,1921,3079,4701,6898,9793,13521,18229,24076,31233,39883,50221,62454,76801,93493,112773,134896,160129,188751,221053,257338,297921,343129,393301,448788,509953,577171,650829,731326,819073,914493,1018021,1130104,1251201,1381783,1522333,1673346...
src/firmware/Ui/BootAndWakeupStates.asm
pete-restall/Cluck2Sesame-Prototype
1
54481
#include "Platform.inc" #include "TailCalls.inc" #include "PowerManagement.inc" #include "Lcd.inc" #include "Ui.inc" #include "States.inc" radix decimal defineUiState UI_STATE_BOOT bsf uiFlags, UI_FLAG_PREVENTSLEEP setUiNextState UI_STATE_SETTINGS goto fullPowerMode defineUiStateInSameSection UI_STATE...
src/audio-player-irq.asm
SvenMichaelKlose/nipkow
4
54482
irq_break_delay = @(half 3) irq_delay = 7 irq_handler_delay = 29 restart_delay = @(+ irq_break_delay irq_delay irq_handler_delay) timer = @(- (* 8 (nipkow-longest-pulse)) restart_delay) tape_audio_player: if @*nipkow-disable-interrupts?* sei lda #$7f sta $911e sta $912e sta $912d end ; Boost ...
programs/oeis/323/A323641.asm
karttu/loda
1
54483
<filename>programs/oeis/323/A323641.asm ; A323641: Triangle read by rows in which row n lists the first 2^n terms of A323642, n >= 1. ; 1,2,1,2,3,6,1,2,3,6,3,6,9,18,1,2,3,6,3,6,9,18,3,6,9,18,9,18,27,54,1,2,3,6,3,6,9,18,3,6,9,18,9,18,27,54,3,6,9,18,9,18,27,54,9,18,27,54,27,54,81,162,1,2,3,6,3,6,9,18,3,6,9,18,9,18,27,54,...
test/asm/underscore-in-numeric-literal.asm
michealccc/rgbds
265
54485
<gh_stars>100-1000 SECTION "Test", ROM0 _1234:: ; without underscores dw _1234 ; label db 123, 123, 123 ; decimal dw 12345 ; decimal dw $abcd ; hex db &200 ; octal db %11110000, %10 ; binary dl 6.283185 ; fixed point ; with underscores dw _1234 ; label db 123, 1_23, 1__23 ; decimal dw 12_345 ; decimal dw ...