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 |
|---|---|---|---|---|
ascii_code_print.asm | tz01x/8086_emu.ind | 0 | 126958 |
mov cx,0 ; set cx value to 0
loop_i:
mov bx,cx ; move the cx value to bx
mov cx,10 ; move 10 to cx for to run loop sequence to run 10 times
loop_j:
; in order to write to console, or print a ascii value to console oration to work
; set ah to 2
; then DL register ... |
P6/data_P6/testpoint/testpoint49.asm | alxzzhou/BUAA_CO_2020 | 1 | 126959 | ori $1, $0, 8
ori $2, $0, 4
ori $3, $0, 2
ori $4, $0, 1
sw $1, 0($0)
sw $3, 4($0)
sw $4, 8($0)
sw $2, 12($0)
sw $4, 16($0)
sw $4, 20($0)
sw $4, 24($0)
sw $2, 28($0)
sw $1, 32($0)
sw $2, 36($0)
sw $2, 40($0)
sw $4, 44($0)
sw $2, 48($0)
sw $1, 52($0)
sw $2, 56($0)
sw $2, 60($0)
sw $2, 64($0)
sw $4, 6... |
projects/04/assembler_programs/draw_rectangle.asm | UrielX/nand2tetris | 0 | 126960 | // Create a n x m rectangle by manipulating the screen register
// PSEUDO CODE:
// addr = SCREEN
// n = RAM[0]
// i = 0
// LOOP:
// if i > n goto END
// RAM[addr] = -1 (set pixels to black)
// addr = addr + 31
// i = i + 1
// goto LOOP
// END:
// goto END
@SCREEN
D=A
@addr
M=D // addr = 16384 register
... |
libsrc/_DEVELOPMENT/sound/bit/z80/asm_bit_beepfx/_bfx_16.asm | meesokim/z88dk | 0 | 126961 |
; BeepFX sound effect by shiru
; http://shiru.untergrund.net
SECTION rodata_sound_bit
PUBLIC _bfx_16
_bfx_16:
; Hit_2
defb 2 ;noise
defw 2,2000,32776
defb 0
|
Semester 5/Microprocessors/exp3-A.asm | atharva8300/Engineering-Practical-Experiments | 7 | 126962 | ; BCD TO HEX
.model small
.stack
.data
m1 DB 10,13, "hex equivalent is: $"
number DW 14
.code
Disp MACRO xx
MOV AH, 09
LEA DX, XX
INT 21H
ENDM
.startup
MOV AX, number
MOV BX, 16
MOV CL, 0
LOOP1:
MOV DX, 0
DIV BX
... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_175.asm | ljhsiun2/medusa | 9 | 126964 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r15
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x5161, %rdx
nop
sub %rax, %rax
movw $0x6162, (%rdx)
nop
nop
nop
nop
dec %r15
lea addresses_normal_ht+0x70b1, %rsi
lea addresses_D_ht+0x25e1, %rdi
nop
nop
nop
cmp %r15, %r15
mo... |
Tools/esp/tests/macro.asm | steakknife/pcgeos | 504 | 126965 | <reponame>steakknife/pcgeos
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) Berkeley Softworks 1989 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Esp Test Suite
FILE: macro.asm
AUTHOR: <NAME>, Sep 4, 1989
REVISION HISTORY:
Name Date Description
----... |
oeis/052/A052560.asm | neoneye/loda-programs | 11 | 126966 | <gh_stars>10-100
; A052560: a(n) = 3*n!.
; Submitted by <NAME>
; 3,3,6,18,72,360,2160,15120,120960,1088640,10886400,119750400,1437004800,18681062400,261534873600,3923023104000,62768369664000,1067062284288000,19207121117184000,364935301226496000,7298706024529920000,153272826515128320000,3372002183332823040000,7755605021... |
src/kernel/exception.asm | bbworld1/egg-kernel | 8 | 126967 | ; Exception handler code
%include "constants.asm"
; The 32 x86 exceptions trigger interrupts 0..31
; There are 32 exception handlers that jump to a common stub, which sets up the environment for the C exception handler
; 2nd half of the exception handler (exception.c)
EXTERN exceptionHandler
; Expose symbols so the... |
oeis/095/A095886.asm | neoneye/loda-programs | 11 | 126968 | <reponame>neoneye/loda-programs
; A095886: Triangle read by rows: T(n,k) = (n-k)^n, n>=1, 1<=k<=n.
; Submitted by <NAME>(s2)
; 0,1,0,8,1,0,81,16,1,0,1024,243,32,1,0,15625,4096,729,64,1,0,279936,78125,16384,2187,128,1,0,5764801,1679616,390625,65536,6561,256,1,0,134217728,40353607,10077696,1953125,262144,19683,512,1,0,34... |
programs/oeis/218/A218836.asm | karttu/loda | 1 | 126969 | <reponame>karttu/loda<gh_stars>1-10
; A218836: Unmatched value maps: number of nX2 binary arrays indicating the locations of corresponding elements not equal to any horizontal or antidiagonal neighbor in a random 0..1 nX2 array.
; 1,2,7,21,65,200,616,1897,5842,17991,55405,170625,525456,1618192,4983377,15346786,47261895... |
programs/oeis/276/A276886.asm | karttu/loda | 0 | 126970 | <filename>programs/oeis/276/A276886.asm
; A276886: Sums-complement of the Beatty sequence for 2 + phi.
; 1,2,5,6,9,12,13,16,17,20,23,24,27,30,31,34,35,38,41,42,45,46,49,52,53,56,59,60,63,64,67,70,71,74,77,78,81,82,85,88,89,92,93,96,99,100,103,106,107,110,111,114,117,118,121,122,125,128,129,132,135,136
mov $4,$0
add $4... |
programs/oeis/082/A082667.asm | neoneye/loda | 22 | 126971 | ; A082667: a(n) = floor(2n/3) * ceiling(2n/3) / 2.
; 0,1,2,3,6,8,10,15,18,21,28,32,36,45,50,55,66,72,78,91,98,105,120,128,136,153,162,171,190,200,210,231,242,253,276,288,300,325,338,351,378,392,406,435,450,465,496,512,528,561,578,595,630,648,666,703,722,741
mov $2,$0
sub $2,1
div $2,3
sub $0,$2
mul $2,$0
add $0,$2
|
unittests/ASM/Secondary/13_66_06.asm | cobalt2727/FEX | 628 | 126972 | <reponame>cobalt2727/FEX
%ifdef CONFIG
{
"RegData": {
"XMM0": ["0x0000000000000000", "0x0000000000000000"],
"XMM1": ["0x6364000067680000", "0x7374000077780000"],
"XMM2": ["0x4243440046474800", "0x5253540056575800"],
"XMM3": ["0xC2C4C6C8CACCCED0", "0xE2E4E6E8EAECEEF0"]
},
"MemoryRegions": {
"0x... |
libsrc/_DEVELOPMENT/arch/sms/SMSlib/z80/asm_SMSlib_addTwoAdjoiningSprites.asm | jpoikela/z88dk | 640 | 126973 | ; **************************************************
; SMSlib - C programming library for the SMS/GG
; ( part of devkitSMS - github.com/sverx/devkitSMS )
; **************************************************
INCLUDE "SMSlib_private.inc"
SECTION code_clib
SECTION code_SMSlib
PUBLIC asm_SMSlib_addTwoAdjoiningSprites
E... |
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0x48.log_3422_2236.asm | ljhsiun2/medusa | 9 | 126974 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r15
push %r9
push %rbp
push %rdi
push %rdx
lea addresses_D_ht+0x1873e, %rbp
nop
nop
and $50156, %rdx
mov $0x6162636465666768, %rdi
movq %rdi, (%rbp)
nop
and %r12, %r12
lea addresses_normal_ht+0x1d4ea, %r9
nop
add %r14, %r14
movw $0x6162, (%r9)
add $... |
src/cycle.asm | BlockoS/up-17 | 3 | 126975 | <reponame>BlockoS/up-17
.zp
cycle_index .ds 1
palette.index .ds 2
.bss
palette.lo .ds 16
palette.hi .ds 16
.code
;;---------------------------------------------------------------------
; name : cycle.init
; desc : initialize cycling effect
; in : _si source palette
; A palette id
; out :... |
programs/oeis/107/A107279.asm | neoneye/loda | 22 | 126976 | <reponame>neoneye/loda
; A107279: a(n) = 1 if n is an odd prime, a(n) = 2 if n is a nonzero even number, otherwise a(n) = 0.
; 0,0,2,1,2,1,2,1,2,0,2,1,2,1,2,0,2,1,2,1,2,0,2,1,2,0,2,0,2,1,2,1,2,0,2,0,2,1,2,0,2,1,2,1,2,0,2,1,2,0,2,0,2,1,2,0,2,0,2,1,2,1,2,0,2,0,2,1,2,0,2,1,2,1,2,0,2,0,2,1,2,0,2,1,2,0,2,0,2,1,2,0,2,0,2,0,2... |
Transynther/x86/_processed/NC/_zr_/i3-7100_9_0x84_notsx.log_21829_11.asm | ljhsiun2/medusa | 9 | 126977 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x26b1, %rsi
lea addresses_UC_ht+0x14061, %rdi
nop
nop
nop
nop
nop
xor %r11, %r11
mov $117, %rcx
rep movsq
nop
nop
sub %r9, %r9
lea addresses_UC_ht+0x813d, %rdx
nop
add $54598, %r10
vmovu... |
programs/oeis/285/A285193.asm | karttu/loda | 0 | 126978 | <gh_stars>0
; A285193: Expansion of 1/(1+x+2*x^2) mod 3.
; 1,2,2,0,2,1,1,0,1,2,2,0,2,1,1,0,1,2,2,0,2,1,1,0,1,2,2,0,2,1,1,0,1,2,2,0,2,1,1,0,1,2,2,0,2,1,1,0,1,2,2,0,2,1,1,0,1,2,2,0,2,1,1,0,1,2,2,0,2,1,1,0,1,2,2,0,2,1,1,0,1,2,2,0,2,1,1,0,1,2,2,0,2,1,1,0,1,2,2,0,2,1,1,0,1,2,2,0,2,1,1,0,1,2,2,0,2,1,1,0,1,2,2,0,2,1,1,0,1,2,2... |
Working Disassembly/General/Sprites/Sonic/Anim - Sonic Snowboard.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 5 | 126979 | <filename>Working Disassembly/General/Sprites/Sonic/Anim - Sonic Snowboard.asm
Ani_39476: dc.w byte_39482-Ani_39476
dc.w byte_39488-Ani_39476
dc.w byte_3948B-Ani_39476
dc.w byte_3948E-Ani_39476
dc.w byte_3949A-Ani_39476
dc.w byte_3949D-Ani_39476
byte_39482: dc.b 7, 6, 7, 8, $FE, 1
byte_39488: dc.b $... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1255.asm | ljhsiun2/medusa | 9 | 126980 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r15
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0xbd5b, %rbp
nop
nop
nop
nop
cmp $57504, %rcx
movb (%rbp), %r12b
and $31057, %rsi
lea addresses_WT_ht+0x19876, %r15
nop
nop
nop
nop
dec %r14
and $0xffffffffffffffc0, %r15
... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_596.asm | ljhsiun2/medusa | 9 | 126981 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_596.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r15
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x14de2, %rsi
lea addresses_WT_ht+0x10e3a, %rdi
nop
nop
xor $30580, %r9
mov $79, %rcx
rep movsw
nop
nop
no... |
software/tritiled30/src/HEF_access.asm | kontakt/tritiled | 60 | 126982 | ;;;
;;; assembly routines for High-Endurance Flash (HEF) access
;;;
;;; Copyright (C) 2018 <NAME>
;;; Released under MIT License (see file)
;;;
#include <xc.inc>
#include <pic12lf1571.inc>
;;;
;;; read one word of flash (result in PMDAT)
;;;
GLOBAL _read_hef
SIGNAT _read_hef, 88
PSECT hef_r_text,local,cl... |
oeis/273/A273053.asm | neoneye/loda-programs | 11 | 126984 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A273053: Numbers n such that 15*n^2 + 16 is a square.
; Submitted by <NAME>
; 0,4,32,252,1984,15620,122976,968188,7622528,60012036,472473760,3719778044,29285750592,230566226692,1815244062944,14291386276860,112515846151936,885835382938628,6974167217357088,549075023559180... |
source/make-disc.asm | kieranhj/intro-to-interrupts | 5 | 126985 | \ ******************************************************************
\ * Make Intro to Interrupts disc.
\ ******************************************************************
PUTFILE "build\vsync.bin", "vsync", &2000
PUTFILE "build\100hz.bin", "100hz", &2000
PUTFILE "build\screen.bin", "screen", &2000
PUTFILE "build\spr... |
programs/oeis/055/A055037.asm | karttu/loda | 0 | 126986 | ; A055037: Number of numbers <= n with an even number of prime factors (counted with multiplicity).
; 1,1,1,2,2,3,3,3,4,5,5,5,5,6,7,8,8,8,8,8,9,10,10,11,12,13,13,13,13,13,13,13,14,15,16,17,17,18,19,20,20,20,20,20,20,21,21,21,22,22,23,23,23,24,25,26,27,28,28,29,29,30,30,31,32,32,32,32,33,33,33,33,33,34,34,34
mov $2,$0
... |
sound/sfxasm/C9.asm | NatsumiFox/Sonic-3-93-Nov-03 | 7 | 126988 | <reponame>NatsumiFox/Sonic-3-93-Nov-03
C9_Header:
sHeaderInit ; Z80 offset is $DAB7
sHeaderPatch C9_Patches
sHeaderTick $01
sHeaderCh $01
sHeaderSFX $80, $05, C9_FM5, $09, $05
C9_FM5:
sPatFM $00
dc.b nC5, $02, nC5, $08
sStop
C9_Patches:
; Patch $00
; $0B
; $53, $55, $07, $0A, $1F, $1F, $0F, $0F
; $... |
test_program/branch_hazard.asm | Timothy-LiuXuefeng/PipelineCPU | 0 | 126989 | <reponame>Timothy-LiuXuefeng/PipelineCPU
j begin
begin:
addi $t0, $zero, 5 # $t0 = 5
addi $t1, $zero, 5 # $t1 = 5
beq $t0, $t0, lab1
addi $t2, $zero, 10 # skip
lab1:
addi $t3, $t1, 5 # $t3 = 10
beq $t3, $t1, lab1
add $t3, $t0, $t3 # $t3 = 15
sub $t4, $zer... |
EXP5/EXP5.asm | ronchifabricio/progparamicroprocessadores | 2 | 126990 |
_main:
;EXP5.c,3 :: void main() {
;EXP5.c,5 :: ADCON1 = 0x06;
MOVLW 6
MOVWF ADCON1+0
;EXP5.c,6 :: TRISA.RA2 = 0;
BCF TRISA+0, 2
;EXP5.c,7 :: TRISA.RA3 = 0;
BCF TRISA+0, 3
;EXP5.c,8 :: TRISA.RA4 = 0;
BCF TRISA+0, 4
;EXP5.c,9 :: TRISA.RA5 = 0;
BCF TR... |
Irvine/Examples/ch16/DrawLine.asm | alieonsido/ASM_TESTING | 0 | 126992 | <gh_stars>0
TITLE DrawLine Program (DrawLine.asm)
; This program draws text and a straight line in graphics mode.
; Last update: 4/3/2007
; Windows XP users: To run this program, open a command prompt using the
; command_prompt shortcut provided in this folder. Then switch to full-screen
; mode by press... |
oeis/094/A094292.asm | neoneye/loda-programs | 11 | 126993 | ; A094292: Number of (s(0), s(1), ..., s(n)) such that 0 < s(i) < 5 and |s(i) - s(i-1)| <= 1 for i = 1,2,....,n, s(0) = 2, s(n) = 4.
; Submitted by <NAME>
; 0,0,1,3,9,25,68,182,483,1275,3355,8811,23112,60580,158717,415715,1088661,2850645,7463884,19541994,51163695,133951675,350695511,918141623,2403740304,6293097000,1647... |
programs/oeis/140/A140113.asm | karttu/loda | 0 | 126994 | <gh_stars>0
; A140113: a(1)=1, a(n)=a(n-1)+n if n odd, a(n)=a(n-1)+ n^2 if n is even.
; 1,5,8,24,29,65,72,136,145,245,256,400,413,609,624,880,897,1221,1240,1640,1661,2145,2168,2744,2769,3445,3472,4256,4285,5185,5216,6240,6273,7429,7464,8760,8797,10241,10280,11880,11921,13685,13728,15664,15709,17825,17872,20176,20225,22... |
programs/oeis/005/A005902.asm | neoneye/loda | 22 | 126997 | <filename>programs/oeis/005/A005902.asm
; A005902: Centered icosahedral (or cuboctahedral) numbers, also crystal ball sequence for f.c.c. lattice.
; 1,13,55,147,309,561,923,1415,2057,2869,3871,5083,6525,8217,10179,12431,14993,17885,21127,24739,28741,33153,37995,43287,49049,55301,62063,69355,77197,85609,94611,104223,114... |
hmi_sdk/hmi_sdk/Tools/ffmpeg-2.6.2/libswscale/x86/scale.asm | APCVSRepo/android_packet | 4 | 126998 | ;******************************************************************************
;* x86-optimized horizontal line scaling functions
;* Copyright (c) 2011 <NAME> <<EMAIL>>
;*
;* This file is part of FFmpeg.
;*
;* FFmpeg is free software; you can redistribute it and/or
;* modify it under the terms of the GNU Lesser... |
Library/SpecUI/PM/Win/winDraw.asm | steakknife/pcgeos | 504 | 126999 | COMMENT @-----------------------------------------------------------------------
Copyright (c) GeoWorks 1988 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: PM/Win (window code specific to PM)
FILE: winDraw.asm
ROUTINES:
Name Description
---- -----------
OpenWinGetBounds gets bounds for object
OpenWinG... |
sim/asm/fn43.asm | nanamake/avr_cpu | 2 | 127000 | <filename>sim/asm/fn43.asm
;-------------------
; test for cp/cpc
;-------------------
.equ sreg = 0x3f
;-------------------
ldi r16,0x28
ldi r24,0x70
mov r7 ,r16
mov r8 ,r24
ldi r16,0xc0
ldi r24,0xd8
ldi r17,0x00
ldi r25,0x7f
mov r6 ,r17
mov r9 ,r25
ldi r17,0... |
programs/oeis/048/A048724.asm | neoneye/loda | 22 | 127001 | ; A048724: Write n and 2n in binary and add them mod 2.
; Coded manually 2021-03-30 by <NAME>, https://github.com/neoneye
; 0,3,6,5,12,15,10,9,24,27,30,29,20,23,18,17,48,51,54,53,60,63,58,57,40,43,46,45,36,39,34,33,96,99,102,101,108,111,106,105,120,123,126,125,116,119,114,113,80,83,86,85,92,95,90,89,72,75,78,77,68,71,6... |
base/mvdm/wow16/win87em/emerror.asm | npocmaka/Windows-Server-2003 | 17 | 127002 | <reponame>npocmaka/Windows-Server-2003
page ,132
subttl emerror.asm - Emulator error handler
;***
;emerror.asm - Emulator error handler
;
; Copyright (c) 1987-89, Microsoft Corporation
;
;Purpose:
; Emulator error handler
;
; This Module contains Proprietary Information of Microsoft
; Corporation and shoul... |
Directory_Structure/Projects/Example_1802_Projects/IO_Input.1802.asm | Jeff-Birt/TASM_vsCode_Extension | 4 | 127003 | ; I/O Input --- Set R(1)=0x000F, Set X=R(1), Input from data bus to Mem @ R(1)
; N0, N1, N2 indicate the lower nibble of the 6N Output instruction
; virtual system RAM, 0x0000 to 0x0039 ->
.org $0000 ; Start of variable Ram
BEGIN:
LDI $0F
PLO R1
LDI $00
PHI R1
SEX R1
INP 1
.end |
Transynther/x86/_processed/NONE/_ht_zr_un_/i7-7700_9_0x48.log_21829_694.asm | ljhsiun2/medusa | 9 | 127004 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r15
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x5f31, %rsi
lea addresses_WC_ht+0x16b41, %rdi
sub $43158, %r9
mov $66, %rcx
rep movsq
nop
nop
nop
sub %rdi, %rdi
lea addresses_D_ht+0xe5d1, %rsi
lea addresses_UC_ht+0x3691... |
smsq/qxl/comm/messadd.asm | olifink/smsqe | 0 | 127005 | <filename>smsq/qxl/comm/messadd.asm
; QXL Add Message to General Message Queue 1998 <NAME>
section comm
xdef qxl_mess_add
xdef qxl_mess_addi
include 'dev8_smsq_qxl_keys'
include 'dev8_keys_qu'
;+++
; This routine adds a message to the general message queue, it always waits
;
; a1 c p pointer to (length o... |
Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca_notsx.log_19_979.asm | ljhsiun2/medusa | 9 | 127006 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r15
push %r8
push %r9
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x16fec, %r11
nop
sub $4870, %rbp
mov $0x6162636465666768, %rdx
movq %rdx, %xmm5
movups %xmm5, (%r11)
nop
nop
nop
nop
nop
cmp %r12, %r12
lea addresses_D_ht+0... |
Library/GrObj/Guardian/grobjVisGuardianTransfer.asm | steakknife/pcgeos | 504 | 127008 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1989 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: grobjVisGuardianTransfer.asm
AUTHOR: <NAME>
REVISION HISTORY:
Name Date Description
---- ---- -----------
jon 19 may 1992 initial ve... |
common/asms/scrnlib.asm | derekdickinson/bisync-3780 | 0 | 127009 | <filename>common/asms/scrnlib.asm
IDEAL
%TITLE "Screen handling routines."
DOSSEG
MODEL MEDIUM
include "\common\asms\scrnmacs.inc"
include "\common\asms\scrnmacb.inc"
GLOBAL _video_base:WORD
GLOBAL _vidmode:WORD
GLOBAL _ro:WORD
GLOBAL _col:WORD
GLOBAL _def_attr:BYT... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_187.asm | ljhsiun2/medusa | 9 | 127010 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %rax
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x12b68, %rdi
dec %r15
mov (%rdi), %r10d
nop
inc %rdx
lea addresses_WC_ht+0x69e8, %rsi
lea addresses_WC_ht+0x1cde8, %rdi
nop
nop
add %rax, %rax
mov $1... |
src/8088/pc_tsr.asm | vossi1/cbm2-pc-emulator-v9958 | 0 | 127011 |
%undef ROM
%undef STANDALONE
[BITS 16]
[CPU 8086]
[ORG 0x0100]
[SECTION .text]
call Init_Data
call Init_CheckMem
call Init_INT
xor ah, ah
int 10h
call Finish
int 20h
%include 'src/8088/include/debug.asm'
%include 'src/8088/include/ipc.asm'
%include 'src/8088/include/int.asm'
%include... |
oeis/101/A101864.asm | neoneye/loda-programs | 11 | 127012 | <reponame>neoneye/loda-programs
; A101864: Wythoff BB numbers.
; Submitted by <NAME>(s2.)
; 5,13,18,26,34,39,47,52,60,68,73,81,89,94,102,107,115,123,128,136,141,149,157,162,170,178,183,191,196,204,212,217,225,233,238,246,251,259,267,272,280,285,293,301,306,314,322,327,335,340,348,356,361,369,374,382,390,395,403,411,416... |
libsrc/_DEVELOPMENT/l/z80/l_testword_hl.asm | jpoikela/z88dk | 640 | 127013 |
SECTION code_clib
SECTION code_l
PUBLIC l_testword_hl
inc hl
inc hl
inc hl
inc hl
l_testword_hl:
; Common operation to test if word at offset from hl equals zero
;
; enter : hl = int *address
;
; exit : if *address == 0
;
; hl = 1
; z flag set
;
; ... |
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_20370_149.asm | ljhsiun2/medusa | 9 | 127014 | <filename>Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_20370_149.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r15
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x13abf, %rsi
lea addresses_normal_ht+0xa16f, %rdi
nop
nop
xor %r12, %r12
mov $72, %rcx
rep movsw
n... |
asmFiles/dual.dependency.asm | hythzz/MIPS-Processor | 0 | 127015 | org 0x0000
ori $3,$0,0xD269
ori $2,$0,0x37F1
ori $7,$0,0x3FD2
ori $21,$0,0x80
add $1, $2, $3
sub $2, $1, $3
and $4, $2, $1
xor $6, $1, $7
sw $1, 0($21)
sw $2, 4($21)
sw $4, 8($21)
sw $6, 12($21)
lw $8, 12($21)
lw $9, 8($21)
xor $10, $9, $8
sw $10, 16($21)
halt
org 0x0200
... |
oeis/021/A021289.asm | neoneye/loda-programs | 11 | 127016 | ; A021289: Decimal expansion of 1/285.
; Submitted by Jon Maiga
; 0,0,3,5,0,8,7,7,1,9,2,9,8,2,4,5,6,1,4,0,3,5,0,8,7,7,1,9,2,9,8,2,4,5,6,1,4,0,3,5,0,8,7,7,1,9,2,9,8,2,4,5,6,1,4,0,3,5,0,8,7,7,1,9,2,9,8,2,4,5,6,1,4,0,3,5,0,8,7,7,1,9,2,9,8,2,4,5,6,1,4,0,3,5,0,8,7,7,1
seq $0,173833 ; 10^n - 3.
div $0,285
mod $0,10
|
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_11241_1663.asm | ljhsiun2/medusa | 9 | 127017 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_11241_1663.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0xbbcc, %rsi
lea addresses_WC_ht+0xd6cc, %rdi
nop
add $25760, %rax
mov $82, %rcx
rep movsq... |
Driver/Video/Dumb/Simp2or4/simp2or4Manager.asm | steakknife/pcgeos | 504 | 127018 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) Geoworks 1997. All rights reserved.
GEOWORKS CONFIDENTIAL
PROJECT: Video
MODULE: Simp2or4
FILE: simp2or4Manager.asm
AUTHOR: <NAME>, Jan 29, 1997
ROUTINES:
Name Description
---- -----------
REVISI... |
test/asm/004-sym.asm | thesephist/august | 13 | 127020 | <gh_stars>10-100
; Hello World, but with symbols
section .text ; implicit
_start:
mov eax 0x1 ; write syscall
mov edi 0x1 ; stdout
mov esi msg ; string to print
mov edx len ; length
syscall
exit:
mov eax 60 ; exit syscall
mov edi 0 ; exit code
syscall
section .rodata
msg:
db "Hello, World!" 0xa
len:... |
src/only_the_host_may_change_gamespeed.asm | mvdhout1992/ts-patches | 33 | 127021 | <gh_stars>10-100
%include "macros/patch.inc"
%include "macros/datatypes.inc"
cextern IsHost
hack 0x004AA5D2, 0x004AA5DB ; only the host may change gamespeed
cmp byte[0x7E4580], 1
jnz 0x004AA64B
cmp byte[IsHost], 1
jnz 0x004AA651
jmp hackend
|
programs/oeis/051/A051443.asm | neoneye/loda | 22 | 127022 | <reponame>neoneye/loda<gh_stars>10-100
; A051443: a(n) = n^(n+1)*(n+1)^n.
; 0,2,72,5184,640000,121500000,32934190464,12089663946752,5777633090469888,3486784401000000000,2593742460100000000000,2331878554708454877954048,2492736806448711465154117632,3125153805191532199063557103616,4541487905530112153400000000000000
mov $... |
apu/channel_1/channel_1_nrx2_glitch.asm | endrift/SameSuite | 21 | 127023 | <gh_stars>10-100
RESULTS_START EQU $c000
RESULTS_N_ROWS EQU 2
include "base.inc"
; This tests the NRx2 write glitch ("Zombie Mode"). It appears to
; be different across revisions
CorrectResults:
db $02, $01, $02, $03, $0D, $0F, $0C, $0F
db $02, $01, $01, $02, $0D, $0E, $0C, $0D
SubTest: MACRO
ld [rDIV], a ; R... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1646.asm | ljhsiun2/medusa | 9 | 127024 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r8
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x9065, %rsi
lea addresses_WT_ht+0x1b759, %rdi
clflush (%rsi)
nop
nop
nop
nop
nop
cmp %r13, %r13
mov $64, %rcx
rep movsw
nop
nop
nop
xor %rcx, %rcx
lea addresses_A_ht+0x3665, %r... |
bootdict/tc/interpret.asm | ikysil/ikforth | 8 | 127025 | <reponame>ikysil/ikforth<gh_stars>1-10
;******************************************************************************
;
; interpret.asm
; IKForth
;
; Unlicense since 1999 by <NAME>
;
;******************************************************************************
; INTERPRET support
;*******************************... |
Assignment2/1_2018CS10360_2018CS10436.asm | NavneelSinghal/COL216 | 0 | 127026 | .globl main
.text
main:
#registers
li $t0, 0 #player number in 0 indexing
li $t1, 0 #row number in 0 indexing
li $t2, 0 #column number in zero indexing
li $t6, 0
loop:
#taking input
li $v0, 4
la $a0, player #print player - see .data
syscall
li $v0, 1 #print number of player
move $a0, $t0
sysca... |
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xa0.log_21829_1470.asm | ljhsiun2/medusa | 9 | 127027 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r14
push %r15
push %r8
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0xc17d, %r10
nop
nop
nop
nop
and $8404, %rdi
mov (%r10), %r14
add $11468, %r8
lea addresses_UC_ht+0x10017, %rcx
nop
nop
and $54807, %rbx
mov $0x61... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_130_974.asm | ljhsiun2/medusa | 9 | 127028 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r15
push %r9
push %rax
push %rbx
push %rdi
lea addresses_A_ht+0xdb46, %r15
cmp $26701, %r11
mov (%r15), %ebx
nop
nop
nop
nop
cmp $61956, %r13
lea addresses_normal_ht+0xa2c6, %rax
nop
nop
nop
nop
cmp %r15, %r15
mov (%rax), %r9w
nop
nop
nop
sub %r9, %... |
programs/oeis/131/A131727.asm | jmorken/loda | 1 | 127029 | <filename>programs/oeis/131/A131727.asm<gh_stars>1-10
; A131727: Pell numbers A000129 without last digit.
; 1,2,7,16,40,98,237,574,1386,3346,8078,19502,47083,113668,274421,662510,1599442,3861396,9322235,22505868,54333972,131173812,316681596,764537004,1845755605,4456048214,10757852035,25971752284,62701356604
add $0,1
c... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_871.asm | ljhsiun2/medusa | 9 | 127031 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r14
push %r15
push %r8
push %rax
lea addresses_WT_ht+0x793a, %r11
clflush (%r11)
xor $55731, %r15
mov $0x6162636465666768, %rax
movq %rax, (%r11)
nop
add %r13, %r13
lea addresses_WC_ht+0x6f9a, %r14
clflush (%r14)
nop
nop
nop
nop
nop
and %r15, %r15
m... |
examples/syntax.asm | NibNerd/asm85 | 3 | 127032 | ; The assembler runs two passes over the source file. The first pass builds
; the symbol table and the second emits the hex file and list file.
;
; Note that the assembler is case-insensitive for instructions, directives,
; register names, and labels. The labels "label2" and "LABEL2" are the same,
; and an error woul... |
programs/oeis/112/A112591.asm | neoneye/loda | 22 | 127033 | ; A112591: a(n) = prime(n) XOR prime(n + 1).
; Coded manually 2021-03-30 by <NAME>, https://github.com/neoneye
; 1,6,2,12,6,28,2,4,10,2,58,12,2,4,26,14,6,126,4,14,6,28,10,56,4,2,12,6,28,14,252,10,2,30,2,10,62,4,10,30,6,10,126,4,2,20,12,60,6,12,6,30,10,506,6,10,2,26,12,2,62,22,4,14,4,118,26,10,6,60,6,8,26,14,4,250,8,28,... |
asm/binary.asm | alexandru-dinu/programming-practice | 0 | 127034 | .model small
.stack 100h
.data
nr dw 0Bh
nl db 10,13,'$'
.code
start:
mov ax, @data
mov ds, ax
mov bx, nr
mov cx, 8
print:
mov ah, 02h
mov dl, '0'
test bx, 10000000b
jz zero
mov dl, '1'
... |
programs/oeis/078/A078979.asm | neoneye/loda | 22 | 127035 | <reponame>neoneye/loda
; A078979: a(n) = A078711(n) - 1.
; 0,1,2,0,1,0,0,1,2,0,1,1,0,1,2,0,1,0,0,1,2,0,1,2,0,1,2,0,1,0,0,1,2,0,1,1,0,1,2,0,1,0,0,1,2,0,1,0,0,1,2,0,1,0,0,1,2,0,1,1,0,1,2,0,1,0,0,1,2,0,1,2,0,1,2,0,1,0,0,1,2,0,1,1,0,1,2,0,1,0,0,1,2,0,1,1,0,1,2,0
seq $0,100833 ; Smallest positive palindrome-free and square... |
ps.asm | inesane/Modified-xv6-OS | 0 | 127036 | <reponame>inesane/Modified-xv6-OS
_ps: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "traps.h"
#include "memlayout.h"
int
main(int argc, char *argv[])
{
0: f3 0f 1e fb endbr32
4: 8d 4c 24 04 lea 0x4(%esp),%ecx
8: 83 e4 f0 and $0x... |
programs/oeis/326/A326039.asm | neoneye/loda | 22 | 127037 | <filename>programs/oeis/326/A326039.asm
; A326039: Largest square dividing the sum of divisors of n: a(n) = A008833(sigma(n)).
; 1,1,4,1,1,4,4,1,1,9,4,4,1,4,4,1,9,1,4,1,16,36,4,4,1,1,4,4,1,36,16,9,16,9,16,1,1,4,4,9,1,16,4,4,1,36,16,4,1,1,36,49,9,4,36,4,16,9,4,4,1,16,4,1,4,144,4,9,16,144,36,1,1,1,4,4,16,4,16,1,121,9,4,1... |
artwork/esqueleto/esqueleto_agacha.asm | fjpena/sword-of-ianna-zx | 67 | 127038 | <reponame>fjpena/sword-of-ianna-zx<gh_stars>10-100
; ASM source file created by SevenuP v1.21
; SevenuP (C) Copyright 2002-2007 by <NAME>, aka Metalbrain
;GRAPHIC DATA:
;Pixel Size: ( 24, 32)
;Char Size: ( 3, 4)
;Frames: 3
;Sort Priorities: X char, Char line, Y char, Frame number
;Data Outpu... |
My Codes/Lab_1/LabTask1.asm | jahinmahbub/CSE331L_Section_7_Summer_2020_NSU | 0 | 127039 | <gh_stars>0
; You may customize this and other start-up templates;
; The location of this template is c:\emu8086\inc\0_com_template.txt
org 100h
MOV AX,K1
MOV AX,K2
K1 EQU 10;
K2 EQU 10;
ADD AX,K1
ADD AX,K2
ret
|
programs/oeis/028/A028251.asm | neoneye/loda | 22 | 127042 | ; A028251: Sequence arising in multiprocessor page migration.
; 3,6,9,12,15,18,22,25,28,31,35,38,41,44,48,51,54,57,61,64,67,70,73,77,80,83,86,90,93,96,99,103,106,109,112,116,119,122,125,128,132,135,138,141,145,148,151,154,158,161,164,167,171,174,177,180,184,187,190
sub $0,1
mul $0,3
mov $2,1
add $2,$0
max $0,0
seq $0,... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_2045_1522.asm | ljhsiun2/medusa | 9 | 127043 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r15
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x5925, %r9
nop
nop
nop
nop
and $18183, %r13
mov (%r9), %r12d
nop
nop
xor %rdx, %rdx
lea addresses_UC_ht+0x1e72, %r12
nop
nop
inc %rdx
movw $0x6162, (%r12)
nop
nop
nop
nop
... |
oeis/070/A070919.asm | neoneye/loda-programs | 11 | 127044 | ; A070919: a(n) = Card{ (x,y,z) | lcm(x,y,z)=n }.
; Submitted by <NAME>(w2)
; 1,7,7,19,7,49,7,37,19,49,7,133,7,49,49,61,7,133,7,133,49,49,7,259,19,49,37,133,7,343,7,91,49,49,49,361,7,49,49,259,7,343,7,133,133,49,7,427,19,133,49,133,7,259,49,259,49,49,7,931,7,49,133,127,49,343,7,133,49,343,7,703,7,49,133,133,49,343,7,42... |
programs/oeis/099/A099905.asm | neoneye/loda | 22 | 127045 | <filename>programs/oeis/099/A099905.asm
; A099905: a(n) = binomial(2n-1, n-1) mod n.
; 0,1,1,3,1,0,1,3,1,8,1,2,1,10,0,3,1,12,1,10,3,14,1,6,1,16,10,0,1,2,1,3,21,20,21,26,1,22,10,10,1,0,1,24,0,26,1,30,1,28,27,48,1,30,16,44,48,32,1,48,1,34,6,35,35,0,1,18,33,20,1,18,1,40,60,16,0,72,1,10,10,44,1,56,75,46,39,44,1,20,0,12,10,... |
programs/oeis/005/A005418.asm | neoneye/loda | 22 | 127046 | <reponame>neoneye/loda<filename>programs/oeis/005/A005418.asm
; A005418: Number of (n-1)-bead black-white reversible strings; also binary grids; also row sums of Losanitsch's triangle A034851; also number of caterpillar graphs on n nodes.
; 1,2,3,6,10,20,36,72,136,272,528,1056,2080,4160,8256,16512,32896,65792,131328,26... |
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca.log_21829_1622.asm | ljhsiun2/medusa | 9 | 127047 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r8
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x2618, %rbp
add %r12, %r12
mov $0x6162636465666768, %r8
movq %r8, %xmm7
movups %xmm7, (%rbp)
nop
nop
inc %r12
lea addresses_UC_ht+0x18f30, %r12
sub $1... |
oeis/343/A343317.asm | neoneye/loda-programs | 11 | 127048 | ; A343317: a(n) is the least k >= 0 such that A343316(n, k) = n.
; Submitted by <NAME>
; 0,1,4,2,4,13,11,13,7,5,7,13,11,13,40,38,40,34,32,34,40,38,40,22,20,22,16,14,16,22,20,22,40,38,40,34,32,34,40,38,40,121,119,121,115,113,115,121,119,121,103,101,103,97,95,97,103,101,103,121,119,121,115,113,115,121,119,121,67,65,67,61... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_2559.asm | ljhsiun2/medusa | 9 | 127049 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x1c9d6, %r11
nop
nop
nop
add $58975, %r12
movl $0x61626364, (%r11)
nop
nop
cmp %rsi, %rsi
lea addresses_UC_ht+0x6116, %rax
nop
sub $5997, %r11
movb (... |
cmd/cps/rebuild/uf_io.asm | minblock/msdos | 0 | 127050 | ; Copyright 1990 Central Point Software, Inc.
; All rights reserved.
;--------------------------------------------------------------------
; These are the console I/O procedures for the UnFormat program.
; Written by GWD, 1987-1988.
;
; International support added 5-23-89 GWD.
; Fixed DOS bug (time separator = "." ?!)... |
install/lib/disk/fail24.asm | minblock/msdos | 0 | 127051 | ;========================================================
COMMENT #
FAIL24.ASM
Copyright (c) 1991 - Microsoft Corp.
All rights reserved.
Microsoft Confidential
=================================================
This function is can be called by an int 24h handler to
simulate DOS failing the previous int 21h ca... |
programs/oeis/146/A146091.asm | neoneye/loda | 22 | 127053 | ; A146091: a(n) = 3*A146085(n) - 2.
; 1,10,19,82,91,100,163,172,181,730,739,748,811,820,829,892,901,910,1459,1468,1477,1540,1549,1558,1621,1630,1639,6562,6571,6580,6643,6652,6661,6724,6733,6742,7291,7300,7309,7372,7381,7390,7453,7462,7471,8020,8029,8038,8101,8110,8119
lpb $0
sub $0,1
mov $2,$0
max $2,0
seq $2,... |
macro.asm | tor4z/nasm_training | 0 | 127054 | <gh_stars>0
global _start ; Define the entry point
%macro write_str 2 ; Define write_str amcro with 2 argument
mov eax, 4 ; System call write
mov ebx, 1 ; Stdout
mov ecx, %1 ; Use the first argument
mov edx, %2 ; Use the second argument
int 0x80 ; Call kernel
%endmacro ; End macro
section .data
msg1 db 'Hel... |
yasm/mbr.asm | devcfei/study-cmake | 0 | 127055 | <reponame>devcfei/study-cmake
%define org_start 7c00h
boot:
org org_start
mov ax, cs
mov ds, ax
mov es, ax
call print
jmp $
print:
mov bp, str_hello
mov cx, [str_hello_size]
mov ax, 01301h
mov bx, 000ch
mov dx, 0000h
int 10h;
ret
str_hello:
db "Hello, World!"
str_hello_size:
db $-str_hello
fill:... |
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xca.log_21829_1782.asm | ljhsiun2/medusa | 9 | 127056 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r15
push %r8
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x1efcf, %r15
nop
nop
sub $24532, %r11
mov (%r15), %esi
nop
nop
nop
nop
nop
xor $49547, %r9
lea addresses_A_ht+0x1bacf, %rdx
nop
nop
nop
nop
nop
cmp $9781, %r8
mov... |
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_1702.asm | ljhsiun2/medusa | 9 | 127057 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r13
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x167a7, %rdi
nop
nop
nop
nop
nop
dec %rbp
mov $0x6162636465666768, %r11
movq %r11, (%rdi)
nop
nop
nop
sub %r10, %r10
lea addresses_A_ht+0x3eef, %rsi
nop
nop
dec %rax
mov (%rsi... |
Kernel/asm/getKey.asm | shipupi/SO-TP2 | 0 | 127058 | <reponame>shipupi/SO-TP2
GLOBAL getKey
section .text
;This should only be called if you know the last bit of 64h (Status Register) is on 1
getKey:
push rbp
mov rbp, rsp ;Stack frame
xor eax, eax ;We are going to use it so we make sure its in zero
in al, 60h ;We get the code
mov bl, al ;We save it to us... |
data/pokemon/dex_entries/luvdisc.asm | AtmaBuster/pokeplat-gen2 | 6 | 127061 | db "RENDEZVOUS@" ; species name
db "Its heart-shaped"
next "body makes it"
next "popular. In some"
page "regions, you would"
next "give a LUVDISC to"
next "someone you love.@"
|
programs/oeis/278/A278476.asm | neoneye/loda | 22 | 127063 | <reponame>neoneye/loda
; A278476: a(n) = floor((1 + sqrt(2))^3*a(n-1)) for n>0, a(0) = 1.
; 1,14,196,2757,38793,545858,7680804,108077113,1520760385,21398722502,301102875412,4236838978269,59616848571177,838872718974746,11803834914217620,166092561518021425,2337099696166517569,32885488307849267390,462733936006056261028,65... |
tests/ts/binclock/bitclock.asm | 6502ts/6502.ts | 49 | 127064 | processor 6502
include vcs.h
include macro.h
seg.u vars
org $80
hours DS.B 1
minutes DS.B 1
seconds DS.B 1
frames DS.B 1
seg code_main
org $F000
Start
SEI
CLD
;;; Clear Page0
LDX #$FF
TXS
LDA #0
ClearMem
STA 0,X
DEX
BNE ClearMem
InitComplete
;;; Setup time
LDA #23
STA hours
... |
x86-Win-NASM/src/Numbers/hex_converter.asm | gramai/school-related | 0 | 127065 | <filename>x86-Win-NASM/src/Numbers/hex_converter.asm
;English
;Read a hexadecimal number and convert it in binary, decimal and octal
;French
;Lisez un nombre hexadécimal et vous devez le convertir en binaire, décimal et octal.
;Similar to bin_converter (find explanation there)
ORG 100h
include "emu8086.inc"... |
Python/pyfunctions.asm | agguro/linux-nasm | 6 | 127066 | <reponame>agguro/linux-nasm
;name: pyfunctions.asm
;
;build: release version:
; nasm -felf64 -o pyfunctions.o pyfunctions.asm
; ld -lc --dynamic-linker /lib64/ld-linux-x86-64.so.2 -shared -soname pyfunctions.so -o pyfunctions.so.1.0 pyfunctions.o -R .
; ln -sf pyfunctions.so.1.0 pyfunction... |
programs/oeis/073/A073582.asm | neoneye/loda | 22 | 127067 | <reponame>neoneye/loda
; A073582: Numbers n such that S(n) = n/2, where S(n) is the Kempner function A002034.
; 6,8,10,14,22,26,34,38,46,58,62,74,82,86,94,106,118,122,134,142,146,158,166,178,194,202,206,214,218,226,254,262,274,278,298,302,314,326,334,346,358,362,382,386,394,398,422,446,454,458,466,478,482,502,514,526,5... |
oeis/218/A218145.asm | neoneye/loda-programs | 11 | 127068 | <reponame>neoneye/loda-programs
; A218145: Product of the nonzero digits (in base 10) of n^3.
; 1,8,14,24,10,12,36,10,126,1,9,112,126,224,315,216,108,240,2160,8,108,192,84,192,300,1470,1296,180,1728,14,1134,2016,2835,324,2240,4320,450,2240,1215,24,864,1792,2205,1280,90,3402,144,90,1512,10,180,192
add $0,1
mov $1,-1
gc... |
cmd/command/path2.asm | minblock/msdos | 0 | 127071 | <reponame>minblock/msdos
page ,132
;/*
; * Microsoft Confidential
; * Copyright (C) Microsoft Corporation 1991
; * All Rights Reserved.
; */
; SCCSID = @(#)path2.asm 1.1 85/05/14
; SCCSID = @(#)path2.asm 1.1 85/05/14
.sall
.xlist
.xcref
include dossym.inc... |
Transynther/x86/_processed/NONE/_xt_sm_/i7-8650U_0xd2.log_1340_1303.asm | ljhsiun2/medusa | 9 | 127072 | <filename>Transynther/x86/_processed/NONE/_xt_sm_/i7-8650U_0xd2.log_1340_1303.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r13
push %r9
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x1e289, %rdi
and $44657, %rbp
mov $0x6162636465666768, %rsi
movq %rsi, %xmm1
vmovups %ymm... |
Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0x84_notsx.log_227_2226.asm | ljhsiun2/medusa | 9 | 127073 | <filename>Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0x84_notsx.log_227_2226.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r15
push %rdx
push %rsi
lea addresses_WT_ht+0xe19c, %rdx
nop
nop
nop
nop
add %r11, %r11
movl $0x61626364, (%rdx)
nop
nop
nop
nop
xor %rsi, %rsi
pop %rsi
pop %rdx
pop %r15
... |
data/pokemon/base_stats/shellos.asm | AtmaBuster/pokeplat-gen2 | 6 | 127074 | <reponame>AtmaBuster/pokeplat-gen2
db 0 ; species ID placeholder
db 76, 48, 48, 34, 57, 62
; hp atk def spd sat sdf
db WATER, WATER ; type
db 190 ; catch rate
db 65 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_F50 ; gender ratio
db 20 ; step cycles to hatch
INCBIN "gfx/pokemon/shellos/front... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.