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 |
|---|---|---|---|---|
src/lib/getcwd.asm | zys1310992814/BookOSv0.2 | 3 | 120852 | <reponame>zys1310992814/BookOSv0.2<gh_stars>1-10
[bits 32]
[section .text]
INT_VECTOR_SYS_CALL equ 0x80
_NR_GETCWD EQU 24
global getcwd
getcwd:
mov eax, _NR_GETCWD
mov ebx, [esp + 4]
mov ecx, [esp + 8]
int INT_VECTOR_SYS_CALL
ret |
Levels/FBZ/Misc Object Data/Map - Miniboss.asm | NatsumiFox/AMPS-Sonic-3-Knuckles | 5 | 120853 | Map_6FAF8: dc.w word_6FB1C-Map_6FAF8
dc.w word_6FB36-Map_6FAF8
dc.w word_6FB3E-Map_6FAF8
dc.w word_6FB46-Map_6FAF8
dc.w word_6FB54-Map_6FAF8
dc.w word_6FB62-Map_6FAF8
dc.w word_6FB70-Map_6FAF8
dc.w word_6FB7E-Map_6FAF8
dc.w word_6FB98-Map_6FAF8
dc.w word_6FBBE-Map_6FAF8
dc.w word_6FBE4-Map_6FAF8
... |
lib/chibiakumas/SrcALL/Multiplatform_ReadJoystick.asm | gilbertfrancois/msx | 0 | 120854 | ifdef BuildGMB
HardwareJoystick equ 1
read "..\SrcGB\GB_V1_ReadJoystick.asm"
endif
ifdef BuildGBC
HardwareJoystick equ 1
read "..\SrcGB\GB_V1_ReadJoystick.asm"
endif
ifdef BuildSMS
HardwareJoystick equ 1
read "..\SrcSMS\SMS_V1_ReadJoystick.asm"
endif
ifdef BuildSGG
HardwareJoystick equ 1... |
tasks/whoami.asm | Masrt200/asm-disasm | 0 | 120856 |
;; Find the output when
;; i) ds:0x402000 = 0x157b0
;; ii) ds:0x402000 = 0x51445
;; iii) ds:0x402000 = 0x10001
;; file format elf64-x86-64
;; Disassembly of section .text:
0000000000401000 <_start>:
401000: bb 00 00 00 00 mov ebx,0x0
0000000000401005 <func1>:
401005: /-> 48 ff c3 ... |
libtool/src/gmp-6.1.2/mpn/x86_64/coreisbr/sqr_basecase.asm | kroggen/aergo | 1,602 | 120857 | <gh_stars>1000+
dnl AMD64 mpn_sqr_basecase optimised for Intel Sandy bridge and Ivy bridge.
dnl Contributed to the GNU project by <NAME>.
dnl Copyright 2008, 2009, 2011-2013 Free Software Foundation, Inc.
dnl This file is part of the GNU MP Library.
dnl
dnl The GNU MP Library is free software; you can redistrib... |
oeis/098/A098614.asm | neoneye/loda-programs | 11 | 120858 | <gh_stars>10-100
; A098614: Product of Fibonacci and Catalan numbers: a(n) = A000045(n+1)*A000108(n).
; Submitted by <NAME>
; 1,1,4,15,70,336,1716,9009,48620,267410,1494844,8465184,48466796,280073300,1631408400,9568812015,56466198990,335002137360,1997007404700,11955535480350,71850862117320,433322055191220,2621615826231... |
2011400_NguyenTuanKiet_Lab5/bt10.asm | alumica/KTMT | 0 | 120859 | .model small
.stack 100h
.data
tbn1 db 'Nhap chieu dai: $'
tbn2 db 13, 10, 'Nhap chieu rong: $'
tbx1 db 13, 10, 'Chu vi hinh chu nhat: $'
tbx2 db 13, 10, 'Dien tich hinh chu nhat: $'
d dw 0
r dw 0
tam dw 0
cv dw ?
dt dw ?
.code
mov ax, @data
... |
CSE341-BRACU-Microprocessors/Assignment-2(Lab-3)/task8.asm | AIM3r4j/BRACU | 0 | 120860 | <reponame>AIM3r4j/BRACU
.MODEL SMALL
.STACK 100H
.DATA
;variables
s db '**********',0dh,0ah,'$'
.CODE
MAIN PROC
;initialize DS
MOV AX,@DATA
MOV DS,AX
; enter your code here
lea dx, s
mov ah, 9
;Displaying string 10 times
int 21h
int 21h
int 21h
int 21h
int 21h... |
oeis/328/A328821.asm | neoneye/loda-programs | 11 | 120861 | <filename>oeis/328/A328821.asm
; A328821: Triangular array read by rows. Let P be the poset of all even sized subsets of [2n] ordered by inclusion. T(n,k) is the number of intervals in P with length k, 0<=k<=n, n>=0.
; Submitted by <NAME>
; 1,2,1,8,12,1,32,120,30,1,128,896,560,56,1,512,5760,6720,1680,90,1,2048,33792,... |
libsrc/_DEVELOPMENT/arch/ts2068/display/z80/asm_tshc_aaddr2cy.asm | jpoikela/z88dk | 640 | 120864 | ; ===============================================================
; May 2017
; ===============================================================
;
; uchar tshc_aaddr2cy(void *aaddr)
;
; Character y coordinate corresponding to attribute address.
;
; ===============================================================
SECTION ... |
Ficheiros assembly (TP's e Testes)/ex15-folhasimd.asm | pemesteves/mpcp-1718 | 0 | 120866 | include mpcp.inc
.xmm
;; declaracoes de dados (variaveis globais)
.data
sequencia REAL4 17.2, 10.0, 3.1, 6.2, 1.0, 2.0, 3.0, 4.0
;; seccao de codigo principal
.code
mirrorSeq PROTO seq:PTR REAL4, N:DWORD
main PROC C
invoke mirrorSeq, offset sequencia, lengthof sequencia
invoke _getch
invoke ExitProcess, 0
main... |
oeis/192/A192427.asm | neoneye/loda-programs | 11 | 120867 | ; A192427: Coefficient of x in the reduction by x^2->x+2 of the polynomial p(n,x) defined below in Comments.
; Submitted by <NAME>
; 0,1,1,8,11,45,80,251,517,1432,3195,8317,19360,48827,116213,288360,694331,1708397,4138480,10138363,24636645,60217912,146570491,357833309,871703360,2126857275,5183425493,12642971912,3081957... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_211.asm | ljhsiun2/medusa | 9 | 120869 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r8
push %r9
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x1c1, %rsi
lea addresses_D_ht+0x4696, %rdi
nop
nop
cmp %r8, %r8
mov $68, %rcx
rep movsb
nop
xor %r8, %r8
lea addresses_WC_ht+0xf996, %r9
clflush (%r9)
nop
nop
add %r13, %r13
mov... |
oeis/014/A014401.asm | neoneye/loda-programs | 11 | 120870 | <gh_stars>10-100
; A014401: Denominators of coefficients of expansion of Bessel function J_3(x).
; Submitted by <NAME>(s1)
; 48,768,30720,2211840,247726080,39636172800,8561413324800,2397195730944000,843812897292288000,364527171630268416000,189554129247739576320000,116765343616607579013120000,840710474039574568894464000... |
text/maps/pokemon_tower_6f.asm | adhi-thirumala/EvoYellow | 16 | 120871 | _PokemonTower2Text_60c1f::
text "The GHOST was the"
line "restless soul of"
cont "CUBONE's mother!"
done
_PokemonTower2Text_60c24::
text "The mother's soul"
line "was calmed."
para "It departed to"
line "the afterlife!"
done
_PokemonTower6BattleText1::
text "Give...me..."
line "blood..."
done
_PokemonTo... |
oeis/094/A094854.asm | neoneye/loda-programs | 11 | 120872 | <reponame>neoneye/loda-programs
; A094854: Number of (s(0), s(1), ..., s(2n)) such that 0 < s(i) < 9 and |s(i) - s(i-1)| = 1 for i = 1,2,....,2n, s(0) = 4, s(2n) = 4.
; Submitted by <NAME>
; 1,2,6,20,69,241,846,2977,10490,36994,130532,460737,1626629,5743674,20283121,71632290,252989326,893528468,3155899165,11146628105,3... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1877.asm | ljhsiun2/medusa | 9 | 120873 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r8
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x1dab, %r8
nop
nop
nop
nop
nop
cmp %r10, %r10
movw $0x6162, (%r8)
nop
nop
nop
cmp $53576, %r10
lea addresses_WT_ht+0x60ab, %r11
nop
cmp %rdx, %rdx
movb $0x61, (%r11)
nop
nop
a... |
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48.log_1_2788.asm | ljhsiun2/medusa | 9 | 120874 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r8
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x1078, %rsi
lea addresses_D_ht+0xaf18, %rdi
nop
nop
nop
nop
nop
add $51065, %r8
mov $119, %rcx
rep movsw
nop
nop
nop
nop
nop
inc %r13
pop %rsi
pop %rdi
pop %rcx
pop %r8
pop %r13
ret
.global s_faulty_lo... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_1158.asm | ljhsiun2/medusa | 9 | 120875 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r13
push %r15
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x9236, %r13
nop
nop
nop
nop
nop
xor $8848, %rbp
movl $0x61626364, (%r13)
nop
nop
nop
xor $3295, %r12
lea addresses_A_ht+0xa126, %r15
nop
nop
nop
xor $43687... |
lab5/es3.asm | neskov7/AssemblyProgramsCE | 0 | 120876 | <reponame>neskov7/AssemblyProgramsCE<gh_stars>0
DIM EQU 8
.model small
.stack
.data
num db 25
res db 0
.code
.startup
mov cx,DIM
ciclo:
rol num,1
adc res,0
loop ciclo
.exit
end |
Transynther/x86/_processed/AVXALIGN/_ht_st_zr_un_/i9-9900K_12_0xa0_notsx.log_21829_298.asm | ljhsiun2/medusa | 9 | 120877 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/AVXALIGN/_ht_st_zr_un_/i9-9900K_12_0xa0_notsx.log_21829_298.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r8
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x1505f, %rsi
lea addresses_WT_ht+0x1950f, %rdi
nop
nop
nop
sub $24834, %rbp
mov ... |
oeis/190/A190510.asm | neoneye/loda-programs | 11 | 120878 | ; A190510: a(n) = 8*a(n-1) + 4*a(n-2), with a(0)=0, a(1)=1.
; Submitted by <NAME>(s4)
; 0,1,8,68,576,4880,41344,350272,2967552,25141504,213002240,1804583936,15288680448,129527779328,1097376956416,9297126768640,78766521974784,667320682872832,5653631550881792,47898335138545664,405801207311892480,3438002999049322496,29127... |
libsrc/_DEVELOPMENT/math/float/math16/c/sdcc/cm16_sdcc_inv.asm | Frodevan/z88dk | 640 | 120879 |
; half __inv (half number)
SECTION code_fp_math16
PUBLIC cm16_sdcc_inv
EXTERN cm16_sdcc_read1
EXTERN asm_f16_inv
.cm16_sdcc_inv
; invert sdcc half
;
; enter : stack = sdcc_half number, ret
;
; exit : HL = sdcc_half(1/number)
;
; uses : af, bc, de, hl, af', bc', de', hl'
call ... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_2_2384.asm | ljhsiun2/medusa | 9 | 120881 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r13
push %r14
push %r8
push %rbp
push %rsi
// Store
lea addresses_UC+0x16eee, %rbp
nop
nop
nop
nop
nop
cmp %r8, %r8
mov $0x5152535455565758, %rsi
movq %rsi, %xmm2
movntdq %xmm2, (%rbp)
n... |
oeis/098/A098332.asm | neoneye/loda-programs | 11 | 120883 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A098332: Expansion of 1/sqrt(1 - 2*x + 9*x^2).
; Submitted by <NAME>
; 1,1,-3,-11,1,81,141,-363,-1791,-479,13597,29877,-54911,-353807,-223443,2539989,6806529,-8302527,-73999299,-73313931,489731841,1584548241,-1110170163,-15812965611,-21391839999,94696016481,370871570781... |
oeis/267/A267233.asm | neoneye/loda-programs | 11 | 120884 | <gh_stars>10-100
; A267233: Number of length-4 0..n arrays with no following elements greater than or equal to the first repeated value.
; 6,47,176,470,1030,1981,3472,5676,8790,13035,18656,25922,35126,46585,60640,77656,98022,122151,150480,183470,221606,265397,315376,372100,436150,508131,588672,678426,778070,888305,1009... |
Transynther/x86/_processed/AVXALIGN/_st_sm_/i7-7700_9_0xca.log_14657_1262.asm | ljhsiun2/medusa | 9 | 120885 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r14
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x1ae8e, %rbp
nop
nop
nop
nop
nop
inc %r11
vmovups (%rbp), %ymm0
vextracti128 $0, %ymm0, %xmm0
vpextrq $1, %xmm0, %rcx
nop
nop
nop
nop
and $51583, %rdi
lea addr... |
07/StackOverflowTest/StackOverflowTest.asm | Savioor/nand2tetris2022-public | 0 | 120886 | // push constant 0
@0
D = A
@SP
M = M + 1
A = M - 1
M = D
// push constant 32767
@32767
D = A
@SP
M = M + 1
A = M - 1
M = D
// sub
@SP
A = M - 1
A = A - 1
D = M
A = A + 1
D = D - M
A = A - 1
M = D
@SP
M = M - 1
// push constant 2
@2
D = A
@SP
M = M + 1
A = M - 1
M = D
// lt
@SP
A = M - 1
D = M
A = A - 1
D = D - M
@TRUE... |
programs/oeis/161/A161522.asm | neoneye/loda | 22 | 120888 | ; A161522: prime(n)*( prime(n)-n ).
; 2,3,10,21,66,91,170,209,322,551,620,925,1148,1247,1504,1961,2478,2623,3216,3621,3796,4503,4980,5785,6984,7575,7828,8453,8720,9379,12192,12969,14248,14595,16986,17365,18840,20375,21376,23009,24702,25159,28268,28757
sub $1,$0
seq $0,40 ; The prime numbers.
add $1,$0
sub $1,1
mul $0,... |
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xa0.log_21829_412.asm | ljhsiun2/medusa | 9 | 120889 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r14
push %r15
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x18ee2, %rdi
nop
nop
nop
nop
and %r14, %r14
movw $0x6162, (%rdi)
nop
nop
dec %r9
lea addresses_D_ht+0x77e2, %r11
nop
nop
nop
nop
nop
and %r15, %r15
mov (%r11), %r10d... |
oeis/154/A154144.asm | neoneye/loda-programs | 11 | 120891 | ; A154144: Indices k such that 13 plus the k-th triangular number is a perfect square.
; Submitted by <NAME>(s1)
; 2,8,23,53,138,312,807,1821,4706,10616,27431,61877,159882,360648,931863,2102013,5431298,12251432,31655927,71406581,184504266,416188056,1075369671,2425721757,6267713762,14138142488,36530912903,82403133173,21... |
maps/CeladonMansionRoofHouse.asm | Dev727/ancientplatinum | 28 | 120892 | <reponame>Dev727/ancientplatinum
object_const_def ; object_event constants
const CELADONMANSIONROOFHOUSE_PHARMACIST
CeladonMansionRoofHouse_MapScripts:
db 0 ; scene scripts
db 0 ; callbacks
CeladonMansionRoofHousePharmacistScript:
faceplayer
opentext
checkevent EVENT_GOT_TM03_CURSE
iftrue .GotCurse
writetex... |
oeis/346/A346866.asm | neoneye/loda-programs | 11 | 120893 | <filename>oeis/346/A346866.asm
; A346866: Sum of divisors of the n-th second hexagonal number.
; 4,18,32,91,72,168,192,270,260,576,288,868,560,720,768,1488,864,1482,1120,1764,1408,2808,1152,3420,2232,2268,2880,4480,1800,4464,3328,5292,3264,5184,3456,6734,4712,5760,4480,10890,3528,10368,5280,7560,8736,9216,5760,12152
m... |
programs/oeis/212/A212968.asm | jmorken/loda | 1 | 120894 | ; A212968: Number of (w,x,y) with all terms in {0,...,n} and w>=range{w,x,y}.
; 1,5,17,38,75,127,203,300,429,585,781,1010,1287,1603,1975,2392,2873,3405,4009,4670,5411,6215,7107,8068,9125,10257,11493,12810,14239,15755,17391,19120,20977,22933,25025,27222,29563,32015,34619,37340
mov $12,$0
mov $14,$0
add $14,1
lpb $14
... |
c6ers/interlnk/fxlib/listen.asm | minblock/msdos | 0 | 120895 | INCLUDE model.inc
INCLUDE fastlynx.inc
.DATA
EXTRN last_operation:BYTE
PUBLIC FirstListen
FirstListen db 1
StartTicks dw ?
.CODE text
PUBLIC ResetListenTime
EXTRN FxRestor... |
programs/oeis/063/A063656.asm | neoneye/loda | 22 | 120896 | <reponame>neoneye/loda<filename>programs/oeis/063/A063656.asm<gh_stars>10-100
; A063656: Numbers k such that the truncated square root of k is equal to the rounded square root of k.
; 0,1,2,4,5,6,9,10,11,12,16,17,18,19,20,25,26,27,28,29,30,36,37,38,39,40,41,42,49,50,51,52,53,54,55,56,64,65,66,67,68,69,70,71,72,81,82,83... |
Source/Branch.asm | AAKMakes/ASM-projects | 0 | 120897 | ;
; Comment
;
; === STACK SEGMENT ===
MyStack segment stack
DB 64 dup('12345678')
MyStack endS
; === DATA SEGMENT ===
MyData segment
; --- Declare your variables here ---
howOldMsg DB "How old are you? ","$"
cannotVote DB "You cannot vote.$"
canVote DB "You can vote.$"
kid DB "You are a kid.$"
teen DB "... |
libsrc/_DEVELOPMENT/arch/cpm/z80/asm_cpm_set_offset.asm | jpoikela/z88dk | 640 | 120898 |
; ===============================================================
; 2015
; ===============================================================
;
; void cpm_set_offset(void *p, unsigned long offset)
;
; Store the least significant three bytes of "offset" at address p.
;
; ==================================================... |
src/BareNaked-Demo/src/counter.asm | hattyhacker/BareNaked-OS | 1 | 120901 | ; Counter Program (v1.0, January 30 2020)
; Written by <NAME>
;
; BareMetal compile:
; nasm counter.asm -o counter.app
[BITS 64]
[ORG 0x0000000000200000]
%INCLUDE "libBareMetal.asm"
start: ; Start of program label
xor rax, rax
next:
mov rdi, tstring
mov rsi, rdi
call int_to_string
call output
add rax, 1
... |
libsrc/_DEVELOPMENT/z180/c/sccz80/z180_indr.asm | jpoikela/z88dk | 640 | 120902 | <reponame>jpoikela/z88dk
; void *z180_indr(void *dst, uint8_t port, uint8_t num)
SECTION code_clib
SECTION code_z180
PUBLIC z180_indr
EXTERN asm_z180_indr
z180_indr:
pop af
pop de
pop bc
pop hl
push hl
push bc
push de
push af
ld b,e
jp asm_z180_indr
|
dino/lcs/item/44.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | 6 | 120903 | <reponame>zengfr/arcade_game_romhacking_sourcecode_top_secret_data
copyright zengfr site:http://github.com/zengfr/romhack
00042A move.l D1, (A0)+
00042C dbra D0, $42a
004D3A move.l D0, (A4)+
004D3C move.l D0, (A4)+
005AF4 movea.l ($44,A1), A2
005AF8 adda.w D0, A2 [item+44, item+46]
01291A movea.l ($4... |
programs/oeis/165/A165846.asm | jmorken/loda | 1 | 120905 | <reponame>jmorken/loda
; A165846: Totally multiplicative sequence with a(p) = 25.
; 1,25,25,625,25,625,25,15625,625,625,25,15625,25,625,625,390625,25,15625,25,15625,625,625,25,390625,625,625,15625,15625,25,15625,25,9765625,625,625,625,390625,25,625,625,390625,25,15625,25,15625,15625,625,25,9765625,625,15625,625,15625,2... |
5-Clear Loop/ClearLoop.asm | petriw/Commodore64Programming | 259 | 120906 | processor 6502
org $1000
lda #$00
sta $d020
sta $d021
tax
lda #$20
loop:
sta $0400,x
sta $0500,x
sta $0600,x
sta $0700,x
dex
bne loop |
game/include/map0.asm | wkcn/OSLabs | 73 | 120907 | db 1, 2, 3, 4, 5, 4, 5, 4, 5, 6, 7, 8, 7, 8, 7, 8, 7, 8, 67, 68
db 25, 12, 13, 12, 13, 12, 13, 12, 13, 14, 13, 12, 13, 12, 13, 12, 13, 12, 99, 68
db 33, 12, 13, 12, 13, 12, 13, 12, 13, 14, 13, 12, 13, 12, 13, 12, 13, 12, 99, 68
db 9, 10, 11, 12, 13, 12, 13, 12, 13, 14, 13, 12, 13, 12, 13, 12, 73, 74, 75, 68
db 17, ... |
programs/oeis/281/A281500.asm | karttu/loda | 0 | 120908 | <filename>programs/oeis/281/A281500.asm
; A281500: Reduced denominators of f(n) = (n+1)/(2^(2+n)-2) with A026741(n+1) as numerators.
; 2,3,14,15,62,63,254,255,1022,1023,4094,4095,16382,16383,65534,65535,262142,262143,1048574,1048575,4194302,4194303,16777214,16777215,67108862,67108863,268435454,268435455,1073741822,1073... |
hasher/asm/masm/MD4x64.asm | Hitsounds/ShokoServer | 183 | 120909 | .code
MD4_x64 PROC
push rbp
push rbx
push r12
push r13
push r14
push r15
push rsi
push rdi
; parameter 1 in rcx, param 2 in rdx , param 3 in r8
; see http://weblogs.asp.net/oldnewthing/archive/2004/01/14/58579.aspx and
; http://msdn.microsoft.com/l... |
os/linux/arch/x86-64/init.asm | Granary/granary2 | 41 | 120910 | <reponame>Granary/granary2
/* Copyright 2014 <NAME>, all rights reserved. */
#include "arch/x86-64/asm/include.asm.inc"
START_FILE_INTEL
#ifdef GRANARY_WHERE_user
#ifndef GRANARY_TARGET_test
DECLARE_FUNC(granary_init)
DECLARE_FUNC(exit_group)
.section .init
.global _init
.type _init, @function
_init:
.cfi_star... |
lab5/assemblies/vector_table.asm | AriaPahlavan/CompArch | 0 | 120911 | .ORIG x0200
.FILL x0000
.FILL x1200 ;0x0202 -> (x01) ISR
.FILL x1400 ;0x0204 -> (x02) Page-fault
.FILL x1A00 ;0x0206 -> (x03) Unaligned
.FILL x1600 ;0x0208 -> (x04) Protection
.FILL x1C00 ;0x020A -> (x05) Unknown
.END
|
programs/oeis/130/A130778.asm | neoneye/loda | 22 | 120912 | ; A130778: Period 6: repeat [1, -1, -3, -3, -1, 1].
; 1,-1,-3,-3,-1,1,1,-1,-3,-3,-1,1,1,-1,-3,-3,-1,1,1,-1,-3,-3,-1,1,1,-1,-3,-3,-1,1,1,-1,-3,-3,-1,1,1,-1,-3,-3,-1,1,1,-1,-3,-3,-1,1,1,-1,-3,-3,-1,1,1,-1,-3,-3,-1,1,1,-1,-3,-3,-1,1,1,-1,-3,-3
sub $0,739
dif $0,2
gcd $0,$0
add $0,20
mod $0,3
mul $0,2
sub $0,1
mov $1,-2
d... |
libs/Libmy/ASM/src/asm_putstr.asm | DarkyZShadow/my_printf | 0 | 120913 | <filename>libs/Libmy/ASM/src/asm_putstr.asm<gh_stars>0
;
; void asm_putstr(char *str);
;
BITS 64
SECTION .text
EXTERN asm_strlen
GLOBAL asm_putstr
asm_putstr:
PUSH RBX
PUSH RCX
PUSH RDX
CALL asm_strlen
;MOV RAX, 4 ; Sous fonction
;MOV RBX, 1 ; Flux (0 : stdin, 1 : stdo... |
libsrc/genmath/dmul.asm | dex4er/deb-z88dk | 1 | 120914 | ;
; Z88dk Generic Floating Point Math Library
;
;
;
; $Id: dmul.asm,v 1.1 2002/01/21 20:35:22 dom Exp $:
XLIB dmul
LIB fmul
.dmul
pop hl ;ret address
pop de
pop ix
pop bc
push hl
jp fmul
|
1e01.asm | sqph/td-micl | 0 | 120915 | ; 1e01.asm
global main
section .text
main:
nop ; ne fait rien
mov eax, 234
mov al, -1 ;
mov ah, 0xA2
mov bx, 0xA2FF ; bx possède la même valeur que ax
mov ecx, 123456
mov dh, 100q
mov dl, 10001010b
mov ah, 0x0B ; on écr... |
hashes/md5.asm | FloydZ/Crypto-Hash | 11 | 120916 |
.data?
MD5HashBuf db 64 dup(?)
MD5Digest dd 4 dup(?)
MD5Len dd ?
MD5Index dd ?
.code
MD5FF macro dwA, dwB, dwC, dwD, locX, rolS, constAC
mov edi,dwC
xor edi,dwD
and edi,dwB
xor edi,dwD
add dwA,[locX]
lea dwA,[edi+dwA+constAC]
rol dwA,rolS
add dwA,dwB
endm
MD5GG macro dwA, dwB, dwC, dwD, locX, rolS, constA... |
Assembly/keyboard/nigori.asm | WildGenie/Ninokuni | 14 | 120917 | <gh_stars>10-100
;;----------------------------------------------------------------------------;;
;; Disable left buttons (nigori/accent)
;; Copyright 2015 <NAME> (aka pleonex)
;;
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the Licen... |
Library/Text/TextStorage/tsLargeAccess.asm | steakknife/pcgeos | 504 | 120919 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1991 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: tsLargeAccess.asm
AUTHOR: <NAME>, Nov 19, 1991
ROUTINES:
Name Description
---- -----------
LargeGetCharAtOffset Get character at a... |
dino/lcs/123p/80.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | 6 | 120920 | <filename>dino/lcs/123p/80.asm
copyright zengfr site:http://github.com/zengfr/romhack
00042A move.l D1, (A0)+
00042C dbra D0, $42a
004D94 move.l D1, (A1)+
004D96 dbra D0, $4d94
0070CE clr.w ($80,A6) [123p+ B1]
0070D2 moveq #-$1, D1 [123p+ 80]
00714C clr.w ($80,A6)
007150 moveq #$0, D1 [123... |
mastersystem/zxb-sms-2012-02-23/zxb-sms/wip/zxb/library-asm/band16.asm | gb-archive/really-old-stuff | 10 | 120921 | <reponame>gb-archive/really-old-stuff<gh_stars>1-10
; vim:ts=4:et:
; FASTCALL bitwise and16 version.
; result in hl
; __FASTCALL__ version (operands: A, H)
; Performs 16bit or 16bit and returns the boolean
; Input: HL, DE
; Output: HL <- HL AND DE
__BAND16:
ld a, h
and d
ld h, a
ld a, l
and e
ld l,... |
Assignment 3/Assignment3Task1.asm | sidarthshahri/Computer-Architecture-and-Design | 0 | 120922 | main: ori $4, $0, 0x8000 # a = 0x8000
ori $5, $0, 0x00A9 # b = 0x00A9
ori $16, $0, 1974 # c = 1974
mult $4, $4 # x = a * a
mflo $17 # Move lower 32 bits of mult into x
sw $17, 0x20($0) # Store x into 0x20
mult $17, $5 # y = x * b
mflo $18 # Move lower 32 bits of mult into y
sw $18, 0x24($0) # Store y ... |
lab/task0_instructions.asm | knodel/msp430lab | 2 | 120923 | <reponame>knodel/msp430lab
;------------------------------------------------------------------------------
; MIT License
;
; Copyright (c) 2019 <NAME>
;
; Permission is hereby granted, free of charge, to any person obtaining a copy
; of this software and associated documentation files (the "Software"), to deal
; in the... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_28_748.asm | ljhsiun2/medusa | 9 | 120924 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r15
push %r8
push %r9
push %rbp
push %rdi
lea addresses_UC_ht+0x16a6a, %r9
nop
nop
nop
nop
and %r15, %r15
movups (%r9), %xmm0
vpextrq $1, %xmm0, %r11
nop
cmp %r9, %r9
lea addresses_WC_ht+0xfc86, %rdi
nop
nop
nop
nop
xor %r8, %r8
movl $0x61626364, (%rdi)
nop
n... |
programs/oeis/287/A287675.asm | karttu/loda | 1 | 120925 | <filename>programs/oeis/287/A287675.asm<gh_stars>1-10
; A287675: Positions of 0 in A287674; complement of A287676.
; 2,3,7,8,11,12,16,17,21,22,25,26,30,31,34,35,39,40,44,45,48,49,53,54,58,59,62,63,67,68,71,72,76,77,81,82,85,86,90,91,94,95,99,100,104,105,108,109,113,114,118,119,122,123,127,128,131,132,136,137,141,142,14... |
programs/oeis/027/A027814.asm | neoneye/loda | 22 | 120926 | <gh_stars>10-100
; A027814: 126*(n+1)*C(n+5,9)/5.
; 126,1512,9702,44352,162162,504504,1387386,3459456,7963956,17153136,34918884,67721472,125919612,225629712,391270572,658982016,1081142370,1732250520,2716483770,4177293120,6309453150,9374044680,13716915030,19791233280,28184836680,39653149536,55158547752,75917140992,10345... |
Transynther/x86/_processed/AVXALIGN/_st_/i9-9900K_12_0xa0_notsx.log_21829_309.asm | ljhsiun2/medusa | 9 | 120928 | .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_WC_ht+0x14ee2, %rsi
lea addresses_UC_ht+0x8522, %rdi
clflush (%rdi)
nop
nop
nop
nop
nop
dec %rbp
mov $46, %rcx
rep movsl
nop
xor $58975, %r13
lea addresses_WC_ht+0x4ae2, %rdx
nop
no... |
programs/oeis/166/A166946.asm | karttu/loda | 0 | 120930 | <gh_stars>0
; A166946: a(n) = 1 if n is a rounded multiple of Phi (1.618033989...), the larger golden ratio value; else a(n) = 0
; 1,0,1,1,0,1,1,0,1,0,1,1,0,1,0,1,1,0,1,1,0,1,0,1,1,0,1,0,1,1,0,1,1,0,1,0,1,1,0,1,1,0,1,0,1,1,0,1,0,1,1,0,1,1,0,1,0,1,1,0,1,1,0,1,0,1,1,0,1,0,1,1,0,1,1,0,1,0,1,1,0,1,0,1,1,0,1,1,0,1,0,1,1,0,1... |
testit.asm | trinadh724/xv-6-Modified- | 0 | 120933 | <filename>testit.asm
_testit: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
}
exit();
}
int main(int argc, char *argv[])
{
0: 8d 4c 24 04 lea 0x4(%esp),%ecx
4: 83 e4 f0 and $0xfffffff0,%esp
7: ff 71 fc pushl -0x4(%ecx)
a: 55 ... |
uart.asm | QuorumComp/hc800-lowlevel | 1 | 120934 | INCLUDE "uart.i"
INCLUDE "hc800.i"
INCLUDE "nexys3.i"
INCLUDE "rc800.i"
GLOBAL VideoIsVBlankEdge
; --
; -- Read byte asynchronously from UART
; --
; -- Outputs:
; -- f - "eq" condition if data available
; -- t - byte read
; --
SECTION "UartByteIn",CODE
UartByteIn:
push hl
jal UartCanRead
j/n... |
programs/oeis/284/A284721.asm | karttu/loda | 1 | 120935 | ; A284721: Smallest odd prime that is relatively prime to 2n+1.
; 3,5,3,3,5,3,3,7,3,3,5,3,3,5,3,3,5,3,3,5,3,3,7,3,3,5,3,3,5,3,3,5,3,3,5,3,3,7,3,3,5,3,3,5,3,3,5,3,3,5,3,3,11,3,3,5,3,3,5,3,3,5,3,3,5,3,3,7,3,3,5,3,3,5,3,3,5,3,3,5,3,3,7,3,3,5,3,3,5,3,3,5,3,3,5,3,3,7,3,3,5
mul $0,4
add $0,1
cal $0,71222 ; Smallest k such t... |
oeis/063/A063226.asm | neoneye/loda-programs | 11 | 120936 | <reponame>neoneye/loda-programs
; A063226: Dimension of the space of weight 2n cuspidal newforms for Gamma_0(63).
; Submitted by <NAME>
; 3,7,13,17,23,27,33,37,43,47,53,57,63,67,73,77,83,87,93,97,103,107,113,117,123,127,133,137,143,147,153,157,163,167,173,177,183,187,193,197,203,207,213,217,223,227,233,237,243,247,253,... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_34_505.asm | ljhsiun2/medusa | 9 | 120937 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0xf4db, %rbx
nop
nop
nop
nop
nop
cmp $43514, %r9
mov (%rbx), %bp
nop
cmp %r9, %r9
lea addresses_UC_ht+0x54b7, %rsi
lea addresses_normal_ht+0x2a93, %rdi
cmp $5808, %r14
mov $30,... |
programs/oeis/220/A220892.asm | karttu/loda | 0 | 120939 | <gh_stars>0
; A220892: G.f.: (1+8*x+22*x^2+8*x^3+x^4)/(1-x)^6.
; 1,14,91,364,1085,2666,5719,11096,19929,33670,54131,83524,124501,180194,254255,350896,474929,631806,827659,1069340,1364461,1721434,2149511,2658824,3260425,3966326,4789539,5744116,6845189,8109010,9552991,11195744,13057121,15158254,17521595,20170956,23131549... |
006-int2string2/int2string2.asm | technoscavenger/wasmXplore | 0 | 120940 | .386
.model flat, stdcall
option casemap :none
include \masm32\include\windows.inc
include \masm32\include\kernel32.inc
include \masm32\include\masm32.inc
includelib \masm32\lib\kernel32.lib
includelib \masm32\lib\masm32.lib
dwtoa2 proto :DWORD, :DWORD
.data
msg1 DB "Max DWORD : ", 0
msg2 DB 13,... |
Assembly/ExampleIntel.asm | piovezan/SOpt | 148 | 120941 | <reponame>piovezan/SOpt
; Assembler (x86) version of 99 Bottles of beer
;
; This version is for NASM compiler but doesn't use any
; macros, just all basic instructions for x86 assembler.
; Also only putchar() function is used to print character
; onto screen, and the whole rest is in code.
;
; nasm -fwin32 99.asm
; g... |
wof/lcs/enemy/C2.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | 6 | 120942 | <filename>wof/lcs/enemy/C2.asm
copyright zengfr site:http://github.com/zengfr/romhack
001590 lea ($20,A0), A0
00195E clr.b ($c2,A1) [enemy+C0]
001962 st ($cd,A1)
0040B0 jsr $f98.w [enemy+C2]
0047A0 clr.b ($c2,A0) [enemy+2A]
0047A4 addq.w #4, A7 [enemy+C2]
00481E clr.b ($c2,A0) [enemy+C3]
0... |
assembler/tests/t_6816/t_6816.asm | paulscottrobson/RCA-Cosmac-VIP-III | 1 | 120943 | cpu 68hc16
page 0
assume ek:0
aba ;$370b
abx ;$374f
aby ;$375f
abz ;$376f
ace ;$3722
aced ;$3723
ade ;$2778
adx ;$37cd
ady ;$37dd
adz ;$37ed
aex ;$374d
aey ;$375d
aez ;$376d
asla ;$370... |
libsrc/_DEVELOPMENT/sound/bit/c/sdcc_ix/bit_beepfx.asm | jpoikela/z88dk | 640 | 120944 | <filename>libsrc/_DEVELOPMENT/sound/bit/c/sdcc_ix/bit_beepfx.asm
; void bit_beepfx(void *effect)
SECTION code_clib
SECTION code_sound_bit
PUBLIC _bit_beepfx
EXTERN _bit_beepfx_fastcall
_bit_beepfx:
pop af
pop hl
push hl
push af
jp _bit_beepfx_fastcall
|
src/game.asm | geniiii/genesis-pong | 0 | 120946 | include "player.asm"
include "ball.asm"
include "palettes.asm"
include "tiles.asm"
include "states/ingame.asm"
Game_Main:
moveq #0, d0
lea Palette, a0
jsr VDP_LoadPalette
moveq #0, d0
moveq #tiles_count, d1
lea Tiles, a0
jsr VDP_LoadTiles
; Clear trashed d0 and d1
moveq #0, d0
moveq... |
src/z80asm/dev/z80asm_lib/cpd.asm | jpoikela/z88dk | 0 | 120947 | <filename>src/z80asm/dev/z80asm_lib/cpd.asm
; Substitute for z80 cpd instruction
; aralbrec 06.2007
SECTION code_crt0_sccz80
PUBLIC __z80asm__cpd
.__z80asm__cpd
jr c, cpdwcarry
cp (hl)
dec hl
dec bc
push af
ex (sp),hl
IF __CPU_8080__ || __CPU_8085__
ld a,l
and @11111110
ld l,a
EL... |
data/maps/objects/CeruleanCave1F.asm | opiter09/ASM-Machina | 1 | 120948 | <filename>data/maps/objects/CeruleanCave1F.asm
CeruleanCave1F_Object:
db $7d ; border block
def_warps
warp 24, 17, 6, LAST_MAP
warp 25, 17, 6, LAST_MAP
warp 27, 1, 0, CERULEAN_CAVE_2F
warp 23, 7, 1, CERULEAN_CAVE_2F
warp 18, 9, 2, CERULEAN_CAVE_2F
warp 7, 1, 3, CERULEAN_CAVE_2F
warp 1, 3, 4, CERULEAN_C... |
libsrc/graphics/xorpixl_smc.asm | andydansby/z88dk-mk2 | 1 | 120949 | ;
; Generic graphics routines
; Self modifying code version
;
; <NAME> - 4/1/2007
;
;
; Invert pixel at (x,y) coordinate.
;
;
; $Id: xorpixl_smc.asm,v 1.1 2007/01/04 17:41:34 stefano Exp $
;
XLIB xorpixel
LIB pixel
XREF pixmode
.xorpixel push hl
ld hl,174 ; XOR (HL)
ld (pixmode),hl
po... |
P6/data_P6_2/ALUTest59.asm | alxzzhou/BUAA_CO_2020 | 1 | 120951 | addu $3,$4,$3
addu $5,$4,$3
lw $4,4($0)
and $3,$0,$3
sh $0,2($0)
andi $3,$0,49787
addu $4,$4,$3
ori $4,$1,24653
sll $4,$4,27
xori $6,$3,55427
sllv $3,$6,$3
addu $1,$4,$3
srl $1,$0,15
sltiu $1,$3,6633
srlv $4,$4,$3
sh $5,10($0)
sll $1,$1,6
xor $5,$5,$3
sltu $5,$6,$3
addiu $4,$0,25169
sltu $3,$6,$3
sra $4,$0,19
sb $3,3($... |
programs/oeis/293/A293292.asm | karttu/loda | 1 | 120953 | <filename>programs/oeis/293/A293292.asm
; A293292: Numbers with last digit less than 5 (in base 10).
; 0,1,2,3,4,10,11,12,13,14,20,21,22,23,24,30,31,32,33,34,40,41,42,43,44,50,51,52,53,54,60,61,62,63,64,70,71,72,73,74,80,81,82,83,84,90,91,92,93,94,100,101,102,103,104,110,111,112,113,114,120,121,122,123,124,130,131,132,... |
books_and_notes/professional_courses/Assembly_language_and_programming/sources/汇编语言程序设计教程第四版/codes/4_17.asm | gxw1/review_the_national_post-graduate_entrance_examination | 640 | 120954 | <filename>books_and_notes/professional_courses/Assembly_language_and_programming/sources/汇编语言程序设计教程第四版/codes/4_17.asm
NAME EXAMPLE
DATA SEGMENT
FIRST DW 6CD5H
SECOND DW 01F8H
THIRD1 DW ?
THIRD2 DW 2 DUP (?)
DATA ENDS
STACK SEGMENT STACK
DW 256 DUP (?)
STACK ENDS
CODE SEGMEN... |
oeis/317/A317094.asm | neoneye/loda-programs | 11 | 120955 | ; A317094: a(n) = (n + 1)^2 + n!*L_n(-1), where L_n(x) is the Laguerre polynomial.
; Submitted by <NAME>
; 2,6,16,50,234,1582,13376,130986,1441810,17572214,234662352,3405357826,53334454586,896324308830,16083557845504,306827170866362,6199668952527906,132240988644216166,2968971263911289360,69974827707903049554,1727194482... |
examples/lib/values.asm | michielvoo/snes | 51 | 120959 | <reponame>michielvoo/snes
; System constants
.DEFINE BBUS_OFFSET $2100
; General register values
.DEFINE HVBJOY_JOYREADY $01
; Joypad values (16-bit)
.DEFINE JOY_R $0010
.DEFINE JOY_L $0020
.DEFINE JOY_X $0040
.DEFINE JOY_BLUE $0040
.DEFINE JOY_A $0080
.DEFINE JOY_RED $0080
.DEFINE J... |
src/intel/tools/tests/gen7/cmp.asm | SoftReaper/Mesa-Renoir-deb | 0 | 120960 | <reponame>SoftReaper/Mesa-Renoir-deb
cmp.ge.f0.0(8) null<1>F g45<4>.xF g43<4>.xF { align16 1Q switch };
cmp.g.f0.0(8) g18<1>.xyF g13<4>.zwwwF 0x3f800000F /* 1F */ { align16 1Q };
cmp.nz.f0.0(8) null<1>D g18<4>.xyyyD 0D { align16 1Q switch };
cmp.g.f0.0(8) null<1>... |
oeis/186/A186301.asm | neoneye/loda-programs | 11 | 120961 | <reponame>neoneye/loda-programs
; A186301: a(n) = A007521(n) - 2.
; Submitted by <NAME>
; 3,11,27,35,51,59,99,107,147,155,171,179,195,227,267,275,291,315,347,371,387,395,419,459,507,539,555,611,651,659,675,699,707,731,755,771,795,819,827,851,875,939,995,1011,1019,1059,1067,1091,1107,1115,1179,1211
mov $1,4
mov $2,$0
p... |
src/test/resources/data/potests/test54.asm | cpcitor/mdlz80optimizer | 36 | 120962 | ; Test to see if -po-ldo does what it should:
org #4000
label1:
xor a
ld hl, label1
ld (hl), a
ld hl, #4001 ; this line should be optimized (except if the -po-ldo flag is used)
ld (hl), a
loop:
jr loop |
VM/src/Linux/VPU/x86_64/organized/read.asm | ozdevguy/Ditto | 0 | 120965 |
#Read instructions.
#Immediate in second word. (Read Register Address 0: rax, Read Register Address 1: rdx | Read Line 0: rbx, Read Line 1: rcx)
ivpu_read_32_0: #IP + 4 = |-----------------Immediate--------------------|
#IP = |--Opcode--|--Flags--| Wr1 | R1 | Wr0 | Unused |
mov... |
sources/ippcp/asm_intel64/pcppurgeblkm7as.asm | dongbinghua/ipp-crypto | 233 | 120966 | ;===============================================================================
; 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
;
; http://www.apa... |
Examples/ch10/Struct1.asm | satadriver/LiunuxOS | 0 | 120967 | <filename>Examples/ch10/Struct1.asm<gh_stars>0
TITLE Intro to STRUCT (Struct1.asm)
; This program demonstrates the STRUC directive.
; 32-bit version.
; Last update: 8/13/01.
INCLUDE Irvine32.inc
COORD STRUCT
X WORD ?
Y WORD ?
COORD ENDS
typEmployee STRUCT
Idnum BYTE 9 DUP(0)
La... |
deps/openssl/asm/x64-win32-masm/bn/x86_64-mont.asm | sgallagher/node | 2 | 120968 | OPTION DOTNAME
.text$ SEGMENT ALIGN(64) 'CODE'
PUBLIC bn_mul_mont
ALIGN 16
bn_mul_mont PROC PUBLIC
mov QWORD PTR[8+rsp],rdi ;WIN64 prologue
mov QWORD PTR[16+rsp],rsi
mov rax,rsp
$L$SEH_begin_bn_mul_mont::
mov rdi,rcx
mov rsi,rdx
mov rdx,r8
mov rcx,r9
mov r8,QWORD PTR[40+rsp]
mov r9,QWORD PTR[48+rsp]
push ... |
pics/Start/start.asm | GSoftwareDevelopment/Mole | 2 | 120969 | colbak
.he 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
.he 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
.he 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
.he 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
.he 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
.he 00 00 00 00 00 00 00 00 00 00 00 00 0... |
src/M4.asm | gschizas/amstrad-diagnostics | 60 | 120970 | MODULE M4BOARD
@M4DisableLowerROM:
ld a, 0
ld (M4CmdBufferROMEnable), a
ld hl, M4CmdBuffer
call SendM4Command
ld bc, #7F00 + %10001001 ; Enable lower ROM to refresh M4 state
out (c), c
ret
@M4EnableLowerROM:
ld a, 1
ld (M4CmdBufferROMEnable), a
ld hl, M4CmdBuffer
call SendM4Command
ld bc... |
asm/blocks/template.asm | VitorVilela7/SMW-CodeLib | 14 | 120971 | <reponame>VitorVilela7/SMW-CodeLib<filename>asm/blocks/template.asm<gh_stars>10-100
db $42 ; or db $37
JMP MarioBelow : JMP MarioAbove : JMP MarioSide
JMP SpriteV : JMP SpriteH : JMP MarioCape : JMP MarioFireball
JMP TopCorner : JMP BodyInside : JMP HeadInside
; JMP WallFeet : JMP WallBody ; if using db $37
MarioBelow... |
ee/hxt/pick.asm | olifink/smsqe | 0 | 120972 | ; Procedure to set up PICK hotkeys V2.00 1990 <NAME>
section hotkey
xdef hxt_pick
xref hxt_res
xref hxt_prks
xref hxt_repl
xref hxt_mkit
xref hxt_adit
xref gu_hkuse
xref gu_hkfre
include 'dev8_ee_hk_dat... |
iod/con2/disp_clear.asm | olifink/smsqe | 0 | 120974 | <reponame>olifink/smsqe<gh_stars>0
; Standard clear display 2000 <NAME>
section con
xdef cn_disp_clear
include 'dev8_keys_con'
;---
; clear screen
; a3 c p pointer to pointer linkage
;+++
cn_disp_clear
cnd.reg reg a0
move.l a0,-(sp)
move.l pt_scren(a3),a0
move.l pt_scrsz(a3),d0
cnd_cls
clr.l (a0)+
subq... |
Transynther/x86/_processed/NC/_st_zr_4k_sm_/i9-9900K_12_0xa0_notsx.log_21829_1283.asm | ljhsiun2/medusa | 9 | 120975 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NC/_st_zr_4k_sm_/i9-9900K_12_0xa0_notsx.log_21829_1283.asm
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r14
push %r15
push %r9
push %rcx
push %rdi
push %rsi
// Store
lea addresses_PSE+0... |
programs/oeis/109/A109231.asm | neoneye/loda | 22 | 120976 | ; A109231: a(n) = floor(n*cosh(1)).
; 1,3,4,6,7,9,10,12,13,15,16,18,20,21,23,24,26,27,29,30,32,33,35,37,38,40,41,43,44,46,47,49,50,52,54,55,57,58,60,61,63,64,66,67,69,70,72,74,75,77,78,80,81,83,84,86,87,89,91,92,94,95,97,98,100
mov $3,$0
add $3,1
mov $7,$0
lpb $3
mov $0,$7
sub $3,1
sub $0,$3
mov $5,$0
mov $9... |
oeis/166/A166117.asm | neoneye/loda-programs | 11 | 120977 | <filename>oeis/166/A166117.asm
; A166117: a(0)=0, a(1)=1, a(2)=2 and a(n) = a(n-1) - 2a(n-2) + a(n-3).
; Submitted by <NAME>
; 0,1,2,0,-3,-1,5,4,-7,-10,8,21,-5,-39,-8,65,42,-96,-115,119,253,-100,-487,-34,840,421,-1293,-1295,1712,3009,-1710,-6016,413,10735,3893,-17164,-14215,24006,35272,-26955,-73493,15689,135720,30849,... |
programs/oeis/114/A114889.asm | neoneye/loda | 22 | 120978 | ; A114889: a(1)=1 and, for n>1, a(n) is the smallest integer greater than a(n-1) such that a(n)+a(i) is not a power of 3, for i=1,..., n-1.
; 1,3,4,7,9,10,11,12,13,19,21,22,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,55,57,58,61,63,64,65,66,67,73,75,76,79,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,10... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.