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 |
|---|---|---|---|---|
nand2tetris/projects/04/fill/Fill.asm | raventid/coursera_learning | 1 | 55714 | // 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 ... |
oeis/292/A292696.asm | neoneye/loda-programs | 11 | 55716 | <reponame>neoneye/loda-programs
; A292696: a(n) = L(n)^2 - 5*(-1)^n = L(n+1)*L(n-1), where L = A000032.
; Submitted by <NAME>
; -1,6,4,21,44,126,319,846,2204,5781,15124,39606,103679,271446,710644,1860501,4870844,12752046,33385279,87403806,228826124,599074581,1568397604,4106118246,10749957119,28143753126,73681302244,192... |
Driver/Power/Common/powerUtils.asm | steakknife/pcgeos | 504 | 55717 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1993 -- All Rights Reserved
PROJECT: GEOS
MODULE: Driver/Power/Common
FILE: powerUtils.asm
AUTHOR: <NAME>, May 10, 1993
ROUTINES:
Name Description
---- -----------
INT CallRoutineInUI ... |
P6/P6Judger - 100 testpoints/testpoint/testpoint5.asm | flyinglandlord/BUAA-CO-2021 | 5 | 55718 | <reponame>flyinglandlord/BUAA-CO-2021
ori $1, $0, 7
ori $2, $0, 14
ori $3, $0, 1
ori $4, $0, 6
sw $3, 0($0)
sw $1, 4($0)
sw $2, 8($0)
sw $4, 12($0)
sw $2, 16($0)
sw $4, 20($0)
sw $1, 24($0)
sw $1, 28($0)
sw $2, 32($0)
sw $4, 36($0)
sw $3, 40($0)
sw $4, 44($0)
sw $3, 48($0)
sw $2, 52($0)
sw $1, 56($0)
sw $2, 60($0)
sw $... |
guest/windows/libcommon/src/i386/s2e.asm | sebastianpoeplau/s2e | 5 | 55719 | ; S2E Selective Symbolic Execution Platform
;
; Copyright (c) 2013 Dependable Systems Laboratory, EPFL
;
; 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 Software without restriction, including without... |
oeis/158/A158967.asm | neoneye/loda-programs | 11 | 55720 | <filename>oeis/158/A158967.asm
; A158967: Numerator of Hermite(n, 4/5).
; Submitted by <NAME>(s4)
; 1,8,14,-688,-7604,76768,2515144,-2909248,-903574384,-6064895872,358089305824,5897162382592,-149771819142464,-4736471982694912,59459906581042304,3791209640534776832,-14265252811503513344,-3147089734919849572352,-130512529... |
libsrc/graphics/g800/xordraw.asm | bahmanrafatjoo/z88dk | 0 | 55721 | <reponame>bahmanrafatjoo/z88dk
SECTION code_clib
PUBLIC xordraw
PUBLIC _xordraw
EXTERN xorplotpixel
EXTERN draw_main
EXTERN last_pos
xordraw:
_xordraw:
push ix
ld ix,2
add ix,sp
ld d,(ix+8); x0
ld e,(ix+6); y0
ld h,(ix+4); x1
ld l,(ix+2); y1
p... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_930.asm | ljhsiun2/medusa | 9 | 55722 | .global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r15
push %r8
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x18108, %r8
nop
nop
add %rbp, %rbp
mov (%r8), %ecx
nop
nop
nop
nop
nop
sub $11803, %rdx
lea addresses_D_ht+0x18608, %rsi
add $43168, %rdx
mov $0x6162636465666768, %rcx
mov... |
programs/oeis/073/A073775.asm | jmorken/loda | 1 | 55723 | <reponame>jmorken/loda
; A073775: Polynomial (1/3)*n^3 + (9/2)*n^2 + (85/6)*n - 2.
; -2,17,47,90,148,223,317,432,570,733,923,1142,1392,1675,1993,2348,2742,3177,3655,4178,4748,5367,6037,6760,7538,8373,9267,10222,11240,12323,13473,14692,15982,17345,18783,20298,21892,23567,25325,27168,29098,31117,33227,35430,37728,40123,4... |
ubb/asc/lab10/RusuCosmin_10_8_print.asm | AlexanderChristian/private_courses | 0 | 55724 | <filename>ubb/asc/lab10/RusuCosmin_10_8_print.asm
assume cs:code, ds:data
data segment public
data ends
code segment public
public tipar
; Module to print on the screen the value stored in register AX
tipar:
push ax
push bx
push cx
push dx
mov cx, 10
mov bx, 0
; Store the digits onto the stack
; bx - number... |
src/year.asm | grantperry/elec342-alarm-clock | 0 | 55726 | ; ret r16 leap:1 notLeap:0
isLeapYear:
push r17 ; used as the divisor in div8u
push r18 ; used as loop counter in div8u
rcall getYear
; subi r16, 2 ; dividend - 2 (remove two to make the offset correct for 1970)
ldi r17, 4 ;divisor
rcall div8u
mov r16, r15 ;remainder of year % 4
pop r18
pop r17
tst r1... |
asm/keydoors.asm | KrisDavie/ALttPDoorRandomizer | 42 | 55729 | <gh_stars>10-100
; code to un-pair or re-pair doors
; doorlist is loaded into 19A0 but no terminator
; new room is in A0
; for "each" door do the following: (each could mean the first four doors?)
; in lookup table, grab room and corresponding position
; find the info at 7ef000, x where x is twice the paired room
; ch... |
fiat-amd64/74.63_ratio11526_seed3879384365785814_square_secp256k1.asm | dderjoel/fiat-crypto | 491 | 55730 | SECTION .text
GLOBAL square_secp256k1
square_secp256k1:
sub rsp, 0xd8 ; last 0x30 (6) for Caller - save regs
mov [ rsp + 0xa8 ], rbx; saving to stack
mov [ rsp + 0xb0 ], rbp; saving to stack
mov [ rsp + 0xb8 ], r12; saving to stack
mov [ rsp + 0xc0 ], r13; saving to stack
mov [ rsp + 0xc8 ], r14; saving to stack
mov ... |
Sem4/AEIE_LAB/my1sim85-0.6.2/asm/dev-ledrun.asm | SOUMEE2000/Heritage-CSE-Codes | 0 | 55731 | <reponame>SOUMEE2000/Heritage-CSE-Codes<gh_stars>0
org 0000h
lxi sp, 4000h
mvi a, 83h
out 83h
mvi a, 01h ; init pattern
; main routine
loop: out 80h
call delay
rlc
jmp loop
; basic delay routine
delay: push b
mvi b, 8
delay_loop:
dcr b
jnz delay_loop
pop b
ret
|
tests/Inout/inout.asm | ZubinGou/8086-emulator | 39 | 55732 | NAME Inout
TITLE inout
assume cs:codesg,ds:datasg
; this is add proc ;;
codesg segment ; for
start:
mov ax,0x1234
inc ax
out 4, al
out 10h, ax
mov dx,1088
out dx,ax
in ax, 101
in al,0
out dx, ah
jmp finish
buff db 'hello world! XD'
finish:
mov ax, $
int 21h
codesg ... |
oeis/126/A126420.asm | neoneye/loda-programs | 11 | 55733 | <reponame>neoneye/loda-programs<filename>oeis/126/A126420.asm
; A126420: a(n) = n^3 - n - 1.
; -1,5,23,59,119,209,335,503,719,989,1319,1715,2183,2729,3359,4079,4895,5813,6839,7979,9239,10625,12143,13799,15599,17549,19655,21923,24359,26969,29759,32735,35903,39269,42839,46619,50615,54833,59279,63959,68879,74045,79463,851... |
libsrc/graphics/msx/bkrestore.asm | RC2014Z80/z88dk | 8 | 55735 | ;
; Fast background restore
;
; MSX version
;
; $Id: bkrestore.asm,v 1.6 2016-06-21 20:16:35 dom Exp $
;
SECTION code_clib
PUBLIC bkrestore
PUBLIC _bkrestore
EXTERN bkpixeladdress
IF FORmsx
INCLUDE "msx.def"
ELSE
INCLUDE "svi.def"
ENDIF
.bkrestore
._bkrestore
; __FASTCALL__ : sprite ptr in HL
push ix... |
stage2/src/stage2.asm | pwk4m1/REWORKSHOP_2 | 0 | 55736 |
; A simple bootloader code, used for encrypting a
; full HDD-disk.
;
; we'll figure out what it is, and then build a decryption
; program for it.
;
; If you're not familliar with nasm syntax or assembly language
; in general, read the following wall of text
;
;
; Assembly language, is basicly CPU operations written in... |
libsrc/_DEVELOPMENT/arch/zx/nirvanap/c/sdcc_iy/NIRVANAP_stop.asm | jpoikela/z88dk | 640 | 55737 | ; ----------------------------------------------------------------
; Z88DK INTERFACE LIBRARY FOR NIRVANA+ ENGINE - by <NAME>
;
; See "nirvana+.h" for further details
; ----------------------------------------------------------------
; void NIRVANAP_stop(void)
SECTION code_clib
SECTION code_nirvanap
PUBLIC _NIRVANAP_... |
Graphics/Print.asm | ahmedhussiien/AssemblyLibrary | 0 | 55739 | ;===========================================================================
; Print.asm
;---------------------------------------------------------------------------
; Assembly x86 library
;
;
; Author: <NAME>
; Created:
;
;
; This file provide some Procedures for printing tex... |
reference/lab1/assembly/examples/linux/read.asm | Leser2020/6.828 | 2 | 55740 | <reponame>Leser2020/6.828<gh_stars>1-10
;
; file: read.asm
; This subroutine reads an array of doubles from a file
segment .data
format db "%lf", 0 ; format for fscanf()
segment .bss
segment .text
global read_doubles
extern fscanf
%define SIZEOF_DOUBLE 8
%define FP ... |
tests/blinky.asm | jbush001/HECTIC | 44 | 55741 | <filename>tests/blinky.asm<gh_stars>10-100
#
# Copyright 2013 <NAME>
#
# 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.apache.org/licenses/LICENSE-2.0
#
# Unless required... |
BenHeck/openKeyboard031/openKeyboard.asm | shionn/ArduinoBasicComputer | 3 | 55742 | ; ASM code generated by mikroVirtualMachine for PIC - V. 8.0.0.0
; Date/Time: 23/08/2008 13.42.24
; Info: http://www.mikroe.com
; ADDRESS OPCODE ASM
; ----------------------------------------------
$0000 $158A BSF PCLATH, 3
$0001 $286B GOTO _main
$0020 $ _exitPowerSave:
;openKeyboard.c,123 :: void ... |
vpx_dsp/arm/vpx_convolve8_vert_filter_type1_neon.asm | prometheansacrifice/esy-vpx | 779 | 55743 | ;
; Copyright (c) 2018 The WebM project authors. All Rights Reserved.
;
; Use of this source code is governed by a BSD-style license
; that can be found in the LICENSE file in the root of the source
; tree. An additional intellectual property rights grant can be found
; in the file PATENTS. All contributing proje... |
programs/oeis/097/A097132.asm | jmorken/loda | 1 | 55744 | <reponame>jmorken/loda<filename>programs/oeis/097/A097132.asm
; A097132: a(n) = Sum_{k=0..n} Fibonacci(k) + (-1)^k*Fibonacci(k-1).
; 1,2,4,5,10,12,25,30,64,77,166,200,433,522,1132,1365,2962,3572,7753,9350,20296,24477,53134,64080,139105,167762,364180,439205,953434,1149852,2496121,3010350,6534928,7881197,17108662,2063324... |
src/core/external/jpeg-6bx/jsimdw32.asm | miahmie/krkrz | 4 | 55745 | <gh_stars>1-10
;
; jsimdw32.asm - SIMD instruction support check (for Win32)
;
; x86 SIMD extension for IJG JPEG library
; Copyright (C) 1999-2006, MIYASAKA Masaru.
; For conditions of distribution and use, see copyright notice in jsimdext.inc
;
; This file should be assembled with NASM (Netwide Assembler),
; can *not*... |
_anim/obj4C.asm | NatsumiFox/AMPS-Sonic-1-2005 | 2 | 55746 | ; ---------------------------------------------------------------------------
; Animation script - geyser of lava (MZ)
; ---------------------------------------------------------------------------
dc.w byte_F220-Ani_obj4C
dc.w byte_F22A-Ani_obj4C
dc.w byte_F22E-Ani_obj4C
dc.w byte_F232-Ani_obj4C
dc.w byte_F23... |
signal amplifier.asm | earthperson/TIS-100 | 0 | 55747 | <filename>signal amplifier.asm
#walkthrough/9.jpg
#SIGNAL AMPLIFIER
#READ A VALUE FROM IN.A
#DOUBLE THE VALUE
#WRITE THE VALUE TO OUT.A
MOV UP, ACC
ADD ACC
MOV ACC, DOWN
MOV UP, DOWN
MOV UP, RIGHT
MOV LEFT, DOWN
|
ioctl/IokTranslate.asm | osfree-project/FamilyAPI | 1 | 55748 | <gh_stars>1-10
;--------------------------------------------------------
; Category 4 Function 79H Translate Scan Code To ASCII
;--------------------------------------------------------
;
;
;
IOKTRANSLATE PROC NEAR
RET
IOKTRANSLATE ENDP
|
source/jni/u2/glenz/new.asm | Falken42/SecondReality | 9 | 55749 |
;!!!!!! TRANSPARENT NEW COPPER !!!!!!
public __ndebug1
__ndebug1 dw 0
NROWS equ 256
MAXLINES equ 512
ndp0 dw 0 ;toggling pointer inside newdata1
ndp dw 0 ;pointer inside newdata1
nec dw 0 ;pointer to next free in ne
nlc dw 0 ;items in horizontal list
ALIGN 4
nep dw NROWS dup(0)
ALIGN 4
ne db M... |
Assembler/AssemblyCode/ENTER_LEAVE.asm | KPU-RISC/KPU | 8 | 55750 | ; Initialize the stack pointer and the base pointer
MOV XL, 0xFF
MOV XH, 0xFF
MOV SP, X
MOV XL, 0
MOV XH, 0
MOV BP, X
CALL :MAIN
HLT
:MAIN
; Emit the prologue and reserve 3 bytes for local variables on the stack
ENTER 1
; Push the function arguments onto the stack
MOV D, 5
PUSH D
MOV D, 4
PUSH D
; Call the funtion ... |
Source/ui_win32/SysInfo_x64.asm | maximu/Play- | 1 | 55751 | PUBLIC _SysInfo_CPUID
.CODE
_SysInfo_CPUID PROC
push r12
mov r12, rdx
mov rax, rcx
cpuid
mov dword ptr[r12 + 0], ebx;
mov dword ptr[r12 + 4], edx;
mov dword ptr[r12 + 8], ecx;
pop r12
ret
_SysInfo_CPUID ENDP
END
|
data/trainers/sprites.asm | Dev727/ancientplatinum | 28 | 55752 | <filename>data/trainers/sprites.asm
BTTrainerClassSprites:
; entries correspond to trainer classes
db SPRITE_FALKNER
db SPRITE_WHITNEY
db SPRITE_BUGSY
db SPRITE_MORTY
db SPRITE_PRYCE
db SPRITE_JASMINE
db SPRITE_CHUCK
db SPRITE_CLAIR
db SPRITE_SILVER
db SPRITE_OAK
db SPRITE_WILL
db SPRITE_CHRIS
db SPRITE_BR... |
programs/oeis/038/A038189.asm | jmorken/loda | 1 | 55753 | <reponame>jmorken/loda
; A038189: Bit to left of least significant 1-bit in binary expansion of n.
; 0,0,0,1,0,0,1,1,0,0,0,1,1,0,1,1,0,0,0,1,0,0,1,1,1,0,0,1,1,0,1,1,0,0,0,1,0,0,1,1,0,0,0,1,1,0,1,1,1,0,0,1,0,0,1,1,1,0,0,1,1,0,1,1,0,0,0,1,0,0,1,1,0,0,0,1,1,0,1,1,0,0,0,1,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,1,0,0,1,1,0,0,0,1,1,0... |
oeis/162/A162939.asm | neoneye/loda-programs | 11 | 55754 | <reponame>neoneye/loda-programs<filename>oeis/162/A162939.asm
; A162939: A 1-based alternate sum over the numbers from 0 to prime(n).
; 1,5,8,11,17,20,26,29,35,44,47,56,62,65,71,80,89,92,101,107,110,119,125,134,146,152,155,161,164,170,191,197,206,209,224,227,236,245,251,260,269,272,287,290,296,299,317,335,341,344,350,3... |
source/init/picOLD2.asm | daniel3735928559/toast | 0 | 55755 | ;=====;
; PIC ;
;=====;
pic_remap:
push eax
push ebx
push ecx
push edx
xor edx,edx
xor ecx,ecx
xor ebx,ebx
;; Store masks:
inc edx
in al,021h
mov bl,al
inc edx
in al,0A1h
mov cl,al
;; Initialize master
inc edx
mov al,11h
out 020h,al ; Give the Master PIC (in port 20h) the "initializ... |
programs/oeis/249/A249037.asm | neoneye/loda | 22 | 55757 | <reponame>neoneye/loda<gh_stars>10-100
; A249037: Number of even terms in first n terms of A249036.
; 0,1,2,2,3,4,4,4,5,5,6,7,7,7,8,9,9,9,10,10,11,11,12,13,13,13,14,15,15,15,16,17,17,17,18,19,19,19,20,20,21,21,22,22,23,23,24,25,25,25,26,27,27,27,28,29,29,29,30,31,31,31,32,33,33,33,34,35,35,35,36,37,37,37,38,39,39,39
m... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_1193_935.asm | ljhsiun2/medusa | 9 | 55758 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r15
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x6be4, %r8
xor %r9, %r9
movb (%r8), %r15b
nop
nop
nop
inc %r14
lea addresses_normal_ht+0x664, %r14
nop
nop
nop
sub $23993, %r15
mov (%r14), %r13d
nop
and $36137, %r15
lea addre... |
engine/tilesets/map_palettes.asm | TastySnax12/pokecrystal16-493-plus | 2 | 55759 | SwapTextboxPalettes::
hlcoord 0, 0
decoord 0, 0, wAttrMap
ld b, SCREEN_HEIGHT
.loop
push bc
ld c, SCREEN_WIDTH
call GetBGMapTilePalettes
;.innerloop
; ld a, [hl]
; push hl
; srl a
; jr c, .UpperNybble
; ld hl, wTilesetPalettes
; add [hl]
; ld l, a
; ld a, [wTilesetPalettes + 1]
; adc 0
; ld h, a
; ld a, [hl]
; an... |
MouseJiggler/MouseJiggler/lib/PSoCConfigTBL.asm | TuningSweeper/USB-MouseJiggler | 0 | 55760 | ; Generated by PSoC Designer 5.4.3191
;
; =============================================================================
; FILENAME: PSoCConfigTBL.asm
;
; Copyright (c) Cypress Semiconductor 2013. All Rights Reserved.
;
; NOTES:
; Do not modify this file. It is generated by PSoC Designer each time the
; generate ap... |
oeis/008/A008529.asm | neoneye/loda-programs | 11 | 55761 | ; A008529: Coordination sequence for 4-dimensional face-centered cubic orthogonal lattice.
; 1,14,68,202,456,870,1484,2338,3472,4926,6740,8954,11608,14742,18396,22610,27424,32878,39012,45866,53480,61894,71148,81282,92336,104350,117364,131418,146552,162806,180220,198834,218688,239822,262276,286090,311304,337958,366092,3... |
basic/src/commands/call.asm | paulscottrobson/eris | 13 | 55762 | ; *****************************************************************************
; *****************************************************************************
;
; Name: call.asm
; Purpose: Procedure Call Code
; Created: 11th March 2020
; Reviewed: 17th March 2020
; Author: <NAME> (<EMAIL>)
;
; ****************... |
code/6502/tests/sfx/mario.asm | visrealm/hbc-56 | 65 | 55763 | <filename>code/6502/tests/sfx/mario.asm
; Troy's HBC-56 - Mario bros tune
;
; Copyright (c) 2021 <NAME>
;
; This code is licensed under the MIT license
;
; https://github.com/visrealm/hbc-56
;
!src "hbc56kernel.inc"
hbc56Meta:
+setHbcMetaTitle "MARIO BROS AUDIO"
rts
TONE0 = $60
TONE1 = $61
NOISE0 =... |
programs/oeis/055/A055341.asm | neoneye/loda | 22 | 55764 | ; A055341: Number of mobiles (circular rooted trees) with n nodes and 3 leaves.
; 1,3,8,19,37,66,110,172,257,371,518,705,939,1226,1574,1992,2487,3069,3748,4533,5435,6466,7636,8958,10445,12109,13964,16025,18305,20820,23586,26618,29933,33549,37482,41751,46375,51372,56762,62566,68803
mov $4,$0
add $4,1
mov $15,$0
lpb $4
... |
sources/ippcp/asm_ia32/pcpmd5w7as.asm | dongbinghua/ipp-crypto | 233 | 55765 | ;===============================================================================
; 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... |
paraled_ver2.asm | danrdash/CompStructAssemblerSimulator | 0 | 55766 | <filename>paraled_ver2.asm
add $sp, $zero, $imm, 1500 #set $sp to random place to start stack
add $sp, $sp, $imm, -4 #make place for 4 variables
sw $s0, $sp, $imm, 0 # save $s0
sw $s1, $sp, $imm, 1 # save $s1
sw $s2, $sp, $imm, 2 # save $s2
sw $a0, $sp, $imm, 3 #save $a0
add $t3, $zero, $imm, -1 #init... |
Driver/Socket/EtherCom/ethercomClient.asm | steakknife/pcgeos | 504 | 55767 | <filename>Driver/Socket/EtherCom/ethercomClient.asm
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) Tedious Endeavors 1998 -- All Rights Reserved
PROJECT: Native ethernet support
MODULE: Ethernet link driver
FILE: ethercomClient.asm
AUTHOR: <NAME>, July 8th, 1... |
Miei-sorgenti/new/Seconda lezione/Versione 2/arraysum.asm | DigiOhhh/LabArchitettura2-2017-2018 | 1 | 55768 | # Si scriva il codice Assembly che effettui:
# A[12] = h + A[8];
#
# Si scriva il codice, senza eseguirlo, supponendo che:
# la variabile h sia memorizzata all’indirizzo contenuto in $s1;
# il base address di A sia nel registro $s2.
.text
.globl main
main:
lw $t0, ($s1)
li $t1, 8
mul $t1, $t1, 4
add $t1, $t1... |
programs/oeis/297/A297444.asm | neoneye/loda | 22 | 55769 | <reponame>neoneye/loda<gh_stars>10-100
; A297444: a(n) = a(n-1) + 9*a(n-2) - 9*a(n-3), where a(0) = 1, a(1) = 3, a(2) = 6, a(3) = 33.
; 1,3,6,33,60,303,546,2733,4920,24603,44286,221433,398580,1992903,3587226,17936133,32285040,161425203,290565366,1452826833,2615088300,13075441503,23535794706,117678973533,211822152360,10... |
oeis/160/A160408.asm | neoneye/loda-programs | 11 | 55770 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A160408: Toothpick pyramid (see Comments lines for definition).
; Submitted by <NAME>
; 0,1,2,4,8,12,16,20,24,32,48,64,72,76,80,88
lpb $0
sub $0,1
seq $2,160729 ; First differences of A160728.
add $1,$2
mov $2,$0
lpe
mov $0,$1
div $0,6
|
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1963.asm | ljhsiun2/medusa | 9 | 55771 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %rcx
lea addresses_D_ht+0xe69e, %rcx
nop
nop
nop
nop
nop
add $44064, %r10
movl $0x61626364, (%rcx)
nop
inc %r12
pop %rcx
pop %r12
pop %r11
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r12
push %r13
push %r14
push %rbp
push %... |
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca_notsx.log_21829_1538.asm | ljhsiun2/medusa | 9 | 55772 | <filename>Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca_notsx.log_21829_1538.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r13
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x640b, %rsi
lea addresses_D_ht+0x7b8b, %rdi
nop
nop
nop
nop
add ... |
programs/oeis/169/A169986.asm | jmorken/loda | 1 | 55774 | ; A169986: Ceiling(phi^n) where phi = (1+sqrt(5))/2.
; 1,2,3,5,7,12,18,30,47,77,123,200,322,522,843,1365,2207,3572,5778,9350,15127,24477,39603,64080,103682,167762,271443,439205,710647,1149852,1860498,3010350,4870847,7881197,12752043,20633240,33385282,54018522,87403803,141422325,228826127,370248452,599074578,969323030,1... |
programs/oeis/206/A206908.asm | neoneye/loda | 22 | 55775 | <reponame>neoneye/loda<filename>programs/oeis/206/A206908.asm
; A206908: a(n) = 4*n + floor(n/sqrt(3)).
; 4,9,13,18,22,27,32,36,41,45,50,54,59,64,68,73,77,82,86,91,96,100,105,109,114,119,123,128,132,137,141,146,151,155,160,164,169,173,178,183,187,192,196,201,205,210,215,219,224,228,233,238,242,247,251,256,260,265,270,2... |
asm/isa.asm | Artentus/a32emu | 1 | 55776 | #bits 8
#subruledef reg
{
r{i: u5} => i
zero => 0`5
ra => 1`5
bp => 2`5
sp => 3`5
a{i: u3} => (i`5 + 4)`5
t{i: u5} => {
assert(i < 10)
(i + 12)`5
}
s{i: u5} => {
assert(i < 10)
(i + 22)`5
}
}
#subruledef imm
{
{v: i32} => {
assert((v ... |
Library/Shell/File/fileManager.asm | steakknife/pcgeos | 504 | 55778 | COMMENT @=====================================================================
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC/GEOS
MODULE: Shell -- File
FILE: fileManager.asm
AUTHOR: <NAME>, October 21, 1992
REVISION HISTORY:
Name Date Description
---- ---- -----------
martin 1... |
programs/oeis/208/A208131.asm | jmorken/loda | 1 | 55779 | <gh_stars>1-10
; A208131: Partial products of A052901.
; 1,3,6,12,36,72,144,432,864,1728,5184,10368,20736,62208,124416,248832,746496,1492992,2985984,8957952,17915904,35831808,107495424,214990848,429981696,1289945088,2579890176,5159780352,15479341056,30958682112,61917364224,185752092672,371504185344,743008370688,2229025... |
bvs/BvsGetCurPos.asm | osfree-project/FamilyAPI | 0 | 55780 | ;/*!
; @file
;
; @brief BvsGetCurPos DOS wrapper
;
; (c) osFree Project 2008-2022, <http://www.osFree.org>
; for licence see licence.txt in root directory, or project website
;
; This is Family API implementation for DOS, used with BIND tools
; to link required API
;
; @author <NAME> (<EMAIL>)
;
; Docum... |
libsrc/spectrum/display/zx_py2aaddr.asm | andydansby/z88dk-mk2 | 1 | 55781 | <filename>libsrc/spectrum/display/zx_py2aaddr.asm
; uchar __FASTCALL__ *zx_py2aaddr(uchar ycoord)
; aralbrec 06.2007
XLIB zx_py2aaddr
.zx_py2aaddr
ld a,l
rlca
rlca
ld h,a
and $e0
ld l,a
ld a,h
and $03
or $58
ld h,a
ret
|
testing123.asm | hackingotter/LC3-Simulator | 0 | 55782 | <gh_stars>0
.ORIG x3000
THIS_IS_JUST_A_LABEL
BR LABEL ;
AND R4, R3, R2 ;
LABEL
RET
DATA .FILL x3000 ;
x0000
x0000
x0000
x0000
x0000
x0000
x0000
x0000
x0000
x0000
x0000
x0000
x0000
x0000
x0000
x0000
x0000
x00... |
programs/oeis/069/A069283.asm | jmorken/loda | 1 | 55786 | ; A069283: a(n) = -1 + number of odd divisors of n.
; 0,0,0,1,0,1,1,1,0,2,1,1,1,1,1,3,0,1,2,1,1,3,1,1,1,2,1,3,1,1,3,1,0,3,1,3,2,1,1,3,1,1,3,1,1,5,1,1,1,2,2,3,1,1,3,3,1,3,1,1,3,1,1,5,0,3,3,1,1,3,3,1,2,1,1,5,1,3,3,1,1,4,1,1,3,3,1,3,1,1,5,3,1,3,1,3,1,1,2,5,2,1,3,1,1,7,1,1,3,1,3,3,1,1,3,3,1,5,1,3,3,2,1,3,1,3,5,1,0,3,3,1,3,... |
tools/asmx2/test/6800.asm | retro16/blastsdk | 10 | 55787 | PROCESSOR 6800
FCB $00
NOP
FCB $02
FCB $03
FCB $04
FCB $05
TAP
TPA
INX
DEX
CLV
SEV
CLC
SEC
CLI
SEI
SBA
CBA
FCB $12
FCB $13
FCB $14
FCB $15
TAB
TBA
FCB $18
DAA
FCB $1A
ABA
FCB $1C
FCB $1D
FCB $1E
FCB $1F
BRA .+2
FCB $21
BHI .+2
BLS .+2
BCC .+2 ; also BHS
BCS .+2 ; also BLO
BN... |
libsrc/_DEVELOPMENT/string/c/sccz80/strnlen.asm | UnivEngineer/z88dk | 1 | 55788 | <gh_stars>1-10
; size_t strnlen(const char *s, size_t maxlen)
SECTION code_clib
SECTION code_string
PUBLIC strnlen
EXTERN asm_strnlen
strnlen:
pop de
pop bc
pop hl
push hl
push bc
push de
IF __CLASSIC && __CPU_GBZ80__
call asm_strnlen
ld d,h
ld e,l
ret
ELSE
jp asm_strnlen
ENDI... |
audio/sfx/cry1d_1.asm | AmateurPanda92/pokemon-rby-dx | 9 | 55789 | <filename>audio/sfx/cry1d_1.asm
SFX_Cry1D_1_Ch4:
dutycycle 244
squarenote 15, 15, 0, 1797
squarenote 10, 14, 0, 1792
squarenote 6, 11, 4, 1808
squarenote 4, 13, 3, 1792
squarenote 6, 11, 2, 1568
squarenote 8, 10, 1, 1572
endchannel
SFX_Cry1D_1_Ch5:
dutycycle 34
squarenote 15, 11, 0, 1731
squarenote 10, 10,... |
oeis/196/A196512.asm | neoneye/loda-programs | 11 | 55791 | ; A196512: Expansion of (1-9x)/(1-28x).
; Submitted by <NAME>
; 1,19,532,14896,417088,11678464,326996992,9155915776,256365641728,7178237968384,200990663114752,5627738567213056,157576679881965568,4412147036695035904,123540117027461005312,3459123276768908148736,96855451749529428164608,2711952648986823988609024,7593467417... |
programs/oeis/174/A174928.asm | karttu/loda | 1 | 55792 | ; A174928: Partial sums of A174927.
; 1,65,66,130,131,195,196,260,261,325,326,390,391,455,456,520,521,585,586,650,651,715,716,780,781,845,846,910,911,975,976,1040,1041,1105,1106,1170,1171,1235,1236,1300,1301,1365,1366,1430,1431,1495,1496,1560
mov $1,$0
mod $1,2
mov $2,$0
add $0,$1
div $0,2
mul $0,7
mov $1,3
mul $1,$0
... |
disasm/return_nores.asm | Kachalov/goto-report | 0 | 55793 | <reponame>Kachalov/goto-report
0804846b <return_nores>:
804846b: push ebp
804846c: mov ebp,esp
804846e: sub esp,0x18
8048471: call 8048350 <rand@plt>
8048476: mov DWORD PTR [ebp-0x14],eax
8048479: cmp DWORD PTR [ebp-0x14],0x0
804847d: jne 8048486 <return_nores+0x1b>
804847f: mov eax,0x1
8... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_2755.asm | ljhsiun2/medusa | 9 | 55795 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r8
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x2f6a, %r8
clflush (%r8)
nop
cmp $19691, %rdi
movb (%r8), %r11b
nop
nop
nop
nop
nop
and %r12, %r12
lea addresses_normal_ht+0xd58a, %rsi
lea addresses_D_ht+0x10766, %rdi
nop
nop... |
kernel/asm_x86_64/bootstrap.asm | BrownieOS/lux | 2 | 55796 | <reponame>BrownieOS/lux
;; lux OS kernel
;; copyright (c) 2018 by <NAME>
format elf64
use64
section '.startup'
; Paging Structures
PML4 = 0x30000
PDPT = 0x31000
PDIR = 0x32000
public start64
start64:
cli
cld
mov rdx, gdtr
lgdt [rdx]
push 0x18
mov rdx, .next
push rdx
retf
.next:
mov dx, 0x20
mo... |
test/eval.asm | Kylogias/jdh-8 | 911 | 55797 | <gh_stars>100-1000
; TEST
; a = 0x00
mw a, (5 + 3)
jne a, 8, [fail]
mw a, (6 - 3)
jne a, 3, [fail]
mw a, ((5 + 6) + (3 - 2))
jne a, 12, [fail]
mw a, (1 < 3)
jne a, 0x8, [fail]
mw a, (1 < 3 + 5)
jne a, 13, [fail]
mw a, (~(1 < 3))
jne a, 0xF7, [fail]
mw a, (0x8 > 1)
jne a, 0x4, [fail]
mw a, (0x1 | (0xF0 & 0xF7))
... |
print/div_t.asm | czfshine/assembly-exercise | 1 | 55798 | ; 8086 assembly file
; by:czfshine
; date: 2018/04/07 11:08:52
; The Main Data segment
include div.inc
DATA SEGMENT
DATA ENDS
STACK SEGMENT
DW 256 DUP(?)
STACK ENDS
;entry code segment
CODE SEGMENT
ASSUME CS:CODE ,DS:DATA,SS:STACK
START: ;entry point
MOV AX,DATA
MOV DS,AX
MOV AX,STACK
... |
computer-architecture/labs/other.asm | vampy/university | 6 | 55799 | ASSUME CS:code, DS:data
data SEGMENT
CRLF DB 13, 10, '$'
read_max DB 25
read_length DB ?
read_string DB 25 DUP(?)
filename DB "test.in", 0
filehandle DW ?
filebuffer DB 20 DUP(?)
msg_error DB "ERROR OPENING", '$'
data ENDS
code SEGMENT
PRINT_STRING MACRO string
lea DX, s... |
scripts/ceruleanhouse2.asm | etdv-thevoid/pokemon-rgb-enhanced | 1 | 55800 | CeruleanHouse2Script:
ld a, $1
ld [wAutoTextBoxDrawingControl], a
dec a
ld [wDoNotWaitForButtonPressAfterDisplayingText], a
ret
CeruleanHouse2TextPointers:
dw CeruleanHouse2Text1
CeruleanHouse2Text1:
TX_ASM
ld hl, CeruleanHouse2Text_74e77
call PrintText
xor a
ld [wCurrentMenuItem], a
ld [wListScrollOffset... |
Library/Mailbox/Inbox/inboxControlPanel.asm | steakknife/pcgeos | 504 | 55801 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1994 -- All Rights Reserved
PROJECT:
MODULE:
FILE: inboxControlPanel.asm
AUTHOR: <NAME>, Jun 3, 1994
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:
Name Date Descrip... |
Lab_5/Forum(Notes)/group5.ex2.asm | nickbel7/ntua-microprocessors-systems | 0 | 55802 | ; Microcomputer Systems - Flow Y [6th Semester]
; <NAME> - 031 17 198 - <EMAIL>
; <NAME> - 031 17 165 - <EMAIL>
; 5th Group of Exercises
; 2st Exercise
INCLUDE MACROS.ASM
DATA_SEG SEGMENT
TABLE DB 256 DUP(?)
AVERAGE DB ?
MIN DB ?
MAX DB ?
NEWLINE DB 0AH,... |
programs/oeis/101/A101433.asm | jmorken/loda | 1 | 55803 | <gh_stars>1-10
; A101433: Partial sums of A101402.
; 0,1,2,3,5,7,10,13,16,19,23,27,31,36,41,47,53,59,66,73,80,88,96,105,114,123,132,142,152,162,173,184,196,208,221,234,247,261,275,290,305,320,335,351,367,383,400,417,435,453,471,490,509,528,548,568,589,610,631,652,674,696,718,741,764,787,811,835,859,884,909,935,961,987,... |
src/vbl/vbl_config.asm | furrtek/GB303 | 90 | 55804 | vbl_config:
call RAMtoOAM
ld hl,FRAME
inc (hl)
call readinput
call input_config
ld a,(HWOK_ADC)
or a
call nz,readpots
ld hl,OAMCOPY
ld bc,$40
call clear
call changescreen ;Always do this at end of VBL
ret
|
programs/oeis/236/A236840.asm | jmorken/loda | 1 | 55805 | <reponame>jmorken/loda<filename>programs/oeis/236/A236840.asm
; A236840: n minus number of runs in the binary expansion of n: a(n) = n - A005811(n).
; 0,0,0,2,2,2,4,6,6,6,6,8,10,10,12,14,14,14,14,16,16,16,18,20,22,22,22,24,26,26,28,30,30,30,30,32,32,32,34,36,36,36,36,38,40,40,42,44,46,46,46,48,48,48,50,52,54,54,54,56,5... |
oeis/160/A160805.asm | neoneye/loda-programs | 11 | 55806 | ; A160805: a(n) = (2*n^3 + 9*n^2 + n + 24) / 6.
; 4,6,13,27,50,84,131,193,272,370,489,631,798,992,1215,1469,1756,2078,2437,2835,3274,3756,4283,4857,5480,6154,6881,7663,8502,9400,10359,11381,12468,13622,14845,16139,17506,18948,20467,22065,23744,25506,27353,29287,31310,33424,35631,37933,40332,42830,45429,48131,50938,5385... |
programs/oeis/123/A123273.asm | karttu/loda | 0 | 55807 | <filename>programs/oeis/123/A123273.asm<gh_stars>0
; A123273: a(0) = 1; a(n) = the number of earlier terms, a(k), where gcd(a(k), a(floor(k/2))) = 1.
; 1,1,2,3,4,4,4,5,6,6,6,6,6,6,6,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,12,12,12... |
_build/dispatcher/jmp_ippsTDESEncryptCFB_7a1cad37.asm | zyktrcn/ippcp | 1 | 55808 | <filename>_build/dispatcher/jmp_ippsTDESEncryptCFB_7a1cad37.asm
extern m7_ippsTDESEncryptCFB:function
extern n8_ippsTDESEncryptCFB:function
extern y8_ippsTDESEncryptCFB:function
extern e9_ippsTDESEncryptCFB:function
extern l9_ippsTDESEncryptCFB:function
extern n0_ippsTDESEncryptCFB:function
extern k0_ippsTDESEncryptCFB... |
libsrc/target/vz/vz_point.asm | jpoikela/z88dk | 38 | 55809 | <reponame>jpoikela/z88dk
; CALLER LINKAGE FOR FUNCTION POINTERS
SECTION code_clib
PUBLIC vz_point
PUBLIC _vz_point
PUBLIC cpoint
PUBLIC _cpoint
EXTERN vz_point_callee
EXTERN ASMDISP_VZ_POINT_CALLEE
.vz_point
._vz_point
.cpoint
._cpoint
pop af
pop de
pop hl
push hl
push de
push af
ld h,e
jp v... |
programs/oeis/008/A008813.asm | neoneye/loda | 22 | 55810 | <filename>programs/oeis/008/A008813.asm
; A008813: Expansion of (1+x^6)/((1-x)^2*(1-x^6)).
; 1,2,3,4,5,6,9,12,15,18,21,24,29,34,39,44,49,54,61,68,75,82,89,96,105,114,123,132,141,150,161,172,183,194,205,216,229,242,255,268,281,294,309,324,339,354,369,384,401,418,435,452,469,486,505,524,543,562,581,600,621,642,663,684,70... |
receiver/mod_test.asm | lantti/orcu | 0 | 55811 | /*
* mod_test.asm
* Author: Lantti
*/
/*
Reg summary
r0, mainloop
r1, mainloop
r2,
r3,
r4,
r5,
r6,
r7,
r8,
r9,
r10,
r11,
r12,
r13,
r14,
r15, spi_op
r16, mainloop, spi_op, init
r17, mainloop, init
r18, mainloop, init
r19, mainloop, i... |
programas/ensamblador/suma_resta.asm | AdolfoMX/La-Biblioteca | 0 | 55812 | <gh_stars>0
;------------- Seccion de datos -------------
section .data
resultado db '0' ; variable pre-definido
section .bss
resultado2 resb 1 ; reserva de memoria de un bite
;------------- Seccion de texto -------------
section .text
global _start
start:
; ---- suma ----
mov eax, 2 ; asi... |
unittests/ASM/REP/F3_2A_1.asm | cobalt2727/FEX | 628 | 55813 | <reponame>cobalt2727/FEX
%ifdef CONFIG
{
"RegData": {
"XMM0": ["0x4054c664ce741f21", "0x40516053e2d6238e"],
"XMM1": ["0x4044836dcef227d0", "0x402a1e1c58255b03"],
"XMM2": ["0x401568e0ce5898b3", "0x4035fe425aee6320"],
"XMM3": ["0x402359004e7ba882", "0x40154b7d41743e96"],
"XMM4": ["0x403d075a4e4692f7... |
hello-world/l/linux-x86.nasm | FerasDA/helloworld | 3 | 55814 | # nasm linux-x86.nasm -o linux-x86.o -f elf && ld linux-x86.o -m elf_i386 -o linux-x86
section .data
msg db "Hello World", 0xa
len equ $ - msg
section .text
global _start
_start:
mov eax, 4
mov ebx, 1
mov ecx, msg
mov edx, len
int 0x80
mov eax, 1
mov ebx, 0
int ... |
private/ntos/w32/ntuser/client/i386/callproc.asm | King0987654/windows2000 | 11 | 55815 | title "Callback Routines"
;++
;
; Copyright (c) 1985 - 1999, Microsoft Corporation
;
; Module Name:
;
; callproc.asm
;
; Abstract:
;
; This module implements stack cleanup to gaurd against cdecl
; declared wndprocs.
; Bug 234292
;
; Author:
;
; <NAME> (joejo) 12/4/98
... |
release/src/router/gmp/source/mpn/alpha/sqr_diagonal.asm | zhoutao0712/rtn11pb1 | 184 | 55816 | dnl Alpha mpn_sqr_diagonal.
dnl Copyright 2001, 2002 Free Software Foundation, Inc.
dnl This file is part of the GNU MP Library.
dnl The GNU MP Library is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU Lesser General Public License as published
dnl by the Free Software F... |
programs/oeis/267/A267807.asm | neoneye/loda | 22 | 55817 | <reponame>neoneye/loda
; A267807: a(0) = a(1) = 1; for n>1, a(n) = (a(n-1) mod 3) + a(n-2).
; 1,1,2,3,2,5,4,6,4,7,5,9,5,11,7,12,7,13,8,15,8,17,10,18,10,19,11,21,11,23,13,24,13,25,14,27,14,29,16,30,16,31,17,33,17,35,19,36,19,37,20,39,20,41,22,42,22,43,23,45,23,47,25,48,25,49,26,51,26,53,28
lpb $0
mov $2,$0
sub $0,2... |
Transynther/x86/_processed/AVXALIGN/_ht_zr_un_/i7-7700_9_0x48_notsx.log_21829_1824.asm | ljhsiun2/medusa | 9 | 55818 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r13
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x10107, %rbx
nop
nop
sub %r13, %r13
mov $0x6162636465666768, %r12
movq %r12, %xmm3
movups %xmm3, (%rbx)
nop
sub %r10, %r10
lea addresses_WT_ht+0x4d3... |
programs/fibbonaci.asm | andypalmer9669/74_series_computer | 0 | 55819 | <reponame>andypalmer9669/74_series_computer
@set_initial
SET A #1
SET B #1
@fib_loop
COPY A ACC
ADD B
JUMP_IF_OVERFLOW_FLAG @set_initial
COPY ACC C // To display
COPY B A
COPY ACC B
JUMP @fib_loop |
oeis/163/A163661.asm | neoneye/loda-programs | 11 | 55820 | ; A163661: a(n) = n*(2*n^2 + 5*n + 17)/2.
; Submitted by <NAME>(s3)
; 0,12,35,75,138,230,357,525,740,1008,1335,1727,2190,2730,3353,4065,4872,5780,6795,7923,9170,10542,12045,13685,15468,17400,19487,21735,24150,26738,29505,32457,35600,38940,42483,46235,50202,54390,58805,63453,68340,73472,78855,84495,90398,96570,103017,10... |
libsrc/_DEVELOPMENT/string/z80/asm_strnset.asm | UnivEngineer/z88dk | 1 | 55821 | <reponame>UnivEngineer/z88dk<gh_stars>1-10
; ===============================================================
; Jan 2015 / Dec 2021 feilipu
; ===============================================================
;
; char *strnset(char *s, int c, size_t n)
;
; Write at most n chars c into s.
;
; =============================... |
Day_2/code/hello_user_input.asm | hayrapetyan-armine/Assembly_ITC | 0 | 55822 | section .data
text1 db "What is your name? "
text2 db "Hello, "
section .bss
name resb 16
section .text
global _start
_start:
call _printText1
call _getName
call _printText2
call _printName
mov rax, 60
mov rdi, 0
syscall
_printText1:
mov rax, 1
mov rdi, 1
mov rsi, text1
mov rdx, 19
syscall
ret
_... |
programs/oeis/083/A083727.asm | karttu/loda | 0 | 55825 | <reponame>karttu/loda<filename>programs/oeis/083/A083727.asm
; A083727: a(n) = n * (2^n - 8).
; 0,-6,-8,0,32,120,336,840,1984,4536,10160,22440,49056,106392,229264,491400,1048448,2228088,4718448,9961320,20971360,44040024,92274512,192937800,402652992,838860600,1744830256,3623878440,7516192544,15569256216,32212254480,6657... |
gifjs.asm | michaelw/jsgif | 0 | 55826 | ; a hand-made GIF containing valid JavaScript code
; abusing header to start a JavaScript comment
; inspired by <NAME> Deadly Pixels presentation
; <NAME>, BSD Licence 2013
; yasm gifjs.asm -o img.gif
WIDTH equ 10799 ; equivalent to 2f2a, which is '/*' in ASCII, thus starting an opening comment
HEIGTH equ 64
db '... |
audio/sfx/ss_anne_horn_3.asm | AmateurPanda92/pokemon-rby-dx | 9 | 55828 | <reponame>AmateurPanda92/pokemon-rby-dx
SFX_SS_Anne_Horn_3_Ch4:
duty 2
squarenote 15, 15, 0, 1280
squarenote 4, 0, 0, 0
squarenote 15, 15, 0, 1280
squarenote 15, 15, 0, 1280
squarenote 15, 15, 0, 1280
squarenote 15, 15, 0, 1280
squarenote 15, 15, 2, 1280
endchannel
SFX_SS_Anne_Horn_3_Ch5:
duty 3
squarenote... |
Engine/GameModes/MetatileViewer.asm | DevEd2/Rebound | 2 | 55829 | section "Tileset Viewer RAM",wram0
MetatileViewer_PaletteBank: db
MetatileViewer_PalettePointer: dw
section "Tileset Viewer routines",rom0
GM_MetatileViewer:
xor a
ld [MetatileViewer_PaletteBank],a
MetatileViewer_GFXMenu:
call ClearScreen
ldfar hl,Pal_DebugScreen
xor ... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_538.asm | ljhsiun2/medusa | 9 | 55830 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_538.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %r9
lea addresses_D_ht+0x5cef, %r11
nop
nop
nop
nop
xor %r9, %r9
and $0xffffffffffffffc0, %r11
movntdqa (%r11), %xmm0
vpextrq $1, %xmm0, %r14
nop
nop
nop
add %r14, %r14
p... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.