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 |
|---|---|---|---|---|
Prc1.asm | lestersantos/Assembly2019 | 0 | 50679 | %macro print 1 ;this macro will print to screen
mov dx, %1 ;refers to the first parameter to the macro call
mov ah, 09h ;09h function write string
int 21h ;call the interruption
%endmacro
org 100h
;============= muestra el mensaje inicial ==============
menu:
;call clean
mov dx,msg1
mov ah, 09... |
.old/2019/src/depracated/boot_sect/boot_sect_disk.asm | zhooda/dumbOS | 0 | 50680 | ; load 'dh' sectors from drive 'dl' into ES:BX
disk_load:
pusha
; reading from disk requires setting specific values in all registers
; so we will overwrite our input parameters from 'dx'. Let's save it
; to the stack for later use
push dx
mov ah, 0x02 ; ah <- int 0x13 function. 0x02 = 'read'
... |
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0.log_21829_1057.asm | ljhsiun2/medusa | 9 | 50681 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r13
push %r14
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x9aee, %r10
nop
nop
nop
nop
xor $63207, %r11
movups (%r10), %xmm5
vpextrq $0, %xmm5, %r13
nop
cmp $57689, %r10
lea addresses_WT_ht+0x2bc1, %rsi
nop
l... |
base/mvdm/dos/v86/cmd/command/copy.asm | npocmaka/Windows-Server-2003 | 17 | 50682 | <reponame>npocmaka/Windows-Server-2003
page ,132
title COMMAND COPY routines.
;/*
; * Microsoft Confidential
; * Copyright (C) Microsoft Corporation 1991
; * All Rights Reserved.
; */
comment % ----------------------------------------------------... |
Appl/Games/Amateur/amateurBitmap.asm | steakknife/pcgeos | 504 | 50683 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: amateurBitmap.asm
AUTHOR: <NAME>
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:
Name Date Description
---- ---- ----... |
libsrc/target/pc88/stdio/generic_console.asm | ahjelm/z88dk | 640 | 50684 | <reponame>ahjelm/z88dk
SECTION code_clib
PUBLIC generic_console_cls
PUBLIC generic_console_vpeek
PUBLIC generic_console_plotc
PUBLIC generic_console_printc
PUBLIC generic_console_scrollup
PUBLIC generic_console_set_ink
PUBLIC generic_console_set_paper
PUBLIC ... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_715.asm | ljhsiun2/medusa | 9 | 50685 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r13
push %r14
push %r15
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0xa3ef, %r13
nop
nop
nop
nop
nop
add $9117, %r15
movups (%r13), %xmm2
vpextrq $1, %xmm2, %rsi
nop
nop
dec %r13
lea addresses_A_ht+0x30f, %r14
clflush (%r14)
nop
nop
nop
and $58... |
Appl/Games/Sokoban/sokobanSolve.asm | steakknife/pcgeos | 504 | 50686 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: sokobanSolve.asm
AUTHOR: <NAME>, Dec 18, 1993
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:
Name Date Descrip... |
Code/CustomControl/RAHexEd/Test/TabTool.asm | CherryDT/FbEditMOD | 11 | 50687 | <reponame>CherryDT/FbEditMOD
.code
TabToolGetMem proc uses ebx,hWin:DWORD
LOCAL nInx:DWORD
LOCAL tci:TC_ITEM
mov nInx,-1
mov tci.imask,TCIF_PARAM
mov eax,TRUE
.while eax
inc nInx
invoke SendMessage,hTab,TCM_GETITEM,nInx,addr tci
.if eax
mov ebx,tci.lParam
mov eax,[ebx].TABMEM.hwn... |
oeis/022/A022139.asm | neoneye/loda-programs | 11 | 50688 | ; A022139: Fibonacci sequence beginning 5, 14.
; Submitted by <NAME>(s4)
; 5,14,19,33,52,85,137,222,359,581,940,1521,2461,3982,6443,10425,16868,27293,44161,71454,115615,187069,302684,489753,792437,1282190,2074627,3356817,5431444,8788261,14219705,23007966,37227671,60235637,97463308,157698945
mov $1,5
mov $2,9
lpb $0
... |
oeis/259/A259748.asm | neoneye/loda-programs | 11 | 50689 | <gh_stars>10-100
; A259748: a(n) = (Sum_{0<x<y<n} x*y) mod n.
; Submitted by <NAME>(s2)
; 0,0,2,3,0,1,0,2,6,0,0,5,0,7,10,4,0,12,0,15,14,11,0,22,0,0,18,21,0,5,0,8,22,0,0,15,0,19,26,10,0,28,0,33,30,23,0,44,0,0,34,39,0,9,0,14,38,0,0,25,0,31,42,16,0,44,0,51,46,35,0,66,0,0,50,57,0,13,0,20,54,0,0,35,0,43,58,22,0,60,0,69,62,4... |
lib/runtime.asm | adajed/SPL | 1 | 50690 | <gh_stars>1-10
default rel
global printInt
global allocMemory
global freeMemory
global print
extern free ; near
extern malloc ; near
extern __printf_chk ; near
extern _GLOBAL_OFFSET_TABL... |
solutions/63 - Defrag Disordered/size-58_speed-7.asm | behrmann/7billionhumans | 45 | 50691 | -- 7 Billion Humans (2145) --
-- 63: Defrag Disordered --
-- Author: landfillbaby
-- Size: 58
-- Speed: 7
step ne
if nw == datacube and
w != worker:
pickup nw
step ne
step n
step n
step n
step n
step n
drop
step s
step s
step s
pickup s
step n
jump a
endif
if e == worker:
pickup n
step nw
step n
st... |
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_662.asm | ljhsiun2/medusa | 9 | 50692 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r15
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x5289, %r12
nop
nop
and %r11, %r11
vmovups (%r12), %ymm2
vextracti128 $1, %ymm2, %xmm2
vpextrq $1, %xmm2, %rax
cmp $20882, %rcx
lea addresses_A_ht+0x19ebd, %rsi
lea addresses_... |
data/mapHeaders/CeruleanCaveB1F.asm | AmateurPanda92/pokemon-rby-dx | 9 | 50693 | <reponame>AmateurPanda92/pokemon-rby-dx
CeruleanCaveB1F_h:
db CAVERN ; tileset
db CERULEAN_CAVE_B1F_HEIGHT, CERULEAN_CAVE_B1F_WIDTH ; dimensions (y, x)
dw CeruleanCaveB1F_Blocks ; blocks
dw CeruleanCaveB1F_TextPointers ; texts
dw CeruleanCaveB1F_Script ; scripts
db 0 ; connections
dw CeruleanCaveB1F_Object ; obj... |
src/ints-asm.asm | nopsys/nopsys | 20 | 50696 | <filename>src/ints-asm.asm
extern ints_signal_master_semaphore
extern ints_signal_slave_semaphore
extern ints_init_structs
extern idt_descriptor
extern printCallStack
extern nopsys_main
extern printf_args
extern sprintf_args
extern snprintf_args
global get_CS
global get_CR2
global get_tsc
global enable_paging_using... |
data/wildPokemon/pokemontower6.asm | adhi-thirumala/EvoYellow | 16 | 50697 | TowerMons6:
db $0F
db 22,GASTLY
db 23,HOOTHOOT
db 24,GASTLY
db 25,GASTLY
db 26,GASTLY
db 21,MISDREAVUS
db 22,CUBONE
db 27,NOCTOWL
db 22,HAUNTER
db 27,HAUNTER
db $00
|
programs/oeis/325/A325657.asm | neoneye/loda | 22 | 50698 | <filename>programs/oeis/325/A325657.asm
; A325657: a(n) = (1/2)*(-1 + (-1)^n)*(n-1) + n^2.
; 0,1,4,7,16,21,36,43,64,73,100,111,144,157,196,211,256,273,324,343,400,421,484,507,576,601,676,703,784,813,900,931,1024,1057,1156,1191,1296,1333,1444,1483,1600,1641,1764,1807,1936,1981,2116,2163,2304,2353,2500,2551
mov $1,$0
gc... |
libsrc/graphics/sorcerer/textpixl.asm | jpoikela/z88dk | 640 | 50700 | <reponame>jpoikela/z88dk
;
;
; Quadrant mapping for the Exidy Sorcerer
;
; $Id: textpixl.asm,v 1.3 2016-06-23 19:53:27 dom Exp $
;
;
; .. X. .X XX
; .. .. .. ..
;
; .. X. .X XX
; X. X. X. X.
;
; .. X. .X XX
; .X .X .X .X
;
; .. X. .X XX
; XX XX XX XX
SECTION rod... |
COMP273 WINTER 2019/A4/quicksort.asm | Seibaah/McGill-COMP | 0 | 50701 | <reponame>Seibaah/McGill-COMP<filename>COMP273 WINTER 2019/A4/quicksort.asm
# This MIPS program should sort a set of numbers using the quicksort algorithm
# The program should use MMIO
.data
#any any data you need be after this line
welcome: .asciiz "Welcome to quicksort\n\0"
blankspace: .asciiz " \0"
newLine: .asc... |
Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xa0.log_3_344.asm | ljhsiun2/medusa | 9 | 50702 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x1eed9, %rsi
lea addresses_A_ht+0x54c9, %rdi
nop
cmp $6816, %r15
mov $95, %rcx
rep movsb
and $40543, %r10
lea addresses_WC_ht+0x18ac9, %rsi
lea addresses_WC_ht+0x10689, %rdi
nop
nop
add $36832, ... |
apps/breakfast/pde_fw/toast/examples/Assembly (CCE)/msp430x24x_uscib0_spi_01.asm | tp-freeforall/breakfast | 1 | 50703 | ;******************************************************************************
; MSP430x24x Demo - USCI_B0, SPI Interface to TLC549 8-Bit ADC
;
; Description: This program demonstrate USCI_B0 in SPI mode interfaced to a
; TLC549 8-bit ADC. If AIN > 0.5(REF+ - REF-), P1.0 set, else reset.
; R15 = 8-bit ADC... |
oeis/007/A007522.asm | neoneye/loda-programs | 11 | 50704 | ; A007522: Primes of the form 8n+7, that is, primes congruent to -1 mod 8.
; Submitted by <NAME>
; 7,23,31,47,71,79,103,127,151,167,191,199,223,239,263,271,311,359,367,383,431,439,463,479,487,503,599,607,631,647,719,727,743,751,823,839,863,887,911,919,967,983,991,1031,1039,1063,1087,1103,1151,1223,1231,1279,1303,1319,1... |
4th Set/micro5.asm | Costopoulos/NTUA-Microcomputers | 0 | 50705 | <filename>4th Set/micro5.asm
org 100h
.DATA
M1 DB 'START (Y,N): ', '$'
M2 DB 'ERROR', '$'
.CODE
PRINT MACRO CHAR
PUSH AX
PUSH DX ;store register values that will be changed
MOV DL,CHAR
MOV AH,2
INT 21H
POP DX
POP AX
ENDM
PRINT_STR MACRO STRING
PUSH AX
PUSH D... |
src/z3/newgame.asm | PJBoy/alttp_sm_combo_randomizer_rom | 31 | 50706 | ; When starting a new game, run this code
;
; Only copies the "new file" SRAM into the ALTTP SRAM slot right now (only file 1 works)
org $5e0000
alttp_new_game:
pha
phx
phy
php
%ai16()
ldx #$0000
-
lda.l alttp_sram,x
sta.l $a06000,x
inx
inx
cpx #$2000
bne -
jsl zel... |
intel.asm | pedrovereza/arq-intel | 0 | 50707 | ;
;====================================================================
; - Fonte base para a escrita de programa para o 8086
; - Utiliza o modelo small
;====================================================================
;
.model small
.stack
.data
MAXSTRING equ 200
String db MAXSTRING dup (?) ; Declarar no... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_382.asm | ljhsiun2/medusa | 9 | 50708 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_382.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r15
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x169e8, %rsi
lea addresses_WC_ht+0x5c48, %rdi
nop
nop
nop
n... |
test/fibonacci.asm | yurirocha15/sbTradutor | 0 | 50709 | ; @file fibonacci.asm
; @author <NAME>
; @date 07/05/2014
;
; @brief Print Fibonacci series until a limit value (given by input)
SECTION TEXT
COPY ZERO, OLDER
COPY ONE, OLD
INPUT LIMIT
OUTPUT OLD
FRONT: LOAD OLDER
ADD OLD
STORE NEW
SUB LIMIT
JMPP FINAL
OUTPUT NEW
COPY OLD, OLDER
COPY NEW, OLD
JMP FRONT... |
asm/iftest.asm | tclendo/tiny_vm | 0 | 50710 | <reponame>tclendo/tiny_vm
.class iftest:Obj
.method $constructor
.local x,y
load x
const 4
store x
jump labelifcmp0
labelifbody1:
load y
const 1
store y
load y
call Int:print
pop
load x
const 10
store x
jump endlabelifcmp0
labelifcmp0:
load x
const 5
call Int:less
jump_if labelifbody1
labelelse2:
jump labelifcmp3
labe... |
Float Operations/Float convert.asm | MrR0B0T777/MIPS_Programming | 0 | 50711 | <gh_stars>0
.data
prompt1: .asciiz "\nEnter single precision floating point number: "
prompt2: .asciiz "\nEnter double precision floating point number: "
ans1: .asciiz "\nSingle to Double: "
ans2: .asciiz "\nDouble to Single: "
.text
main:
la $a0, prompt1
li $v0, 4
syscall
la $v0, 6
syscall
cvt.d.s $f6,... |
oeis/168/A168328.asm | neoneye/loda-programs | 11 | 50712 | ; A168328: a(n) = 6 * floor( n/2 ).
; Submitted by <NAME>
; 0,6,6,12,12,18,18,24,24,30,30,36,36,42,42,48,48,54,54,60,60,66,66,72,72,78,78,84,84,90,90,96,96,102,102,108,108,114,114,120,120,126,126,132,132,138,138,144,144,150,150,156,156,162,162,168,168,174,174,180,180,186,186,192,192,198,198,204,204,210,210,216,216,222,... |
solution/dump/windowswrapper.asm | schecko/OpenGLBoxes | 0 | 50713 | <gh_stars>0
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.00.23506.0
TITLE D:\scottsdocs\sourcecode\OpenGLboxes\code\windowswrapper.cpp
.686P
.XMM
include listing.inc
.model flat
INCLUDELIB MSVCRTD
INCLUDELIB OLDNAMES
PUBLIC ?__empty_global_delete@@YAXPAX@Z ; __empty_global_delete
PUBLIC... |
test/3_three.asm | kojad666/Vulcan | 102 | 50714 | <reponame>kojad666/Vulcan
# Primeira parte, carregar a string na memoria
# string = "AACCEEIIOU"
# Vou comecar a salvar a string na memoria a partir do endereco 0
addi x20, x0, 65 # A
addi x21, x0, 69 # E
addi x22, x0, 73 # I
addi x23, x0, 79 # O
addi x24, x0, 85 # U
addi x25, x0, 0 # esse registrador vai carreg... |
vgc_bass_demo.asm | kieranhj/vgm-player-bbc | 3 | 50715 | <gh_stars>1-10
;******************************************************************
; 6502 BBC Micro Compressed VGM (VGC) Music Player
; By <NAME>
; https://github.com/simondotm/vgm-player-bbc
; https://github.com/simondotm/vgm-packer
;******************************************************************
; Allocate vars ... |
print_string.asm | DMArens/BootFuck | 0 | 50717 | ; print a string with location passed in SI
; clobbers AX, BX
print_string:
lodsb
test al, al
jz @f
mov ah, 0Eh
xor bx, bx
int 10h
jmp print_string
@@: ret
|
programs/oeis/008/A008859.asm | neoneye/loda | 22 | 50718 | ; A008859: a(n) = Sum_{k=0..6} C(n,k).
; 1,2,4,8,16,32,64,127,247,466,848,1486,2510,4096,6476,9949,14893,21778,31180,43796,60460,82160,110056,145499,190051,245506,313912,397594,499178,621616,768212,942649,1149017,1391842,1676116,2007328,2391496,2835200,3345616,3930551,4598479,5358578,6220768,7195750,8295046,9531040,109... |
nasm/assgnment1/practice5.asm | codingneverends/assembly | 0 | 50719 | <reponame>codingneverends/assembly
;Comparing Two one digit numbers
section .data
msg1 : db 'Enter first number : '
l1 : equ $-msg1
msg2 : db 'Enter second number : '
l2 : equ $-msg2
msg3 : db 'GCD is : '
l3 : equ $-msg3
nwl : db ' ',10
l :equ $-nwl
section .bss
d1 : resb 1
d2 : resb 1
junk : resb 1
val : resb 1
secti... |
program_original.asm | smarifz/mips-pipeline | 0 | 50720 | <reponame>smarifz/mips-pipeline<gh_stars>0
# Load some data into memory
addi $t0, $zero, 15 # $t0 = 0xF
sw $t0, 0($zero) # Copy $t0 to memory[0]
addi $t1, $zero, 240 # $t1 = 0xF0
sw $t1, 4($zero) # Copy $t1 to memory[4]
# Do some calculations
# memory[8] = 0xF0 * (0xF + 0xF0)
add $t3, $t0, $t1 ... |
data/pokemon/base_stats/meowth.asm | opiter09/ASM-Machina | 1 | 50721 | db DEX_MEOWTH ; pokedex id
db 40, 45, 35, 90, 40
; hp atk def spd spc
db GROUND, GROUND ; type
db 255 ; catch rate
db 69 ; base exp
INCBIN "gfx/pokemon/front/meowth.pic", 0, 1 ; sprite dimensions
dw MeowthPicFront, MeowthPicBack
db PAY_DAY, GROWL, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_M... |
programs/oeis/021/A021389.asm | neoneye/loda | 22 | 50722 | <reponame>neoneye/loda<gh_stars>10-100
; A021389: Decimal expansion of 1/385.
; 0,0,2,5,9,7,4,0,2,5,9,7,4,0,2,5,9,7,4,0,2,5,9,7,4,0,2,5,9,7,4,0,2,5,9,7,4,0,2,5,9,7,4,0,2,5,9,7,4,0,2,5,9,7,4,0,2,5,9,7,4,0,2,5,9,7,4,0,2,5,9,7,4,0,2,5,9,7,4,0,2,5,9,7,4,0,2,5,9,7,4,0,2,5,9,7,4,0,2
add $0,1
mov $1,10
pow $1,$0
mul $1,6
div... |
software/profi/net-tools/src/pqdos/browser/drivers/utils.asm | andykarpov/karabas-pro | 26 | 50723 | ;;; Macroses!!!!
MACRO EspSend Text
ld hl, .txtB
ld e, (.txtE - .txtB)
call espSend
jr .txtE
.txtB
db Text
.txtE
ENDM
MACRO EspCmd Text
ld hl, .txtB
ld e, (.txtE - .txtB)
call espSend
jr .txtE
.txtB
db Text
db 13, 10
.txtE
ENDM
MACRO EspCmdOkErr text... |
libsrc/_DEVELOPMENT/arch/zxn/esxdos/c/sccz80/esx_m_tapein_info_callee.asm | jpoikela/z88dk | 640 | 50724 | <reponame>jpoikela/z88dk
; unsigned char esx_m_tapein_info(uint8_t *drive,unsigned char *filename)
SECTION code_esxdos
PUBLIC esx_m_tapein_info_callee
EXTERN asm_esx_m_tapein_info
esx_m_tapein_info_callee:
pop af
pop hl
pop de
push af
jp asm_esx_m_tapein_info
; SDCC bridge for Classic
IF __CLASSIC... |
Transynther/x86/_processed/US/_zr_/i3-7100_9_0x84_notsx.log_66_1223.asm | ljhsiun2/medusa | 9 | 50725 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r15
push %r8
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x89b3, %r14
nop
nop
nop
nop
sub $37153, %rcx
movups (%r14), %xmm6
vpextrq $0, %xmm6, %r15
nop
nop
nop
nop
nop
xor $13594, %r8
lea addresses_D_ht+0x1b273, %r13
nop
dec... |
libsrc/_DEVELOPMENT/arch/zx/bifrost_h/c/sdcc/BIFROSTH_getTile_callee.asm | teknoplop/z88dk | 0 | 50726 | ; ----------------------------------------------------------------
; Z88DK INTERFACE LIBRARY FOR THE BIFROST* ENGINE - RELEASE 1.2/L
;
; See "bifrost_h.h" for further details
; ----------------------------------------------------------------
; unsigned char BIFROSTH_getTile(unsigned int px,unsigned int py)
; callee
S... |
app/src/main/cpp/ffmpeg-3.4.2/libavutil/x86/x86util.asm | Xiao-ShaBi/ffpeg-android | 3 | 50727 | <filename>app/src/main/cpp/ffmpeg-3.4.2/libavutil/x86/x86util.asm<gh_stars>1-10
;*****************************************************************************
;* x86util.asm
;*****************************************************************************
;* Copyright (C) 2008-2010 x264 project
;*
;* Authors: <NAME> <<EMA... |
sys/gold/sgcp0.asm | olifink/smsqe | 0 | 50728 | <reponame>olifink/smsqe<filename>sys/gold/sgcp0.asm<gh_stars>0
; SuperGoldCard exception handler patches. Deciphered by <NAME>
section sgc
xdef sgc_privv
xdef sgc_8049_rte
xdef sgc_ser_sched
include 'dev8_keys_qdos_sms'
include 'dev8_keys_jcbq'
include 'dev8_sys_gold_keys'
; Priviledge violation emulator
pri... |
libsrc/_DEVELOPMENT/math/float/am9511/z80/am32_lmod.asm | moneytech/z88dk | 0 | 50729 | <reponame>moneytech/z88dk
;
; Copyright (c) 2020 <NAME>
;
; 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/.
;
; feilipu, August 2020
;
;------------------------------... |
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca.log_21829_103.asm | ljhsiun2/medusa | 9 | 50730 | <filename>Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca.log_21829_103.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r8
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x1b011, %r8
nop
nop
nop
nop
nop
add %r12, %r12
vmovups (%r8), %ymm1
vext... |
programs/oeis/000/A000930.asm | karttu/loda | 0 | 50731 | ; A000930: Narayana's cows sequence: a(0) = a(1) = a(2) = 1; thereafter a(n) = a(n-1) + a(n-3).
; 1,1,1,2,3,4,6,9,13,19,28,41,60,88,129,189,277,406,595,872,1278,1873,2745,4023,5896,8641,12664,18560,27201,39865,58425,85626,125491,183916,269542,395033,578949,848491,1243524,1822473,2670964,3914488,5736961,8407925,12322413... |
routines/drawField.asm | PeterTillema/Age-Of-CEmpires-I | 20 | 50732 | relocate DrawField, cursorImage, 1024
DrawField:
DrawIsometricTile.copy
ld hl, DrawIsometricTile
ld (TileDrawingRoutinePtr1), hl
ld (TileDrawingRoutinePtr2), hl
ld hl, TilePointersEnd - 3
ld (TilePointersSMC), hl
ld hl, add_iy_sp_lea_de_iy
ld (DrawTile_Clipped_Stop1), hl
ld (DrawTile_Clipped_Stop2), hl
ld ... |
fx/petscii/sqrfade.asm | FolkertVanVerseveld/c64 | 1 | 50735 | <gh_stars>1-10
.pc = $0801 "Basic Upstart Program"
:BasicUpstart($0810)
.pc = $0810 "Main Program"
.const screen = $0400
.const colram = $d800
.const sidbase = $d400
/* init */
// make sure we enter known processor state
cld
lda #%00110111 // #$37 is default memory map
sta $1 // datasette off, I/O at ... |
libsrc/newbrain/break_status.asm | meesokim/z88dk | 0 | 50736 | ;
; Grundy Newbrain Specific libraries
;
; <NAME> - 30/03/2007
;
;
; Check if user pressed BREAK
; 1 if BREAK, otherwise 0
;
;
;
; $Id: break_status.asm,v 1.3 2015/01/19 01:33:00 pauloscustodio Exp $
;
PUBLIC break_status
.break_status
rst 20h
defb 36h
ld hl,1
ret c
dec hl
ret
|
programs/oeis/026/A026603.asm | jmorken/loda | 1 | 50737 | ; A026603: Numbers n such that s(n) = 3, where s = A026600.
; 3,5,7,11,13,18,19,24,26,29,31,36,37,42,44,48,50,52,55,60,62,66,68,70,74,76,81,83,85,90,91,96,98,102,104,106,109,114,116,120,122,124,128,130,135,138,140,142,146,148,153,154,159,161
mov $2,$0
mov $3,1
lpb $0
add $3,$0
div $0,3
lpe
mul $3,5
lpb $3
mod $3... |
audio/sfx/cut_3.asm | opiter09/ASM-Machina | 1 | 50738 | <filename>audio/sfx/cut_3.asm<gh_stars>1-10
SFX_Cut_3_Ch8:
noise_note 2, 15, 7, 36
noise_note 2, 15, 7, 52
noise_note 4, 15, 7, 68
noise_note 8, 15, 4, 85
noise_note 8, 15, 1, 68
sound_ret
|
programs/oeis/040/A040413.asm | neoneye/loda | 22 | 50740 | ; A040413: Continued fraction for sqrt(434).
; 20,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1,40,1,4,1
seq $0,40304 ; Continued fraction for sqrt(322).
dif $0,4
mul $0,6
div $0,5
|
programs/oeis/055/A055958.asm | jmorken/loda | 1 | 50741 | ; A055958: a(n) = n + reversal of base 9 digits of n (written in base 10).
; 0,2,4,6,8,10,12,14,16,10,20,30,40,50,60,70,80,90,20,30,40,50,60,70,80,90,100,30,40,50,60,70,80,90,100,110,40,50,60,70,80,90,100,110,120,50,60,70,80,90,100,110,120,130,60,70,80,90,100,110,120,130,140,70,80,90,100,110,120,130,140,150,80,90,100,1... |
programs/oeis/172/A172085.asm | neoneye/loda | 22 | 50743 | ; A172085: a(n) = n*(27*n^3 + 22*n^2 - 21*n - 16)/12.
; 0,1,41,212,660,1585,3241,5936,10032,15945,24145,35156,49556,67977,91105,119680,154496,196401,246297,305140,373940,453761,545721,650992,770800,906425,1059201,1230516,1421812,1634585,1870385,2130816,2417536,2732257,3076745,3452820,3862356,4307281,4789577,5311280,587... |
iod/con2/ptr/io.asm | olifink/smsqe | 0 | 50744 | * Pointer IO intercept V1.09 1985 <NAME> QJUMP
*
* 2003-02-16 1.08 bugfix (WL)
* 2005-11-16 1.09 calls new background I/O handler (MK)
*
section driver
*
xdef pt_io
xdef pt_hides
xdef io_tstw
xdef pt_do_con ; expose internal points to bgio
xdef pti_do
xdef pti_hide
*
xref.l pt.vers
xref cn_io
xref pt... |
Build/Interpreters/beebOzmoo/asm/zmachine.asm | polluks/Puddle-BuildTools | 38 | 50745 | ; z_extended_opcode !byte 0
; z_operand_count !byte 0
; z_operand_type_arr !byte 0, 0, 0, 0, 0, 0, 0, 0
; z_operand_value_high_arr !byte 0, 0, 0, 0, 0, 0, 0, 0
; z_operand_value_low_arr !byte 0, 0, 0, 0, 0, 0, 0, 0
; z_local_var_count !byte 0
; z_temp !byte 0, 0, 0, 0, 0
z_rnd_a !byte 123
z_rnd_b ... |
programs/oeis/267/A267880.asm | jmorken/loda | 1 | 50747 | <gh_stars>1-10
; A267880: Decimal representation of the middle column of the "Rule 233" elementary cellular automaton starting with a single ON (black) cell.
; 1,2,5,10,21,43,87,175,351,703,1407,2815,5631,11263,22527,45055,90111,180223,360447,720895,1441791,2883583,5767167,11534335,23068671,46137343,92274687,184549375,... |
src/lib/app/entry.asm | DreamPearl/FuzzyOS | 10 | 50748 | ; All user application entry point
[BITS 32]
extern main
extern exit
[SECTION .text]
_start:
call main ; return value should be in eax
push eax
call exit ; process should be unallocated before returning from exit
|
boot/init/a64/start.asm | Tiihala/Dancy | 11 | 50749 | ;;
;; Copyright (c) 2018, 2019, 2020 <NAME>
;;
;; Permission to use, copy, modify, and/or distribute this software for any
;; purpose with or without fee is hereby granted, provided that the above
;; copyright notice and this permission notice appear in all copies.
;;
;; THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR ... |
programs/oeis/000/A000539.asm | neoneye/loda | 22 | 50750 | ; A000539: Sum of 5th powers: 0^5 + 1^5 + 2^5 + ... + n^5.
; 0,1,33,276,1300,4425,12201,29008,61776,120825,220825,381876,630708,1002001,1539825,2299200,3347776,4767633,6657201,9133300,12333300,16417401,21571033,28007376,35970000,45735625,57617001,71965908,89176276,109687425,133987425,162616576,196171008,235306401,28074... |
bdshemu_test/basic/test_64_basic03.asm | andreaswimmer/bddisasm | 1 | 50752 | <gh_stars>1-10
bits 64
lea rbp, [rel _xxx]
mov eax, dword [rbp - 4 + 0x100]
mov eax, dword [rbp - 3 + 0x100]
retn
_xxx: |
libsrc/malloc/calloc_callee.asm | dex4er/deb-z88dk | 1 | 50753 | ; void __CALLEE__ *calloc_callee(unsigned int nobj, unsigned int size)
; 12.2006 aralbrec
XLIB calloc_callee
XREF ASMDISP_CALLOC_CALLEE
LIB HeapCalloc_callee
XREF _heap, ASMDISP_HEAPCALLOC_CALLEE
.calloc
pop hl
pop de
ex (sp),hl
.asmentry
; enter : hl = number of objects
; de = size of each obje... |
programs/oeis/308/A308807.asm | neoneye/loda | 22 | 50754 | <reponame>neoneye/loda
; A308807: a(n) = 4*5^(n-1) + n.
; 5,22,103,504,2505,12506,62507,312508,1562509,7812510,39062511,195312512,976562513,4882812514,24414062515,122070312516,610351562517,3051757812518,15258789062519,76293945312520,381469726562521,1907348632812522,9536743164062523,47683715820312524,238418579101562525,... |
programs/oeis/006/A006355.asm | karttu/loda | 0 | 50755 | ; A006355: Number of binary vectors of length n containing no singletons.
; 1,0,2,2,4,6,10,16,26,42,68,110,178,288,466,754,1220,1974,3194,5168,8362,13530,21892,35422,57314,92736,150050,242786,392836,635622,1028458,1664080,2692538,4356618,7049156,11405774,18454930,29860704,48315634,78176338,126491972,204668310,331160282... |
scripts_br/text.asm | hansbonini/smd_beyondoasis | 2 | 50756 | origin $003E0000 // Translation
text_dialogues:
dw (text_0001-tbl_base)
dw (text_0002-tbl_base)-2
dw (text_0003-tbl_base)-4
dw (text_0004-tbl_base)-6
dw (text_0005-tbl_base)-8
dw (text_0006-tbl_base)-10
dw (text_0007-tbl_base)-12
dw (text_0008-tbl_base)-14
dw (text_0009-tbl_base)-16
dw (... |
programs/oeis/185/A185870.asm | karttu/loda | 0 | 50757 | ; A185870: (Even,odd)-polka dot array in the natural number array A000027, by antidiagonals.
; 3,8,10,17,19,21,30,32,34,36,47,49,51,53,55,68,70,72,74,76,78,93,95,97,99,101,103,105,122,124,126,128,130,132,134,136,155,157,159,161,163,165,167,169,171,192,194,196,198,200,202,204,206,208,210,233,235,237,239,241,243,245,247,... |
programs/oeis/134/A134986.asm | neoneye/loda | 22 | 50758 | <reponame>neoneye/loda<gh_stars>10-100
; A134986: a(n) = smallest integer m not equal to n such that n = (floor(n^2/m) + m)/2.
; 2,3,2,3,4,5,5,6,7,8,9,10,10,11,12,13,14,15,16,17,17,18,19,20,21,22,23,24,25,26,26,27,28,29,30,31,32,33,34,35,36,37,37,38,39,40,41,42,43,44,45,46,47,48,49,50,50,51,52,53,54,55,56,57,58,59,60,6... |
x86/Thread.asm | lucabrivio/asmFish-fasmg | 1 | 50759 | <reponame>lucabrivio/asmFish-fasmg<gh_stars>1-10
ThreadIdxToNode:
; in: ecx index (n) of thread
; out: rax address of numa noda
mov r8d, dword[threadPool.coreCnt]
mov r9d, dword[threadPool.nodeCnt]
lea r10, [threadPool.nodeTable]
mov... |
oeis/100/A100242.asm | neoneye/loda-programs | 11 | 50760 | <filename>oeis/100/A100242.asm<gh_stars>10-100
; A100242: a(n) = n^5 - n^2*(n^2 - 1)/2.
; 0,1,26,207,904,2825,7146,15631,30752,55809,95050,153791,238536,357097,518714,734175,1015936,1378241,1837242,2411119,3120200,3987081,5036746,6296687,7797024,9570625,11653226,14083551,16903432,20157929,23895450,28167871,33030656,385... |
oeis/130/A130578.asm | neoneye/loda-programs | 11 | 50761 | <reponame>neoneye/loda-programs
; A130578: Number of different possible rows (or columns) in an n X n crossword puzzle.
; Submitted by <NAME>(s2)
; 0,0,1,3,6,10,16,26,43,71,116,188,304,492,797,1291,2090,3382,5472,8854,14327,23183,37512,60696,98208,158904,257113,416019,673134,1089154,1762288,2851442,4613731,7465175,1207... |
examples/graphics/sin/sin.asm | leonardo-ono/asm4mo | 10 | 50762 | ; Sine Table
; Demo for asm4mo (https://github.com/leonardo-ono/asm4mo/)
; Written by <NAME> (<EMAIL>)
; 13/02/2012 14:13
; Use: asm sin.asm sin.bin
jmp short start
varX dw 0
varX2 dw 0
varY dw 0
varYS dw 0
start:
mov al, 13h ; graphic mode
call changeVideo
nextX:
mov dx, 3
mov ax, [var... |
oeis/135/A135095.asm | neoneye/loda-programs | 11 | 50763 | ; A135095: a(1)=1, a(n) = a(n-1) + n^5 if n odd, a(n) = a(n-1) + n^2 if n is even.
; Submitted by <NAME>(s2)
; 1,5,248,264,3389,3425,20232,20296,79345,79445,240496,240640,611933,612129,1371504,1371760,2791617,2791941,5268040,5268440,9352541,9353025,15789368,15789944,25555569,25556245,39905152,39905936,60417085,60417985... |
oeis/027/A027815.asm | neoneye/loda-programs | 11 | 50764 | ; A027815: a(n) = 42*(n+1) * binomial(n+5,10).
; 252,3234,22176,108108,420420,1387386,4036032,10618608,25729704,58198140,124156032,251839224,488864376,912964668,1647455040,2883046320,4908043140,8149451310,13228094880,21031510500,32809156380,50295355110,75866394240,112739346720,165221456400,239020373592,341627134464,482... |
oeis/179/A179888.asm | neoneye/loda-programs | 11 | 50765 | ; A179888: Starting with a(1)=2: if m is a term then also 4*m+1 and 4*m+2.
; Submitted by <NAME>
; 2,9,10,37,38,41,42,149,150,153,154,165,166,169,170,597,598,601,602,613,614,617,618,661,662,665,666,677,678,681,682,2389,2390,2393,2394,2405,2406,2409,2410,2453,2454,2457,2458,2469,2470,2473,2474,2645,2646,2649,2650,2661,2... |
Library/Spreadsheet/Spreadsheet/spreadsheetFormatMethods.asm | steakknife/pcgeos | 504 | 50767 |
COMMENT @-----------------------------------------------------------------------
Copyright (c) Geoworks 1991 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE:
AUTHOR: Cheng, 3/91
ROUTINES:
Name Description
---- -----------
(MSG_SPREADSHEET_...)
GET_FORMAT_COUNT
ADD_FORMAT
DELET... |
programs/oeis/051/A051947.asm | neoneye/loda | 22 | 50769 | <reponame>neoneye/loda
; A051947: Partial sums of A034263.
; 1,10,49,168,462,1092,2310,4488,8151,14014,23023,36400,55692,82824,120156,170544,237405,324786,437437,580888,761530,986700,1264770,1605240,2018835,2517606,3115035,3826144,4667608,5657872,6817272,8168160,9735033,11544666
mov $2,$0
add $0,4
bin $0,$2
mov $1,$2
... |
programs/oeis/202/A202750.asm | karttu/loda | 0 | 50773 | ; A202750: Triangle T(n,k) = binomial(n,k)^4 read by rows, 0<=k<=n.
; 1,1,1,1,16,1,1,81,81,1,1,256,1296,256,1,1,625,10000,10000,625,1,1,1296,50625,160000,50625,1296,1,1,2401,194481,1500625,1500625,194481,2401,1,1,4096,614656,9834496,24010000,9834496,614656,4096,1,1,6561,1679616,49787136,252047376,252047376,49787136,167... |
MMC3/mmc3_code.asm | Crawlerop/VRT-SDK | 0 | 50774 | .define A12_INVERT $80
.segment "ZEROPAGE"
;A12_INVERT: .res 1
BP_BANK_8000: .res 1
BP_BANK_A000: .res 1
mmc3_8000_PRG: .res 1
mmc3_8001_PRG: .res 1
mmc3_8000_CHR: .res 1
mmc3_8001_CHR: .res 1
mmc3_ptr: .res 2 ; array for the irq parser
mmc3_index: .res 1 ; index to this array
irq_done: .res 1
;... |
programs/oeis/219/A219395.asm | jmorken/loda | 1 | 50775 | <gh_stars>1-10
; A219395: Numbers k such that 18*k+1 is a square.
; 0,16,20,68,76,156,168,280,296,440,460,636,660,868,896,1136,1168,1440,1476,1780,1820,2156,2200,2568,2616,3016,3068,3500,3556,4020,4080,4576,4640,5168,5236,5796,5868,6460,6536,7160,7240,7896,7980,8668,8756,9476,9568,10320,10416,11200,11300,12116,12220,13... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_1512.asm | ljhsiun2/medusa | 9 | 50776 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r14
push %r15
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x19a5c, %r15
nop
nop
nop
cmp $34337, %rax
mov (%r15), %r14w
nop
nop
nop
nop
cmp %r10, %r10
lea addresses_UC_ht+0x3da8, %rbp
nop
nop
nop
sub $55168, %rsi
mov (%rbp),... |
programs/oeis/113/A113680.asm | neoneye/loda | 22 | 50777 | <filename>programs/oeis/113/A113680.asm<gh_stars>10-100
; A113680: Riordan array ((1-x-2x^2)/(1-x),x).
; 1,0,1,-2,0,1,-2,-2,0,1,-2,-2,-2,0,1,-2,-2,-2,-2,0,1,-2,-2,-2,-2,-2,0,1,-2,-2,-2,-2,-2,-2,0,1,-2,-2,-2,-2,-2,-2,-2,0,1,-2,-2,-2,-2,-2,-2,-2,-2,0,1,-2,-2,-2,-2,-2,-2,-2,-2,-2,0,1,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,0,1,-2,-... |
libsrc/spectrum/ulaplus/ula_sync.asm | andydansby/z88dk-mk2 | 1 | 50779 | <reponame>andydansby/z88dk-mk2<gh_stars>1-10
;
; ZX Spectrum specific routines
; by <NAME>, MAR 2010
;
; int ula_sync();
;
; Wait for the next video frame
; clock
;
; $Id: ula_sync.asm,v 1.1 2010/04/02 09:05:06 stefano Exp $
;
XLIB ula_sync
ula_sync:
; Sync to avoid screen flickering
ld a,($5C78)
ld e,a
videosync... |
smsq/java/driver/mouse.asm | olifink/smsqe | 0 | 50780 | <reponame>olifink/smsqe
; SMSQmulator Mmuse Routine V1.01 (c) <NAME> 2012
; 1.01 handles mouse wheel
; this is called from the polling interrupt
; mouse button 1 (left) = 1
; mouse button 2 (right) = 2
; both left & right = 3
; middle button = 4
section mouse
xdef mse_poll
xref pt_button3
xref ioq_pbyt
inclu... |
programs/oeis/182/A182688.asm | jmorken/loda | 1 | 50781 | ; A182688: a(n) = the largest 1-digit number with exactly n divisors, a(n) = 0 if no such number exists.
; 1,7,9,8,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
mov $11,$0
mov $13,2
lpb $13
clr $0,11
mov $0,$11
sub $13,1
add $0,$13
sub $0,1
mov $6,1
mov $7,1
mov $10,$0
add $... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_897.asm | ljhsiun2/medusa | 9 | 50782 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r8
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x1ac51, %rdi
nop
nop
nop
nop
nop
xor %rdx, %rdx
mov $0x6162636465666768, %rbp
movq %rbp, (%rdi)
nop
add %rbp, %rbp
lea addresses_normal_ht+0x11e25... |
src/third_party/nasm/travis/test/binexe.asm | Mr-Sheep/naiveproxy | 2,219 | 50783 | <filename>src/third_party/nasm/travis/test/binexe.asm
; Demonstration of how to write an entire .EXE format program by using
; the `exebin.mac' macro package.
; To build:
; nasm -fbin binexe.asm -o binexe.exe -ipath
; (where `path' is such as to allow the %include directive to find
; exebin.mac)
; To test:
; bine... |
programs/oeis/192/A192245.asm | karttu/loda | 0 | 50784 | <reponame>karttu/loda
; A192245: 1-sequence of reduction of triangular number sequence by x^2 -> x+1.
; 0,3,9,29,74,179,403,871,1816,3686,7316,14258,27362,51827,97067,180027,331038,604125,1095085,1973095,3535810,6305148,11193384,19790484,34860084,61193859,107080413,186826121,325073906,564190391
mov $21,$0
mov $23,$0
l... |
x86-Win-NASM/src/Numbers/increasing_sequence.asm | gramai/school-related | 0 | 50785 | <filename>x86-Win-NASM/src/Numbers/increasing_sequence.asm
;English
;Find the number of increasing sequences of a table and print them.
;French
;Trouvez le nombre de séquences croissantes à partir d'un tableau et imprimez-les.
org 100h
include "emu8086.inc"
.data
:
arr dw 2,3,5,1,7,2,5,9,10,1
; W... |
programs/tests/shl.asm | rj45/rj32 | 28 | 50787 | <reponame>rj45/rj32<gh_stars>10-100
#include "../cpudef.asm"
move r1, 0b011
move r2, 0
move r3, 1
move r4, 2
shl r1, 0
if.ne r1, 0b011
error
shl r1, r2
if.ne r1, 0b011
error
shl r1, 1
if.ne r1, 0b110
error
shl r1, r3
if.ne r1, 0b1100
error
move r1, 0b011
shl r1, 2
if.ne r1, 0b1100
error
move r1, ... |
variapatches/seed_display.asm | strotlog/SMBasepatch | 0 | 50788 | arch snes.cpu
lorom
// Inject new menu graphic data after decompression
org $82ecbb
jsr $f900
org $82f900
pha
phx
php
rep #$30
lda $dfff00
and #$001f
asl
asl
asl
tay
ldx #$0000
-
lda WordTable, y
and #$00ff
asl
phx
tax
lda CharT... |
libsrc/strings/strtok.asm | meesokim/z88dk | 0 | 50789 | <reponame>meesokim/z88dk<gh_stars>0
; CALLER linkage for function pointers
PUBLIC strtok
EXTERN strtok_callee
EXTERN ASMDISP_STRTOK_CALLEE
.strtok
pop af
pop de
pop hl
push hl
push de
push af
jp strtok_callee + ASMDISP_STRTOK_CALLEE
|
Cameras/Ace Combat 7/InjectableGenericCameraSystem/Interceptor.asm | zanzo420/IGCS-GITC | 1 | 50790 | ;////////////////////////////////////////////////////////////////////////////////////////////////////////
;// Part of Injectable Generic Camera System
;// Copyright(c) 2017, <NAME>
;// All rights reserved.
;// https://github.com/FransBouma/InjectableGenericCameraSystem
;//
;// Redistribution and use in source and binar... |
external/source/shellcode/windows/x64/src/migrate/apc.asm | OsmanDere/metasploit-framework | 26,932 | 50791 | <reponame>OsmanDere/metasploit-framework
;-----------------------------------------------------------------------------;
; Author: <NAME> (stephen_fewer[at]harmonysecurity[dot]com)
; Compatible: Windows 7, 2008, Vista, 2003, XP, 2000, NT4
; Architecture: x64
; Version: 2.0 (March 2010)
; Size: 323 bytes
; Build: ... |
programs/oeis/269/A269304.asm | neoneye/loda | 22 | 50792 | ; A269304: a(n) = n + n/gpf(n) + 1, where gpf(n) is the greatest prime factor of n or 1 if n = 1.
; 3,4,5,7,7,9,9,13,13,13,13,17,15,17,19,25,19,25,21,25,25,25,25,33,31,29,37,33,31,37,33,49,37,37,41,49,39,41,43,49,43,49,45,49,55,49,49,65,57,61,55,57,55,73,61,65,61,61,61,73,63,65,73,97,71,73,69,73,73,81,73,97,75,77,91,81... |
nes-test-roms/tutor/tutor.asm | joebentley/ones | 1,461 | 50793 | <reponame>joebentley/ones
; iNES header
; iNES identifier
.byte "NES",$1a
; Number of PRG-ROM blocks
.byte $01
; Number of CHR-ROM blocks
.byte $01
; ROM control bytes: Horizontal mirroring, no SRAM
; or trainer, Mapper #0
.byte $00, $00
; Filler
.byte $00,$00,$00,$00,$00,$00,$00,$00
; PRG-ROM
.include "tutorprg... |
oeis/214/A214080.asm | neoneye/loda-programs | 11 | 50794 | ; A214080: a(n) = (floor(sqrt(n)))!
; Submitted by <NAME>
; 1,1,1,1,2,2,2,2,2,6,6,6,6,6,6,6,24,24,24,24,24,24,24,24,24,120,120,120,120,120,120,120,120,120,120,120,720,720,720,720,720,720,720,720,720,720,720,720,720,5040,5040,5040,5040,5040,5040,5040,5040,5040,5040,5040,5040,5040,5040,5040,40320,40320,40320,40320,40320,... |
Kernel/asm/libasm.asm | Matuteale/tp2-so-2016 | 0 | 50795 | GLOBAL set_interrupts
GLOBAL int_21_hand
GLOBAL int_20_hand
GLOBAL int_80_hand
GLOBAL mascaraPIC1,mascaraPIC2
GLOBAL write_byte_to_port_0x70
GLOBAL write_byte_to_port_0x71
GLOBAL read_byte_from_port_0x71
GLOBAL play_sound_asm
GLOBAL stop_sound_asm
GLOBAL yield
GLOBAL outb
GLOBAL inb
GLOBAL clear_interrupts
GLOBAL userT... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.