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
src/co/co.asm
0x7cc/co
3
197029
bits 64 global co_atomic_get global co_atomic_set global co_atomic_inc global co_atomic_dec global co_atomic_add global co_atomic_sub global co_store_context global co_load_context global co_swap_context global co_exited_asm %define elf64_fastcall_argv0 rdi %define elf64_fastcall_argv1 rsi %define elf64_fastcall_argv...
programs/oeis/267/A267448.asm
neoneye/loda
22
197030
; A267448: Total number of OFF (white) cells after n iterations of the "Rule 129" elementary cellular automaton starting with a single ON (black) cell. ; 0,3,7,14,18,26,34,49,53,61,69,85,93,109,125,156,160,168,176,192,200,216,232,264,272,288,304,336,352,384,416,479,483,491,499,515,523,539,555,587,595,611,627,659,675,70...
L1/TPs/0204-ASM/tp1/echange.asm
Tehcam/Studies
0
197031
LOAD mem[0] Out LOAD mem[1] Out STORE mem[2] LOAD mem[0] STORE mem[1] LOAD mem[2] STORE mem[0] Out LOAD mem[1] Out END
oeis/025/A025743.asm
neoneye/loda-programs
11
197033
<filename>oeis/025/A025743.asm ; A025743: Index of 10^n within sequence of numbers of form 5^i*10^j. ; Submitted by <NAME> ; 1,3,6,11,17,25,34,45,57,70,85,101,119,138,159,181,204,229,255,283,312,343,375,408,443,479,517,556,597,639,682,727,773,821,870,921,973,1026,1081,1137,1195,1254,1315,1377,1440,1505,1571,1639,1708,1...
game/gameengine.asm
hxlnt/w2
1
197034
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Game engine ATTRACT = %00000000 ATTRACT_INIT = %10000000 END = %00000010 END_INIT = %10000010 .org $8302 ; Start game loop for GameLoopAttract: ; ATTRACT gamestate. LDY framecounter ...
oeis/055/A055838.asm
neoneye/loda-programs
11
197035
; A055838: T(2n+4,n), where T is the array in A055830. ; Submitted by <NAME> ; 5,30,162,850,4425,22995,119560,622512,3246750,16963375,88779900,465386220,2443204946,12844119225,67608235800,356288599640,1879625199825,9925931817045,52464942758250,277546278287250,1469410713072225,7785176769963450,41275224192398976,21897087...
oeis/027/A027875.asm
neoneye/loda-programs
11
197036
<filename>oeis/027/A027875.asm ; A027875: a(n) = Product_{i=1..n} (7^i - 1). ; Submitted by <NAME> ; 1,6,288,98496,236390400,3972777062400,467389275837235200,384914699001548351078400,2218956256804125934296760320000,89542886518308517126993353029713920000,25293649075895054915959694891419990921052160000,500138087205308796...
understanding-stack.asm
kopytjuk/learn-8051
0
197037
<filename>understanding-stack.asm ; 8051 family ; EdSim51 ; stack pointer points to data memory (DM) where it places a 16bit program-memory (PM) address ; of the operation right after ACALL, LCALL execution. ; After the RET call the programm counter jumps to the address DM(SP-2) ORG 0000h JMP start ; jumps to 0x50 i...
gfx/battle_anims.asm
Dev727/ancientplatinum
28
197038
AnimObj00GFX: AnimObjHitGFX: INCBIN "gfx/battle_anims/hit.2bpp.lz" AnimObjCutGFX: INCBIN "gfx/battle_anims/cut.2bpp.lz" AnimObjFireGFX: INCBIN "gfx/battle_anims/fire.2bpp.lz" AnimObjWaterGFX: INCBIN "gfx/battle_anims/water.2bpp.lz" AnimObjLightningGFX: INCBIN "gfx/battle_anims/lightning.2bpp.lz" An...
boot/print_string.asm
patrickanguyen/patOS
9
197039
<reponame>patrickanguyen/patOS<gh_stars>1-10 print_string: pusha start: mov al, [bx] cmp al, 0 je end mov ah, 0x0e int 0x10 add bx, 1 jmp start end: popa ret
assembly_code/chp7_01.asm
Nabeegh-Ahmed/BelalHashmi-Assembly-Exercise-Solutions
104
197040
<reponame>Nabeegh-Ahmed/BelalHashmi-Assembly-Exercise-Solutions<gh_stars>100-1000 [org 0x0100] jmp start flag: db 0 start: mov al, 0x0F ;Byte to find mov bx, 0x0000 ;Starting from segment 0x0000 l1: mov es, bx mov cx, 0xFFFF mov di, 0 repne scasb je found add bx, 1000 cmp b...
hires.asm
visy/c64demo2017
0
197043
.var part_lo = $c1 .var part_hi = $c2 .function toSpritePtr(addr) { .return (addr)/$40 } .macro SetMultiColorMode() { lda $d016 ora #16 sta $d016 } .const Black = 000 * 65536 + 000 * 256 + 000 .const White = 255 * 65536 + 255 * 256 + 255 .const Red ...
oeis/132/A132307.asm
neoneye/loda-programs
11
197044
; A132307: 2*A007318^(2) - A000012. ; Submitted by <NAME> ; 1,3,1,7,7,1,15,23,11,1,31,63,47,15,1,63,159,159,79,19,1,127,383,479,319,119,23,1,255,895,1343,1119,559,167,27,1,511,2047,3583,3583,2239,895,223,31,1,1023,4607,9215,10751,8063,4031,1343,287,35,1 mov $1,$0 seq $1,120910 ; Triangle read by rows: T(n,k) is the nu...
programs/oeis/270/A270510.asm
karttu/loda
0
197045
<reponame>karttu/loda<filename>programs/oeis/270/A270510.asm ; A270510: Number of 2X2X2 triangular 0..n arrays with some element plus some adjacent element totalling n+1 exactly once. ; 3,6,21,36,63,90,129,168,219,270,333,396,471,546,633,720,819,918,1029,1140,1263,1386,1521,1656,1803,1950,2109,2268,2439,2610,2793,2976,...
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_2980_1309.asm
ljhsiun2/medusa
9
197046
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r14 push %r8 push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0x148, %r11 nop nop nop nop nop and $33691, %r10 mov $0x6162636465666768, %r8 movq %r8, %xmm3 vmovups %ymm3, (%r11) nop nop nop nop nop sub $62840, %r14 lea addresses_WT_ht...
srcs/ft_write.asm
caio-vinicius/libasm
0
197048
section .text global ft_write extern __errno_location ft_write: mov rax, 1 syscall cmp rax, 0 jl ft_write_error ret ft_write_error: neg rax push rax call __errno_location pop rbx mov [rax], rbx mov rax, -1 ret
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xa0_notsx.log_5_1541.asm
ljhsiun2/medusa
9
197049
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r15 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_D_ht+0x1038, %r15 nop nop nop and $22406, %rax movups (%r15), %xmm3 vpextrq $0, %xmm3, %rbp nop nop dec %r12 lea addresses_D_ht+0xe538, %rsi lea addresses_normal_ht+0...
Transynther/x86/_processed/AVXALIGN/_st_/i9-9900K_12_0xa0.log_21829_1933.asm
ljhsiun2/medusa
9
197050
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r15 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_WC_ht+0x897c, %rsi lea addresses_WC_ht+0xa0f4, %rdi nop nop nop nop nop and $13727, %r11 mov $115, %rcx rep movsq nop nop nop nop and %r11, %r11 lea addresses_D_ht+0xf3b4, %rbx nop ...
works-done/Guia15/3-dado4=dado1+dado2+dado3.asm
axell-brendow/computer-architecture-i
0
197051
<filename>works-done/Guia15/3-dado4=dado1+dado2+dado3.asm ; area de codigo iniciara' a partir do endereco 2000H # ORG 2000H # BEGIN 2000H LDA 2501 ; carrega o primeiro dado no acumulador MOV H, A ; transfere o dado para o registrador H LDA 2502 ; carrega o segundo dado no acumulador ADD H ; adiciona o segundo d...
calculate_mean.asm
daniyalmarofi/assembly
0
197052
<gh_stars>0 .ORIG x3000 LD R1, arr ; this is the pointer to the first element of the array AND R2, R2, #0 ; now R2 is zero for the sum LD R4, count ; R4 is the counter ADD R4, R4, #-1 ; R4=R4-1; because the array is from x1000 to x1063 (0 to 99) Loop LDR R3, R1, #0 ; R3 is the value of ...
code/basic.asm
zxwanderer/A-World-of-One-way
7
197053
<reponame>zxwanderer/A-World-of-One-way org #5CCB basic: dw #00,endB - startLine startLine: db #F9,#C0 ; RANDOMIZE USR db '23774' ; ADDR db #3A,#EA ; : REM db #0E,#00,#00 ; ADDR value dw code db #00 code: ; 23774 include "includes.asm" vars: db #0D display "Launch ad...
Transynther/x86/_processed/AVXALIGN/_st_sm_/i9-9900K_12_0xca_notsx.log_21829_1280.asm
ljhsiun2/medusa
9
197054
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r15 push %rax push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0x5dd2, %rsi lea addresses_A_ht+0x144f2, %rdi nop nop xor %r15, %r15 mov $6, %rcx rep movsl nop and %rsi, %rsi lea addresses_WT_ht+0x1e972, %rsi lea addresses_A...
sw/552tests/rand_complex/t_5_all.asm
JPShen-UWM/ThreadKraken
1
197055
// seed 5 lbi r0, 134 // icount 0 slbi r0, 69 // icount 1 lbi r1, 201 // icount 2 slbi r1, 50 // icount 3 lbi r2, 132 // icount 4 slbi r2, 221 // icount 5 lbi r3, 43 // icount 6 slbi r3, 122 // icount 7 lbi r4, 65 // icount 8 slbi r4, 217 // icount 9 lbi r5, 248 // icount 10 slbi r5, 115 // icount 11 lbi r6, 187 // ico...
Ficheiros assembly (TP's e Testes)/ex3-folha4.asm
pemesteves/mpcp-1718
0
197056
include mpcp.inc ;; declaracoes de dados (variaveis globais) .data seq BYTE "ABCDE" msg BYTE "%c", 13, 10, 0 ;; seccao de codigo principal .code main PROC C xor eax, eax mov ebx, lengthof seq mov edi, offset seq ciclo: cmp ebx, 0 je fim mov eax, [edi] push eax inc edi dec ebx jm...
oeis/123/A123380.asm
neoneye/loda-programs
11
197058
<gh_stars>10-100 ; A123380: Values x of the solutions (x,y) of the Diophantine equation 5*(X-Y)^4 - 8*X*Y = 0 with X >= Y. ; Submitted by <NAME> ; 0,120,164616,237056040,341822489232,492907330815000,710772011684039448,1024932747275425020360,1477952310773874820172064,2131206207202220378636535480,307319787283325456360362...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_48.asm
ljhsiun2/medusa
9
197059
<filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_48.asm .global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r13 push %r14 push %rax push %rcx push %rdi push %rsi lea addresses_WT_ht+0x19031, %rsi cmp %r12, %r12 mov (%rsi), %ax nop sub $58388, %rcx lea addresses_D_ht+0xcc31, %...
oeis/203/A203303.asm
neoneye/loda-programs
11
197060
<reponame>neoneye/loda-programs ; A203303: Vandermonde determinant of the first n terms of (1,2,4,8,16,...). ; Submitted by <NAME> ; 1,1,6,1008,20321280,203199794380800,4096245678214226116608000,671169825411994707343327912777482240000,3589459026274030507466469204160461571257625328222208000000,25112297211410867540311546...
oeis/253/A253433.asm
neoneye/loda-programs
11
197061
; A253433: Number of (n+1) X (6+1) 0..1 arrays with every 2 X 2 subblock diagonal minus antidiagonal sum nondecreasing horizontally, vertically and ne-to-sw antidiagonally. ; Submitted by <NAME>(s1.) ; 325,318,336,372,444,588,876,1452,2604,4908,9516,18732,37164,74028,147756,295212,590124,1179948,2359596,4718892,9437484...
src/fs/IncreaseFileSize.asm
beckadamtheinventor/BOSos
1
197062
;@DOES increase the size of a file ;@INPUT IX = pointer to file slot ;@INPUT HL = amount to increase file size by ;@OUTPUT C flag is set if failed fs_IncreaseFileSize: ld iy,(ix+4) ;VAT pointer ld bc,(iy+15) ;file size add hl,bc ld (iy+15),hl jq fs_CopyFileToRAM.entry
oeis/287/A287665.asm
neoneye/loda-programs
11
197063
<reponame>neoneye/loda-programs ; A287665: Positions of 1's in A287663; complement of A287664. ; Submitted by <NAME> ; 1,5,6,10,14,15,19,20,24,28,29,33,37,38,42,43,47,51,52,56,57,61,65,66,70,74,75,79,80,84,88,89,93,97,98,102,103,107,111,112,116,117,121,125,126,130,134,135,139,140,144,148,149,153,154,158,162,163,167,171...
07/MemoryAccess/StaticTest/StaticTest.asm
JurajX/Nand2Tetris
0
197064
@111 D=A @SP AM=M+1 A=A-1 M=D @333 D=A @SP AM=M+1 A=A-1 M=D @888 D=A @SP AM=M+1 A=A-1 M=D @SP AM=M-1 D=M @StaticTest.8 M=D @SP AM=M-1 D=M @StaticTest.3 M=D @SP AM=M-1 D=M @StaticTest.1 M=D @StaticTest.3 D=M @SP AM=M+1 A=A-1 M=D @StaticTest.1 D=M @SP AM=M+1 A=A-1 M=D @SP AM=M-1 D=M A=A-1 M=M-D @StaticTest.8 D=M @SP AM=M...
oeis/190/A190593.asm
neoneye/loda-programs
11
197066
<reponame>neoneye/loda-programs ; A190593: Maximal digit in base-4 expansion of n. ; Submitted by <NAME> ; 0,1,2,3,1,1,2,3,2,2,2,3,3,3,3,3,1,1,2,3,1,1,2,3,2,2,2,3,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,2,3,1,1,2,3,2,2,2,3,3,3,3,3,1,1,2,3,1,1,2,3,2,2,2,3,3,3,3,3,2,2,2,3 lpb $0 mov...
boot/boot.nasm
tatewilhelm/bOSs
0
197067
<gh_stars>0 _start: mov ah, 0x0e mov al, 'B' int 0x10 mov ah, 0x0e mov al, 'o' int 0x10 mov ah, 0x0e mov al, 'o' int 0x10 mov ah, 0x0e mov al, 't' int 0x10 times 510-($-$$) db 0 db 0x55, 0xaa
x86_64-bios/bootboot.asm
vaginessa/bootboot
3
197068
;* ;* x86_64-bios/bootboot.asm ;* ;* Copyright (C) 2017 bzt (<EMAIL>) ;* ;* Permission is hereby granted, free of charge, to any person ;* obtaining a copy of this software and associated documentation ;* files (the "Software"), to deal in the Software without ;* restriction, including without limitation the rights to ...
simd/jidctfst-sse2-64.asm
imxiangpeng/libjpeg_turbo
2,151
197070
; ; jidctfst.asm - fast integer IDCT (64-bit SSE2) ; ; Copyright 2009 <NAME> <<EMAIL>> for Cendio AB ; Copyright 2009 <NAME> ; ; Based on ; x86 SIMD extension for IJG JPEG library ; Copyright (C) 1999-2006, MIYASAKA Masaru. ; For conditions of distribution and use, see copyright notice in jsimdext.inc ; ; This file sho...
oeis/048/A048900.asm
neoneye/loda-programs
11
197071
; A048900: Heptagonal pentagonal numbers. ; Submitted by <NAME> ; 1,4347,16701685,64167869935,246532939589097,947179489733441251,3639063353022941697757,13981280455134652269341655,53716075869563980995868941265,206377149509584359851476202998987,792900954699747240985390576053167301,3046325261579279390281510741720065771967...
mipsevm/test/sra.asm
koredefashokun/cannon
211
197072
############################################################################### # File : sra.asm # Project : MIPS32 MUX # Author: : <NAME> (<EMAIL>) # # Standards/Formatting: # MIPS gas, soft tab, 80 column # # Description: # Test the functionality of the 'sra' instruction. # #####################...
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48.log_21829_2665.asm
ljhsiun2/medusa
9
197073
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r14 push %r8 push %rbp push %rcx push %rdi push %rsi lea addresses_UC_ht+0xb605, %r8 nop nop nop nop and $46295, %r12 mov (%r8), %r14d and $10743, %rbp lea addresses_D_ht+0x12b8d, %r8 nop nop and %r12, %r12 movups (%r8), %xmm2 vpextrq...
texmap/tmap_16.asm
arbruijn/d1dos
2
197074
;THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX ;SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO ;END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A ;ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS ;IN USING, DISPLAYING, ...
oeis/054/A054614.asm
neoneye/loda-programs
11
197075
<reponame>neoneye/loda-programs<filename>oeis/054/A054614.asm ; A054614: a(n) = Sum_{d|n} phi(d)*7^(n/d). ; Submitted by <NAME> ; 0,7,56,357,2464,16835,118104,823585,5767328,40354335,282492280,1977326813,13841410464,96889010491,678223896728,4747561544985,33232936339456,232630513987319,1628413638500376,11398895185373269...
aom_dsp/x86/aom_subpixel_8t_ssse3.asm
Derekeasy/aom
147
197077
<filename>aom_dsp/x86/aom_subpixel_8t_ssse3.asm<gh_stars>100-1000 ; ; Copyright (c) 2016, Alliance for Open Media. All rights reserved ; ; This source code is subject to the terms of the BSD 2 Clause License and ; the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License ; was not distributed with thi...
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xa0.log_1_1547.asm
ljhsiun2/medusa
9
197078
<filename>Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xa0.log_1_1547.asm .global s_prepare_buffers s_prepare_buffers: push %r10 push %r8 push %r9 push %rax push %rbx push %rcx push %rdi push %rsi lea addresses_WC_ht+0x8546, %r10 nop nop nop dec %r9 mov $0x6162636465666768, %r8 movq %r8, (%r10) nop nop nop nop...
programs/oeis/158/A158127.asm
neoneye/loda
22
197079
<reponame>neoneye/loda ; A158127: a(n) = 100*n^2 + 2*n. ; 102,404,906,1608,2510,3612,4914,6416,8118,10020,12122,14424,16926,19628,22530,25632,28934,32436,36138,40040,44142,48444,52946,57648,62550,67652,72954,78456,84158,90060,96162,102464,108966,115668,122570,129672,136974,144476,152178,160080,168182,176484,184986,1936...
oeis/334/A334764.asm
neoneye/loda-programs
11
197080
<filename>oeis/334/A334764.asm ; A334764: a(n) = Product_{k=1..n} d(2*k - 1), where d() is the number of divisors function A000005. ; Submitted by <NAME>(s4) ; 1,2,4,8,24,48,96,384,768,1536,6144,12288,36864,147456,294912,589824,2359296,9437184,18874368,75497472,150994944,301989888,1811939328,3623878656,10871635968,4348...
Assembly/hello-world.asm
avanish001/hello-world-1
50
197081
global _start section .text _start: ; write(1, message, 13) mov rax, 1 ; system call 1 is write mov rdi, 1 ; file handle 1 is stdout mov rsi, message ; address of string to output mov rdx, 13 ;...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1773.asm
ljhsiun2/medusa
9
197082
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r11 push %r14 push %r15 push %rbp push %rcx push %rdi push %rsi lea addresses_D_ht+0x192cd, %rsi lea addresses_WC_ht+0x11dc1, %rdi nop cmp $36492, %r11 mov $70, %rcx rep movsb xor %rdi, %rdi lea addresses_UC_ht+0x1c7cd, %rsi lea addresses_normal_ht+0x13a...
programs/oeis/279/A279079.asm
neoneye/loda
22
197083
<reponame>neoneye/loda ; A279079: Maximum starting value of X such that repeated replacement of X with X-ceiling(X/9) requires n steps to reach 0. ; 0,1,2,3,4,5,6,7,8,10,12,14,16,19,22,25,29,33,38,43,49,56,64,73,83,94,106,120,136,154,174,196,221,249,281,317,357,402,453,510,574,646,727,818,921,1037,1167,1313,1478,1663,1...
muncher.asm
DavidB420/muncher
2
197084
;Muncher game for DavidDOS By <NAME> org 4000h start: ;Change Video mode to VGA 320x200 mov ah,0 mov al,13h int 10h ;Set background mov ax,0A000h mov es,ax mov cx,0xffff loopbg: mov bx,cx mov byte [es:bx],0x0a loop loopbg ;Spawn player mov byte [playerColor],4 call spawnplayer ;Show Score call prints...
ethflop.asm
michaelortmann/ethflop
0
197085
; ; ethflop - a floppy drive emulator over Ethernet ; Copyright (C) 2019 <NAME> ; Copyright (c) 2020 <NAME> ; ; ethflop is a small TSR that hooks itself on INT 13h and emulates a floppy ; drive. All requests for this drive are forwarded through Ethernet towards ; an ethflopd server. ; ; BUILD: ; nasm -f bin ...
base/mvdm/wow16/drivers/display/config.asm
npocmaka/Windows-Server-2003
17
197087
<reponame>npocmaka/Windows-Server-2003 ;*************************************************************************** ; * ; Copyright (C) 1985-1989 by Microsoft Inc. * ; * ;*************************************************************************** title Hardwa...
Borland/CBuilder5/Source/RTL/source/math/tanh.asm
TrevorDArcyEvans/DivingMagpieSoftware
1
197088
<reponame>TrevorDArcyEvans/DivingMagpieSoftware ;[]-----------------------------------------------------------------[] ;| TANH.ASM -- hyperbolic tangent function | ;[]-----------------------------------------------------------------[] ; ; C/C++ Run Time Library - Version 10.0 ; ; ...
45/beef/drv/syd/src/template.asm
minblock/msdos
0
197089
<reponame>minblock/msdos ;* ;* CW : Character Windows Drivers ;* ;* template.asm : template for a SYD file ;* items marked with "||--" must be changed ;***************************************************************************** include syd_head.inc ;||-- OPTIONAL: standard data for driver include syd_data.inc ;...
runtime/sources/arm/aeabi_fcmpge.asm
wdv4758h/Yeppp-
30
197090
/* * Yeppp! library runtime infrastructure * * This file is part of Yeppp! library and licensed under MIT license. * See runtime/LICENSE.txt for details. * */ .include "common.inc" .syntax unified BEGIN_ARM_FUNCTION __aeabi_fcmpge MOV r12, #0xFF000000 /* Check if a is NaN */ C...
engine/overworld/npc_movement.asm
etdv-thevoid/pokemon-rgb-enhanced
1
197091
<reponame>etdv-thevoid/pokemon-rgb-enhanced<gh_stars>1-10 PlayerStepOutFromDoor: ld hl, wd730 res 1, [hl] call IsPlayerStandingOnDoorTile jr nc, .notStandingOnDoor ld a, $fc ld [wJoyIgnore], a ld hl, wd736 set 1, [hl] ld a, $1 ld [wSimulatedJoypadStatesIndex], a ld a, D_DOWN ld [wSimulatedJoypadStatesEnd], ...
Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xa0.log_21829_1334.asm
ljhsiun2/medusa
9
197092
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r8 push %r9 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0xb5e9, %rsi lea addresses_D_ht+0xcbbf, %rdi sub %r8, %r8 mov $92, %rcx rep movsq nop nop add $4879, %rdi lea addresses_D_ht+0x39e9, %r10 nop nop nop sub $63730, %rdx mov (%r10)...
programs/oeis/314/A314096.asm
karttu/loda
1
197093
<reponame>karttu/loda ; A314096: Coordination sequence Gal.4.73.4 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. ; 1,5,11,16,20,25,31,36,41,47,52,56,61,67,72,77,83,88,92,97,103,108,113,119,124,128,133,139,144,149,155,160,164,169,175,1...
src/usb.asm
LogicalJoe/cesium
0
197095
<reponame>LogicalJoe/cesium<filename>src/usb.asm ; Copyright 2015-2021 Matt "MateoConLechuga" Waltz ; ; 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 n...
Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0xca_notsx.log_21829_771.asm
ljhsiun2/medusa
9
197096
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r8 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x15b20, %rsi lea addresses_WC_ht+0x29d1, %rdi nop nop and %r8, %r8 mov $31, %rcx rep movsb nop nop nop nop nop xor %rbp, %rbp lea addresses_WC_ht+0x6a00, %r10 clflush (%r10) no...
programs/oeis/169/A169453.asm
neoneye/loda
22
197097
<filename>programs/oeis/169/A169453.asm ; A169453: Number of reduced words of length n in Coxeter group on 8 generators S_i with relations (S_i)^2 = (S_i S_j)^33 = I. ; 1,8,56,392,2744,19208,134456,941192,6588344,46118408,322828856,2259801992,15818613944,110730297608,775112083256,5425784582792,37980492079544,2658634445...
programs/oeis/047/A047280.asm
karttu/loda
1
197098
<reponame>karttu/loda ; A047280: Numbers that are congruent to {3, 6} mod 7. ; 3,6,10,13,17,20,24,27,31,34,38,41,45,48,52,55,59,62,66,69,73,76,80,83,87,90,94,97,101,104,108,111,115,118,122,125,129,132,136,139,143,146,150,153,157,160,164,167,171,174,178,181,185,188,192,195,199,202 mov $1,$0 mul $1,7 div $1,2 add $1,3
libsrc/_DEVELOPMENT/error/z80/error_erange_llmc.asm
jpoikela/z88dk
640
197099
SECTION code_clib SECTION code_error PUBLIC error_erange_llmc EXTERN error_erange_lmc, error_lmc pop hl error_erange_llmc: ; set dehl'dehl = -1 ; set errno = ERANGE ; set carry flag exx call error_erange_lmc exx jp error_lmc
ch05/test5_6.asm
zzb610/asm-learn
0
197100
<filename>ch05/test5_6.asm assume cs:code a segment dw 1,2,3,4,5,6,7,8,9,0ah,0bh,0ch,0dh,0eh,0fh,0ffh a ends b segment dw 0,0,0,0,0,0,0,0 b ends code segment start: mov ax, a mov ds, ax mov ax, b mov ss, ax mov sp, 16 mov bx, 0 mov cx, 8 s: pu...
rgbdscheck.asm
opiter09/ASM-Machina
1
197101
<filename>rgbdscheck.asm MAJOR EQU 0 MINOR EQU 5 PATCH EQU 1 wrong_rgbds: MACRO fail "pokered requires rgbds v0.5.1 or newer." ENDM IF !DEF(__RGBDS_MAJOR__) || !DEF(__RGBDS_MINOR__) || !DEF(__RGBDS_PATCH__) wrong_rgbds ELSE IF (__RGBDS_MAJOR__ < MAJOR) || \ (__RGBDS_MAJOR__ == MAJOR && __RGBDS_MINOR__ < MINOR) || ...
src/reset.asm
pwk4m1/TinyBIOS
23
197102
<gh_stars>10-100 ; BSD 3-Clause License ; ; Copyright (c) 2019, 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 copyrig...
oeis/087/A087287.asm
neoneye/loda-programs
11
197103
; A087287: a(n) = Lucas(9*n). ; Submitted by <NAME> ; 2,76,5778,439204,33385282,2537720636,192900153618,14662949395604,1114577054219522,84722519070079276,6440026026380244498,489526700523968661124,37210469265847998489922,2828485190904971853895196,215002084978043708894524818,16342986943522226847837781364,1242282009792667...
aes/cbc_multibinary.asm
intelkevinputnam/isa-l_crypto
101
197105
<reponame>intelkevinputnam/isa-l_crypto<filename>aes/cbc_multibinary.asm<gh_stars>100-1000 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Copyright(c) 2011-2016 Intel Corporation All rights reserved. ; ; Redistribution and use in source and binary forms, with or without ; modification, ar...
programs/oeis/331/A331321.asm
neoneye/loda
22
197106
; A331321: a(n) = [x^n] ((x^2 - 1)*(x^2 + x - 1))/(x^2 + 2*x - 1)^2. ; 1,3,8,23,64,175,472,1259,3328,8731,22760,59007,152256,391239,1001656,2556115,6503936,16505651,41788616,105571303,266181440,669923039,1683255448,4222878651,10579130112,26467818315,66138242984,165077936207,411584855488,1025162759287,2551031338360,6342...
debug.asm
AleffCorrea/BrickBreaker
4
197107
;debug.asm Char_STAR = $12 Debug_RLEText0: .db 1 .db $20, Char_STAR .db " DEBUG MAP EDIT SCREEN " .db Char_STAR, $20 .db 1, 0 Debug_RLEText1: .db 1 .db "START " .db Char_STAR .db " EXIT SEL " .db Char_STAR .db "SPAWN BALL" .db 1, 0 Debug_RLEText2: .db 1 .db "A " .db Char_STAR .db " REM" .db 1, 0 De...
aplib247b_180_fast.asm
uniabis/z80depacker
25
197108
; aPPack decompressor ; original source by dwedit ; very slightly adapted by utopian ; optimized by Metalbrain & <NAME> ;247b to 234b optimized by uniabis ;hl = source ;de = dest depack ;di ;call init ;ei ;ret init ld ...
Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0x84_notsx.log_21829_187.asm
ljhsiun2/medusa
9
197109
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r13 push %r14 push %rbx push %rcx push %rdi push %rsi lea addresses_D_ht+0x1ce0d, %rdi nop cmp %r13, %r13 mov (%rdi), %r10d sub %r11, %r11 lea addresses_D_ht+0x19e0d, %rsi lea addresses_UC_ht+0x192dd, %rdi nop nop nop and $32129, %r10 mov $62, %rcx ...
src/boot/protected_mode_gdt.asm
karlek/lapis
1
197110
<reponame>karlek/lapis ; Vim: set ft=nasm ; GDT gdt32: ; The mandatory null descriptor .null: dq 0x0 ; `dd` means define quad word (i.e. 8 bytes) ; The code segment descriptor .code: ; limit=0xfffff, base=0x0, ; 1st flags: (present)1 (privilege)00 (descriptor type)1 -> 1001b ; Type flags: (code)1 (conforming)0...
asm-course/task1-printf/task1.asm
ChShersh/university-courses
0
197111
extern printf section .text global main set_space: or bl, 1000b jmp for_done set_zero: or bl, 0100b jmp for_done set_plus: or bl, 0010b jmp for_done set_minus: or bl, 0001b jmp for_done ; al, bl -- not empty ; pre: al contains highest digit of length, ; esi points to first digit of l...
kernel/cpu/isr.asm
modscleo4/dos
11
197112
<reponame>modscleo4/dos global isr0 global isr1 global isr2 global isr3 global isr4 global isr5 global isr6 global isr7 global isr8 global isr9 global isr10 global isr11 global isr12 global isr13 global isr14 global isr15 global isr16 global isr17 global isr18 global isr19 global isr20 global isr21...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_1_1157.asm
ljhsiun2/medusa
9
197113
.global s_prepare_buffers s_prepare_buffers: ret .global s_faulty_load s_faulty_load: push %r11 push %r13 push %r8 push %rbp push %rbx push %rdi push %rsi // Load lea addresses_PSE+0x19b63, %rbp nop nop nop nop add %rbx, %rbx movups (%rbp), %xmm4 vpextrq $1, %xmm4, %rsi cmp %rdi, %rdi // Store lea addresses_UC+0...
oeis/342/A342389.asm
neoneye/loda-programs
11
197116
<reponame>neoneye/loda-programs ; A342389: a(n) = Sum_{k=1..n} k^gcd(k,n). ; Submitted by <NAME>(s2) ; 1,5,30,264,3135,46709,823564,16777528,387420759,10000003265,285311670666,8916100500148,302875106592331,11112006826381965,437893890380965260,18446744073726350224,827240261886336764313,39346408075296928032645 add $0,1 ...
sources/ippcp/asm_ia32/pcprij128encryptxtsg9as.asm
ymarkovitch/ipp-crypto
0
197117
;=============================================================================== ; Copyright 2016-2019 Intel Corporation ; All Rights Reserved. ; ; If this software was obtained under the Intel Simplified Software License, ; the following terms apply: ; ; The source code, information and material ("Material") co...
lib/neonlib/src/MemoryTest.asm
sharksym/vgmplay-sharksym
6
197118
<reponame>sharksym/vgmplay-sharksym ; ; Memory unit tests ; MemoryTest_Test: call MemoryTest_TestSearchSlots ret MemoryTest_TestSearchSlots: di ; does searching for test string yield the current slot? ld hl,MemoryTest_TestSearchSlots_id call Memory_GetSlot push af ld hl,MemoryTest_TestSearchSlots_Matcher call...
Kernel/src/Kernel/Common/Common.asm
SkillerRaptor/HyperOS
12
197119
; ; Copyright (c) 2020-2021, SkillerRaptor <<EMAIL>> ; ; SPDX-License-Identifier: MIT ; bits 64 section .text %macro pushaq 0 push rax push rbx push rcx push rdx push rbp push rdi push rsi push r8 push r9 push r10 push r11 push r12 push r13 push r14 push r15...
libsrc/_DEVELOPMENT/sound/sn76489/c/sccz80/PSGSFXGetStatus.asm
ahjelm/z88dk
640
197121
<reponame>ahjelm/z88dk ; unsigned char PSGSFXGetStatus(void) SECTION code_clib SECTION code_PSGlib PUBLIC PSGSFXGetStatus EXTERN asm_PSGlib_SFXGetStatus defc PSGSFXGetStatus = asm_PSGlib_SFXGetStatus ; SDCC bridge for Classic IF __CLASSIC PUBLIC _PSGSFXGetStatus defc _PSGSFXGetStatus = PSGSFXGetStatus ENDIF
src/asmtutor.com/src/helloworld.asm
ishirshov/NASM-tutorial-for-Unix
0
197122
; Т.к. программа подгружается в конкретную область памяти, которую выделела ОС в конце ; выполнения программы необходимо выполнить корректный выход используя SYS_EXIT сигнал. ; ; В ином случае будет ошибка сегментации, т.к. выполнение перейдет в другую область памяти. ; Выполнение идет последовательно адрес за адресом,...
private/ntos/dll/i386/emtrig.asm
King0987654/windows2000
17
197123
<gh_stars>10-100 subttl emtrig.asm - Trig functions sine, cosine, tangent page ;******************************************************************************* ; Copyright (c) Microsoft Corporation 1991 ; All Rights Reserved ; ;emtrig.asm - Trig functions sine, cosine, tangent ; by <NAME> ; ;Purpose: ; FC...
programs/oeis/129/A129789.asm
neoneye/loda
22
197125
; A129789: a(n) = ceiling(5^n/n). ; 5,13,42,157,625,2605,11161,48829,217014,976563,4438921,20345053,93900241,435965402,2034505209,9536743165,44878791361,211927625869,1003867701481,4768371582032,22706531343006,108372081409802,518301258916441,2483526865641277,11920928955078125,57312158437875601,275947429515697338,1330460...
Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca.log_21829_1481.asm
ljhsiun2/medusa
9
197126
.global s_prepare_buffers s_prepare_buffers: push %r15 push %r8 push %r9 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_D_ht+0xea18, %rdi nop sub $42560, %rsi mov (%rdi), %rax nop nop nop nop nop dec %r15 lea addresses_WC_ht+0xb5d8, %rax nop nop nop inc %rbp and $0xffffffffffffffc0, %rax vmovntdqa (%ra...
bootloader/interrupt/pre_handlers.asm
mstniy/cerius
2
197127
<reponame>mstniy/cerius [BITS 64] extern IRQHandlers extern ExternalIrqHandler global irq_pre_handler_0 global irq_pre_handler_1 global irq_pre_handler_2 global irq_pre_handler_3 global irq_pre_handler_4 global irq_pre_handler_5 global irq_pre_handler_6 global irq_pre_handler_7 global irq_pre_handler_8 gl...
UPC Microcontroladores 2019-2/Semana 6/displayon.X/LCD_LIB.asm
tocache/picomones
5
197128
<gh_stars>1-10 RS EQU 0 RW EQU 1 E EQU 2 CBLOCK 0x000 aux cont BCD2 BCD1 BCD0 var dato rx aux1 aux2 aux3 conta1 conta2 dir_CGRAM dir_CARACTER ENDC ORG 0x600 POS_CUR_FIL2: addlw 0xC0; movwf dato,0; call ENVIA_...
oeis/036/A036149.asm
neoneye/loda-programs
11
197129
<reponame>neoneye/loda-programs ; A036149: 5^n mod 157. ; Submitted by <NAME> ; 1,5,25,125,154,142,82,96,9,45,68,26,130,22,110,79,81,91,141,77,71,41,48,83,101,34,13,65,11,55,118,119,124,149,117,114,99,24,120,129,17,85,111,84,106,59,138,62,153,137 mov $1,5 pow $1,$0 mod $1,157 mov $0,$1
avengers/toolkit/compilers/asem-51/examples/blink.a51
Arkh42/hardhack
1
197130
<filename>avengers/toolkit/compilers/asem-51/examples/blink.a51 ; Test Program for BOOT-51 ; ======================== ; <NAME>, 25. 6. 2002 ; ; This program simply toggles the logic level of the port pin LEDPIN ; every second (12 MHz) to verify, whether all components...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2775.asm
ljhsiun2/medusa
9
197131
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r14 push %r9 push %rbp push %rcx push %rdi push %rsi lea addresses_D_ht+0x1c972, %rsi lea addresses_A_ht+0xadb2, %rdi nop nop nop nop cmp %rbp, %rbp mov $95, %rcx rep movsb nop nop nop add %rbp, %rbp lea addresses_WT_ht+0xc372, %r14 sub %r11, %r11 v...
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0_notsx.log_3_170.asm
ljhsiun2/medusa
9
197132
<filename>Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0_notsx.log_3_170.asm .global s_prepare_buffers s_prepare_buffers: push %r15 push %r8 push %r9 push %rcx lea addresses_UC_ht+0x17cb0, %r15 nop nop nop cmp %r8, %r8 mov $0x6162636465666768, %r9 movq %r9, %xmm7 movups %xmm7, (%r15) sub $852, %rcx pop %rcx pop ...
programs/oeis/037/A037972.asm
neoneye/loda
22
197133
<filename>programs/oeis/037/A037972.asm ; A037972: a(n) = n^2*(n+1)*C(2*n-2,n-1)/2. ; 0,1,12,108,800,5250,31752,181104,988416,5212350,26741000,134132856,660284352,3199016548,15288882000,72209880000,337535723520,1563410094390,7182839945160,32761238433000,148450107960000,668693511305820,2995943329133040,13356820221694560...
programs/oeis/122/A122250.asm
neoneye/loda
22
197134
<reponame>neoneye/loda ; A122250: Partial sums of A004128. ; 0,1,3,7,12,18,26,35,45,58,72,87,104,122,141,162,184,207,233,260,288,318,349,381,415,450,486,526,567,609,653,698,744,792,841,891,944,998,1053,1110,1168,1227,1288,1350,1413,1479,1546,1614,1684,1755,1827,1901,1976,2052,2132,2213,2295,2379,2464,2550,2638,2727,281...
source/projx64VS2008.asm
lyubov888L/RecView
8
197135
<reponame>lyubov888L/RecView<filename>source/projx64VS2008.asm ;ml64.exe DATA segment align(32) F76543210 real4 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0 F88888888 real4 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0 F00000000 real4 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 F3210 real4 0.0, 1.0, 2.0, 3.0 DATA ends .code projx64 P...
printing/printscreenformfeed/psff.asm
grebenkov/OldSourcesArchive
0
197136
; Taken from PC World Best of *.* Volume 1 (1988) ; NO LICENSE PROVIDED, PROBABLY PUBLIC DOMAIN (published on coverdisk) ; INSTRUCTIONS ; Have you ever started printing in mid-page accidentally because you ; previously printed a screen dump with <Shift>-<PrtSc> and forgot to ; press the form feed button? If so, PSFF...
programs/oeis/108/A108306.asm
karttu/loda
0
197137
; A108306: Expansion of (3*x+1)/(1-3*x-3*x^2). ; 1,6,21,81,306,1161,4401,16686,63261,239841,909306,3447441,13070241,49553046,187869861,712268721,2700415746,10238053401,38815407441,147160382526,557927369901,2115263257281,8019571881546,30404505416481,115272231894081,437030211931686,1656907331477301,6281812630226961 mov ...
_build/dispatcher/jmp_ippsDLPGenerateDSA_713eb812.asm
zyktrcn/ippcp
1
197138
extern m7_ippsDLPGenerateDSA:function extern n8_ippsDLPGenerateDSA:function extern y8_ippsDLPGenerateDSA:function extern e9_ippsDLPGenerateDSA:function extern l9_ippsDLPGenerateDSA:function extern n0_ippsDLPGenerateDSA:function extern k0_ippsDLPGenerateDSA:function extern ippcpJumpIndexForMergedLibs extern ippcpSafeIni...
programs/oeis/175/A175287.asm
jmorken/loda
1
197139
<filename>programs/oeis/175/A175287.asm ; A175287: Partial sums of ceiling(n^2/4). ; 0,1,2,5,9,16,25,38,54,75,100,131,167,210,259,316,380,453,534,625,725,836,957,1090,1234,1391,1560,1743,1939,2150,2375,2616,2872,3145,3434,3741,4065,4408,4769,5150,5550,5971,6412,6875,7359,7866,8395,8948,9524,10125,10750,11401,12077,1278...
game/fixed_bank_filler.asm
sgadrat/super-tilt-bro
91
197140
; ; Print some interesting addresses for debug ; #echo #echo wait_frame_loop: #print wait_next_frame+4 #echo nmi_begin: #print nmi #echo vblank_end: #print reset-11 #echo game_tick: #print game_tick #echo update_players: #print update_players #echo update_sprites #print update_sprites #echo game_tick_end: #print slow...
libsrc/_DEVELOPMENT/stdlib/c/sccz80/rand.asm
jpoikela/z88dk
38
197141
; int rand(void) SECTION code_clib SECTION code_stdlib PUBLIC rand EXTERN asm_rand defc rand = asm_rand ; SDCC bridge for Classic IF __CLASSIC PUBLIC _rand defc _rand = rand ENDIF
altairsim/microchess.asm
qoelet/z80pack
85
197142
<reponame>qoelet/z80pack<filename>altairsim/microchess.asm TITLE '8080 MICROCHESS' ; 8080 MICROCHESS ; (C) COPYRIGHT 1977, MICRO-WARE LIMITED ; WRITTEN BY <NAME> & <NAME> ; ; TYPED IN HEXDUMP FROM THE MANUAL AND APPLIED PATCHES ; FROM THE OCTOBER 1977 MICROCHESS NOTES. ; ; BY DEFAULT THE PROGRAM USES TERMINAL ...
Transynther/x86/_processed/AVXALIGN/_st_/i3-7100_9_0x84_notsx.log_21829_3154.asm
ljhsiun2/medusa
9
197143
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r14 push %r15 push %r9 push %rcx push %rdi push %rsi lea addresses_A_ht+0x1b5ee, %r10 sub %rcx, %rcx movb $0x61, (%r10) nop nop and %r9, %r9 lea addresses_normal_ht+0x1a08c, %rsi lea addresses_normal_ht+0x17fa8, %rdi nop nop nop nop dec %r15 mov $46...