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 |
|---|---|---|---|---|
bootblock.asm | Abishek15592/XV6 | 0 | 47956 | <filename>bootblock.asm
bootblock.o: file format elf32-i386
Disassembly of section .text:
00007c00 <start>:
#define CR0_PE 1 // protected mode enable bit
.code16 # Assemble for 16-bit mode
.globl start
start:
cli # Disable interrupts
7c00: fa ... |
oeis/154/A154626.asm | neoneye/loda-programs | 11 | 47957 | <filename>oeis/154/A154626.asm
; A154626: a(n) = 2^n*A001519(n).
; 1,2,8,40,208,1088,5696,29824,156160,817664,4281344,22417408,117379072,614604800,3218112512,16850255872,88229085184,461973487616,2418924584960,12665653559296,66318223015936,347246723858432,1818207451086848,9520257811087360,49848717062176768,2610112711287... |
misc/asm/asm.asm | Pebaz/glop | 3 | 47958 | <filename>misc/asm/asm.asm<gh_stars>1-10
include 'ebc.inc'
include 'efi.inc'
include 'format.inc'
include 'utf8.inc'
format peebc efi ; PE executable format, EFI Byte Code
entry efi_main
;; This is for all the assembly for the whole program
section 'CODE' code executable readable
macro ASMCALL routine_name
STO... |
tasks/stack/push_pop.asm | yds12/x86-roadmap | 15 | 47959 | <filename>tasks/stack/push_pop.asm
; This program uses the stack to push and pop some values and registers.
section .text
global asm_func
asm_func:
mov ax, 0xffbb ; we can push 16-bit values
push ax
mov rax, 10_000_000_000 ; 64-bit values (default)
push rax
push word 300 ; also ... |
oeis/098/A098205.asm | neoneye/loda-programs | 11 | 47960 | ; A098205: A first order iteration: n-th term is obtained from (n-1)-th by adding n-th prime and then multiplying by the n-th prime; initial value is 0.
; Submitted by <NAME>
; 0,9,70,539,6050,78819,1340212,25464389,585681476,16984763645,526527673956,19481523937741,798742481449062,34345926702311515,1614258555008643414,... |
Games/banchorce/source/boss3.asm | CiaranGruber/Ti-84-Calculator | 1 | 47961 | ;---------------------------------------------------------------;
; ;
; Banchor ;
; Wendeg Demon Routines ;
; ... |
oeis/041/A041547.asm | neoneye/loda-programs | 11 | 47962 | <filename>oeis/041/A041547.asm
; A041547: Denominators of continued fraction convergents to sqrt(291).
; Submitted by <NAME>(s1.)
; 1,17,579,9860,335819,5718783,194774441,3316884280,112968839961,1923787163617,65521732402939,1115793238013580,38002491824864659,647158154260712783,22041379736689099281,375350613677975400560... |
assembler/tests/t_960/t_960.asm | paulscottrobson/RCA-Cosmac-VIP-III | 1 | 47963 | cpu 80960
org 0
fpu on
supmode on
start:
flushreg
fmark
mark
ret
syncf
faultno
faultg
faulte
faultge
faultl
faultne
faultle
faulto
addc r3,r4,r5 ; lokale Register
addc g3,g4,g5 ; globale Register
addc g3,g5 ; impl. src2=dest
addc 10,r4,g10 ; src1 immediate
addc g2,20,g4 ; src2 immediate
addr... |
src/PJ/drivekit/lib/loader/rexentry.asm | AnimatorPro/Animator-Pro | 119 | 47964 | <reponame>AnimatorPro/Animator-Pro<filename>src/PJ/drivekit/lib/loader/rexentry.asm
include rexentry.i
EXTRN rexlib_header:WORD
EXTRN _end:WORD
DGROUP group _data
assume cs:_rexlib_entry_segment,ds:DGROUP
_rexlib_entry_segment segment para public use32 'code'
public _start_
_start_ proc near ; Th... |
oeis/121/A121720.asm | neoneye/loda-programs | 11 | 47965 | ; A121720: a(n)= 4*a(n-2) -2*a(n-4).
; Submitted by <NAME>(s2)
; 0,1,1,3,4,10,14,34,48,116,164,396,560,1352,1912,4616,6528,15760,22288,53808,76096,183712,259808,627232,887040,2141504,3028544,7311552,10340096,24963200,35303296,85229696,120532992,290992384,411525376,993510144,1405035520
mov $3,1
lpb $0
mov $2,$3
add... |
programs/oeis/183/A183217.asm | karttu/loda | 0 | 47967 | <reponame>karttu/loda
; A183217: Complement of the pentagonal numbers.
; 2,3,4,6,7,8,9,10,11,13,14,15,16,17,18,19,20,21,23,24,25,26,27,28,29,30,31,32,33,34,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,93... |
cipher/aes/aes-aesni.asm | jfehren/Crypto | 0 | 47968 | <filename>cipher/aes/aes-aesni.asm
.file "aes-aesni.asm"
.text
.macro AES128_EXPAND rcon, off
vaeskeygenassist $\rcon, %xmm0, %xmm1
pshufd $0xFF, %xmm1
vpslldq $0x04, %xmm0, %xmm2
pxor %xmm2, %xmm0
pslldq $0x04, %xmm2
pxor %xmm2, %xmm0
pslldq $0x04, %xmm2
pxor %xmm2, %xmm0
pxor %xmm... |
Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xca.log_21829_1440.asm | ljhsiun2/medusa | 9 | 47970 | <filename>Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xca.log_21829_1440.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r8
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x1ef76, %rsi
lea addresses_normal_ht+0x14bf6, %rdi
nop
nop
xor %r12, %r12
mov $1,... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_1439.asm | ljhsiun2/medusa | 9 | 47971 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r14
push %r15
push %r8
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0xe137, %rsi
lea addresses_WT_ht+0xdfa5, %rdi
cmp %r8, %r8
mov $53, %rcx
rep movsl
xor $40747, %rsi
lea addresses_D_ht+0xf451, %r14
nop
inc %rcx
mov (%r14), %eax
nop
nop
nop
no... |
log.asm | zspace/PIC16F1-USB-Bootloader | 42 | 47973 | <gh_stars>10-100
; vim:noet:sw=8:ts=8:ai:syn=pic
;
; USB 512-Word CDC Bootloader for PIC16(L)F1454/5/9
; Copyright (c) 2015, <NAME> (<EMAIL>)
; v1.0, February 12, 2015
; Released under a 3-clause BSD license: see the accompanying LICENSE file.
;
; Minimal, low-latency UART logging system.
; Uses a 256-byte circular buf... |
tests/test2.asm | felix-hoenikker/masm | 25 | 47974 | start: addi $s0, $zero, 42
andi $s1, $zero, 42
ori $s3, $zero, 42
beq $s0, $zero, crash
bne $s0, $s1, burn
bne $s0, $s2, crash
sw $s0, 0($s0)
lw $s3, 0($s0)
bne $s0, $s3, burn
jal pool_on_the_roof
add $t0, $zero, $s1
and $t0, $t0, $s0
or $t0, $t0, $s0
sll $t0, $t0, 5
srl $t0, $t0, ... |
src/libcopse/context/make_arm_aapcs_pe_armasm.asm | johnzachary/copse | 0 | 47976 | ;/*
; Copyright <NAME> 2009.
; Distributed under the Boost Software License, Version 1.0.
; (See accompanying file LICENSE_1_0.txt or copy at
; http://www.boost.org/LICENSE_1_0.txt)
;*/
;/*******************************************************************
; * ... |
oeis/128/A128064.asm | neoneye/loda-programs | 11 | 47977 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A128064: Triangle T with T(n,n)=n, T(n,n-1)=-(n-1) and otherwise T(n,k)=0; 0<k<=n.
; Submitted by <NAME>
; 1,-1,2,0,-2,3,0,0,-3,4,0,0,0,-4,5,0,0,0,0,-5,6,0,0,0,0,0,-6,7,0,0,0,0,0,0,-7,8,0,0,0,0,0,0,0,-8,9,0,0,0,0,0,0,0,0,-9,10,0,0,0,0,0,0,0,0,0,-10,11,0,0,0,0,0,0,0,0,0,... |
Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xa0.log_1_847.asm | ljhsiun2/medusa | 9 | 47978 | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r8
push %r9
push %rbp
push %rbx
push %rdx
push %rsi
// Store
lea addresses_normal+0x3583, %r9
nop
nop
nop
nop
nop
cmp $40226, %r11
movw $0x5152, (%r9)
nop
sub $30780, %rdx
// Store
lea addresses_US+0x17903, %r11... |
reset_time.nasm | SpacePlant/slae32 | 0 | 47979 | <gh_stars>0
global _start
section .text
_start:
; int stime(const time_t *t): syscall 0x19
; stime([0])
xor eax, eax ; eax = 0
push eax
mov ebx, esp ; ebx = [0]
mov al, 0x19 ; eax = 25
int 0x80 ; perform syscall
; void _exit(int status): syscall 0x1
; _exit... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_18115_145.asm | ljhsiun2/medusa | 9 | 47980 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_18115_145.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r14
push %r9
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0xb6f4, %rcx
xor %r9, %r9
mov $0x6162636465666768, %rbx
movq %rbx, (%rcx)
nop
nop
nop
... |
libsrc/_DEVELOPMENT/arch/sms/SMSlib/c/sccz80/UNSAFE_SMS_VRAMmemcpy64.asm | jpoikela/z88dk | 640 | 47981 | ; void UNSAFE_SMS_VRAMmemcpy64(unsigned int dst,void *src)
SECTION code_clib
SECTION code_SMSlib
PUBLIC UNSAFE_SMS_VRAMmemcpy64
EXTERN asm_SMSlib_UNSAFE_VRAMmemcpy64
UNSAFE_SMS_VRAMmemcpy64:
pop af
pop de
pop hl
push hl
push de
push af
jp asm_SMSlib_UNSAFE_VRAMmemcpy64
|
Transynther/x86/_processed/US/_st_un_sm_/i9-9900K_12_0xa0.log_21829_107.asm | ljhsiun2/medusa | 9 | 47982 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0xfee4, %rsi
lea addresses_WC_ht+0x15ce4, %rdi
clflush (%rsi)
nop
add $64403, %rbp
mov $16, %rcx
rep movsl
nop
nop
nop
cmp %rax, %rax
lea addresses_D_... |
Library/Mailbox/Outbox/outboxControlPanel.asm | steakknife/pcgeos | 504 | 47984 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1994 -- All Rights Reserved
PROJECT: Clavin
MODULE: Outbox
FILE: outboxControlPanel.asm
AUTHOR: <NAME>, May 26, 1994
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:
Name ... |
code/lab4_2.asm | CornPrincess/Assembly | 0 | 47985 | <gh_stars>0
assume cs:code
code segment
mov ax, code
mov ds, ax
mov ax, 0020h
mov es, ax
mov bx, 0
mov cx, 10
s: mov al, [bx]
mov es:[bx], al
inc bx
loop s
mov ax, 4c00h
int 21h
code ends
end |
libsrc/stdio/cpm/fgetc_cons.asm | meesokim/z88dk | 0 | 47987 | ;
; CPM Stdio
;
; getkey() Wait for keypress
;
; <NAME> - Apr. 2000
; <NAME> - Mar. 2004 - removed the BS trick
;
;
; $Id: fgetc_cons.asm,v 1.6 2015/01/19 01:33:20 pauloscustodio Exp $
;
PUBLIC fgetc_cons
.fgetc_cons
LD c,6
ld e,255
call 5
and a
jr z,fgetc_cons
ld l,a
ld h,0
ret
|
Scrolls/mem.asm | TerminalCursor/LogOS | 0 | 47990 | ; Copy eax length of memory at addess edx to address ecx
mem_cpy:
push eax
push edx
push ecx
_mem_cpy_loop:
push eax ; Save eax - length of remaining memory to copy
mov al, BYTE [edx] ; Get the source byte
mov BYTE [ecx], al ; Copy to destination
pop eax ; Restore length of remaining memory to copy
inc edx ... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_311_1208.asm | ljhsiun2/medusa | 9 | 47992 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %r15
push %r9
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x1ecc0, %rcx
nop
nop
add %r11, %r11
mov $0x6162636465666768, %r9
movq %r9, %xmm7
movups %xmm7, (%rcx)
nop
nop
nop
nop
add $39820, %r9
lea addresses_D_ht+0xfd4, %rsi
lea ad... |
exercises/exercise7/test8-2.asm | Dark15/assembly | 1 | 47994 | jmp near start
text: db '1',0x07,'+',0x07,'2',0x07,'+',0x07,'.',0x07,'.',0x07, \
'.',0x07,'+',0x07,'1',0x07,'0',0x07,'0',0x07,'0',0x07,'=',0x07
ten: dw 10
start:
mov ax, 0x7c0
mov ds, ax
mov ax, 0xb800
mov es, ax
cld
mov cx, ten - text
mov si, text
and di, 0
rep movsb
and ax, 0
and dx, 0
mo... |
oeis/022/A022035.asm | neoneye/loda-programs | 11 | 47995 | <reponame>neoneye/loda-programs
; A022035: Define the sequence T(a(0),a(1)) by a(n+2) is the greatest integer such that a(n+2)/a(n+1) < a(n+1)/a(n) for n >= 0. This is T(6,37).
; Submitted by <NAME>
; 6,37,228,1404,8645,53230,327753,2018073,12425877,76509828,471093813,2900665005,17860258910,109970936934,677123832923,41... |
Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2_notsx.log_21829_1274.asm | ljhsiun2/medusa | 9 | 47997 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r8
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x17002, %rsi
lea addresses_UC_ht+0x3b7c, %rdi
nop
nop
dec %r14
mov $66, %rcx
rep movsl
nop
nop
nop
nop
nop
inc %r8
lea addresses_WC_ht+0xf586, %rbp
clflush (%rbp)
nop
nop
nop
nop
and $2... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1532.asm | ljhsiun2/medusa | 9 | 47999 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1532.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %rax
push %rbp
push %rbx
push %rsi
lea addresses_D_ht+0x18606, %rsi
nop
nop
nop
xor $50439, %rbp
movups (%rsi), %xmm7
vpextrq $1, %xmm7,... |
hello.asm | page404/x32Assembler_ApiHook__Paint_CreateFileW | 0 | 48000 | .386 ;表示指令集,再往前就是 16位指令集了.
.model flat, stdcall ;model flat :表示内存模型为 flat stdcall:默认的调用约定,如果不在这里写,那么,每个函数我们都要自己写调用约定.
option casemap:none ;区分大小写,如果不写这一行,不区分大小写.
;-------这里的路径必须是 RadASM 32位 软件的安装目录下的 include 跟 lib,要不然生成不了 exe 文件
;--inc相关
include C:\RadASM\masm32\include\windows.inc
include C:\RadASM\masm32\includ... |
Borland/CBuilder5/Source/RTL/source/cstrings/wcschr.asm | TrevorDArcyEvans/DivingMagpieSoftware | 1 | 48002 | <reponame>TrevorDArcyEvans/DivingMagpieSoftware
;[]-----------------------------------------------------------------[]
;| WCSCHR.ASM -- scans a wide-character string for the first |
;| occurrence of a given wide-character |
;[]----------------------------------------------------------... |
oeis/291/A291745.asm | neoneye/loda-programs | 11 | 48003 | <filename>oeis/291/A291745.asm<gh_stars>10-100
; A291745: Nonprimes of the form 3*k + 1.
; Submitted by <NAME>(s2)
; 1,4,10,16,22,25,28,34,40,46,49,52,55,58,64,70,76,82,85,88,91,94,100,106,112,115,118,121,124,130,133,136,142,145,148,154,160,166,169,172,175,178,184,187,190,196,202,205,208,214,217,220,226,232,235,238,244... |
P5/P5_TestCode/P5_L1_testcase0/mips0.asm | alxzzhou/BUAA_CO_2020 | 1 | 48004 | ori $t0, $t0, 10
lui $t1, 6
addu $t2, $t0, $t1
nop
subu $t3, $t1, $t2
subu $t3, $t1, $t0 |
target/cos_117/disasm/iop_overlay1/STATINIT.asm | jrrk2/cray-sim | 49 | 48006 | <filename>target/cos_117/disasm/iop_overlay1/STATINIT.asm
0x0000 (0x000000) 0x2118- f:00020 d: 280 | A = OR[280]
0x0001 (0x000002) 0x1E00-0x0000 f:00017 d: 0 | A = A - 0 (0x0000)
0x0003 (0x000006) 0x8402- f:00102 d: 2 | P = P + 2 (0x0005), A = 0
0x0004 (0x000008) 0x70... |
Working Disassembly/Levels/Pachinko/Misc Object Data/Map - Platform.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 5 | 48007 | <gh_stars>1-10
dc.w word_4A1D8-Map_PachinkoPlatform
word_4A1D8: dc.w 2 ; DATA XREF: ROM:0004A1D6o
dc.b $F4, $E, 0, 0, $FF, $E0
dc.b $F4, $E, 8, 0, 0, 0
|
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1127.asm | ljhsiun2/medusa | 9 | 48008 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r15
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x1bac8, %rsi
clflush (%rsi)
nop
nop
nop
nop
nop
sub $2005, %rdx
movl $0x61626364, (%rsi)
sub $51579, %rdx
lea addresses_D_ht+0xb74c, %rbx
nop
nop
nop
nop
and $... |
asm/crunchyview.asm | michel-iwaniec/CrunchyNES | 1 | 48009 | JOY_A = %10000000
JOY_B = %01000000
JOY_SELECT = %00100000
JOY_START = %00010000
JOY_UP = %00001000
JOY_DOWN = %00000100
JOY_LEFT = %00000010
JOY_RIGHT = %00000001
... |
CPU/functions/uart/mips1.asm | SilenceX12138/MIPS-Microsystems | 55 | 48012 | <reponame>SilenceX12138/MIPS-Microsystems
#cal_set={add,sub,or,and,sll,sllv,srl,srlv}
#Timer 0x7f00-0x7f0b
#UART 0x7f10-0x7f2b
#Switch 0x7f2c-0x7f33
#LED 0x7f34-0x7f37
#Tube 0x7f38-0x7f3f
#Key <KEY>
.text
initial:
li $t0 0xfc01
mtc0 $t0, $12
li $t0,0x20000217
sw $t0, 0x7f38($0)
wait_data:
j wai... |
external/fasmg/source/windows/dll/fasmg.asm | hpdporg/datap | 1 | 48013 |
match ,{
include 'win32a.inc'
include 'localptr.inc'
} match -,{
else
include 'selfhost.inc'
end match
_ equ }
format PE large NX DLL
entry DllEntryPoint
include '../../version.inc'
struct MEMORY_REGION
address dd ?
size dd ?
ends
section '.text' code executable
include 'sys... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_8_364.asm | ljhsiun2/medusa | 9 | 48014 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x1ea3c, %rbx
nop
nop
nop
sub %r11, %r11
movb $0x61, (%rbx)
nop
nop
nop
cmp %rdx, %rdx
lea addresses_D_ht+0x4488, %rsi
lea addresses_normal_ht+0x7ea8, %rdi
nop
nop
and %rbp... |
HEXtoASCII.asm | Sahilsinggh/MP_SEM4 | 1 | 48015 | <reponame>Sahilsinggh/MP_SEM4
;# Prints the Contents of RAX register in HEX format
%macro print 2
mov rax,01d;
mov rdi,01d;
mov rsi,%1;
mov rdx,%2;
syscall;
%endmacro
%macro read 2
mov rax,00d;
mov rdi,00d;
mov rsi,%1;
mov rdx,%2;
syscall;
%endmacro
;___________________________... |
oeis/102/A102307.asm | neoneye/loda-programs | 11 | 48016 | ; A102307: a(n) = Fibonacci(2n+1) * binomial(2n,n).
; 1,4,30,260,2380,22428,215292,2093520,20553390,203280220,2022339176,20215564824,202879303900,2042865050800,20629119101400,208829908532880,2118554718825420,21533269718832300
mov $3,$0
add $3,$0
bin $3,$0
add $0,1
mov $2,$3
lpb $0
sub $0,1
sub $3,$2
sub $2,$3
lp... |
oeis/022/A022141.asm | neoneye/loda-programs | 11 | 48017 | ; A022141: Fibonacci sequence beginning 5, 17.
; Submitted by <NAME>(s4)
; 5,17,22,39,61,100,161,261,422,683,1105,1788,2893,4681,7574,12255,19829,32084,51913,83997,135910,219907,355817,575724,931541,1507265,2438806,3946071,6384877,10330948
mov $1,5
mov $2,12
lpb $0
sub $0,1
mov $3,$2
mov $2,$1
add $1,$3
lpe
mo... |
init.asm | jinsongwei/kernel_xv6 | 0 | 48018 |
_init: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
char *argv[] = { "sh", 0 };
int
main(void)
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 83 e4 f0 and $0xfffffff0,%esp
6: 83 ec 20 sub $0x20,%esp
int... |
dasm/text.asm | ceharris/sbz80 | 0 | 48019 | <reponame>ceharris/sbz80
name text
include defs.asm
cseg
;---------------------------------------------------------------
; i2str:
;
; Converts a decoded instruction to a string representation.
;
; On entry:
; IX -> instruction structure
; DE -> target buffer
;
; On return:
; DE = DE + length of s... |
challenge-commented.asm | KanegaeGabriel/synacor-challenge | 0 | 48020 | 0: noop
1: noop
2: out 87 # 'W'
4: out 101 # 'e'
6: out 108 # 'l'
8: out 99 # 'c'
10: out 111 # 'o'
12: out 109 # 'm'
14: out 101 # 'e'
16: out 32 # ' '
18: out 116 # 't'
20: out 111 # 'o'
22: out 32 # ... |
rom_writer/MEM1.asm | clpl/proteus-CPU | 5 | 48022 | <gh_stars>1-10
ORG 0000H
DB 00000000B
ORG 0001H
DB 01111011B
ORG 0002H
DB 00000001B
ORG 0003H
DB 11001000B
ORG 0004H
DB 00000001B
ORG 0005H
DB 00000000B
ORG 0006H
DB 00001110B
ORG 0007H
DB 00000000B
ORG 0008H
DB 00000000B
ORG 0009H
D... |
dino/lcs/enemy/87.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | 6 | 48023 | <filename>dino/lcs/enemy/87.asm
copyright zengfr site:http://github.com/zengfr/romhack
00492E move.b D0, ($87,A6)
004932 move.b D0, ($96,A6)
0109D6 tst.b ($87,A3) [enemy+ 2]
0109DA beq $10a1e [enemy+87]
011030 tst.b ($87,A3) [enemy+ 2]
011034 beq $11072 [enemy+87]
011B4C move.b ($87,A3), D0
01... |
src/bootloader/asm_routines.asm | sergpolkin/zig-os | 0 | 48024 | [bits 32]
struc register_state
.eax: resd 1
.ecx: resd 1
.edx: resd 1
.ebx: resd 1
.esp: resd 1
.ebp: resd 1
.esi: resd 1
.edi: resd 1
.efl: resd 1
.es: resw 1
.ds: resw 1
.fs: resw 1
.gs: resw 1
.ss: resw 1
endstruc
global _invoke_realmode
align 16
_invoke_realmode:
pushad
; Set all selectors to da... |
Exercises/VARIOUS/MULTI.asm | unlam/68HC11-simulator | 1 | 48025 | <reponame>unlam/68HC11-simulator
ORG $0000
DATO RMB 1
ORG $8000
LDAB DATO
ANDB #3
BNE
SI LDAA #1
BRA FIN
NO LDAA #0
BRA FIN
FIN BRA FIN |
text/maps/route_22.asm | adhi-thirumala/EvoYellow | 16 | 48026 | <reponame>adhi-thirumala/EvoYellow
_Route22RivalDefeatedText1::
text "Awww!"
line "You just lucked"
cont "out!"
prompt
_Route22Text_511bc::
text $53, ": What?"
line "Why do I have 2"
cont "#MON?"
para "You should catch"
cont "some more too!"
prompt
_Route22RivalDefeatedText2::
text "What!?"
para "I was ... |
Exchanging Pairs of Array Values.asm | juancstlm/Assembly-Programming | 0 | 48027 | <reponame>juancstlm/Assembly-Programming
;Exchanging Pairs of Array Values
.386
.model flat,stdcall
.stack 4096
INCLUDE Irvine32.inc
ExitProcess proto,dwExitCode:dword
.data
array BYTE 1,2,3,4,5,6
.code
main proc
mov esi, OFFSET array
mov ecx, SIZEOF array /2
L1:
mov al, [esi]
mov bl, [esi+1]
... |
oeis/101/A101080.asm | neoneye/loda-programs | 11 | 48028 | ; A101080: Table of Hamming distances between binary vectors representing i and j, for i >= 0, j >= 0, read by antidiagonals.
; Submitted by <NAME>
; 0,1,1,1,0,1,2,2,2,2,1,1,0,1,1,2,2,1,1,2,2,2,1,2,0,2,1,2,3,3,3,3,3,3,3,3,1,2,1,2,0,2,1,2,1,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,0,1,1,2,1,2,3,3,3,3,2,2,2,2,3,3,3,3,2,2,1,2,2,1,0,... |
oeis/326/A326146.asm | neoneye/loda-programs | 11 | 48029 | ; A326146: a(n) = sigma(n) - A020639(n) - n, where A020639 gives the smallest prime factor of n, and sigma is the sum of divisors of n.
; Submitted by <NAME>
; -1,-1,-2,1,-4,4,-6,5,1,6,-10,14,-12,8,6,13,-16,19,-18,20,8,12,-22,34,1,14,10,26,-28,40,-30,29,12,18,8,53,-36,20,14,48,-40,52,-42,38,30,24,-46,74,1,41,18,44,-52,... |
Transynther/x86/_processed/NONE/_st_/i7-7700_9_0xca.log_21829_1299.asm | ljhsiun2/medusa | 9 | 48030 | <filename>Transynther/x86/_processed/NONE/_st_/i7-7700_9_0xca.log_21829_1299.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r14
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x6f91, %r12
nop
cmp $29635, %r11
mov $0x6162636465666768, %r9
movq %r9, %xmm... |
Appl/Games/Mine/monobmp.asm | steakknife/pcgeos | 504 | 48031 | <filename>Appl/Games/Mine/monobmp.asm
COMMENT @----------------------------------------------------------------------
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Mine
FILE: monobmp.asm
REVISION HISTORY:
Name Date Description
---- ---- -----------
Insik ... |
lab0/scsritturaValoreInCellaMemoria.asm | neskov7/AssemblyProgramsCE | 0 | 48032 | <filename>lab0/scsritturaValoreInCellaMemoria.asm
.MODEL small
.STACK
.DATA
VAR DW ? ;non sono sicuro che sia init a 0
.CODE
.STARTUP
MOV VAR, 0 ;posso verificare che e' init a 0
mov var, 15
.EXIT
END |
bugs/PENDING_SUBMIT/0444-BAD-IMAGE-AMD-MESA-d1754a6c-opt-rand2-test-host/unreduced_result/reference/2_spirv_opt_asm/shader.frag.asm | asuonpaa/ShaderTests | 0 | 48035 | ; SPIR-V
; Version: 1.0
; Generator: Khronos Glslang Reference Front End; 10
; Bound: 620
; Schema: 0
OpCapability Shader
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %4 "main" %12 %435
OpExecutionMode %4 Or... |
Transynther/x86/_processed/AVXALIGN/_zr_/i7-8650U_0xd2_notsx.log_1196_1581.asm | ljhsiun2/medusa | 9 | 48036 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %r8
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x85c, %r13
nop
and $39509, %r8
mov $0x6162636465666768, %rcx
movq %rcx, %xmm4
movups %xmm4, (%r13)
and $17425, %r12
lea addresses_WT_ht+0x6954, %rsi
lea addresses_UC_ht+0x954c... |
main.asm | etdv-thevoid/pokemon-rgb-enhanced | 1 | 48037 | <gh_stars>1-10
INCLUDE "constants.asm"
NPC_SPRITES_1 EQU $4
NPC_SPRITES_2 EQU $5
GFX EQU $4
PICS_1 EQU $9
PICS_2 EQU $A
PICS_3 EQU $B
PICS_4 EQU $C
PICS_5 EQU $D
INCLUDE "home.asm"
SECTION "bank1",ROMX,BANK[$1]
INCLUDE "data/facing.asm"
INCLUDE "engine/black_out.asm"
; Mew sprites removed from here
ORG $01, $... |
pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/ldlinux-sects.asm | manggoguy/parsec-modified | 2,151 | 48038 | <reponame>manggoguy/parsec-modified
[map all]
BSS_START equ 0800h
LATEBSS_START equ 0B800h
TEXT_START equ 7C00h
STACK_SIZE equ 4096
STACK_START equ TEXT_START-STACK_SIZE
org TEXT_START
[section .text]
times 0x2410 db 0x1
[section .earlybss nobits start=BSS_START]
resb 0x40C4
[section .bcopy32 align=4 valign=16 follows=... |
programs/oeis/050/A050189.asm | neoneye/loda | 22 | 48039 | <filename>programs/oeis/050/A050189.asm<gh_stars>10-100
; A050189: T(n,4), array T as in A050186; a count of aperiodic binary words.
; 0,5,12,35,64,126,200,330,480,715,980,1365,1792,2380,3024,3876,4800,5985,7260,8855,10560,12650,14872,17550,20384,23751,27300,31465,35840,40920,46240,52360,58752,66045,73644,82251,91200
... |
tp/libs/asmlib/cputype64.asm | pg83/zm | 0 | 48040 | %include "defs.asm"
;************************* cputype64.asm **********************************
; Author: <NAME>
; Date created: 2011-07-09
; Last modified: 2011-07-09
; Source URL: www.agner.org/optimize
; Project: asmlib.zip
; Language: assembly, NASM/YASM syntax, 64 b... |
hello.asm | classmember/hello-world-assembly-deep-dive | 0 | 48041 | <filename>hello.asm
.section __TEXT,__text,regular,pure_instructions
.build_version macos, 10, 14
.intel_syntax noprefix
.globl _main ## -- Begin function main
.p2align 4, 0x90
_main: ## @main
.cfi_startproc
## %bb.0:
push rbp
.cfi_def_cfa_offset 16
.cfi_offse... |
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0xca_notsx.log_21829_234.asm | ljhsiun2/medusa | 9 | 48042 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r15
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x1df5f, %rcx
nop
nop
nop
sub $47347, %rbp
movb (%rcx), %al
nop
nop
nop
nop
dec %rax
lea addresses_WC_ht+0xb2ff, %rsi
lea addresses_UC_ht+0x17cdf, %rdi
nop
and %r13, %r13
... |
sound/sfxasm/56.asm | NatsumiFox/Sonic-3-93-Nov-03 | 7 | 48043 | 56_Header:
sHeaderInit ; Z80 offset is $C609
sHeaderPatch 56_Patches
sHeaderTick $01
sHeaderCh $01
sHeaderSFX $80, $05, 56_FM5, $00, $10
56_FM5:
sPatFM $00
56_Loop1:
dc.b nCs3, $03
saTranspose $FF
saVolFM $02
sLoop $00, $10, 56_Loop1
sStop
56_Patches:
; Patch $00
; $06
; $00, $09, $09, $09, $1... |
tests/macros/issue46_LuaInsideMacro.asm | cizo2000/sjasmplus | 220 | 48044 | OUTPUT "issue46_LuaInsideMacro.bin"
MACRO luatest
LUA
_pc("ld b,c") -- 'A'
_pc("ld b,d") -- 'B'
_pc("ld b,e") -- 'C'
ENDLUA
ENDM
luatest
|
floppytest/osifloppytest.asm | dgesswein/OSI | 2 | 48045 | <reponame>dgesswein/OSI
;
; DISK TEST UTILITY FOR C1P/UK101/C2PDF/C4PMF/C8P/C3-OEM
; Supposed to work with serial or video and 8", 5.25", or 3.5" floppies. Tested
; with C2 with 8" floppies, serial, and 540B video. Tested with OSI emulator
; with 5.25" floppies.
; Needs 16k memory.
; Start at $300
; Does write/r... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21682_179.asm | ljhsiun2/medusa | 9 | 48046 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0xca1a, %rbx
nop
nop
sub %r13, %r13
and $0xffffffffffffffc0, %rbx
vmovaps (%rbx), %ymm5
vextracti128 $0, %ymm5, %xmm5
vpextrq $0, %xmm5, %rcx
nop
nop
nop
nop
nop
sub $51814, %... |
gfx/pokemon/ludicolo/anim.asm | Ebernacher90/pokecrystal-allworld | 0 | 48048 | <gh_stars>0
frame 1, 08
frame 2, 04
frame 0, 12
setrepeat 2
frame 3, 10
frame 0, 10
frame 4, 10
frame 0, 10
dorepeat 4
endanim
|
src/xorg/X11/XConnect/src/XConnect.asm | nikAizuddin/lib80386 | 4 | 48049 | <gh_stars>1-10
; 1 2 3 4 5 6 7
;234567890123456789012345678901234567890123456789012345678901234567890
;=====================================================================
;
; FUNCTION: XConnect
; FUNCTION PURPOSE: <See doc/description file>
;
; ... |
oeis/091/A091330.asm | neoneye/loda-programs | 11 | 48050 | <filename>oeis/091/A091330.asm<gh_stars>10-100
; A091330: a(n) = ((p-1)!/p) - ((p-1)*(p-1)!/p!), where p is the n-th prime.
; Submitted by <NAME>
; 0,0,4,102,329890,36846276,1230752346352,336967037143578,48869596859895986086,10513391193507374500051862068,8556543864909388988268015483870,100538736970243572288648499500225... |
Transynther/x86/_processed/AVXALIGN/_st_/i9-9900K_12_0xa0_notsx.log_21829_1197.asm | ljhsiun2/medusa | 9 | 48051 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/AVXALIGN/_st_/i9-9900K_12_0xa0_notsx.log_21829_1197.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %r8
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x8728, %rcx
nop
nop
nop
nop
add %r11, %r11
movw $0x61... |
libsrc/_DEVELOPMENT/math/float/math32/c/sccz80/cm32_sccz80_fsmul.asm | jpoikela/z88dk | 640 | 48052 |
; float __fsmul (float left, float right)
SECTION code_clib
SECTION code_fp_math32
PUBLIC cm32_sccz80_fsmul
EXTERN cm32_sccz80_switch_arg, cm32_sccz80_fsreadl
EXTERN m32_fsmul
; multiply two sccz80 floats
;
; enter : stack = sccz80_float left, sccz80_float right, ret
;
; exit : DEHL = sccz80_... |
audio/sfx/battle_24.asm | opiter09/ASM-Machina | 1 | 48053 | <gh_stars>1-10
SFX_Battle_24_Ch5:
duty_cycle 1
pitch_sweep 9, 7
square_note 15, 15, 2, 1792
pitch_sweep 0, 8
sound_ret
SFX_Battle_24_Ch8:
noise_note 15, 3, -7, 34
noise_note 15, 15, 2, 33
sound_ret
|
Lab6/EE321_Lab6.asm | eminkartci/MicroController-Assembly | 1 | 48054 | <reponame>eminkartci/MicroController-Assembly
_main:
;EE321_Lab6.c,17 :: void main(){
;EE321_Lab6.c,20 :: PCON.OSCF = 1;
BSF PCON+0, 3
;EE321_Lab6.c,21 :: TRISA = 0xF0;
MOVLW 240
MOVWF TRISA+0
;EE321_Lab6.c,22 :: TRISB = 0x00;
CLRF TRISB+0
;EE321_Lab6.c,23 :: PORTA = 0x00;
CLRF ... |
programs/oeis/323/A323608.asm | jmorken/loda | 1 | 48055 | <filename>programs/oeis/323/A323608.asm
; A323608: The position function the fractalization of which yields A323607.
; 1,1,1,2,2,3,3,5,4,6,5,8,6,9,7,12,8,12,9,15,10,15,11,19,12,18,13,22,14,21,15,27,16,24,17,29,18,27,19,34,20,30,21,36,22,33,23,42,24,36,25,43,26,39,27,49,28,42,29,50,30,45,31,58,32,48,33,57,34,51,35,64,36... |
s0806.asm | zhangyuesai/8086-asm-learning-code | 1 | 48056 | assume cs:code,ds:data
data segment
dw 0,0,0,0,0,0,0,0
dw 0,0,0,0,0,0,0,0
dw 0,0,0,0,0,0,0,0
dw 0,0,0,0,0,0,0,0
dw 0,0,0,0,0,0,0,0
dw 0,0,0,0,0,0,0,0
db 'DEC'
db '<NAME>'
dw 137
dw 40
db 'PDP'
data ends
code segment
start:
mov ax,data
mov ds,ax
mov bx,60h
mov word ptr [bx].0ch,38
add word ptr [bx].0e... |
oeis/280/A280724.asm | neoneye/loda-programs | 11 | 48057 | ; A280724: Expansion of 1/(1 - x) + (1/(1 - x)^2)*Sum_{k>=0} x^(3^k).
; 1,2,3,5,7,9,11,13,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60,63,66,69,73,77,81,85,89,93,97,101,105,109,113,117,121,125,129,133,137,141,145,149,153,157,161,165,169,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,233,237,241,245
mov... |
src/banking.asm | QuinnPainter/gbsdk | 16 | 48058 | <filename>src/banking.asm
INCLUDE "sdk/hardware.inc"
SECTION "BankingHRAM", HRAM
wCurrentBank::
_current_bank:: ds 1
SECTION "BankingCode", ROM0
bankedCall::
___sdcc_bcall_ehl::
ldh a, [wCurrentBank]
push af
ld a, e
ldh [wCurrentBank], a
ld [rROMB0], a
rst callHL
pop af
setCurrentB... |
Transynther/x86/_processed/AVXALIGN/_ht_/i9-9900K_12_0xca_notsx.log_10372_1101.asm | ljhsiun2/medusa | 9 | 48059 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x37ca, %rsi
lea addresses_UC_ht+0x1974a, %rdi
nop
nop
and %rdx, %rdx
mov $27, %rcx
rep movsl
nop
nop
and $4360, %r13
lea addresses_A_ht+0x444a, %rsi
lea addresses_UC_ht+0x14f4a, %rdi
clflush (%rs... |
programs/oeis/246/A246360.asm | neoneye/loda | 22 | 48060 | <reponame>neoneye/loda<gh_stars>10-100
; A246360: a(1) = 1, then A007051 ((3^n)+1)/2 interleaved with A057198 (5*3^(n-1)+1)/2.
; 1,2,3,5,8,14,23,41,68,122,203,365,608,1094,1823,3281,5468,9842,16403,29525,49208,88574,147623,265721,442868,797162,1328603,2391485,3985808,7174454,11957423,21523361,35872268,64570082,10761680... |
29_3.asm | elder-george/black_book_vga | 2 | 48061 | <filename>29_3.asm
; Program to illustrate the color mapping capabilities of the
; EGA's palette registers.
global start
%include 'common.inc'
BAR_HEIGHT equ 14
TOP_BAR equ BAR_HEIGHT * 6
section stack stack
resb 256
section data
KeyMsg db 'Press any key to see the next color set. '
db 'There ar... |
Library/Text/TextStorage/tsSmallCharClass.asm | steakknife/pcgeos | 504 | 48062 | <filename>Library/Text/TextStorage/tsSmallCharClass.asm<gh_stars>100-1000
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1991 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: tsSmallCharClass.asm
AUTHOR: <NAME>, Nov 26, 1991
ROUTINES:
Name... |
oeis/015/A015612.asm | neoneye/loda-programs | 11 | 48063 | <filename>oeis/015/A015612.asm<gh_stars>10-100
; A015612: a(n) = 12*a(n-1) + 11*a(n-2).
; Submitted by <NAME>
; 0,1,12,155,1992,25609,329220,4232339,54409488,699469585,8992139388,115599838091,1486111590360,19104937303321,245606475133812,3157432011942275,40590855369779232,521822016568715809,6708363607892161260,862404054... |
Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xca_notsx.log_21829_1258.asm | ljhsiun2/medusa | 9 | 48064 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %r14
push %r15
push %rax
push %rdx
lea addresses_normal_ht+0x6da8, %r12
nop
nop
nop
nop
nop
sub %r13, %r13
movw $0x6162, (%r12)
nop
nop
nop
inc %r14
lea addresses_A_ht+0x1aa68, %rax
nop
nop
nop
nop
cmp %rdx, %rdx
movl $0x6162... |
oeis/173/A173987.asm | neoneye/loda-programs | 11 | 48065 | ; A173987: a(n) = denominator of ((Zeta(0,2,2/3) - Zeta(0,2,n+2/3))/9), where Zeta is the Hurwitz Zeta function.
; Submitted by <NAME>
; 1,4,100,1600,193600,9486400,2741569600,2741569600,1450290318400,245099063809600,206128312663873600,3298053002621977600,3298053002621977600,1190597133946533913600,200139378216412350876... |
oeis/037/A037784.asm | neoneye/loda-programs | 11 | 48066 | ; A037784: Base 9 digits are, in order, the first n terms of the periodic sequence with initial period 3,1,2,0.
; Submitted by <NAME>
; 3,28,254,2286,20577,185194,1666748,15000732,135006591,1215059320,10935533882,98419804938,885778244445,7972004200006,71748037800056,645732340200504,5811591061804539,52304319556240852,47... |
oeis/200/A200833.asm | neoneye/loda-programs | 11 | 48067 | <reponame>neoneye/loda-programs
; A200833: Number of 0..3 arrays x(0..n+1) of n+2 elements without any two consecutive increases or two consecutive decreases.
; Submitted by <NAME>
; 56,194,676,2356,8210,28610,99700,347434,1210736,4219166,14702926,51236674,178549274,622207508,2168265232,7555958512,26330961818,917579879... |
programs/oeis/287/A287723.asm | neoneye/loda | 22 | 48070 | ; A287723: Positions of 0 in A287722; complement of A287724.
; 2,4,7,9,11,13,16,18,21,23,25,27,30,32,34,36,39,41,44,46,48,50,53,55,58,60,62,64,67,69,71,73,76,78,81,83,85,87,90,92,94,96,99,101,104,106,108,110,113,115,118,120,122,124,127,129,131,133,136,138,141,143,145,147,150,152,155,157,159,161,164,166,168,170,173,175,... |
Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0x48_notsx.log_21829_1580.asm | ljhsiun2/medusa | 9 | 48071 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r9
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x22f1, %rbp
nop
nop
nop
nop
nop
inc %rdi
movw $0x6162, (%rbp)
nop
nop
add %rbp, %rbp
lea addresses_WC_ht+0x13429, %rcx
nop
nop
nop
nop
and %r12, %r12
mov $0x61... |
oeis/183/A183860.asm | neoneye/loda-programs | 11 | 48072 | <filename>oeis/183/A183860.asm
; A183860: n+floor(sqrt(3n+1)); complement of A183861.
; 3,4,6,7,9,10,11,13,14,15,16,18,19,20,21,23,24,25,26,27,29,30,31,32,33,34,36,37,38,39,40,41,43,44,45,46,47,48,49,51,52,53,54,55,56,57,58,60,61,62,63,64,65,66,67,69,70,71,72,73,74,75,76,77,79,80,81,82,83,84,85,86,87,88,90,91,92,93,94,... |
loader/multiboot.asm | shockkolate/shockk-os | 2 | 48073 | <filename>loader/multiboot.asm
MBALIGN equ 1 << 0 ; align to page boundaries
MEMINFO equ 1 << 1 ; provide memory map
FLAGS equ MBALIGN | MEMINFO ;... |
programs/oeis/248/A248121.asm | karttu/loda | 1 | 48074 | ; A248121: Floor(1 / (1/n - Pi^2/6 + sum{1/h^2, h = 1..n})).
; 2,9,20,34,53,76,102,133,168,206,249,296,346,401,460,522,589,660,734,813,896,982,1073,1168,1266,1369,1476,1586,1701,1820,1942,2069,2200,2334,2473,2616,2762,2913,3068,3226,3389,3556,3726,3901,4080,4262,4449,4640,4834,5033,5236,5442,5653,5868,6086,6309,6536,67... |
programs/oeis/100/A100175.asm | jmorken/loda | 1 | 48075 | ; A100175: Structured triakis tetrahedral numbers (vertex structure 4).
; 1,8,30,76,155,276,448,680,981,1360,1826,2388,3055,3836,4740,5776,6953,8280,9766,11420,13251,15268,17480,19896,22525,25376,28458,31780,35351,39180,43276,47648,52305,57256,62510,68076,73963,80180,86736,93640,100901,108528,116530,124916,133695,14287... |
Transynther/x86/_processed/US/_ht_un_/i9-9900K_12_0xa0.log_21829_676.asm | ljhsiun2/medusa | 9 | 48076 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r15
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x3c48, %r13
clflush (%r13)
nop
nop
and $47694, %r12
mov (%r13), %dx
nop
nop
and $51742, %r9
lea addresses_A_ht+0x8003, %rbp
nop
sub %r15, %r15
movb (%r... |
oeis/097/A097260.asm | neoneye/loda-programs | 11 | 48077 | ; A097260: Numbers whose set of base 14 digits is {0,D}, where D base 14 = 13 base 10.
; Submitted by <NAME>(s3)
; 0,13,182,195,2548,2561,2730,2743,35672,35685,35854,35867,38220,38233,38402,38415,499408,499421,499590,499603,501956,501969,502138,502151,535080,535093,535262,535275,537628,537641,537810,537823,6991712,6991... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.