max_stars_repo_path
stringlengths
3
255
max_stars_repo_name
stringlengths
5
116
max_stars_count
int64
0
107k
id
stringlengths
1
7
content
stringlengths
63
1.05M
programs/oeis/106/A106732.asm
jmorken/loda
1
126712
; A106732: First entry of the vector (M^n)v, where M is the 2 X 2 matrix [[0,-3],[1,5]] and v is the column vector [0,1]. ; 0,-3,-15,-66,-285,-1227,-5280,-22719,-97755,-420618,-1809825,-7787271,-33506880,-144172587,-620342295,-2669193714,-11484941685,-49417127283,-212630811360,-914902674951,-3936620940675,-169383966785...
002/main.asm
sradley/euler-asm
0
126713
<filename>002/main.asm %macro exit 1 mov eax, 1 mov ebx, %1 int 0x80 %endmacro %macro write 1 ;write n mov eax, %1 push eax push fmt call printf ;printf("%d\n", n) add esp, 4 %endmacro section .data fmt db "%d"...
mips_architecture/lab5_ex5.asm
christosmarg/uni-assignments
0
126714
.eqv SYS_PRINT_WORD 1 .eqv SYS_EXIT 10 .eqv SYS_READ_CHAR 12 .macro isnotdigit(%ch, %lbl) # the character must be 0x30 <= c <= 0x39 # for it to be a digit, otherwise, stop blt %ch, 0x30, %lbl bgt %ch, 0x39, %lbl .end_macro .data # max word can be 10 ...
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0x48.log_1395_1261.asm
ljhsiun2/medusa
9
126715
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %r15 push %r9 push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x150f1, %rdi add %r9, %r9 mov $0x6162636465666768, %rdx movq %rdx, (%rdi) nop nop nop nop nop dec %r12 lea addresses_D_ht+0x1c3f1, %r13 nop add %rdi, %rdi movw $0x6162, (%r13) ...
win32/VC10/Win32/libxml2_Debug/xmlunicode.asm
txwizard/libxml2_x64_and_ARM
0
126716
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.16.27027.1 TITLE C:\Users\DAG\Documents\_Clients\CodeProject Authors Group\Windows on ARM\libxml2\libxml2-2.9.9\xmlunicode.c .686P .XMM include listing.inc .model flat INCLUDELIB MSVCRTD INCLUDELIB OLDNAMES PUBLIC _xmlUCSIsAegeanNumbers PUBLIC...
oeis/021/A021011.asm
neoneye/loda-programs
11
126719
<reponame>neoneye/loda-programs ; A021011: Pisot sequence P(6,11), a(0)=6, a(1)=11, a(n+1) is the nearest integer to a(n)^2/a(n-1). ; Submitted by <NAME> ; 6,11,20,36,65,117,211,381,688,1242,2242,4047,7305,13186,23802,42965,77556,139996,252706,456158,823408,1486329,2682964,4843003,8742077,15780273,28484880,51417893,928...
src/asm/bootloader.asm
krzem5/Assembly-64bit_OS_Kernel
0
126720
<gh_stars>0 [org 0x500] %define DATA_VERTICAL_SROLL byte [DATA] %define DATA_ACIP_ID word [DATA+1] %define DATA_MMAP_LEN word [DATA+3] %define DATA_DATE dword [DATA+5] %define DATA_TIME dword [DATA+9] %define DATA_MMAP_PTR (DATA+12) %define KERNEL_MEM_ADDR 0x100000 section .text bits 16 align 4 global bootloader bo...
libsrc/target/radio86/stdio/fputc_cons_native.asm
ahjelm/z88dk
640
126721
SECTION code_clib PUBLIC fputc_cons_native PUBLIC _fputc_cons_native INCLUDE "target/radio86/def/monitor.def" fputc_cons_native: _fputc_cons_native: ld hl,2 add hl,sp ld a,(hl) ld c,a cp 10 jp nz,not_lf ld c,13 print: jp PUTCHAR ...
P6/data_P6_2/ALUTest149.asm
alxzzhou/BUAA_CO_2020
1
126722
<gh_stars>1-10 nor $4,$4,$3 lhu $0,10($0) andi $5,$5,36958 sllv $3,$1,$3 addiu $3,$4,1469 andi $4,$3,54898 lbu $5,15($0) sll $4,$4,9 addu $4,$0,$3 sllv $0,$5,$3 nor $4,$6,$3 srl $1,$1,16 xor $4,$4,$3 sw $4,16($0) lhu $6,16($0) xori $5,$4,28622 and $4,$1,$3 lb $1,12($0) lw $4,12($0) addiu $5,$3,289 sw $6,8($0) and $3,$3...
data/pokemon/base_stats/hoenn/delcatty.asm
Dev727/ancientplatinum
0
126723
<reponame>Dev727/ancientplatinum db 0 ; 301 DEX NO db 70, 65, 65, 90, 55, 55 ; hp atk def spd sat sdf db NORMAL, NORMAL ; type db 60 ; catch rate db 138 ; base exp db NO_ITEM, NO_ITEM ; items db GENDER_F75 ; gender ratio db 100 ; unknown 1 db 15 ; step cycles to hatch db 5 ; unknown 2 INCBIN "...
libsrc/_DEVELOPMENT/sound/bit/z80/asm_bit_fx/_bitfx_9.asm
meesokim/z88dk
0
126724
SECTION code_sound_bit PUBLIC _bitfx_9 INCLUDE "clib_target_cfg.asm" _bitfx_9: ; Dual note with fuzzy added ld b,100 ss_loop: dec h jr nz, ss_jump push hl push af ld a,__sound_bit_toggle ld h,0 and (hl) ld l,a pop af xor l INCLUDE "sound/bit/z80/output_b...
programs/oeis/128/A128060.asm
karttu/loda
1
126725
<reponame>karttu/loda<gh_stars>1-10 ; A128060: a(n) = 2*n - numerator((2*n-1)^2/(2*(2*n)!)). ; -1,1,1,1,1,9,1,1,15,1,1,21,1,25,27,1,1,33,35,1,39,1,1,45,1,49,51,1,55,57,1,1,63,65,1,69,1,1,75,77,1,81,1,85,87,1,91,93,95,1,99,1,1,105,1,1,111,1,115,117,119,121,123 sub $0,1 mul $0,2 mov $1,$0 mov $4,$1 mul $4,5 mov $2,$4 mu...
guest/s2ebios/s2e-test.asm
sebastianpoeplau/s2e
55
126727
<filename>guest/s2ebios/s2e-test.asm ; S2E Selective Symbolic Execution Platform ; ; Copyright (c) 2013 Dependable Systems Laboratory, EPFL ; ; 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 w...
programs/oeis/033/A033539.asm
jmorken/loda
1
126728
<filename>programs/oeis/033/A033539.asm ; A033539: a(0)=1, a(1)=1, a(2)=1, a(n) = 2*a(n-1) + a(n-2) + 1. ; 1,1,1,4,10,25,61,148,358,865,2089,5044,12178,29401,70981,171364,413710,998785,2411281,5821348,14053978,33929305,81912589,197754484,477421558,1152597601,2782616761,6717831124,16218279010,39154389145,94527057301,228...
oeis/253/A253432.asm
neoneye/loda-programs
11
126729
<reponame>neoneye/loda-programs ; A253432: Number of (n+1) X (5+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.) ; 181,174,192,228,300,444,732,1308,2460,4764,9372,18588,37020,73884,147612,295068,589980...
programs/oeis/179/A179636.asm
jmorken/loda
1
126730
<filename>programs/oeis/179/A179636.asm ; A179636: Median of the digits in n (rounding up). ; 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,0,0,0,0,0 mov $1,1 add $1...
data/wildPokemon/route18.asm
longlostsoul/EvoYellow
16
126731
Route18Mons: db $19 db 22,DODUO ;day db 22,DODUO db 23,LICKITUNG db 24,ROCKRUFF ;day db 24,GRIMER db 26,SPEAROW db 23,YANMA ;day only db 24,FEAROW db 25,RATICATE db 26,RATICATE db $00
install/lib/bios/reboot.asm
minblock/msdos
0
126732
<reponame>minblock/msdos ; ======================================================== COMMENT # REBOOT.ASM Copyright (c) 1991 - Microsoft Corp. All rights reserved. Microsoft Confidential johnhe - 12/01/89 END COMMENT # ;-----------------------------------------------------------------------------; ; K E Y B O...
Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2_notsx.log_9283_101.asm
ljhsiun2/medusa
9
126733
<reponame>ljhsiun2/medusa<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r8 push %rbx push %rdi push %rdx lea addresses_WC_ht+0x1ca3f, %rbx and %rdi, %rdi movl $0x61626364, (%rbx) nop nop nop cmp $60455, %r8 pop %rdx pop %rdi pop %rbx pop %r8 ret .global s_faulty_load s_faulty_load: push %r12 pus...
programs/oeis/314/A314828.asm
neoneye/loda
22
126734
<reponame>neoneye/loda<gh_stars>10-100 ; A314828: Coordination sequence Gal.5.64.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,9,14,18,22,26,31,35,40,45,49,54,58,62,66,71,75,80,85,89,94,98,102,106,111,115,120,125,129,134,138,...
programs/oeis/147/A147613.asm
neoneye/loda
22
126735
; A147613: Numbers that are not Jacobsthal numbers. ; 2,4,6,7,8,9,10,12,13,14,15,16,17,18,19,20,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77 mov $1,$0 mul $1,2 mov $2,$0 add $0,2 add $2,$1 lpb $2 a...
programs/oeis/034/A034832.asm
neoneye/loda
22
126736
<filename>programs/oeis/034/A034832.asm ; A034832: a(n) = n-th sept-factorial number divided by 5. ; 1,12,228,5928,195624,7824960,367773120,19859748480,1211444657280,82378236695040,6178367752128000,506626155674496000,45089727855030144000,4328613874082893824000,445847229030538063872000,49043195193359187025920000,5738053...
main.asm
nesdoug/SNES_08
3
126737
<filename>main.asm<gh_stars>1-10 ; example 8 SNES code .p816 .smart .include "regs.asm" .include "variables.asm" .include "macros.asm" .include "init.asm" .include "library.asm" .segment "CODE" ; enters here in forced blank Main: .a16 ; the setting from init code .i16 phk plb ; COPY PALETTES to PAL_BUFFE...
tis-100/21340_signal_comparator.asm
glupmjoed/puzzles
0
126738
@0 MOV UP, DOWN @1 @2 @3 @4 MOV UP, DOWN @5 MOV UP, RIGHT @6 S: MOV LEFT, ACC MOV ACC, RIGHT JGZ P1 MOV 0, DOWN JMP S P1: MOV 1, DOWN @7 S: MOV LEFT, ACC MOV ACC, RIGHT JEZ P1 MOV 0, DOWN JMP S P1: MOV 1, DOWN @8 S: MOV LEFT, ACC JLZ P1 MOV 0, DOWN JMP S P1: MOV 1, DOWN
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca_notsx.log_10808_1611.asm
ljhsiun2/medusa
9
126739
<filename>Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca_notsx.log_10808_1611.asm .global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r8 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x283b, %rdi nop add $51774, %rbp mov (%rdi), %r13d nop nop nop nop add $33226, %r8 ...
stage2.asm
countchokcula/bl2
0
126741
org 0x0 bits 16 push es ; -> 0x8000 pop ds ; <- data segment is now 0x8000 _kernel: cli mov si, kernel_load_success_msg L1: lodsb or al, al jz done mov ah, 09h mov bx, 000fh mov cx, 1 int 10h call move_cursor_right jmp L1 done: ...
programs/oeis/070/A070346.asm
karttu/loda
0
126742
; A070346: a(n) = 3^n mod 37. ; 1,3,9,27,7,21,26,4,12,36,34,28,10,30,16,11,33,25,1,3,9,27,7,21,26,4,12,36,34,28,10,30,16,11,33,25,1,3,9,27,7,21,26,4,12,36,34,28,10,30,16,11,33,25,1,3,9,27,7,21,26,4,12,36,34,28,10,30,16,11,33,25,1,3,9,27,7,21,26,4,12,36,34,28,10,30,16,11,33,25,1,3,9,27,7,21,26,4,12,36,34,28,10,30,16,11,...
s1/sfx-original/SndA9 - SS Item.asm
Cancer52/flamedriver
9
126743
<filename>s1/sfx-original/SndA9 - SS Item.asm SndA9_SS_Item_Header: smpsHeaderStartSong 1 smpsHeaderVoice SndA9_SS_Item_Voices smpsHeaderTempoSFX $01 smpsHeaderChanSFX $01 smpsHeaderSFXChannel cPSG2, SndA9_SS_Item_PSG2, $00, $00 ; PSG2 Data SndA9_SS_Item_PSG2: smpsModSet $01, $01, $E6, $35 dc.b...
code/YeWenting/book4-16.asm
KongoHuster/assembly-exercise
1
126744
<filename>code/YeWenting/book4-16.asm ;; Created by Ywt. ;; Date: 11/03/2016 TITLE 4.16_YWT DATA SEGMENT BUFF DW 50 DUP(-1) DW 50 DUP(0) DW 100 DUP(1) N1 DB ? N2 DB ? N3 DB 200 ENDS CODE SEGMENT ASSUME CS:CODE,...
programs/oeis/179/A179180.asm
neoneye/loda
22
126745
; A179180: Partial sums of A007895. ; 0,1,2,3,5,6,8,10,11,13,15,17,20,21,23,25,27,30,32,35,38,39,41,43,45,48,50,53,56,58,61,64,67,71,72,74,76,78,81,83,86,89,91,94,97,100,104,106,109,112,115,119,122,126,130,131,133,135,137,140,142,145,148,150,153,156,159,163,165,168,171,174,178,181,185,189,191,194,197,200,204,207,211,21...
src/presets/cm_presets_defeatarrghus.asm
spannerisms/lttphack
6
126747
<filename>src/presets/cm_presets_defeatarrghus.asm ;=================================================================================================== ; PRESET DATA HEADER ;=================================================================================================== presetheader_defeatarrghus: dw presetSRAM_def...
asm/field.asm
RockmanEXEZone/MMBN45-English-Translation
6
126748
<reponame>RockmanEXEZone/MMBN45-English-Translation<gh_stars>1-10 // Change weekday icon color based on virus elements .org 0x802C964 bl field_dayOfWeekColor // Prepend area names with underscores .org 0x802CC32 bl field_prependUnderscores // Make area names 12 characters .org 0x802CC3E mov r4,0xC .org 0x802CC60...
programs/oeis/087/A087056.asm
karttu/loda
0
126749
<filename>programs/oeis/087/A087056.asm ; A087056: Difference between 2 * n^2 and the next smaller square number. ; 1,4,2,7,1,8,17,7,18,4,17,32,14,31,9,28,2,23,46,16,41,7,34,63,25,56,14,47,1,36,73,23,62,8,49,92,34,79,17,64,113,47,98,28,81,7,62,119,41,100,18,79,142,56,121,31,98,4,73,144,46,119,17,92,169,63,142,32,113,19...
programs/oeis/163/A163378.asm
neoneye/loda
22
126750
<reponame>neoneye/loda<gh_stars>10-100 ; A163378: a(n) = sigma(phi(tau(n))). ; 1,1,1,3,1,3,1,3,3,3,1,3,1,3,3,7,1,3,1,3,3,3,1,7,3,3,3,3,1,7,1,3,3,3,3,12,1,3,3,7,1,7,1,3,3,3,1,7,3,3,3,3,1,7,3,7,3,3,1,7,1,3,3,12,3,7,1,3,3,7,1,7,1,3,3,3,3,7,1,7,7,3,1,7,3,3,3,7,1,7,3,3,3,3,3,7,1,3,3,12 seq $0,5 ; d(n) (also called tau(n) o...
Library/SpecUI/CommonUI/CWin/cwinPopup.asm
steakknife/pcgeos
504
126751
<gh_stars>100-1000 COMMENT @----------------------------------------------------------------------- Copyright (c) GeoWorks 1988 -- All Rights Reserved PROJECT: PC GEOS MODULE: CommonUI/CWin (common code for several specific ui's) FILE: winPopup.asm ROUTINES: Name Description ---- ----------- G...
source/function/type.asm
mega65dev/rom-assembler
0
126752
<gh_stars>0 ; ******************************************************************************************** ; ******************************************************************************************** ; ; Name : type.asm ; Purpose : .. ; Created : 15th Nov 1991 ; Updated : 4th Jan 2021 ; Authors : <NAME> ...
oeis/146/A146523.asm
neoneye/loda-programs
11
126753
<reponame>neoneye/loda-programs ; A146523: Binomial transform of A010685. ; 1,5,10,20,40,80,160,320,640,1280,2560,5120,10240,20480,40960,81920,163840,327680,655360,1310720,2621440,5242880,10485760,20971520,41943040,83886080,167772160,335544320,671088640,1342177280,2684354560,5368709120,10737418240,21474836480,429496729...
programs/oeis/208/A208536.asm
jmorken/loda
1
126754
; A208536: Number of 5-bead necklaces of n colors not allowing reversal, with no adjacent beads having the same color. ; 0,0,6,48,204,624,1554,3360,6552,11808,19998,32208,49764,74256,107562,151872,209712,283968,377910,495216,639996,816816,1030722,1287264,1592520,1953120,2376270,2869776,3442068,4102224,4859994,5725824,6...
programs/oeis/010/A010786.asm
neoneye/loda
22
126755
<filename>programs/oeis/010/A010786.asm ; A010786: Floor-factorial numbers: a(n) = Product_{k=1..n} floor(n/k). ; 1,2,3,8,10,36,42,128,216,600,660,3456,3744,9408,18900,61440,65280,279936,295488,1152000,2116800,4878720,5100480,31850496,41472000,93450240,163762560,568995840,589317120,3265920000,3374784000,11324620800,192...
exercises/exercise17/test17.asm
Dark15/assembly
1
126757
<gh_stars>1-10 and si, 0 and di, 0 clock: and ax, 0 int 0x1A inc si cmp si, 18 jb clock mov ah, 0x0e mov al, 'A' int 0x10 xor si, si inc di cmp di, 10 jb clock jmp near $ times 510 - ($ - $$) db 0 dw 0xAA55
programs/oeis/077/A077429.asm
neoneye/loda
22
126758
<gh_stars>10-100 ; A077429: a(n) = floor(log_10(n^2)). ; 0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4 add $0,1 pow $0,2 mov $1,-1 lpb $0 div $0,10 add $1,1 lpe ...
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca.log_21829_1054.asm
ljhsiun2/medusa
9
126759
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r9 push %rax push %rbx push %rcx push %rdi push %rsi lea addresses_D_ht+0x8bcd, %rsi lea addresses_D_ht+0x1e4ed, %rdi nop nop dec %r10 mov $110, %rcx rep movsl xor %rbx, %rbx lea addresses_UC_ht+0x1c5ed, %rax clflush (%rax) inc %r9 movw $0x6162, (%rax) nop no...
programs/oeis/086/A086159.asm
neoneye/loda
22
126760
<reponame>neoneye/loda ; A086159: Number of partitions of n into the first three triangular numbers, 1, 3 and 6. ; 1,1,1,2,2,2,4,4,4,6,6,6,9,9,9,12,12,12,16,16,16,20,20,20,25,25,25,30,30,30,36,36,36,42,42,42,49,49,49,56,56,56,64,64,64,72,72,72,81,81,81,90,90,90,100,100,100,110 div $0,3 add $0,2 pow $0,2 div $0,4
Object/Optimized/Fps/Engine.asm
collinsmichael/spartan
16
126761
<reponame>collinsmichael/spartan ; Listing generated by Microsoft (R) Optimizing Compiler Version 18.00.40629.0 TITLE C:\Users\cex123\Desktop\XXXXX\osdev\osdev-211\Source\Applications\Fps\Engine.c .686P .XMM include listing.inc .model flat INCLUDELIB MSVCRT INCLUDELIB OLDNAMES _DATA SEGMENT COMM __...
oeis/304/A304830.asm
neoneye/loda-programs
11
126762
<filename>oeis/304/A304830.asm<gh_stars>10-100 ; A304830: a(n) = 102*2^n - 108 (n>=1). ; 96,300,708,1524,3156,6420,12948,26004,52116,104340,208788,417684,835476,1671060,3342228,6684564,13369236,26738580,53477268,106954644,213909396,427818900,855637908,1711275924,3422551956,6845104020,13690208148,27380416404,54760832916...
programs/oeis/047/A047621.asm
neoneye/loda
22
126763
<filename>programs/oeis/047/A047621.asm ; A047621: Numbers that are congruent to {3, 5} mod 8. ; 3,5,11,13,19,21,27,29,35,37,43,45,51,53,59,61,67,69,75,77,83,85,91,93,99,101,107,109,115,117,123,125,131,133,139,141,147,149,155,157,163,165,171,173,179,181,187,189,195,197,203,205,211,213,219,221,227,229,235,237,243,245,25...
src/func/injectSrc.asm
szapp/Ninja
17
126764
<reponame>szapp/Ninja ; void __stdcall ninja_injectSrc(char *, char *) ; Merge Ninja scripts global ninja_injectSrc ninja_injectSrc: resetStackoffset %assign var_total 0x148 %assign var_symbol -0x148 ; char[0x120] %assign var_msg -0x28 ...
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xa0_notsx.log_21829_726.asm
ljhsiun2/medusa
9
126765
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r8 push %rax push %rcx push %rsi lea addresses_A_ht+0x52cd, %rax xor %r11, %r11 movl $0x61626364, (%rax) nop nop nop nop nop add %r13, %r13 lea addresses_WT_ht+0x17a8d, %r8 nop nop nop nop cmp %rcx, %rcx mov (%r8), %esi nop xor %r13, %r13 pop %rsi p...
bootloader/bootsector/fat_loader/bios_disk_interface.asm
LetsPlaySomeUbuntu/XitongOS-test-1
0
126766
%include "config.asm" EXTERN load_lba SECTION .text GLOBAL fl_load_from_disk fl_load_from_disk: [bits 64] ; Save state push rbp mov rbp, rsp push rbx mov [cached_rsp], rsp ; Jump to compat 16-bit mode push 0x30 ...
src/firmware-tests/Platform/Lcd/PutScreenFromFlashMock.asm
pete-restall/Cluck2Sesame-Prototype
1
126768
<filename>src/firmware-tests/Platform/Lcd/PutScreenFromFlashMock.asm #include "Platform.inc" #include "TestDoubles.inc" radix decimal udata global calledPutScreenFromFlash global calledPutScreenFromFlashEeadr global calledPutScreenFromFlashEeadrh calledPutScreenFromFlash res 1 calledPutScreenFromFlashEeadr re...
src/third_party/openh264/src/codec/encoder/core/x86/dct.asm
ilya-fedin/tg_owt
3,565
126769
<gh_stars>1000+ ;*! ;* \copy ;* Copyright (c) 2009-2013, Cisco Systems ;* 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...
bddisasm_test/avx/avx2_64.asm
andreaswimmer/bddisasm
675
126770
<filename>bddisasm_test/avx/avx2_64.asm bits 64 vpblendd xmm2, xmm7, xmm0, 0x90 vpblendd xmm2, xmm7, [rbx], 0x90 vpblendd xmm2, xmm7, [rbx+r11*8+256], 0x90 vpblendd xmm2, xmm7, [rbx+r11*8-256], 0x90 vpbroadcastb xmm2, xmm0 vpbroadcastb xmm2, [rbx] vpbroadcastb xmm2, [rbx+r11*8+256] ...
Transynther/x86/_processed/US/_st_zr_/i7-8650U_0xd2_notsx.log_106_621.asm
ljhsiun2/medusa
9
126771
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r14 push %r8 push %rbx push %rcx push %rdi push %rsi lea addresses_D_ht+0x14f04, %rbx nop nop nop nop cmp %r14, %r14 movb $0x61, (%rbx) nop nop nop nop nop add $38874, %rcx lea addresses_A_ht+0x14984, %rsi lea addresses_A_ht+0x19104, %rdi clflush (%...
oeis/348/A348175.asm
neoneye/loda-programs
11
126773
<reponame>neoneye/loda-programs ; A348175: Irregular table T(n,k) read by rows: T(n,k) = T(n-1,k/2) when k is even and 3*T(n-1,(k-1)/2) + 2^(n-1) when k is odd. T(0,0) = 0 and 0 <= k <= 2^n-1. ; Submitted by <NAME> ; 0,0,1,0,2,1,5,0,4,2,10,1,7,5,19,0,8,4,20,2,14,10,38,1,11,7,29,5,23,19,65,0,16,8,40,4,28,20,76,2,22,14,5...
programs/oeis/040/A040894.asm
neoneye/loda
22
126774
<filename>programs/oeis/040/A040894.asm ; A040894: Continued fraction for sqrt(925). ; 30,2,2,2,2,60,2,2,2,2,60,2,2,2,2,60,2,2,2,2,60,2,2,2,2,60,2,2,2,2,60,2,2,2,2,60,2,2,2,2,60,2,2,2,2,60,2,2,2,2,60,2,2,2,2,60,2,2,2,2,60,2,2,2,2,60,2,2,2,2,60,2,2,2,2,60,2,2,2,2,60,2,2,2,2 seq $0,10152 ; Continued fraction for sqrt(74...
asm/simple_shellcode.asm
diegocarba99/bangheera
1
126776
<filename>asm/simple_shellcode.asm<gh_stars>1-10 BITS 64 SECTION .text global main main: push rax ; guardamos registros push rcx push rdx push rsi push rdi push r11 mov rax,1 ; sys_write mov rdi,1 ; stdout lea rsi,[rel $+frase-$] ; frase mov rdx,[rel $+len-$] ; len syscall...
programs/oeis/040/A040699.asm
neoneye/loda
22
126777
; A040699: Continued fraction for sqrt(726). ; 26,1,16,1,52,1,16,1,52,1,16,1,52,1,16,1,52,1,16,1,52,1,16,1,52,1,16,1,52,1,16,1,52,1,16,1,52,1,16,1,52,1,16,1,52,1,16,1,52,1,16,1,52,1,16,1,52,1,16,1,52,1,16,1,52,1,16,1,52,1,16,1,52,1,16 seq $0,40867 ; Continued fraction for sqrt(897). mov $1,$0 sub $0,1 add $2,$1 div $2...
src/firmware/Platform/ResetFlags.asm
pete-restall/Cluck2Sesame-Prototype
1
126778
#define __CLUCK2SESAME_PLATFORM_RESETFLAGS_ASM #include "Platform.inc" #include "ResetFlags.inc" radix decimal ResetFlagsRam udata global resetFlags resetFlags res 1 ResetFlags code global isLastResetDueToBrownOut isLastResetDueToBrownOut: .safelySetBankFor resetFlags btfsc resetFlags, RESET_FLAG_BROWNOUT...
oeis/265/A265380.asm
neoneye/loda-programs
11
126779
; A265380: Binary representation of the middle column of the "Rule 158" elementary cellular automaton starting with a single ON (black) cell. ; Submitted by <NAME>(s2) ; 1,11,111,1110,11101,111011,1110111,11101110,111011101,1110111011,11101110111,111011101110,1110111011101,11101110111011,111011101110111,111011101110111...
src/check_end_game.asm
daullmer/tic-tac-toe
1
126780
checkGameOutcome: # @checkGameOutcome addi sp, sp, -44 sw a1, 0(sp) sw a2, 4(sp) sw a3, 8(sp) sw a4, 12(sp) sw a5, 16(sp) sw a6, 20(sp) sw a7, 24(sp) sw t0, 28(sp) sw s0, 32(sp) sw ra, 36(sp) sw t1, 40(sp) # callee save addi sp, sp, -16 sw ra, 12(sp) ...
EE2016/MISCELS/FibonacciNum.asm
HR-1-1/CourseWork
0
126781
; ; FibonacciAsm.asm ; ; Created: 9/17/2021 9:14:24 AM ; Author : Harish ; ;Assembly Code to store first 10 numbers of Fibonacci Series(Starting with 0,1) in Registers R11 to R20. .CSEG LDI R21, LOW(RAMEND) OUT SPL, R21 LDI R21, HIGH(RAMEND) OUT SPH, R21 LDI ZL, LOW(NUM<<1) LDI ZH, HIGH(NUM<<1) ...
programs/oeis/159/A159727.asm
neoneye/loda
22
126782
<reponame>neoneye/loda ; A159727: Number of permutations of 4 indistinguishable copies of 1..n arranged in a circle with exactly 1 local maximum. ; 8,60,400,2500,15000,87500,500000,2812500,15625000,85937500,468750000,2539062500,13671875000,73242187500,390625000000,2075195312500,10986328125000,57983398437500,30517578125...
third_party/webrtc/src/chromium/src/third_party/libjpeg_turbo/simd/jfsseflt-64.asm
bopopescu/webrtc-streaming-node
27
126783
<reponame>bopopescu/webrtc-streaming-node ; ; jfsseflt-64.asm - floating-point FDCT (64-bit SSE) ; ; 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 copy...
assignment-3/egghunter.nasm
jasperla/slae64
0
126784
<reponame>jasperla/slae64 ; SLAE64 assignment 3 ; by <NAME> ; Student ID: SLAE64-1614 global _start section .text _start: xor rdx, rdx next_page: or dx, 0xfff ; prevent any NULLs when encoding 4096 bytes for PAGE_SIZE (0xfff = 4095) next_address: inc rdx ; increment rdx to get the next valid page egghunter: ;...
programs/oeis/159/A159465.asm
karttu/loda
0
126785
; A159465: Sums of odd numbers, omitting squares. ; 3,8,15,26,39,54,71,90,111,134,161,190,221,254,289,326,365,406,449,494,541,592,645,700,757,816,877,940,1005,1072,1141,1212,1285,1360,1437,1516,1599,1684,1771,1860,1951,2044,2139,2236,2335,2436,2539,2644,2751,2860,2971,3084,3199,3316,3435,3558,3683,3810,3939,4070,4203,4...
oeis/141/A141873.asm
neoneye/loda-programs
11
126786
; A141873: Primes congruent to 8 mod 19. ; Submitted by <NAME>(s4) ; 103,179,293,331,521,673,787,863,977,1091,1129,1319,1433,1471,1699,1889,2003,2269,2383,2459,2687,2801,2953,3067,3181,3257,3371,3637,4093,4283,4397,4549,4663,4967,5081,5119,5233,5309,5347,5651,5689,5879,6221,6373,6449,6563,6791,6829,7019,7057,7247,7589,...
Utils/tile_routines.asm
SavagePencil/SMSFramework
0
126789
<filename>Utils/tile_routines.asm<gh_stars>0 .IFNDEF __TILE_ROUTINES_ASM__ .DEFINE __TILE_ROUTINES_ASM__ .INCLUDE "Utils/vdp.asm" .SECTION "Tile Routines - Upload 1bpp with Palette Remap" FREE ;============================================================================== ; Tile_Upload1BPPWithPaletteRemapToTil...
programs/oeis/097/A097166.asm
neoneye/loda
22
126790
<reponame>neoneye/loda ; A097166: Expansion of (1+2*x)/((1-x)*(1-10*x)). ; 1,13,133,1333,13333,133333,1333333,13333333,133333333,1333333333,13333333333,133333333333,1333333333333,13333333333333,133333333333333,1333333333333333,13333333333333333,133333333333333333,1333333333333333333,13333333333333333333,133333333333333...
Transynther/x86/_processed/NONE/_ht_zr_/i9-9900K_12_0xa0.log_21829_1203.asm
ljhsiun2/medusa
9
126791
<filename>Transynther/x86/_processed/NONE/_ht_zr_/i9-9900K_12_0xa0.log_21829_1203.asm<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r12 push %r8 push %r9 push %rax push %rbx push %rcx push %rdi push %rsi lea addresses_normal_ht+0x1280a, %rax nop nop nop nop nop sub $3068, %rbx mov $0x6162636465666768...
Library/Parse/parseFunctStrBoolArgs.asm
steakknife/pcgeos
504
126792
COMMENT @----------------------------------------------------------------------- Copyright (c) Geoworks 1994 -- All Rights Reserved PROJECT: PC GEOS MODULE: Parse Library FILE: parseFunctStrBoolArgs.asm AUTHOR: Cheng, 3/91 ROUTINES: Name Description ---- ----------- REVISION HISTORY: Nam...
tests/docs_examples/s_predefined.asm
fengjixuchui/sjasmplus
220
126795
DB __COUNTER__ ; DB 0 LUA ALLPASS sj.insert_label("label_" .. sj.get_define("__COUNTER__"), sj.current_address) -- creates "label_1" at "$" (0x0001) sj.insert_label("label_" .. sj.get_define("__COUNTER__"), _c("$+10")) -- creates "label_2" at "$+10" (0x000B) ...
programs/oeis/006/A006520.asm
karttu/loda
0
126797
; A006520: Partial sums of A006519. ; 1,3,4,8,9,11,12,20,21,23,24,28,29,31,32,48,49,51,52,56,57,59,60,68,69,71,72,76,77,79,80,112,113,115,116,120,121,123,124,132,133,135,136,140,141,143,144,160,161,163,164,168,169,171,172,180,181,183,184,188,189,191,192,256,257,259,260,264,265,267,268,276,277,279,280,284,285,287,288,30...
Library/SpecUI/CommonUI/CUtils/copenTrace.asm
steakknife/pcgeos
504
126799
COMMENT @---------------------------------------------------------------------- Copyright (c) GeoWorks 1989 -- All Rights Reserved PROJECT: PC GEOS MODULE: UserInterface/Open FILE: openTrace.asm REVISION HISTORY: Name Date Description ---- ---- ----------- Chris 5/89 Initial version DESCRIPTIO...
books_and_notes/professional_courses/Assembly_language_and_programming/sources/汇编语言程序设计教程第四版/codes/7_8.asm
gxw1/review_the_national_post-graduate_entrance_examination
640
126801
<gh_stars>100-1000 STACK SEGMENT STACK DW 100 DUP (0) STACK ENDS DATA SEGMENT COUNT DW 91 DATA ENDS CODE SEGMENT ASSUME CS:CODE,DS:DATA,SS:STACK MAIN PROC FAR MOV AX,DATA MOV DS,AX MOV AH,35H MOV AL,1CH ...
programs/oeis/099/A099563.asm
karttu/loda
0
126803
<reponame>karttu/loda<gh_stars>0 ; A099563: a(0) = 0; for n > 0, a(n) = final nonzero number in the sequence n, f(n,2), f(f(n,2),3), f(f(f(n,2),3),4),..., where f(n,d) = floor(n/d); the most significant digit in the factorial base representation of n. ; 0,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1402.asm
ljhsiun2/medusa
9
126805
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %r8 push %rax push %rbx push %rcx push %rdi push %rsi lea addresses_WC_ht+0x6eb6, %rdi nop nop nop cmp $6681, %r8 mov (%rdi), %ebx nop nop nop nop cmp $54999, %rbx lea addresses_WC_ht+0x2038, %rsi nop nop nop nop sub $43274, %rcx vmovu...
oeis/090/A090992.asm
neoneye/loda-programs
11
126806
<reponame>neoneye/loda-programs<filename>oeis/090/A090992.asm ; A090992: Number of meaningful differential operations of the n-th order on the space R^7. ; Submitted by <NAME> ; 7,13,24,45,84,158,296,557,1045,1966,3691,6942,13038,24516,46055,86585,162680,305809,574624,1080106,2029680,3814941,7169145,13474502,25322375,4...
oeis/104/A104256.asm
neoneye/loda-programs
11
126807
; A104256: [ (2n-1)!!/(4n) ]. ; Submitted by <NAME> ; 0,0,1,6,47,433,4826,63344,957206,16368226,312484331,6588211317,152035645781,3811750833515,103171389227156,2998418499414228,93127351040630156,3078376326065274609,107905191218919625781 seq $0,104255 ; a(n) = floor( (2n-1)!!/(2n) ). div $0,2
oeis/080/A080233.asm
neoneye/loda-programs
11
126808
<filename>oeis/080/A080233.asm ; A080233: Triangle T(n,k) obtained by taking differences of consecutive pairs of row elements of Pascal's triangle A007318. ; Submitted by <NAME> ; 1,1,0,1,1,-1,1,2,0,-2,1,3,2,-2,-3,1,4,5,0,-5,-4,1,5,9,5,-5,-9,-5,1,6,14,14,0,-14,-14,-6,1,7,20,28,14,-14,-28,-20,-7,1,8,27,48,42,0,-42,-48,-...
oeis/166/A166661.asm
neoneye/loda-programs
11
126809
<reponame>neoneye/loda-programs ; A166661: Totally multiplicative sequence with a(p) = 3p+1 for prime p. ; Submitted by <NAME> ; 1,7,10,49,16,70,22,343,100,112,34,490,40,154,160,2401,52,700,58,784,220,238,70,3430,256,280,1000,1078,88,1120,94,16807,340,364,352,4900,112,406,400,5488,124,1540,130,1666,1600,490,142,24010,4...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1699.asm
ljhsiun2/medusa
9
126810
<reponame>ljhsiun2/medusa<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %rax push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0x159a8, %r10 dec %rdi movw $0x6162, (%r10) nop nop dec %rax lea addresses_A_ht+0xbe18, %rsi lea addresses_D_ht+0x1b5f8, %rdi nop sub %rdx, %...
oeis/144/A144128.asm
neoneye/loda-programs
11
126812
<reponame>neoneye/loda-programs ; A144128: Chebyshev U(n,x) polynomial evaluated at x=18. ; Submitted by <NAME> ; 1,36,1295,46584,1675729,60279660,2168392031,78001833456,2805897612385,100934312212404,3630829342034159,130608922001017320,4698290362694589361,169007844135004199676,6079584098497456598975,2186960197017734333...
Modellazione_e_analisi_di_sistemi/eclipse_workspace_mas/esercizi/temiEsame/esame_condizionamento_multiagente_LaGreca.asm
katema-official/Universita_magistrale_anno_1.2
0
126813
asm esame_condizionamento_multiagente_LaGreca import ../StandardLibrary signature: // DOMAINS domain Controller subsetof Agent domain Conditioner subsetof Agent enum domain UserTemperatureDomain = {AMBIENT, MINIMUM} enum domain Phase = {DAY, NIGHT} enum domain CondStateDomain = {ON, OFF} // FUNCTIONS static c...
programs/oeis/133/A133203.asm
neoneye/loda
22
126814
<gh_stars>10-100 ; A133203: a(n) = a(n-1) + 8*n + 4, n > 2. ; 0,1,3,31,67,111,163,223,291,367,451,543,643,751,867,991,1123,1263,1411,1567,1731,1903,2083,2271,2467,2671,2883,3103,3331,3567,3811,4063,4323,4591,4867,5151,5443,5743,6051,6367 mul $0,2 add $0,4 mov $1,$0 trn $0,5 mov $2,3 add $2,$1 add $1,$0 sub $1,$2 lpb $...
Transynther/x86/_processed/AVXALIGN/_ht_/i7-7700_9_0xca.log_21829_1487.asm
ljhsiun2/medusa
9
126815
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r10 push %r14 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0xe29, %rsi lea addresses_WC_ht+0x8629, %rdi clflush (%rdi) nop sub %rbx, %rbx mov $30, %rcx rep movsl nop nop nop xor $449, %r14 lea addresses_normal_ht+0x1202...
oeis/295/A295126.asm
neoneye/loda-programs
11
126817
<filename>oeis/295/A295126.asm ; A295126: Denominator of Sum_{d|n} mu(n/d)/d, where mu is the Möbius function A008683. ; Submitted by <NAME> ; 1,2,3,4,5,3,7,8,9,5,11,6,13,7,15,16,17,9,19,5,7,11,23,12,25,13,27,14,29,15,31,32,33,17,35,18,37,19,13,10,41,7,43,22,45,23,47,24,49,25,51,13,53,27,11,28,19,29,59,15,61,31,21,64,6...
src/kernel/start.asm
devinus/torix
3
126818
<gh_stars>1-10 ; ToriX - TORres Interactive eXecution ; Copyright (c) 2008 <NAME> ; Licensed under the MIT license. [bits 32] [global start] %ifdef CYGWIN [extern _main] %else [extern main] %endif [section .data] ; The Global Descriptor Table (GDT); this tells us where all the segments (now ; selectors) are: gdt: ...
programs/oeis/157/A157440.asm
neoneye/loda
22
126819
<gh_stars>10-100 ; A157440: a(n) = 121*n^2 - 204*n + 86. ; 3,162,563,1206,2091,3218,4587,6198,8051,10146,12483,15062,17883,20946,24251,27798,31587,35618,39891,44406,49163,54162,59403,64886,70611,76578,82787,89238,95931,102866,110043,117462,125123,133026,141171,149558,158187,167058,176171,185526,195123,204962,215043,225...
programs/oeis/040/A040379.asm
jmorken/loda
1
126820
<gh_stars>1-10 ; A040379: Continued fraction for sqrt(399). ; 19,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38 mov $1,19 lpb $0 mod $0,2 mul $1,2 lpe gcd $1,$0
oeis/203/A203512.asm
neoneye/loda-programs
11
126821
<reponame>neoneye/loda-programs ; A203512: a(n) = v(n+1)/v(n), where v = A203511. ; Submitted by <NAME>(s4) ; 1,4,63,2288,151200,15909696,2447297356,518678754048,145022370451200,51747613910720000,22956761806169786496,12397159038346976323584,8008689946841913447559168,6099405371286264105062400000,540889654525392602411982...
non_regression/other_x86_linux_31.s.asm
LRGH/plasmasm
1
126822
.file "(extract)sblat2.f" .section .rodata .LC30: .ascii " " .align 4 .LC31: .ascii "( 1X, I6, ': ', A6, '(''', A1, ''',', I3, ',', F4.1, ', X,'," .ascii " I2, ', Y,', I2, ', A,', I3, ') .' )" .align 4 .LC32: .ascii "( 1X, I6, ': ', A6, '(''', A1, ''',', I3, ',', F4.1, ', X,'," .asc...
oeis/037/A037627.asm
neoneye/loda-programs
11
126823
; A037627: Base 6 digits are, in order, the first n terms of the periodic sequence with initial period 2,3,0. ; Submitted by <NAME>(s4) ; 2,15,90,542,3255,19530,117182,703095,4218570,25311422,151868535,911211210,5467267262,32803603575,196821621450,1180929728702,7085578372215,42513470233290,255080821399742,1530484928398...
SMRandoDesktop/ItemRandomizer/patches/src/escapimals.asm
marcelodmc3/super-metroid-desktop-item-randomizer
0
126825
<filename>SMRandoDesktop/ItemRandomizer/patches/src/escapimals.asm arch snes.cpu lorom org $83ADA0 db $FD, $92, $00, $05, $3E, $26, $03, $02, $00, $80, $A2, $B9 //door to parlor db $4D, $DE, $40, $00, $00, $00, $01, $00, $00, $80, $00, $00 //door to escape room 1 org $8F98DC db $06, $F0 //setup asm po...
oeis/186/A186389.asm
neoneye/loda-programs
11
126826
; A186389: Adjusted joint rank sequence of (f(i)) and (g(j)) with f(i) after g(j) when f(i)=g(j), where f(i)=6i and g(j)=j(j+1)/2 (triangular number). Complement of A186390. ; Submitted by <NAME>(s1) ; 4,6,8,10,12,14,15,17,18,20,22,23,25,26,27,29,30,32,33,35,36,37,39,40,41,43,44,45,47,48,49,51,52,53,55,56,57,58,60,61,...
Transynther/x86/_processed/NC/_st_zr_un_/i9-9900K_12_0xca.log_21829_1362.asm
ljhsiun2/medusa
9
126827
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r9 push %rax push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x1c0cc, %r9 clflush (%r9) nop nop nop xor $22524, %rbx movb (%r9), %al nop and %rcx, %rcx lea addresses_WT_ht+0x14dbb, %rsi lea addresses_WT_ht+0xe79b, %rdi nop nop cmp %r10, %...
Bluetooth attendancesystem embedded C Code @DESD93685/r.asm
utsavmitra/Avr48_HC-05
0
126828
;CodeVisionAVR C Compiler V1.24.8d Professional ;(C) Copyright 1998-2006 <NAME>, HP InfoTech s.r.l. ;http://www.hpinfotech.com ;Chip type : ATmega48 ;Clock frequency : 4.000000 MHz ;Memory model : Small ;Optimize for : Size ;(s)printf features : int, width ;(s)sca...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_961.asm
ljhsiun2/medusa
9
126829
<filename>Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_961.asm .global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r15 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_normal_ht+0x1d91c, %r15 nop nop cmp $22962, %r10 mov $0x6162636465666768, %r12 movq %r12, %xmm6...
functions_mathematics.asm
prestegard00000/learning_assembly
0
126830
<filename>functions_mathematics.asm ; MIT License ; Copyright (c) 2021 <NAME> (<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...
oeis/141/A141956.asm
neoneye/loda-programs
11
126831
; A141956: Primes congruent to 13 mod 27. ; Submitted by <NAME> ; 13,67,229,283,337,499,607,661,769,823,877,1039,1093,1201,1471,1579,1741,2011,2281,2389,2551,2659,2713,2767,3037,3253,3307,3361,3469,3631,3739,3793,3847,4441,4549,4603,4657,5197,5413,5521,5683,5737,5791,5953,6007,6277,6547,6709,6763,6871,7411,7573,7681,77...
src/weapons.asm
clach04/Chopper-Command-C64
36
126832
<gh_stars>10-100 //friendly fire is just a nice laser beam. //now, unlike the other objects in game, laser beams follow screen coordinates, rather than world coordinates //this makes things much easier on the cpu side, and the parallax discrepancies are not noticeable because the beam is very fast. //this is also co...