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 |
|---|---|---|---|---|
libsrc/_DEVELOPMENT/temp/sp1/zx/c/sccz80/sp1_ScreenStr.asm | jpoikela/z88dk | 640 | 129176 | <filename>libsrc/_DEVELOPMENT/temp/sp1/zx/c/sccz80/sp1_ScreenStr.asm
; uint sp1_ScreenStr(uchar row, uchar col)
; CALLER linkage for function pointers
SECTION code_clib
SECTION code_temp_sp1
PUBLIC sp1_ScreenStr
EXTERN asm_sp1_ScreenStr
sp1_ScreenStr:
ld hl,2
ld e,(hl)
inc hl
inc hl
ld d,(hl)
... |
examples/mandel.asm | feilipu/TMS9918A | 1 | 129177 | ; Z80 Mandelbrot with output to TMS9918 video chip
;
; Fixed point Mandelbrot routine from https://rosettacode.org/wiki/Mandelbrot_set#Z80_Assembly
;
; Adapted to TMS9918 by <NAME>
ramtop: equ $ffff
bdos: equ $0005
org 100h
ld (oldstack),sp ... |
libutil.asm | Pisay127/boolean_switches | 0 | 129178 | ; Graphics library by <NAME>
; https://github.com/itay-grudev/assembly-dos-gx
; Move data from a variable into another variable
movv macro to, from
push from
pop to
endm
mov_byte_vars macro to, from
save_registers
mov dl, from
mov to, dl
restore_registers
endm
; Compare two memory variables
cm... |
programs/oeis/283/A283318.asm | neoneye/loda | 22 | 129179 | ; A283318: Image of 0 under repeated applications of the morphism 0 -> 0,1,0,0, 1 -> 1,1,0,1.
; 0,1,0,0,1,1,0,1,0,1,0,0,0,1,0,0,1,1,0,1,1,1,0,1,0,1,0,0,1,1,0,1,0,1,0,0,1,1,0,1,0,1,0,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,0,1,0,0,1,1,0,1,1,1,0,1,0,1,0,0,1,1,0,1,1,1,0,1,1,1,0,1,0,1,0,0,1,1,0,1,0,1,0,0
mov $1,$0
lpb $0
div ... |
test/z80/test_jp.asm | gb-archive/asmotor | 0 | 129180 | <filename>test/z80/test_jp.asm
SECTION "Test",CODE[0]
jp $1234
jp (hl)
jp (ix)
jp (iy)
jp nz,$1000
jp z,$1000
jp nc,$1000
jp c,$1000
jp po,$1000
jp pe,$1000
jp p,$1000
jp m,$1000
|
examples/2_sample.asm | AbdulrahmanAbumdas/emu8086 | 287 | 129182 | name "add-sub"
org 100h
mov al, 5 ; bin=00000101b
mov bl, 10 ; hex=0ah or bin=00001010b
; 5 + 10 = 15 (decimal) or hex=0fh or bin=00001111b
add bl, al
; 15 - 1 = 14 (decimal) or hex=0eh or bin=00001110b
sub bl, 1
; print result in binary:
mov cx, 8
print: mov ah, 2 ; print function.
mov dl, '0'... |
boot/src/load_kernel.asm | aryan-gupta/OS_2 | 0 | 129183 | <filename>boot/src/load_kernel.asm
[BITS 16]
; Loads kernal into memory
; al contains num sectors to load
; ch contains the cylinder to load
; cl constins the sector from which to start
; dh constins the track to read from
; dl constins the drive to read
load_kernel:
pusha
; push dx ; push it because it will b... |
programs/oeis/238/A238642.asm | neoneye/loda | 22 | 129184 | ; A238642: n if n+1 is prime; if n+1 is composite, n multiplied by smallest prime factor of n+1.
; 1,2,6,4,10,6,14,24,18,10,22,12,26,42,30,16,34,18,38,60,42,22,46,120,50,78,54,28,58,30,62,96,66,170,70,36,74,114,78,40,82,42,86,132,90,46,94,336,98,150,102,52,106,270,110,168,114,58,118,60,122,186,126,320,130,66,134,204,13... |
programs/oeis/033/A033141.asm | jmorken/loda | 1 | 129185 | ; A033141: Base-5 digits are, in order, the first n terms of the periodic sequence with initial period 1,0,0.
; 1,5,25,126,630,3150,15751,78755,393775,1968876,9844380,49221900,246109501,1230547505,6152737525,30763687626,153818438130,769092190650,3845460953251,19227304766255,96136523831275,480682619156376
add $0,2
mov ... |
echo.asm | vlnvv/xv6-os | 0 | 129186 |
_echo: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "stat.h"
#include "user.h"
int
main(int argc, char *argv[])
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 83 e4 f0 and $0xfffffff0,%esp
6: 83 ec 20 ... |
programs/oeis/007/A007952.asm | neoneye/loda | 22 | 129187 | ; A007952: Generated by a sieve: keep first number, drop every 2nd, keep first, drop every 3rd, keep first, drop every 4th, etc.
; 0,1,3,5,9,11,17,21,29,33,41,47,57,59,77,81,101,107,117,131,149,153,173,191,209,213,239,257,273,281,321,329,359,371,401,417,441,453,497,509,539,569,611,621,647,671,717,731,779,801,839,869,91... |
data/pokemon/base_stats/regirock.asm | AtmaBuster/pokeplat-gen2 | 6 | 129188 | db 0 ; species ID placeholder
db 80, 100, 200, 50, 50, 100
; hp atk def spd sat sdf
db ROCK, ROCK ; type
db 3 ; catch rate
db 217 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_UNKNOWN ; gender ratio
db 80 ; step cycles to hatch
INCBIN "gfx/pokemon/regirock/front.dimensions"
db GROWTH_SLOW ; gr... |
base/mvdm/wow16/kernel31/ldaux.asm | npocmaka/Windows-Server-2003 | 17 | 129189 | <filename>base/mvdm/wow16/kernel31/ldaux.asm
TITLE LDAUX - Assembler side of LD.C
.xlist
include kernel.inc
include newexe.inc
include tdb.inc
include protect.inc
.list
DataBegin
externB fChksum
externW hExeHead
externW curTDB
externW PHTcount
externW kr1dsc
szFake32BitModuleName DB 12... |
disk_io.asm | mlavik1/osdev-realmode | 1 | 129190 | ; -------------------- [ Routine: read_disk_chs ] --------------------
; --------- Reads the specified number of sectors from disk ----------
; input:
; [esp+12] = drive (0 = floppy, 1 = floppy2, 0x80 = hdd, 0x81 = hdd2)
; [esp+10] = sector
; [esp+8] = cylinder
; [esp+6] = head
; [esp+4] = num sectors
; [es... |
xv6/init.asm | suriya-1403/suriya-s-XV6 | 2 | 129193 |
_init: file format elf32-i386
Disassembly of section .text:
00000000 <login>:
#define REG_USERS 2
char *argv[] = {"login", 0};
char *regusers[] = {"suriya","aravinda"};
char *regpass[] = {"<PASSWORD>","<PASSWORD>"};
int login(char *u, char *p) {
0: 55 push %ebp
1: 89 e5 ... |
sw/552tests/rand_simple/t_1_slli.asm | JPShen-UWM/ThreadKraken | 1 | 129194 | // seed 1
lbi r0, 200 // icount 0
slbi r0, 136 // icount 1
lbi r1, 174 // icount 2
slbi r1, 82 // icount 3
lbi r2, 180 // icount 4
slbi r2, 43 // icount 5
lbi r3, 176 // icount 6
slbi r3, 124 // icount 7
lbi r4, 242 // icount 8
slbi r4, 26 // icount 9
lbi r5, 99 // icount 10
slbi r5, 45 // icount 11
lbi r6, 12 // icoun... |
Test/Exec/Mul1.asm | CharlesCarley/ToyVM | 1 | 129195 | main:
mov x3, 1
top:
cmp x3, 10
bgt pass
mul x4, x3, 1
prg x4
cmp x4, x3
beq L1
b fail
L1:
add x5, x3, x3
mul x4, x3, 2
prg x4
cmp x4, x5
beq L2
b fail
L2:
add x5, x5, x3
mul x4, x3, 3
prg x4
cmp x4, x5
beq L3
b fail
L3:
add x5,... |
test/br560575.asm | bitwiseworks/nasm-os2 | 3 | 129196 | <reponame>bitwiseworks/nasm-os2
;Testname=aout; Arguments=-faout -obr560575.o; Files=stderr stdout br560575.o
;Testname=aoutb; Arguments=-faoutb -obr560575.o; Files=stderr stdout br560575.o
;Testname=coff; Arguments=-fcoff -obr560575.o; Files=stderr stdout br560575.o
;Testname=elf32; Arguments=-felf32 -obr560575... |
oeis/208/A208902.asm | neoneye/loda-programs | 11 | 129198 | <reponame>neoneye/loda-programs
; A208902: The sum over all bitstrings b of length n of the number of runs in b not immediately followed by a longer run.
; 2,6,14,34,78,182,414,942,2110,4702,10366,22718,49406,106878,229886,492286,1049598,2229758,4720638,9964542,20975614,44046334,92282878,192950270,402669566,838885374,1... |
oeis/060/A060867.asm | neoneye/loda-programs | 11 | 129199 | <filename>oeis/060/A060867.asm<gh_stars>10-100
; A060867: a(n) = (2^n - 1)^2.
; 1,9,49,225,961,3969,16129,65025,261121,1046529,4190209,16769025,67092481,268402689,1073676289,4294836225,17179607041,68718952449,274876858369,1099509530625,4398042316801,17592177655809,70368727400449,281474943156225,1125899839733761,4503599... |
Transynther/x86/_processed/NC/_ht_zr_/i7-7700_9_0xca_notsx.log_21829_365.asm | ljhsiun2/medusa | 9 | 129200 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r15
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x2ba3, %rsi
lea addresses_WT_ht+0x6868, %rdi
nop
nop
and $60035, %r10
mov $76, %rcx
rep movsq
nop
nop
nop
and $48506, %rax
lea addresses_D_ht+0x10e93, %rsi
lea... |
programs/oeis/155/A155883.asm | neoneye/loda | 22 | 129201 | <reponame>neoneye/loda
; A155883: a(n) = 14*n^3 - 30*n^2 + 24*n - 7.
; 1,33,173,505,1113,2081,3493,5433,7985,11233,15261,20153,25993,32865,40853,50041,60513,72353,85645,100473,116921,135073,155013,176825,200593,226401,254333,284473,316905,351713,388981,428793,471233,516385,564333,615161,668953,725793,785765,848953,9154... |
libsrc/newbrain/zcall.asm | dex4er/deb-z88dk | 1 | 129202 | <reponame>dex4er/deb-z88dk
;
; Grundy Newbrain Specific libraries
;
; <NAME> - 19/05/2007
;
;
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
;
; This function is linked only in the non-CP/M version
; it calls the ROM functions via the standard rst entry
;
; - - - - - - - - - - - - - - - - - - ... |
oeis/225/A225013.asm | neoneye/loda-programs | 11 | 129203 | <reponame>neoneye/loda-programs
; A225013: Number of 6Xn 0..1 arrays with rows unimodal and columns nondecreasing
; Submitted by <NAME>
; 7,49,252,1036,3612,11088,30738,78354,186142,416394,884236,1794196,3497248,6577474,11980667,21201211,36548573,61520899,101320712,163556776,259187048,403770544,619111172,935394436,1393... |
libsrc/_DEVELOPMENT/arch/ts2068/display/c/sccz80/tshc_aaddrpright.asm | Frodevan/z88dk | 640 | 129205 | ; void *tshc_aaddrpright(void *aaddr, uchar bitmask)
SECTION code_clib
SECTION code_arch
PUBLIC tshc_aaddrpright
EXTERN zx_saddrpright
defc tshc_aaddrpright = zx_saddrpright
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _tshc_aaddrpright
defc _tshc_aaddrpright = tshc_aaddrpright
ENDIF
|
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1900.asm | ljhsiun2/medusa | 9 | 129206 | <filename>Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1900.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x1c44e, %r13
nop
nop
nop
nop
nop
inc %r12
movups (%r13), %xmm5
vpextrq $1, %xmm5, %rdi
nop
nop
nop
... |
programs/oeis/051/A051596.asm | karttu/loda | 0 | 129208 | <gh_stars>0
; A051596: Numerical values or Gematriahs of Hebrew letters {aleph, bet, ..., tav}.
; 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100,200,300,400
mov $3,$0
mov $4,$0
add $4,1
lpb $4,1
mov $0,$3
sub $4,1
sub $0,$4
mov $2,$0
sub $2,1
div $2,9
mov $5,10
pow $5,$2
add $1,$5
lpe
|
chapter4/loader.asm | liulinboyi/os | 6 | 129209 | <gh_stars>1-10
%include "boot.inc"
section loader vstart=LOADER_BASE_ADDR
LOADER_STACK_TOP equ LOADER_BASE_ADDR
jmp loader_start
; 这里其实就是GDT的起始地址,第一个描述符为空
GDT_BASE: dd 0x00000000
dd 0x00000000
; 代码段描述符,一个dd为4字节,段描述符为8字节,上面为低4字节
CODE_DESC: dd 0x0000FFFF
dd DESC_CODE_HIGH4
; 栈段描述符,和数据段共用
DATA_ST... |
libs/xlibc/arch/x86/xchg.asm | MUYIio/Mini-OS | 5 | 129211 | [section .text]
[bits 32]
global mem_xchg8
; char mem_xchg8(char *ptr, char value);
mem_xchg8:
push ebx
mov eax, [esp + 4 + 4] ; ptr
mov bl, [esp + 4 + 8] ; value
xchg [eax], bl ; 8 bits
xor eax, eax ; eax = 0
mov al, bl ; al == old *ptr
pop ebx
... |
data/pokemon/base_stats.asm | TastySnax12/pokecrystal16-493-plus | 2 | 129213 | <gh_stars>1-10
tmhm: MACRO
; used in data/pokemon/base_stats/*.asm
_tms1 = 0 ; TM01-TM24 (24)
_tms2 = 0 ; TM25-TM48 (24)
_tms3 = 0 ; TM49-TM50 + HM01-HM07 + MT01-MT03 (12/24)
rept _NARG
if DEF(\1_TMNUM)
if \1_TMNUM < 24 + 1
_tms1 = _tms1 | (1 << ((\1_TMNUM) - 1))
elif \1_TMNUM < 48 + 1
_tms2 = _tms2 | (1 << ((\1_TMN... |
oeis/063/A063695.asm | neoneye/loda-programs | 11 | 129214 | ; A063695: Remove even-positioned bits from the binary expansion of n.
; Submitted by <NAME>(s1)
; 0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8... |
programs/oeis/010/A010078.asm | jmorken/loda | 1 | 129215 | ; A010078: Shortest representation of -n in 2's-complement format.
; 1,2,5,4,11,10,9,8,23,22,21,20,19,18,17,16,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,1... |
test/run_solidity.asm | iccicci/cc-c | 1 | 129217 | <gh_stars>1-10
.code
/* "<stdin>":0:109 contract x { constructor() public {} function g(uint32 a) public pure returns(uint32 ret) { ret = a + 23; } } */
0x80
0x40
mstore
/* "<stdin>":13:36 constructor() public {} */
callvalue
/* "--CODEGEN--":8:17 */
dup1
/* "--CODEGEN--":5:7 */
iszero
tag_1
jumpi
/* "--CODEGEN--... |
test/jzas/sintactic/valid/success54.asm | scoffey/jz80sim | 1 | 129219 | aseg
org 3000h
start0: jp start
; Intercambia A y C
swap: ld (aux), A ;aux=A
ld A, C
ld (aux+1), A ;aux+1=C
ld A, (aux)
ld C, A ;C=aux
ld A, (aux+1) ;A=aux+1
jr aux+2
aux: ds 2
ret
; Intercambia (IX) y (IY)
swapMemo: ld (auxi), A ;auxi=A
ld A, (IX)
ld (auxi+1), A ;auxi+... |
programs/oeis/156/A156640.asm | karttu/loda | 0 | 129220 | ; A156640: 169n^2 + 140n + 29.
; 29,338,985,1970,3293,4954,6953,9290,11965,14978,18329,22018,26045,30410,35113,40154,45533,51250,57305,63698,70429,77498,84905,92650,100733,109154,117913,127010,136445,146218,156329,166778,177565,188690,200153,211954,224093,236570,249385,262538,276029,289858,304025,318530,333373,348554,3... |
src/common.asm | locostewart/oiram | 48 | 129221 | assume adl=1
public _moveable_tile_right_bottom
_moveable_tile_right_bottom:
xor a,a ; TEST_RIGHT
jr _test_against
public _moveable_tile_left_bottom
_moveable_tile_left_bottom:
ld a,1 ; TEST_LEFT
jr _test_against
public _moveable_tile
_moveable_tile:
ld a,2 ... |
oeis/295/A295690.asm | neoneye/loda-programs | 11 | 129222 | ; A295690: a(n) = a(n-1) + a(n-3) + a(n-4), where a(0) = 2, a(1) = 2, a(2) = 1, a(3) = 1.
; Submitted by <NAME>
; 2,2,1,1,5,8,10,16,29,47,73,118,194,314,505,817,1325,2144,3466,5608,9077,14687,23761,38446,62210,100658,162865,263521,426389,689912,1116298,1806208,2922509,4728719,7651225,12379942,20031170,32411114,52442281... |
ps.asm | shruti512/xv6 | 0 | 129228 | <reponame>shruti512/xv6
_ps: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "types.h"
#include "stat.h"
#include "user.h"
#include "fcntl.h"
int main(int argc, char *argv[])
{
0: 8d 4c 24 04 lea 0x4(%esp),%ecx
4: 83 e4 f0 and $0xfffffff0,%esp
... |
oeis/217/A217004.asm | neoneye/loda-programs | 11 | 129229 | <reponame>neoneye/loda-programs<filename>oeis/217/A217004.asm
; A217004: Numbers arising in computing the Turan function of cycles of length 4.
; Submitted by <NAME>
; 273,307,381,553,651,757,871,993,1057,1407,1723,1893,2257,2451,2863,3541,3783,4161,4557,5113,5403,6321,6643,6973,8011,9507,10303,10713,11557,11991,12883,... |
init.asm | MatanGilead/myxv6 | 0 | 129231 | <reponame>MatanGilead/myxv6<filename>init.asm<gh_stars>0
_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... |
uxos/trial/pmode/char.asm | CaysHub/OS_Test | 0 | 129232 | <gh_stars>0
%define CR0_PE (1 << 0)
%define CR0_MP (1 << 1)
%define CR0_EM (1 << 2)
%define CR0_TS (1 << 3)
%define CR0_WP (1 << 16)
%define CR0_PG (1 << 31)
org 0x7c00
[bits 16]
; First, BIOS loads the bootsector into 0000:7C00.
cli
xor ax, ax
mov ds, ... |
Source/header.6502.asm | Rakarake/NESNAKE | 0 | 129233 | <reponame>Rakarake/NESNAKE
;iNES HEADER
.inesprg 1 ;1x 16KB bank of PRG code
.ineschr 1 ;1x 8KB bank of CHR data
.inesmap 0 ;no bank swapping at the time
.inesmir 1 ;enabels background mirroring
;NAMING
;variables: camelCasing
;pointers: camelCasing_lo and camelCasing_hi
;data structures: camelCasing
;temporary la... |
Transynther/x86/_processed/AVXALIGN/_st_zr_/i7-8650U_0xd2_notsx.log_1342_98.asm | ljhsiun2/medusa | 9 | 129234 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r14
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0xc2d9, %r14
nop
nop
add %r12, %r12
mov (%r14), %r9
nop
nop
and %r10, %r10
lea addresses_D_ht+0x19ad9, %rsi
lea addresses_A_ht+0x18eb, %rdi
and %r8, %r8
mov $0, %r... |
libsrc/_DEVELOPMENT/math/float/math32/lm32/z80/asm_derror_erange_infc.asm | jpoikela/z88dk | 38 | 129235 |
SECTION code_clib
SECTION code_fp_math48
PUBLIC derror_erange_infc, derror_erange_pinfc, derror_erange_minfc
EXTERN m32_derror_erange_infc, m32_derror_erange_pinfc, m32_derror_erange_ninfc
defc derror_erange_infc = m32_derror_erange_infc
defc derror_erange_pinfc = m32_derror_erange_pinfc
defc derror_erange_minfc =... |
src/sm/titlescreen.asm | PJBoy/alttp_sm_combo_randomizer_rom | 31 | 129236 | <filename>src/sm/titlescreen.asm
; Spritemap format is roughly:
; nnnn ; Number of entries (2 bytes)
; xxxx yy attt ; Entry 0 (5 bytes)
; ... ; Entry 1...
; Where:
; n = number of entries
; x = X offset of sprite from centre
; y = Y offset of sprite from centre
; a =... |
programs/oeis/232/A232991.asm | karttu/loda | 1 | 129237 | <filename>programs/oeis/232/A232991.asm
; A232991: Period 6: repeat [1, 0, 0, 0, 1, 0].
; 1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1
mod $0,6
mod $0... |
ASM/src/extended_objects.asm | Edos512/OoT-RandomizerNoER | 344 | 129240 | <filename>ASM/src/extended_objects.asm<gh_stars>100-1000
extended_object_lookup_GI:
BGE T8, 0x192, @@extended_item
nop
@@normal_item:
LUI T0, 0x8010
JR RA
ADDIU T0, T0, 0x8FF8
@@extended_item:
LA T0, EXTENDED_OBJECT_TABLE
JR RA
ADDIU T8, T8, -0x193
extended... |
oeis/045/A045992.asm | neoneye/loda-programs | 11 | 129241 | ; A045992: a(n) = binomial(2n,n) - n; number of (weakly) increasing or decreasing maps from 1,...,n to 1,...,n.
; 1,1,4,17,66,247,918,3425,12862,48611,184746,705421,2704144,10400587,40116586,155117505,601080374,2333606203,9075135282,35345263781,137846528800,538257874419,2104098963698,8233430727577,32247603683076,126410... |
SSUOS_P6/src/kernel/arch/i386/crset.asm | NCNYR/OS_Virtual_Memory | 0 | 129242 | [SECTION .text]
[GLOBAL read_cr0]
read_cr0:
push ebp
mov ebp, esp
mov eax, cr0
pop ebp
retn
[GLOBAL write_cr0]
write_cr0:
push ebp
mov ebp, esp
mov eax, dword[ebp+8]
mov cr0, eax
pop ebp
retn
[GLOBAL read_cr3]
read_cr3:
push ebp
mov ebp, esp
mov eax, cr3
pop ebp
... |
programs/oeis/099/A099862.asm | jmorken/loda | 1 | 129243 | <reponame>jmorken/loda
; A099862: Bisection of A002808.
; 6,9,12,15,18,21,24,26,28,32,34,36,39,42,45,48,50,52,55,57,60,63,65,68,70,74,76,78,81,84,86,88,91,93,95,98,100,104,106,110,112,115,117,119,121,123,125,128,130,133,135,138,141,143,145,147,150,153,155,158,160
mul $0,2
add $0,3
cal $0,65090 ; Natural numbers which ... |
programs/oeis/325/A325334.asm | neoneye/loda | 22 | 129244 | <reponame>neoneye/loda
; A325334: Number of integer partitions of n with adjusted frequency depth 3 whose parts cover an initial interval of positive integers.
; 0,0,0,1,0,0,2,0,0,1,1,0,2,0,0,2,0,0,2,0,1,2,0,0,2,0,0,1,1,0,4,0,0,1,0,0,3,0,0,1,1,0,3,0,0,3,0,0,2,0,1,1,0,0,2,1,1,1,0,0,4,0,0,2,0,0,3,0,0,1,1,0,3,0,0,2,0,0,3,... |
08/FunctionCalls/SimpleFunction/SimpleFunction.asm | Savioor/nand2tetris2022-public | 0 | 129245 | <reponame>Savioor/nand2tetris2022-public<filename>08/FunctionCalls/SimpleFunction/SimpleFunction.asm
// function SimpleFunction.test 2
(f_SimpleFunction.test)
// write 0 for every local var
@LCL
A = M
M = 0
A = A + 1
M = 0
A = A + 1
@2
D = A
@SP
M = M + D
// push local 0
@0
D = A
@LCL
A = M + D
D = M
@SP
M = M + 1
A = ... |
util/cv/fdsiz.asm | olifink/smsqe | 0 | 129249 | ; Formatted date size V2.00 1988 <NAME> QJUMP
section cv
xdef cv_fdsiz
xref cv_fditb
xref cv_fdstb
include 'dev8_keys_err'
include 'dev8_keys_k'
include 'dev8_keys_qlv'
include 'dev8_mac_assert'
;+++
; Find formatted date siz... |
programs/oeis/157/A157820.asm | neoneye/loda | 22 | 129250 | <filename>programs/oeis/157/A157820.asm
; A157820: 27225n^2 + 2n.
; 27227,108904,245031,435608,680635,980112,1334039,1742416,2205243,2722520,3294247,3920424,4601051,5336128,6125655,6969632,7868059,8820936,9828263,10890040,12006267,13176944,14402071,15681648,17015675,18404152,19847079,21344456,22896283,24502560,26163287... |
oeis/000/A000356.asm | neoneye/loda-programs | 11 | 129251 | <reponame>neoneye/loda-programs
; A000356: Number of rooted cubic maps with 2n nodes and a distinguished Hamiltonian cycle: (2n)!(2n+1)! / (n!^2*(n+1)!(n+2)!).
; Submitted by <NAME>(s2)
; 1,5,35,294,2772,28314,306735,3476330,40831076,493684828,6114096716,77266057400,993420738000,12964140630900,171393565105575,229196885... |
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48.log_21829_1693.asm | ljhsiun2/medusa | 9 | 129252 | <reponame>ljhsiun2/medusa<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x16920, %rcx
nop
nop
nop
nop
xor %rbp, %rbp
mov (%rcx), %r14
nop
and %rdx, %rdx
lea addresses_D_ht+0x19050, %r13
nop
nop
nop
nop
add $... |
clonetest.asm | KaushikKPDARE/xv6-Clone-System-Call | 0 | 129254 | <reponame>KaushikKPDARE/xv6-Clone-System-Call<gh_stars>0
_clonetest: file format elf32-i386
Disassembly of section .text:
00000000 <child>:
int x = 0;
mutex_t lock;
void
child(void *arg_ptr)
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 83 ec 28 sub ... |
programs/oeis/056/A056791.asm | karttu/loda | 0 | 129255 | ; A056791: Weight of binary expansion of n + length of binary expansion of n.
; 1,2,3,4,4,5,5,6,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11
mov $2,$0
lpb $0,1
add $0,1
... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1181.asm | ljhsiun2/medusa | 9 | 129256 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r14
push %r8
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x13979, %r8
nop
nop
nop
xor $57797, %r13
movl $0x61626364, (%r8)
nop
nop
xor $27860, %r14
lea addresses_UC_ht+0x1d7b3, %rsi
nop
nop
nop
nop
and $58046... |
oeis/176/A176965.asm | neoneye/loda-programs | 11 | 129257 | ; A176965: a(n) = 2^(n-1) - (2^n*(-1)^n + 2)/3.
; Submitted by <NAME>(s2)
; 1,0,6,2,26,10,106,42,426,170,1706,682,6826,2730,27306,10922,109226,43690,436906,174762,1747626,699050,6990506,2796202,27962026,11184810,111848106,44739242,447392426,178956970,1789569706,715827882,7158278826,2863311530,28633115306,11453246122,11... |
oeis/001/A001468.asm | neoneye/loda-programs | 11 | 129258 | <reponame>neoneye/loda-programs
; A001468: There are a(n) 2's between successive 1's.
; Submitted by <NAME>
; 1,2,1,2,2,1,2,1,2,2,1,2,2,1,2,1,2,2,1,2,1,2,2,1,2,2,1,2,1,2,2,1,2,2,1,2,1,2,2,1,2,1,2,2,1,2,2,1,2,1,2,2,1,2,1,2,2,1,2,2,1,2,1,2,2,1,2,2,1,2,1,2,2,1,2,1,2,2,1,2,2,1,2,1,2,2,1,2,2,1,2,1,2,2,1,2,1,2,2,1
mov $1,$0... |
_build/dispatcher/jmp_ippsSHA384Final_4d0fc4d2.asm | zyktrcn/ippcp | 1 | 129259 | <reponame>zyktrcn/ippcp
extern m7_ippsSHA384Final:function
extern n8_ippsSHA384Final:function
extern y8_ippsSHA384Final:function
extern e9_ippsSHA384Final:function
extern l9_ippsSHA384Final:function
extern n0_ippsSHA384Final:function
extern k0_ippsSHA384Final:function
extern ippcpJumpIndexForMergedLibs
extern ippcpSafe... |
programs/oeis/049/A049474.asm | neoneye/loda | 22 | 129260 | <filename>programs/oeis/049/A049474.asm
; A049474: a(n) = ceiling(n/sqrt(2)).
; 0,1,2,3,3,4,5,5,6,7,8,8,9,10,10,11,12,13,13,14,15,15,16,17,17,18,19,20,20,21,22,22,23,24,25,25,26,27,27,28,29,29,30,31,32,32,33,34,34,35,36,37,37,38,39,39,40,41,42,42,43,44,44,45,46,46,47,48,49,49,50,51,51,52,53,54,54,55,56,56,57,58,58,59,6... |
oeis/295/A295552.asm | neoneye/loda-programs | 11 | 129261 | <gh_stars>10-100
; A295552: a(n) = n! * [x^n] exp(x*exp(n*x)).
; Submitted by <NAME>
; 1,1,5,46,689,15476,483157,19719022,1009495489,63119450152,4728073048901,417482964953594,42834647403146161,5043607239173464924,674409403861210214485,101517071981284179924526,17074451852556909059698433,3187883879639402167714593488,6568... |
KickAssembler/Examples/Fractal2/fractal.asm | hculpan/6502-sbc | 0 | 129262 | <filename>KickAssembler/Examples/Fractal2/fractal.asm<gh_stars>0
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// Bitmap Fractal Example for Kick Assembler
//------------------------------------------... |
programs/oeis/074/A074796.asm | neoneye/loda | 22 | 129263 | ; A074796: Number of numbers k <= n such that tau(k) == 2 (mod 3) where tau(k) = A000005(k) is the number of divisors of k.
; 0,1,2,2,3,3,4,4,4,4,5,5,6,6,6,7,8,8,9,9,9,9,10,11,11,11,11,11,12,13,14,14,14,14,14,14,15,15,15,16,17,18,19,19,19,19,20,20,20,20,20,20,21,22,22,23,23,23,24,24,25,25,25,25,25,26,27,27,27,28,29,29,... |
Transynther/x86/_processed/US/_st_sm_/i7-7700_9_0x48.log_21829_558.asm | ljhsiun2/medusa | 9 | 129264 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r15
push %r8
push %r9
push %rax
push %rbx
push %rdi
lea addresses_A_ht+0x1086b, %rdi
nop
nop
sub %r9, %r9
movw $0x6162, (%rdi)
nop
nop
nop
nop
nop
lfence
lea addresses_A_ht+0x9753, %r8
clflush (%r8)
nop
sub $6841, %rax
movl $0x61626364, (%r8)
n... |
audio/sfx/intro_whoosh.asm | adhi-thirumala/EvoYellow | 16 | 129266 | <gh_stars>10-100
SFX_Intro_Whoosh_Ch1:
unknownnoise0x20 4, 44, 32
unknownnoise0x20 3, 160, 32
unknownnoise0x20 3, 176, 33
unknownnoise0x20 3, 192, 34
unknownnoise0x20 15, 210, 36
endchannel
|
programs/oeis/117/A117364.asm | neoneye/loda | 22 | 129267 | <reponame>neoneye/loda
; A117364: a(n) = largest prime less than the largest prime dividing n (or 1 if there is no such prime).
; 1,1,2,1,3,2,5,1,2,3,7,2,11,5,3,1,13,2,17,3,5,7,19,2,3,11,2,5,23,3,29,1,7,13,5,2,31,17,11,3,37,5,41,7,3,19,43,2,5,3,13,11,47,2,7,5,17,23,53,3,59,29,5,1,11,7,61,13,19,5,67,2,71,31,3,17,7,11,73... |
source/MicroBenchX.Ipc/IpcTests/movself_int64.asm | clayne/MicroBenchX | 15 | 129269 | <reponame>clayne/MicroBenchX
[BITS 64]
%include "parameters.inc"
extern exit
global movself_int64
section .text
movself_int64:
push rbp
mov rax, ITERATIONS_movself_int64
mov rbx, 1
mov rcx, 2
mov rdx, 3
mov rsi, 4
mov rdi, 5
mov r8, 6
mov r9, 7
mov r10, 8
mov r11, 9
mov... |
refhraktor-grad.asm | DChristianson/refhraktorball | 0 | 129270 |
processor 6502
include "vcs.h"
include "macro.h"
NTSC = 0
PAL60 = 1
IFNCONST SYSTEM
SYSTEM = NTSC
ENDIF
; ----------------------------------
; constants
#if SYSTEM = NTSC
; NTSC Colors
WHITE = $0f
BLACK = 0
WALL_COLOR = $A0
BALL_COLOR = $2C
#else
; PAL Colors
WHITE = $0E
BLACK = 0
WALL_COLOR = ... |
programs/oeis/287/A287554.asm | neoneye/loda | 22 | 129273 | ; A287554: Positions of 2 in A053839.
; 3,6,9,16,18,21,28,31,33,40,43,46,52,55,58,61,66,69,76,79,81,88,91,94,100,103,106,109,115,118,121,128,129,136,139,142,148,151,154,157,163,166,169,176,178,181,188,191,196,199,202,205,211,214,217,224,226,229,236,239,241,248,251,254,258,261,268,271,273,280,283,286,292,295,298,301,307... |
Transynther/x86/_processed/NONE/_zr_xt_sm_/i7-7700_9_0xca.log_21829_602.asm | ljhsiun2/medusa | 9 | 129274 | <filename>Transynther/x86/_processed/NONE/_zr_xt_sm_/i7-7700_9_0xca.log_21829_602.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x1bff, %r12
nop
nop
nop
nop
nop
xor %rdx, %rdx
movb (%r12), %r13b
nop
add $27212, %r11
l... |
release/src/router/gmp/source/mpn/x86_64/rsh1add_n.asm | zhoutao0712/rtn11pb1 | 12 | 129275 | dnl AMD64 mpn_rsh1add_n -- rp[] = (up[] + vp[]) >> 1
dnl Copyright 2003, 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 modify
dnl it under the terms of the GNU Lesser General Public License as published
dn... |
c/arm64nt-jump.asm | burgerrg/ChezScheme | 0 | 129276 | <reponame>burgerrg/ChezScheme
; See "a6nt-jump.asm" for an explanation of why this implementation exists
AREA .text, CODE, READONLY
EXPORT S_setjmp
EXPORT S_longjmp
S_setjmp
str x18, [x0, #0]
str x19, [x0, #8]
str x20, [x0, #16]
str x21, [x0, #24]
str x22, [x0, #32]
str x23... |
data/pokemon/base_stats/politoed.asm | AtmaBuster/pokeplat-gen2 | 6 | 129278 | <filename>data/pokemon/base_stats/politoed.asm
db 0 ; species ID placeholder
db 90, 75, 75, 70, 90, 100
; hp atk def spd sat sdf
db WATER, WATER ; type
db 45 ; catch rate
db 185 ; base exp
db NO_ITEM, KINGS_ROCK ; items
db GENDER_F50 ; gender ratio
db 20 ; step cycles to hatch
INCBIN "gfx/pokemo... |
programs/oeis/055/A055642.asm | karttu/loda | 0 | 129279 | <reponame>karttu/loda
; A055642: Number of digits in decimal expansion of n.
; 1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3... |
libsrc/_DEVELOPMENT/drivers/general/driver_error_enolck_zc.asm | jpoikela/z88dk | 640 | 129280 |
SECTION code_driver
SECTION code_driver_general
PUBLIC driver_error_enolck_zc
EXTERN error_enolck_zc
pop hl
driver_error_enolck_zc:
; exit point for drivers that restores ix from stack
pop ix
jp error_enolck_zc
|
Transynther/x86/_processed/US/_zr_/i3-7100_9_0xca_notsx.log_167_1957.asm | ljhsiun2/medusa | 9 | 129281 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/US/_zr_/i3-7100_9_0xca_notsx.log_167_1957.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %rax
push %rdi
lea addresses_UC_ht+0x54d8, %rax
nop
nop
nop
nop
nop
and %r10, %r10
movw $0x6162, (%rax)
nop
inc %rdi
pop %rdi
pop %rax
pop %r1... |
2003-spring/mandlebrot/_bckup.asm | ece291/machine-problems | 3 | 129282 | ; ECE 291 Spring 2003 MP4
; Mandlebrot Fractals
;
; Completed By:
; Your Name
; Date
;
; <NAME>
; Guest Authors - <NAME>, <NAME>
; University of Illinois Urbana Champaign
; Dept. of Electrical & Computer Engineering
;
; Ver 1.0
%include "lib291.inc"
;%include "libmp4.inc"
BITS 32
GLOBAL _main
; Define Keybo... |
src/test/resources/cpuTests/asmsrc/mul.asm | Sophos06/spice86 | 46 | 129284 | <reponame>Sophos06/spice86
use16
start:
mov sp,192
; mul word
mov bx,00003h
mov ax,00007h
mov dx,0ffffh
mul bx
mov word[0],ax
mov word[2],dx
pushf
mov dx,0a320h
mov ax,0ffffh
mul dx
mov word[4],ax
mov word[6],dx
pushf
mov ax,0ffffh
mov word[8],01h
mul word[8]
mov word[10],ax
mov word[12],dx
pushf
mov ax,0ffffh
mo... |
Driver/Socket/EtherPKT/ethpktArp.asm | steakknife/pcgeos | 504 | 129286 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) <NAME>. All rights reserved.
PROJECT: Native ethernet support
MODULE: Ethernet packet driver
FILE: ethodiArp.asm
AUTHOR: <NAME>.
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:
Name... |
oeis/277/A277722.asm | neoneye/loda-programs | 11 | 129287 | <reponame>neoneye/loda-programs<filename>oeis/277/A277722.asm<gh_stars>10-100
; A277722: a(n) = floor(n*tau^2) where tau is the tribonacci constant (A058265).
; Submitted by <NAME>(w1)
; 0,3,6,10,13,16,20,23,27,30,33,37,40,43,47,50,54,57,60,64,67,71,74,77,81,84,87,91,94,98,101,104,108,111,115,118,121,125,128,131,135,13... |
sbsext/ext/clock.asm | olifink/smsqe | 0 | 129288 | <gh_stars>0
* Resident clock program 1985 T.Tebby QJUMP
*
section exten
*
xdef clock
*
xref ut_chan0 get channel ID or zero
xref ut_gxst1 get one (only) string
xref ut_crjd1 create Job
xref ut_ajob activate Job
xref ut_rjbme suicide
xref tm_susrc suspend and read clock
xref err_bp oops
*
incl... |
Transynther/x86/_processed/AVXALIGN/_st_zr_un_4k_/i3-7100_9_0x84_notsx.log_19946_1164.asm | ljhsiun2/medusa | 9 | 129289 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %r8
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x60a5, %r8
nop
nop
nop
inc %r14
movw $0x6162, (%r8)
nop
nop
cmp $60047, %rax
lea addresses_UC_ht+0xd675, %rax
nop
nop
nop
nop
xor $14265, %r14
movl $0x61626364, (%rax)
nop... |
Transynther/x86/_processed/NC/_ht_zr_un_/i7-7700_9_0x48.log_21829_1298.asm | ljhsiun2/medusa | 9 | 129290 | <filename>Transynther/x86/_processed/NC/_ht_zr_un_/i7-7700_9_0x48.log_21829_1298.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r14
push %r15
push %r8
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x1c0d6, %r14
nop
nop
cmp $42203, %r15
vmovups (%r14), %ymm7
vextracti128 $0, %ym... |
programs/oeis/325/A325911.asm | neoneye/loda | 22 | 129291 | <reponame>neoneye/loda
; A325911: Screaming numbers in base 16: numbers that have hexadecimal representation of AAAAAAA...
; 10,170,2730,43690,699050,11184810,178956970,2863311530,45812984490,733007751850,11728124029610,187649984473770,3002399751580330,48038396025285290,768614336404564650,12297829382473034410,196765270... |
1-source-files/original-sources/converted_source_files/a.tcode.asm | markmoxon/elite-a-beebasm | 16 | 129292 | \ a.tcode - ELITE III docked code
INCLUDE "converted_source_files/a.global.asm"
CODE% = &11E3
ORG CODE%
LOAD% = &11E3
EXEC% = &11E3
.dcode_in
JMP dcode_2
.boot_in
JMP boot_2
.wrch_in
JMP wrchdst
EQUW &114B
.brk_in
JMP brk_go
INCLUDE "converted_source_files/a.tcode_1.asm"
INCLUDE "converted_source_fil... |
examples/quick_sort_block.asm | neoISAcpu/basicVM | 1 | 129293 | # quick sort
# const
size_of_array EQU 3000
# fill array with random
main:
const.i32 0 #i
gen_loop:
blk.4
fetch.1 1 #i i
const.a32 rndState #i i rndState
const.i8 6 #i i rndState u32
load #i i [rndState]
blk.2
const.a32 random #i i [rndState] rand... |
projects/06/instructions/ADOperations.asm | chapnitsky/Nand2Tetris | 0 | 129294 | // Copyright <NAME>, January 2018.
// Free for educational use.
// Exercises all computations on the A and D registers.
// This is not a program and cannot be tested by running the resulting
// .hack file. Instead, compare to the .hack file produced by the
// given assembler.
D=0
D=1
D=-1
D=D
D=A
D=!D
D=!A
D=-D
D=-... |
Transynther/x86/_processed/NONE/_zr_/i3-7100_9_0x84_notsx.log_10243_3084.asm | ljhsiun2/medusa | 9 | 129295 | <filename>Transynther/x86/_processed/NONE/_zr_/i3-7100_9_0x84_notsx.log_10243_3084.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r15
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x658d, %rsi
lea addresses_D_ht+0x854d, %rdi
nop
nop
nop
nop
and $45843, %r15
mov $127, %rcx
rep mo... |
Transynther/x86/_processed/AVXALIGN/_st_zr_un_4k_/i9-9900K_12_0xca.log_21829_1709.asm | ljhsiun2/medusa | 9 | 129297 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r15
push %r9
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x194f7, %rsi
lea addresses_D_ht+0xe9bb, %rdi
add %r13, %r13
mov $122, %rcx
rep movsb
nop
dec %r10
lea addresses_WC_ht+0x7e37, %r9
nop
nop
nop
nop
and $3257, %r15
mov (%r9), %es... |
libpal/intel_64bit_systemv_nasm/vmxoff_checked.asm | mars-research/pal | 26 | 129298 | bits 64
default rel
section .text
global pal_execute_vmxoff_checked
pal_execute_vmxoff_checked :
vmxoff
jbe pal_execute_vmxoff_checked_failure
mov rax, 0x1
ret
pal_execute_vmxoff_checked_failure :
mov rax, 0x0
ret
|
test/asm/string-formatting.asm | michealccc/rgbds | 522 | 129299 | n equ 300
m equ -42
f equ -123.0456
pi equ 3.14159
s equs "hello"
println "<{ -6d:n}> <{+06u:n}> <{5x:n}> <{#16b:n}>"
println "<{u:m}> <{+3d:m}> <{#016o:m}>"
println "<{f:pi}> <{06.f:f}> <{.10f:f}>"
println "<{#-10s:s}> <{10s:s}>"
foo: macro
println "<{\1}>"
endm
foo -6d:n ; space is trimmed
|
programs/oeis/055/A055950.asm | neoneye/loda | 22 | 129300 | ; A055950: n + reversal of base 5 digits of n (written in base 10).
; 0,2,4,6,8,6,12,18,24,30,12,18,24,30,36,18,24,30,36,42,24,30,36,42,48,26,52,78,104,130,36,62,88,114,140,46,72,98,124,150,56,82,108,134,160,66,92,118,144,170,52,78,104,130,156,62,88,114,140,166,72,98,124,150,176,82,108,134,160,186,92,118,144,170,196,78... |
examples/vga/e3.asm | crgimenes/assembly | 1 | 129301 | <reponame>crgimenes/assembly
;set video mode
mov ah, 00h
mov al, 13h
int 10h
;write pixels on screen
mov ah, 0ch
mov bh, 0
mov dx, 5
mov cx, 5
mov al, 0100b
int 10h
|
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_979.asm | ljhsiun2/medusa | 9 | 129302 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x9685, %rsi
lea addresses_WC_ht+0x1085, %rdi
nop
nop
dec %rbx
mov $92, %rcx
rep movsb
nop
nop
xor %r10, %r10
lea addresses_UC_ht+0x8c15, %r15
nop
nop
nop
nop
and $20928, %rsi
movl ... |
oeis/118/A118752.asm | neoneye/loda-programs | 11 | 129304 | <gh_stars>10-100
; A118752: a(n) = product[k=0..n] P(k), where P(k) is the smallest prime > 3*n. a(n) = product[k=0..n] A118751(k).
; Submitted by <NAME>
; 2,10,70,770,10010,170170,3233230,74364290,2156564410,62540367890,1938751404590,71733801969830,2654150672883710,108820177588232110,4679267636293980730,21992557890581... |
CryptoPkg/Library/OpensslLib/X64/crypto/aes/aesni-mb-x86_64.nasm | nicklela/edk2 | 3,012 | 129305 | <reponame>nicklela/edk2
; WARNING: do not edit!
; Generated from openssl/crypto/aes/asm/aesni-mb-x86_64.pl
;
; Copyright 2013-2020 The OpenSSL Project Authors. All Rights Reserved.
;
; Licensed under the OpenSSL license (the "License"). You may not use
; this file except in compliance with the License. You can ... |
programs/oeis/286/A286806.asm | jmorken/loda | 1 | 129306 | ; A286806: Positions of 1 in A286804; complement of A286805.
; 3,6,7,10,11,14,17,18,21,22,25,28,29,32,33,36,37,40,43,44,47,48,51,54,55,58,59,62,63,66,69,70,73,74,77,80,81,84,85,88,91,92,95,96,99,100,103,106,107,110,111,114,117,118,121,122,125,126,129,132,133,136,137,140,143,144,147,148,151,154,155,158,159,162,163,166,1... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.