max_stars_repo_path stringlengths 3 255 | max_stars_repo_name stringlengths 5 116 | max_stars_count int64 0 107k | id stringlengths 1 7 | content stringlengths 63 1.05M |
|---|---|---|---|---|
src/libs/math/logn.asm | QFSW/2048x86_64 | 6 | 204331 | PUBLIC logn
.code
; finds the integer log of a number
; RCX = num
; RDX = base
; RAX = result
logn PROC
MOV R8, -1 ; result ctr
MOV R9, RDX ; base
MOV RAX, RCX
lloop:
MOV RDX, 0
DIV R9
INC R8
CMP RAX, 0
JG lloop
MOV RAX, R8
RET
logn ENDP
END |
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_59_1237.asm | ljhsiun2/medusa | 9 | 204332 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r14
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x11b45, %rsi
xor %r14, %r14
mov $0x6162636465666768, %rbx
movq %rbx, (%rsi)
nop
nop
nop
dec %r13
lea addresses_WC_ht+0x12645, %rsi
lea addresses_WC_ht+0x18c45, ... |
Appl/GeoWrite/Document/documentPageSetup.asm | steakknife/pcgeos | 504 | 204334 | COMMENT @----------------------------------------------------------------------
Copyright (c) Berkeley Softworks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: GeoWrite
FILE: documentPageSetup.asm
REVISION HISTORY:
Name Date Description
---- ---- -----------
Tony 3/92 Initial version
DES... |
next_level/demosrc/s_beyondimagination.asm | viznut/demoscene | 14 | 204337 | <filename>next_level/demosrc/s_beyondimagination.asm
;,; lyrics_beyondimagination .withinpagefrom=lyrics
;,; <- lyrics
!byte $1b,$31 ; BEY
!byte $00,$22,$19,$1d ; OND
!byte $21 ; I
!byte $28,$43 ; MA
!byte $29,$1d,$24,$21 ; GI
!byte $22,$23,$21 ; NA
!byte $24,$20,$02 ; TION
!byte $1b,$51 ; BEY
!b... |
programs/oeis/047/A047202.asm | karttu/loda | 1 | 204338 | <filename>programs/oeis/047/A047202.asm
; A047202: Numbers that are congruent to {2, 3, 4} mod 5.
; 2,3,4,7,8,9,12,13,14,17,18,19,22,23,24,27,28,29,32,33,34,37,38,39,42,43,44,47,48,49,52,53,54,57,58,59,62,63,64,67,68,69,72,73,74,77,78,79,82,83,84,87,88,89,92,93,94,97,98,99,102,103,104,107,108
mov $1,$0
div $0,3
mul $0... |
oeis/292/A292995.asm | neoneye/loda-programs | 11 | 204340 | <filename>oeis/292/A292995.asm
; A292995: Sum of digits of 3^n (A004166) divided by 9.
; Submitted by <NAME>
; 0,0,1,1,1,1,2,2,2,3,3,3,2,3,5,4,3,3,5,4,5,3,5,6,6,7,7,9,8,8,7,9,7,8,11,9,9,10,10,9,10,11,10,12,10,11,12,14,13,12,16,13,13,15,12,10,10,12,14,13,11,15,17,17,16,15,13,18,17,17,16,20,18,17,19,20,17,18,17,21,17,21,... |
contaBitUgualiRICORSIVA.asm | edoardottt/Asm_mars_examples | 21 | 204341 | .data
.text
.globl main
main:
#lettura X in input
li $v0,5
syscall
move $t0,$v0
addi $v0,$zero,0 #azzero $v0
#lettura Y in input
li $v0,5
syscall
move $t1,$v0
jal conta
#stampa
li $v0,1
move $a0,$t3
syscall
li $v0,10
syscall
conta:
beq $t0,0,fine
beq $t1,0,fine
subi $sp,$sp,4
sw $ra,0... |
oeis/304/A304723.asm | neoneye/loda-programs | 11 | 204342 | ; A304723: a(n) = 5^(n-1)*(3^n - 1)/2.
; Submitted by <NAME>
; 0,1,20,325,5000,75625,1137500,17078125,256250000,3844140625,57664062500,864970703125,12974609375000,194619384765625,2919291992187500,43789385986328125,656840820312500000,9852612457275390625,147789187622070312500,2216837818145751953125,3325256729125976562500... |
iod/con2/ptr/wsave.asm | olifink/smsqe | 0 | 204343 | ; Window save / restore V 2.01 1999 <NAME>
;
; 2005-11-11 2.01 Uses line increment from CDB (MK)
;
section driver
;
xdef pt_wsave
xdef pt_wsavh
xdef pt_wsavo
xdef pt_wrstm
xdef pt_wrest
;
xref pt_hides
xref pt_mblock
xref.s pt.spxlw ; shift pixel to long word
xref.s pt.rpxlw ; round up pixel to long w... |
Data/Elements2.asm | vcte/eclectic | 1 | 204345 | ; ===============================================================
; Element Data (26 - 50)
; ===============================================================
; ---------------------------------------------------------------
; Element 26
; ---------------------------------------------------------------
Iron:
.db "Fe", ... |
dv3/qxl/fd/ckwp.asm | olifink/smsqe | 0 | 204346 | ; DV3 QXL Floppy Disk Check Write Protect V3.00 1993 <NAME>
section dv3
xdef fd_ckwp
;+++
; Check write protect
;
;
; a3 c p pointer to linkage block
; a4 c p pointer to drive definition
;
; all registers except d0 preserved
;
; status standard
;
;---
fd_ckwp
moveq #0,d0
rts
end
|
EE2016/LAB 1/LargestNumber.asm | HR-1-1/CourseWork | 0 | 204347 | <filename>EE2016/LAB 1/LargestNumber.asm
;
; LargestNumber.asm
;
; Created: 9/1/2021 3:08:55 PM
; Author : Harish
;
.CSEG
LDI ZL, LOW(NUM<<1)
LDI ZH, HIGH(NUM<<1)
LDI XL, 0x60
LDI XH, 0x00
LDI R18, 2*(abc - NUM) - 0x01 ; Counter Variable set to N-1 (where N numbers are to be compared)
LPM R16, Z+
AG... |
Projects/PJZ2/StretchVert/SectionData_PublicData.asm | jonathanbennett73/amiga-pjz-planet-disco-balls | 21 | 204349 | *****************************************************************************
* Included at the end of the code section (for (pc) data)
*****************************************************************************
rsreset
CTRL_SINE_OFFSET rs.w 1
CTRL_SINE_SPEED rs.w 1
CTRL_SINE_FREQ rs.w 1
CTRL_SINE_SPEEDNEW rs... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_24.asm | ljhsiun2/medusa | 9 | 204350 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r14
push %r15
push %rbp
push %rdi
push %rsi
lea addresses_WC_ht+0x9813, %rsi
nop
xor $37750, %r12
mov $0x6162636465666768, %r10
movq %r10, %xmm1
and $0xffffffffffffffc0, %rsi
vmovaps %ymm1, (%rsi)
cmp %r10, %r10
lea addresses_D_ht+0x129fd, %rbp
cmp ... |
programs/oeis/101/A101621.asm | neoneye/loda | 22 | 204351 | ; A101621: Initial decimal digit of n^11.
; 1,2,1,4,4,3,1,8,3,1,2,7,1,4,8,1,3,6,1,2,3,5,9,1,2,3,5,8,1,1,2,3,5,7,9,1,1,2,3,4,5,7,9,1,1,1,2,3,3,4,6,7,9,1,1,1,2,2,3,3,4,5,6,7,8,1,1,1,1,1,2,2,3,3,4,4,5,6,7,8,9,1,1,1,1,1,2,2,2,3,3,3,4,5,5,6,7,8,8,1
add $0,1
pow $0,11
lpb $0
mov $1,$0
div $0,10
lpe
mov $0,$1
|
libsrc/_DEVELOPMENT/inttypes/c/sdcc_iy/_imaxdiv_.asm | jpoikela/z88dk | 640 | 204352 |
; void _imaxdiv_(imaxdiv_t *md, intmax_t numer, intmax_t denom)
SECTION code_clib
SECTION code_inttypes
PUBLIC __imaxdiv_
EXTERN __lldiv_
defc __imaxdiv_ = __lldiv_
|
oeis/162/A162275.asm | neoneye/loda-programs | 11 | 204353 | <filename>oeis/162/A162275.asm
; A162275: a(n) = 10*a(n-1) - 22*a(n-2) for n > 1; a(0) = 2, a(1) = 13.
; Submitted by <NAME>
; 2,13,86,574,3848,25852,173864,1169896,7873952,53001808,356791136,2401871584,16169310848,108851933632,732794497664,4933202436736,33210545418752,223575000579328,1505118006580736,10132530053062144... |
Practice/Assignments assembly class/14.asm | WardunIslam/CSE331L_Section_7_Summer_2020_NSU | 0 | 204354 | org 100h
L1: NOP
L2: MOV AL, 99H
MOV BH, AL
L3: MOV BL, 02H
MUL BL
MOV AL, BH
MOV BL, 04H
MUL BL
MOV AL, BH
MOV BL, 08H
MUL BL
MOV AL, BH
MOV BL, 10H
MUL BL
L4: HLT
ret |
untested/x64/m32lib.asm | GabrielRavier/Generic-Assembly-Samples | 0 | 204355 | %include "macros.inc"
global _a2dw
global _arr2mem
global _arr2text
global _arr_add
global _arrcnt
global _arrget
global _arrlen
global _arr_mul
global _arr_sub
global _arrtotal
global _atodw
global _atol
global _byt2bin_ex
global _BMBinSearch
global _BinSearch
global _Cmpi
global _cmpmem
global _CombSortA
global _Com... |
HlslDecompiler.Tests/ShaderAssembly/vs_constant_struct.asm | TBirdSoars/HlslDecompiler | 20 | 204356 | vs_3_0
def c0, 0, 0, 0, 0
dcl_position o0
dcl_position1 o1
dcl_position2 o2.xyz
dcl_position3 o3.xyz
mov o0, c0.x
mov o1, c0.x
mov o2.xyz, c0.xxx
mov o3.xyz, c0.xxx
|
predaja/tests/testEmu1.asm | znjRoLS/ss | 0 | 204357 | .public main
.extern testInstr
.extern timerInterrupt
.extern kbInterrupt
.data
a: .word 0x12345678
.align
.data.intrlabele
output: .long 0x2000
tmrIntrOut: .long 4
kbIntrOut: .long 12
kbOutput: .long 0x2000
kbInput: .long 0x1000
.text
main:
ldc r6, timerInterrupt
ldc r7, tmrIntrOut
... |
testing-rom/snes-init.asm | TheAnsarya/ffmq-info | 3 | 204358 | ; Source: http://en.wikibooks.org/wiki/Super_NES_Programming
Init:
sep #$30 ; X,Y,A are 8 bit numbers
lda #$8F ; screen off, full brightness
sta !INIDISP ; brightness + screen enable register
stz !OBSEL ; Sprite register (size + address in VRAM)
stz !OAMADDL ; Sprite registers (address of sprite memory [O... |
tools/scancodes.asm | FranchuFranchu/fran-os | 1 | 204359 | ascii_to_uppercase:
.c00: db 0 ; None
.c01: db 0 ; None
.c02: db 0 ; None
.c03: db 0 ; None
.c04: db 0 ; None
.c05: db 0 ; None
.c06: db 0 ; None
.c07: db 0 ; None
.c08: db 0 ; None
.c09: db 0 ; None
.c0a: db 0 ; None
.c0b: db 0 ; None
.c0c: db 0 ; None
.c0d: db 0 ... |
libsrc/math/mbf64/c/sccz80/l_f64_ldexp.asm | jpoikela/z88dk | 640 | 204360 | <reponame>jpoikela/z88dk
;
; Intrinsic sccz80 routine to multiply by a power of 2
;
;
SECTION code_fp_mbf64
PUBLIC l_f64_ldexp
EXTERN ___mbf64_FA
; Entry: a = adjustment for exponent
; Stack: float, ret
; Exit: dehl = adjusted float
l_f64_ldexp:
ld hl,___mbf64_FA+7
... |
mac/libs/game.asm | amittaigames/asmgame | 0 | 204361 | ; Game source
; Mac OS X
;-----------------------------------
; int nameEasterEgg()
;-----------------------------------
nameEasterEgg:
mov rax, name ; Set first arg to name
mov rbx, egg_name ; Set second to easter egg name
call strcmp ; Compare strings
ret ; Edx is from the strcmp |
oeis/089/A089767.asm | neoneye/loda-programs | 11 | 204362 | <reponame>neoneye/loda-programs
; A089767: Squares which when concatenated with a 1 gives prime.
; Submitted by <NAME>(w4)
; 1,4,25,49,64,81,225,400,676,784,900,1089,1225,1369,1600,1681,2209,2304,3249,3364,4096,5041,6889,7225,7396,8100,8281,8649,9801,10816,11025,11236,12100,12544,12769,13924,15876,16384,17424,19881,216... |
programs/check.asm | informer2016/MichalOS | 0 | 204363 | <filename>programs/check.asm<gh_stars>0
BITS 16
%INCLUDE "michalos.inc"
ORG 100h
disk_buffer equ 16384
start:
call os_wait_for_key
mov al, [0]
mov [.drive], al
mov ax, 0
.loop:
call .sectorselect
inc ax
cmp ax, 2880
jl .loop
mov ax, [.bad_sectors]
call os_int_to_string
mov s... |
programs/oeis/185/A185437.asm | neoneye/loda | 22 | 204364 | <reponame>neoneye/loda
; A185437: The least number of colors required to color an n-bead necklace so that each bead can be identified.
; 1,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2
mov $1,$0
lpb $1... |
oeis/008/A008799.asm | neoneye/loda-programs | 11 | 204365 | <reponame>neoneye/loda-programs
; A008799: Molien series for group [2,6]+ = 226.
; Submitted by <NAME>
; 1,0,2,0,3,0,5,1,7,2,9,3,12,5,15,7,18,9,22,12,26,15,30,18,35,22,40,26,45,30,51,35,57,40,63,45,70,51,77,57,84,63,92,70,100,77,108,84,117,92,126,100,135,108,145,117,155,126,165,135,176,145,187,155,198,165,210,176,222,1... |
kernel/int32-b.asm | teleportex/LibFalcon | 2 | 204366 | <reponame>teleportex/LibFalcon
[bits 32]
global int32, _int32
struc regs16_t
.di resw 1
.si resw 1
.bp resw 1
.sp resw 1
.bx resw 1
.dx resw 1
.cx resw 1
.ax resw 1
.gs resw 1
.fs resw 1
.es resw 1
.ds resw 1
.ef resw 1
endstruc
%define INT32_BASE 0x7C00
... |
programs/oeis/050/A050997.asm | neoneye/loda | 22 | 204367 | <reponame>neoneye/loda
; A050997: Fifth powers of primes.
; 32,243,3125,16807,161051,371293,1419857,2476099,6436343,20511149,28629151,69343957,115856201,147008443,229345007,418195493,714924299,844596301,1350125107,1804229351,2073071593,3077056399,3939040643,5584059449,8587340257,10510100501,11592740743,14025517307,1538... |
programs/oeis/126/A126972.asm | karttu/loda | 1 | 204368 | <reponame>karttu/loda<gh_stars>1-10
; A126972: Number of distinct values taken by the entropy for permutations of [1..n], where the entropy of a permutation pi is Sum_{k=1..n} (pi(k)-k)^2.
; 1,1,2,4,11,21,36,57,85,121,166,221,287,365,456,561,681,817,970,1141,1331,1541,1772,2025,2301,2601,2926,3277,3655,4061,4496,4961,5... |
libsrc/_DEVELOPMENT/math/float/am9511/asm/8085/am32_frexp.asm | dikdom/z88dk | 1 | 204369 | ;
; Copyright (c) 2022 <NAME>
;
; This Source Code Form is subject to the terms of the Mozilla Public
; License, v. 2.0. If a copy of the MPL was not distributed with this
; file, You can obtain one at http://mozilla.org/MPL/2.0/.
;
; feilipu, January 2022
;
;-------------------------------------------------------... |
player_model.asm | StevenMonty/MARS-Invaders | 0 | 204370 | <filename>player_model.asm
.globl player_image
.globl bullet_image
.globl x_coord
.globl y_coord
.globl bullet_x
.globl bullet_y
.globl bullet_active
.data
x_coord: .word 0
y_coord: .word 0
bullet_x: .word 0
bullet_y: .word 0
bullet_active: .word 0 # 1 true 0 false
player_image: .byte
-1 -1 7 -1 -1
-1 7 4 ... |
Transynther/x86/_processed/AVXALIGN/_ht_zr_un_/i3-7100_9_0x84_notsx.log_21829_1161.asm | ljhsiun2/medusa | 9 | 204372 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r9
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x1eafb, %rsi
nop
nop
nop
nop
cmp %rdx, %rdx
movb (%rsi), %r9b
nop
nop
nop
nop
nop
sub $17718, %r11
lea addresses_normal_ht+0xa51f, %rsi
lea addresses_D_ht+0x1c8... |
oeis/228/A228698.asm | neoneye/loda-programs | 11 | 204373 | <gh_stars>10-100
; A228698: a(n) = 8*Product{i=1..n} p(i) - 1, where p(i) = i-th odd prime.
; Submitted by <NAME>
; 7,23,119,839,9239,120119,2042039,38798759,892371479,25878772919,802241960519,29682952539239,1217001054108839,52331045326680119,2459559130353965639,130356633908760178919,7691041400616850556279,469153525437... |
oeis/337/A337171.asm | neoneye/loda-programs | 11 | 204374 | <reponame>neoneye/loda-programs
; A337171: a(n) = A004186(n) mod n.
; Submitted by <NAME>
; 0,0,0,0,0,0,0,0,0,0,0,9,5,13,6,13,3,9,15,0,0,0,9,18,2,10,18,26,5,0,0,0,0,9,18,27,36,7,15,0,0,0,0,0,9,18,27,36,45,0,0,0,0,0,0,9,18,27,36,0,0,0,0,0,0,0,9,18,27,0,0,0,0,0,0,0,0,9,18
add $0,1
mov $1,$0
seq $0,4186 ; Arrange digits ... |
src/game/clouds.asm | blambi/floppybird | 354 | 204375 | draw_clouds:
push ax
push cx
mov ax, 0
.clouds:
push clouds
push 40 ; w
push 16 ; h
push 0 ; sx
push 0 ; sy
push 40 ; sw
push 16 ; sh
push ax ; dx
push 90 ; dy
push 3 ; trasnsparent color
push 0
call blit_fast
add ax, 40
cmp ax, 320
jl .clouds
pop cx
pop ax
ret
|
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_435.asm | ljhsiun2/medusa | 9 | 204376 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r14
push %r9
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x10b0f, %r13
clflush (%r13)
nop
nop
nop
nop
sub $61584, %r14
movups (%r13), %xmm4
vpextrq $1, %xmm4, %rbp
nop
nop
nop
nop
inc %r9
lea addresses_A_ht+0xd457, %r14
nop
nop
nop
lf... |
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xa0.log_21829_662.asm | ljhsiun2/medusa | 9 | 204377 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x44b4, %rax
nop
cmp $36809, %r12
movups (%rax), %xmm1
vpextrq $1, %xmm1, %rsi
nop
nop
nop
nop
nop
and $29931, %r11
lea addresses_UC_ht+0x19144, %rsi
lea addres... |
src/test/ref/lobyte-1.asm | jbrandwood/kickc | 2 | 204378 | // Commodore 64 PRG executable file
.file [name="lobyte-1.prg", type="prg", segments="Program"]
.segmentdef Program [segments="Basic, Code, Data"]
.segmentdef Basic [start=$0801]
.segmentdef Code [start=$80d]
.segmentdef Data [startAfter="Code"]
.segment Basic
:BasicUpstart(main)
.label VDP_REG = $a001
.segment Cod... |
short-text/shield-names.asm | TheAnsarya/ffmq-info | 3 | 204379 |
; TEXT: Shield names ($0643cc)
;
ShieldNames:
print "TEXT: Shield names ($0643cc) -- is at $",pc
db "Steel Shield"
db "Venus Shield"
db "Aegis Shield"
db "Ether Shield"
|
test/arch/Bmp Clock.asm | yunxu1019/efront | 1 | 204380 | <gh_stars>1-10
.386
.model flat,stdcall
option casemap:none
__UNICODE__ equ 1
;
;
;
include windows.inc
include user32.inc
include kernel32.inc
include gdi32.inc
includelib user32.lib
includelib kernel32.lib
includelib gdi32.lib
;
;
;
ICO_MAIN equ 1000h
ID_TIMER equ 1
;
;
;
.data?
hInstance dd ?
hWinMain dd ?
dwCenterX... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_374.asm | ljhsiun2/medusa | 9 | 204381 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %r8
lea addresses_WT_ht+0xb8d0, %r15
nop
nop
nop
nop
nop
and $2437, %r10
movb (%r15), %r8b
dec %r15
pop %r8
pop %r15
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r13
push %r15
push %r8
push %r9
push %rax
push %rcx
push ... |
tasm/keypad.asm | yellingintothefan/chip8 | 91 | 204382 | <filename>tasm/keypad.asm<gh_stars>10-100
LD_TEST:
;----------------------------;
; LD VX, K ;
;----------------------------;
LD VA, K
BACK:
;----------------------------;
; SKP VX ;
;----------------------------;
SKP VA
JP BACK
AGAIN:
;-----... |
Transynther/x86/_processed/NC/_st_zr_un_/i3-7100_9_0x84_notsx.log_431_1521.asm | ljhsiun2/medusa | 9 | 204383 | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r15
push %r8
push %r9
push %rax
push %rcx
push %rdi
push %rsi
// REPMOV
lea addresses_RW+0x122d7, %rsi
lea addresses_D+0x5bd7, %rdi
sub %rax, %rax
mov $88, %rcx
rep movsl
xor $43389, %rdi
// Faulty Load
mov $0x7b45bb00000... |
source/miscellany/system.asm | paulscottrobson/rpl-32 | 0 | 204384 | ; ******************************************************************************
; ******************************************************************************
;
; Name : system.asm
; Purpose : System functions
; Author : <NAME> (<EMAIL>)
; Created : 3rd October 2019
;
; *************************************... |
C/BiosLib/scancode.asm | p-k-p/SysToolsLib | 232 | 204385 | PAGE ,132
TITLE System utilities, not relying on MS-DOS.
;*****************************************************************************;
; ;
; File name SCANCODE.ASM ;
; ;
; Description Routines to read scancodes. Supports all AT2 keyboard keys.
; ;
; ... |
data/mapObjects/safarizoneresthouse3.asm | adhi-thirumala/EvoYellow | 16 | 204387 | SafariZoneRestHouse3Object:
db $a ; border block
db $2 ; warps
db $7, $2, $4, SAFARI_ZONE_EAST
db $7, $3, $4, SAFARI_ZONE_EAST
db $0 ; signs
db $3 ; objects
object SPRITE_OAK_AIDE, $1, $3, WALK, $1, $1 ; person
object SPRITE_ROCKER, $4, $2, STAY, NONE, $2 ; person
object SPRITE_LAPRAS_GIVER, $5, $2, STAY, N... |
oeis/142/A142208.asm | neoneye/loda-programs | 11 | 204388 | ; A142208: Primes congruent to 11 mod 41.
; Submitted by <NAME>(w1)
; 11,257,421,503,1487,1733,1979,2143,2389,2963,3209,3373,3701,3947,4111,4357,4603,4931,5669,6079,6571,6653,6899,7309,7883,8293,8539,8867,9277,9769,9851,10343,10589,10753,11491,12721,12967,13049,14033,14197,14771,15017,15263,15427,15919,16001,16411,1649... |
oeis/103/A103938.asm | neoneye/loda-programs | 11 | 204391 | ; A103938: Number of rooted non-separable n-edge maps in the plane (planar with a distinguished outside face).
; Submitted by <NAME>
; 3,2,5,18,77,364,1836,9690,52877,296010,1690845,9817080,57769740,343806368,2065802056,12515350122,76367432013,468922828150,2895381678735,17966214519330,111977263221285,700704492237540,44... |
ffight/lcs/enemy/60.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | 6 | 204392 | <reponame>zengfr/arcade_game_romhacking_sourcecode_top_secret_data
copyright zengfr site:http://github.com/zengfr/romhack
0039F6 movem.l D0-D3, -(A6)
0039FA movem.l D0-D3, -(A6)
005EF8 move.b ($e,A3), ($60,A4)
005EFE bpl $5f06 [enemy+60]
005F06 rts [enemy+60]
006228 move.b ($c,A3), ($60,A4)
00622E bpl ... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1120.asm | ljhsiun2/medusa | 9 | 204393 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1120.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r14
push %r15
push %r8
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x8754, %r15
nop
nop
nop
nop
xor %r8, %r8
movw $0x... |
oeis/225/A225826.asm | neoneye/loda-programs | 11 | 204394 | ; A225826: Number of binary pattern classes in the (2,n)-rectangular grid: two patterns are in same class if one of them can be obtained by a reflection or 180-degree rotation of the other.
; Submitted by <NAME>
; 1,3,7,24,76,288,1072,4224,16576,66048,262912,1050624,4197376,16785408,67121152,268468224,1073790976,429509... |
libsrc/_DEVELOPMENT/arch/sms/misc/c/sdcc_ix/sms_scroll_wc_up_callee.asm | jpoikela/z88dk | 640 | 204395 | <reponame>jpoikela/z88dk<filename>libsrc/_DEVELOPMENT/arch/sms/misc/c/sdcc_ix/sms_scroll_wc_up_callee.asm<gh_stars>100-1000
; void sms_scroll_wc_up(struct r_Rect8 *r, uchar rows, uint bgnd_char)
SECTION code_clib
SECTION code_arch
PUBLIC _sms_scroll_wc_up_callee
PUBLIC _sms_scroll_wc_up_callee_0
EXTERN asm_sms_scrol... |
oeis/038/A038299.asm | neoneye/loda-programs | 11 | 204398 | <gh_stars>10-100
; A038299: Triangle whose (i,j)-th entry is binomial(i,j)*9^(i-j)*9^j.
; Submitted by <NAME>
; 1,9,9,81,162,81,729,2187,2187,729,6561,26244,39366,26244,6561,59049,295245,590490,590490,295245,59049,531441,3188646,7971615,10628820,7971615,3188646,531441,4782969,33480783,100442349,167403915
mov $1,1
lpb ... |
example/src/main.asm | sverx/PSGlib | 24 | 204399 | ;==============================================================
; defines
;==============================================================
.define VDPControlPort $bf ; VDP Control Port (w/o)
.define writeVDPregister $80 ; to write to VDP register
.define writeVRAM $40 ; to write to VRAM
.define VDPSt... |
oeis/277/A277585.asm | neoneye/loda-programs | 11 | 204400 | <filename>oeis/277/A277585.asm
; A277585: Denominator of Sum_{k=0..n} (2^k * (k!)^2)/(2k + 1)!.
; Submitted by <NAME>
; 1,3,15,21,315,3465,45045,15015,765765,14549535,14549535,25741485,1673196525,1003917915,145568097675,265447707525,1504203675975,4512611027925,166966608033225,33393321606645,1369126185872445,58872425992... |
examples/acorn.asm | ihh/bbcmicrobot-codec | 10 | 204401 | <filename>examples/acorn.asm
ldx #0
LOOP: lda DATA,x
beq LOOP
jsr $ffee
inx
jmp LOOP
DATA: byte 12,10,10,13
byte "acorn computer"
byte 10,10,10,13
byte ">MICRO HUMANS RULE!"
byte 0
|
savefile/maps/423A_BridgeOfHopes.asm | stranck/fools2018-1 | 35 | 204402 | SECTION "Map_423A", ROM0[$B800]
Map_423A_Header:
hdr_tileset 0
hdr_dimensions 9, 10
hdr_pointers_a Map_423A_Blocks, Map_423A_TextPointers
hdr_pointers_b Map_423A_Script, Map_423A_Objects
hdr_pointers_c Map_423A_InitScript, Map_423A_RAMScript
hdr_palette $06
... |
palacios/src/palacios/vmcs_fields.asm | tsinghua-os-spring-2013/palacios | 1 | 204403 | ; -*- fundamental -*-
;;
;; This file is part of the Palacios Virtual Machine Monitor developed
;; by the V3VEE Project with funding from the United States National
;; Science Foundation and the Department of Energy.
;;
;; The V3VEE Project is a joint project between Northwestern University
;; and the University o... |
Engine Hacks/SuspendDebuffs/asm/Debuffs/Strength Getter.asm | sme23/MekkahRestrictedHackComp1 | 3 | 204404 | <filename>Engine Hacks/SuspendDebuffs/asm/Debuffs/Strength Getter.asm<gh_stars>1-10
.thumb
@Additional Data Format:
@0-2: Debuffs, 4 bits each (str/skl/spd/def/res/luk)
@3: Rallys (bit 7 = rally move, bit 8 = rally spectrum)
@4: Str/Skl Silver Debuff (6 bits), bit 7 = half strength, HO bit = Hexing Rod
@5: Magic
@Ori... |
oeis/203/A203196.asm | neoneye/loda-programs | 11 | 204405 | ; A203196: (n-1)-st elementary symmetric function of the first n terms of (2,1,4,3,6,5,8,7,...)=A103889.
; Submitted by <NAME>(s3)
; 1,3,14,50,324,1764,14832,109584,1136160,10628640,131172480,1486442880,21289201920,283465647360,4622628648960,70734282393600,1294139872972800,22376988058521600,453942134876160000,875294803... |
oeis/166/A166577.asm | neoneye/loda-programs | 11 | 204406 | ; A166577: Inverse binomial transform of A166517.
; Submitted by <NAME>
; 1,4,-5,10,-20,40,-80,160,-320,640,-1280,2560,-5120,10240,-20480,40960,-81920,163840,-327680,655360,-1310720,2621440,-5242880,10485760,-20971520,41943040,-83886080,167772160,-335544320,671088640,-1342177280,2684354560,-5368709120,10737418240,-2147... |
oeis/108/A108587.asm | neoneye/loda-programs | 11 | 204407 | <reponame>neoneye/loda-programs
; A108587: Floor(n/(1-sin(1))).
; Submitted by <NAME>(s4)
; 6,12,18,25,31,37,44,50,56,63,69,75,82,88,94,100,107,113,119,126,132,138,145,151,157,164,170,176,182,189,195,201,208,214,220,227,233,239,246,252,258,264,271,277,283,290,296,302,309,315,321,328,334,340,346
add $0,1
mov $1,82
mul ... |
0-nASM/3strlen64.asm | NavinShrinivas/os-dev | 0 | 204408 | <reponame>NavinShrinivas/os-dev
;memorise rax->rdi->rsi->rdx
;memorise rax->syscall rdi->file descriptor rsi->message rdx->mesg len
section .data
msg db "Hello world!This is a long message :)",0xA ;db is for byte - 8bits for each char
section .text
global _start
_start:
mov rax,msg
mov rbx,rax
nextchar:
... |
programs/oeis/131/A131130.asm | neoneye/loda | 22 | 204409 | <reponame>neoneye/loda<filename>programs/oeis/131/A131130.asm
; A131130: Binomial transform of [1,1,7,1,7,1,7,1,...].
; 1,2,10,26,58,122,250,506,1018,2042,4090,8186,16378,32762,65530,131066,262138,524282,1048570,2097146,4194298,8388602,16777210,33554426,67108858,134217722,268435450,536870906,1073741818,2147483642,42949... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_1484.asm | ljhsiun2/medusa | 9 | 204410 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r15
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x10a26, %rsi
nop
nop
sub %rbx, %rbx
mov (%rsi), %cx
nop
nop
nop
nop
sub %rdi, %rdi
lea addresses_D_ht+0x1b486, %rsi
lea addresses_WC_ht+0x186ce, %rdi
nop
add %r13, %r13
... |
external/src/libvpx/vpx_config_arm.asm | emarc99/SLib | 146 | 204411 | INCLUDE vpx_config_common.S
ARCH_ARM EQU 1
ARCH_X86 EQU 0
ARCH_X86_64 EQU 0
HAVE_NEON EQU 1
HAVE_NEON_ASM EQU 1
HAVE_MMX EQU 0
HAVE_SSE EQU 0
HAVE_SSE2 EQU 0
HAVE_SSE3 EQU 0
HAVE_SSSE3 EQU 0
HAVE_SSE4_1 EQU 0
HAVE_AVX EQU 0
HAVE_AVX2 EQU 0
HAVE_AVX512 EQU 0
|
Samveen's example OS/requirements/fasmw-1.45/examples/ddraw/ddraw.asm | samveen/teasers | 0 | 204412 |
; DirectDraw programming example
format PE GUI 4.0
entry start
include '%include%\win32a.inc'
include 'ddraw.inc'
section '.data' data readable writeable
_title db 'flat assembler DirectDraw application',0
_class db 'FDDRAW32',0
_error db 'Error',0
_ddraw_error db 'Direct Draw initializat... |
programs/oeis/257/A257847.asm | karttu/loda | 1 | 204413 | ; A257847: a(n) = floor(n/7) * (n mod 7).
; 0,0,0,0,0,0,0,0,1,2,3,4,5,6,0,2,4,6,8,10,12,0,3,6,9,12,15,18,0,4,8,12,16,20,24,0,5,10,15,20,25,30,0,6,12,18,24,30,36,0,7,14,21,28,35,42,0,8,16,24,32,40,48,0,9,18,27,36,45,54,0,10,20,30,40,50,60,0,11,22,33,44,55,66,0,12,24,36,48,60,72,0,13,26,39,52,65,78,0,14,28,42,56,70,84,0,... |
examples/ping/music/music.asm | sgadrat/nine-gine | 6 | 204414 | <filename>examples/ping/music/music.asm
#include "game/music/theme_main/theme_main.asm"
audio_music_start:
.(
jsr audio_unmute_music
lda #%00001111 ; ---DNT21
sta APU_STATUS ;
lda #%01111100 ; DDLCVVVV
sta audio_duty
lda #<track_main_square1
sta audio_square1_track
lda #>track_main_square1
sta audio_square1_track+1... |
libsrc/games/enterprise/bit_close.asm | meesokim/z88dk | 0 | 204415 | <reponame>meesokim/z88dk
; $Id: bit_close.asm,v 1.2 2015/01/19 01:32:44 pauloscustodio Exp $
;
; Enterprise 64/128 1 bit sound functions
;
; void bit_close();
;
; <NAME> - 2011
;
PUBLIC bit_close
.bit_close
ret
|
Transynther/x86/_processed/US/_zr_/i7-7700_9_0x48_notsx.log_9581_583.asm | ljhsiun2/medusa | 9 | 204416 | <reponame>ljhsiun2/medusa<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x1bb40, %r11
nop
nop
add %rax, %rax
mov (%r11), %rbx
nop
nop
nop
nop
nop
dec %rbx
lea addresses_UC_ht+0xd220, %r13
nop
nop
and %r11... |
macro-print-digit.asm | BaseMax/FirstAssemblyNASM | 7 | 204418 | <reponame>BaseMax/FirstAssemblyNASM<gh_stars>1-10
section .data
digit db 0,10
section .text
global _start
%macro printDigit 1
mov rax, %1
call _printRAXDigit
%endmacro
%macro exit 0
mov rax, 60
mov rdi, 0
syscall
%endmacro
_start:
printDigit 3
printDigit 4
exit
_pri... |
HuffmanComp.asm | thisforeda/Huffman-compress | 0 | 204419 | ;-----------------------------------------------------
;Coded By ZhangYiDa
;-----------------------------------------------------
.486
.model flat, stdcall
option casemap :none
DEBUG EQU 1
include wi... |
programs/oeis/136/A136324.asm | jmorken/loda | 1 | 204420 | <reponame>jmorken/loda
; A136324: Interleaving of A002450(n), A002450(n) + 1.
; 0,1,1,2,5,6,21,22,85,86,341,342,1365,1366,5461,5462,21845,21846,87381,87382,349525,349526,1398101,1398102,5592405,5592406,22369621,22369622,89478485,89478486,357913941,357913942,1431655765,1431655766,5726623061,5726623062,22906492245,229064... |
oeis/122/A122752.asm | neoneye/loda-programs | 11 | 204422 | <reponame>neoneye/loda-programs
; A122752: a(0) = 1; a(1) = 1; a(2) = 1; a(n) = (n-1)*a(n-1) + (n-2)*a(n-2) + (n-3)*a(n-3) for n >= 3.
; Submitted by <NAME>
; 1,1,1,3,12,59,352,2455,19592,176033,1758218,19323213,231721820,3010799363,42133608902,631791578187,10105884589152,171760897623865,3091106286704942,58721542573721... |
kernel/cpuid.asm | EmilNorden/tunaos | 0 | 204423 | <reponame>EmilNorden/tunaos
global asm_get_cpu_info
; The cpu_info structure looks like this:
; uint8*13 - vendor id
; total size of structure is 13 bytes
;
; Retrieves details about the processor using the CPUID instruction.
asm_get_cpu_info:
pushad
mov ebp, dword [ebp+8] ; Store memory address in EBP, as E... |
src/util.asm | jcgter777/cesium | 1 | 204424 | <filename>src/util.asm
util_find_var:
call _Mov9ToOP1
jp _ChkFindSym
util_delete_program_from_usermem:
or a,a
sbc hl,hl
ld de,(asm_prgm_size) ; get program size
ld (asm_prgm_size),hl ; delete whatever was there
ld hl,userMem
jp _DelMem
util_show_time:
bit setting_clock,(iy + settings_flag)
ret z
set cloc... |
dino/lcs/123p/78.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | 6 | 204425 | <gh_stars>1-10
copyright zengfr site:http://github.com/zengfr/romhack
00042A move.l D1, (A0)+
00042C dbra D0, $42a
004D94 move.l D1, (A1)+
004D96 dbra D0, $4d94
01079E sub.b D0, ($78,A3)
0107A2 bcc $107aa [123p+ 78]
0107A6 clr.b ($78,A3)
0107AA move.b ($5a,A2), ($5a,A3) [123p+ 78]
010F24... |
Source/HBIOS/xio.asm | davidknoll/RomWBW | 194 | 204426 | <filename>Source/HBIOS/xio.asm<gh_stars>100-1000
;___XIO________________________________________________________________________________________________________________
;
; DIRECT SERIAL I/O
;
; PROVIDES INTERFACE TO PLATFORM BASE SERIAL I/O DEVICE
; ALLOWS USER MESSAGING/INTERACTION PRIOR TO AND DURING HBIOS ... |
sw/552tests/rand_simple/t_1_andni.asm | JPShen-UWM/ThreadKraken | 1 | 204427 | // seed 1
lbi r0, 234 // icount 0
slbi r0, 253 // icount 1
lbi r1, 3 // icount 2
slbi r1, 161 // icount 3
lbi r2, 0 // icount 4
slbi r2, 166 // icount 5
lbi r3, 232 // icount 6
slbi r3, 8 // icount 7
lbi r4, 255 // icount 8
slbi r4, 0 // icount 9
lbi r5, 207 // icount 10
slbi r5, 190 // icount 11
lbi r6, 143 // icount ... |
libsrc/_DEVELOPMENT/string/c/sccz80/memchr.asm | jpoikela/z88dk | 0 | 204428 | <gh_stars>0
; void *memchr(const void *s, int c, size_t n)
SECTION code_clib
SECTION code_string
PUBLIC memchr
EXTERN l0_memchr_callee
memchr:
pop af
pop bc
pop de
pop hl
push hl
push de
push bc
push af
jp l0_memchr_callee
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _memchr
defc... |
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca.log_21829_1215.asm | ljhsiun2/medusa | 9 | 204429 | .global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r9
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0xae61, %rsi
lea addresses_WT_ht+0x1ebe1, %rdi
nop
nop
nop
nop
nop
inc %r14
mov $30, %rcx
rep movsq
nop
nop
nop
and %r9, %r9
lea addresses_WT_ht+0xeda7, %rbp
nop
add $48581, %rdx
mov (%rb... |
data/pokemon/dex_entries/shuckle.asm | AtmaBuster/pokeplat-gen2 | 6 | 204430 | <gh_stars>1-10
db "MOLD@" ; species name
db "The fluid secreted"
next "by its toes carves"
next "holes in rocks for"
page "nesting and can be"
next "mixed with BERRIES"
next "to make a drink.@"
|
programs/oeis/223/A223395.asm | neoneye/loda | 22 | 204431 | <reponame>neoneye/loda
; A223395: 4 X 4 square grid graph coloring a rectangular array: number of n X 1 0..15 arrays where 0..15 label nodes of the square grid graph and every array movement to a horizontal or vertical neighbor moves along an edge of this graph.
; 16,48,152,488,1576,5096,16488,53352,172648,558696,18079... |
programs/oeis/155/A155734.asm | karttu/loda | 1 | 204432 | ; A155734: Binomial transform of A154879.
; 3,1,3,9,27,81,243,729,2187,6561,19683,59049,177147,531441,1594323,4782969,14348907,43046721,129140163,387420489,1162261467,3486784401,10460353203,31381059609,94143178827,282429536481,847288609443,2541865828329
mov $3,$0
mov $0,1
trn $0,$3
mov $2,2
sub $2,$0
mul $0,2
mov $1,3... |
libsrc/_DEVELOPMENT/math/float/math32/lm32/c/sccz80/pow.asm | jpoikela/z88dk | 0 | 204434 |
SECTION code_fp_math32
PUBLIC pow
EXTERN cm32_sccz80_pow
defc pow = cm32_sccz80_pow
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _pow
defc _pow = pow
ENDIF
|
libsrc/_DEVELOPMENT/string/c/sdcc_iy/strncmp_callee.asm | meesokim/z88dk | 0 | 204436 |
; int strncmp_callee(const char *s1, const char *s2, size_t n)
SECTION code_string
PUBLIC _strncmp_callee
EXTERN asm_strncmp
_strncmp_callee:
pop af
pop de
pop hl
pop bc
push af
jp asm_strncmp
|
src/Shaders/Sdk/Direct3D11/HDRToneMappingCS11/DumpToTexture.asm | tgjones/slimshader-cpp | 20 | 204437 | //
// Generated by Microsoft (R) HLSL Shader Compiler 9.30.9200.16384
//
//
///
// Buffer Definitions:
//
// cbuffer cbPS
// {
//
// uint4 g_param; // Offset: 0 Size: 16
//
// }
//
// Resource bind info for buffer
// {
//
// float4 $Element; // Offset: 0 Size: 16
/... |
arquivos_teste_moodle/bin.asm | LSantos06/MacroAssembler | 0 | 204438 | <filename>arquivos_teste_moodle/bin.asm
;Programa que transforma um n�mero decimal
;a bin�rio
SECTION TEXT
INPUT OLD_DATA
LOAD OLD_DATA
L1: DIV DOIS ;4
STORE NEW_DATA
MULT DOIS
STORE TMP_DATA
LOAD OLD_DATA
SUB TMP_DATA
STORE TMP_DATA
OUTPUT TMP_DATA
COPY NEW_DATA, OLD_DATA
LOAD OLD_DATA
JMPP L1
STOP
SECTION DATA
DOIS... |
echo8085.asm | neuroklinik/ECHO8085 | 0 | 204439 | ; ECHO8085
; A Simon-like game for the EMAC "The PRIMER" 8085 CPU Trainer.
; Written in Intel 8085 Assembly Language.
; Uses EMAC MOS v2.7 ROM calls.
; <NAME>
; April 2015
ORG 0C000h
; Load the delay value from the DIP switches,
; and display on LD0-LD7.
MVI L,0h
IN DIPS
MOV H,A
SHLD DLAY
CMA
OUT LED... |
sbsext/ext/jobf.asm | olifink/smsqe | 0 | 204440 | <reponame>olifink/smsqe
* Job manipulation functions V0.6 1984/1985 <NAME> QJUMP
*
* PJOB (nr,tag) priority of a job
* OJOB (nr,tag) owner of a job
* JOB$ (nr,tag) job name
* NXJOB(nr,tag,owner,tag) next job in tree
* JOBID [({nr, tag} | <name> )] named job id or my id (no parameters)
*
* 2006-01-10 0.07 JOBI... |
Transynther/x86/_processed/US/_st_un_sm_/i9-9900K_12_0xa0.log_21829_1769.asm | ljhsiun2/medusa | 9 | 204441 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r8
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x12a9e, %rsi
lea addresses_WC_ht+0x12c1c, %rdi
dec %rbp
mov $17, %rcx
rep movsb
nop
cmp %r8, %r8
lea addresses_A_ht+0x5648, %rsi
nop
nop
nop
nop
cmp %rax, %rax
movw $0x6162, (%... |
text/maps/cinnabar_gym.asm | etdv-thevoid/pokemon-rgb-enhanced | 1 | 204442 | <filename>text/maps/cinnabar_gym.asm
_BlaineBattleText::
text "Hah!"
para "I am BLAINE! I"
line "am the LEADER of"
cont "CINNABAR GYM!"
para "My fiery #MON"
line "will incinerate"
cont "all challengers!"
para "Hah! You better"
line "have BURN HEAL!"
done
_BlaineEndBattleText::
text "I have"
line "burnt ... |
programs/oeis/025/A025803.asm | karttu/loda | 0 | 204443 | <reponame>karttu/loda
; A025803: Expansion of 1/((1-x^2)(1-x^4)(1-x^7)).
; 1,0,1,0,2,0,2,1,3,1,3,2,4,2,5,3,6,3,7,4,8,5,9,6,10,7,11,8,13,9,14,10,16,11,17,13,19,14,20,16,22,17,24,19,26,20,28,22,30,24,32,26,34,28,36,30,39,32,41,34,44,36,46,39
mov $5,$0
mov $7,2
lpb $7,1
clr $0,5
mov $0,$5
sub $7,1
add $0,$7
sub... |
oeis/245/A245927.asm | neoneye/loda-programs | 11 | 204444 | ; A245927: G.f.: sqrt( (1-x - sqrt(1-14*x+x^2)) / (6*x*(1-14*x+x^2)) ).
; Submitted by <NAME>(w2)
; 1,9,99,1175,14499,183195,2351805,30539241,400000275,5274560891,69929215641,931226954949,12446852889901,166888293332805,2243683808486451,30235162687458327,408274269493595283,5523024440001832875,74834275541765522505,101542... |
src/test/ref/string-encoding-pragma.asm | jbrandwood/kickc | 2 | 204445 | <reponame>jbrandwood/kickc<filename>src/test/ref/string-encoding-pragma.asm
// Test string encoding via literals
// Commodore 64 PRG executable file
.file [name="string-encoding-pragma.prg", type="prg", segments="Program"]
.segmentdef Program [segments="Basic, Code, Data"]
.segmentdef Basic [start=$0801]
.segmentdef ... |
libsrc/_DEVELOPMENT/error/z80/error_ebdfd_mc.asm | meesokim/z88dk | 0 | 204447 | <filename>libsrc/_DEVELOPMENT/error/z80/error_ebdfd_mc.asm
INCLUDE "clib_cfg.asm"
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
IF __CLIB_OPT_ERROR
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; verbose mode
SECTION code_error
PUBLIC error_ebdfd_mc
EXTERN __EBDFD, errno_mc
pop hl
pop hl
error_ebdfd_... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.