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 |
|---|---|---|---|---|
oeis/033/A033033.asm | loda-lang/loda-programs | 11 | 123653 | <reponame>loda-lang/loda-programs
; A033033: Numbers all of whose base 7 digits are odd.
; Submitted by <NAME>
; 1,3,5,8,10,12,22,24,26,36,38,40,57,59,61,71,73,75,85,87,89,155,157,159,169,171,173,183,185,187,253,255,257,267,269,271,281,283,285,400
add $0,1
mov $2,1
lpb $0
mul $0,2
sub $0,1
mov $3,$0
div $0,6
... |
print/p003.asm | czfshine/assembly-exercise | 1 | 123654 | ; 8086 assembly file
; by:czfshine
; date: 2018/04/03 12:18:43
;试编制一个程序,把BX寄存器内的二进制数以十进制数的形式在屏幕上显示出来。
; The Main Data segment
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... |
projects/07/MemoryAccess/completed/PointerTest/PointerTest.asm | ITFS777/n2t | 0 | 123655 | <gh_stars>0
@256
D=A
@SP
M=D
@MAIN
0;JMP
(PUSH_TRUE)
@SP
A=M
M=0
M=M-1
@SP
M=M+1
@LCL
A=M
0;JMP
(MAIN)
@3030
D=A
@SP
A=M
M=D
@SP
M=M+1
@SP
M=M-1
A=M
D=M
@3
M=D
@3040
D=A
@SP
A=M
M=D
@SP
M=M+1
@SP
M=M-1
A=M
D=M
@4
M=D
@32
D=A
@SP
A=M
M=D
@SP
M=M+1
@SP
M=M-1
A=M
D=M
@... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_729.asm | ljhsiun2/medusa | 9 | 123656 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %r8
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0xb944, %r15
nop
nop
nop
add %r9, %r9
vmovups (%r15), %ymm4
vextracti128 $0, %ymm4, %xmm4
vpextrq $0, %xmm4, %r8
nop
sub $39174, %rbp
lea addresses_WC_ht+0x11314, %r10... |
programs/oeis/015/A015910.asm | neoneye/loda | 22 | 123657 | ; A015910: a(n) = 2^n mod n.
; 0,0,2,0,2,4,2,0,8,4,2,4,2,4,8,0,2,10,2,16,8,4,2,16,7,4,26,16,2,4,2,0,8,4,18,28,2,4,8,16,2,22,2,16,17,4,2,16,30,24,8,16,2,28,43,32,8,4,2,16,2,4,8,0,32,64,2,16,8,44,2,64,2,4,68,16,18,64,2,16,80,4,2,64,32,4,8,80,2,64,37,16,8,4,13,64,2,18,17,76
add $0,1
mov $1,1
mov $2,$0
lpb $0
sub $0,1
... |
libsrc/target/micro8085/drv/uart_puts.asm | UnivEngineer/z88dk | 4 | 123658 | ;-------------------------------------------------------------------------
; Native terminal i/o functionality for micro8085_cilb
; Functions below assumes support for INTEL 8085 "undocumented" opcodes
SECTION code_clib
EXTERN puartd
EXTERN puartc
PUBLIC _uart_puts
;--------------... |
oeis/251/A251418.asm | neoneye/loda-programs | 11 | 123659 | <filename>oeis/251/A251418.asm
; A251418: Floor((n^2+7n-23)/14).
; Submitted by Jon Maiga
; -2,-2,-1,0,1,2,3,5,6,8,10,12,14,16,19,21,24,27,30,33,36,40,43,47,51,55,59,63,68,72,77,82,87,92,97,103,108,114,120,126,132,138,145,151,158,165,172,179,186,194,201,209,217,225,233,241,250,258,267,276,285,294,303,313,322,332,342,35... |
Appl/GeoCalc/UI/uiGeoCalcView.asm | steakknife/pcgeos | 504 | 123660 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1991 -- All Rights Reserved
PROJECT: PC/GEOS
MODULE: uiGeoCalcView.asm
FILE: uiGeoCalcView.asm
AUTHOR: <NAME>, Nov 27, 1991
ROUTINES:
Name Description
---- -----------
REVISION HISTORY... |
src/sys/msdos/putline.asm | troglobit/uemacs | 9 | 123661 | <reponame>troglobit/uemacs
; High speed screen update for Rainbow.
; putline(row, col, buf);
; Row and column are origin 1.
; The buf is a pointer to an array of characters.
; It won't write past the end of the line in
; the video RAM; it looks for the FF at the end
; of the line.
; This routine by <NAME>.
; put into l... |
sources/isal/igzip/igzip_finish.asm | intel/qpl | 11 | 123662 | <gh_stars>10-100
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Copyright (C) 2022 Intel Corporation
;
; SPDX-License-Identifier: MIT
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
%include "options.asm"
%include "lz0a_const.asm"
%include "data_struct2.asm"
%includ... |
stressfs.asm | RodrigoVgt/xv6-lottery-schedule | 0 | 123663 |
_stressfs: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "fs.h"
#include "fcntl.h"
int
main(int argc, char *argv[])
{
0: 8d 4c 24 04 lea 0x4(%esp),%ecx
4: 83 e4 f0 and $0xfffffff0,%esp
7: ff 71 fc pushl -0x4(%ecx)
a: 55 ... |
maps/Route1.asm | Dev727/ancientplatinum | 28 | 123664 | object_const_def ; object_event constants
const ROUTE1_YOUNGSTER
const ROUTE1_COOLTRAINER_F
const ROUTE1_FRUIT_TREE
Route1_MapScripts:
db 0 ; scene scripts
db 0 ; callbacks
TrainerSchoolboyDanny:
trainer SCHOOLBOY, DANNY, EVENT_BEAT_SCHOOLBOY_DANNY, SchoolboyDannySeenText, SchoolboyDannyBeatenText, 0, .Script... |
oeis/138/A138455.asm | neoneye/loda-programs | 11 | 123665 | ; A138455: a(n) = ((n-th prime)^6-(n-th prime)^4))/4.
; Submitted by <NAME>
; 12,162,3750,28812,439230,1199562,6013512,11728890,36939012,148529010,221645040,640963062,1186819620,1579486062,2693583912,5539117662,10542104070,12876632130,22609557762,32018718060,37826457012,60762126360,81723228762,124229637180,208220868912... |
code/6502/lib/gfx/fonts/hbc56font.asm | visrealm/hbc-56 | 65 | 123666 | ; 6502 - HBC-56 Font
;
; Copyright (c) 2021 <NAME>
;
; This code is licensed under the MIT license
;
; https://github.com/visrealm/hbc-56
;
!byte $00,$00,$00,$00,$00,$00,$00,$00 ; <SPACE>
!byte $18,$18,$18,$18,$18,$00,$18,$00 ; !
!byte $6C,$6C,$6C,$00,$00,$00,$00,$00 ; "
!byte $6C,$6C,$FE,$6C,$FE... |
programs/oeis/156/A156561.asm | karttu/loda | 1 | 123667 | ; A156561: Floor(Fibonacci(2n+1)/9).
; 0,0,0,1,3,9,25,67,177,464,1216,3184,8336,21824,57136,149585,391619,1025273,2684201,7027331,18397793,48166048,126100352,330135008,864304672,2262779008,5924032352,15509318049,40603921795,106302447337,278303420217
cal $0,122367 ; Dimension of 3-variable non-commutative harmonics (tw... |
scripts/safarizoneeast.asm | adhi-thirumala/EvoYellow | 16 | 123668 | <reponame>adhi-thirumala/EvoYellow<filename>scripts/safarizoneeast.asm
SafariZoneEastScript:
jp EnableAutoTextBoxDrawing
SafariZoneEastTextPointers:
dw PickUpItemText
dw PickUpItemText
dw PickUpItemText
dw PickUpItemText
dw SafariZoneEastText5
dw SafariZoneEastText6
dw SafariZoneEastText7
SafariZoneEastText5:... |
test/input1.asm | humbertocsjr/tinyasm | 176 | 123670 | mov cx,[bx]
mov cx,[bp]
mov cx,[si]
mov cx,[di]
mov cx,[bx+si]
mov cx,[bx+di]
mov cx,[bp+si]
mov cx,[bp+di]
mov cx,[bx+5]
mov cx,[bp+5]
mov cx,[si+5]
mov cx,[di+5]
mov cx,[bx+si+5]
mov cx,[bx+di+... |
Transynther/x86/_processed/AVXALIGN/_st_/i9-9900K_12_0xa0.log_21829_1603.asm | ljhsiun2/medusa | 9 | 123671 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r14
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0xc3ba, %r11
nop
nop
nop
and %r14, %r14
mov (%r11), %r10d
nop
nop
nop
inc %rdi
lea addresses_A_ht+0x177a, %r10
sub $217, %rsi
mov $0x6162636465666768, %rcx
movq %rcx, (%r10)
nop
nop
nop
nop
and $... |
1571/64tass/lccgcrbi.asm | silverdr/assembly | 23 | 123672 | <reponame>silverdr/assembly
mask1=$f8
mask2=$07
mask2x=$c0
mask3=$3e
mask4=$01
mask4x=$f0
mask5=$0f
mask5x=$80
mask6=$7c
mask7=$03
mask7x=$e0
mask8=$1f
;
;
;
;
; fast gcr to binary conversion
;
get4gb ldy gcrpnt
;
lda (bufpnt),y
and #mask1
lsr a
lsr a
lsr a
sta g... |
test/asm_exe/uninit02.asm | nigelperks/BasicAssembler | 0 | 123673 | <reponame>nigelperks/BasicAssembler<filename>test/asm_exe/uninit02.asm
; Uninitialised data: open the same UNINIT segment more than once.
IDEAL
SEGMENT MAIN
ASSUME CS:MAIN,DS:UDATA
start:
mov si, OFFSET a1
mov si, OFFSET a2
mov si, OFFSET a3
mov si, OFFSET a4
mov si, OFFSET a5
mov si, OFFSET b1
mov si, OFFS... |
programs/oeis/214/A214214.asm | neoneye/loda | 22 | 123674 | <filename>programs/oeis/214/A214214.asm<gh_stars>10-100
; A214214: Partial sums of A214212.
; 1,3,5,9,11,15,19,21,23,27,31,35,39,41,43,45,47,51,55,59,63,67,71,75,79,81,83,85,87,89,91,93,95,99,103,107,111,115,119,123,127,131,135,139,143,147,151,155,159,161,163,165,167,169,171,173,175,177,179,181,183,185,187,189,191,195,... |
libsrc/_DEVELOPMENT/temp/sp1/zx/c/sdcc_iy/sp1_InsertCharStruct.asm | jpoikela/z88dk | 640 | 123677 | ; void sp1_InsertCharStruct(struct sp1_update *u, struct sp1_cs *cs)
SECTION code_clib
SECTION code_temp_sp1
PUBLIC _sp1_InsertCharStruct
EXTERN asm_sp1_InsertCharStruct
_sp1_InsertCharStruct:
pop af
pop de
pop hl
push hl
push de
push af
jp asm_sp1_InsertCharStruct
|
Fireware/target/lib/FX2/susp.a51 | iclosure/arinc429 | 1 | 123678 | NAME SUSP
PUBLIC EZUSB_SUSP
$include (fx2regs.inc)
EZUSB segment code
rseg EZUSB
EZUSB_SUSP:
mov dptr,#WAKEUPCS ; TGE fx2bug - Clear the Wake Source bit(s) in
movx a,@dptr ; the WAKEUPCS register
orl a,#0C0H ; TGE fx2bug - clear PA2 and WPIN
movx @dptr,a
mov... |
oeis/208/A208087.asm | neoneye/loda-programs | 11 | 123679 | ; A208087: Number of 6 X (n+1) 0..1 arrays with every 2 X 2 subblock having the same number of equal edges as its horizontal neighbors and a different number from its vertical neighbors, and new values 0..1 introduced in row major order.
; Submitted by <NAME>(s4)
; 72,168,402,1032,2664,6954,18168,47544,124434,325752,85... |
home/joypad.asm | Dev727/ancientplatinum | 28 | 123680 | JoypadInt::
; Replaced by Joypad, called from VBlank instead of the useless
; joypad interrupt.
; This is a placeholder in case the interrupt is somehow enabled.
reti
ClearJoypad::
xor a
; Pressed this frame (delta)
ldh [hJoyPressed], a
; Currently pressed
ldh [hJoyDown], a
ret
Joypad::
; Read the joypad regist... |
oeis/317/A317483.asm | neoneye/loda-programs | 11 | 123681 | ; A317483: Circuit rank of the n-Bruhat graph.
; Submitted by <NAME>(s4)
; 0,0,1,13,121,1081,10081,100801,1088641,12700801,159667201,2155507201,31135104001,479480601601,7846046208001,135998134272001,2489811996672001,48017802792960001,973160803270656001,20679667069501440001,459818479545384960001,10678006913887272960001,... |
oeis/159/A159020.asm | neoneye/loda-programs | 11 | 123682 | <filename>oeis/159/A159020.asm
; A159020: a(0)=11; a(n) = a(n-1) + floor(sqrt(a(n-1))), n > 0.
; Submitted by <NAME>
; 11,14,17,21,25,30,35,40,46,52,59,66,74,82,91,100,110,120,130,141,152,164,176,189,202,216,230,245,260,276,292,309,326,344,362,381,400,420,440,460,481,502,524,546,569
add $0,6
mov $3,1
lpb $0
sub $0,$... |
LabTask26/Task24.asm | forkkr/Assembly-Lab | 0 | 123683 | <filename>LabTask26/Task24.asm
segment .data
scfmt: dq "%s",0
equalfmt: dq "Equal",10 , 0
notequalfmt: dq "Not Equal" , 10, 0
fmt: dq "%lld" , 10 ,0
prr: dq "",10,0
segment .bss
str1: resb 100
str2: resb 100
loop_con: resq 1
str1_len: resq 1
str2_len: resq 1
segment .text
global main
extern scanf
extern ... |
programs/oeis/314/A314164.asm | neoneye/loda | 22 | 123684 | <reponame>neoneye/loda<filename>programs/oeis/314/A314164.asm
; A314164: Coordination sequence Gal.5.302.2 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,5,11,16,22,28,34,40,45,51,56,61,67,72,78,84,90,96,101,107,112,117,123,128,13... |
data/pokemon/dex_entries/camerupt.asm | AtmaBuster/pokeplat-gen2 | 6 | 123685 | <gh_stars>1-10
db "ERUPTION@" ; species name
db "It lives in a"
next "volcano's crater."
next "It is well known"
page "that the humps on"
next "its back erupt "
next "every 10 years.@"
|
demo-widget/release/moc_ImGuiRenderer.asm | Vertver/mappage | 1 | 123686 | <filename>demo-widget/release/moc_ImGuiRenderer.asm
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.23.28106.4
include listing.inc
INCLUDELIB MSVCRT
INCLUDELIB OLDNAMES
EXTRN __imp_?staticMetaObject@QQuickItem@@2UQMetaObject@@B:BYTE
EXTRN __imp_?staticMetaObject@QAbstractListModel@@2UQMetaObject... |
programs/oeis/104/A104155.asm | neoneye/loda | 22 | 123687 | <reponame>neoneye/loda
; A104155: The 64 codons of the genetic code, giving the value 1 to thymine (T), 3 to adenine (A), 2 to cytosine (C) and 4 to guanine (G).
; 111,112,113,114,121,122,123,124,131,132,133,134,141,142,143,144,211,212,213,214,221,222,223,224,231,232,233,234,241,242,243,244,311,312,313,314,321,322,323,... |
MdePkg/Library/BaseIoLibIntrinsic/Ia32/IoFifo.nasm | nicklela/edk2 | 3,861 | 123688 | <filename>MdePkg/Library/BaseIoLibIntrinsic/Ia32/IoFifo.nasm
;------------------------------------------------------------------------------
;
; Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>
; Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR>
;
; SPDX-License-Identifier: BSD-2... |
cards/bn4/ModCards/134-F003 MAX HP +750 (0B).asm | RockmanEXEZone/MMBN-Mod-Card-Kit | 10 | 123689 | .include "defaults_mod.asm"
table_file_jp equ "exe4-utf8.tbl"
table_file_en equ "bn4-utf8.tbl"
game_code_len equ 3
game_code equ 0x4234574A // B4WJ
game_code_2 equ 0x42345745 // B4WE
game_code_3 equ 0x42345750 // B4WP
card_type equ 1
card_id equ 93
card_no equ "093"
card_sub equ "Mod Card 093"
card_sub_x ... |
$Emulator/StandardIncludes.asm | jaredwhitney/os3 | 5 | 123690 | <filename>$Emulator/StandardIncludes.asm
; BOOT CRITICAL
; Stage2 Required Includes ;
; %include "../boot/betterRealMode.asm"
; %include "../boot/IDTmain.asm"
%include "../Drivers/PS2/PS_2.asm" ; init should be dealt with in kernel, not s2!
; BootCritical Signature ;
stage2_minloadSig : dd 0xDEADF154
; ... |
P2/permutation.asm | Snake52996/Buaa-CO-2020Autumn | 2 | 123691 | .data
result:.space 30
space:.asciiz " "
nl:.asciiz "\n"
.macro readInteger(%val)
li $v0,5
syscall
add %val,$v0,$zero
.end_macro
.macro printInteger(%val)
li $v0,1
add $a0,%val,$zero
syscall
.end_macro
.macro space()
li $v0,4
la $a0,space
syscall
.end_macro
.macro endl()
li $v0,4
la $a0,nl
syscall
.end_m... |
src/XenobladeChroniclesX/Mods/MaxTickets/patch_maxtickets.asm | lilystudent2016/cemu_graphic_packs | 1,002 | 123695 | <filename>src/XenobladeChroniclesX/Mods/MaxTickets/patch_maxtickets.asm
[XCX_MAXTICKETS_ALL] ##########################################################
moduleMatches = 0xF882D5CF, 0x30B6E091, 0xAB97DE6B ; 1.0.1E, 1.0.2U, 1.0.1U
.origin = codecave
; cfs::CfSocialManager::getTradeTicketMax(const(void))
_maxtickets:
cmp... |
42.asm | AsadKhalil/Assembly_x86 | 0 | 123696 | <gh_stars>0
; multitasking and dynamic thread registration
[org 0x0100]
jmp start
; PCB layout:
; ax,bx,cx,dx,si,di,bp,sp,ip,cs,ds,ss,es,flags,next, time , dummy
; 0, 2, 4, 6, 8,10,12,14,16,18,20,22,24, 26 , 28 , 30 , 32
pcb: times 32*17 dw 0 ; space for 32 PCBs
stack: times 32*256 dw 0 ; space for 32, 51... |
oeis/296/A296775.asm | neoneye/loda-programs | 11 | 123697 | <gh_stars>10-100
; A296775: Expansion of 1/Sum_{k>=0} A000326(k+1)*x^k.
; Submitted by <NAME>
; 1,-5,13,-27,54,-108,216,-432,864,-1728,3456,-6912,13824,-27648,55296,-110592,221184,-442368,884736,-1769472,3538944,-7077888,14155776,-28311552,56623104,-113246208,226492416,-452984832,905969664,-1811939328,3623878656,-72477... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1245.asm | ljhsiun2/medusa | 9 | 123698 | <filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1245.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0xf759, %rsi
nop
sub %r12, %r12
movw $0x6162, (%rsi)
nop
nop
nop
xor %rcx, %rcx
lea addr... |
timers/div_resets_timer/main.asm | AntonioND/gbc-hw-tests | 6 | 123699 | <filename>timers/div_resets_timer/main.asm
INCLUDE "hardware.inc"
INCLUDE "header.inc"
SECTION "var",BSS
ram_ptr: DS 2
repeat_loop: DS 1
SECTION "Main",HOME
;--------------------------------------------------------------------------
;- Main() -... |
programs/oeis/109/A109118.asm | neoneye/loda | 22 | 123700 | <filename>programs/oeis/109/A109118.asm
; A109118: a(n) = 2*(n^2 + 3*n + 1)^3.
; 2,250,2662,13718,48778,137842,332750,715822,1409938,2590058,4496182,7447750,11859482,18258658,27303838,39805022,56745250,79303642,108879878,147120118,195944362,257575250,334568302,429843598,546718898
mov $1,$0
add $1,3
mul $0,$1
add $0,1
... |
src/generation/mips/base.asm | harry1911/CoolCompiler | 0 | 123701 | # NEXT REGISTERS CAN'T NEVER BE MODIFIED!!!!!!
# --$s0-- contains Class Tag <-----> (Prototype, Builder)
# --$s1-- contains Class Tag <-----> Type Name (str)
# --$s4-- contains Class Tag <-----> Parent Class Tag
# --$s7-- contains the Heap Limit
.data
# ===========================================================... |
spectrum/tobinary.asm | nagydani/z80_crypto | 17 | 123705 | EMPTY_STRING: EQU $3533
V_TEST_FN: EQU $28E3
STACK_NUM: EQU $33B4
RESTACK: EQU $3297
K_CUR: EQU $5C5B
CHAN_FLAG: EQU $1615
ONE_SPACE: EQU $1652
REPORT_2: EQU $1C2E
REPORT_A: EQU $34E7
OCTA: CALL QUAD
QUAD: CALL DOUBLE
DOUBLE: EX AF,AF'
RL B
RL C
RL D
RL E
RLA
EX AF,AF'
AND A ; clear CF
RET
FIND_NUMV:
PUSH ... |
lab1/es5.asm | neskov7/AssemblyProgramsCE | 0 | 123708 | LENGHT equ 7
.MODEL small
.STACK
.DATA
vett DW 423,3191,23,11,-412,2,9
.CODE
.STARTUP
mov cx,LENGHT/2
mov di, 0
mov si, LENGHT*2-1
inversione:
MOV dx,vett[di]
XCHG vett[si],dx
MOV vett[di],dx
add al,2
sub bl,2
DEC cx
CMP cx,0
jnz inversione
.EXIT
END |
coverage/IN_CTS/0449-COVERAGE-nir-opt-if-199/work/variant/1_spirv_asm/shader.frag.asm | asuonpaa/ShaderTests | 0 | 123709 | <filename>coverage/IN_CTS/0449-COVERAGE-nir-opt-if-199/work/variant/1_spirv_asm/shader.frag.asm
; SPIR-V
; Version: 1.0
; Generator: Khronos Glslang Reference Front End; 10
; Bound: 74
; Schema: 0
OpCapability Shader
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL4... |
sh.asm | TRamirez97/CSE460-HW02 | 0 | 123710 | <filename>sh.asm
_sh: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
return 0;
}
int
main(void)
{
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 ... |
src/bubblesort_wNeg.asm | JoshKing56/BB8-Breadboard-Computer | 0 | 123711 | CLR
LD A -97 ;;Init Load array {-97, -121, -1, 31, 7, 1, -127}
LD &0 A
LD A -121
LD &1 A
LD A -1
LD &2 A
LD A 31
LD &3 A
LD A 7
LD &4 A
LD A 1
LD &5 A
LD A -127
LD &6 A
LD A 127
LD &7 A ;;Done loading
LD A 0 ;;NotSorted
LD &15 A
LD C 0
LD D 1
LD A &C ;;NextPair
LD B &D
GR A B A
PCU 0 ... |
emulator/mz800/XCTests/assets/TestCharacters.asm | gunterhager/mz-800-emulator | 8 | 123712 | ; Dump all characters in CGROM to the screen without using monitor routines
;
; Use z80asm from the z88dk project to build binary file.
; Command line:
; z80asm -b TestCharacters.asm
include "MZ800.inc"
defc LoadingAddress = 02000h
org LoadingAddress
; Program features
define UseHiRes
;define DrawLine
define ClearSc... |
oeis/100/A100186.asm | neoneye/loda-programs | 11 | 123714 | ; A100186: Structured heptagonal anti-diamond numbers (vertex structure 7).
; Submitted by <NAME>(l1)
; 1,16,67,176,365,656,1071,1632,2361,3280,4411,5776,7397,9296,11495,14016,16881,20112,23731,27760,32221,37136,42527,48416,54825,61776,69291,77392,86101,95440,105431,116096,127457,139536,152355,165936,180301,195472,2114... |
source/modules/basic/common/stack.asm | paulscottrobson/mega-basic | 3 | 123715 | <reponame>paulscottrobson/mega-basic
; *******************************************************************************************
; *******************************************************************************************
;
; Name : stack.asm
; Purpose : Stack Handler.
; Date : 23rd August 2019
; Review : 5t... |
oeis/201/A201478.asm | neoneye/loda-programs | 11 | 123716 | ; A201478: Primes of the form 3n^2 + 5.
; Submitted by <NAME>
; 5,17,53,113,197,593,773,977,1733,2357,4337,5297,5813,6353,6917,8117,8753,9413,13877,16433,17333,18257,20177,22193,26513,27653,28817,33713,38993,41777,44657,46133,49157,60497,62213,65717,69317,71153,73013,74897,78737,90833,99377,101573,110597,112913,117617,... |
oeis/176/A176085.asm | neoneye/loda-programs | 11 | 123717 | ; A176085: a(n) = A136431(n,n).
; Submitted by <NAME>(w1)
; 0,1,3,11,41,155,591,2267,8735,33775,130965,509015,1982269,7732659,30208749,118167055,462760369,1814091011,7118044023,27952660883,109853552255,432021606103,1700093447847,6694137523051,26372544576331,103950885100775,409928481296331,1617254203848347,6383026763741... |
oeis/094/A094987.asm | neoneye/loda-programs | 11 | 123718 | <reponame>neoneye/loda-programs
; A094987: a(n) = floor(11^n/5^n).
; 1,2,4,10,23,51,113,249,548,1207,2655,5843,12855,28281,62218,136880,301136,662499,1457498,3206497,7054294,15519448,34142787,75114133,165251092,363552403,799815288,1759593634,3871105995,8516433190,18736153019,41219536643,90682980616,199502557355,4389056... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_907.asm | ljhsiun2/medusa | 9 | 123719 | .global s_prepare_buffers
s_prepare_buffers:
push %r15
push %r8
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x6bae, %r8
cmp $21304, %rsi
mov $0x6162636465666768, %r9
movq %r9, %xmm7
movups %xmm7, (%r8)
xor %r15, %r15
lea addresses_A_ht+0x4a82, %rsi
lea addresses_A_ht+0x1d70e, %rdi
nop... |
parameters.asm | neilbaldwin/PR8 | 8 | 123720 | .MACRO defp _string
.BYTE (.STRAT (_string,0))-49, (.STRAT (_string,1))-49, (.strat (_string,2))-49
.ENDMACRO
.MACRO defp2 _string
.BYTE (.STRAT (_string,0))-1, (.STRAT (_string,1))-1, (.strat (_string,2))-1
.ENDMACRO
parameterNames:
defp "AOC"
defp "AOF"
defp "AOD"
defp "ALD"
defp "ALS"
defp "ALW"
defp... |
oeis/003/A003754.asm | neoneye/loda-programs | 11 | 123721 | ; A003754: Numbers with no adjacent 0's in binary expansion.
; Submitted by <NAME>
; 0,1,2,3,5,6,7,10,11,13,14,15,21,22,23,26,27,29,30,31,42,43,45,46,47,53,54,55,58,59,61,62,63,85,86,87,90,91,93,94,95,106,107,109,110,111,117,118,119,122,123,125,126,127,170,171,173,174,175,181,182,183,186,187,189,190,191,213,214,215,218... |
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48_notsx.log_17708_132.asm | ljhsiun2/medusa | 9 | 123722 | <filename>Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48_notsx.log_17708_132.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r14
push %r9
push %rbp
push %rbx
push %rsi
lea addresses_UC_ht+0x1887, %rsi
nop
nop
nop
cmp $48344, %r12
mov $0x6162636465666768, %r11
movq %r11, %xmm7
movups ... |
data/pokemon/base_stats/arceus.asm | AtmaBuster/pokeplat-gen2 | 6 | 123723 | <reponame>AtmaBuster/pokeplat-gen2
db 0 ; species ID placeholder
db 120, 120, 120, 120, 120, 120
; hp atk def spd sat sdf
db NORMAL, NORMAL ; type
db 3 ; catch rate
db 255 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_UNKNOWN ; gender ratio
db 120 ; step cycles to hatch
INCBIN "gfx/pokemon/arceus/... |
libsrc/gfx/common/putsprite_callee.asm | ahjelm/z88dk | 640 | 123724 | ;
; Generic trick to adapt a classic function to the CALLEE mode
;
; ----- void __CALLEE__ putsprite(int ortype, int x, int y, void *sprite);
;
;
; $Id: putsprite_callee.asm $
;
IF !__CPU_GBZ80__
SECTION code_graphics
PUBLIC putsprite_callee
PUBLIC _putsprite_callee
EXTERN putsprite
EXTERN __graphics_retaddr... |
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca.log_21829_1770.asm | ljhsiun2/medusa | 9 | 123727 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r15
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x1498c, %rbx
nop
nop
nop
nop
nop
add $15096, %r15
movw $0x6162, (%rbx)
nop
nop
nop
nop
nop
and $58724, %r12
lea addresses_normal_ht+0x1075c, %r9
nop
nop
inc %r11
movb... |
oeis/170/A170827.asm | neoneye/loda-programs | 11 | 123729 | <reponame>neoneye/loda-programs
; A170827: Sum of digits after the decimal point in the decimal expansion of (3/2)^n.
; Submitted by <NAME>(s2)
; 0,5,7,15,13,29,25,37,38,43,42,67,60,67,60,85,73,77,71,79,95,107,106,100,95,120,95,137,143,146,138,140,147,166,172,163,172,177,180,193,158,174,171,184,177,188,188,223,212,241,... |
oeis/313/A313975.asm | neoneye/loda-programs | 11 | 123730 | ; A313975: Coordination sequence Gal.4.145.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>
; 1,5,10,17,22,27,32,37,44,49,54,59,64,71,76,81,86,91,98,103,108,113,118,125,130,135,140,145,152,157,162,167,172,179,184... |
programs/oeis/281/A281727.asm | neoneye/loda | 22 | 123731 | <reponame>neoneye/loda<filename>programs/oeis/281/A281727.asm
; A281727: a(n) = (-1)^n * 2 if n = 3*k and n!=0, otherwise a(n) = (-1)^n.
; 1,-1,1,-2,1,-1,2,-1,1,-2,1,-1,2,-1,1,-2,1,-1,2,-1,1,-2,1,-1,2,-1,1,-2,1,-1,2,-1,1,-2,1,-1,2,-1,1,-2,1,-1,2,-1,1,-2,1,-1,2,-1,1,-2,1,-1,2,-1,1,-2,1,-1,2,-1,1,-2,1,-1,2,-1,1,-2,1,-1,2... |
oeis/041/A041220.asm | neoneye/loda-programs | 11 | 123732 | <filename>oeis/041/A041220.asm
; A041220: Numerators of continued fraction convergents to sqrt(122).
; Submitted by <NAME>
; 11,243,5357,118097,2603491,57394899,1265291269,27893802817,614928953243,13556330774163,298854205984829,6588348862440401,145242529179673651,3201923990815260723,70587570327115409557,155612847118735... |
StackArithmetic/SimpleAdd/SimpleAdd.asm | anish-sk/Nand2Tetris-project7 | 0 | 123733 | <reponame>anish-sk/Nand2Tetris-project7<gh_stars>0
///StackArithmetic\SimpleAdd\SimpleAdd.asm ///
@7
D=A
@SP
A=M
M=D
@SP
M=M+1
@8
D=A
@SP
A=M
M=D
@SP
M=M+1
@SP
AM=M-1
D=M
@SP
A=M-1
M=M+D
|
programs/oeis/043/A043644.asm | neoneye/loda | 22 | 123735 | <filename>programs/oeis/043/A043644.asm
; A043644: Numbers whose base-10 representation has exactly 8 runs.
; 10101010,10101012,10101013,10101014,10101015,10101016,10101017,10101018,10101019,10101020,10101021,10101023,10101024,10101025,10101026,10101027,10101028,10101029,10101030,10101031,10101032
add $0,9
mul $0,11
d... |
tests/Arithmetic/add_16b_carry.asm | ZubinGou/8086-emulator | 39 | 123737 | NAME Arithmetic
TITLE add_16b_carry
; test passed
assume cs:code,ds:data
data segment
var1 dw 1234h
var2 dw 5140h
result dw ?
carry db 00h
data ends
code segment
mov ax,data
mov ds,ax
start: mov ax,var1
add ax,var2
jnc skip
mov carry,01h
skip: mov result,ax
... |
putstr.asm | Zenol/kos | 0 | 123739 | ;; putstr : Kernel - Mode
putstr:
;; Save context
push ax
push bx
;; Start display
.dsp
lodsb ;mov al, [ds:si] & inc si
cmp al, 0
jz .end
mov ah, 0x0E
mov bx, 0x07
int 0x10
jmp .dsp
.end
;; Restor context
pop ax
pop bx
ret
|
test/cv8struc.asm | bitwiseworks/nasm-os2 | 1 | 123741 | <filename>test/cv8struc.asm<gh_stars>1-10
struc A_STRUC
._a: resw 1
endstruc
a_struc:
istruc A_STRUC
at A_STRUC._a, dw 1
iend
section .data
foo:
dd 0x11111111
.bar:
dd 0x22222222
|
Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca_notsx.log_8_1797.asm | ljhsiun2/medusa | 9 | 123742 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r15
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x1ea7f, %r15
nop
cmp $23572, %rax
movw $0x6162, (%r15)
nop
nop
nop
nop
nop
and %rdi, %rdi
lea addresses_WC_ht+0xdda9, %rax
nop
nop
and %rbx, %rbx
mov (%rax), %r13d
nop
lfence
... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_463.asm | ljhsiun2/medusa | 9 | 123746 | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r13
push %r14
push %r15
push %r8
push %rbp
// Store
lea addresses_UC+0xf7b2, %r14
nop
nop
nop
nop
nop
add %rbp, %rbp
movb $0x51, (%r14)
nop
nop
nop
nop
and %r13, %r13
// Faulty Load
lea addresses_normal+0x4a33, ... |
oeis/138/A138456.asm | neoneye/loda-programs | 11 | 123748 | <reponame>neoneye/loda-programs
; A138456: a(n) = ((n-th prime)^6-(n-th prime)^4))/6.
; Submitted by <NAME>
; 8,108,2500,19208,292820,799708,4009008,7819260,24626008,99019340,147763360,427308708,791213080,1052990708,1795722608,3692745108,7028069380,8584421420,15073038508,21345812040,25217638008,40508084240
seq $0,40 ;... |
PlusMinusZero.asm | CallMeMengMeng/ASSEMBLY-LANGUAGE | 0 | 123749 | ; THERE ARE 12 SIGNED NUMBER IN TABLE, COUNT THE NUMBER OF PLUS MINUS 0,RESPECTIVELY
DATA SEGMENT
TABLE DB 23h,78h,56h,0abh,00h,0cdh,59h,00h,23h,0efh,00h,0c0h
PLUS DB (0)
MINUS DB (0)
ZERO DB (0)
DATA ENDS
CODE SEGMENT
ASSUME DS:DATA,CS:CODE
START: MOV AX,DATA
MOV DS,AX
LEA SI,TABLE
MOV CX,12
AGA... |
src/gregorian.asm | ViGrey/calendar_dot_exe | 2 | 123750 | ; Copyright (C) 2020-2021, <NAME>
; All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions
; are met:
;
; 1. Redistributions of source code must retain the above copyright
; notice, this list of conditions and t... |
fileHandeling/createFile.asm | A2nkF/assembler-foo | 3 | 123752 | global start
section .text
start:
createFile:
mov eax, 5 ; Open system call = 5
push dword 0666o ; set Permissions to -rw-r--r-- ; 0666o is octal
push dword 0202h ; create File ; 0202h is hexadecimal
push dword path ; Path
sub esp, 4 ; Reserved space for system call
int ... |
libsrc/gfx/wide/w_multipoint.asm | ahjelm/z88dk | 640 | 123753 | <filename>libsrc/gfx/wide/w_multipoint.asm
;
; Z88 Graphics Functions - Small C+ stubs
;
; <NAME> 19/7/2007
; Usage: multipoint(int hv, int length, int x, int y)
IF !__CPU_INTEL__ && !__CPU_GBZ80__
SECTION code_graphics
PUBLIC multipoint
PUBLIC _multipoint
EXTERN asm_multipoint
INCLUD... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_17_690.asm | ljhsiun2/medusa | 9 | 123754 | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r13
push %r15
push %rbp
push %rbx
push %rcx
push %rdx
push %rsi
// Store
lea addresses_A+0x19cf7, %rsi
nop
nop
nop
add $34180, %r13
movb $0x51, (%rsi)
add $24221, %rbp
// Store
mov $0x857, %r13
nop
nop
cmp $47045, %rdx
mo... |
mastersystem/zxb-sms-2012-02-23/zxb-sms/wip/zxb/library-asm/const.asm | gb-archive/really-old-stuff | 10 | 123756 | <reponame>gb-archive/really-old-stuff
; Global constants
P_FLAG EQU 23697
FLAGS2 EQU 23681
ATTR_P EQU 23693 ; permanet ATTRIBUTES
ATTR_T EQU 23695 ; temporary ATTRIBUTES
CHARS EQU 23606 ; Pointer to ROM/RAM Charset
UDG EQU 23675 ; Pointer to UDG Charset
MEM0 EQU 5C92h ; Temporary memory buffer used by ROM chars
|
programs/oeis/245/A245627.asm | neoneye/loda | 22 | 123757 | <reponame>neoneye/loda
; A245627: Base 10 digit sum of 11*n.
; 0,2,4,6,8,10,12,14,16,18,2,4,6,8,10,12,14,16,18,11,4,6,8,10,12,14,16,18,11,13,6,8,10,12,14,16,18,11,13,15,8,10,12,14,16,18,11,13,15,17,10,12,14,16,18,11,13,15,17,19,12,14,16,18,11,13,15,17,19,21,14,16,18,11,13,15,17,19,21,23,16,18,11,13,15,17,19,21,23,25,18... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_1328.asm | ljhsiun2/medusa | 9 | 123758 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r14
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0xadf3, %rsi
lea addresses_UC_ht+0x10f7b, %rdi
clflush (%rsi)
cmp %rbx, %rbx
mov $21, %rcx
rep movsb
nop
nop
inc %rbx
lea addresses_A_ht+0xf1b, %rcx
nop
nop
nop
nop
and $22127,... |
editVibratoTable.asm | neilbaldwin/Pulsar | 11 | 123759 |
editVibratoTable:
.IF SRAM_MAP=32
lda #SRAM_VIBRATO_BANK
jsr setMMC1r1
.ENDIF
lda vibratoFirstRow
clc
adc vibratoCursorY
tax
lda vibratoRowsIndex,x
clc
adc vibratoCursorX
sta vibratoIndex
tay
ldx vibratoCursorX
lda writeScreen ;need to write screen?
beq @a
jsr writeVibratoScreen ... |
oeis/173/A173593.asm | neoneye/loda-programs | 11 | 123761 | ; A173593: Numbers having in binary representation exactly two ones in three consecutive digits.
; Submitted by <NAME>
; 3,5,6,11,13,22,27,45,54,91,109,182,219,365,438,731,877,1462,1755,2925,3510,5851,7021,11702,14043,23405,28086,46811,56173,93622,112347,187245,224694,374491,449389,748982,898779,1497965,1797558,2995931... |
win32/token_stealing.asm | HadiMed/WindowsShellcode | 1 | 123763 | <gh_stars>1-10
[BITS 32]
_start :
;the KPRC (Kernel Processor Control Region) structure. The KPCR contains per-CPU information which is shared by the kernel and the HAL (Hardware Abstraction Layer).
;This stores critical information about CPU state and information. This is located at the base address of the FS se... |
Data/ships/Bushmaster.asm | TinfoilAsteroid/EliteNext | 9 | 123764 | <gh_stars>1-10
Bushmaster: DB $00 ; 00 scoop debris
DW $109A ; 01 missile lock radius
DW BushmasterEdges ; 03 edge address
DB BushmasterEdgesSize ; 05 edge data lengt... |
source/io.asm | BinaryRealm/ElfOS | 0 | 123765 | <reponame>BinaryRealm/ElfOS<gh_stars>0
;INFORMATION FOR PS2 CONTROLLER
;Data Port: 0x60 (Read or Write)
;Command Port: 0x64 (Write a command) or (Read the status register)
;
;
;
;
;
;
;
;
|
src/multiworld/randolive.asm | PJBoy/alttp_sm_combo_randomizer_rom | 31 | 123766 | ; Randomizer.live - communication library
; Things like server-based randomization, logging, crowd control-like stuff
!MESSAGEBASE = !SRAM_RANDOLIVE
!MESSAGETMP = $0e
!MESSAGES_IN = !MESSAGEBASE
!MESSAGES_OUT = !MESSAGEBASE+$0100
!SNES_WRITEPTR = !MESSAGEBASE+$184
!REMOTE_READPTR = !MESSAGEBASE+$186
!REMOTE_WRITEPTR ... |
bin_patch.asm | Illidanz/MamoruHelper | 2 | 123767 | .nds
.open "data/repack/arm9.bin",0x02000000
;Using free space up to 0x020e5908 for custom code
;Fix the game to run on no$gba
;More info: https://github.com/Arisotura/melonDS/issues/559
.org 0x020e5734
.area 0x1d4
MEMSET_HACK:
;Original jump
bcc 0x0201094c
;Compare r2 to the bugged value
ldr r1... |
oeis/129/A129344.asm | neoneye/loda-programs | 11 | 123769 | <reponame>neoneye/loda-programs
; A129344: a(n) is the number of powers of 2 that have n decimal digits.
; Submitted by <NAME>
; 4,3,3,4,3,3,4,3,3,4,3,3,4,3,3,4,3,3,4,3,3,4,3,3,4,3,3,4,3,3,3,4,3,3,4,3,3,4,3,3,4,3,3,4,3,3,4,3,3,4,3,3,4,3,3,4,3,3,3,4,3,3,4,3,3,4,3,3,4,3,3,4,3,3,4,3,3,4,3,3,4,3,3,4,3,3,4,3,3,3,4,3,3,4,3,3... |
Transynther/x86/_processed/AVXALIGN/_ht_/i7-8650U_0xd2_notsx.log_88_1616.asm | ljhsiun2/medusa | 9 | 123770 | .global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r15
push %r9
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0xcab8, %r14
nop
nop
nop
nop
sub %r15, %r15
mov $0x6162636465666768, %rsi
movq %rsi, %xmm4
vmovups %ymm4, (%r14)
nop
nop
nop
nop
cmp %rdi, %rdi
lea addresses_D_ht+0x8a68, %r15
nop
nop
no... |
programs/oeis/160/A160909.asm | neoneye/loda | 22 | 123771 | ; A160909: Row sums of triangle defined in A096539.
; 2,3,10,28,198,520,3570,9348,64078,1149850,3010348,54018520,370248450,969323028,6643838878,119218851370,2139295485798,5600748293800,100501350283428,688846502588398,1803423556807920,32361122672259148
seq $0,40 ; The prime numbers.
sub $0,2
seq $0,14739 ; Expansion of... |
Microsoft Word for Windows Version 1.1a/Word 1.1a CHM Distribution/Opus/asm/movecmds.asm | lborgav/Historical-Source-Codes | 7 | 123772 | ; movecmd.asm -- move the command table
?PLM = 1
?WIN = 1
include w2.inc
include cmacros.inc
createSeg initwin_PCODE, INIT, BYTE, PUBLIC, CODE
sBegin INIT
assumes CS, INIT
externB vsytInit
externB vkmpInit
externB vmudInit
externB vsttbMenuBase
externB vsttbMenuRgbst
; %%Function:MoveC... |
Transynther/x86/_processed/US/_zr_/i3-7100_9_0x84_notsx.log_21829_1972.asm | ljhsiun2/medusa | 9 | 123773 | <filename>Transynther/x86/_processed/US/_zr_/i3-7100_9_0x84_notsx.log_21829_1972.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r15
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0xb214, %r8
nop
nop
nop
nop
nop
add $2289, %r15
mov (%r8), %rcx
nop
nop
nop
add $18714, ... |
Transynther/x86/_processed/AVXALIGN/_st_4k_sm_/i9-9900K_12_0xa0.log_2_732.asm | ljhsiun2/medusa | 9 | 123774 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r15
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x1eca5, %r15
and %r11, %r11
mov $0x6162636465666768, %rsi
movq %rsi, (%r15)
nop
nop
nop
nop
nop
xor %rcx, %rcx
lea addresses_UC_ht+0x1ef15, %rsi
lea addresses_WC_ht+0x1b95, %r... |
oeis/263/A263805.asm | neoneye/loda-programs | 11 | 123775 | ; A263805: Binary representation of the n-th iteration of the "Rule 157" elementary cellular automaton starting with a single ON (black) cell.
; Submitted by Christian Krause
; 1,11,111,101111,1011111,1010111111,10101111111,10101011111111,101010111111111,101010101111111111,1010101011111111111,1010101010111111111111,101... |
programs/oeis/038/A038192.asm | neoneye/loda | 22 | 123776 | <reponame>neoneye/loda<filename>programs/oeis/038/A038192.asm
; A038192: Bisection of A001317.
; 3,15,51,255,771,3855,13107,65535,196611,983055,3342387,16711935,50529027,252645135,858993459,4294967295,12884901891,64424509455,219043332147,1095216660735,3311419785987,16557098929935,56294136361779,281470681808895,84443781... |
lib/parser.asm | argymouz/alan-compiler | 0 | 123777 | <gh_stars>0
; function parseReal (var buffer : array of char; p : ^real;
; base : byte) : byte
; ----------------------------------------------------------------
; This procedure parses a real number. It ignores leading
; spaces and returns the number of characters read.
;
; KNOWN ISSUES
... |
kernel/tasking/driver.asm | ssebs/xos | 15 | 123778 | <gh_stars>10-100
;; xOS32
;; Copyright (C) 2016-2017 by <NAME>.
use32
MAX_DRIVER_FUNCTION = 0x000E
DRIVER_LOAD_ADDRESS = 0x80000000 ; 2 GB
; Standard Driver Requests
; Requests 2 to 15 are reserved for future expansion
; Device-specific requests range from 16 to 0xFFFFFFFF
STD_DRIVER_INIT = 0x0000
STD_DRIVER_RE... |
test_cases/tc2.asm | mandalatejesh/pipelined-processor | 0 | 123779 | // Program to test arithmetic instructions with stalls
SUB R1, R1, R2
ADD R3, R3, R1
MUL R4, R4, R3
INC R4
STORE R4, R10, 2
STORE R1, R10, 0
STORE R3, R10, 1
LOAD R5, R6, 1
STORE R5, R6, 2
HLT
|
oeis/317/A317613.asm | neoneye/loda-programs | 11 | 123780 | <reponame>neoneye/loda-programs<filename>oeis/317/A317613.asm
; A317613: Permutation of the nonnegative integers: lodumo_4 of A047247.
; Submitted by <NAME>
; 2,3,0,1,4,5,6,7,10,11,8,9,12,13,14,15,18,19,16,17,20,21,22,23,26,27,24,25,28,29,30,31,34,35,32,33,36,37,38,39,42,43,40,41,44,45,46,47,50,51,48,49,52,53,54,55,58,... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.