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 |
|---|---|---|---|---|
Source/test.asm | DW0RKiN/3D-Dungeon | 8 | 199932 | <gh_stars>1-10
spritesStart EQU 5F00
INCLUDE sprites.h
Body_left EQU 5F00
dno_bufferu EQU 5FEA
D0 EQU 608F
D1 EQU 64CA
D2 EQU 66C5
D3 EQU 6826
ESA1 EQU 68A5
ES1 EQU 6ABE
ES2 EQU 6C61
ES3 EQU 6D5E
ES4 EQU 6DCA
FFace01 EQU 6E1B
FFace02 EQU 6EAE
FFace03 EQU 6F41
FFace04 EQU 6FD4
Flek EQU 7067
H0 EQU 70DC
... |
boot/BIOS/stage_2/src/long_mode/print_rm.asm | Andrispowq/HackOS | 10 | 199933 | [bits 16]
;Printing characters, and numbers
PrintRM:
pusha
start:
mov al, [bx]
cmp al, 0
je done
mov ah, 0x0E ;switch to tty mode
int 0x10
inc bx
jmp start
done:
popa
ret
PrintLn:
pusha
mov ah, 0x0E
mov al, 0x0A
int 0x10
mo... |
PIC/mikroC/Projects/PIC18F4550/USB2Serial.asm | UdayanSinha/Code_Blocks | 3 | 199934 |
_interrupt:
;USB2Serial.c,17 :: void interrupt(){
;USB2Serial.c,18 :: USB_Interrupt_Proc(); // USB servicing is done inside the interrupt
CALL _USB_Interrupt_Proc+0, 0
;USB2Serial.c,19 :: }
L_end_interrupt:
L__interrupt9:
RETFIE 1
; end of _interrupt
_main:
;USB2S... |
Appl/Icon/Format/formatFlip.asm | steakknife/pcgeos | 504 | 199935 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Icon Editor
FILE: formatFlip.asm
AUTHOR: <NAME>, Jan 7, 1994
ROUTINES:
Name Description
---- -----------
INT DBViewerRotateFormat Fli... |
oeis/228/A228039.asm | neoneye/loda-programs | 11 | 199936 | <filename>oeis/228/A228039.asm<gh_stars>10-100
; A228039: Thue-Morse sequence along the squares: A010060(n^2).
; Submitted by <NAME>(m3)
; 0,1,1,0,1,1,0,1,1,1,1,1,0,0,1,0,1,1,1,1,1,0,1,1,0,1,0,0,1,1,0,1,1,1,1,1,1,0,1,1,1,1,0,1,1,0,1,0,0,1,1,1,0,0,0,1,1,0,1,1,0,0,1,0,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,1,1,1,1,1,0... |
programs/oeis/059/A059133.asm | karttu/loda | 0 | 199937 | <gh_stars>0
; A059133: A hierarchical sequence (S(W2{2}c) - see A059126).
; 4,18,52,126,280,594,1228,2502,5056,10170,20404,40878,81832,163746,327580,655254,1310608,2621322,5242756,10485630,20971384,41942898,83885932,167772006,335544160,671088474,1342177108,2684354382,5368708936,10737418050,21474836284,42949672758,85899... |
programs/oeis/025/A025743.asm | karttu/loda | 0 | 199938 | <filename>programs/oeis/025/A025743.asm
; A025743: Index of 10^n within sequence of numbers of form 5^i*10^j.
; 1,3,6,11,17,25,34,45,57,70,85,101,119,138,159,181,204,229,255,283,312,343,375,408,443,479,517,556,597,639,682,727,773,821,870,921,973,1026,1081,1137,1195,1254,1315,1377,1440,1505,1571,1639,1708,1779,1851,1924... |
src/examples/countdown.asm | Ppjet6/zeerust | 9 | 199939 | ld B, 9
jump: ld A, B
add A, 48 ; int -> ascii
out (0), A
ld A, '\n'
out (0), A
djnz jump
halt
|
Containers/AU3Container.asm | SuleAlOthman/MysteryLagacyTools | 17 | 199940 | FORMAT PE GUI 4.0
; Author : <NAME> || twitter, github (@sulealothman)
; Ver. : 0.1
; Project Name : Autoit 3 Container by Flat Assembly (Fasm)
INCLUDE 'win32ax.inc'
AU3I:
file "AutoIt3.exe"
virtual at 0
file "AutoIt3.exe"
au3Size = $
end virtual
AU3SC:
file "scriptname.au3"
virtual a... |
first/LongAddMultiply/add_mul.asm | FrankTianTT/OS | 0 | 199941 | global _main
; 系统调用参数的顺序为
; %rdi %rsi %rdx %rcx
; %rbx通常由被调用者保护
; %rax作为返回值
section .data
query_str : db `Please input x and y:\n`
query_strlen : equ $-query_str
num_max_len : equ 100
return_signal : db `\n`
negative_signal : db `-`
space_signal : db ` `
sect... |
oeis/052/A052262.asm | neoneye/loda-programs | 11 | 199942 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A052262: Partial sums of A014824.
; Submitted by <NAME>(s4)
; 0,1,13,136,1370,13715,137171,1371738,13717416,137174205,1371742105,13717421116,137174211238,1371742112471,13717421124815,137174211248270,1371742112482836,13717421124828513,137174211248285301,13717421124828532... |
Library/Text/Text/textMethodDraw.asm | steakknife/pcgeos | 504 | 199944 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1989 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: textMethodDraw.asm
AUTHOR: <NAME>, Oct 6, 1989
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:
Name Date Descript... |
libsrc/_DEVELOPMENT/stdio/z80/asm_vfscanf.asm | teknoplop/z88dk | 0 | 199945 |
; ===============================================================
; Jan 2014
; ===============================================================
;
; int vfscanf(FILE *stream, const char *format, void *arg)
;
; See C11 specification.
;
; ===============================================================
INCLUDE "clib_cfg.... |
src/res/bootstrapRom.asm | rondnelson99/sram-39sf-flasher | 0 | 199946 | SECTION "Header", ROM0[$100]
; This is your ROM's entry point
; You have 4 bytes of code to do... something
di
jp $A000
; Make sure to allocate some space for the header, so no important
; code gets put there and later overwritten by RGBFIX.
; RGBFIX is designed to operate over a zero-filled header... |
programs/oeis/315/A315489.asm | jmorken/loda | 1 | 199947 | <gh_stars>1-10
; A315489: Coordination sequence Gal.5.292.5 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings.
; 1,6,11,16,22,27,32,38,43,48,54,60,65,70,76,81,86,92,97,102,108,114,119,124,130,135,140,146,151,156,162,168,173,178,184,189,19... |
libsrc/_DEVELOPMENT/math/float/math48/z80/am48_derror_pinfnc.asm | meesokim/z88dk | 0 | 199948 | <filename>libsrc/_DEVELOPMENT/math/float/math48/z80/am48_derror_pinfnc.asm
SECTION code_fp_math48
PUBLIC am48_derror_pinfnc
EXTERN am48_dconst_pinf
pop hl
pop hl
am48_derror_pinfnc:
; exit : AC'= +inf
; carry reset
;
; uses : af, bc', de', hl'
exx
call am48_dconst_pinf
exx
... |
lang/german/erms.asm | olifink/smsqe | 0 | 199949 | <reponame>olifink/smsqe
* Text for error window v0.00 June 1988 J.R.Oakley QJUMP
*
section language
*
include 'dev8_mac_text'
include 'dev8_keys_k'
*
mkxstr esc,k.cancel,{ESC}
*
erstr1 setstr {Diese Anwendung brach mit folgendem Fehler ab\}
*
mktext erms ... |
FictionTools/z88dk/libsrc/z80_crt0s/8080/sccz80/l_long_asl.asm | polluks/Puddle-BuildTools | 38 | 199950 | ; Z88 Small C+ Run Time Library
; Long support functions
;
; djm 25/2/99
; Made work! - Seems a little messed up previously (still untested)
;
; aralbrec 01/2007
; shifts are faster than doubling and ex with de/hl
SECTION code_crt0_sccz80
PUBLIC l_long_asl
PUBLIC l_lon... |
oeis/037/A037101.asm | neoneye/loda-programs | 11 | 199951 | <filename>oeis/037/A037101.asm
; A037101: Trajectory of 3 under map n->7n+1 if n odd, n->n/2 if n even.
; Submitted by <NAME>
; 3,22,11,78,39,274,137,960,480,240,120,60,30,15,106,53,372,186,93,652,326,163,1142,571,3998,1999,13994,6997,48980,24490,12245,85716,42858,21429,150004,75002,37501,262508,131254,65627,459390,229... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1661.asm | ljhsiun2/medusa | 9 | 199952 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r15
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x9d75, %rsi
lea addresses_WC_ht+0x1cef4, %rdi
and $59658, %rbx
mov $109, %rcx
rep movsb
xor $53485, %r12
lea addresses_WT_ht+0x9184, %rbp
nop
sub %r15, %r15
mov (%rbp), %ecx
n... |
Documentation/Code/reverse.asm | geoffthorpe/ant-architecture | 0 | 199953 | # <NAME> -- 9/7/97
# reverse.asm-- A program that reads a string from the user,
# then prints out the string in reverse order
#
# Registers used:
# r4 - hold characters as they're read in and printed out
# r5 - addresses
# r6 - addresses
# r7 - index into the array of c... |
python_src/other/export/screen_4_0.asm | fjpena/sword-of-ianna-msx2 | 43 | 199954 | <filename>python_src/other/export/screen_4_0.asm
org $0000
; Object types
OBJECT_NONE EQU 0
OBJECT_SWITCH EQU 1
OBJECT_DOOR EQU 2
OBJECT_DOOR_DESTROY EQU 3
OBJECT_FLOOR_DESTROY EQU 4
OBJECT_WALL_DESTROY EQU 5
OBJECT_BOX_LEFT EQU 6
OBJECT_BOX_RIGHT EQU 7
OBJECT_JAR EQU 8
OBJECT_TELEPORTER EQU 9
; Pickable object typ... |
programs/oeis/077/A077024.asm | neoneye/loda | 22 | 199955 | <filename>programs/oeis/077/A077024.asm
; A077024: Sum{Floor(n/k + 1/2): k=1,2,...,n}.
; 1,3,6,8,12,15,18,22,26,29,34,37,41,46,51,53,58,64,67,72,77,80,87,90,95,100,105,110,115,120,123,129,136,139,146,150,153,160,167,170,176,181,186,191,198,203,208,213,217,225,230,233,242,247,252,257,262,267
mov $1,$0
add $1,1
mul $1,2... |
data/pokemon/base_stats/farfetch_d.asm | AtmaBuster/pokeplat-gen2 | 6 | 199956 | db 0 ; species ID placeholder
db 52, 65, 55, 60, 58, 62
; hp atk def spd sat sdf
db NORMAL, FLYING ; type
db 45 ; catch rate
db 94 ; base exp
db NO_ITEM, STICK ; items
db GENDER_F50 ; gender ratio
db 20 ; step cycles to hatch
INCBIN "gfx/pokemon/farfetch_d/front.dimensions"
db GROWTH_MEDIUM_FA... |
scripts/route22.asm | etdv-thevoid/pokemon-rgb-enhanced | 1 | 199958 | Route22Script:
call EnableAutoTextBoxDrawing
ld hl, Route22ScriptPointers
ld a, [wRoute22CurScript]
jp CallFunctionInTable
Route22ScriptPointers:
dw Route22Script0
dw Route22Script1
dw Route22Script2
dw Route22Script3
dw Route22Script4
dw Route22Script5
dw Route22Script6
dw Route22Script7
Route22Script_50... |
Micro_Processor_Lab/12a-FileHandling/CreateFile.asm | MohithGowdaHR/PES-Engineering-Lab-Programs | 0 | 199959 | ; Assembly Level Program 12a
; Write an Assembly Level Program to create a file with a given File Name
.model SMALL
.data
FNAME dB 'SampleFile.txt', 00h
SUCCESS dB 10, 13, 'File has been created successfully!$'
FAILURE dB 10, 13, 'An Error Occured during File Creation!$'
.code
; Initialize Data Segment
MOV AX,... |
src/main/fragment/mos6502-common/pduc1_derefidx_vbuxx=pduc1_derefidx_vbuxx_plus_vdum1.asm | jbrandwood/kickc | 2 | 199960 | lda {c1},x
clc
adc {m1}
sta {c1},x
lda {c1}+1,x
adc {m1}+1
sta {c1}+1,x
lda {c1}+2,x
adc {m1}+2
sta {c1}+2,x
lda {c1}+3,x
adc {m1}+3
sta {c1}+3,x |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_134_1968.asm | ljhsiun2/medusa | 9 | 199962 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r8
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x128fe, %r12
add $48033, %rdi
mov (%r12), %ebp
xor $4109, %r12
lea addresses_normal_ht+0xbd54, %r10
nop
sub %r11, %r11
movw $0x6162, (%r10)
mfence
lea addresses_A_ht+0x130fe, ... |
programs/oeis/008/A008137.asm | neoneye/loda | 22 | 199963 | <filename>programs/oeis/008/A008137.asm<gh_stars>10-100
; A008137: Coordination sequence T1 for Zeolite Code LTA and RHO.
; 1,4,9,17,28,42,60,81,105,132,162,196,233,273,316,362,412,465,521,580,642,708,777,849,924,1002,1084,1169,1257,1348,1442,1540,1641,1745,1852,1962,2076,2193,2313,2436,2562,2692,2825,2961,3100,3242,33... |
StartPicture/_code/GlobalCode/even_code.asm | kosmonautdnb/TheLandsOfZador | 0 | 199964 | ORG $B000
dc.b $A9,$10,$8D,$12,$FF,$A9,$80,$8D,$14,$FF,$A9,$3B,$8D,$06,$FF,$A9
dc.b $11,$8D,$07,$FF,$A9,$32,$8D,$16,$FF,$A9,$48,$8D,$15,$FF,$EA,$A9
dc.b $22,$8D,$16,$FF,$A9,$11,$8D,$07,$FF,$A9,$88,$8D,$14,$FF,$A9,$3D
dc.b $8D,$06,$FF,$A9,$17,$8D,$07,$FF,$A9,$01,$8D,$16,$FF,$A9,$22,$8D
dc.b $15,$FF,$EA,$A9,$48,$8D... |
oeis/313/A313280.asm | neoneye/loda-programs | 11 | 199965 | ; A313280: Coordination sequence Gal.3.15.1 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings.
; Submitted by <NAME>
; 1,4,9,15,21,26,30,34,39,45,51,56,60,64,69,75,81,86,90,94,99,105,111,116,120,124,129,135,141,146,150,154,159,165,171,176... |
src/random_loop_delay.asm | mvdhout1992/ts-patches | 33 | 199966 | %include "macros/patch.inc"
%include "macros/datatypes.inc"
%include "TiberianSun.inc"
;;; Force RandomLoopDelay to use ScenarioClass.CriticalRandomNumber to keep everything in sync.
hack 0x00415AE7
mov eax, [0x007E2438] ; ScenarioClass
lea ecx, [eax+0x218] ; CriticalRandomNumber
call 0x00... |
dino/lcs/base/470.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | 6 | 199968 | copyright zengfr site:http://github.com/zengfr/romhack
00042A move.l D1, (A0)+
00042C dbra D0, $42a
00835E cmpi.b #$1, ($470,A5)
008364 beq $8372 [base+470]
09CFCC clr.l (A1)+
09CFCE dbra D0, $9cfcc
09D032 move.w D0, ($470,A5)
09D036 rts [base+470]
09D3DE cmp.b ($470,A5), D0 [base+47B, ... |
programs/oeis/191/A191394.asm | neoneye/loda | 22 | 199969 | <gh_stars>10-100
; A191394: Number of base pyramids in all dispersed Dyck paths of length n (i.e., in all Motzkin paths of length n with no (1,0)-steps at positive heights).
; 0,0,1,2,6,12,28,56,121,242,507,1014,2093,4186,8569,17138,34902,69804,141664,283328,573574,1147148,2318010,4636020,9354540,18709080,37708672,7541... |
draw.asm | lethosor/ticg | 0 | 199970 |
.module draw
.optsdcc -mz80
.globl _CDrawRectBorderClear
.area _DATA
.nlist
.include "c_ti83p/src/ti83plus.inc"
.list
.area _CODE
;; void CDrawRectBorderClear(uint8_t r1, uint8_t c1, uint8_t r2, uint8_t c2);
_CDrawRectBorderClear::
push ix
ld ix,#0
add ix,sp
ld h,4(ix)
ld l,5(ix)
ld d,6(ix)
ld e,7(ix... |
test/testdos.asm | bitwiseworks/nasm-os2 | 3 | 199971 | <filename>test/testdos.asm
;Testname=test; Arguments=-fbin -otestdos.bin; Files=stdout stderr testdos.bin
;
; This file was known to miscompile with the 16-bit NASM built
; under Borland C++ 3.1, so keep it around for testing...
;
; The proper output looks like:
;
; 00000000 A10300
; 00000003 EA0000FFFF
;
or... |
libsrc/stdio/ticalc/fgetc_cons.asm | andydansby/z88dk-mk2 | 1 | 199972 | <filename>libsrc/stdio/ticalc/fgetc_cons.asm
;
; TI calc Routines
;
; fgetc_cons() Wait for keypress
;
; <NAME> - Dec 2000
;
;
; $Id: fgetc_cons.asm,v 1.6 2002/04/17 21:30:26 dom Exp $
;
XLIB fgetc_cons
LIB getk_decode
XREF TIei
XREF TIdi
INCLUDE "stdio/ansi/ticalc/ticalc.inc"
.fgetc_cons
call TIei
.klo... |
libsrc/_DEVELOPMENT/z180/c/sccz80/z180_outp_callee.asm | jpoikela/z88dk | 640 | 199973 |
; void z180_outp(uint16_t port, uint8_t data)
SECTION code_clib
SECTION code_z180
PUBLIC z180_outp_callee
EXTERN asm_z180_outp
z180_outp_callee:
pop af
pop hl
pop bc
push af
jp asm_z180_outp
|
test2/test_ptn_asm/instructions_p.asm | csrdxbb/xbyak_aarch64 | 1 | 199974 | pmullb z8.q,z8.d,z8.d
pmullb z1.q,z8.d,z8.d
pmullb z2.q,z8.d,z8.d
pmullb z4.q,z8.d,z8.d
pmullb z0.q,z8.d,z8.d
pmullb z16.q,z8.d,z8.d
pmullb z30.q,z8.d,z8.d
pmullb z31.q,z8.d,z8.d
pmullb z8.q,z8.d,z8.d
pmullb z8.q,z1.d,z8.d
pmullb z8.q,z2.d,z8.d
pmullb z8.q,z4.d,z8.d
pmullb z8.q,z0.d,z8.d
pmullb z8.q,z16.d,z8.d
pmullb z... |
src/xpf_core/windows/vt_hv.asm | wbaby/NoirVisor | 279 | 199975 | ; NoirVisor - Hardware-Accelerated Hypervisor solution
;
; Copyright 2018-2021, <NAME>. All rights reserved.
;
; This file is part of NoirVisor VT Core written in assembly language.
;
; This program is distributed in the hope that it will be successful, but
; without any warranty (no matter implied warranty of merchan... |
programs/oeis/036/A036085.asm | neoneye/loda | 22 | 199977 | <reponame>neoneye/loda<gh_stars>10-100
; A036085: Centered cube numbers: (n+1)^7 + n^7.
; 1,129,2315,18571,94509,358061,1103479,2920695,6880121,14782969,29487171,55318979,98580325,168162021,276272879,439294831,678774129,1022558705,1506091771,2173871739,3081088541,4295446429,5899183335,7991296871,10689987049,14135325801... |
dino/lcs/enemy/26.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | 6 | 199978 | <filename>dino/lcs/enemy/26.asm
copyright zengfr site:http://github.com/zengfr/romhack
00042A move.l D1, (A0)+
00042C dbra D0, $42a
004920 move.l D0, (A4)+
004922 move.b D0, ($59,A6)
004D3A move.l D0, (A4)+
004D3C move.l D0, (A4)+
00FE48 move.w ($a,A2), ($26,A0) [enemy+10, etc+10, item+10]
00FE4E... |
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca_notsx.log_21829_77.asm | ljhsiun2/medusa | 9 | 199979 | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r14
push %r8
push %rax
push %rbx
push %rdx
push %rsi
// Store
lea addresses_WC+0x18495, %rbx
nop
and %r11, %r11
movb $0x51, (%rbx)
nop
and %rbx, %rbx
// Store
lea addresses_normal+0x12a6d, %r8
clflush (%r8)
and ... |
libsrc/_DEVELOPMENT/l/sccz80/crt0_long/l_long_com.asm | meesokim/z88dk | 0 | 199980 | <reponame>meesokim/z88dk<gh_stars>0
; Z88 Small C+ Run Time Library
; Long functions
;
SECTION code_l_sccz80
PUBLIC l_long_com
EXTERN l_cpl_dehl
defc l_long_com = l_cpl_dehl
|
test/bigmul_test.asm | feilipu/z80_crypto | 0 | 199981 | <gh_stars>0
; Tests all 16 x 16 bit = 32 bit integer multiplications
; Out: HL = 0, if correct, prefix error length otherwise
SECTION code_user
EXTERN MUL8
EXTERN BIGMUL
PUBLIC _main
defc bdos = 05h ; bdos vector
defc conout = 2 ; console output bdos call
defc... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_980.asm | ljhsiun2/medusa | 9 | 199982 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r14
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x13de5, %rdi
nop
sub %r14, %r14
mov $0x6162636465666768, %r13
movq %r13, %xmm4
vmovups %ymm4, (%rdi)
nop
nop
nop
nop
nop
dec %r8
lea addresses_UC_ht+0x4725, %rsi
lea addresses_... |
libsrc/_DEVELOPMENT/arch/sms/SMSlib/c/sdcc/SMS_VRAMmemcpy_brief_callee.asm | jpoikela/z88dk | 640 | 199983 | <reponame>jpoikela/z88dk
; void SMS_VRAMmemcpy_brief(unsigned int dst,void *src,unsigned char size)
SECTION code_clib
SECTION code_SMSlib
PUBLIC _SMS_VRAMmemcpy_brief_callee
EXTERN asm_SMSlib_VRAMmemcpy_brief
_SMS_VRAMmemcpy_brief_callee:
pop af
pop hl
pop de
dec sp
pop bc
push af
jp asm_SMSlib_VRAMm... |
oeis/004/A004556.asm | neoneye/loda-programs | 11 | 199984 | ; A004556: Expansion of sqrt(5) in base 3.
; Submitted by <NAME>(s2)
; 2,0,2,0,1,0,1,0,0,2,1,1,2,0,1,2,1,1,0,0,2,1,1,2,0,0,2,1,1,0,0,2,1,1,1,0,0,2,1,2,1,2,0,1,0,1,2,1,2,2,2,0,2,2,0,0,2,1,0,2,2,0,0,1,0,1,1,2,0,0,1,1,2,0,0,1,0,1,1,2,0,0,0,2,2,1,1,2,1,0,1,1,1,1,2,2,1,2,1,2
mov $1,1
mov $2,1
mov $3,$0
add $3,2
mov $4,$0
a... |
assignment5a/test_partA01.asm | sundercode/compilers-homework | 0 | 199986 | .data # Program at 1.1
.byte 10 # StringLiteral at 6.12
.byte 0 # StringLiteral at 6.12
.byte 0 # StringLiteral at 6.12
.byte 0 # StringLiteral at 6.12
.word CLASS_String # StringLiteral at 6.12
.word 2 # StringLiteral at 6.12
.word -1 # StringLiteral at 6.12
strLit_16: # StringLit... |
Examples/ch12/strings/strings.asm | satadriver/LiunuxOS | 0 | 199987 | <filename>Examples/ch12/strings/strings.asm
TITLE strings.cpp
.386P
include listing.inc
if @Version gt 510
.model FLAT
else
_TEXT SEGMENT PARA USE32 PUBLIC 'CODE'
_TEXT ENDS
_DATA SEGMENT DWORD USE32 PUBLIC 'DATA'
_DATA ENDS
CONST SEGMENT DWORD USE32 PUBLIC 'CONST'
CONST ENDS
_BSS SEGMENT DWORD USE32 PUBL... |
programs/oeis/036/A036153.asm | jmorken/loda | 1 | 199988 | ; A036153: a(n) = 2^n mod 179.
; 1,2,4,8,16,32,64,128,77,154,129,79,158,137,95,11,22,44,88,176,173,167,155,131,83,166,153,127,75,150,121,63,126,73,146,113,47,94,9,18,36,72,144,109,39,78,156,133,87,174,169,159,139,99,19,38,76,152,125,71,142,105,31,62,124,69,138,97,15,30,60,120,61,122,65,130,81,162,145,111,43,86,172,165,... |
programs/oeis/130/A130855.asm | neoneye/loda | 22 | 199989 | <filename>programs/oeis/130/A130855.asm
; A130855: 2n appears 2n+1 times, 2n+1 appears 2n times.
; 0,2,2,2,3,3,4,4,4,4,4,5,5,5,5,6,6,6,6,6,6,6,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13... |
programs/oeis/298/A298036.asm | karttu/loda | 0 | 199990 | <filename>programs/oeis/298/A298036.asm
; A298036: Coordination sequence of Dual(4.6.12) tiling with respect to a 12-valent node.
; 1,12,12,36,24,60,36,84,48,108,60,132,72,156,84,180,96,204,108,228,120,252,132,276,144,300,156,324,168,348,180,372,192,396,204,420,216,444,228,468,240,492,252,516,264,540,276,564,288,588,30... |
multiplication_8bit16.asm | Abhik-Kumar/8085 | 0 | 199991 | //2K19/EE/009 <NAME>
// Program to find multiplication of two 8 bit numbers.
// 8 BIT MULTIPLICATION: PRODUCT 16-BIT
# ORG 1000H // Set assembler location counter
# BEGIN 1000H // Program Execution starts at this location
LHLD 2501 // Load the value from memory
XCHG // Exchange the content of HL with DE regist... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_25_464.asm | ljhsiun2/medusa | 9 | 199992 | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r13
push %r15
push %r8
push %rbx
push %rcx
push %rdi
push %rdx
// Store
lea addresses_UC+0x4db6, %rdi
nop
nop
nop
nop
nop
xor %rdx, %rdx
mov $0x5152535455565758, %r8
movq %r8, %xmm2
movntdq %xmm2, (%rdi)
nop
nop
nop
nop
su... |
programs/oeis/195/A195036.asm | jmorken/loda | 1 | 199993 | <filename>programs/oeis/195/A195036.asm<gh_stars>1-10
; A195036: Vertex number of a square spiral in which the length of the first two edges are the legs of the primitive Pythagorean triple [15, 8, 17]. The edges of the spiral have length A195035.
; 0,15,23,53,69,114,138,198,230,305,345,435,483,588,644,764,828,963,1035... |
programs/oeis/277/A277070.asm | neoneye/loda | 22 | 199994 | <reponame>neoneye/loda
; A277070: Row length of A276380(n).
; 1,1,1,1,2,1,2,1,1,2,2,1,2,2,2,1,2,1,2,2,2,2,3,1,2,2,1,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,3,2,2,3,3,1,2,2,2,2,3,1,2,2,2,2,3,2,3,2,2,1,2,2,2,2,3,2,3,1,2,2,2,2,3,2,3,2,1,2,2,2,2,3,2,3,2,2,3,3,2,3,3,1,2,2,2,2
lpb $0
mov $2,$0
seq $2,179276 ; Largest 3-smooth num... |
libsrc/_DEVELOPMENT/arch/zxn/esxdos/c/sccz80/esx_m_tapein_info.asm | Toysoft/z88dk | 0 | 199995 | <filename>libsrc/_DEVELOPMENT/arch/zxn/esxdos/c/sccz80/esx_m_tapein_info.asm
; unsigned char esx_m_tapein_info(uint8_t *drive,unsigned char *filename)
SECTION code_esxdos
PUBLIC esx_m_tapein_info
EXTERN asm_esx_m_tapein_info
esx_m_tapein_info:
pop af
pop hl
pop de
push de
push hl
push af
... |
oeis/283/A283799.asm | neoneye/loda-programs | 11 | 199996 | ; A283799: Number of dispersed Dyck prefixes of length 2n and height n.
; Submitted by <NAME>
; 1,2,5,12,36,90,286,728,2380,6120,20349,52668,177100,460460,1560780,4071600,13884156,36312408,124403620,326023280,1121099408,2942885946,10150595910,26681566392,92263734836,242799302200,841392966470,2216352204360,7694644696200... |
04/fill/Fill.asm | mikysett/nand2tetris | 0 | 199997 | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by <NAME>, MIT Press.
// File name: projects/04/Fill.asm
// Runs an infinite loop that listens to the keyboard input.
// When a key is pressed (any key), the program blackens the screen,
// i.e. writes "black" in ... |
asm_labs/src/2.asm | yerseg/mephi_projects | 0 | 199998 | .586
.model flat, stdcall
.data
my_byte db 01110111b
one db 1b
.code
start:
mov al, my_byte
shl al, 1
jnc final
not al
rcr al, 1
ret
final:
rcr al, 1
ret
end start
|
build/default/production/main.asm | AlphaFelix/PBLE | 0 | 199999 | ;--------------------------------------------------------
; File Created by SDCC : free open source ANSI-C Compiler
; Version 3.6.0 #9615 (MINGW64)
;--------------------------------------------------------
; PIC16 port for the Microchip 16-bit core micros
;--------------------------------------------------------
list ... |
data/mapHeaders/mansion1.asm | adhi-thirumala/EvoYellow | 16 | 40000 | Mansion1_h:
db FACILITY ; tileset
db MANSION_1_HEIGHT, MANSION_1_WIDTH ; dimensions (y, x)
dw Mansion1Blocks, Mansion1TextPointers, Mansion1Script ; blocks, texts, scripts
db $00 ; connections
dw Mansion1Object ; objects
|
libsrc/_DEVELOPMENT/math/float/math48/c/sdcc_ix/cm48_sdccix_isunordered.asm | jpoikela/z88dk | 640 | 40002 |
; int isunordered(double x, double y)
SECTION code_clib
SECTION code_fp_math48
PUBLIC cm48_sdccix_isunordered
EXTERN am48_isunordered, cm48_sdccixp_dread2
cm48_sdccix_isunordered:
call cm48_sdccixp_dread2
; AC'= y
; AC = x
jp am48_isunordered
|
asm/jo_f_percent.asm | JozanLeClerc/lowbat-bsd | 1 | 40003 | <gh_stars>1-10
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; File : jo_f_percent.asm /_________/ ;;
;; Author : Joe ... |
Library/StreamC/streamCDriver.asm | steakknife/pcgeos | 504 | 40004 | <filename>Library/StreamC/streamCDriver.asm
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1993 -- All Rights Reserved
PROJECT: GEOS
MODULE: Library/StreamC
FILE: streamCDriver.asm
AUTHOR: <NAME>
FUNCTIONS:
Scope Name Description
----- ---- ------... |
programs/oeis/188/A188319.asm | karttu/loda | 0 | 40005 | <filename>programs/oeis/188/A188319.asm
; A188319: Positions of 0 in A188318; complement of A188320.
; 4,7,14,21,24,31,38,41,48,55,62,65,72,79,82,89,96,103,106,113,120,123,130,137,140,147,154,161,164,171,178,181,188,195,202,205,212,219,222,229,236,239,246,253,260,263,270,277,280,287,294,301,304,311,318,321,328,335,342,... |
bootsector/utils.asm | Derpius/DerpiOS | 0 | 40006 | <reponame>Derpius/DerpiOS
; Takes a char pointer stored in bx and prints it using BIOS interrupts
print:
pusha
mov ah, 0x0e ; teletype text mode
; while next char != 0, move the char to al and trigger interrupt
.loop:
mov al, [bx] ; move char to al
cmp al, 0 ; check if char is null
je .end ; if char... |
oeis/116/A116779.asm | neoneye/loda-programs | 11 | 40007 | ; A116779: Number of permutations of length n which avoid the patterns 2143, 2341, 3214.
; Submitted by <NAME>(s4)
; 1,2,6,21,72,237,761,2415,7626,24034,75689,238298,750179,2361533,7433917,23401274,73664906,231889749,729965584,2297858029,7233425149,22770092131,71677951146,225634953382,710276052265,2235877300106
mov $3... |
programs/oeis/282/A282029.asm | neoneye/loda | 22 | 40008 | <gh_stars>10-100
; A282029: a(n) = n - pi(n/2).
; 0,1,2,3,3,4,4,5,6,7,7,8,9,10,10,11,12,13,14,15,16,17,17,18,19,20,20,21,22,23,24,25,26,27,27,28,29,30,30,31,32,33,34,35,36,37,37,38,39,40,41,42,43,44,45,46,47,48,48,49,50,51,51,52,53,54,55,56,57,58,59,60,61,62,62,63,64,65,66,67,68,69,69,70,71,72,72,73,74,75,76,77,78,79,7... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_1062.asm | ljhsiun2/medusa | 9 | 40009 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_1062.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r8
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x3490, %r10
and $59644, %rdx
movb $0x61, (%r10)
nop
nop
nop
add %rsi, %rsi
lea add... |
Source/HBIOS/rf.asm | vipoo/RomWBW | 0 | 40010 | <reponame>vipoo/RomWBW<filename>Source/HBIOS/rf.asm
;
;==================================================================================================
; RAM FLOPPY DISK DRIVER
;==================================================================================================
;
;
;
RF_U0IO .EQU $A0 ; BASED... |
src/arch/risc-v/include/switch.asm | QRWells/Hammer-OS | 0 | 40011 | <reponame>QRWells/Hammer-OS
.equ REG_SIZE, 8
.altmacro
.macro SAVE reg, offset
sd \reg, \offset*REG_SIZE(sp)
.endm
.macro SAVE_N n
SAVE s\n, (\n+2)
.endm
.macro LOAD reg, offset
ld \reg, \offset*REG_SIZE(sp)
.endm
.macro LOAD_N n
LOAD s\n, (\n+2)
.endm
addi sp, sp, (-REG_SIZE*14)
sd ... |
8088/xtserver/vdos/vdos.asm | reenigne/reenigne | 92 | 40012 | %include "../../defaults_bin.asm"
tempBuffer equ codeEnd
tempBufferSize equ 16
stackStart equ tempBuffer + tempBufferSize
stackSize equ 0x100
pspStart equ (15 + stackStart + stackSize) & 0xfff0
pspEnd equ 0x100 + pspStart
codeStart equ pspEnd
; Set up stack
cli
mov ax,cs
mov ss,ax
mov sp,stackStart + 0x100
... |
Contador/Contador_Alpha.asm | LorisLambert/Assembly_pt-BR | 0 | 40013 | <reponame>LorisLambert/Assembly_pt-BR<filename>Contador/Contador_Alpha.asm
#INCLUDE <P16F873A.INC>
CBLOCK 0X20 ; DECLARAÇÃO DAS VARIÁVEIS
MEMORIA
TEMPO
ENDC
ORG 0X00
BSF STATUS, 0X05 ... |
data/mapObjects/MtMoonB1F.asm | AmateurPanda92/pokemon-rby-dx | 9 | 40014 | MtMoonB1F_Object:
db $3 ; border block
db 8 ; warps
warp 5, 5, 2, MT_MOON_1F
warp 17, 11, 0, MT_MOON_B2F
warp 25, 9, 3, MT_MOON_1F
warp 25, 15, 4, MT_MOON_1F
warp 21, 17, 1, MT_MOON_B2F
warp 13, 27, 2, MT_MOON_B2F
warp 23, 3, 3, MT_MOON_B2F
warp 27, 3, 2, -1
db 0 ; signs
db 0 ; objects
; warp-to
warp_... |
P6/data_P6_2/cal_R_test41.asm | alxzzhou/BUAA_CO_2020 | 1 | 40015 | lui $1,40432
ori $1,$1,58808
lui $2,15132
ori $2,$2,45970
lui $3,19299
ori $3,$3,5889
lui $4,64607
ori $4,$4,361
lui $5,28942
ori $5,$5,37552
lui $6,42793
ori $6,$6,55634
mthi $1
mtlo $2
sec0:
nop
nop
nop
subu $5,$6,$2
sec1:
nop
nop
sltu $2,$1,$4
subu $3,$6,$2
sec2:
nop
nop
ori $2,$2,28489
subu $3,$6,$2
sec... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_562.asm | ljhsiun2/medusa | 9 | 40016 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_562.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r14
push %r15
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x8938, %rdi
nop
nop
nop
dec %r15
movw $0x6162, (%rdi)
nop
nop
nop
nop
nop
add %... |
LED Interfacing/Patterns/Pattern9.a51 | dmdhrumilmistry/8051-Codes | 0 | 40018 | // . . . . . . . .
// 7 6 5 4 3 2 1 0
// PATTERN 9 ON PORT 2
//
// . . . . . . . .
//
// . . . . . .
//
// . . . .
//
// . .
// 7 6 5 4 3 2 1 0
ORG 0000H
// MAIN PROGRAM
REPEAT: MOV P2,#00H
ACALL DELAY
MOV P2,#0FFH
ACALL DELAY
MOV P2,#00H
ACALL DELAY
MOV P2,#7EH
ACALL DEL... |
Miscellaneous/Rotate and Zoom Ti 84 CE/rotzoom.asm | CiaranGruber/Ti-84-Calculator | 1 | 40019 | <filename>Miscellaneous/Rotate and Zoom Ti 84 CE/rotzoom.asm
#include ti84pce.inc
.org userMem-2
.db tExtTok,tAsm84CeCmp
di
ld a,$25
ld ($E30018),a ; set to 16 color mode
ld hl,image_data ; copy ... |
programs/oeis/001/A001653.asm | neoneye/loda | 22 | 40020 | ; A001653: Numbers k such that 2*k^2 - 1 is a square.
; 1,5,29,169,985,5741,33461,195025,1136689,6625109,38613965,225058681,1311738121,7645370045,44560482149,259717522849,1513744654945,8822750406821,51422757785981,299713796309065,1746860020068409,10181446324101389,59341817924539925,345869461223138161,201587494941428904... |
src/test/resources/data/searchtests/opt-test9-expected.asm | cpcitor/mdlz80optimizer | 0 | 40021 | <filename>src/test/resources/data/searchtests/opt-test9-expected.asm
org #4000
execute:
ld de, v1
ld hl, v2
ld b, 0
ld a, (v3)
add a, a
ld c, a
rl b
sla c
rl b
sla c
rl b
add hl, bc
ld bc, 8
ldir
loop:
jr loop
org #cccc
v1:
org $ + 2
v2:
o... |
gsc-12925/source/dsasm.asm | SteveDoyle2/nasa-cosmic | 22 | 40022 | page 62,132
FONT1 SEGMENT COMMON
FONT1 ENDS
;
FONT2 SEGMENT COMMON
FONT2 ENDS
;
FONT3 SEGMENT COMMON
FONT3 ENDS
;
FONTS SEGMENT COMMON
FONTS ENDS
;
DSPACE SEGMENT PUBLIC
DSBUF DB 64000 DUP(?) ;DISPLAY SPACE
DSPACE ENDS
;
DSCODE SEGMENT PUBLIC
ASSUME CS:DSCODE, ES:DSPACE
;
NDON DW 1
ND... |
6 Polymorphic Shellcode/chmod.nasm | kecebon9/slae32 | 0 | 40023 | ; http://shell-storm.org/shellcode/files/shellcode-550.php
; 31 bytes
global _start
_start:
xor eax,eax
xor ebx,ebx
xor ecx,ecx
push ebx
push dword 0x68732f6e ; hs/n
push dword 0x69622f2f ; ib//
mov ebx,esp
mov cx,0x9fd
mov al,0xf
int 0x80
mov al,0x1
int 0x80
|
drivers/core/x64/src/interrupts/handlers.asm | dbargatz/system | 1 | 40024 | extern this_core
extern interrupt_entry
extern syscall_entry
global jump_usermode
global syscall_handler
section .text
bits 64
interrupt_handler_generic:
;; TODO: save SSE registers (XMM; FXSAVE/FXRSTOR?)
;; TODO: why push in this order?
;; TODO: Clear direction flag for SysV ABI?
;; TODO: push segme... |
programs/oeis/070/A070394.asm | neoneye/loda | 22 | 40026 | <gh_stars>10-100
; A070394: a(n) = 6^n mod 17.
; 1,6,2,12,4,7,8,14,16,11,15,5,13,10,9,3,1,6,2,12,4,7,8,14,16,11,15,5,13,10,9,3,1,6,2,12,4,7,8,14,16,11,15,5,13,10,9,3,1,6,2,12,4,7,8,14,16,11,15,5,13,10,9,3,1,6,2,12,4,7,8,14,16,11,15,5,13,10,9,3,1,6,2,12,4,7,8,14,16,11,15,5,13,10,9,3,1,6,2,12
mov $1,1
lpb $0
sub $0,1
... |
Outside/clinkster/music.asm | in4k/SailingBeyond | 1 | 40027 | ; Clinkster music converted from music.xrns 2017-02-13 23:50:08
%define USES_SINE 1
%define USES_SAWTOOTH 1
%define USES_SQUARE 0
%define USES_PARABOLA 1
%define USES_TRIANGLE 1
%define USES_NOISE 1
%define USES_VELOCITY 0
%define USES_LONG_NOTES 1
%define USES_DELAY 1
%define USES_PANNING 1
%define USES_INDEXDECAY 1
... |
programs/oeis/145/A145813.asm | karttu/loda | 0 | 40028 | ; A145813: 1/2 the number of islands of ones fitting in an n X n array symmetric about main diagonal with all ones connected only either three adjacent vertically or three adjacent horizontally.
; 0,0,0,1,2,2,3,4,6,7,8,10,12,14,16,19,21,24,27,30
mov $2,$0
pow $0,2
add $0,1
mul $0,2
sub $0,1
add $2,13
add $0,$2
add $0,... |
programs/oeis/122/A122247.asm | karttu/loda | 0 | 40029 | ; A122247: Partial sums of A005187.
; 0,1,4,8,15,23,33,44,59,75,93,112,134,157,182,208,239,271,305,340,378,417,458,500,546,593,642,692,745,799,855,912,975,1039,1105,1172,1242,1313,1386,1460,1538,1617,1698,1780,1865,1951,2039,2128,2222,2317,2414
lpb $0,1
mov $2,$0
sub $0,1
lpb $2,1
add $1,$2
div $2,2
lp... |
Source/kernel/interrupts.asm | pgrabas/Supernova | 0 | 40030 | <reponame>pgrabas/Supernova
bits 32
section .text
;-----------------------------------MACROS--------------------------------
%macro debug 0
pusha
mov dx, 0x8A00
mov ax, dx
out dx, ax
mov ax, 0x8aE0
mov dx, 0x8a00
out dx, ax
popa
%endmacro
%macro PUSH_REGS 0
pushad
push ds
push eax
mov ax, 0x10
mov ds... |
Assembler/AssemblyCode/JZ.asm | KPU-RISC/KPU | 8 | 40031 | <reponame>KPU-RISC/KPU
:START
MOV D, 00000100b
MOV E, 00000001b
SUB D, E
; Conditional Jump if the Zero-Flag from the ALU is 1
JZ :START
; Write register F to the Output Port
MOV F, 0
OUTB F
; Stops the CPU execution
HLT |
sources/ippcp/asm_ia32/pcpsha256nias.asm | dongbinghua/ipp-crypto | 233 | 40032 | <gh_stars>100-1000
;===============================================================================
; Copyright 2014-2021 Intel Corporation
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
;... |
Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0x84_notsx.log_21829_538.asm | ljhsiun2/medusa | 9 | 40033 | <reponame>ljhsiun2/medusa<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x1a62e, %r13
nop
nop
cmp $39143, %rbx
vmovups (%r13), %ymm6
vextracti128 $0, %ymm6, %xmm6
vpextrq $1, %xmm6, %rsi
nop
nop
nop
inc %rcx
lea addres... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_81.asm | ljhsiun2/medusa | 9 | 40034 | .global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r15
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0xded1, %rax
nop
nop
nop
nop
dec %r14
movw $0x6162, (%rax)
nop
xor $15492, %r14
lea addresses_A_ht+0x8d1e, %rsi
lea addresses_WC_ht+0x13f01, %rdi
nop
nop
nop
sub %r15, %r15
mov $66, %rcx... |
oeis/315/A315311.asm | neoneye/loda-programs | 11 | 40035 | ; A315311: Coordination sequence Gal.3.51.3 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings.
; Submitted by <NAME>(s2.)
; 1,6,10,16,20,26,32,36,42,46,52,58,62,68,72,78,84,88,94,98,104,110,114,120,124,130,136,140,146,150,156,162,166,172,... |
syscalls/_syscalls.asm | alexbelm48/AtieDOS | 33 | 40036 | <filename>syscalls/_syscalls.asm
; AtieDOS 2.10 System Calls Linker
; Copyright (c) 2020 AtieSoftware.
; See LICENSE in root folder
%include "syscalls/commands.asm"
%include "syscalls/keyboard.asm"
%include "syscalls/print.asm"
%include "syscalls/screen.asm"
%include "syscalls/strings.asm" |
programs/oeis/057/A057947.asm | jmorken/loda | 1 | 40037 | <filename>programs/oeis/057/A057947.asm<gh_stars>1-10
; A057947: n has ambiguous representations in "bad hexadecimal": numbers with the digit 1 followed by a digit less than 6.
; 10,11,12,13,14,15,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130... |
2d/temp.asm | arbruijn/d1dos | 2 | 40038 | ;THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
;SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
;END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
;ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
;IN USING, DISPLAYING, ... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_17010_825.asm | ljhsiun2/medusa | 9 | 40040 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x53df, %r10
nop
nop
and %r11, %r11
mov (%r10), %r12d
nop
nop
nop
nop
xor $36436, %rbp
lea addresses_A_ht+0x1ced, %rsi
lea addresses_UC_ht+0xb0d, %rdi
nop
nop
n... |
Transynther/x86/_processed/NONE/_un_xt_sm_/i7-7700_9_0x48.log_21829_120.asm | ljhsiun2/medusa | 9 | 40041 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x1113f, %rsi
lea addresses_D_ht+0x1137f, %rdi
sub %r10, %r10
mov $3, %rcx
rep movsq
and %r10, %r10
pop %rsi
pop %rdi
pop %rcx
pop %r10
ret
.global s_faulty_load
s_faulty_load:
pus... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.