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 |
|---|---|---|---|---|
oeis/300/A300070.asm | neoneye/loda-programs | 11 | 126346 | <gh_stars>10-100
; A300070: Decimal expansion of the positive member y of a triple (x, y, z) solving a certain historical system of three equations.
; Submitted by <NAME>
; 3,2,6,9,9,2,8,3,0,3,8,2,0,8,7,0,5,8,0,2,3,9,1,7,8,1,3,6,8,5,9,2,6,6,8,6,9,9,7,6,4,9,4,3,1,0,1,7,1,6,6,6,9,3,2,4,0,5,9,5,8,7,9,9,1,7,0,1,8,5,5,6,3,5... |
programs/oeis/287/A287553.asm | neoneye/loda | 22 | 126347 | <reponame>neoneye/loda<gh_stars>10-100
; A287553: Positions of 1 in A053839.
; 2,5,12,15,17,24,27,30,36,39,42,45,51,54,57,64,65,72,75,78,84,87,90,93,99,102,105,112,114,117,124,127,132,135,138,141,147,150,153,160,162,165,172,175,177,184,187,190,195,198,201,208,210,213,220,223,225,232,235,238,244,247,250,253,257,264,267,... |
smsq/sms/remv.asm | olifink/smsqe | 0 | 126349 | * Remove items from system lists V2.00 1986 <NAME> QJUMP
*
section sms
*
xdef sms_rexi
xdef sms_rpol
xdef sms_rshd
xdef sms_riod
xdef sms_rfsd
*
xref mem_rlst
xref sms_rtok
*
include dev8_keys_sys
*
* d0 r retur... |
deps/openssl/asm/x86-win32-masm/bn/x86-mont.asm | sgallagher/node | 2 | 126350 | TITLE ../openssl/crypto/bn/asm/x86-mont.asm
IF @Version LT 800
ECHO MASM version 8.00 or later is strongly recommended.
ENDIF
.586
.MODEL FLAT
OPTION DOTNAME
IF @Version LT 800
.text$ SEGMENT PAGE 'CODE'
ELSE
.text$ SEGMENT ALIGN(64) 'CODE'
ENDIF
ALIGN 16
_bn_mul_mont PROC PUBLIC
$L_bn_mul_mont_begin::
push ebp
push ... |
Test/ZXSP/template_ace.asm | sparks-c16/zasm | 43 | 126352 | #!/usr/local/bin/zasm -o original/
; ================================================================
; Example source for target 'ace'
; Emulator snapshot format for Jupiter ACE
; Copyright (c) <NAME> 1994 - 2015
; mailto:<EMAIL>
; ================================================================
;
; space is fi... |
oeis/319/A319196.asm | neoneye/loda-programs | 11 | 126353 | ; A319196: a(n) = 2^(n-1)*Fibonacci(n-3), n >= 0.
; Submitted by <NAME>(s3)
; 1,-1,2,0,8,16,64,192,640,2048,6656,21504,69632,225280,729088,2359296,7634944,24707072,79953920,258736128,837287936,2709520384,8768192512,28374466560,91821703168,297141272576,961569357824,3111703805952,10069685043200,32586185310208,10545111079... |
test/test.Array.beforeq.asm | richRemer/atlatl | 0 | 126354 | global test_case
extern Array.beforeq
extern Array.eachq
extern std.outq
extern std.outln
extern sys.error
%include "Array.inc"
section .text
test_case:
mov rax, test_array ; Array to split
mov rbx, 2 ; delimit with value 2
call Array.beforeq ; split into two... |
engine/overworld/time.asm | TastySnax12/pokecrystal16-493-plus | 2 | 126355 | <filename>engine/overworld/time.asm
_InitializeStartDay:
call InitializeStartDay
ret
ClearDailyTimers:
xor a
ld [wLuckyNumberDayBuffer], a
ld [wUnusedTwoDayTimer], a
ld [wDailyResetTimer], a
ret
InitCallReceiveDelay::
xor a
ld [wTimeCyclesSinceLastCall], a
NextCallReceiveDelay:
ld a, [wTimeCyclesSinceLastC... |
programs/oeis/051/A051262.asm | neoneye/loda | 22 | 126356 | ; A051262: 10-factorial numbers.
; 1,10,200,6000,240000,12000000,720000000,50400000000,4032000000000,362880000000000,36288000000000000,3991680000000000000,479001600000000000000,62270208000000000000000,8717829120000000000000000,1307674368000000000000000000,209227898880000000000000000000,35568742809600000000000000000000,... |
4.2.ZeroSignFlags.asm | souzaitor/Assembly | 0 | 126357 | TITLE Zero and Sign Flags
;--------------------
; Autor: <NAME>
; Data: 15/07/2021
;
; Capítulo 4 Exercício 2
; Descrição: Programa que usa adição e subtração para setar e limpar as flags Zero e Sign.
;--------------------
INCLUDE Irvine32.inc
.code
main PROC
mov eax, 0FFFFFFFFh
inc eax
call Dum... |
savefile/main_sram2.asm | stranck/fools2018-1 | 35 | 126359 | <gh_stars>10-100
; === main_sram2.asm
; SRAM bank 2. Mostly utility functions.
SECTION "SRAM2", ROM0[$A000]
include "engine/text_engine.asm"
include "engine/utils.asm"
include "engine/special_items.asm"
include "engine/crackme.asm"
|
LAB02/TASK02.asm | PrabalChowdhury/CSE-341-MICROPROCESSOR | 0 | 126360 | <gh_stars>0
.MODEL SMALL
.STACK 100H
.DATA
; DEFINE YOUR VARIABLES HERE
A DB 12
B DB 7
C DB 4
.CODE
MAIN PROC
MOV AX, @DATA
MOV DS, AX
; YOUR CODE STARTS HERE
MOV AL, A
MOV BL, B
MOV BL, C
SUB AL,CL
ADD AL,CL
... |
oeis/134/A134077.asm | neoneye/loda-programs | 11 | 126362 | <reponame>neoneye/loda-programs<filename>oeis/134/A134077.asm
; A134077: Expansion of psi(x) * phi(-x)^3 / chi(-x^3)^3 in powers of x where phi(), psi(), chi() are Ramanujan theta functions.
; Submitted by <NAME>
; 1,-5,6,8,-23,12,14,-30,18,20,-40,24,31,-77,30,32,-60,48,38,-70,42,44,-138,48,57,-90,54,72,-100,60,62,-184... |
examples/compiled_code/dtw.asm | Dream-maerD/ELL-master | 0 | 126365 | <filename>examples/compiled_code/dtw.asm
; ModuleID = 'ELL'
source_filename = "ELL"
@c_0 = internal constant [294 x double] [double 0xBFFAAED3768E4382, double 0xC00BF4E02A7F6BB8, double 0xBFFF049E1BD5822A, double 0xBFFB08AFBE0231D3, double 0xC00C08BB8232725B, double 0xBFFFB5A566710720, double 0xBFFB628C05762025, doubl... |
programs/oeis/276/A276863.asm | karttu/loda | 0 | 126366 | <reponame>karttu/loda
; A276863: First differences of the Beatty sequence A276854 for 1 + sqrt(5).
; 3,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3... |
text.asm | Hojo-Norem/c0pperdragon-VIC-II-Palette-editor | 12 | 126367 | ;**************
;Text goes here
;**************
alltxt .text "All",0
top1 .text c_clear,c_white,176
.fill 37,96
.text 174,13,125," ",c_lt_green,"C64 Video Enhancement v1.19 ",c_white," ",125,13,173
.fill 37,96
.text 189,13,0
Title1 .text c_lt_green," Palette adjustment utility",... |
Transynther/x86/_processed/NONE/_ht_zr_/i9-9900K_12_0xca_notsx.log_21829_24.asm | ljhsiun2/medusa | 9 | 126368 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r14
push %r15
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0xff21, %rsi
lea addresses_normal_ht+0x17521, %rdi
nop
nop
nop
inc %r15
mov $101, %rcx
rep movsw
nop
nop
nop
add %rcx, %rcx
lea addresses_normal_ht+0x1d621, %r9
... |
oeis/203/A203197.asm | neoneye/loda-programs | 11 | 126369 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A203197: (n-1)-st elementary symmetric function of the first n terms of (1,3,9,27,...)=A000244.
; Submitted by <NAME>
; 1,4,39,1080,88209,21493836,15683355351,34309958505840,225130514549271201,4431394012508602048404,261672339357326993189906439,46354644349343413982791427... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_531.asm | ljhsiun2/medusa | 9 | 126370 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_531.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r8
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x1b88, %r8
nop
nop
nop
nop
nop
sub %r10, %r10
mov $0x6162636465666768, %rax
movq %rax, %xmm7
and $0... |
lang/german/nptr.asm | olifink/smsqe | 0 | 126371 | * Pointer version error message v0.00 Jun 1988 J.R.Oakley QJUMP
*
include 'dev8_mac_text'
*
section language
*
mktext nptr,{Pointer Interface nicht vorhanden\}
*
end
|
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_872.asm | ljhsiun2/medusa | 9 | 126372 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r8
push %r9
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x14209, %rdx
nop
nop
cmp %r11, %r11
vmovups (%rdx), %ymm3
vextracti128 $0, %ymm3, %xmm3
vpextrq $0, %xmm3, %r9
add $38520, %rsi
lea addresses_normal_ht+0xb269, %rsi
lea address... |
oeis/334/A334122.asm | neoneye/loda-programs | 11 | 126373 | ; A334122: a(n) is the sum of all primes <= n, mod n.
; Submitted by <NAME>(s1)
; 0,0,2,1,0,4,3,1,8,7,6,4,2,13,11,9,7,4,1,17,14,11,8,4,0,22,19,16,13,9,5,0,28,24,20,16,12,7,2,37,33,28,23,17,11,5,46,40,34,28,22,16,10,3,51,45,39,33,27,20,13,5,60,53,46,39,32,24,16,8,0,63,55,46,37,28,19,10,1,71,62,53,44,34,24,14,4,82,73,63,... |
programs/oeis/179/A179555.asm | neoneye/loda | 22 | 126374 | <filename>programs/oeis/179/A179555.asm
; A179555: a(1)=10; a(n) = a(n-1)*10 - 1.
; 10,99,989,9889,98889,988889,9888889,98888889,988888889,9888888889,98888888889,988888888889,9888888888889,98888888888889,988888888888889,9888888888888889,98888888888888889,988888888888888889,9888888888888888889,98888888888888888889,98888... |
sw/552tests/inst_tests/ror_6.asm | JPShen-UWM/ThreadKraken | 1 | 126375 | <reponame>JPShen-UWM/ThreadKraken
// Test provided by Karu
lbi r1, 2
lbi r2, 61
ror r3, r1, r2
halt // added by Karu
|
Data/ships/Rattler.asm | TinfoilAsteroid/EliteNext | 9 | 126377 | <filename>Data/ships/Rattler.asm<gh_stars>1-10
Rattler: DB $02
DW $1770
DW RattlerEdges
DB RattlerEdgesSize
DB $00, $2A
DB RattlerVertSize /6
DB RattlerVertSize
... |
kVideo16.asm | satadriver/LiunuxOS | 0 | 126378 | <reponame>satadriver/LiunuxOS
.386p
Kernel16 segment para use16
assume cs:kernel16
;AH = 4Fh 超级VGA支持
;AL = 00h 返回超级VGA信息
;ES:DI = 缓冲区指针
;AH = 4Fh 超级VGA支持
;AL = 01h 返回超级VGA模式信息
;CX = 超级VGA模式号(模式号必须为函数00h返回值之一)
;ES:DI = 256字节缓冲区指针
__getVesaMode proc
PUSH ECX
PUSH EDX
PUSH EBX
... |
test/cases/cl-main-opt-out.asm | dvirtz/compiler-explorer | 0 | 126379 | <gh_stars>0
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.00.24224.0
include listing.inc
INCLUDELIB LIBCMT
INCLUDELIB OLDNAMES
PUBLIC main
PUBLIC ??$make_array@$00$02$04$01$02$04$05$03$07$08$01@@YA?AV?$array@H$0L@@std@@XZ ; make_array<1,3,5,2,3,5,6,4,8,9,2>
PUBLIC ??A?$array@H$0L@@std... |
aots/iconsole/iConsole.asm | jaredwhitney/OrcaHLL | 0 | 126380 | <reponame>jaredwhitney/OrcaHLL
[bits 32]
dd iConsole.$FILE_END - iConsole.$FILE_START
db "OrcaHLL Class", 0
db "iConsole", 0
iConsole.$FILE_START :
iConsole.$global.window :
dd 0x0
iConsole.$global.win :
dd 0x0
iConsole.$global.command :
dd 0x0
iConsole._init:
pop dword [iConsole._init.returnVal]
push eax
push eb... |
programs/oeis/040/A040275.asm | neoneye/loda | 22 | 126381 | <reponame>neoneye/loda
; A040275: Continued fraction for sqrt(293).
; 17,8,1,1,8,34,8,1,1,8,34,8,1,1,8,34,8,1,1,8,34,8,1,1,8,34,8,1,1,8,34,8,1,1,8,34,8,1,1,8,34,8,1,1,8,34,8,1,1,8,34,8,1,1,8,34,8,1,1,8,34,8,1,1,8,34,8,1,1,8,34,8,1,1,8,34,8,1,1,8,34,8,1,1,8
seq $0,10217 ; Continued fraction for sqrt(173).
seq $0,60464 ... |
oeis/081/A081630.asm | neoneye/loda-programs | 11 | 126382 | <reponame>neoneye/loda-programs
; A081630: 2-(-3)^n.
; 1,5,-7,29,-79,245,-727,2189,-6559,19685,-59047,177149,-531439,1594325,-4782967,14348909,-43046719,129140165,-387420487,1162261469,-3486784399,10460353205,-31381059607,94143178829,-282429536479,847288609445,-2541865828327,7625597484989,-22876792454959,68630377364885... |
programs/oeis/309/A309372.asm | karttu/loda | 1 | 126383 | ; A309372: a(n) = n^2 - n^3 + n^4.
; 0,1,12,63,208,525,1116,2107,3648,5913,9100,13431,19152,26533,35868,47475,61696,78897,99468,123823,152400,185661,224092,268203,318528,375625,440076,512487,593488,683733,783900,894691,1016832,1151073,1298188,1458975,1634256,1824877,2031708,2255643,2497600,2758521,3039372,3341143,36648... |
programs/oeis/119/A119713.asm | karttu/loda | 0 | 126384 | ; A119713: First differences are 2, 5, 5, 9, 9, 9, 14, 14, 14, 14, ..., that is, A000096 with m-th term repeated m times (m>=1).
; 0,2,7,12,21,30,39,53,67,81,95,115,135,155,175,195,222,249,276,303,330,357,392,427,462,497,532,567,602,646,690,734,778,822,866,910,954,1008,1062,1116,1170,1224,1278,1332,1386,1440,1505,1570,... |
programs/oeis/022/A022146.asm | neoneye/loda | 22 | 126385 | ; A022146: Coordination sequence for root lattice B_4.
; 1,32,224,768,1856,3680,6432,10304,15488,22176,30560,40832,53184,67808,84896,104640,127232,152864,181728,214016,249920,289632,333344,381248,433536,490400,552032,618624,690368,767456,850080,938432,1032704,1133088,1239776,1352960,1472832,1599584,1733408,1874496,2023... |
src/player.asm | QuinnPainter/Renegade-Rush | 1 | 126386 | <filename>src/player.asm
include "hardware.inc"
include "spriteallocation.inc"
include "macros.inc"
include "collision.inc"
DEF EXPLOSION_TILE_OFFSET EQUS "((Explosion1TilesVRAM - $8000) / 16)"
DEF EXPLOSION_NUM_FRAMES EQU 5 ; Number of animation frames in the explosion animation.
DEF EXPLOSION_ANIM_SPEED EQU 4 ; Num... |
Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0x48_notsx.log_21829_1082.asm | ljhsiun2/medusa | 9 | 126387 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r9
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x18f73, %r9
nop
nop
sub %rsi, %rsi
mov (%r9), %ax
nop
xor %rax, %rax
lea addresses_D_ht+0x64f3, %r12
nop
nop
cmp %rdx, %rdx
mov $0x6162636465666768, %rsi
movq %rsi, (%r12)
nop... |
ASS2/avg_of_n (q1).asm | rahulkumawat1/NASM | 0 | 126388 | <reponame>rahulkumawat1/NASM
section .data
msg1 db'enter the size of array',0ax
len1 equ $-msg1
msg2 db'the average is',0ax
len2 equ $-msg2
msg3 db'count of numbers above average is:',0ax
len3 equ $-msg3
section .bss
num resd 1
size resd 1
temp resb 1
num1 resd 1
count resd 1
array resd 100
counter resd 1
sum resd 1
... |
lib/avx/chacha20_avx.asm | ipuustin/intel-ipsec-mb | 0 | 126389 | <reponame>ipuustin/intel-ipsec-mb<gh_stars>0
;;
;; Copyright (c) 2020, Intel Corporation
;;
;; Redistribution and use in source and binary forms, with or without
;; modification, are permitted provided that the following conditions are met:
;;
;; * Redistributions of source code must retain the above copyright noti... |
header/118/TKSROM.asm | freem/nes_corelib | 16 | 126390 | <reponame>freem/nes_corelib
; TKSROM: (128,256,512)KB PRG-ROM + 8KB PRG-RAM + 128KB CHR-ROM
; http://bootgod.dyndns.org:7777/search.php?keywords=TKSROM&kwtype=pcb
; Apparently only used for "Ys III: Wanderers from Ys" (J)
;------------------------------------------------------------------------------;
; number of 16K P... |
oeis/001/A001909.asm | neoneye/loda-programs | 11 | 126391 | <reponame>neoneye/loda-programs
; A001909: a(n) = n*a(n-1) + (n-4)*a(n-2), a(2) = 0, a(3) = 1.
; Submitted by <NAME>
; 0,1,4,21,134,1001,8544,81901,870274,10146321,128718044,1764651461,25992300894,409295679481,6860638482424,121951698034461,2291179503374234,45361686034627361,943892592746534964,20592893110265899381,47003... |
oeis/256/A256292.asm | neoneye/loda-programs | 11 | 126392 | <reponame>neoneye/loda-programs
; A256292: Numbers which have only digits 6 and 7 in base 10.
; Submitted by <NAME>
; 6,7,66,67,76,77,666,667,676,677,766,767,776,777,6666,6667,6676,6677,6766,6767,6776,6777,7666,7667,7676,7677,7766,7767,7776,7777,66666,66667,66676,66677,66766,66767,66776,66777,67666,67667
add $0,1
mov ... |
Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0xca_notsx.log_21829_1146.asm | ljhsiun2/medusa | 9 | 126393 | <reponame>ljhsiun2/medusa
.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+0x105bc, %rsi
lea addresses_UC_ht+0x14e28, %rdi
nop
inc %r13
mov $56, %rcx
rep movsl
nop
nop
nop
dec %r11
lea addresses_normal_ht+0x15528, %r9
clflush... |
_build/dispatcher/jmp_ippsPRNGInit_edfb9a60.asm | zyktrcn/ippcp | 1 | 126394 | extern m7_ippsPRNGInit:function
extern n8_ippsPRNGInit:function
extern y8_ippsPRNGInit:function
extern e9_ippsPRNGInit:function
extern l9_ippsPRNGInit:function
extern n0_ippsPRNGInit:function
extern k0_ippsPRNGInit:function
extern ippcpJumpIndexForMergedLibs
extern ippcpSafeInit:function
segment .data
align 8
dq .Li... |
programs/oeis/152/A152767.asm | karttu/loda | 1 | 126395 | <filename>programs/oeis/152/A152767.asm
; A152767: 3 times 10-gonal (or decagonal) numbers: 3n(4n-3).
; 0,3,30,81,156,255,378,525,696,891,1110,1353,1620,1911,2226,2565,2928,3315,3726,4161,4620,5103,5610,6141,6696,7275,7878,8505,9156,9831,10530,11253,12000,12771,13566,14385,15228,16095,16986,17901,18840,19803,20790,2180... |
programs/oeis/240/A240975.asm | neoneye/loda | 22 | 126399 | <reponame>neoneye/loda
; A240975: The number of distinct prime factors of n^3-1.
; 0,1,2,2,2,2,3,2,3,2,4,2,3,2,3,4,2,2,3,2,3,3,4,2,4,3,3,2,4,3,4,3,2,3,4,4,4,2,4,3,3,3,4,3,4,4,4,3,4,2,4,3,4,2,4,4,3,4,3,3,5,2,4,4,3,3,5,3,3,3,4,3,3,4,3,3,3,3,5,2,5,2,4,3,4,4,5,4,3,2,4,4,4,4,4,4,3,3,3,5
add $0,1
pow $0,3
trn $0,2
seq $0,12... |
programs/oeis/130/A130256.asm | neoneye/loda | 22 | 126400 | ; A130256: Minimal index k of an odd Fibonacci number A001519 such that A001519(k) = Fibonacci(2*k-1) >= n (the 'upper' odd Fibonacci Inverse).
; 0,0,2,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,... |
programs/oeis/072/A072833.asm | karttu/loda | 0 | 126401 | <filename>programs/oeis/072/A072833.asm
; A072833: Numbers that are congruent to 0, 5, 8, 9 mod 12.
; 0,5,8,9,12,17,20,21,24,29,32,33,36,41,44,45,48,53,56,57,60,65,68,69,72,77,80,81,84,89,92,93,96,101,104,105,108,113,116,117,120,125,128,129,132,137,140,141,144,149,152,153,156,161,164,165,168,173,176,177,180,185,188,189... |
oeis/139/A139185.asm | neoneye/loda-programs | 11 | 126402 | ; A139185: a(n) = (n! - 10)/10.
; Submitted by <NAME>
; 11,71,503,4031,36287,362879,3991679,47900159,622702079,8717829119,130767436799,2092278988799,35568742809599,640237370572799,12164510040883199,243290200817663999,5109094217170943999,112400072777760767999,2585201673888497663999,62044840173323943935999,15511210043330... |
solutions/63 - Defrag Disordered/size-57_speed-8.asm | michaelgundlach/7billionhumans | 45 | 126404 | -- 7 Billion Humans (2053) --
-- 63: Defrag Disordered --
-- Author: ansvonwa
-- Size: 57
-- Speed: 8
step ne
step n
if c == datacube and
nw != datacube:
pickup c
step n
step n
step n
drop
pickup s
step nw
drop
step se
step se
step e
step e
pickup se
step ne
step n
drop
end
endif
if c != datacube an... |
T_pronto/NASM/mult.asm | HGuigit/Trabalho-LM | 0 | 126405 | <gh_stars>0
SECTION .data
ik: dd 0
aux_L : dd 0
cont_col : dd 0
cont_lin : dd 0
contador_R: dd 0
soma: dd 0
int: dd 4
var: dd 0
%macro Organiza 4
; ----------------------- INICIO MACRO -----------------------------
; [cont_lin] = %1 / [cont_col] = %2 / [aux_L] = %3 / [int] = %4
push eax
push edx
... |
libsrc/stdio_new/fd/poll_callee.asm | andydansby/z88dk-mk2 | 1 | 126406 | <filename>libsrc/stdio_new/fd/poll_callee.asm
; int __CALLEE__ poll_callee(struct pollfd *fds, uint nfds, uint timeout)
; 06.2008 aralbrec
XLIB poll_callee
XDEF ASMDISP_POLL_CALLEE
LIB stdio_fdcommon1, l_jpix, stdio_error_einval_mc
INCLUDE "../stdio.def"
; struct pollfd {
; int fd;
; char events;
; char r... |
src/m2-flyover.asm | Iemnur/Mother2GbaTranslation | 149 | 126407 | //==============================================================================
//Makes it so largevwf gets what it expects from the tea routine
wrapper_largevwf_tea:
push {r4,lr}
mov r4,r5
bl largevwf
mov r5,r4
pop {r4,pc}
//==============================================================================
//Writes the ... |
libsrc/zx81/basic/zx_setstr.asm | andydansby/z88dk-mk2 | 1 | 126408 | ; int zx_setstr(char variable, char *value)
; CALLER linkage for function pointers
XLIB zx_setstr
LIB zx_setstr_callee
XREF ASMDISP_ZX_SETSTR_CALLEE
.zx_setstr
pop bc
pop hl
pop de
push de
push hl
push bc
jp zx_setstr_callee + ASMDISP_ZX_SETSTR_CALLEE
|
data/pokemon/base_stats/shiftry.asm | AtmaBuster/pokeplat-gen2 | 6 | 126409 | <filename>data/pokemon/base_stats/shiftry.asm
db 0 ; species ID placeholder
db 50, 100, 60, 80, 90, 60
; hp atk def spd sat sdf
db GRASS, DARK ; type
db 45 ; catch rate
db 181 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_F50 ; gender ratio
db 15 ; step cycles to hatch
INCBIN "gfx/pokemon/shi... |
boot/boot.asm | marklang1993/OS | 0 | 126410 | <gh_stars>0
; #############################
; Boot Sector
; #############################
%include "boot/boot.inc"
org 7c00h ; Load to memory address 07c0h:0000h = 7c00h
; JUMP
jmp short LABEL_BOOTLOADER ; 2 Bytes short jmp
nop ; 1 Byte nop
; 3 Bytes Totaly
; Header of FAT1... |
oeis/142/A142941.asm | neoneye/loda-programs | 11 | 126411 | <gh_stars>10-100
; A142941: Primes congruent to 37 mod 64.
; Submitted by <NAME>
; 37,101,229,293,421,613,677,997,1061,1381,1637,2213,2341,2789,2917,3109,3301,3557,3877,4133,4261,4517,5413,5477,5669,5861,6053,6373,6949,7013,7333,7589,7717,8101,8293,8677,8741,8933,9829,10597,10789,10853,11173,11621,11813,11941,12197,125... |
programs/oeis/026/A026035.asm | neoneye/loda | 22 | 126412 | <reponame>neoneye/loda
; A026035: Expansion of x^2*(2 - x + x^2) / ((1 + x)*(1 - x)^4).
; 2,5,12,22,38,59,88,124,170,225,292,370,462,567,688,824,978,1149,1340,1550,1782,2035,2312,2612,2938,3289,3668,4074,4510,4975,5472,6000,6562,7157,7788,8454,9158,9899,10680,11500,12362,13265,14212,15202,16238
add $0,2
mov $1,$0
pow ... |
programs/oeis/007/A007483.asm | karttu/loda | 0 | 126413 | <reponame>karttu/loda<filename>programs/oeis/007/A007483.asm
; A007483: a(n) = 3*a(n-1) + 2*a(n-2), with a(0)=1, a(1)=5.
; 1,5,17,61,217,773,2753,9805,34921,124373,442961,1577629,5618809,20011685,71272673,253841389,904069513,3219891317,11467812977,40843221565,145465290649,518082315077,1845177526529,6571697209741,234054... |
main.asm | sirrosh/pictest_dram | 0 | 126414 | <reponame>sirrosh/pictest_dram
list p=16f648a
radix dec
#include "p16f648a.inc"
;__CONFIG _CP_OFF & _CPD_OFF & _WDT_OFF & _PWRTE_ON & _INTRC_OSC_NOCLKOUT & _MCLRE_OFF & _LVP_OFF
__CONFIG _CP_OFF & _CPD_OFF & _WDT_OFF & _PWRTE_ON & _HS_OSC & _MCLRE_OFF & _LVP_OFF
#define RAS PORTA, 0
#define CAS PORTA, 1
#define DI... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_531.asm | ljhsiun2/medusa | 9 | 126415 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r13
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x1a2e0, %r13
nop
nop
nop
sub $45553, %rax
mov $0x6162636465666768, %r11
movq %r11, (%r13)
cmp $24273, %r10
lea addresses_UC_ht+0x9ee0, %rbp
nop
nop
... |
src/gfx/LcdClear.asm | beckadamtheinventor/BOSos | 1 | 126416 | ;@DOES clears the lcd
;@INPUT A color to fill with
;@DESTROYS HL,DE,BC,F(P/V)
gfx_LcdClear:
ld hl,LCD_VRAM
ld bc,LCD_WIDTH * LCD_HEIGHT - 1
jr gfx_BufClear.clear
|
part7/bootloader.asm | VARoDeK/realmode-assembly | 42 | 126417 | org 0x7C00
%define SECTOR_AMOUNT 0x10 ;Precompiler defined value for easy changing
jmp short start
nop
; BPB
OEMLabel db "Example " ; Disk label
BytesPerSector dw 512 ; Bytes per sector
SectorsPerCluster db 1 ; Sectors per cluster
ReservedForBoot dw 1 ; Reserved sectors for boot ... |
oeis/107/A107128.asm | neoneye/loda-programs | 11 | 126418 | ; A107128: Divide the even digits of n by 2!.
; Submitted by <NAME>
; 0,1,1,3,2,5,3,7,4,9,10,11,11,13,12,15,13,17,14,19,10,11,11,13,12,15,13,17,14,19,30,31,31,33,32,35,33,37,34,39,20,21,21,23,22,25,23,27,24,29,50,51,51,53,52,55,53,57,54,59,30,31,31,33,32,35,33,37,34,39,70,71,71,73,72,75,73,77,74,79,40,41,41,43,42,45,43... |
OvmfPkg/CpuHotplugSmm/FirstSmiHandler.nasm | nicklela/edk2 | 3,012 | 126419 | ;------------------------------------------------------------------------------
; @file
; Relocate the SMBASE on a hot-added CPU when it services its first SMI.
;
; Copyright (c) 2020, Red Hat, Inc.
;
; SPDX-License-Identifier: BSD-2-Clause-Patent
;
; The routine runs on the hot-added CPU in the following "big ... |
test-03.asm | jamesor/atari-2600-examples | 1 | 126420 | <reponame>jamesor/atari-2600-examples
;==============================================================================
; Test 3
; Gradient Background with color data and a nested scanline loop
;
; Copyright 2017 <NAME>
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except... |
fast_marching.asm | vsariola/c64-fast-marching | 0 | 126421 | ; O(N) Fast Marching Method in C64. (c) 2018-2019 <NAME>
;
; Original Fast Marching Method which runs in O(N log N) time was developed by
; Sethian (N = number of cells visited). The log N comes from the fact that
; cells are kept in a priority queue. Yatsiv, Bartesaghi and Sapiro proposed
; keeping the cells in a fini... |
dv3/dv3/drbuf.asm | olifink/smsqe | 0 | 126422 | ; DV3 Directory Buffer Handling V3.00 1992 <NAME>
section dv3
xdef dv3_drnew
xdef dv3_drloc
xdef dv3_drupd
xref dv3_sbloc
xref dv3_sbnew
xref dv3_a1upd
include 'dev8_dv3_keys'
include 'dev8_keys_err'
include 'd... |
programs/oeis/138/A138393.asm | neoneye/loda | 22 | 126423 | <reponame>neoneye/loda<gh_stars>10-100
; A138393: Numbers of form 8k+1 which are not squares.
; 17,33,41,57,65,73,89,97,105,113,129,137,145,153,161,177,185,193,201,209,217,233,241,249,257,265,273,281,297,305,313,321,329,337,345,353,369,377,385,393,401,409,417,425,433,449,457,465,473,481,489,497,505
mov $2,$0
lpb $0
... |
programs/oeis/204/A204125.asm | jmorken/loda | 1 | 126424 | <filename>programs/oeis/204/A204125.asm
; A204125: Symmetric matrix based on f(i,j)=(i if i=j and 1 otherwise), by antidiagonals.
; 1,1,1,1,2,1,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,7,1,1,1,1,1,1,1,1,1,... |
programs/oeis/069/A069517.asm | jmorken/loda | 1 | 126425 | ; A069517: a(n) = (-1)*sum( d divides n, moebius(d)*(-1)^d).
; 1,2,0,2,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0... |
release/src/router/gmp/source/mpn/alpha/ev5/sub_n.asm | zhoutao0712/rtn11pb1 | 12 | 126426 | dnl Alpha EV5 mpn_sub_n -- Subtract two limb vectors of the same length > 0
dnl and store difference in a third limb vector.
dnl Copyright 1995, 1999, 2000, 2005 Free Software Foundation, Inc.
dnl This file is part of the GNU MP Library.
dnl The GNU MP Library is free software; you can redistribute it and/or mo... |
C/LoDosLib/getvmmv.asm | p-k-p/SysToolsLib | 232 | 126427 | <gh_stars>100-1000
page , 132
;*****************************************************************************;
; ;
; FileName: GetVmmV.asm ;
; ;
; Contents: Get Virtual Machine Manager version ;
; ;
; Notes: ;
; ;
; History: ... |
libsrc/rect/RIntersectRect8.asm | meesokim/z88dk | 0 | 126428 |
; Rectangle, Intervals and Points
; 05.2006 aralbrec
PUBLIC RIntersectRect8
; Returns the intersection of two 8-bit rectangles.
; Since rectangles can wrap across their 0-255
; boundaries, the result of the intersection can be
; 0, 1, 2 or 3 rectangles. This routine will return
; one result only.
;
; enter : b = ... |
oeis/019/A019664.asm | neoneye/loda-programs | 11 | 126429 | ; A019664: Expansion of 1/((1-4x)(1-8x)(1-9x)).
; Submitted by <NAME>
; 1,21,301,3669,40957,433125,4418317,43942773,428973853,4128937989,39306876973,370937567637,3475860284989,32382187083813,300235508341069,2772487245505461,25515330868003165,234141560259529797,2143302770635255405,19577955036991103445,178507437242621997... |
desoldata.asm | zxwanderer/spectrum-desolate | 18 | 126431 | <gh_stars>10-100
; Encoded rooms
LBFF8:
DEFB $08,$13,$4F,$FF,$04,$13,$50,$51,$52,$13,$09,$12,$16,$0E,$0F,$0E ; Room #0
DEFB $0F,$0A,$0B,$0E,$0F,$16,$14,$12,$20,$10,$11,$10,$11,$0C,$0D,$10 ;
DEFB $11,$20,$14,$12,$25,$01,$01,$21,$22,$01,$01,$01,$25,$1F,$14,$12 ;
DEFB $01,$01,$01,$23,$24,$FF,$04,$01,$1E,$14,$12,$... |
por_stairs/main.asm | LagoLunatic/DSVania_C_Hacking | 2 | 126432 | <reponame>LagoLunatic/DSVania_C_Hacking<gh_stars>1-10
.nds
.relativeinclude on
.erroronwarning on
PROJECT_DIR equ "../../ROMs/PoR_Stairs"
@Overlay119Start equ 0x02308EC0
@FreeSpace equ 0x02308EC0
.open PROJECT_DIR + "/ftc/overlay9_119", @Overlay119Start
.org @FreeSpace
.importobj "../build/linked.o"
.close
.open ... |
asm/The-Littlest-Number.asm | hixio-mh/hrm-cpu | 24 | 126434 | -- HUMAN RESOURCE MACHINE PROGRAM --
a:
INBOX
COPYTO 0
b:
c:
INBOX
JUMPZ e
COPYTO 1
COMMENT 0
SUB 0
JUMPN d
JUMP b
d:
COPYFROM 1
COPYTO 0
JUMP c
e:
COPYFROM 0
OUTBOX
JUMP a
DEFINE COMMENT 0
eJwrYGBg6BSvm3VbIGbmE94fU7+wv... |
programs/oeis/005/A005993.asm | neoneye/loda | 22 | 126435 | <filename>programs/oeis/005/A005993.asm
; A005993: Expansion of (1+x^2)/((1-x)^2*(1-x^2)^2).
; 1,2,6,10,19,28,44,60,85,110,146,182,231,280,344,408,489,570,670,770,891,1012,1156,1300,1469,1638,1834,2030,2255,2480,2736,2992,3281,3570,3894,4218,4579,4940,5340,5740,6181,6622,7106,7590,8119,8648,9224,9800,10425,11050,11726,... |
data/mapHeaders/HallOfFame.asm | AmateurPanda92/pokemon-rby-dx | 9 | 126436 | HallOfFame_h:
db GYM ; tileset
db HALL_OF_FAME_HEIGHT, HALL_OF_FAME_WIDTH ; dimensions (y, x)
dw HallOfFame_Blocks ; blocks
dw HallOfFame_TextPointers ; texts
dw HallOfFame_Script ; scripts
db 0 ; connections
dw HallOfFame_Object ; objects
|
progs/h05-num2hextable.asm | HKhademian/AssemblyDandamudi | 1 | 126437 | <reponame>HKhademian/AssemblyDandamudi<gh_stars>1-10
%include "lib.asm"
extern ExitProcess ; windows syscall to exit
section .text
N equ 32 ; up to 32 bits
HEX db "0123456789ABCDEF"
section .bss
buffer resb 25
section .data
section .code
global _start
_start:
fgets buffer, 12 ; fill buffer with 12 cha... |
sk/music/Zone Boss.asm | Cancer52/flamedriver | 9 | 126438 | Snd_Boss_Header:
smpsHeaderStartSong 3
smpsHeaderVoice Snd_Boss_Voices
smpsHeaderChan $06, $03
smpsHeaderTempo $01, $00
smpsHeaderDAC Snd_Boss_DAC
smpsHeaderFM Snd_Boss_FM1, $00, $0C
smpsHeaderFM Snd_Boss_FM2, $00, $0C
smpsHeaderFM Snd_Boss_FM3, $00, $0C
smpsHeaderFM ... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1721.asm | ljhsiun2/medusa | 9 | 126439 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %r15
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0xc25a, %rbp
xor $13164, %r9
movl $0x61626364, (%rbp)
nop
nop
nop
nop
nop
xor %rdx, %rdx
lea addresses_normal_ht+0xba2a, %rdx
add ... |
libsrc/_DEVELOPMENT/math/float/math32/z80/f32_fspoly.asm | rjcorrig/z88dk | 0 | 126440 | <reponame>rjcorrig/z88dk
;
; feilipu, 2019 May
;
; This Source Code Form is subject to the terms of the Mozilla Public
; License, v. 2.0. If a copy of the MPL was not distributed with this
; file, You can obtain one at http://mozilla.org/MPL/2.0/.
;
;-----------------------------------------------------------------... |
programs/oeis/014/A014335.asm | jmorken/loda | 1 | 126441 | ; A014335: Exponential convolution of Fibonacci numbers with themselves (divided by 2).
; 0,0,1,3,11,35,115,371,1203,3891,12595,40755,131891,426803,1381171,4469555,14463795,46805811,151466803,490156851,1586180915,5132989235,16610702131,53753361203,173949530931,562912506675,1821623137075,5894896300851,19076285150003,617... |
base/ntos/ke/i386/i386pcr.asm | npocmaka/Windows-Server-2003 | 17 | 126442 | title "I386 PCR"
;++
;
; Copyright (c) 1989 Microsoft Corporation
;
; Module Name:
;
; i386pcr.asm
;
; Abstract:
;
; This module implements routines for accessing and initing the pcr.
;
; Author:
;
; <NAME> (bryanwi) 20 Mar 90
;
; Environment:
;
; Kernel mode, early init of firs... |
solutions/58 - Good Neighbors/size-24_speed-14.asm | michaelgundlach/7billionhumans | 45 | 126443 | <filename>solutions/58 - Good Neighbors/size-24_speed-14.asm
-- 7 Billion Humans (2053) --
-- 58: Good Neighbors --
-- Author: Blanvillain
-- Size: 24
-- Speed: 14
mem1 = nearest wall
step mem1
if n == wall and
w != worker and
e != worker:
step e
mem1 = nearest datacube
a:
pickup mem1
mem1 = set s
step n
ste... |
book-01/Assembly/asm/core/struct/core_struct_get_cpu_info.asm | gfurtadoalmeida/study-assembly-x64 | 2 | 126444 | <filename>book-01/Assembly/asm/core/struct/core_struct_get_cpu_info.asm
.code
ProcessorInfo struct
Vendor byte 13 DUP(?)
ModelName byte 49 DUP(?) ; Do not use "Name" as it is mistaken as an ignored directive ".NAME"
ProcessorInfo ends
; bool Core_Struct_Get_CPU_Info_(const ProcessorInfo* processorInfo)
Core_Struc... |
oeis/164/A164421.asm | neoneye/loda-programs | 11 | 126445 | ; A164421: Number of binary strings of length n with no substrings equal to 0000 0010 or 1001
; Submitted by <NAME>
; 13,22,38,65,111,189,322,549,936,1596,2721,4639,7909,13484,22989,39194,66822,113925,194231,331145,564570,962537,1641032,2797800,4769977,8132347,13864861,23638240,40300901,68709118,117142366,199716345,340... |
wc.asm | dmansilva/OSProject03 | 0 | 126446 |
_wc: file format elf32-i386
Disassembly of section .text:
00000000 <wc>:
char buf[512];
void
wc(int fd, char *name)
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 83 ec 48 sub $0x48,%esp
int i, n;
int l, w, c, inword;
l = w = c = 0;
6: c7... |
oeis/142/A142202.asm | neoneye/loda-programs | 11 | 126447 | ; A142202: Primes congruent to 5 mod 41.
; Submitted by <NAME>(w1)
; 5,251,661,743,907,1153,1399,1481,1973,2137,2383,2711,2957,3121,3203,3449,3613,4597,4679,5171,5417,5581,5827,6073,7057,7549,7877,8123,8287,8369,8779,8861,10009,10091,10337,10501,10993,11239,11321,11731,11813,13043,13781,14437,14519,14683,14929,15667,15... |
General/Sprites/Monitors/Map - Monitor S3.asm | NatsumiFox/AMPS-Sonic-3-Knuckles | 5 | 126448 | <gh_stars>1-10
dc.w word_1B970-Map_Monitor
dc.w word_1B978-Map_Monitor
dc.w word_1B986-Map_Monitor
dc.w word_1B994-Map_Monitor
dc.w word_1B9A2-Map_Monitor
dc.w word_1B9B0-Map_Monitor
dc.w word_1B9BE-Map_Monitor
dc.w word_1B9CC-Map_Monitor
dc.w word_1B9DA-Map_Monitor
dc.w word_1B9E8-Map_Monitor
dc.... |
cps.asm | reubenct/OSproject-xv6 | 1 | 126449 |
_cps: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "types.h"
#include "user.h"
int main()
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 83 e4 f0 and $0xfffffff0,%esp
cprocstate();
6: e8 ef 02 00 00 call ... |
libsrc/_DEVELOPMENT/math/float/math32/c/sdcc/cm32_sdcc_fsread_callee.asm | rjcorrig/z88dk | 0 | 126451 | <gh_stars>0
SECTION code_clib
SECTION code_math
PUBLIC cm32_sdcc_fsreadr_callee
.cm32_sdcc_fsreadr_callee
; sdcc float primitive
; Read right sdcc float from the stack
;
; Convert from sdcc_float calling to d32_float.
;
; enter : stack = sdcc_float right, sdcc_float left, ret1, ret0
;
... |
move.asm | TusharGupta01/XV6 | 0 | 126452 |
_move: file format elf32-i386
Disassembly of section .text:
00000000 <cat>:
#include "fcntl.h"
char buf[512];
void
cat(int fd1, int fd2)
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 83 ec 28 sub $0x28,%esp
int n;
while((n = read(fd1, buf, siz... |
Loops/Loops.nasm | TheRavehorn/Assembly_x86-SLAE | 0 | 126453 | ; Loops.nasm
; Author: Ravehorn
global _start
section .text
_start:
; main func and ECX counter to 10000
mov eax, 0x0
mov ecx, 0x10000
jmp PrintFunc
PrintFunc:
; loop prints 01 on the screen (uses ECX as a counter)
push ecx
mov eax, 0x4
mov ebx, 0x1
lea ecx, [message]
lea... |
guest-filesystem/Packages/Init/src/init.asm | FranchuFranchu/fran-os | 1 | 126455 | BITS 32
%include "sysenter_vectors.asm"
%include "userspace/system_calls.asm"
start:
mov edi, 1 ; Open backend number 1
mov eax, 100
system_call os_open
mov esi, test_string
mov eax, test_string_end - test_string
mov edi, 0
system_call os_write
system_call os_terminate_process
test_string:
... |
libsrc/_DEVELOPMENT/sound/ay/c/sccz80/ay_wyz_stop.asm | Frodevan/z88dk | 640 | 126456 | <reponame>Frodevan/z88dk
SECTION code_sound_ay
PUBLIC ay_wyz_stop
EXTERN asm_wyz_stop
defc ay_wyz_stop = asm_wyz_stop
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _ay_wyz_stop
defc _ay_wyz_stop = ay_wyz_stop
ENDIF
|
programs/oeis/111/A111863.asm | neoneye/loda | 22 | 126457 | ; A111863: Smallest prime factor of 6*n-1 that is congruent to 5 modulo 6.
; 5,11,17,23,29,5,41,47,53,59,5,71,11,83,89,5,101,107,113,17,5,131,137,11,149,5,23,167,173,179,5,191,197,29,11,5,17,227,233,239,5,251,257,263,269,5,281,41,293,23,5,311,317,17,47,5,11,347,353,359,5,53,29,383,389,5
add $0,2
mov $1,$0
mov $2,1
mov... |
programs/oeis/040/A040557.asm | karttu/loda | 1 | 126458 | ; A040557: Continued fraction for sqrt(582).
; 24,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48
sub $0,1
mod $0,2
mul $0,10
add $0,2
pow $0,2
mov $1,$0
div $1,26
mul $1,8
add $1,8
|
libsrc/_DEVELOPMENT/math/integer/z80_zxn/l_z80_zxn_muls_16_16x8.asm | Toysoft/z88dk | 0 | 126459 | <gh_stars>0
INCLUDE "config_private.inc"
SECTION code_clib
SECTION code_math
EXTERN l_z80_zxn_mulu_16_16x8
EXTERN l_neg_hl, l_neg_de
PUBLIC l_z80_zxn_muls_16_16x8
l_z80_zxn_muls_16_16x8:
; multiplication of a 16-bit signed number by an 8-bit signed number into 16-bit product
;
; enter : l = 8-bit si... |
Aysalia DOS/Source/DOS Stub/DosStub.asm | danielmarschall/aysalia | 0 | 126460 |
; Aysalia DOS Launcher
; DOS Stub for AyDos.exe fat binary
; Revision 2018-12-05
; (C) 2018 <NAME>, ViaThinkSoft
.model tiny
.code
org 100h
start:
jmp real_start
exename1 db "AYDOS.MNU",0
cmdargs db 0,'',0dh
dummy_fcb db 36 dup(0)
paramblk dw 0 ; use environment of... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.