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
third_party/virtualbox/src/VBox/Additions/WINNT/SharedFolders/driver/Win2kWorkaroundsA.asm
Fimbure/icebox-1
521
45149
<filename>third_party/virtualbox/src/VBox/Additions/WINNT/SharedFolders/driver/Win2kWorkaroundsA.asm ; $Id: Win2kWorkaroundsA.asm $ ;; @file ; VirtualBox Windows Guest Shared Folders - Windows 2000 Hacks, Assembly Parts. ; ; ; Copyright (C) 2006-2017 Oracle Corporation ; ; This file is part of VirtualBox Open Source E...
programs/oeis/035/A035488.asm
neoneye/loda
22
45150
; A035488: 3rd column of Stolarsky array. ; 3,10,18,24,31,37,45,52,58,65,71,79,86,92,99,107,113,120,126,134,141,147,154,162,168,175,181,188,196,202,209,215,223,230 mul $0,2 seq $0,35337 ; Third column of Wythoff array. div $0,2 add $0,2
programs/oeis/175/A175970.asm
neoneye/loda
22
45151
<filename>programs/oeis/175/A175970.asm ; A175970: Complement of A051349(n), where A051349(n) = the lexicographically earliest sequence with first differences as increasing sequence of composites A002808(n). ; 2,3,4,6,7,8,9,10,12,13,14,15,16,17,18,20,21,22,23,24,25,26,27,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44,45,...
oeis/154/A154926.asm
neoneye/loda-programs
11
45152
; A154926: Signed version of Pascal's triangle. Diagonal positive, rest negative. ; Submitted by <NAME> ; 1,-1,1,-1,-2,1,-1,-3,-3,1,-1,-4,-6,-4,1,-1,-5,-10,-10,-5,1,-1,-6,-15,-20,-15,-6,1,-1,-7,-21,-35,-35,-21,-7,1,-1,-8,-28,-56,-70,-56,-28,-8,1 lpb $0 add $1,1 sub $0,$1 mov $2,$1 sub $2,$0 min $2,1 lpe bin ...
books_and_notes/professional_courses/Assembly_language_and_programming/sources/汇编语言程序设计教程第四版/codes/6_8.asm
gxw1/review_the_national_post-graduate_entrance_examination
640
45153
<filename>books_and_notes/professional_courses/Assembly_language_and_programming/sources/汇编语言程序设计教程第四版/codes/6_8.asm DATA SEGMENT COUNT EQU 10 ARRAY DB 36H,8AH,26H,37H,99H,0DH,62H,0FH,50H,43H RESULT DB ? DATA ENDS STACK SEGMENT STACK DW 100 DUP (?) STACK ENDS CODE SEGMENT ...
programs/oeis/263/A263919.asm
neoneye/loda
22
45154
<filename>programs/oeis/263/A263919.asm ; A263919: Triangle read by rows giving successive states of cellular automaton generated by "Rule 163" initiated with a single ON (black) cell. ; 1,1,0,0,1,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,1,0,1,0,1,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0...
programs/oeis/307/A307872.asm
neoneye/loda
22
45155
; A307872: Sum of the smallest parts in the partitions of n into 3 parts. ; 0,0,1,1,2,4,5,7,11,13,17,23,27,33,42,48,57,69,78,90,106,118,134,154,170,190,215,235,260,290,315,345,381,411,447,489,525,567,616,658,707,763,812,868,932,988,1052,1124,1188,1260,1341,1413,1494,1584,1665 lpb $0 mov $2,$0 trn $0,6 seq $2,799...
libsrc/_DEVELOPMENT/target/yaz180/driver/diskio/c/sccz80/disk_status_fastcall.asm
ahjelm/z88dk
640
45157
<filename>libsrc/_DEVELOPMENT/target/yaz180/driver/diskio/c/sccz80/disk_status_fastcall.asm<gh_stars>100-1000 SECTION code_driver PUBLIC disk_status_fastcall EXTERN asm_disk_status ;------------------------------------------------------------------------------ ; Routines that talk with the IDE drive, these should be...
src/cm_presets_anyrmg.asm
Lui37/lttphack
0
45159
<filename>src/cm_presets_anyrmg.asm cm_anyrmg_submenu_presets: dw cm_anyrmg_presets_goto_eastern dw cm_anyrmg_presets_goto_escape dw cm_anyrmg_presets_goto_tempered dw cm_anyrmg_presets_goto_gtower dw cm_anyrmg_presets_goto_ganon dw cm_anyrmg_presets_goto_boss dw #$0000 %cm_header("ANY R...
src/bootsector.asm
fjpena/sword-of-ianna-zx
67
45160
org $fe00 bank1 equ 07FFDh ;"horizontal" and RAM switch port bankm equ 05B5Ch ;associated system variable bank2 equ 01FFDh ;"vertical" switch port bank678 equ 05B67h ;associated system variable select equ 01601h ;BASIC routine to ...
programs/oeis/193/A193866.asm
neoneye/loda
22
45161
; A193866: Even pentagonal numbers divided by 2. ; 0,6,11,35,46,88,105,165,188,266,295,391,426,540,581,713,760,910,963,1131,1190,1376,1441,1645,1716,1938,2015,2255,2338,2596,2685,2961,3056,3350,3451,3763,3870,4200,4313,4661,4780,5146,5271,5655,5786,6188,6325,6745,6888,7326,7475,7931,8086,8560,8721,9213,9380,9890,10063,...
I:O/1_1.asm
FZU-CS/assembly
0
45164
port1 equ 2A0h port2 equ 2A8h code segment assume cs:code start: L1:mov dx,port1 in al,dx call delay mov dx,port2 out dx,al call delay jmp L1 mov ah,4ch int 21h delay proc mov cx,0 wat2:push cx mov cx,200h wat1:loop wat1 pop cx lo...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1428.asm
ljhsiun2/medusa
9
45165
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r15 push %rax push %rbx push %rcx push %rdi push %rsi lea addresses_WC_ht+0x7375, %rax nop nop and %r15, %r15 movb (%rax), %bl and %r15, %r15 lea addresses_A_ht+0x1ab21, %rsi lea addresses_WT_ht+0x1c321, %rdi nop nop sub %r15, %r15 mo...
oeis/302/A302190.asm
neoneye/loda-programs
11
45167
<gh_stars>10-100 ; A302190: Hurwitz logarithm of natural numbers 1,2,3,4,5,... ; Submitted by <NAME> ; 0,2,-1,2,-6,24,-120,720,-5040,40320,-362880,3628800,-39916800,479001600,-6227020800,87178291200,-1307674368000,20922789888000,-355687428096000,6402373705728000,-121645100408832000,2432902008176640000,-5109094217170944...
Transynther/x86/_processed/NC/_zr_/i7-8650U_0xd2_notsx.log_9403_496.asm
ljhsiun2/medusa
9
45168
<filename>Transynther/x86/_processed/NC/_zr_/i7-8650U_0xd2_notsx.log_9403_496.asm .global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r9 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_WC_ht+0x1791b, %rsi lea addresses_normal_ht+0x100db, %rdi nop nop nop nop and %r13, %r13 mov $12, %r...
programs/oeis/231/A231674.asm
jmorken/loda
1
45170
<reponame>jmorken/loda ; A231674: a(n) = Sum_{i=0..n} digsum_6(i)^3, where digsum_6(i) = A053827(i). ; 0,1,9,36,100,225,226,234,261,325,450,666,674,701,765,890,1106,1449,1476,1540,1665,1881,2224,2736,2800,2925,3141,3484,3996,4725,4850,5066,5409,5921,6650,7650,7651,7659,7686,7750,7875,8091,8099,8126,8190,8315,8531,8874,...
oeis/344/A344877.asm
neoneye/loda-programs
11
45172
<gh_stars>10-100 ; A344877: a(n) = gcd(n, A344875(n)), where A344875 is multiplicative with a(2^e) = 2^(1+e) - 1, and a(p^e) = p^e -1 for odd primes p. ; Submitted by <NAME> ; 1,1,1,1,1,6,1,1,1,2,1,2,1,2,1,1,1,6,1,4,3,2,1,6,1,2,1,14,1,6,1,1,1,2,1,4,1,2,3,20,1,6,1,2,1,2,1,2,1,2,1,4,1,6,5,2,3,2,1,4,1,2,3,1,1,6,1,4,1,2,1,...
Library/Kernel/Graphics/graphicsStringUtils.asm
steakknife/pcgeos
504
45173
<filename>Library/Kernel/Graphics/graphicsStringUtils.asm<gh_stars>100-1000 COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1989 -- All Rights Reserved PROJECT: PC GEOS MODULE: Kernel Library FILE: graphicsStringUtils.asm AUTHOR: <NAME>, 13 October 19...
programs/oeis/014/A014920.asm
neoneye/loda
22
45174
<reponame>neoneye/loda<filename>programs/oeis/014/A014920.asm ; A014920: a(1)=1, a(n) = n*7^(n-1) + a(n-1). ; 1,15,162,1534,13539,114381,937924,7526268,59409477,462945547,3570173286,27298094202,207234827815,1563680973513,11737027066248,87698011225336,652657830908553,4840007082678279,35779865442976810,263757769150439670...
kernel.asm
asdfqwer0408/xv6
0
45175
<reponame>asdfqwer0408/xv6 kernel: file format elf32-i386 Disassembly of section .text: 80100000 <multiboot_header>: 80100000: 02 b0 ad 1b 00 00 add 0x1bad(%eax),%dh 80100006: 00 00 add %al,(%eax) 80100008: fe 4f 52 decb 0x52(%edi) 8010000b: e4 .byte 0...
Appl/SDK_C/no_go/Hello4/helloUI.asm
steakknife/pcgeos
504
45177
<reponame>steakknife/pcgeos<filename>Appl/SDK_C/no_go/Hello4/helloUI.asm COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1992 -- All Rights Reserved PROJECT: PC/GEOS MODULE: SDK_C/Hello4 (Sample Asm UI/C implemenation) FILE: hello.asm AUTHOR: <NAME> ...
oeis/267/A267987.asm
neoneye/loda-programs
11
45180
<filename>oeis/267/A267987.asm ; A267987: a(n) = Catalan(n)^2*(4n + 4). ; 4,8,48,400,3920,42336,487872,5889312,73616400,945561760,12412647104,165878102208,2249987591488,30906422960000,429157758816000,6015361252737600,85011208292365200,1210159553338375200,17338543308064440000,249857534618318088000 mov $1,$0 sub $2,$0 s...
samples/a8/games/3inaRow/rmt_feat.asm
zbyti/Mad-Pascal
1
45183
<filename>samples/a8/games/3inaRow/rmt_feat.asm ;* --------BEGIN-------- ;* E:\atari\__code\MadPascal\3inaRow\popndrop.rmt FEAT_SFX equ 1 FEAT_GLOBALVOLUMEFADE equ 0 ;RMTGLOBALVOLUMEFADE variable FEAT_NOSTARTINGSONGLINE equ 0 FEAT_INSTRSPEED equ 1 FEAT_CONSTANTSPEED equ 5 ;(0 times) FEAT_COMMAND1 equ 1 ;(...
libsrc/_DEVELOPMENT/arch/sms/PSGlib/c/sdcc/PSGSFXPlayLoop_callee.asm
jpoikela/z88dk
640
45184
; void PSGSFXPlayLoop(void *sfx,unsigned char channels) SECTION code_clib SECTION code_PSGlib PUBLIC _PSGSFXPlayLoop_callee EXTERN asm_PSGlib_SFXPlayLoop _PSGSFXPlayLoop_callee: pop hl pop de dec sp ex (sp),hl ld c,h jp asm_PSGlib_SFXPlayLoop
audio/music/profoak.asm
Dev727/ancientplatinum
28
45185
<filename>audio/music/profoak.asm Music_ProfOak: musicheader 3, 1, Music_ProfOak_Ch1 musicheader 1, 2, Music_ProfOak_Ch2 musicheader 1, 3, Music_ProfOak_Ch3 Music_ProfOak_Ch1: tempo 118 volume $77 vibrato $12, $34 tone $0001 stereopanning $f0 dutycycle $3 notetype $c, $98 octave 2 note F#, 1 note B_, 1 o...
src/game_level/enemiesBoss.asm
TypeDefinition/NautiBuoy
2
45186
INCLUDE "./src/include/entities.inc" INCLUDE "./src/definitions/definitions.inc" INCLUDE "./src/include/movement.inc" INCLUDE "./src/include/tile_collision.inc" SECTION "Boss Data", WRAM0 wBossStateTracker:: ds 1 ; helps keep track of the boss current states and behavior wPlayerLastPosTracker:: ds 2 ; first half is po...
data/mapObjects/fightingdojo.asm
etdv-thevoid/pokemon-rgb-enhanced
1
45187
FightingDojoObject: db $3 ; border block db $2 ; warps db $b, $4, $1, $ff db $b, $5, $1, $ff db $0 ; signs db $7 ; objects object SPRITE_BLACKBELT, $5, $3, STAY, DOWN, $1, OPP_BLACKBELT, $1 object SPRITE_BLACKBELT, $3, $4, STAY, RIGHT, $2, OPP_BLACKBELT, $2 object SPRITE_BLACKBELT, $3, $6, STAY, RIGHT, $3, ...
oeis/083/A083725.asm
neoneye/loda-programs
11
45188
; A083725: a(n) = n * [1 + sum(k=1 to n) prime(k)]. ; 0,3,12,33,72,145,252,413,624,909,1300,1771,2376,3107,3948,4935,6112,7497,9036,10811,12800,14973,17424,20125,23136,26525,30212,34155,38416,42949,47820,53351,59264,65637,72352,79695,87408,95645,104424,113685,123520,133947,144816,156477,168608,181305,194488,208633,2237...
Transynther/x86/_processed/US/_zr_/i7-7700_9_0x48.log_21829_2467.asm
ljhsiun2/medusa
9
45189
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %rax push %rbp push %rsi lea addresses_A_ht+0x1434f, %rax add %rsi, %rsi movb $0x61, (%rax) nop xor %r11, %r11 lea addresses_WT_ht+0xd74f, %rsi clflush (%rsi) nop and %rax, %rax movb (%rsi), %r12b nop sub %r11, %r11 pop %rsi pop %rbp pop %rax pop %r1...
libsrc/input/rx78/in_KeyPressed.asm
Toysoft/z88dk
0
45190
<gh_stars>0 ; uint in_KeyPressed(uint scancode) SECTION code_clib PUBLIC in_KeyPressed PUBLIC _in_KeyPressed ; Determines if a key is pressed using the scan code ; returned by in_LookupKey. ; enter : l = scan row ; h = key mask ; exit : carry = key is pressed & HL = 1 ; no carry = key not pressed & ...
bindsckcode2.asm
LizWanic/StackOverflow
0
45192
; nasm -f bin bindsckcode2.asm ;open listener, bind stdin, stdout, stderr to connected sock ;syscall eax ebx,ecx,edx ;----------- ---- --------------------------------------------------------------- ;socketcall x066 socket=1,->[AF_INET=2,SOCK_STREAM=2,prot=0] ;socketcall x066 bind=2,->[sfd,->sadr=[0xff,2,hi,lo,...
libsrc/_DEVELOPMENT/ctype/c/sdcc_iy/isalpha.asm
jpoikela/z88dk
640
45193
; int isalpha(int c) SECTION code_clib SECTION code_ctype PUBLIC _isalpha EXTERN _isalpha_fastcall _isalpha: pop af pop hl push hl push af jp _isalpha_fastcall
oeis/050/A050404.asm
neoneye/loda-programs
11
45194
<reponame>neoneye/loda-programs ; A050404: Partial sums of A051878. ; Submitted by <NAME>(s1.) ; 1,14,77,280,798,1932,4158,8184,15015,26026,43043,68432,105196,157080,228684,325584,454461,623238,841225,1119272,1469930,1907620,2448810,3112200,3918915,4892706,6060159,7450912,9097880,11037488,13309912,15959328,19034169,225...
LAB_3.asm
skinan/Assembly-Basics-8086
0
45195
<reponame>skinan/Assembly-Basics-8086 .MODEL SMALL .STACK .DATA .CODE MOV AX, 5 MOV BX, 6 PUSH AX PUSH BX POP AX POP BX HLT ; HAULT
programs/oeis/143/A143272.asm
neoneye/loda
22
45196
<gh_stars>10-100 ; A143272: a(n) = d(n)*T(n), where d(n) is the number of divisors of n (A000005) and T(n)=n(n+1)/2 are the triangular numbers (A000217). ; 1,6,12,30,30,84,56,144,135,220,132,468,182,420,480,680,306,1026,380,1260,924,1012,552,2400,975,1404,1512,2436,870,3720,992,3168,2244,2380,2520,5994,1406,2964,3120,6...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1222.asm
ljhsiun2/medusa
9
45197
<reponame>ljhsiun2/medusa<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r14 push %r15 push %r8 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0x6065, %r14 nop nop inc %r15 mov (%r14), %dx nop nop nop nop nop sub %r14, %r14 lea addresses_WT_ht+0x19125, %rsi lea addresses_WC_ht+0...
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_21829_1767.asm
ljhsiun2/medusa
9
45198
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r14 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x6547, %r10 nop nop nop inc %r14 movb $0x61, (%r10) nop nop xor $30057, %rdx lea addresses_D_ht+0x10347, %rcx nop nop nop nop nop add %rsi, %rsi mov $0x6162636465666768, %r11 ...
constants/audio_constants.asm
opiter09/ASM-Machina
1
45199
; pitch ; Audio[1|2|3]_Pitches indexes (see audio/notes.asm) const_def const C_ ; 0 const C# ; 1 const D_ ; 2 const D# ; 3 const E_ ; 4 const F_ ; 5 const F# ; 6 const G_ ; 7 const G# ; 8 const A_ ; 9 const A# ; A const B_ ; B NUM_NOTES EQU const_value ; channel ; Audio[1|2|3]_HWChannelBaseAddresses, Audi...
ShaderV.asm
michal-z/ShaderV
5
45200
<filename>ShaderV.asm format PE GUI entry Start macro GetFunc lib*,name* { push name#$ push [lib] call [w32GetProcAddress] mov [name],eax } section '.text' code readable executable CreateShader: push ebx esi push 0 ...
oeis/022/A022117.asm
neoneye/loda-programs
11
45201
<filename>oeis/022/A022117.asm<gh_stars>10-100 ; A022117: Fibonacci sequence beginning 2, 15. ; Submitted by <NAME>(s4) ; 2,15,17,32,49,81,130,211,341,552,893,1445,2338,3783,6121,9904,16025,25929,41954,67883,109837,177720,287557,465277,752834,1218111,1970945,3189056,5160001,8349057,13509058,21858115,35367173,57225288,9...
all additions.asm
Invisible-Luna/8086emu_program
1
45202
org 100h ; ;========================================== ; PROGRAM SEGMENT include 'emu8086.inc' .stack 64 .model small .data data1 DB 25h data2 DB 12h data3 DB 15H data4 DB 1FH data5 DB 2BH sum DB ? .code main proc far mov ax,@data ...
Transynther/x86/_processed/AVXALIGN/_ht_zr_/i3-7100_9_0x84_notsx.log_19389_630.asm
ljhsiun2/medusa
9
45203
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r15 push %r8 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0x161ca, %rcx nop nop cmp $48244, %r11 mov (%rcx), %r15d nop nop nop nop sub $13971, %r15 lea addresses_D_ht+0x1a2ca, %r8 nop nop nop sub $50784, %...
Appl/Tools/Localize/Document/documentBuild.asm
steakknife/pcgeos
504
45204
<gh_stars>100-1000 COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1992 -- All Rights Reserved PROJECT: PC GEOS MODULE: ResEdit FILE: documentBuild.asm AUTHOR: <NAME>, Dec 1, 1992 ROUTINES: Name Description ---- ----------- REDCr...
s2/sfx-original/B6 - Spikes Move.asm
Cancer52/flamedriver
9
45205
<reponame>Cancer52/flamedriver Sound36_SpikesMove_Header: smpsHeaderStartSong 2 smpsHeaderVoiceNull smpsHeaderTempoSFX $01 smpsHeaderChanSFX $01 smpsHeaderSFXChannel cPSG3, Sound36_SpikesMove_PSG3, $00, $00 ; PSG3 Data Sound36_SpikesMove_PSG3: smpsModSet $01, $01, $F0, $08 smpsPSGform $E7 ...
libtool/src/gmp-6.1.2/mpn/x86_64/addmul_2.asm
kroggen/aergo
278
45208
dnl AMD64 mpn_addmul_2 -- Multiply an n-limb vector with a 2-limb vector and dnl add the result to a third limb vector. dnl Copyright 2008, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. dnl dnl The GNU MP Library is free software; you can redistribute it and/or modify dnl...
apps/fdd.asm
vipoo/msxrc2014
1
45209
<gh_stars>1-10 DIAGENABLE EQU 0 CPUMHZ: EQU 3686400 / 1000 / 1000 CPUSCL: EQU CPUMHZ - 2 ; OTHERWISE 2 LESS THAN PHI MHZ ; CB_CPUMHZ DB CPUMHZ PUBLIC _fdInit, _fdIdle ; ; FLOPPY DISK MEDIA SELECTIONS (ID'S MUST BE INDEX OF ENTRY IN FCD_TBL) ; ; ; FD MODE SELECTIONS ; FDMODE_NONE EQU 0 FDMODE_DIO EQU 1 ; DISKIO...
Transynther/x86/_processed/US/_zr_/i7-8650U_0xd2.log_21829_1799.asm
ljhsiun2/medusa
9
45211
.global s_prepare_buffers s_prepare_buffers: push %r13 push %rax push %rbp push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_UC_ht+0x7b7e, %rsi lea addresses_UC_ht+0xedb6, %rdi nop nop nop nop sub $19954, %rax mov $78, %rcx rep movsb nop nop nop nop xor $5305, %rax lea addresses_A_ht+0x1c1b6, %r13 nop and...
lab2/Lab2_test_case/8.asm
may811204/EE460NCompArchi
0
45212
;8.asm test br ;.ORIG X3000 ;ADD R5, R5, #2 ;HERE ADD R5, R5,#-1; ;BRp HERE; ;ADD R1, R1, X1; ;halt ;.END ; XOR .ORIG X3000 ADD R7, R7, #5 ;101 ADD R2, R2, #8 ;1000 XOR R1, R2, R7 ; 1101 NOT R4, R7; FFFA halt .END
c6ers/interlnk/switcher.asm
minblock/msdos
0
45213
;*** ;* $Workfile: switcher.asm $ ;* $Revision: 1.1 $ ;* $Author: <NAME> $ ;* $Date: 27 Jun 1989 14:55:26 $ ;*** % .MODEL memmodel, language .DATA EXTRN C dos5_switcher:BYTE EXTRN _display_segment:WORD savepwr_flag db 0 ...
oeis/135/A135949.asm
neoneye/loda-programs
11
45214
; A135949: a(n)=5a(n-2)+2a(n-3). ; Submitted by <NAME>(s1) ; 1,-1,1,-3,3,-13,9,-59,19,-277,-23,-1347,-669,-6781,-6039,-35243,-43757,-188293,-289271,-1028979,-1822941,-5723437,-11172663,-32263067,-67310189,-183660661,-401077079,-1052923683,-2372706717,-6066772573 mov $3,7 lpb $0 sub $0,1 mov $1,$2 sub $2,$3 mov...
quadraticEquationSolver.asm
Osakue/quadratic-equation-solver-assignment-2
0
45217
<filename>quadraticEquationSolver.asm .data buzz_1:.asciiz "\nenter any number for (A):" buzz_2:.asciiz "\nenter any number for (B):" buzz_3:.asciiz "\nenter any number for (C):" buzz_error:.asciiz "\nComplex root, try again " buzz_ans:.asciiz "\nYour answer is\n" buzz_and:.asciiz " & " buzz_question:.asciiz "\nWould y...
src/common/_gatimer.asm
OS2World/DEV-UTIL-ScitechOS_PML
0
45220
;**************************************************************************** ;* ;* SciTech Nucleus Graphics Architecture ;* ;* Copyright (C) 1991-1998 SciTech Software, Inc. ;* All rights reserved. ;* ;* ========================================================...
Lab5/Lab5.asm
travistakai/CE12
1
45221
<gh_stars>1-10 ;<NAME> ;CE12L-03 ;1375886 .ORIG x3000 ;RESET ALL NUMBERS TO 0 START AND R0, R0, #0 AND R1, R1, #0 AND R2, R2, #0 AND R3, R3, #0 AND R4, R4, #0 AND R5, R5, #0 AND R6, R6, #0 AND R7, R7, #0 ST R7, FLAG ST R7, NUMBER ST R7, STORAGE LEA R0, WELCOME ;LOAD AND PRINT WELCOME MESSAGE PUTS LOOP GETC ;TAKE ...
oeis/277/A277232.asm
neoneye/loda-programs
11
45222
; A277232: Numerators of the partial sums of the cubes of the expansion coefficients of 1/sqrt(1-x). ; Submitted by <NAME>(w4) ; 1,9,603,4949,2576763,20864151,1347632055,10860010029,44749069441659,359788384157147,23124997294306677,185685617347012755,95380005326947177879,765237422887515344907,49101291379356533433423,393...
simd/i386/jdsample-mmx.asm
1camper/libjpeg-turbo
522
45223
<filename>simd/i386/jdsample-mmx.asm ; ; jdsample.asm - upsampling (MMX) ; ; Copyright 2009 <NAME> <<EMAIL>> for Cendio AB ; Copyright (C) 2016, <NAME>. ; ; Based on the x86 SIMD extension for IJG JPEG library ; Copyright (C) 1999-2006, MIYASAKA Masaru. ; For conditions of distribution and use, see copyright notice in ...
libsrc/stdio/m5/fputc_cons.asm
dex4er/deb-z88dk
1
45224
; ; Basic video handling for the SORD M5 ; ; (HL)=char to display ; ; $Id: fputc_cons.asm,v 1.2 2002/04/17 21:30:26 dom Exp $ ; XLIB fputc_cons .fputc_cons ld hl,2 add hl,sp ld a,(hl) jp $1088
tests/vice-tests/interrupts/cia-int/cia-int.asm
PhylumChordata/chips-test
330
45225
<gh_stars>100-1000 ;************************************************************************** ;* ;* FILE cia-int.asm ;* Copyright (c) 2010 <NAME> <<EMAIL>> ;* Written by <NAME> <<EMAIL>> ;* ;* DESCRIPTION ;* ;****** processor 6502 seg.u zp ;************************************************************...
libsrc/target/z88/net/no_zsockdev.asm
jpoikela/z88dk
640
45226
<reponame>jpoikela/z88dk ; ; Routine called when there is no ; Zsock library/packages installed ; ; djm 7/2/2001 SECTION code_clib PUBLIC no_zsock .no_zsock ret
modules/keyboard.asm
formicant/Cuboid
1
45228
MODULE Keyboard ; requires: ; > e: direction ; spoils: af, bc getKeys ld e, 0 ld c, #FE ; keyboard port ; yPos [S] ld b, #FD in a, (c) and %00010 sub 1 rl e ; yNeg [W] ld b, #FB in a, (c) and %00010 sub 1 rl e ; xPos [A] ld b, #F...
programs/oeis/313/A313611.asm
karttu/loda
0
45229
; A313611: Coordination sequence Gal.6.337.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,10,14,20,24,29,34,38,44,48,53,58,63,68,72,78,82,87,92,96,102,106,111,116,121,126,130,136,140,145,150,154,160,164,169,174,179,184,188,194...
src/basics/helloworld-lf.asm
Pentium1080Ti/x86-assembly
0
45230
%include 'src/include/functions.asm' SECTION .data msg1 db 'Hello', 0h msg2 db 'World', 0h SECTION .text global _start _start: mov eax, msg1 call sprintLF mov eax, msg2 call sprintLF call quit
programs/oeis/203/A203623.asm
neoneye/loda
22
45231
; A203623: Partial sums of A061395. ; 0,1,3,4,7,9,13,14,16,19,24,26,32,36,39,40,47,49,57,60,64,69,78,80,83,89,91,95,105,108,119,120,125,132,136,138,150,158,164,167,180,184,198,203,206,215,230,232,236,239,246,252,268,270,275,279,287 lpb $0 mov $2,$0 sub $0,1 seq $2,61395 ; Let p be the largest prime factor of n; ...
atiny-loop-optimized2.asm
johanvandegriff/ATinyGame
0
45232
.include "/usr/share/avra/tn9def.inc" .CSEG ; code section .ORG $0000 ; the starting address setup: ; set up the stack ldi r16, high(RAMEND) out SPH, r16 ldi r16, low(RAMEND) out SPL, r16 ; set clock divider ldi r16, 0x00 ; clock divided by 1 ldi r17, 0xD8 ; the key for CCP out CCP, r17 ; Co...
PRG/objects/5-8.asm
narfman0/smb3_pp1
0
45233
<reponame>narfman0/smb3_pp1 .byte $01 ; Unknown purpose .byte OBJ_LAKITU, $2A, $12 .byte OBJ_REDTROOPA, $55, $18 .byte OBJ_REDTROOPA, $60, $18 .byte OBJ_FLYINGREDPARATROOPA, $69, $14 .byte OBJ_FLYINGREDPARATROOPA, $75, $10 .byte $FF ; Terminator
oeis/053/A053455.asm
neoneye/loda-programs
11
45234
; A053455: a(n) = ((8^n) - (-6)^n)/14. ; 0,1,2,52,200,2896,15392,169792,1078400,10306816,72376832,639480832,4753049600,40201179136,308548739072,2546754076672,19903847628800,162051890937856,1279488468058112,10337467701133312,82090381869056000,660379213392510976,5261096756499709952,42220395755839946752,336973435823665971...
workspaceModeling/Vatl/ModelTrans/M2M.asm
geekdos/Personal_Labs
0
45235
<?xml version = '1.0' encoding = 'ISO-8859-1' ?> <asm version="1.0" name="0"> <cp> <constant value="M2M"/> <constant value="links"/> <constant value="NTransientLinkSet;"/> <constant value="col"/> <constant value="J"/> <constant value="enumLiteralType"/> <constant value="main"/> <constant value="A"/> ...
source/start.asm
paulscottrobson/Basic65816
0
45236
<filename>source/start.asm ; ******************************************************************************************* ; ******************************************************************************************* ; ; Name : start.asm ; Purpose : Test bed for BASIC ; Date : 6th June 2019 ; Author : <EMAIL> ; ...
reference/lab1/assembly/examples/linux/skel.asm
Leser2020/6.828
0
45237
<filename>reference/lab1/assembly/examples/linux/skel.asm ; file: skel.asm ; ; To compile executable (linux): ; nasm -f elf skel.asm ; gcc -o skel driver.c skel.o asm_io.o %include "asm_io.inc" ; initialized data is put in the data segment segment .data ; uninitialized data is put in the bss segment segment .bss ; ...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1873.asm
ljhsiun2/medusa
9
45238
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r13 push %r14 push %rbp push %rcx push %rdi push %rsi lea addresses_D_ht+0xaa06, %r13 nop nop xor $44967, %r12 movl $0x61626364, (%r13) cmp $7739, %rsi lea addresses_D_ht+0x19286, %r14 nop nop nop nop sub $65177, %r13 mov (%r14), %ecx add $64899, %r...
bank26.asm
alexsteb/zelda_gb_disassembly
3
45239
inc bc inc b ldh a, [$ff00 + $f5] <error> push af ld bc, $21f5 push af call nz, func_f509 push bc ldhl sp, d push af jp nz, .l_f547 jp nz, .l_f542 jp .l_f533 jp nz, .l_f544 stop push af jr nz, 0.l_805c jr nc, 0.l_8059 ld b, b ld l, $41 inc a jp .l_3751 ld d, b ld a, $60 ...
programs/oeis/180/A180123.asm
karttu/loda
0
45240
; A180123: Second of three "least, sum, least" self-generating sequences. ; 2,6,10,13,17,21,25,28,32,36,40,43,47,51,54,58,62,66,69,73,77,81,84,88,92,96,99,103,107,110,114,118,122,125,129,133,137,140,144,148,152,155,159,163,166,170,174,178,181,185,189,193,196,200,204,207,211,215,219,222,226,230,234,237,241,245,249,252,2...
Transynther/x86/_processed/AVXALIGN/_ht_zr_/i7-8650U_0xd2_notsx.log_362_1323.asm
ljhsiun2/medusa
9
45241
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %rax push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0x3827, %rdx clflush (%rdx) nop nop nop nop inc %rbp mov (%rdx), %rsi cmp $56540, %r11 lea addresses_normal_ht+0x1b159, %rbp nop nop add %rax, %rax m...
access/serkeys.asm
minblock/msdos
0
45242
; ; TITLE serkeys.a ALL_LINK equ 1 ;********* GLOBAL FUNCTIONS EXTRN _serialKeysOn:byte EXTRN _initGIDEI:near EXTRN ExtendedSeg:word EXTRN _fmouse_id:byte EXTRN _comp_id:byte EXTRN _combase:word PUBLIC _serialKeysEnableFar PUBLIC _serialKeysDisableFar PUBLIC _putInMouseBuffer PUBLIC _sendMouseData ...
oeis/020/A020768.asm
neoneye/loda-programs
11
45243
<filename>oeis/020/A020768.asm ; A020768: Decimal expansion of 1/sqrt(11). ; Submitted by <NAME>(s4) ; 3,0,1,5,1,1,3,4,4,5,7,7,7,6,3,6,2,2,6,4,6,8,1,2,0,6,6,9,7,0,0,6,2,4,2,5,8,1,1,5,5,3,5,0,4,1,4,4,4,8,6,6,9,0,6,4,1,6,9,8,3,7,6,9,1,9,6,8,0,4,2,2,0,5,5,3,6,7,6,2,2,4,2,8,0,7,6,6,7,2,6,4,8,0,2,6,4,2,2,8 mov $1,1 mov $2,...
mms_exploit/qmg_files/address_probe/poc.asm
googleprojectzero/SkCodecFuzzer
289
45246
; ; Samsung Qmage codec exploit proof-of-concept for remotely probing a specific ; range of virtual addresses in the Samsung Messages address space. ; ; Author: <NAME>, Google Project Zero ; Date: August 2020 ; Bug: CVE-2020-8899 (crash e418c0496cb1babf0eba13026f4d1504) ; Fixed: Samsung May 2020 Security Bull...
oeis/221/A221678.asm
neoneye/loda-programs
11
45247
<filename>oeis/221/A221678.asm ; A221678: Number of 0..3 arrays of length n with each element differing from at least one neighbor by 1 or less, starting with 0. ; Submitted by Christian Krause ; 0,2,5,20,68,241,844,2966,10413,36568,128408,450913,1583400,5560186,19524853,68562444,240760252,845440977,2968805844,10425101...
util/gut/rmcks.asm
olifink/smsqe
0
45248
<reponame>olifink/smsqe * Remove linked list of heap entries v0.01  J.R.Oakley Dec 1986 QJUMP * section util * include 'dev8_keys_hdr' include 'dev8_wman_wstatus' include 'dev8_wman_wwork' include 'dev8_qram_keys' * xref qr_rechp * xdef fl_rmcks ...
Microprocessor/far_call_advanced.asm
Nmane1612/Nihar-Mane
3
45249
name "faradv" org 100h ; set location counter to 100h jmp start adr_a dw offset a seg_a dw ? adr_c dw offset c seg_c dw ? ; set segments, requred because we don't know where ; the program will be loaded by the operating system start: mov ax, cs mov seg_a, ax mov seg_c, ax call far adr_a ...
sem.asm
TusharGupta01/XV6
0
45250
<reponame>TusharGupta01/XV6 _sem: file format elf32-i386 Disassembly of section .text: 00000000 <counter_init>: #define TARGET_COUNT_PER_CHILD 10 #define COUNTER_FILE "counter" #define SEMAPHORE_NUM 0 int counter_init(char *filename, int value) { 0: 55 push %ebp 1: 89 e5 ...
programs/oeis/305/A305060.asm
neoneye/loda
22
45251
; A305060: a(n) = 18*2^n + 10. ; 28,46,82,154,298,586,1162,2314,4618,9226,18442,36874,73738,147466,294922,589834,1179658,2359306,4718602,9437194,18874378,37748746,75497482,150994954,301989898,603979786,1207959562,2415919114,4831838218,9663676426,19327352842,38654705674,77309411338,154618822666,309237645322 mov $1,2 po...
programs/oeis/187/A187340.asm
karttu/loda
0
45252
<filename>programs/oeis/187/A187340.asm ; A187340: Hankel transform of A014301(n+1). ; 1,2,5,5,-2,-11,-11,2,17,17,-2,-23,-23,2,29,29,-2,-35,-35,2,41,41,-2,-47,-47,2,53,53,-2,-59,-59,2,65,65,-2,-71,-71,2,77,77,-2,-83,-83,2,89,89,-2,-95,-95,2,101,101,-2,-107,-107,2,113,113,-2,-119,-119 lpb $0,1 sub $2,$0 sub $0,1 ...
oeis/002/A002002.asm
neoneye/loda-programs
11
45253
<reponame>neoneye/loda-programs ; A002002: a(n) = Sum_{k=0..n-1} binomial(n,k+1) * binomial(n+k,k). ; Submitted by <NAME> ; 0,1,5,25,129,681,3653,19825,108545,598417,3317445,18474633,103274625,579168825,3256957317,18359266785,103706427393,586889743905,3326741166725,18885056428537,107347191941249,610916200215241,3480518...
lib/zx81_crt0.asm
andydansby/z88dk-mk2
1
45254
<reponame>andydansby/z88dk-mk2 ; CRT0 for the ZX81 ; ; <NAME> Apr. 2000 ; ; If an error occurs (eg. out if screen) we just drop back to BASIC ; ; ZX81 will be thrown in FAST mode by default. ; The "startup=2" parameter forces the SLOW mode. ; Values for "startup" from 3 to 6 activate...
libsrc/_DEVELOPMENT/l/sdcc/__divsint_callee.asm
jpoikela/z88dk
640
45255
<filename>libsrc/_DEVELOPMENT/l/sdcc/__divsint_callee.asm SECTION code_clib SECTION code_l_sdcc PUBLIC __divsint_callee EXTERN l_divs_16_16x16 __divsint_callee: ; signed 16-bit division ; ; enter : stack = divisor, dividend, ret ; ; exit : hl = quotient ; de = remainder pop af ...
Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0x84_notsx.log_21829_1075.asm
ljhsiun2/medusa
9
45256
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r14 push %r15 push %r9 push %rax push %rcx push %rdi push %rsi lea addresses_normal_ht+0x479e, %rsi lea addresses_D_ht+0x1b9b2, %rdi clflush (%rdi) nop nop nop xor $15829, %r11 mov $115, %rcx rep movsq nop inc %rcx lea addresses_normal_ht+0xb1ec, %rsi lea add...
assembly/exemplos/src/saudacao.asm
AbnerLimaa/arquitetura-de-computadores
0
45257
org 0x7C00 bits 16 main: mov ax, 0 mov ds, ax cli mov ax, perg call println mov ax, 0x7E00 call gets mov ax, resp call println mov ax, 0x7E00 call println hlt gets: push ax push di mov di, ax escrever_texto: mov ah, 0 int 0x16 cmp al, 13 je finaliza_gets mov [ds:di], al inc di ...
Recursos/entradasYSalidas.asm
DanielFLopez1620/MIPS_Basico
0
45259
.data letrero1: .asciiz "Digite un entero: " letrero2: .asciiz "Digite un flotante: " letrero3: .asciiz "Digite un doble: " letrero4: .asciiz "Digite una cadena: " mostrar: .asciiz "Lo obtenido es: " saltoLinea: .asciiz "\n" zeroD: .double 0.0 zeroF: .float 0.0 entradaCadena: .space ...
programs/oeis/029/A029009.asm
jmorken/loda
1
45260
<filename>programs/oeis/029/A029009.asm ; A029009: Expansion of 1/((1-x)(1-x^2)(1-x^4)(1-x^9)). ; 1,1,2,2,4,4,6,6,9,10,13,14,18,20,24,26,31,34,40,43,50,54,62,66,75,80,90,96,107,114,126,134,147,156,170,180,196,207,224,236,255,268,288,302,324,340,363,380,405,424,450 mov $1,17 lpb $0 mov $2,$0 sub $0,1 cal $2,25774...
libsrc/math/mbf64/c/sccz80/l_f64_long2f.asm
jpoikela/z88dk
640
45261
<filename>libsrc/math/mbf64/c/sccz80/l_f64_long2f.asm MODULE l_f64_long2f SECTION code_fp_mbf64 PUBLIC l_f64_ulong2f PUBLIC l_f64_slong2f EXTERN l_long_neg EXTERN ___mbf64_FA EXTERN ___mbf64_set_zero EXTERN msbios ; Convert signed char/int in l to floating poin...
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_21829_991.asm
ljhsiun2/medusa
9
45262
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r12 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x17540, %rsi lea addresses_D_ht+0xe3c0, %rdi clflush (%rsi) nop nop add %r11, %r11 mov $101, %rcx rep movsl nop dec %rdx lea addresses_WT_ht+0xb140, %rbx and $22418, %r10 mov ...
oeis/195/A195552.asm
neoneye/loda-programs
11
45263
<reponame>neoneye/loda-programs ; A195552: Hypotenuses of primitive Pythagorean triples in A195550 and A195551. ; Submitted by <NAME>(s1.) ; 5,109,1189,6485,141481,1543321,8417525,183642229,2003229469,10925940965,238367471761,2600190307441,14181862955045,309400794703549,3375045015828949,18408047189707445,40160199315773...
oeis/097/A097734.asm
neoneye/loda-programs
11
45264
<reponame>neoneye/loda-programs ; A097734: Chebyshev U(n,x) polynomial evaluated at x=129 = 3*43. ; Submitted by <NAME>(s3) ; 1,258,66563,17172996,4430566405,1143068959494,294907360983047,76084956064666632,19629623757323008009,5064366844433271399690,1306587016240026698112011,337094385823082454841499148,8696904495533903...
wof/lcs/enemy/AE.asm
zengfr/arcade_game_romhacking_sourcecode_top_secret_data
6
45265
copyright zengfr site:http://github.com/zengfr/romhack 001590 lea ($20,A0), A0 003D96 move.b (A1)+, ($ae,A0) [enemy+3C] 003D9A move.b (A1)+, ($3d,A0) [enemy+AE] 004348 ble $435a [enemy+AE] 00434E move.b ($7f,A0), D1 [enemy+AE] 008766 bne $8772 [123p+ 2, enemy+ 2] 008772 move.w A0, ($6a,A1) [en...
text/maps/silvercave.asm
longlostsoul/EvoYellow
16
45266
_SilverCaveBattleText2:: text "..." done _SilverCaveEndBattleText2:: text "Amazing." prompt _SilverCaveAfterBattleText2:: text "...I'm not yo" line "dad." done _SilverCaveBattleText1:: text "Did you want to" line "explore too???" para "It's big in here!" done _SilverCaveEndBattleText1:: text "Loss" lin...
programs/oeis/316/A316261.asm
neoneye/loda
22
45269
; A316261: The number of ways to induce a single pinch on a compact 2-manifold with n handles. (Note: The manifold is embedded in Euclidean 2-space, and each pinch partitions it into at most two submanifolds.) ; 1,3,9,15,26,37,55,73,100,127,165,203,254,305,371,437,520,603,705,807,930,1053,1199,1345,1516,1687,1885,2083,...
programs/oeis/022/A022353.asm
karttu/loda
0
45273
<filename>programs/oeis/022/A022353.asm<gh_stars>0 ; A022353: Fibonacci sequence beginning 0, 19. ; 0,19,19,38,57,95,152,247,399,646,1045,1691,2736,4427,7163,11590,18753,30343,49096,79439,128535,207974,336509,544483,880992,1425475,2306467,3731942,6038409,9770351,15808760,25579111,41387871,66966982,108354853,175321835,2...
cbm8bit/src/rds64.asm
ProVeg-Simon/Zimodem
231
45274
<reponame>ProVeg-Simon/Zimodem * = 49152 ; remote desktop server ; v1.0 07/07/2017 03:23p ; for c64net/zimodem v2.7+ ; ;.o ;.d rds64.bin jmp init;+0 jmp resmio;+3 jmp resmio;+6 jmp resmio;+9 jmp resmio;+12 ; ; ; ; ; public regs ; ; ; ; ; ; stat1s ...
sav/includes/charset.asm
zzazzdzz/fools2019
12
45275
<gh_stars>10-100 ; *** charset.asm ; Character set definitions. Char01: db 5 ; char width db %01110000 db %10001000 db %10001000 db %11111000 db %10001000 db %10001000 db %10001000 db %00000000 Char02: db 5 ; char width db %11110000 db %10001000 db %10001000 db ...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1836.asm
ljhsiun2/medusa
9
45276
<filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1836.asm .global s_prepare_buffers s_prepare_buffers: push %r12 push %r8 push %rbp push %rcx push %rdi push %rsi lea addresses_WT_ht+0x89bf, %rsi lea addresses_WC_ht+0x1b303, %rdi nop nop nop inc %r12 mov $9, %rcx rep movsl nop nop nop and ...
GenAsmAndBytes/sample/Win32Project1.asm
yanxxd/IDA
6
45277
<gh_stars>1-10 .text:00401000 ; .text:00401000 ; +-------------------------------------------------------------------------+ .text:00401000 ; | This file has been generated by The Interactive Disassembler (IDA) | .text:00401000 ; | Copyright (c) 2015 Hex-Rays, <<EMAIL>> | .text:00401000 ; | License i...