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 |
|---|---|---|---|---|
070-smc/smc.nasm | gynvael/stream | 152 | 125745 | <reponame>gynvael/stream<filename>070-smc/smc.nasm
[bits 64]
; rdi, rsi, ...
%define KEY 0x87
; int3
lea rax, [rel encrypted_start]
lea rdx, [rel encrypted_end]
loop_dec:
xor byte [rax], KEY
inc rax
cmp rax, rdx
jne loop_dec
encrypted_start:
mov rax, rsi
xor rax, rdi
mov rsi, rax
encrypted_end:
... |
src/main/c/murax/hello_world/build/hello_world.asm | GuitarZeiZei/VexRiscv | 0 | 125746 |
build/hello_world.elf: file format elf32-littleriscv
Disassembly of section ._vector:
80000000 <crtStart>:
.section .start_jump,"ax",@progbits
crtStart:
//long jump to allow crtInit to be anywhere
//do it always in 12 bytes
lui x2, %hi(crtInit)
80000000: 80000137 lui sp,0x80000
addi... |
source/dos/fasmg.asm | hfutxqd/fasmg | 0 | 125750 |
match ,{
include 'macro/struct.inc'
} match -,{
else
include 'selfhost.inc'
end match
_ equ }
include '../version.inc'
BUFFER_SIZE = 4000h
STACK_SIZE = 4000h
format MZ
heap 0
stack stack_segment:stack_top-stack_bottom
entry loader:startup
segment loader use16
startup:
mov ax,1687h
int 2Fh
or ax,ax... |
lista2/exerc6..asm | Durfan/ufsj-lab-aoc1 | 0 | 125751 | <gh_stars>0
.data
vetor: .word 0-100
.text
la $s5,vetor
li $t0,1
loop:
slti $t1,$t0,100
beq $t1,$zero,end
sw $t0,($s5)
addi $s5,$s5,4
addi $t0,$t0,1
j loop
end: |
ugbc/src/hw/c64/vars.asm | Samuel-DEVULDER/ugbasic | 0 | 125752 | <filename>ugbc/src/hw/c64/vars.asm
; /*****************************************************************************
; * ugBASIC - an isomorphic BASIC language compiler for retrocomputers *
; *****************************************************************************
; * Copyright 2021 <NAME> (<EMAIL>)
; *
... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_395.asm | ljhsiun2/medusa | 9 | 125755 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r14
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x18a78, %r14
nop
nop
nop
nop
nop
cmp $59968, %r12
mov (%r14), %ax
nop
sub %rbp, %rbp
lea addresses_A_ht+0x9118, %rsi
lea addresses_D_ht+0xc118, %rdi
nop
nop
nop
cmp %r13, %r13... |
S5/AO/Assembler/math_operations/01.asm | Momellouky/S5 | 1 | 125757 | <filename>S5/AO/Assembler/math_operations/01.asm
; multi-segment executable file template.
data segment
; add your data here!
pkey db "press any key...$"
ends
code segment
start:
; set segment registers:
mov ax, data
mov ds, ax
mov es, ax
; add your code here
somme:
mov ax, 20... |
oeis/214/A214127.asm | neoneye/loda-programs | 11 | 125759 | ; A214127: a(2n) = a(n-1) + a(n) and a(2n+1) = a(n+1) for n>=1, with a(0)=1, a(1)=2.
; Submitted by <NAME>
; 1,2,3,3,5,3,6,5,8,3,8,6,9,5,11,8,13,3,11,8,11,6,14,9,15,5,14,11,16,8,19,13,21,3,16,11,14,8,19,11,19,6,17,14,20,9,23,15,24,5,20,14,19,11,25,16,27,8,24,19,27,13,32,21,34,3,24,16,19,11,27,14,25
mov $2,$0
add $0,1
... |
programs/oeis/059/A059851.asm | neoneye/loda | 22 | 125760 | ; A059851: a(n) = n - floor(n/2) + floor(n/3) - floor(n/4) + ... (this is a finite sum).
; 0,1,1,3,2,4,4,6,4,7,7,9,7,9,9,13,10,12,12,14,12,16,16,18,14,17,17,21,19,21,21,23,19,23,23,27,24,26,26,30,26,28,28,30,28,34,34,36,30,33,33,37,35,37,37,41,37,41,41,43,39,41,41,47,42,46,46,48,46,50,50,52,46,48,48,54,52,56,56,58,52,5... |
oeis/239/A239195.asm | neoneye/loda-programs | 11 | 125761 | <reponame>neoneye/loda-programs
; A239195: Sum of the next to smallest parts in the partitions of 4n into 4 parts with smallest part = 1.
; 1,5,17,42,78,134,215,315,447,616,812,1052,1341,1665,2045,2486,2970,3522,4147,4823,5579,6420,7320,8312,9401,10557,11817,13186,14630,16190,17871,19635,21527,23552,25668,27924,30325,3... |
test.asm | AsadKhalil/Assembly_x86 | 0 | 125762 | [org 0x0100]
jmp start
flip:
xor si, si
mov ax, 0
mov al, 80
mov bl, 24
mul bl
add ax, 79
mov di, ax
shl di, 1
mov ax, 0xb800
mov es, ax
mov ds, ax
mov ax, 80
mov bl, 12
mul bl
add ax, 39
mov bx, ax
mov cx, bx
shl bx, 1
xor ax, ax
loop1:
cld
lodsw
std
stosw
... |
c2000/C2000Ware_1_00_06_00/libraries/dsp/FPU/c28/source/vector/maxidx_SP_RV_2.asm | ramok/Themis_ForHPSDR | 0 | 125763 | ;;#############################################################################
;;! \file source/vector/maxidx_SP_RV_2.asm
;;!
;;! \brief C-Callable index of maximum value of an even length real array
;;! \author <NAME>
;;! \date 07/20/11
;;
;; HISTORY:
;; 07/20/11 - original (<NAME>)
;;
;; DESCRIPTION: C-Callabl... |
Working Disassembly/General/Sprites/Shields/Anim - Lightning Shield.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 5 | 125764 | dc.w byte_19A30-Ani_LightningShield
dc.w byte_19A5C-Ani_LightningShield
dc.w byte_19A73-Ani_LightningShield
byte_19A30: dc.b 1, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9
dc.b $A, $B, $16, $16, $15, $15, $14, $14, $13, $13, $12, $12
dc.b $11, $11, $10,... |
tests/expr_asm_value.asm | jonfoster/customasm | 0 | 125765 | <reponame>jonfoster/customasm
; :::
; simple
#ruledef
{
emit {x: i8} => x
test {x} => asm { emit x }
}
emit 0x12 ; = 0x12
test 0x12 ; = 0x12
test 0x10 + 2 ; = 0x12
; :::
; concat
#ruledef
{
emit {x: i8} => x
test {x} => asm { emit x } @ asm { emit 0xff }
}
emit 0x12 ; = 0x12
test 0x12 ... |
Assembly/textures/actInfo.asm | WildGenie/Ninokuni | 14 | 125766 | ;; Modify the subimages position of the texture battles images.
;
; Arguments of v3d_setSubImage function:
; + R0: Sprite struct
; + R1: Frame index
; + R2: Layer index
; + R3: X Start
; + SP+00: Y Start
; + SP+04: X End
; + SP+08: Y End
; + SP+0C: X Output
; + SP+10: Y Output
; + SP+14: Width
; ... |
Transynther/x86/_processed/NONE/_ht_zr_/i9-9900K_12_0xca.log_21829_952.asm | ljhsiun2/medusa | 9 | 125767 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0xdab2, %rcx
clflush (%rcx)
nop
nop
add %rax, %rax
movb $0x61, (%rcx)
dec %rax
lea addresses_D_ht+0x98e0, %r14
nop
cmp %rsi, %rsi
movups (%r14), %xmm3
vpextrq $0, %xmm3, %rdi
nop
no... |
programs/oeis/066/A066983.asm | karttu/loda | 1 | 125769 | <filename>programs/oeis/066/A066983.asm
; A066983: a(n+2) = a(n+1) + a(n) + (-1)^n, with a(1) = a(2) = 1.
; 1,1,1,3,3,7,9,17,25,43,67,111,177,289,465,755,1219,1975,3193,5169,8361,13531,21891,35423,57313,92737,150049,242787,392835,635623,1028457,1664081,2692537,4356619,7049155,11405775,18454929,29860705,48315633,7817633... |
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca_notsx.log_18_1254.asm | ljhsiun2/medusa | 9 | 125770 | .global s_prepare_buffers
s_prepare_buffers:
push %r9
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x5a3a, %rsi
lea addresses_normal_ht+0x24da, %rdi
nop
and %rax, %rax
mov $43, %rcx
rep movsb
nop
nop
nop
mfence
lea addresses_normal_ht+0x2dba, %rbx
nop
nop
nop
sub %r9, %r9
mo... |
kernel/protected.asm | tailix/kernel | 0 | 125771 | <reponame>tailix/kernel
#include "config.h"
[GLOBAL gdt_flush]
[GLOBAL idt_flush]
gdt_flush:
mov eax, [esp+4]
lgdt [eax]
mov ax, GDT_KERNEL_DS_SELECTOR
mov ds, ax
mov es, ax
mov fs, ax
mov gs, ax
mov ss, ax
jmp GDT_KERNEL_CS_SELECTOR:.flush
.flush:
ret
idt_flush:
mov eax,... |
project/ntstub/i386/10_0_10586_sp0_ssdt_sysenter.asm | rmusser01/windows-syscall-table | 6 | 125772 | <reponame>rmusser01/windows-syscall-table
; DO NOT MODIFY THIS FILE DIRECTLY!
; author: @TinySecEx
; ssdt asm stub for 10.0.10586-sp0-windows-10-th2-1511 i386
.686
.mmx
.xmm
.model flat,stdcall
option casemap:none
option prologue:none
option epilogue:none
.code
; ULONG __stdcall NtAccessCheck( ULONG arg_01 , ULO... |
Program 3/AddTwo.asm | smitc29/Assembly_Projects | 0 | 125773 | <reponame>smitc29/Assembly_Projects
; <NAME> Project 3
; CSCI 231 Professor <NAME>
; Oct 2, 2016
; Changing colors, testing plaindromes, consent loop
TITLE MASM Template
INCLUDE Irvine32.inc
.data
source BYTE "This is the source string",0
prompt1 BYTE " Please enter a string: ", 0
prompt2 BYTE " ... |
programs/oeis/141/A141878.asm | neoneye/loda | 22 | 125774 | ; A141878: Primes congruent to 13 mod 19.
; 13,89,127,241,317,431,659,773,811,887,1039,1153,1229,1381,1571,1609,1723,1913,1951,2027,2141,2179,2293,2521,2711,2749,2939,3167,3319,3433,3547,3623,3851,3889,4003,4079,4231,4421,4649,4801,4877,5333,5827,5903,6131,6359,6397,6473,6701,6967,7043,7309,7499,7537,7727,7841,7879,799... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_482.asm | ljhsiun2/medusa | 9 | 125776 | <filename>Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_482.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r15
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x9b44, %rsi
lea addresses_normal_ht+0x194e8, %rdi
xor $47566, %r15
mov $115, %rcx
rep movsq... |
api/api009.asm | yosswi414/HariboteOS_USB | 0 | 125777 | <filename>api/api009.asm
[BITS 32]
GLOBAL api_malloc
[SECTION .text]
api_malloc: ; char *api_malloc(int size);
PUSH EBX
MOV EDX, 9
MOV EBX, [CS:0x0020]
MOV ECX, [ESP+8] ; size
INT 0x40
POP EBX
RET
|
programs/oeis/199/A199334.asm | neoneye/loda | 22 | 125778 | <filename>programs/oeis/199/A199334.asm
; A199334: Triangle T(n,k) = Fibonacci(n+k), related to A000045 (Fibonacci numbers).
; 0,1,1,1,2,3,2,3,5,8,3,5,8,13,21,5,8,13,21,34,55,8,13,21,34,55,89,144,13,21,34,55,89,144,233,377,21,34,55,89,144,233,377,610,987,34,55,89,144,233,377,610,987,1597,2584
seq $0,51162 ; Triangle T... |
libsrc/fcntl/spectrum/zxbasdrv/fdtell.asm | andydansby/z88dk-mk2 | 1 | 125779 | ;
; fdtell: ..see fdgetpos !
;
; Stefano - 5/7/2006
;
;
; $Id: fdtell.asm,v 1.1 2006/07/18 21:02:54 stefano Exp $
XLIB fdtell
.fdtell
ld hl,-1
ld d,h
ld e,l
ret
|
programs/oeis/227/A227380.asm | karttu/loda | 1 | 125780 | <reponame>karttu/loda<gh_stars>1-10
; A227380: Doubling the first two of every four nonnegative numbers.
; 0,2,2,3,8,10,6,7,16,18,10,11,24,26,14,15,32,34,18,19,40,42,22,23,48,50,26,27,56,58,30,31,64,66,34,35,72,74,38,39,80,82,42,43,88,90,46,47,96,98,50,51,104,106,54,55,112,114
mov $1,$0
bin $0,2
gcd $0,2
mul $1,$0
|
src/sa1hooks.asm | spannerisms/lttphack | 6 | 125781 | pushpc
org $008000
struct SA1IRAM $003000
.SHORTCUT_USED: skip 2
.corruption_watcher: skip 2
.SCRATCH: skip 16
.CONTROLLER_1:
.CopyOf_F2: skip 1
.CopyOf_F0: skip 1
.CONTROLLER_1_FILTERED:
.CopyOf_F6: skip 1
.CopyOf_F4: skip 1
.CONTROLLER_1_NEW:
.JOYPAD2_NEW: skip 2
.CachedThisFrame: skip 1
.cm_submod... |
arch/z80/src/z80/z80_saveusercontext.asm | baggio63446333/incubator-nuttx | 10 | 125782 | ;*************************************************************************
; arch/z80/src/z80/z80_saveusercontext.asm
;
; Copyright (C) 2007-2009 <NAME>. All rights reserved.
; Author: <NAME> <<EMAIL>>
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that... |
oeis/134/A134804.asm | neoneye/loda-programs | 11 | 125783 | <gh_stars>10-100
; A134804: Remainder of triangular number A000217(n) modulo 9.
; Submitted by <NAME>
; 0,1,3,6,1,6,3,1,0,0,1,3,6,1,6,3,1,0,0,1,3,6,1,6,3,1,0,0,1,3,6,1,6,3,1,0,0,1,3,6,1,6,3,1,0,0,1,3,6,1,6,3,1,0,0,1,3,6,1,6,3,1,0,0,1,3,6,1,6,3,1,0,0,1,3,6,1,6,3,1,0,0,1,3,6,1,6,3,1,0,0,1,3,6,1,6,3,1,0,0
add $0,1
bin $0... |
oeis/254/A254709.asm | neoneye/loda-programs | 11 | 125784 | <reponame>neoneye/loda-programs
; A254709: Indices of pentagonal numbers (A000326) which are also centered square numbers (A001844).
; Submitted by <NAME>
; 1,2,10,25,137,346,1906,4817,26545,67090,369722,934441,5149561,13015082,71724130,181276705,998988257,2524858786,13914111466,35166746297,193798572265,489809589370,26... |
oeis/161/A161428.asm | neoneye/loda-programs | 11 | 125785 | <filename>oeis/161/A161428.asm<gh_stars>10-100
; A161428: a(n) = A161424(n)/4.
; Submitted by <NAME>(s2)
; 4,5,6,7,8,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277
mov... |
core/src/main/c/share/asmlib/divfixedi64.asm | jerrinot/questdb | 8,451 | 125787 | <filename>core/src/main/c/share/asmlib/divfixedi64.asm
;************************* divfixedi64.asm *********************************
; Author: <NAME>
; Date created: 2011-07-22
; Last modified: 2011-07-22
;
; Function prototypes:
; void setdivisori32(int buffer[2], int d);
; int dividefixedi32(const i... |
non_regression/other_x64_linux.o.asm | LRGH/plasmasm | 1 | 125788 | <gh_stars>1-10
.file "ptx.c"
.section .rodata.str1.1,"aMS",@progbits,1
.LC01:
.section .text.unlikely,"ax",@progbits
.LCOLDB1:
.data
.local macro_name
.type macro_name, @object
macro_name:
.quad .LC000002B0.str1.1
.size macro_name, 8
# ----------------------
.local truncation_string
.type truncation_string, @... |
data/pokemon/base_stats/espeon.asm | AtmaBuster/pokeplat-gen2 | 6 | 125789 | db 0 ; species ID placeholder
db 65, 65, 60, 110, 130, 95
; hp atk def spd sat sdf
db PSYCHIC, PSYCHIC ; type
db 45 ; catch rate
db 197 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_F12_5 ; gender ratio
db 35 ; step cycles to hatch
INCBIN "gfx/pokemon/espeon/front.dimensions"
db GROWTH_MEDIUM... |
Transynther/x86/_processed/NONE/_st_/i7-7700_9_0xca_notsx.log_21829_678.asm | ljhsiun2/medusa | 9 | 125790 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r15
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x8690, %rdx
clflush (%rdx)
nop
nop
cmp %r13, %r13
mov $0x6162636465666768, %rbp
movq %rbp, %xmm7
movups %xmm7, (%rdx)
nop
sub $42121, %rdi
lea addresses_WC_ht+0x11370, %rbx
n... |
Aysalia DOS/Source/Menu/AyDosMnu.asm | danielmarschall/aysalia | 0 | 125792 |
; Aysalia DOS Launcher
; Launches aydos1.gam and aydos2.gam
; Revision 2018-12-07
; (C) 2018 <NAME>, ViaThinkSoft
.model small
.stack 100h
; -------------------------------------------------------
.data
exename1 db "AYDOS1.GAM", 0
exename2 db "AYDOS2.GAM", 0
cmdargs db 0, '', 0Dh
... |
oeis/077/A077903.asm | neoneye/loda-programs | 11 | 125793 | <filename>oeis/077/A077903.asm
; A077903: Expansion of (1-x)^(-1)/(1 + x - x^2 + 2*x^3).
; Submitted by <NAME>(s1)
; 1,0,2,-3,6,-12,25,-48,98,-195,390,-780,1561,-3120,6242,-12483,24966,-49932,99865,-199728,399458,-798915,1597830,-3195660,6391321,-12782640,25565282,-51130563,102261126,-204522252,409044505,-818089008,163... |
oeis/079/A079705.asm | neoneye/loda-programs | 11 | 125794 | <gh_stars>10-100
; A079705: 3p^2 where p runs through the primes.
; Submitted by <NAME>(s3)
; 12,27,75,147,363,507,867,1083,1587,2523,2883,4107,5043,5547,6627,8427,10443,11163,13467,15123,15987,18723,20667,23763,28227,30603,31827,34347,35643,38307,48387,51483,56307,57963,66603,68403,73947,79707,83667,89787,96123,98283,... |
arrayAndBubbleSort.asm | darrenyip/MipsCode | 0 | 125795 | <gh_stars>0
.data
hey: .asciiz "\n\nEnter size of array: " # Prompt asking for user input
enterNnumber: .asciiz "Please enter the number: "
print: .asciiz "\nthe sorted array: "
space: .asciiz " "
.text
main:
####### Print : Enter size of array ###########
li $v0, 4
la $a0, hey
syscall
addi $v0, $0, 5
syscall
... |
src/kernel.asm | SuperFola/project-E | 16 | 125796 | <filename>src/kernel.asm<gh_stars>10-100
bits 16
org 0
[map all kernel.map]
start:
jmp main
%macro check_command 3
mov di, %1
call %2
jc %3
mov si, buffer
%endmacro
%include "std/stdio.asm"
%include "std/string.asm"
%include "std/video.asm"
%include "std/readdisk.asm"
data:
version db 'v0.3... |
programs/oeis/174/A174806.asm | neoneye/loda | 22 | 125797 | <reponame>neoneye/loda<filename>programs/oeis/174/A174806.asm<gh_stars>10-100
; A174806: a(n)=n-floor(sqrt(n))^2-floor(sqrt(n-floor(sqrt(n))^2))^2; Difference between n and sum of two largest distinct squares <= n.
; 0,0,0,1,0,0,1,2,0,0,0,1,2,0,1,2,0,0,1,2,0,1,2,3,4,0,0,1,2,0,1,2,3,4,0,1,0,0,1,2,0,1,2,3,4,0,1,2,3,0,0,1... |
programs/oeis/290/A290479.asm | neoneye/loda | 22 | 125798 | ; A290479: Product of nonprime squarefree divisors of n.
; 1,1,1,1,1,6,1,1,1,10,1,6,1,14,15,1,1,6,1,10,21,22,1,6,1,26,1,14,1,27000,1,1,33,34,35,6,1,38,39,10,1,74088,1,22,15,46,1,6,1,10,51,26,1,6,55,14,57,58,1,27000,1,62,21,1,65,287496,1,34,69,343000,1,6,1,74,15,38,77,474552,1,10,1,82,1,74088,85,86,87,22,1,27000,91,46,9... |
programs/oeis/099/A099802.asm | neoneye/loda | 22 | 125799 | <gh_stars>10-100
; A099802: Bisection of A000720.
; 1,2,3,4,4,5,6,6,7,8,8,9,9,9,10,11,11,11,12,12,13,14,14,15,15,15,16,16,16,17,18,18,18,19,19,20,21,21,21,22,22,23,23,23,24,24,24,24,25,25,26,27,27,28,29,29,30,30,30,30,30,30,30,31,31,32,32,32,33,34,34,34,34,34
mov $2,$0
add $2,1
mov $3,$0
lpb $2
mov $0,$3
sub $2,1
... |
kernel.asm | jhunkeler/minos | 1 | 125800 | <reponame>jhunkeler/minos
bits 16
jmp kmain
%include "constants.asm"
%include "types.asm"
%include "string.asm"
%include "isr.asm"
%include "disk.asm"
%include "console.asm"
%include "stdio.asm"
%include "terminal.asm" ; eventually will become its own "program"
kmain:
cli ; disable interrupts
mov ax, cs ; get... |
oeis/174/A174783.asm | neoneye/loda-programs | 11 | 125801 | <filename>oeis/174/A174783.asm
; A174783: Expansion of (1+2x-sqrt(1-4x^2))/(2(1-x^2)*sqrt(1-4x^2)).
; 0,1,1,3,4,9,14,29,49,99,175,351,637,1275,2353,4707,8788,17577,33098,66197,125476,250953,478192,956385,1830270,3660541,7030570,14061141,27088870,54177741,104647630,209295261,405187825,810375651,1571990935,3143981871,610... |
unused/develop/obj/tileset_7_1.asm | pau-tomas/gbvm | 33 | 125802 | ;--------------------------------------------------------
; File Created by SDCC : free open source ANSI-C Compiler
; Version 4.1.4 #12246 (Mac OS X x86_64)
;--------------------------------------------------------
.module tileset_7_1
.optsdcc -mgbz80
;--------------------------------------------------------
; Publ... |
Engine Hacks/Skill System/Teq Skills/FE8-Capture/FE8-Capture/Capture_Usability_Func.asm | sme23/MekkahRestrictedHackComp1 | 1 | 125803 | .thumb
.org 0x0
.equ SkillTester, Fill_Capture_Range_Map+4
.equ CaptureID, SkillTester+4
push {r4-r6,r14}
ldr r0,CurrentCharPtr
ldr r0,[r0]
ldr r1,[r0,#0xC] @status word
mov r2,#0x50 @is rescuing + has moved
tst r1,r2
bne RetFalse
mov r2,#0x80
lsl r2,#0x4 @is in ballista
tst r1,r2
bne RetFalse
mov r5... |
libsrc/_DEVELOPMENT/adt/p_forward_list/z80/asm_p_forward_list_clear.asm | jpoikela/z88dk | 640 | 125804 | <filename>libsrc/_DEVELOPMENT/adt/p_forward_list/z80/asm_p_forward_list_clear.asm
; ===============================================================
; Dec 2013
; ===============================================================
;
; void p_forward_list_clear(p_forward_list_t *list)
;
; Clear list to empty.
;
; ==========... |
oeis/183/A183682.asm | neoneye/loda-programs | 11 | 125805 | ; A183682: Number of (n+1) X 3 binary arrays with every 2 X 2 subblock nonsingular.
; Submitted by <NAME>(s4)
; 12,32,80,208,528,1360,3472,8912,22800,58448,149648,383440,982032,2515792,6443920,16507088,42282768,108311120,277442192,710686672,1820455440,4663202128,11945023888,30597832400,78377927952,200769257552,51428096... |
oeis/132/A132868.asm | neoneye/loda-programs | 11 | 125806 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A132868: a(n) = 3*a(n-1) - a(n-3) + 3*a(n-4), n > 3.
; Submitted by <NAME>
; 1,3,7,20,60,182,547,1641,4921,14762,44286,132860,398581,1195743,3587227,10761680,32285040,96855122,290565367,871696101,2615088301,7845264902,23535794706,70607384120,211822152361,635466457083,19... |
coverage/IN_CTS/0580-COVERAGE-constant-folding-362/work/variant/1_spirv_asm/shader.frag.asm | asuonpaa/ShaderTests | 0 | 125807 | <filename>coverage/IN_CTS/0580-COVERAGE-constant-folding-362/work/variant/1_spirv_asm/shader.frag.asm
; SPIR-V
; Version: 1.0
; Generator: Khronos Glslang Reference Front End; 10
; Bound: 47
; Schema: 0
OpCapability Shader
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical... |
oeis/319/A319852.asm | neoneye/loda-programs | 11 | 125808 | <filename>oeis/319/A319852.asm<gh_stars>10-100
; A319852: Difference between 3^n and the product of primes less than or equal to n.
; Submitted by <NAME>
; 0,2,7,21,75,213,699,1977,6351,19473,58839,174837,529131,1564293,4752939,14318877,43016691,128629653,386909979,1152561777,3477084711,10450653513,31371359919,93920085... |
iod/con2/ql/palt.asm | olifink/smsqe | 0 | 125809 | <filename>iod/con2/ql/palt.asm<gh_stars>0
; Set pallete mapw v0.00 1991 <NAME>
;
; Registers:
; Entry Exit
; D0 0
; D1 First colour =D2
; D2 Last (+1) colour preserced
; A0 CDB preserved
; A1 Palette list updated
; A2/A5 smashed
;
; All other registers preserved
;
section con
;
include '... |
1571/64tass/iodef.asm | silverdr/assembly | 23 | 125811 | ;i/o definitions
unlsn =$3f ; unlisten command
untlk =$5f ; untalk command
notrdy =$0 ; not ready
eoiout =$80 ; talk with eoi
eoi =$08 ; eoi
eoisnd =$08 ; not(eoi) to send
rdytlk =$88 ; talk no eoi
rdylst =$1 ; ready to listen
; random chnrdy
rndrdy =rdytlk+rdylst
; random w/ ... |
Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0xca_notsx.log_21829_498.asm | ljhsiun2/medusa | 9 | 125812 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r8
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x12da7, %r11
nop
nop
nop
cmp %rbp, %rbp
mov (%r11), %r8d
nop
nop
xor $15504, %r13
lea addresses_WT_ht+0x5ea7, %rsi
lea addresses_WC_ht+0xefd9, %rdi
nop
nop
nop
and $10616, %rbx... |
CS218/summer17/Assignment05/ast05.asm | 3SUM/monalisa | 5 | 125813 | <reponame>3SUM/monalisa
; <NAME>
; Assignment #5
; Section #1002
; -----
; This program will find the volume and surface area minimums, maximums, middle values, sums, and averages of a list of numbers.
; *****************************************************************
section .data
; -----
; Define constants
NUL... |
oeis/141/A141946.asm | neoneye/loda-programs | 11 | 125814 | ; A141946: Primes congruent to 24 mod 25.
; Submitted by <NAME>
; 149,199,349,449,499,599,1049,1249,1399,1499,1549,1699,1949,1999,2099,2399,2549,2699,2749,2999,3049,3299,3449,3499,4049,4099,4349,4549,4649,4799,4999,5099,5399,5449,5749,5849,6199,6299,6449,6599,6899,6949,7349,7499,7549,7649,7699,7949,8599,8699,8849,8999,... |
kernel/arch/x86_64/cpu/smpboot16.asm | racing19th/MiraiOS | 12 | 125816 |
BITS 16
jmp short start
infoStart:
nxEnabled: dw 0
pml4tAddr: dd 0
contAddr: dq 0
start:
cli
mov ax, cs
mov ds, ax
mov es, ax
mov ss, ax
mov eax, 0xA0
mov cr4, eax ;enable pae and pge
mov eax, [pml4tAddr]
mov cr3, eax ;put pml4t addr in cr3
mov ecx, 0xC0000080
rdmsr
or eax, (1 << 8) | 1 ;set LME ... |
oeis/266/A266379.asm | neoneye/loda-programs | 11 | 125817 | <reponame>neoneye/loda-programs
; A266379: Binary representation of the n-th iteration of the "Rule 21" elementary cellular automaton starting with a single ON (black) cell.
; Submitted by <NAME>(s2)
; 1,11,0,1111111,0,11111111111,0,111111111111111,0,1111111111111111111,0,11111111111111111111111,0,111111111111111111111... |
programs/oeis/058/A058060.asm | neoneye/loda | 22 | 125818 | <filename>programs/oeis/058/A058060.asm
; A058060: Number of distinct prime factors of d(n), the number of divisors of n.
; 0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,2,1,1,1,1,1,1,1,2,1,1,2,1,1,1,1,2,1,1,1,2,1,1,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,2,1,2,... |
programs/oeis/040/A040379.asm | neoneye/loda | 22 | 125819 | <filename>programs/oeis/040/A040379.asm
; A040379: Continued fraction for sqrt(399).
; 19,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38
mov $1,$0
cmp $0,0
sub $1,$0
gcd $1,2
add $1... |
src/draw/tiescreen.asm | daullmer/tic-tac-toe | 1 | 125820 | tiescreen:
# Create a tie screen
# Inputs: None
# Outputs: None
# Save the callee save registers on the stack
addi sp sp -20
sw ra (sp)
sw a1, 4 (sp)
sw a2, 8 (sp)
sw a3, 12 (sp)
sw a5, 16 (sp)
# Clear the screen
jal blackscreen
# Start coordinates
li a1 86
li a2 118
li a3 0xffffff
# Write a 'T' to... |
programs/oeis/256/A256910.asm | neoneye/loda | 22 | 125821 | ; A256910: Trace of the enhanced triangular-number representation of n.
; 0,1,2,3,1,2,6,1,2,3,10,1,2,3,1,15,1,2,3,1,2,21,1,2,3,1,2,6,28,1,2,3,1,2,6,1,36,1,2,3,1,2,6,1,2,45,1,2,3,1,2,6,1,2,3,55,1,2,3,1,2,6,1,2,3,10,66,1,2,3,1,2,6,1,2,3,10,1,78,1,2,3,1,2,6,1,2,3,10,1,2,91,1,2,3,1,2,6,1,2
lpb $0
mov $1,$0
trn $0,3
... |
projects/Kirbys_Dream_Land_2.windfish/disassembly/bank_00.asm | jverkoey/awaken | 68 | 125822 | SECTION "ROM Bank 00", ROM0[$00]
RST_0000:
nop
nop
nop
nop
nop
nop
nop
nop
RST_0008:
nop
nop
nop
nop
nop
nop
nop
nop
RST_0010:
ld b, b
nop
nop
nop
nop
nop
nop
nop
RST_0018:
nop
nop
nop
nop
nop
n... |
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48_notsx.log_10171_1097.asm | ljhsiun2/medusa | 9 | 125825 | <filename>Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48_notsx.log_10171_1097.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r15
push %r9
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x1aba1, %rsi
lea addresses_WT_ht+0xbe1, %rdi
nop
nop
sub $55102, %r15
mov $25, %rcx
r... |
src/util/oli/wm/liact.asm | olifink/qspread | 0 | 125826 | <gh_stars>0
; run an loose item action routine
include win1_mac_oli
include win1_keys_wwork
include win1_keys_wstatus
section utility
xdef xwm_liact
;+++
; run an loose item action routine
;
; Entry Exit
; d1.w item number
;... |
programs/oeis/293/A293838.asm | neoneye/loda | 22 | 125828 | <filename>programs/oeis/293/A293838.asm
; A293838: "Look once to the left" sequence starting with 1,2 (see comment).
; 1,2,1,1,2,1,2,1,1,1,2,1,1,2,1,2,1,1,2,1,1,2,1,2,1,1,1,2,1,1,2,1,2,1,2,1,1,2,1,2,1,1,1,2,1,1,2,1,2,1,1,2,1,1,2,1,2,1,1,1,2,1,1,2,1,1,2,1,1,2,1,2,1,1,1,2,1,1,2,1,2,1,1,2,1,1,2,1,2,1,1,1,2,1,1,2,1,2,1,2
... |
oeis/037/A037499.asm | neoneye/loda-programs | 11 | 125829 | <filename>oeis/037/A037499.asm
; A037499: Base-6 digits are, in order, the first n terms of the periodic sequence with initial period 1,0,2.
; Submitted by <NAME>(s2)
; 1,6,38,229,1374,8246,49477,296862,1781174,10687045,64122270,384733622,2308401733,13850410398,83102462390,498614774341,2991688646046,17950131876278,1077... |
reference/lab1/assembly/examples/watcom/prime2.asm | Leser2020/6.828 | 0 | 125830 |
;
; file: prime2.asm
; This file contains the assembly code to the
; _find_primes procedure
;
segment _TEXT public align=1 class=CODE use32
global _find_primes
;
; function find_primes
; finds the indicated number of primes
; Parameters:
; array - array to hold primes
; n_find - how many primes to find... |
newboot/oldconfig.asm | jaredwhitney/os3 | 5 | 125831 | ; ; ; ; ; ; ; ; ; ; ; ; ;
; Os3 Boot Constants ;
; ; ; ; ; ; ; ; ; ; ; ; ;
S2_CODE_LOC equ 0x8000 ; Where the second stage bootloader and kernel are loaded to.
DISPLAY_MODE equ MODE_GRAPHICS ; Which display mode to boot into (MODE_TEXT or MODE_GRAPHICS).
DESIRED_XRES equ 1366 ; The width of the main display.
D... |
Project_2/min_max_int.asm | Lexxi-Smith/Computer-Organization | 0 | 125832 | # Sample_program.asm
# This is a program that goes through an array and find the highest and lowest numbers
.data
small_str: .asciiz "The smallest number is: " #string printout for smallest number
big_str: .asciiz "\nThe largest number is: " #string printout for largest number
arr: .word 5, 7, 12, 3, 4... |
programs/oeis/190/A190367.asm | neoneye/loda | 22 | 125833 | ; A190367: n + [n*r/u] + [n*s/u] + [n*t/u]; r=sqrt(2), s=1/r, t=sqrt(3), u=1/t.
; 7,14,22,29,38,45,53,60,69,76,83,91,98,107,114,122,129,138,145,152,160,167,176,183,191,198,207,214,222,229,236,245,252,260,267,276,283,291,298,305,314,321,329,336,345,352,360,367,376,383,390,398,405,414,421,429,436,445,452,459,467,474,483,... |
smsq/smsq/base_qpc.asm | olifink/smsqe | 0 | 125834 | <filename>smsq/smsq/base_qpc.asm
; Initialise SMSQ V2.02 1994 <NAME>
section base
xdef smsq_base
xref init_vec ; initialise vector area
xref init_trp ; initialise traps
xref init_sys ; initialise system variables
xref init_exrv ; initialise exception redir vector
xref init_sbst ; initialise S... |
unittests/32Bit_ASM/PrimaryGroup/5_FF_02_3.asm | cobalt2727/FEX | 628 | 125836 | <reponame>cobalt2727/FEX<gh_stars>100-1000
%ifdef CONFIG
{
"RegData": {
"RAX": "0x41424344"
},
"MemoryRegions": {
"0x80000000": "4096"
},
"Mode": "32BIT"
}
%endif
mov edi, 0xe0000000
lea esp, [edi + 8 * 4]
; Before we do anything, copy the code to an address that can be zexted
mov eax, dword [.inst_... |
Transynther/x86/_processed/AVXALIGN/_ht_zr_/i9-9900K_12_0xca_notsx.log_6_1728.asm | ljhsiun2/medusa | 9 | 125837 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r8
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x16cc4, %rax
clflush (%rax)
nop
nop
sub %r8, %r8
movups (%rax), %xmm6
vpextrq $0, %xmm6, %rbp
nop
nop
nop
nop
add $49227, %r14
lea addresses_A_ht+0x19c... |
programs/oeis/188/A188376.asm | karttu/loda | 0 | 125839 | ; A188376: Positions of 1 in A188374; complement of A188375.
; 1,4,7,8,11,14,15,18,21,24,25,28,31,32,35,38,41,42,45,48,49,52,55,56,59,62,65,66,69,72,73,76,79,82,83,86,89,90,93,96,97,100,103,106,107,110,113,114,117,120,123,124,127,130,131,134,137,140,141,144,147,148,151,154,155,158,161,164,165,168,171,172,175,178,181,18... |
dv3/qw1/fsel.asm | olifink/smsqe | 0 | 125840 | <gh_stars>0
; DV3 MSDOS Format Select V3.01 1993 <NAME>
; adapted for qubide (wl) 2017 3.01
section dv3
xdef qw1_fsel
include 'dev8_keys_err'
;+++
; DV3 Format Select
;
; d0 cr format type / error code
; d7 c p drive ID / number
; a0 c p pointer to physical format table
; a3 c p pointer to linka... |
exercises/x86-64-assembly-2-a/.meta/start/2/x86_64_assembly_2_a.example.asm | ee7/exercism-research_experiment_1 | 8 | 125841 | extern isalpha
extern isalnum
section .text
global str_isidentifier
str_isidentifier:
push rbx
mov rbx, rdi
movzx edi, byte [rbx]
call isalpha wrt ..plt
test eax, eax
jne .loop_start
cmp byte [rbx], '_'
jne .return_false
add rbx, 1
.loop_start:
movzx edi, byte [rbx]
call isa... |
26_1.asm | elder-george/black_book_vga | 2 | 125842 | <filename>26_1.asm
; Program to illustrate operation of write mode 3 of the VGA.
; Draws 8x8 characters at arbitrary locations without disturbing
; the background, using VGA's 8x8 ROM font. Designed
; for use with modes 0Dh, 0Eh, 0Fh, 10h, and 12h.
; Runs only on VGAs (in Models 50 & up and IBM Display Adapter
; a... |
src/spread/variable.asm | olifink/qspread | 0 | 125843 | <filename>src/spread/variable.asm
* Spreadsheet V0.01
* - variable evaluation
section prog
include win1_keys_wman
include win1_keys_wwork
include win1_keys_wstatus
include win1_keys_err
include win1_mac_oli
include win1_spread_keys
xdef var_eval
xdef var_val
xdef var_isv ; is a va... |
base/mvdm/wow16/kernel31/ldseg.asm | npocmaka/Windows-Server-2003 | 17 | 125844 | <filename>base/mvdm/wow16/kernel31/ldseg.asm<gh_stars>10-100
TITLE LDSEG - SegAlloc procedure
.xlist
include kernel.inc
include newexe.inc
include tdb.inc
include protect.inc ; Handle_To_Sel
.list
NSHUGESEG = NSKCACHED ; not first seg of huge segment
; A huge segment ... |
programs/oeis/249/A249734.asm | jmorken/loda | 1 | 125845 | <filename>programs/oeis/249/A249734.asm<gh_stars>1-10
; A249734: Even bisection of A003961: Replace in 2n each prime factor p(k) with prime p(k+1).
; 3,9,15,27,21,45,33,81,75,63,39,135,51,99,105,243,57,225,69,189,165,117,87,405,147,153,375,297,93,315,111,729,195,171,231,675,123,207,255,567,129,495,141,351,525,261,159,1... |
oeis/097/A097300.asm | neoneye/loda-programs | 11 | 125846 | <gh_stars>10-100
; A097300: Tenth column (m=9) of (1,6)-Pascal triangle A096956.
; Submitted by <NAME>
; 6,55,280,1045,3190,8437,20020,43615,88660,170170,311168,545870,923780,1514870,2416040,3759074,5720330,8532425,12498200,18007275,25555530,35767875,49424700,67492425,91158600,121872036,161388480,211822380
mov $1,$0
a... |
programs/oeis/331/A331943.asm | karttu/loda | 1 | 125847 | <filename>programs/oeis/331/A331943.asm<gh_stars>1-10
; A331943: a(n) = n^2 + 1 - ceiling((n + 2)/3).
; 1,3,8,15,23,34,47,61,78,97,117,140,165,191,220,251,283,318,355,393,434,477,521,568,617,667,720,775,831,890,951,1013,1078,1145,1213,1284,1357,1431,1508,1587,1667,1750,1835,1921,2010,2101,2193,2288,2385,2483,2584
mov ... |
programs/oeis/036/A036789.asm | karttu/loda | 0 | 125848 | <reponame>karttu/loda<gh_stars>0
; A036789: a(n) = Sum_{i=0..n} floor((2*i + 2)/(n - i + 1)).
; 2,5,8,12,17,20,26,31,36,41,48,52,59,66,71,76,86,89,98,105,110,117,126,132,139,146,155,160,171,174,184,193,198,207,218,221,230,239,248,254,265,270,279,290,297,302,315,320,332,339,346,355,366
mov $5,$0
mul $0,2
mov $1,2
mov $... |
data/mapHeaders/pewtermart.asm | adhi-thirumala/EvoYellow | 16 | 125850 | PewterMart_h:
db MART ; tileset
db PEWTER_MART_HEIGHT, PEWTER_MART_WIDTH ; dimensions (y, x)
dw PewterMartBlocks, PewterMartTextPointers, PewterMartScript ; blocks, texts, scripts
db $00 ; connections
dw PewterMartObject ; objects
|
data/mapHeaders/Route15Gate2F.asm | AmateurPanda92/pokemon-rby-dx | 9 | 125851 | Route15Gate2F_h:
db GATE ; tileset
db ROUTE_15_GATE_2F_HEIGHT, ROUTE_15_GATE_2F_WIDTH ; dimensions (y, x)
dw Route15Gate2F_Blocks ; blocks
dw Route15Gate2F_TextPointers ; texts
dw Route15Gate2F_Script ; scripts
db 0 ; connections
dw Route15Gate2F_Object ; objects
|
APOPTOSIS_SHELLCODE/apoptosis.asm | AlexRuzin/n0day | 25 | 125852 | .686
.model flat,stdcall
option casemap:none
assume fs:nothing
include C:\masm32\include\windows.inc
include C:\masm32\include\kernel32.inc
includelib C:\masm32\lib\kernel32.lib
BREAK equ int 3
APOP_STACK_SIZE equ 256
APOP_STACK_INPUT equ... |
oeis/157/A157826.asm | neoneye/loda-programs | 11 | 125853 | ; A157826: 103680000n^2 - 194428800n + 91152001.
; 403201,117014401,440985601,972316801,1711008001,2657059201,3810470401,5171241601,6739372801,8514864001,10497715201,12687926401,15085497601,17690428801,20502720001,23522371201,26749382401,30183753601,33825484801,37674576001,41731027201,45994838401,50466009601,5514454080... |
programs/oeis/198/A198084.asm | neoneye/loda | 22 | 125854 | <filename>programs/oeis/198/A198084.asm
; A198084: Ceiling(n*sqrt(7)).
; 0,3,6,8,11,14,16,19,22,24,27,30,32,35,38,40,43,45,48,51,53,56,59,61,64,67,69,72,75,77,80,83,85,88,90,93,96,98,101,104,106,109,112,114,117,120,122,125,127,130,133,135,138,141,143,146,149,151,154,157,159,162,165,167,170,172,175,178,180,183,186,188,1... |
oeis/163/A163191.asm | neoneye/loda-programs | 11 | 125855 | <filename>oeis/163/A163191.asm
; A163191: a(n) = Sum_{k=0..n} (-1)^(n-k)*C(n,k)*sigma(n,k) for n>0 with a(0)=1.
; Submitted by <NAME>
; 1,0,1,8,82,1024,15690,279936,5771363,134218240,3487832978,100000000000,3138673052884,106993205379072,3937454749863386,155568096631586816,6568441588686506948,295147905179352825856,14063... |
Challenge216/Easy/TexasHoldEmDeal.asm | shwnchpl/redditDailyProgrammer | 1 | 125857 | <gh_stars>1-10
; x86_64 assembly using libc
; To assemble and link (on 64-bit Linux), use:
; nasm -f elf64 ./TexasHoldEmDeal.asm
; gcc -o ./TexasHoldEmDeal ./TexasHoldEmDeal.o
; Solution to the problem posted here: https://www.reddit.com/r/dailyprogrammer/comments/378h44/20150525_challenge_216_easy_texas_hold_em_1_of_3... |
oeis/107/A107420.asm | neoneye/loda-programs | 11 | 125859 | <filename>oeis/107/A107420.asm
; A107420: a(n) = C(n+5,5)*C(n+8,8).
; 1,54,945,9240,62370,324324,1387386,5096520,16563690,48668620,131405274,330142176,779502360,1743502320,3718285560,7601828256,14966099379,28482196050,52568991475,94362067800,165133618650,282337298100,472506635250,775303893000,1249100716500,197857553493... |
vhdl-uprocessor/programs/jrl_op_test.asm | hadryansalles/random-projects | 3 | 125860 | <reponame>hadryansalles/random-projects<filename>vhdl-uprocessor/programs/jrl_op_test.asm
MOV 10, $1
MOV 20, $2
JRL add # chamando a funcao
MOV 30, $3
MOV 40, $4
MOV 50, $5
JR fim
add:
ADD $2, $1 # $1 = $1 + $2
JMP 0[$7] # retorna da funcao
fim:
|
libsrc/_DEVELOPMENT/math/float/math32/lm32/c/sccz80/ceil.asm | Frodevan/z88dk | 640 | 125861 |
SECTION code_fp_math32
PUBLIC ceil
EXTERN m32_ceil_fastcall
defc ceil = m32_ceil_fastcall
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _ceil
EXTERN cm32_sdcc_ceil
defc _ceil = cm32_sdcc_ceil
ENDIF
|
CNC-64/BitBash.asm | Jeff-Birt/CNC-64 | 0 | 125862 | <reponame>Jeff-Birt/CNC-64
;===============================================================================
;* Bit Bashing User Port Test Program *
;===============================================================================
;============================================... |
programs/oeis/051/A051941.asm | neoneye/loda | 22 | 125863 | ; A051941: Truncated triangular pyramid numbers: a(n) = (n-7)*(n^2 + 10*n - 108)/6, n >= 8.
; 6,21,46,82,130,191,266,356,462,585,726,886,1066,1267,1490,1736,2006,2301,2622,2970,3346,3751,4186,4652,5150,5681,6246,6846,7482,8155,8866,9616,10406,11237,12110,13026,13986,14991,16042,17140,18286,19481
mov $3,9
lpb $0
sub ... |
libsrc/graphics/nc/fill.asm | jpoikela/z88dk | 640 | 125864 | <reponame>jpoikela/z88dk
; Graphics library for the Amstrad NC
;
; fill.asm - Stefano, 05/2017
;
INCLUDE "graphics/grafix.inc"
SECTION code_clib
PUBLIC fill
PUBLIC _fill
EXTERN w_pixeladdress
EXTERN l_cmp
EXTERN swapgfxbk
EXTERN swapgfxbk1
.fill
._fill
pop bc
pop de ; y
pop hl ... |
KernelLand/Kernel/arch/x86_64/start32.asm | thepowersgang/acess2 | 58 | 125865 | <gh_stars>10-100
;
; Acess2 x86_64 port
;
%include "arch/x86_64/include/common.inc.asm"
[BITS 32]
;KERNEL_BASE equ 0xFFFF800000000000
KERNEL_BASE equ 0xFFFFFFFF80000000
[section .multiboot]
mboot:
; Multiboot macros to make a few lines later more readable
MULTIBOOT_PAGE_ALIGN equ 1<<0
MULTIBOOT_MEMORY_INFO equ 1... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.