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 |
|---|---|---|---|---|
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0xca.log_1_913.asm | ljhsiun2/medusa | 9 | 198230 | <filename>Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0xca.log_1_913.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x15a6b, %rsi
lea addresses_WC_ht+0x2bf3, %rdi
and %r13, %r13
mov $50, %rcx
rep movsq
nop
sub %rdi, %rdi
le... |
P3/mayor.asm | AdrianPayne/MIPS32 | 0 | 198231 | <reponame>AdrianPayne/MIPS32
.text
#Leer dos números del usuario
li $v0, 5
syscall
move $a0, $v0
li $v0, 5
syscall
move $a1, $v0
#compara
bgt $a0, $a1, label
move $a0, $a1
label:
#Imprimir el resultado
li $v0, 1
syscall
|
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_1264.asm | ljhsiun2/medusa | 9 | 198232 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r14
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x1e9a1, %rbx
nop
nop
nop
nop
xor %rsi, %rsi
movb (%rbx), %r12b
nop
nop
nop
nop
nop
add $25228, %rbx
lea addresses_normal_ht+0x1a7f1, %rsi
lea addresses_UC_ht+0xb3f1, %rdi
clflush (%rdi... |
mips/training/RemoveLastDigitSeq.asm | JMazurkiewicz/ARKO-assembly | 0 | 198233 | .data
buf: .space 256
.text
.globl main
main:
li $v0, 8
la $a0, buf
li $a1, 256
syscall
la $t2, buf
move $t4, $t2
find_last_seq:
lbu $t3, ($t2)
bltu $t3, ' ', continue
addiu $t2, $t2, 1
bltu $t3, '0', find_la... |
mastersystem/zxb-sms-2012-02-23/zxb-sms/wip/zxb/library-asm/storestr.asm | gb-archive/really-old-stuff | 10 | 198234 | ; Stores value of current string pointed by DE register into address pointed by HL
; Returns DE = Address pointer
; Returns HL = HL
#include once <strcpy.asm>
__STORE_STR:
push de ; Pointer to b$
push hl ; Array pointer to variable memory address
ld b, (hl)
inc hl
ld h, (hl)
ld l, b ; Loads HL = (HL)
cal... |
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_8414_361.asm | ljhsiun2/medusa | 9 | 198235 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x7291, %rbx
nop
nop
dec %rdx
movw $0x6162, (%rbx)
nop
nop
and %rdx, %rdx
lea addresses_normal_ht+0xcee2, %rsi
lea addresses_WC_ht+0xee2, %rdi
nop
nop
nop
and %r13, %r13
mov $17, %rcx
re... |
programs/oeis/084/A084643.asm | neoneye/loda | 22 | 198236 | <filename>programs/oeis/084/A084643.asm<gh_stars>10-100
; A084643: a(n) = 3^(n-1)*(2*n-3) + 2^(n+1).
; 1,3,11,43,167,631,2315,8275,28943,99439,336659,1126027,3728279,12239527,39890843,129205699,416249375,1334710495,4262149667,13560765691,43005771431,135988785943,428882869931,1349402340403,4236476601647,13274255323471,4... |
iod/ser/open.asm | olifink/smsqe | 0 | 198237 | <reponame>olifink/smsqe
; SER OPEN V2.02 1989 <NAME> QJUMP
section ser
xdef ser_open
xref par_open
xref ser_rxen
include 'dev8_keys_par'
;+++
; SER OPEN, just calls PAR open and then if OK and input buffer set, enables
; receive.
;---
ser_open
jsr par_open ; do standard open
bne.s sero_exit
br... |
Library/Text/Ruler/rulerManager.asm | steakknife/pcgeos | 504 | 198238 | COMMENT @----------------------------------------------------------------------
Copyright (c) GeoWorks 1991 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Text Library
FILE: Ruler/rulerManager.asm
REVISION HISTORY:
Name Date Description
---- ---- -----------
Tony 7/91 Initial version
DESCRIPT... |
src/bios/utils.asm | shift-crops/x64emu | 0 | 198239 | <reponame>shift-crops/x64emu<filename>src/bios/utils.asm
global write_esb, write_esw, write_esd, memcpy_es
global in_byte, out_byte, in_word, out_word, cli, sti
BITS 16
write_esb:
push ebp
mov bp, sp
push di
mov di, word [bp+0x8]
mov ax, word [bp+0xc]
mov byte [es:di], al
pop di
o32 leave
o32 ret
write_esw:
... |
Day02/HelloWorld.asm | colin3dmax/learn_assembly_on_mac | 0 | 198240 | <filename>Day02/HelloWorld.asm
section .data
msg db 'Hello,world!',0xa
len equ $ - msg
section .text
global start
start
mov edx,len
mov ecx,msg
mov ebx,1
mov eax,4
int 0x80
mov eax,1
int 0x80
|
programs/oeis/001/A001148.asm | karttu/loda | 1 | 198241 | <reponame>karttu/loda<gh_stars>1-10
; A001148: Final digit of 3^n.
; 1,3,9,7,1,3,9,7,1,3,9,7,1,3,9,7,1,3,9,7,1,3,9,7,1,3,9,7,1,3,9,7,1,3,9,7,1,3,9,7,1,3,9,7,1,3,9,7,1,3,9,7,1,3,9,7,1,3,9,7,1,3,9,7,1,3,9,7,1,3,9,7,1,3,9,7,1,3,9,7,1
mod $0,4
mov $1,$0
gcd $0,4
mul $1,$0
mul $1,2
add $1,1
|
src/story.asm | santiontanon/talesofpopolon-ext | 4 | 198242 | <gh_stars>1-10
;-----------------------------------------------
; Story screen loop
GameStory_Loop:
call clearScreenLeftToRight
ld a,8
ld hl,ToPStorySongPletter
call PlayCompressedSong
; 1) decompress the story text:
ld hl,story_pletter
ld de,raycast_buffer
push de
call pletter_unpa... |
audio/headers/musicheaders1.asm | etdv-thevoid/pokemon-rgb-enhanced | 9 | 198243 | <filename>audio/headers/musicheaders1.asm
Music_PalletTown::
audio Music_PalletTown, Ch0, Ch1, Ch2
Music_Pokecenter::
audio Music_Pokecenter, Ch0, Ch1, Ch2
Music_Gym::
audio Music_Gym, Ch0, Ch1, Ch2
; Viridian City, Pewter City, Saffron City
Music_Cities1::
audio Music_Cities1, Ch0, Ch1, Ch2, Ch3
; Cerulean Cit... |
asm/procedures/min.asm | IronHeart7334/AssemblyPrograms | 0 | 198244 | <reponame>IronHeart7334/AssemblyPrograms
; general comments
; Write a procedure given by the following C prototype:
; int min(int a, int b)
; where a and b are signed doubleword integers,
; and min returns the smaller of them
;
; Write another procedure with this prototype:
; int min4Signed(int a, i... |
oeis/123/A123871.asm | neoneye/loda-programs | 11 | 198245 | ; A123871: Expansion of g.f.: (1+x+x^2)/(1-4*x-4*x^2).
; Submitted by <NAME>
; 1,5,25,120,580,2800,13520,65280,315200,1521920,7348480,35481600,171320320,827207680,3994112000,19285278720,93117562880,449611366400,2170915717120,10482108334080,50612096204800,244376818155520,1179955657441280,5697329902387200,275091422393139... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_44.asm | ljhsiun2/medusa | 9 | 198247 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x431e, %rsi
lea addresses_normal_ht+0x1bc5e, %rdi
nop
inc %r11
mov $106, %rcx
rep movsq
nop
add %rbp, %rbp
lea addresses_A_ht+0x19b1e, %rsi
lea addresses_normal_ht+0xcb1e, %rdi
nop
nop
nop
nop
d... |
Transynther/x86/_processed/US/_zr_/i7-7700_9_0x48_notsx.log_39_1475.asm | ljhsiun2/medusa | 9 | 198248 | <filename>Transynther/x86/_processed/US/_zr_/i7-7700_9_0x48_notsx.log_39_1475.asm
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r12
push %r15
push %r9
push %rbp
push %rbx
push %rdi
// Store
lea addresses_UC+0xb29d, %r11
nop
nop
nop
nop
nop
sub $28239, %r9
mo... |
programs/oeis/262/A262389.asm | neoneye/loda | 22 | 198249 | <filename>programs/oeis/262/A262389.asm<gh_stars>10-100
; A262389: Numbers whose last digit is composite.
; 4,6,8,9,14,16,18,19,24,26,28,29,34,36,38,39,44,46,48,49,54,56,58,59,64,66,68,69,74,76,78,79,84,86,88,89,94,96,98,99,104,106,108,109,114,116,118,119,124,126,128,129,134,136,138,139,144,146,148,149
mov $1,$0
mul $... |
assembler/tests/t_807x/t_807x.asm | paulscottrobson/RCA-Cosmac-VIP-III | 0 | 198251 | cpu 8070
nop
ret
ssm
ssm p2
ssm p3
ld a,0x10,pc
ld a,0x10,sp
ld a,-3,p2
ld a,-10,p3
ld a,#20
ld a,0x12
ld a,0xffc0
ld a,@+1,p2
ld a,@-1,p3
ld a,e
ld a,s
ld ea,0x10,pc
ld ea,0x10,sp
ld ea,-3,p2
ld ea,-10,p3
ld ea,#0x2030
ld ea,0x12
l... |
src/stars/tests/tests/StoreTest.asm | kevintmcdonnell/stars | 9 | 198252 | .globl main
.text
main:
li $t0, 0
addi $t1, $t0, 5
move $a0, $t1
li $v0, 1
syscall
.data
a: .byte 48, 49, 50, 0 |
oeis/025/A025931.asm | neoneye/loda-programs | 11 | 198253 | <gh_stars>10-100
; A025931: Expansion of 1/((1-2x)(1-3x)(1-5x)(1-7x)).
; Submitted by <NAME>
; 1,17,188,1726,14343,112371,848506,6255392,45386165,325753285,2320698744,16447547298,116147697667,818112983159,5752200695702,40392496919044,283383067688049,1986859807248393,13923911479636180,97546847987676230,68322528452310451... |
data/phone/text/derek_callee.asm | Dev727/ancientplatinum | 28 | 198255 | <reponame>Dev727/ancientplatinum
UnknownText_0x1b69a8:
text "Hi, <PLAY_G>?"
para "Good morning pika."
line "What's up pika?"
done
UnknownText_0x1b69d2:
text "Hi, <PLAY_G>?"
para "Good day pika,"
line "what's up pika?"
done
UnknownText_0x1b69f8:
text "Hi, <PLAY_G>?"
para "Good evening pika,"
line "what's... |
data/mapObjects/RocketHideoutB4F.asm | AmateurPanda92/pokemon-rby-dx | 9 | 198256 | <reponame>AmateurPanda92/pokemon-rby-dx
RocketHideoutB4F_Object:
db $2e ; border block
db 3 ; warps
warp 19, 10, 1, ROCKET_HIDEOUT_B3F
warp 24, 15, 0, ROCKET_HIDEOUT_ELEVATOR
warp 25, 15, 1, ROCKET_HIDEOUT_ELEVATOR
db 0 ; signs
db 9 ; objects
object SPRITE_GIOVANNI, 25, 3, STAY, DOWN, 1, OPP_GIOVANNI, 1
obj... |
programs/oeis/338/A338650.asm | neoneye/loda | 22 | 198257 | ; A338650: Number of divisors of n which are greater than 6.
; 1,1,1,1,1,1,1,2,1,2,1,2,1,2,2,2,1,3,1,2,2,3,1,3,1,3,2,2,2,4,1,2,2,4,1,4,1,3,3,2,1,5,2,3,2,3,1,4,2,5,2,2,1,6,1,2,4,4,2,4,1,3,2,5,1,7,1,2,3,3,3,4,1,6,3,2,1,7,2,2,2,5,1,7,3,3,2,2,2,7,1,4,4,5,1,4,1,5,5,2
mov $4,2
mov $6,$0
lpb $4
mov $0,$6
mov $3,6
sub $... |
nasm-8086-assembly-course/0x08-odd-even/odd-even.asm | ailtonbsj/buffer-overflow-studies | 0 | 198258 | %include 'lib.inc'
section .data
msg db 'Digite um número: ',NULL
_even db 'O número é par!', LF, NULL
_odd db 'O número é ímpar!', LF, NULL
section .bss
num resb 10
section .text
global _start
_start:
mov ecx, msg
call print
mov ecx, num
mov edx, 10
call scan
lea esi, ... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_5203_221.asm | ljhsiun2/medusa | 9 | 198259 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r13
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x19225, %rdi
nop
nop
nop
nop
nop
add %rdx, %rdx
mov (%rdi), %ebp
nop
nop
xor $55404, %r10
lea addresses_WC_ht+0xb569, %r10
nop
xor %r13, %r13
movb (%r10), %bl
nop
no... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_1888.asm | ljhsiun2/medusa | 9 | 198260 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r15
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x43d7, %rbx
nop
nop
xor $33128, %rbp
mov $0x6162636465666768, %r13
movq %r13, (%rbx)
nop
add %rcx, %rcx
lea addresses_UC_ht+0x12627, %r15
nop
add %r13, %r13
movb (%r15), %cl
n... |
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_21195_423.asm | ljhsiun2/medusa | 9 | 198261 | <filename>Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_21195_423.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r13
push %r14
push %r8
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x25e4, %r13
nop
xor %r12, %r12
mov (%r13), %r8
nop
nop
nop
nop
xor $46652, %r10
lea addresses_nor... |
Clases/U4/01 Ejemplos/Ejemplo-x86-U4-Lenguaje Ensamblador/suma.asm | Savantage/ORGACOMPUTER | 0 | 198262 | global _main
section .data
num1 dd 5
num2 dd 6
section .bss
resMay resd 1
resMen resd 1
section .text
_main:
mov eax,[num1]
mov ebx,[num2]
add eax,ebx
cmp eax,10
jg mayor
mov [resMen],eax
jmp fin
mayor:
mov [resMay],eax
fin:
ret
|
oeis/088/A088891.asm | neoneye/loda-programs | 11 | 198264 | <reponame>neoneye/loda-programs
; A088891: Polynexus numbers of order 9.
; 0,1,38,481,3355,16120,60071,186238,502386,1215435,2694340,5559191,10803013,19953466,35282365,60071660,98945236,158276613,246683346,375619645,560079455,819422956,1178340163,1667966026,2327162150,3203980975,4357328976,5858846163,7795019881,1026955... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1865.asm | ljhsiun2/medusa | 9 | 198265 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r8
push %rbp
push %rbx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x1718a, %rbx
clflush (%rbx)
nop
nop
nop
sub %r8, %r8
mov $0x6162636465666768, %rbp
movq %rbp, (%rbx)
nop
nop
nop
xor %rdx, %rdx
lea addresses_A_ht+0x29f2, %rdi
nop
nop
c... |
oeis/002/A002752.asm | neoneye/loda-programs | 11 | 198266 | ; A002752: a(n) = Fibonacci(n-1) mod n.
; 0,1,1,2,3,5,1,5,3,4,0,5,1,9,2,2,1,13,0,1,3,12,1,1,18,15,1,26,0,29,0,29,12,2,22,17,1,1,29,26,0,13,1,13,33,2,1,1,21,49,37,18,1,23,47,13,39,30,0,41,0,1,62,34,8,49,1,5,3,54,0,1,1,39,7,2,74,65,0,61,48,42,1,65,8,45,59,2,0,49,34,5,63,2,22,1,1,71,10,26
mov $2,$0
seq $0,45 ; Fibonacci ... |
src/bios/bios.asm | logicworldzju/X86Emulator | 15 | 198267 | org 0xf0000
THIS_SEGMENT equ 0xf000
startOfTheFile:
;*************************************************************************
;SYSTEM DATA - DISKETTE PARAMETERS
DisketteParameters:
db 0afh,002h,025h,002h,012h,01bh,0ffh,06ch
db 0f6h,00fh,008h,04fh,000h,004h,000h,000h
DisketteParametersEnd:
;************************... |
oeis/052/A052793.asm | neoneye/loda-programs | 11 | 198268 | ; A052793: A simple grammar.
; Submitted by <NAME>(s1)
; 0,0,0,0,0,0,720,5040,23520,90720,312480,997920,3017520,8751600,24552528,67026960,178825920,467812800,1203094080,3048024384,7620293520
mov $1,2
pow $1,$0
bin $0,4
trn $1,31
div $1,2
mul $1,$0
mov $0,$1
mul $0,3
|
lib/target/laser500/classic/rom.asm | jpoikela/z88dk | 38 | 198270 | ;
; Startup for V-Tech VZ-350/500/700?
;
defc CRT_ORG_BSS = 0xc000
defc CRT_ORG_CODE = 0x0000
defc TAR__clib_exit_stack_size = 0
defc TAR__register_sp = 0xbfff
INCLUDE "crt/classic/crt_rules.inc"
org CRT_ORG_CODE
if (ASMPC<>$0000)
defs CODE_ALIGNMENT_ERROR
endif
defb... |
oeis/196/A196007.asm | neoneye/loda-programs | 11 | 198271 | <gh_stars>10-100
; A196007: Numbers n such that 90n + 83 is prime.
; Submitted by <NAME>
; 0,1,2,3,4,10,12,15,16,17,21,22,23,24,25,26,29,32,36,37,39,42,45,49,50,51,54,58,59,60,61,64,67,68,71,72,73,75,77,78,79,80,84,86,89,91,92,94,101,105,106,108,112,113,114,115,117,120,121,124,126,130,134,136,137,138,143,144,147,152,15... |
sound/sfxasm/3C.asm | NatsumiFox/Sonic-3-93-Nov-03 | 7 | 198272 | <gh_stars>1-10
3C_Header:
sHeaderInit ; Z80 offset is $C20B
sHeaderPatch 3C_Patches
sHeaderTick $01
sHeaderCh $01
sHeaderSFX $80, $04, 3C_FM4, $0C, $05
3C_FM4:
sPatFM $00
dc.b nRst, $01
ssModZ80 $03, $01, $09, $FF
dc.b nCs6, $25
ssModZ80 $00, $01, $00, $00
3C_Loop1:
dc.b sHold
saVolFM $01
dc.b nCs... |
test/programs/test-r-001.asm | jfrech/Joy-Assembler | 0 | 198273 | <reponame>jfrech/Joy-Assembler<gh_stars>0
pragma_rng-seed := 0x5eed
jmp @proto-main
primes:
data 2, 3, 5, 7, 11, 13, 17
proto-main:
jmp @main
random-data:
data [0x10] rperm
random-data-end:
main:
cal @sum-random-data
cal @pc
jmp @success
success:
mov 's'
ptc
mov '\n'
ptc
... |
jombloforth.asm | matematikaadit/JombloForth | 6 | 198274 | ;; -*- nasm -*-
;;
;; Minimal FORTH interpreter for 64-bit Linux systems.
;; Based on jonesforth <https://github.com/nornagon/jonesforth/>
;;
;; compile it with:
;;
;; nasm -g -F dwarf -f elf64 -o jombloforth.o jombloforth.asm
;; ld -o jombloforth jombloforth.o
;;
;;
;; UNLICENSE
;; ---------
;;
;; This is free... |
libsrc/_DEVELOPMENT/adt/b_array/c/sdcc_iy/b_array_at_callee.asm | jpoikela/z88dk | 640 | 198275 |
; int b_array_at_callee(b_array_t *a, size_t idx)
SECTION code_clib
SECTION code_adt_b_array
PUBLIC _b_array_at_callee
EXTERN asm_b_array_at
_b_array_at_callee:
pop af
pop hl
pop bc
push af
jp asm_b_array_at
|
code/Forec/t44.asm | KongoHuster/assembly-exercise | 1 | 198278 | ;; last edit date: 2016/11/23
;; author: Forec
;; LICENSE
;; Copyright (c) 2015-2017, Forec <<EMAIL>>
;; Permission to use, copy, modify, and/or distribute this code for any
;; purpose with or without fee is hereby granted, provided that the above
;; copyright notice and this permission notice appear in all copies.
;... |
oeis/024/A024551.asm | neoneye/loda-programs | 11 | 198281 | <filename>oeis/024/A024551.asm
; A024551: a(n) = floor(a(n-1)/(sqrt(5) - 2)) for n > 0 and a(0) = 1.
; Submitted by <NAME>(s2)
; 1,4,16,67,283,1198,5074,21493,91045,385672,1633732,6920599,29316127,124185106,526056550,2228411305,9439701769,39987218380,169388575288,717541519531,3039554653411,12875760133174,54542595186106... |
oeis/036/A036796.asm | neoneye/loda-programs | 11 | 198282 | ; A036796: Integers that can be decomposed into sums of different Fibonacci numbers of odd argument.
; Submitted by <NAME>
; 1,2,3,4,6,7,8,9,14,15,16,17,19,20,21,22,35,36,37,38,40,41,42,43,48,49,50,51,53,54,55,56,90,91,92,93,95,96,97,98,103,104,105,106,108,109,110,111,124,125,126,127,129,130,131,132,137,138,139,140,142... |
iod/nul/version.asm | olifink/smsqe | 0 | 198283 | ; NUL device versions
section version
xdef nul_vers
; V2.00 first version!
;
; V2.01 entries $60 upwards corrected
;
; V2.02 iob.flin returns buffer of zeros and err.bffl if file of zeros
; iob.elin corrected for d1>0
; iob.elin, iob.flin, iob.fmul, iob.load speed improved
;
; V2.03 channel name implemented and co... |
programs/oeis/257/A257844.asm | neoneye/loda | 22 | 198284 | <reponame>neoneye/loda<filename>programs/oeis/257/A257844.asm
; A257844: a(n) = floor(n/4) * (n mod 4).
; 0,0,0,0,0,1,2,3,0,2,4,6,0,3,6,9,0,4,8,12,0,5,10,15,0,6,12,18,0,7,14,21,0,8,16,24,0,9,18,27,0,10,20,30,0,11,22,33,0,12,24,36,0,13,26,39,0,14,28,42,0,15,30,45,0,16,32,48,0,17,34,51,0,18,36,54,0,19,38,57,0,20,40,60,0,... |
externals/mpir-3.0.0/mpn/x86_64w/divrem_euclidean_qr_1.asm | JaminChan/eos_win | 12 | 198285 | <gh_stars>10-100
; PROLOGUE(mpn_divrem_euclidean_qr_1)
; x86-64 mpn_divrem_euclidean_qr_1 -- mpn by limb division.
; Copyright 2004, 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
; Copyright <NAME> 2010 (Conversion to yasm format)
; This file is part of the GNU MP Library.
; The GNU MP Library is free... |
Loader/main.asm | steakknife/pcgeos | 504 | 198287 | COMMENT @----------------------------------------------------------------------
Copyright (c) GeoWorks 1991 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Loader -- PC/GEOS kernel loader
FILE: main.asm
AUTHOR: <NAME>
ROUTINES:
Name Description
---- -----------
LoadGeos Entry point
REVISION... |
ScrollModus/_sfx/sfx/player_frqtab.asm | kosmonautdnb/TheLandsOfZador | 0 | 198288 | <reponame>kosmonautdnb/TheLandsOfZador<filename>ScrollModus/_sfx/sfx/player_frqtab.asm
player_freqtab_lo
dc.b $00,$0F,$1D,$2C,$3A,$48,$55,$63,$70,$7D,$8A,$97,$A3,$B0,$BC,$C8
dc.b $D3,$DF,$EB,$F6,$01,$0C,$17,$22,$2C,$37,$41,$4B,$55,$5F,$68,$72
dc.b $7B,$84,$8D,$96,$9F,$A8,$B1,$B9,$C1,$CA,$D2,$DA,$E2,$E9,$F1,$F9
dc.b... |
Transynther/x86/_processed/P/_zr_/i9-9900K_12_0xa0.log_1_617.asm | ljhsiun2/medusa | 9 | 198289 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r15
push %r8
push %r9
push %rbx
push %rdi
push %rdx
lea addresses_A_ht+0x88ff, %rbx
nop
add %r15, %r15
movl $0x61626364, (%rbx)
nop
nop
nop
nop
nop
inc %r11
lea addresses_A_ht+0x17691, %rdi
nop
nop
nop
nop
add %rdx, %rdx
movb $0x61, (%rdi)
nop
... |
oeis/087/A087433.asm | neoneye/loda-programs | 11 | 198290 | <reponame>neoneye/loda-programs<filename>oeis/087/A087433.asm
; A087433: Expansion of (1-2*x)*(1-4*x+x^2)/((1-x)*(1-3*x)*(1-4*x)).
; Submitted by <NAME>(s2)
; 1,2,6,20,70,252,926,3460,13110,50252,194446,758100,2973350,11716252,46333566,183739940,730176790,2906358252,11582386286,46200404980,184414199430,736494536252,294... |
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48.log_21829_146.asm | ljhsiun2/medusa | 9 | 198291 | <filename>Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48.log_21829_146.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r15
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0xe08e, %r12
xor %rcx, %rcx
mov (%r12), %r14w
nop
nop
nop
sub $53568, %r8
lea addresses_WT_ht+0x6c8... |
Assembly-x-C/Assembly/Compare_numbers.asm | Robjunio/PLP | 0 | 198293 | section .data ;Data segment
userMsg db 'Please enter the first number: ' ;Ask the user to enter a number
lenUserMsg equ $-userMsg ;The length of the message
userMsg2 db 'Please enter the second number: '
lenUserMsg2 equ $-userMsg2
userM... |
cmd/format/dskfrmt.asm | minblock/msdos | 0 | 198294 | <gh_stars>0
;/*
; * Microsoft Confidential
; * Copyright (C) Microsoft Corporation 1991
; * All Rights Reserved.
; */
;===========================================================================
;
; FILE: DSKFRMT.ASM
;
;====================================... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_386.asm | ljhsiun2/medusa | 9 | 198296 | <filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_386.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x5906, %rsi
lea addresses_UC_ht+0x56ce, %rdi
nop
nop
nop
sub %r11, %r11
mov $43, %rcx
rep movsl
... |
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0xca_notsx.log_21829_629.asm | ljhsiun2/medusa | 9 | 198297 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r14
push %r15
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x6b56, %rsi
lea addresses_A_ht+0x1c6ee, %rdi
nop
nop
nop
nop
nop
sub $27366, %r13
mov $86, %rcx
rep movsl
nop
nop
nop
nop
nop
dec %r15
lea addresses_D_ht+0x1b9ce, %rsi
lea addresses_WT... |
Working Disassembly/General/Sprites/Shields/Map - Fire Shield.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 5 | 198298 | dc.w word_19AF8-Map_FireShield
dc.w word_19B0C-Map_FireShield
dc.w word_19B20-Map_FireShield
dc.w word_19B34-Map_FireShield
dc.w word_19B48-Map_FireShield
dc.w word_19B62-Map_FireShield
dc.w word_19B76-Map_FireShield
dc.w word_19B8A-Map_FireShield
dc.w word_19B9E-Map_FireShield
dc.w word_19BB2-Map_F... |
programs/oeis/153/A153284.asm | karttu/loda | 1 | 198299 | ; A153284: a(n) = n + Sum_{j=1..n-1} (-1)^j * a(j) for n >= 2, a(1) = 1.
; 1,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1
trn $0,1
mod $0,2
mov $1,$0
mul $1,2
add $1,1
|
programs/oeis/072/A072630.asm | neoneye/loda | 22 | 198300 | <filename>programs/oeis/072/A072630.asm
; A072630: Values of n where A072629 switches from 01010.. into 0000.. or back.
; 1,7,19,53,147,403,1095,2979,8103,22025,59873,162753,442413,1202603,3269017,8886109,24154951,65659969,178482299,485165195,1318815733,3584912845,9744803445,26489122129,72004899337,195729609427
add $0... |
oeis/086/A086412.asm | neoneye/loda-programs | 11 | 198301 | <reponame>neoneye/loda-programs
; A086412: Number of distinct prime factors of 3-smooth numbers.
; Submitted by <NAME>(w3)
; 0,1,1,1,2,1,1,2,1,2,2,1,1,2,2,2,1,2,1,2,2,1,2,2,2,2,1,1,2,2,2,2,2,1,2,2,1,2,2,2,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,2,2,2,2,2,1,2,2,1,2,2,2,2,2,2,2,2,1,2,2,1,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,2,1,2,2,2... |
programs/oeis/031/A031372.asm | neoneye/loda | 22 | 198302 | ; A031372: a(n) = prime(6*n - 1).
; 11,31,59,83,109,149,179,211,241,277,313,353,389,431,461,499,547,587,617,653,691,739,773,823,859,907,947,991,1031,1063,1103,1153,1201,1237,1289,1319,1381,1433,1471,1499,1553,1597,1621,1669,1723,1777,1823,1873,1913,1979,2011,2063,2099,2141,2207,2251,2293,2341,2381,2417,2467,2539,2591,2... |
oeis/247/A247193.asm | neoneye/loda-programs | 11 | 198303 | <filename>oeis/247/A247193.asm<gh_stars>10-100
; A247193: a(n) = gcd(n!, Fibonacci(n)).
; Submitted by <NAME>
; 1,1,2,3,5,8,1,21,2,5,1,144,1,13,10,21,1,136,1,165,26,1,1,46368,25,1,34,39,1,440,1,21,2,1,65,139536,1,37,2,1155,1,3016,1,129,170,1,1,4358592,13,275,2,3,1,136952,5,55419,74,1,1,10066320,1,1,442,987,5,8,1,201,2,... |
lab02/lab2/rm.asm | ahchu1993/opsys | 0 | 198304 | <reponame>ahchu1993/opsys
_rm: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "stat.h"
#include "user.h"
int
main(int argc, char *argv[])
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 83 e4 f0 and $0xfffffff0,%esp
... |
Asmt5/Asmt5_3.asm | wstern1234/COMSC-260 | 0 | 198305 | <gh_stars>0
; Asmt5_3.asm - pseudocode to MASM practice
INCLUDE Irvine32.inc
.data
val1 DWORD 3
X DWORD 4
.code
main PROC
.if ( ebx > ecx && ebx > edx ) || ( edx > eax )
mov X, 1
.else
mov X, 2
.endif
INVOKE ExitProcess, 0
main ENDP
END main |
libsrc/_DEVELOPMENT/alloc/malloc/c/sccz80/malloc.asm | meesokim/z88dk | 0 | 198306 | <reponame>meesokim/z88dk
; void *malloc(size_t size)
INCLUDE "clib_cfg.asm"
SECTION code_alloc_malloc
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
IF __CLIB_OPT_MULTITHREAD & $01
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
PUBLIC malloc
malloc:
INCLUDE "alloc/malloc/z80/asm_malloc.asm"
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
ELSE
;;;;;;;;;;... |
programs/oeis/309/A309805.asm | jmorken/loda | 1 | 198307 | <reponame>jmorken/loda
; A309805: Maximum number of nonattacking kings placeable on a hexagonal board with edge-length n in Glinski's hexagonal chess.
; 1,2,7,10,19,24,37,44,61,70,91,102,127,140,169,184,217,234,271,290,331,352,397,420,469,494,547,574,631,660,721,752,817,850,919,954,1027,1064,1141,1180,1261,1302,1387,14... |
oeis/193/A193132.asm | neoneye/loda-programs | 11 | 198308 | <reponame>neoneye/loda-programs
; A193132: a(n) = 3n*4^(2n-1).
; 12,384,9216,196608,3932160,75497472,1409286144,25769803776,463856467968,8246337208320,145135534866432,2533274790395904,43910096366862336,756604737398243328,12970366926827028480,221360928884514619392,3763135791036748529664,63751947518740210384896,107669955... |
src/win/x86_64/win_x86_64_asm_forwSequentialRead_Word256.asm | csl-ajou/X-mem | 28 | 198309 | ; The MIT License (MIT)
;
; Copyright (c) 2014 Microsoft
;
; 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 use, copy, modify... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_3901_1135.asm | ljhsiun2/medusa | 9 | 198310 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r14
push %r9
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x131a7, %r10
nop
nop
nop
nop
and $50614, %r14
movb $0x61, (%r10)
nop
nop
nop
cmp %r13, %r13
lea addresses_WT_ht+0x1b7ca, %rsi
lea addresses_WT_ht+0x1d6a, %rdi
nop
nop
nop
nop
... |
sum_of_columns.asm | CristinaNilvan/assembler-i386-algorithmic-problems | 1 | 198311 | .386
.model flat, stdcall
includelib msvcrt.lib
extern exit: proc
public start
.data
n_constant equ 3
n dd 3
matrix dd 1, 2, 3
dd 4, 5, 6
dd 7, 8, 9
sum_of_columns dd 0
.code
start:
;This program sums the columns of a matrix.
mov esi, 0
mov edi, 0
mov eax, 0
mov edx, 0
for_1 :
for_2 :
... |
CSE3030: Assembly Programming/Lecture Notes and Codes From Text/Ch3 - Assembly Language Fundamentals/3.4.10_AddTwo_05.asm | yoonBot/Sogang-CSE | 1 | 198312 | <filename>CSE3030: Assembly Programming/Lecture Notes and Codes From Text/Ch3 - Assembly Language Fundamentals/3.4.10_AddTwo_05.asm
; AddVariables.asm - Chapter 3 example
.386
.model flat, stdcall
.stack 4096
ExitProcess PROTO, dwExitCode:DWORD
.data
firstval DWORD 20002000h
secondval DWORD 11111111... |
MicroProcessor Lab Programs/fire.asm | vallabhiaf/4thSemIse | 0 | 198313 | ;program to display fire and help alternatively
assume cs:code,ds:data
data segment
pa equ 20a0h
pb equ 20a1h
pc equ 20a2h
cr equ 20a3h
cw equ 80h
fire db 71h,09fh,0f5h,61h
help db 0d1h,61h,0e3h,31h
data ends
code segment
start:
mov ax,data
mov ds,ax
;init 8255
mov dx,cr
mov... |
CTR/magma-gcrypto-uni.asm | Bs0Dd/magma-8080 | 0 | 198314 | <reponame>Bs0Dd/magma-8080
; KR580VM80A (i8080A) assembly code
; /-----------------------------------------------\
; | ГОСТ 28147-89 "Магма" | GOST 28147-89 "Magma" |
; | | |
; | Режим гаммирования | CTR mode |
; | | ... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1831.asm | ljhsiun2/medusa | 9 | 198316 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r14
push %r8
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x1234e, %rax
nop
nop
nop
nop
nop
and %r13, %r13
movb (%rax), %r10b
nop
nop
nop
xor %rax, %rax
lea addresses_WT_ht+0x14e12, %r14
nop
nop
nop... |
hello_function.asm | EdTheBass/asm_tutorial | 97 | 198317 | <reponame>EdTheBass/asm_tutorial
default rel
bits 64
segment .data
format db 'x is %lf', 0xa, 0 ; lf for double in c99
segment .text
global main
extern printf
extern _CRT_INIT
extern ExitProcess
main:
call _CRT_INIT ; Needed since our entry point is not _DllMainCRTStartup. See https://msdn.mi... |
vocabulary/__words.asm | paulscottrobson/color-forth-old-next | 1 | 198318 | <reponame>paulscottrobson/color-forth-old-next
; =========== ! both ===========
start_21_2e_6d:
ld a,end_21_2e_6d-start_21_2e_6d-5
call COMUCopyCode
pop hl
ex de,hl
ld (hl),e
inc hl
ld (hl),d
pop de
end_21_2e_6d:
start_21_2e_66:
pop ix
pop hl
ex de,hl
ld (hl),e
inc hl
ld (hl)... |
Driver/Video/Dumb/ATT6300/att6300Admin.asm | steakknife/pcgeos | 504 | 198319 | <reponame>steakknife/pcgeos
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1990 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Video Driver
FILE: att6300Admin.asm
AUTHOR: <NAME>
ROUTINES:
Name Description
---- -----------
VidScreenOff ... |
oeis/139/A139761.asm | neoneye/loda-programs | 11 | 198320 | ; A139761: a(n) = Sum_{ k >= 0} binomial(n,5*k+4).
; Submitted by <NAME>(s1.)
; 0,0,0,0,1,5,15,35,70,127,220,385,715,1430,3004,6385,13380,27370,54740,107883,211585,416405,826045,1652090,3321891,6690150,13455325,26985675,53971350,107746282,214978335,429124630,857417220,1714834440,3431847189,6869397265,13748021995,275052... |
oeis/085/A085440.asm | neoneye/loda-programs | 11 | 198321 | <filename>oeis/085/A085440.asm
; A085440: a(n) = Sum_{i=1..n} binomial(i+1,2)^5.
; 1,244,8020,108020,867395,4951496,22161864,82628040,267156165,770440540,2022773116,4909947484,11150268935,23913084560,48796284560,95322158736,179163294729,325374464580,572984364580,981394464580,1639143014731,2675722491224,4277290592600,67... |
repl.asm | shepheb/basilisc | 0 | 198322 | <gh_stars>0
; Core REPL functions for the interpreter.
:READ ; (buf, len) -> AST
jsr read_string
set pc, pop
; EVAL lives in eval.asm
:PRINT ; (AST) -> buf, len
set [cursor], reader_buffer
set b, 1 ; readable
jsr pr_str
set a, reader_buffer
set b, [cursor]
sub b, a
ret
:rep ; (buf, len) -> string
jsr READ
set b, [... |
base/ntos/ke/i386/mpipia.asm | yang235/wrk-v1.2 | 209 | 198323 | <gh_stars>100-1000
title "mpipia"
;++
;
; Copyright (c) Microsoft Corporation. All rights reserved.
;
; You may only use this code if you agree to the terms of the Windows Research Kernel Source Code License agreement (see License.txt).
; If you do not agree to the terms, do not use the code.
;
;
; Module Nam... |
programs/oeis/086/A086023.asm | jmorken/loda | 1 | 198324 | <gh_stars>1-10
; A086023: a(n) = Sum_{i=1..n} C(i+3,4)^2.
; 1,26,251,1476,6376,22252,66352,175252,420277,931502,1933503,3796728,7109128,12773528,22137128,37160504,60634529,96454754,149963979,228375004,341286880,501309380,724811880,1032814380,1452040005,2016150006,2767184031,3757230256,5050351856,6724798256,8875531632,1... |
src/dzx7.asm | Iambian/Falldown2-CE | 2 | 198326 |
zx7_decompress:
; void dzx7_turbo(void *src, void *dst) ; Dec 2012 by <NAME> & Urusergi
; "Standard" version (70 bytes)
; enter : hl = void *src
; de = void *dst
; exit : hl = & following uncompressed block
; uses : af, bc, de, hl
ld a, 128
dzx7s_copy_byte_loop:
ldi ; copy... |
programs/oeis/160/A160380.asm | neoneye/loda | 22 | 198327 | <filename>programs/oeis/160/A160380.asm
; A160380: a(0) = 0; for n >= 1, a(n) = number of 0's in base-4 representation of n.
; 0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,2,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,2,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,2,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,2... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1055.asm | ljhsiun2/medusa | 9 | 198328 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r15
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x1d675, %rsi
lea addresses_UC_ht+0x87a9, %rdi
add %r9, %r9
mov $88, %rcx
rep movsl
nop
nop
nop
nop
nop
add %r13, %r13
lea addresses_UC_ht+0xfc69, %r15
nop
nop
nop
sub %rdi... |
libsrc/stdio/lynx/fputc_cons.asm | meesokim/z88dk | 0 | 198329 | ;
; Camputers Lynx C Library
;
; Print character to the screen
;
; <NAME> - 2014
;
;
; $Id: fputc_cons.asm,v 1.3 2015/01/21 08:09:27 stefano Exp $
;
PUBLIC fputc_cons
.fputc_cons
ld hl,2
add hl,sp
ld a,(hl)
cp 12
jr nz,nocls
ld hl,$6255
ld a,5 ; reset vert. cursor position
ld (... |
qloader2/src/bootsect/bootsect.asm | DinamicDigital/MosqueOS | 3 | 198331 | <gh_stars>1-10
org 0x7c00
bits 16
start:
cli
cld
jmp 0x0000:.initialise_cs
.initialise_cs:
xor ax, ax
mov ds, ax
mov es, ax
mov fs, ax
mov gs, ax
mov ss, ax
mov sp, 0x7c00
sti
mov si, LoadingMsg
call simple_print
; ****************** Load stage 2 ************... |
sources/ippcp/asm_intel64_gas_converted/macosx/l9/merged/pcpbnumulschoolsrvl9.asm | ymarkovitch/ipp-crypto | 0 | 198332 | <filename>sources/ippcp/asm_intel64_gas_converted/macosx/l9/merged/pcpbnumulschoolsrvl9.asm
###############################################################################
# Copyright 2019 Intel Corporation
# All Rights Reserved.
#
# If this software was obtained under the Intel Simplified Software License,
# the f... |
oeis/135/A135853.asm | neoneye/loda-programs | 11 | 198334 | ; A135853: A103516 * A007318 as an infinite lower triangular matrix.
; Submitted by <NAME>
; 1,4,2,6,6,3,8,12,12,4,10,20,30,20,5,12,30,60,60,30,6,14,42,105,140,105,42,7,16,56,168,280,280,168,56,8,18,72,252,504,630,504,252,72,9,20,90,360,840,1260,1260,840,360,90,10,22,110,495,1320,2310,2772,2310,1320,495,110,11,24,132,6... |
oeis/119/A119936.asm | neoneye/loda-programs | 11 | 198335 | <filename>oeis/119/A119936.asm
; A119936: Least common multiple (LCM) of denominators of the rows of the triangle of rationals A119935/A119932.
; Submitted by <NAME>
; 1,8,108,576,18000,21600,1234800,5644800,57153600,63504000,8452382400,9220780800,1688171284800,1818030614400,1947889944000,8310997094400,2551995545299200... |
programs/oeis/108/A108300.asm | neoneye/loda | 22 | 198338 | <reponame>neoneye/loda
; A108300: a(n+2) = 3*a(n+1) + a(n), with a(0) = 1, a(1) = 5.
; 1,5,16,53,175,578,1909,6305,20824,68777,227155,750242,2477881,8183885,27029536,89272493,294847015,973813538,3216287629,10622676425,35084316904,115875627137,382711198315,1264009222082,4174738864561,13788225815765,45539416311856
mov $... |
ugbc/src/hw/ef936x/hscroll_text.asm | spotlessmind1975/ugbasic | 10 | 198339 | <reponame>spotlessmind1975/ugbasic<filename>ugbc/src/hw/ef936x/hscroll_text.asm
; /*****************************************************************************
; * ugBASIC - an isomorphic BASIC language compiler for retrocomputers *
; ***************************************************************************... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2585.asm | ljhsiun2/medusa | 9 | 198340 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r14
push %r15
push %r8
push %rbx
push %rcx
push %rdx
push %rsi
// Load
lea addresses_WC+0x63f8, %r14
nop
nop
nop
nop
nop
and $58068, %rbx
mov (%r14), %edx
nop
sub %rsi, %rsi
// Faulty Load
lea ad... |
programs/oeis/051/A051109.asm | neoneye/loda | 22 | 198341 | <reponame>neoneye/loda
; A051109: Hyperinflation sequence for banknotes.
; 1,2,5,10,20,50,100,200,500,1000,2000,5000,10000,20000,50000,100000,200000,500000,1000000,2000000,5000000,10000000,20000000,50000000,100000000,200000000,500000000,1000000000,2000000000,5000000000
add $0,1
mov $1,2
pow $1,$0
seq $1,7094 ; Numbers... |
Source/Input.asm | hhprg/C64Engine | 4 | 198342 | /******************************************************************
* Copyright (C) 2015-2021 <NAME> <<EMAIL>>
******************************************************************/
.filenamespace Input
.macro @InputUpdate()
{
// Read joystick 2.
lda $dc00
eor... |
dv3/bbx/hd/fpart.asm | olifink/smsqe | 0 | 198343 | ; DV3 Q40 Find Partition (Atari root) V3.01 1999 <NAME>
section dv3
xdef hd_fpart
include 'dev8_keys_err'
include 'dev8_dv3_keys'
include 'dev8_dv3_hd_keys'
include 'dev8_keys_qlwa'
;+++
; DV3 Bytebox find partition.
; It returns the root sector.
;
; d1 r as d3 but in chs format if required
; d2 r si... |
unordnung_auch_assembler/asm/attiny13/versuche/blinkIRQ-withCompare_getsFaster.asm | no-go/Blink_atmega328p | 0 | 198344 | .include "myTiny13.h"
;irq Vector
.org 0x0000
rjmp OnReset
.org 0x0006
rjmp TimerComp ; Timer-Compare Interrupt
.org 0x0010
TimerComp:
ldi A, 0b00010000 ; toggle Bit No. 4
in B, PINB
eor A, B
out PORTB, A
dec N ; N = N-1
brne TcEnd ; IF N == 0 then N = 255
ser N
TcEnd:
out OCR0A, N ; set N as new ... |
libsrc/osca/page_in_video.asm | grancier/z180 | 0 | 198346 | <reponame>grancier/z180
;
; Old School Computer Architecture - interfacing FLOS
; <NAME>, 2011
;
; $Id: page_in_video.asm,v 1.4 2017/01/02 23:35:59 aralbrec Exp $
;
INCLUDE "flos.def"
SECTION code_clib
PUBLIC page_in_video
PUBLIC _page_in_video
defc page_in_videp = kjt_page_in_video
defc _page_in... |
alice2/Software/rom.asm | lkesteloot/alice | 63 | 198347 | #undef SLOWCLOCK ; Defined if we are running slow
#undef NOPRINT ; Defined to turn off printing
; library.asm must be first!
#include "library.asm"
#include "stdio.asm"
#include "string.asm"
PIC_COMMAND EQU 08000H
NUMKEY EQU 08001H
PICBYTE EQU 08003H
SHIFT_STATUS EQU 08004H
CTRL_STATUS EQU 08005H
ALT_STATUS ... |
engine/util.asm | jasaldivara/retro-dos-graphics | 13 | 198348 |
section .text
videomenu:
; 1.- Entrar en video modo 4
mSetVideoMode 4
mov dh, 1
mov dl, 10
mov bx, video_menu_title
mov cx, 1
call writestring
mov dh, 8
mov dl, 1
mov bx, video_menu_cga
mov cx, 3
call writestring
mov dh, 10
mov dl, 1
mov bx, video_menu_composite
mov cx, 3
call w... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.