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 |
|---|---|---|---|---|
libsrc/_DEVELOPMENT/target/yaz180/device/asci/z180/__asci0_need.asm | jpoikela/z88dk | 640 | 206145 | <reponame>jpoikela/z88dk
; Generate references to any portions of asci0
; code that must be part of every compile that
; uses the asci0.
PUBLIC asm_asci0_need
EXTERN asm_asci0_init
defc asm_asci0_need = asm_asci0_init
; The asci0 must be initialized before main is called
SECTION code_crt_init
call asm_asci0_init
|
libsrc/video/tms9918/stdio/generic_console/tms9918_set_font.asm | Frodevan/z88dk | 640 | 206146 | <filename>libsrc/video/tms9918/stdio/generic_console/tms9918_set_font.asm
SECTION code_clib
PUBLIC __tms9918_set_font
EXTERN generic_console_font32
EXTERN generic_console_udg32
EXTERN __tms9918_pattern_generator
EXTERN LDIRVM
__tms9918_set_font:
; TODO: Fi... |
oeis/173/A173630.asm | neoneye/loda-programs | 11 | 206147 | <filename>oeis/173/A173630.asm
; A173630: Denominator of A002445(n)/A145979(n).
; Submitted by <NAME>(w2)
; 1,1,2,5,1,7,4,3,1,11,2,13,1,5,8,17,3,19,2,7,1,23,4,25,1,9,14,29,1,31
mov $2,$0
seq $0,130072 ; a(n) = 5^n - 3^n - 2^n.
mov $1,$0
add $2,2
mov $0,$2
gcd $1,$2
div $0,$1
|
pcl/edsger_lib/stdlib/ord.asm | johnp41/Compiler-Uni | 0 | 206148 | ; int ord (char c);
; -----------------
; This function returns the ASCII code of a character.
section .code
global _ord
_ord push rbp
mov rbp, rsp
mov al, dil
xor ah, ah
and rax, 0xff
pop... |
programs/sudoku.asm | shoaib-jamal/MichalOS | 0 | 206149 | ; ------------------------------------------------------------------
; MichalOS Sudoku
; ------------------------------------------------------------------
%INCLUDE "michalos.inc"
start:
call draw_background
mov ax, .list
mov bx, .listmsg
mov cx, .listmsg2
call os_list_dialog
jc .exit
dec... |
programs/oeis/021/A021058.asm | neoneye/loda | 22 | 206150 | ; A021058: Decimal expansion of 1/54.
; 0,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8,5,1,8
sub $0,1
mod $0,3
mov $1,3
sub $1,$0
pow $1,$1
add $1,4
mod $1,10
mov $0,$1
|
oeis/049/A049870.asm | neoneye/loda-programs | 11 | 206151 | ; A049870: a(n)=Sum{a(k): k=0,1,2,...,n-4,n-2,n-1}; a(n-3) is not a summand; 3 initial terms required.
; Submitted by <NAME>
; 1,2,4,6,11,20,38,71,133,248,463,864,1613,3011,5621,10493,19588,36566,68260,127425,237872,444050,828935,1547423,2888668,5392451,10066414,18791583,35079383,65484803,122244437,228201074,425996728
... |
z80sbcFiles/source/download.asm | roberts7531/z80Computer | 0 | 206152 | <filename>z80sbcFiles/source/download.asm
;==================================================================================
; Contents of this file are copyright Grant Searle
; HEX routine from <NAME>.
;
; You have permission to use this for NON COMMERCIAL USE ONLY
; If you wish to use it elsewhere, please inclu... |
programs/oeis/120/A120325.asm | karttu/loda | 1 | 206153 | <filename>programs/oeis/120/A120325.asm
; A120325: Period 6: repeat [0, 0, 1, 0, 1, 0].
; 0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0
mov $1,$0
gcd $1,6
cmp $1,2
|
irvene/reverse_string.asm | ratedali/assembly-exercises | 1 | 206155 | section .data
src: db "string",0
len equ $-src-1
target: db 0
section .text
global _main
_main:
push ebp
mov ebp, esp
and esp, 0xfffffff0
mov esi, src
mov edi, target
add ... |
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0.log_21829_534.asm | ljhsiun2/medusa | 9 | 206156 | <filename>Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0.log_21829_534.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r9
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0xcdb5, %rsi
lea addresses_D_ht+0x66b5, %rdi
nop
nop
sub %r9, %r9
mov $95, %rcx
rep movsb
... |
programs/oeis/223/A223764.asm | neoneye/loda | 22 | 206157 | <filename>programs/oeis/223/A223764.asm
; A223764: Number of n X 2 0..1 arrays with rows, columns and antidiagonals unimodal and diagonals nondecreasing.
; 4,12,28,56,101,169,267,403,586,826,1134,1522,2003,2591,3301,4149,5152,6328,7696,9276,11089,13157,15503,18151,21126,24454,28162,32278,36831,41851,47369,53417,60028,6... |
Source/Levels/L0305.asm | AbePralle/FGB | 0 | 206158 | ; L0305.asm
; Generated 08.24.2000 by mlevel
; Modified 08.24.2000 by <NAME>
INCLUDE "Source/Defs.inc"
INCLUDE "Source/Levels.inc"
;---------------------------------------------------------------------
SECTION "Level0305Section",ROMX
;---------------------------------------------------------------------
L0305_Conte... |
Driver/Video/VGAlike/VGA24/vga24Output.asm | steakknife/pcgeos | 504 | 206159 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Video Drivers
FILE: vga24Output.asm
AUTHOR: <NAME>, Oct 7, 1992
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:... |
programs/oeis/025/A025716.asm | neoneye/loda | 22 | 206160 | ; A025716: Index of 6^n within sequence of numbers of form 6^i*7^j.
; 1,2,4,7,11,16,22,29,37,46,56,67,79,91,104,118,133,149,166,184,203,223,244,266,289,313,337,362,388,415,443,472,502,533,565,598,632,667,702,738,775,813,852,892,933,975,1018,1062,1107,1153,1200,1247,1295,1344,1394
mov $2,$0
add $2,1
mov $4,$0
lpb $2
... |
Get-Set Interfaces/xxx2-definition.asm | Unshifted1337/AssemblyExercises | 0 | 206161 | _Z4xxx2P4nodem:
.L28:
testq %rdi, %rdi
je .L30
movq (%rdi), %rax
cmpq %rsi, %rax
je .L35
cmpq %rax, %rsi
jnb .L27
movq 16(%rdi), %rdi
jmp .L28
.L27:
movq 24(%rdi), %rdi
jmp .L28
.L30:
xorl %eax, %eax
ret
.L35:
movq 8(%rdi), %rax
ret
|
programs/oeis/029/A029020.asm | jmorken/loda | 1 | 206162 | <filename>programs/oeis/029/A029020.asm
; A029020: Expansion of 1/((1-x)(1-x^2)(1-x^7)(1-x^8)).
; 1,1,2,2,3,3,4,5,7,8,10,11,13,14,17,19,23,25,29,31,35,38,43,47,53,57,63,67,74,79,87,93,102,108,117,124,134,142,153,162,174,183,196,206,220,231,246,258,274,287,304,318
mov $1,17
lpb $0
mov $2,$0
sub $0,1
cal $2,25784 ... |
kDevice16.asm | satadriver/LiunuxOS | 0 | 206164 | <reponame>satadriver/LiunuxOS<gh_stars>0
.386p
;why use32 disassemblly error?
Kernel16 Segment public para use16
assume cs:Kernel16
__initDevices proc
call __initSysTimer
call __initCmosRlt16
call __initMousePort
call __init8259
call __enableA20
call __initNMI
ret
__initDevices endp
... |
asmFiles/test.ldst1.asm | hythzz/MIPS-Processor | 0 | 206165 | <gh_stars>0
#------------------------------------------------------------------
# Test lw sw
#------------------------------------------------------------------
org 0x0000
ori $1, $zero, 0xF0
ori $2, $zero, 0x100
ori $3, $zero, 0x200
ori $4, $zero, 0x300
ori $5, $zero, 0x400
lw $6, ... |
sources/Loader/antidebug.asm | blumu/cracklock | 1 | 206166 | <reponame>blumu/cracklock
.586p
.model flat, stdcall ; 32 bit memory model
option scoped ; local labels are enabled, global labels inside
; PROC should be defined with double colons (LABEL::)
option casemap :none ; case sensitive
include windows.inc
include kernel32.inc
include ... |
audio/sfx/cry0f_3.asm | opiter09/ASM-Machina | 1 | 206167 | SFX_Cry0F_3_Ch5:
duty_cycle_pattern 3, 3, 0, 1
square_note 4, 15, 7, 1984
square_note 12, 14, 6, 1986
square_note 6, 11, 5, 1664
square_note 4, 12, 4, 1648
square_note 4, 11, 5, 1632
square_note 8, 12, 1, 1600
sound_ret
SFX_Cry0F_3_Ch6:
duty_cycle_pattern 3, 0, 3, 0
square_note 3, 12, 7, 1921
square_note 1... |
procedureGeneriche/ABC.asm | Scodellz/ProgettoArchitetture-1819 | 0 | 206168 | <gh_stars>0
.data
buffer: .asciiz "dioCane"
.align 2
.text
main:
# li $a1, 0
# jal A
# li $a1, 1
# jal A
li $a1, 0
jal B
li $a1, 1
jal B
li $a1, 0
jal C
li $a1, 1
jal C
li $v0,10
syscall
# PROCEDURA DEDICATA AL SETTAGGIO DEL CONPORTAMENTO PER L'ALGORITMO A
# PARAMETRI : $S1 , si aspetta 0 per c... |
irq/busywait.asm | FolkertVanVerseveld/c64 | 1 | 206169 | // Assembler: KickAssembler 4.4
// busy wait till rasterline gets hit
BasicUpstart2(start)
.var line = 40
* = $0810 "start"
start:
lda #line
wait:
cmp $d012
bne wait
// change border and waste some cycles
inc $d020
ldx #0
!l:
inx
bne !l-
dec $d020
jmp start
|
oeis/074/A074561.asm | neoneye/loda-programs | 11 | 206170 | <filename>oeis/074/A074561.asm
; A074561: a(n) = 4^n + 5^n + 6^n.
; Submitted by <NAME>(s1.)
; 3,15,77,405,2177,11925,66377,374445,2135777,12292965,71280377,415819485,2437700177,14348506005,84736115177,501776304525,2977992765377,17706778767045,105443373410777,628708104245565,3752625383331377,22418185845092085,134023481... |
Transynther/x86/_processed/AVXALIGN/_st_/i9-9900K_12_0xa0_notsx.log_21829_1985.asm | ljhsiun2/medusa | 9 | 206172 | <filename>Transynther/x86/_processed/AVXALIGN/_st_/i9-9900K_12_0xa0_notsx.log_21829_1985.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r14
push %r8
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x1131f, %rsi
lea addresses_D_ht+0x50ff, %rdi
nop
nop
nop
nop
nop
sub... |
unit_tests/static-tests/common/struct.dup0.error.asm | undisbeliever/untech-engine | 34 | 206173 | <filename>unit_tests/static-tests/common/struct.dup0.error.asm<gh_stars>10-100
include "../../../src/common/assert.inc"
include "../../../src/common/struct.inc"
// duplicate field
namespace test {
struct()
field(A, 2)
field(A, 1) // ERROR
endstruct()
}
|
oeis/241/A241772.asm | neoneye/loda-programs | 11 | 206174 | <gh_stars>10-100
; A241772: First differences of A065094 and also arithmetic means of initial terms of A065094.
; Submitted by <NAME>
; 1,1,2,2,3,4,6,7,9,12,15,19,24,30,37,45,55,68,82,99,119,143,171,203,241,286,338,398,468,548,642,749,873,1015,1177,1364,1577,1821,2099,2415,2775,3184,3647,4173,4768,5441,6201,7058,8025,9... |
oeis/065/A065654.asm | neoneye/loda-programs | 11 | 206175 | <filename>oeis/065/A065654.asm<gh_stars>10-100
; A065654: Fixed points for A065652, a permutation of the natural numbers.
; Submitted by <NAME>(s2)
; 0,1,2,4,8,24,80,784,8288,1053024,115519040,2186083514944,26210587691915648,9556921325803348132669824,1373760651292040932579353684066560
lpb $0
sub $0,1
mov $2,$1
a... |
src/kernel.asm | vbguyny/c64kernel | 2 | 206176 | <reponame>vbguyny/c64kernel<gh_stars>1-10
; Kernel for the C64
; ZP Address that are safe to use: $02; $2A; $52; $73-$90; $FB-$FE;
CharSet 2 ; Upper/lower cased characters
;; sys 3840
;;#region BASIC start up code
;;; ; 10 POKE 2303, 1
;;; 20 SYS (2304)
;;; 30 NEW
;;*=$0801
;; ;byte $0e, $08, $0a, ... |
programs/oeis/172/A172047.asm | karttu/loda | 0 | 206177 | ; A172047: n*(n+1)*(15*n^2-n-8)/12.
; 0,1,25,124,380,905,1841,3360,5664,8985,13585,19756,27820,38129,51065,67040,86496,109905,137769,170620,209020,253561,304865,363584,430400,506025,591201,686700,793324,911905,1043305,1188416,1348160,1523489,1715385,1924860,2152956,2400745,2669329,2959840,3273440,3611321,3974705,436484... |
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca.log_5_585.asm | ljhsiun2/medusa | 9 | 206181 | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r12
push %r14
push %rax
push %rbp
push %rcx
push %rdx
push %rsi
// Store
lea addresses_A+0xb8b1, %rdx
nop
nop
nop
nop
and %rcx, %rcx
mov $0x5152535455565758, %rsi
movq %rsi, %xmm2
movups %xmm2, (%rdx)
nop
nop
nop
nop
cmp %... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_141.asm | ljhsiun2/medusa | 9 | 206182 | <filename>Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_141.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r15
push %r8
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x1d6aa, %rax
nop
nop
sub $21125, %r14
mov (%rax), %ebx
nop
nop
nop
nop
sub %r15,... |
src/z80asm/dev/z80asm_lib/sbc_hl_sp.asm | ahjelm/z88dk | 640 | 206183 | <filename>src/z80asm/dev/z80asm_lib/sbc_hl_sp.asm
; Substitute for the z80 sbc hl,sp instruction
; CPU Min T Max T
; 8080 156 156
; 8085 154 154
; gbz80 232 232
; r2ka 4 4
; z180 10 10
; z80 15 15
; z80n 15 15
SECTION code_l_sccz80
PUBLIC __z80asm__sbc_hl_sp
__z80asm_... |
src/arch/i686/int_routines/interrupt_test_handler.asm | miklhh/os4 | 3 | 206184 | ;
; Part of OS4, interrupt_test_handler.asm
; Author <NAME>, miklhh
;
global interrupt_test_handler
interrupt_test_handler:
pusha
extern idt_initialized
mov byte[idt_initialized], 0xAB
popa
iret
|
externals/mpir-3.0.0/mpn/x86/k7/mul_basecase.asm | JaminChan/eos_win | 1 | 206185 | <gh_stars>1-10
dnl AMD K7 mpn_mul_basecase -- multiply two mpn numbers.
dnl Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
dnl
dnl This file is part of the GNU MP Library.
dnl
dnl The GNU MP Library is free software; you can redistribute it and/or
dnl modify it under the terms of the GNU Lesser G... |
FlaxVM/bin/Debug/Variable.asm | DreamVB/FlaxVM | 0 | 206186 | # Using Variables names with more than one letter
#Declare variables here
# [n] i the variable index in memory
# text is the name of the variable
.Global ([0] Num1, [1] Num2, [2] Result)
PUSH 200
STA Num1
PUSH 50
STA Num2
LDA Num1
LDA Num2
ADD
DUP
ADD
STA Result
LDA Result
SYS 3
PUSH '\n'
SYS 4
P... |
oeis/129/A129296.asm | neoneye/loda-programs | 11 | 206187 | <filename>oeis/129/A129296.asm
; A129296: Number of divisors of n^2 - 1 that are not greater than n.
; Submitted by <NAME>
; 1,1,2,2,4,2,5,3,5,3,8,2,8,4,6,4,9,2,12,4,8,4,10,3,10,6,8,4,16,2,14,4,7,8,12,4,12,4,10,4,20,2,16,6,8,6,12,3,18,6,12,4,16,4,20,8,10,4,16,2,16,6,8,12,16,4,16,4,16,4,30,2,15,6,8,12,16,4,24,5,12,5,16,... |
LAB 3/add2.asm | Mawlong/Computer-Organization-and-Architecture | 0 | 206188 | <reponame>Mawlong/Computer-Organization-and-Architecture<filename>LAB 3/add2.asm
#calculating the sum of two numbers stored in memory and displaying it
.data
abc :.word 5
def :.word 7
ghi :.word 0
line :.asciiz "The sum of the nos is: \n"
.text
.globl main
main:
lw $t0, abc
lw $t1, def
add... |
oeis/280/A280219.asm | neoneye/loda-programs | 11 | 206189 | ; A280219: a(1) = 1, a(n+1) is the numerator of n-th partial fraction of the continued fraction [1; 3, 9, 27, ..., 3^n].
; Submitted by <NAME>(s4)
; 1,4,37,1003,81280,19752043,14399320627,31491333963292,206614656532479439,4066796316020126761129,240140255871287121650385760,42540125910897696055021012987849,22607567054453... |
lib/chibiakumas/SrcMSX/MSX_V1_Footer.asm | gilbertfrancois/msx | 0 | 206190 | <reponame>gilbertfrancois/msx
; Learn Multi platform Z80 Assembly Programming... With Vampires!
;Please see my website at www.chibiakumas.com/z80/
;for the 'textbook', useful resources and video tutorials
;File MSX Footer
;Version V1.0
;Date 2018/3/01
;Content Generic Footer
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;... |
libsrc/_DEVELOPMENT/stdio/c/sdcc_iy/vscanf_unlocked_callee.asm | jpoikela/z88dk | 640 | 206192 | <reponame>jpoikela/z88dk
; int vscanf_unlocked_callee(const char *format, void *arg)
SECTION code_clib
SECTION code_stdio
PUBLIC _vscanf_unlocked_callee
EXTERN asm_vscanf_unlocked
_vscanf_unlocked_callee:
pop af
pop de
pop bc
push af
jp asm_vscanf_unlocked
|
Source/Main.asm | AbePralle/FGB | 0 | 206193 | <gh_stars>0
;***************************************************************************
;*
;* Main.asm - Standard ROM-image header
;*
;* All fields left to zero since RGBFix does a nice job of filling them in
;* in for us...
;*
;***************************************************************************
;INCL... |
sw/552tests/complex_demo2/perf-test-dep-all.asm | JPShen-UWM/ThreadKraken | 1 | 206194 | lbi r0, 27
addi r1, r0, 1
addi r2, r1, 2
addi r3, r2, 3
addi r4, r3, 4
addi r5, r4, 5
addi r6, r5, 6
addi r7, r6, 7
halt
|
oeis/284/A284879.asm | neoneye/loda-programs | 11 | 206195 | <filename>oeis/284/A284879.asm
; A284879: Positions of 0 in A284878; complement of A284880.
; Submitted by <NAME>(w4)
; 1,3,6,7,9,12,13,16,17,19,21,24,25,27,30,31,34,35,37,39,42,43,46,47,49,51,54,55,57,60,61,63,66,67,70,71,73,75,78,79,81,84,85,88,89,91,93,96,97,100,101,103,105,108,109,111,114,115,117,120,121,124,125,12... |
programs/oeis/026/A026810.asm | neoneye/loda | 22 | 206196 | <reponame>neoneye/loda
; A026810: Number of partitions of n in which the greatest part is 4.
; 0,0,0,0,1,1,2,3,5,6,9,11,15,18,23,27,34,39,47,54,64,72,84,94,108,120,136,150,169,185,206,225,249,270,297,321,351,378,411,441,478,511,551,588,632,672,720,764,816,864,920,972,1033,1089,1154,1215,1285,1350,1425,1495,1575,1650,17... |
MemoryRoutines.asm | TheTrueForce/IttiaraStandardHeaders | 0 | 206197 | <reponame>TheTrueForce/IttiaraStandardHeaders<gh_stars>0
;Memory.asi - Memory manipulation routines
;Copies a block of memory
;Disturbs A and Y
;Expects the source start address in $00 and $01, the destination start address in $02 and $03, and the offset to the end byte in Y
MEMCPY:
LDA ($00),Y
STA ($02),Y
DEY
BN... |
firmware/bootcode/bootcode.asm | kierdavis/tape-punch-controller | 0 | 206198 | org 7C00h
boot_jump:
jmp short boot_main
nop
filesystem_header:
times 59 db 0
boot_main:
prepare_to_display_string:
xor ax, ax
mov ds, ax
mov si, string
display_string_loop:
lodsb
test al, al
jz wait_for_key_press
mov ah, 0Eh
mov bx, 0007h
int 10h
jmp short display_string_loop
wait_for_key_pr... |
tests/asm/08-instructions.asm | earwig/crater | 16 | 206199 | <reponame>earwig/crater
;; Copyright (C) 2016 <NAME> <<EMAIL>>
;; Released under the terms of the MIT License. See LICENSE for details.
; ----- CRATER UNIT TESTING SUITE ---------------------------------------------
; 08-instructions.asm
; Exhaustive test of instruction syntax
.define COUNTER $C010
.define OFFSET 6
... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_806.asm | ljhsiun2/medusa | 9 | 206200 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r14
push %rax
push %rbx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x13d2, %rbx
clflush (%rbx)
nop
nop
cmp %rax, %rax
movb $0x61, (%rbx)
cmp $64582, %r14
lea addresses_normal_ht+0x11f92, %rsi
nop
nop
nop
nop
xor $51596, %r10
mov (%rsi), %edi
nop
nop
no... |
programs/oeis/332/A332699.asm | karttu/loda | 0 | 206201 | <reponame>karttu/loda
; A332699: First row of A332662, also main diagonal of A332667.
; 0,2,3,7,8,9,16,17,18,19,30,31,32,33,34,50,51,52,53,54,55,77,78,79,80,81,82,83,112,113,114,115,116,117,118,119,156,157,158,159,160,161,162,163,164,210,211,212,213,214,215,216,217,218,219,275,276,277,278
mov $22,$0
mov $24,$0
lpb $24... |
programs/oeis/059/A059722.asm | neoneye/loda | 22 | 206202 | <filename>programs/oeis/059/A059722.asm<gh_stars>10-100
; A059722: a(n) = n*(2*n^2 - 2*n + 1).
; 0,1,10,39,100,205,366,595,904,1305,1810,2431,3180,4069,5110,6315,7696,9265,11034,13015,15220,17661,20350,23299,26520,30025,33826,37935,42364,47125,52230,57691,63520,69729,76330,83335,90756,98605,106894,115635,124840,134521,... |
roms/tests/apu/blargg_apu_2005.07.30/source/apu_util.asm | MrKOSMOS/ANESE | 1,461 | 206203 | <reponame>MrKOSMOS/ANESE<filename>roms/tests/apu/blargg_apu_2005.07.30/source/apu_util.asm
; Set up APU with square 1 enabled and unhalted
.code
setup_apu:
sei
lda #$40 ; mode 0, interrupt disabled
sta $4017
lda #$01 ; enable square 1
sta $4015
lda #$10 ... |
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca_notsx.log_21829_1450.asm | ljhsiun2/medusa | 9 | 206204 | <filename>Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca_notsx.log_21829_1450.asm
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r13
push %r14
push %r8
push %rcx
push %rdi
push %rsi
// REPMOV
lea addresses_WC+0x1d49d, %rsi
lea addresses_A+0x6e1d, %rd... |
main/int3hand.asm | arbruijn/d1dos | 2 | 206205 | <reponame>arbruijn/d1dos<gh_stars>1-10
;THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
;SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
;END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
;ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY... |
mem/mem_zero_detect_avx512.asm | hzhuang1/isa-l | 309 | 206206 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Copyright(c) 2011-2018 Intel Corporation All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions
; are met:
; * Redistributions of so... |
Transynther/x86/_processed/AVXALIGN/_st_/i3-7100_9_0x84_notsx.log_21829_1810.asm | ljhsiun2/medusa | 9 | 206207 | .global s_prepare_buffers
s_prepare_buffers:
push %r15
push %r8
push %rax
push %rbp
push %rsi
lea addresses_D_ht+0x1302d, %r15
nop
nop
nop
inc %rax
movl $0x61626364, (%r15)
nop
nop
nop
nop
sub %r8, %r8
lea addresses_WT_ht+0x1942d, %rax
and $21188, %r15
and $0xffffffffffffffc0, %rax
vmovaps (%rax), %ymm0
vextracti128 $0... |
Microprocessor/keybrd.asm | Nmane1612/Nihar-Mane | 3 | 206209 | <filename>Microprocessor/keybrd.asm<gh_stars>1-10
; this sample shows the use of keyboard functions.
; try typing something into emulator screen.
;
; keyboard buffer is used, when someone types too fast.
;
; for realistic emulation, run this example at maximum speed
;
; this code will loop until you press esc k... |
Transynther/x86/_processed/P/_un_/i3-7100_9_0x84_notsx.log_21_790.asm | ljhsiun2/medusa | 9 | 206210 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r15
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0xfa5d, %r12
nop
nop
nop
nop
cmp %r8, %r8
movups (%r12), %xmm1
vpextrq $0, %xmm1, %rsi
nop
dec %r15
lea addresses_A_ht+0x130fd, %r14
xor %r12, %r12
mov (%r14), %di
nop
nop
and %r... |
Codes/Lab_3/PRINT_2_STRING.asm | Sakib250/CSE331L_Section_7_Summer_2020_NSU | 2 | 206211 |
.MODEL SMALL
.STACK 100H
.DATA
MSG1 DB "HELLO WORLD$"
MSG2 DB "ASSEMBLY LANGUAGE CSE331$"
.CODE
MAIN PROC
MOV AX, @DATA
MOV DS, AX
LEA DX, MSG1
MOV AH, 9
INT 21H
MOV AH, 2
MOV DL, 0DH
INT 21H
MOV DL, 0AH
INT 21H
LEA DX, MSG2
MO... |
tests/nasm/mov16.asm | brenden7158/v86 | 12,700 | 206212 | ;;; Test JIT optimization of opcodes 0x89 and 0x8b
global _start
section .data
align 16
mydword:
dd 0xcafebabe
myaddress:
dd 0xdeadbeef
%include "header.inc"
;; Load 32-bit values to confirm that the 16-bit movs do not overwrite existing values here
mov eax, 0xcafeb055
mov esi, 0x1bada551
... |
programs/oeis/093/A093835.asm | neoneye/loda | 22 | 206213 | <reponame>neoneye/loda
; A093835: n*Jacobsthal(n).
; 0,1,2,9,20,55,126,301,680,1539,3410,7513,16380,35503,76454,163845,349520,742747,1572858,3320497,6990500,14680071,30758222,64312669,134217720,279620275,581610146,1207959561,2505397580,5189752159
mov $2,$0
lpb $2
add $1,$3
mov $3,$0
add $0,$1
mov $1,$3
sub $... |
thirdparty/ffmpeg/libavfilter/x86/vf_maskedclamp.asm | yashrajsingh1998/ApraPipes1 | 30 | 206214 | ;*****************************************************************************
;* x86-optimized functions for maskedclamp filter
;*
;* Copyright (c) 2019 <NAME>
;*
;* This file is part of FFmpeg.
;*
;* FFmpeg is free software; you can redistribute it and/or
;* modify it under the terms of the GNU Lesser General Public
... |
tests/function.asm | jacobbieker/MIPS-In-C | 1 | 206215 | ##############################################
# Fall 2015, CIS 314 Computer Organization #
# Major Class Project #
##############################################
# This tests for function calls #############
# By calculating (a*b) , (a* (b-1)), ...(a*1)
#######################################... |
src/sound/main_menu_music/channel1.asm | Gegel85/RunnerGB | 0 | 206216 | <reponame>Gegel85/RunnerGB
musicChan1MainMenuTheme::
setRegisters $05, $C1, $57, $00, $00
.loop:
setVolume $57
repeat 13
setFrequency NOTE_G, $80
wait MINIM
setFrequency NOTE_A * 2, $80
wait MINIM
setFrequency NOTE_B * 2, $80
wait MINIM
setFrequency NOTE_C * 2, $80
wait MINIM
setFrequency NOTE_B * 2, $80
... |
programs/oeis/024/A024916.asm | neoneye/loda | 22 | 206218 | <filename>programs/oeis/024/A024916.asm
; A024916: a(n) = Sum_{k=1..n} k*floor(n/k); also Sum_{k=1..n} sigma(k) where sigma(n) = sum of divisors of n (A000203).
; 1,4,8,15,21,33,41,56,69,87,99,127,141,165,189,220,238,277,297,339,371,407,431,491,522,564,604,660,690,762,794,857,905,959,1007,1098,1136,1196,1252,1342,1384,... |
libsrc/target/pencil2/input/in_KeyPressed.asm | Frodevan/z88dk | 640 | 206219 | <filename>libsrc/target/pencil2/input/in_KeyPressed.asm
; uint in_KeyPressed(uint scancode)
SECTION code_clib
PUBLIC in_KeyPressed
PUBLIC _in_KeyPressed
EXTERN in_keyrowmap
; Determines if a key is pressed using the scan code
; returned by in_LookupKey.
; enter : l = scan row
; h = key mask
; exit : carry =... |
programs/oeis/160/A160428.asm | karttu/loda | 0 | 206220 | ; A160428: Number of ON cells at n-th stage of three-dimensional version of the cellular automaton A160410, using cubes.
; 0,8,64,120,512,568,960,1352,4096,4152,4544,4936,7680,8072,10816,13560,32768,32824,33216,33608,36352,36744,39488,42232,61440,61832,64576,67320,86528,89272,108480,127688,262144
mov $2,$0
mov $9,$0
l... |
Driver/Socket/PPP/pppUtils.asm | steakknife/pcgeos | 504 | 206221 | <filename>Driver/Socket/PPP/pppUtils.asm
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) Geoworks 1995 -- All Rights Reserved
GEOWORKS CONFIDENTIAL
PROJECT: PC GEOS
MODULE:
FILE: pppUtils.asm
AUTHOR: <NAME>, May 16, 1995
ROUTINES:
Name Descrip... |
libsrc/_DEVELOPMENT/arch/sms/vram/c/sccz80/sms_copy_mem_to_vram_unsafe.asm | jpoikela/z88dk | 640 | 206222 | <filename>libsrc/_DEVELOPMENT/arch/sms/vram/c/sccz80/sms_copy_mem_to_vram_unsafe.asm
; void sms_copy_mem_to_vram_unsafe(void *src, unsigned int n)
SECTION code_clib
SECTION code_crt_common
PUBLIC sms_copy_mem_to_vram_unsafe
EXTERN asm_sms_copy_mem_to_vram_unsafe
sms_copy_mem_to_vram_unsafe:
pop af
pop bc
... |
src/kernel/arch/aarch64/asm/k_syscall.asm | aryanmaurya1/ArvernOS | 77 | 206223 | .global syscall_handler
.include "macro-defs.asm"
syscall_handler:
kernel_entry 0
mrs x25, esr_el1 // read the syndrome register
lsr x24, x25, #26 // exception class
cmp x24, #0x15 // SVC in 64-bit state
b.ne not_a_syscall
adr x27, syscall_handlers // load syscall tabl... |
programs/oeis/065/A065034.asm | karttu/loda | 0 | 206226 | <reponame>karttu/loda<gh_stars>0
; A065034: a(n) = Lucas(2*n) + 1.
; 3,4,8,19,48,124,323,844,2208,5779,15128,39604,103683,271444,710648,1860499,4870848,12752044,33385283,87403804,228826128,599074579,1568397608,4106118244,10749957123,28143753124,73681302248,192900153619,505019158608,1322157322204,3461452808003,906220110... |
src/assets/hello-world.asm | daid/gb-asm-tutorial-v2 | 0 | 206228 | <filename>src/assets/hello-world.asm<gh_stars>0
; Lines beginning with `ANCHOR` and `ANCHOR_END` are used by mdBook <https://rust-lang.github.io/mdBook/format/mdbook.html#including-portions-of-a-file>
; Note that lines matching /^; ANCHOR/, as well as the first two lines, are stripped from the online version
; ANCHOR: ... |
Transynther/x86/_processed/NONE/_un_xt_/i3-7100_9_0x84_notsx.log_21829_1356.asm | ljhsiun2/medusa | 9 | 206230 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r8
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0xf496, %rsi
lea addresses_D_ht+0xe2d2, %rdi
nop
nop
cmp $56109, %rbx
mov $13, %rcx
rep movsq
nop
nop
nop
nop
lfence
lea addresses_D_ht+0x130d6, %rbp
clflush (%rbp)
nop
cmp %rbx... |
oeis/052/A052981.asm | neoneye/loda-programs | 11 | 206233 | <filename>oeis/052/A052981.asm
; A052981: Expansion of ( 1-x ) / ( 1-4*x-3*x^2+3*x^3 ).
; Submitted by <NAME>(s4)
; 1,3,15,66,300,1353,6114,27615,124743,563475,2545284,11497332,51934755,234595164,1059692925,4786752927,21622304991,97670399970,441188256072,1992897309225,9002142805206,40663698380283,183682530009075,82971... |
sdktools/masm/fmsghdr.asm | npocmaka/Windows-Server-2003 | 17 | 206234 | <reponame>npocmaka/Windows-Server-2003<filename>sdktools/masm/fmsghdr.asm<gh_stars>10-100
title fmsghdr - far message header and finder
;--------------------------------------------------------------------------
;
; Microsoft C Compiler Runtime for MS-DOS
;
; (C)Copyright Microsoft Corporation, 1986
;
;... |
learn-assembly/asm101/asm101-05.asm | hailehong95/Practice-Coding | 0 | 206236 | <gh_stars>0
; asm101-05: Xuat hai chuoi ky tu, moi chuoi mot dong
.model small
.stack 100h
.data
tb1 db "Le <NAME>$"
tb2 db 13,10,"Studies Information Secuirty$"
.code
main proc
; Khoi tao thanh ghi ds
mov ax, @data
mov ds, ax
; Doan in ra chuoi tb1
mov ah, 09h
lea dx, tb1
int... |
MIPS_Pipeline/case4.asm | LaoHuang-xX/Computer_Compiler_Project | 0 | 206237 | <filename>MIPS_Pipeline/case4.asm<gh_stars>0
addi $1, $0, 20
addi $2, $0, 0
addi $3, $0, 3
addi $4, $0, 0
loop:beq $2, $1, end
bne $3, $4, add
sub $4, $4, $3
addi $2, $2, 1
j loop
add:addi $4, $4, 1
addi $2, $2, 1
j loop
end:addi $9, $0, 1
|
_build/dispatcher/jmp_ippsHashMethod_SHA1_NI_e13fe887.asm | zyktrcn/ippcp | 1 | 206238 | extern m7_ippsHashMethod_SHA1_NI:function
extern n8_ippsHashMethod_SHA1_NI:function
extern y8_ippsHashMethod_SHA1_NI:function
extern e9_ippsHashMethod_SHA1_NI:function
extern l9_ippsHashMethod_SHA1_NI:function
extern n0_ippsHashMethod_SHA1_NI:function
extern k0_ippsHashMethod_SHA1_NI:function
extern ippcpJumpIndexForMe... |
third_party/fasmarm/EXAMPLES/ARMELF/armelf.asm | matanlurey/armv4t.dart | 8 | 206239 | format ELF executable
entry start
segment readable executable
start: mov r0,0
add r1,pc,hello-$-8
mov r2,hello_len
swi 0x900004
mov r0,6
swi 0x900001
hello: db 'Hello world',10
hello_len=$-hello
;dummy section for bss, see http://board.flatassembler.net/topic.php?t=3689
segment writeable
|
programs/oeis/206/A206419.asm | neoneye/loda | 22 | 206240 | ; A206419: Fibonacci sequence beginning 11, 7.
; 11,7,18,25,43,68,111,179,290,469,759,1228,1987,3215,5202,8417,13619,22036,35655,57691,93346,151037,244383,395420,639803,1035223,1675026,2710249,4385275,7095524,11480799,18576323,30057122,48633445,78690567,127324012,206014579,333338591,539353170,872691761,1412044931,22847... |
data/pokemon/base_stats/primeape.asm | AtmaBuster/pokeplat-gen2 | 6 | 206241 | <reponame>AtmaBuster/pokeplat-gen2
db 0 ; species ID placeholder
db 65, 105, 60, 95, 60, 70
; hp atk def spd sat sdf
db FIGHTING, FIGHTING ; type
db 75 ; catch rate
db 149 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_F50 ; gender ratio
db 20 ; step cycles to hatch
INCBIN "gfx/pokemon/primeap... |
code/4/first.asm | GeekHades1/AssemblyCode | 1 | 206242 | ; segment
; ends 是一段伪指令,意示着某个代码段。
; assume 是假设某一段寄存器和程序中的某一个用
; segment ... ends 关联的段。
assume cs:codesg ;
codesg segment ; 伪指令
mov ax, 0123H
mov bx, 0456H
add ax, bx
add ax, ax
mov ax, 4c00H
int 21H
codesg ends
end ; 汇编程序的结束标记
|
thirdparty/ffmpeg/libavutil/x86/emms.asm | yashrajsingh1998/ApraPipes1 | 2,151 | 206243 | ;*****************************************************************************
;* Copyright (C) 2013 <NAME>
;*
;* This file is part of FFmpeg.
;*
;* FFmpeg is free software; you can redistribute it and/or
;* modify it under the terms of the GNU Lesser General Public
;* License as published by the Free Software Foundati... |
src/arch/x86_64/boot/long_mode.asm | Tempest7490/haiirOS | 1 | 206244 | global long_mode_entry
section .text
[BITS 64]
long_mode_entry:
; set kernel data segment -----------------
mov ax, 0x10
mov ss, ax
mov ds, ax
mov es, ax
mov fs, ax
mov gs, ax
; -----------------------------------------
extern load_tss
call load_tss
; go to kernel -------... |
programs/oeis/062/A062356.asm | neoneye/loda | 22 | 206245 | <reponame>neoneye/loda
; A062356: a(n) = floor(n/phi(n)).
; 1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2
mov $1,$0
add $0,1
seq $1,10 ; Euler totient function phi(n... |
flicker-vsync.asm | cslarsen/c64-examples | 15 | 206246 | <reponame>cslarsen/c64-examples
!source "basic-boot.asm"
+start_at $0900
sei
ldx #$00
ldy #$7f
sty $dc0d
sty $dd0d
lda $dc0d
lda $dd0d
lda #$01
sta $d01a
lda #<.flicker
ldx #>.flicker
sta $314
stx $315
; Line number, would be better ot do this on retrace
lda #$00
sta $d012
lda $d011
and #$7f
sta $d011
cli
jmp *... |
DCS216 Operating System/ep6/kernel/kernel.asm | Lan-Jing/Courses | 1 | 206247 | ; a kernel(monitor now) that provides program options;
BITS 16
prefixCount equ 4
kernelSeg equ 0x800
pcbSize equ 41
global set_seg ; start point of the whole program
extern _pcbList ; pcb list
extern _proCount ; number of active processes
extern _pcbPtr ; pointer to the current process
extern ... |
win32/przydatne/WyswietlLiczbeHex+ adresowanie/liczbahex.asm | QAston/fasm-2006 | 0 | 206248 | format PE GUI 4.0
include 'win32a.inc'
entry start
section '.data' data readable writeable
TTytul db 'Liczba Hexadecynalna:',0
BWyswietl: dd 0,0,0
BLiczba: dd 0ffffffffh
db 0
BWTemp: dd 0h
db 0
section '.code' code readable executable
start:
mov eax,[BLiczba]
mov ebx,10h
lea esi,[BWTemp]
lea edi,[BWyswietl]
zrobascii:
... |
programs/oeis/030/A030883.asm | neoneye/loda | 22 | 206249 | <filename>programs/oeis/030/A030883.asm
; A030883: [ exp(1/18)*n! ].
; 1,2,6,25,126,761,5327,42623,383610,3836105,42197156,506365881,6582756454,92158590368,1382378855524,22118061688393,376007048702693,6768126876648478,128594410656321090,2571888213126421811
add $0,1
mov $2,1
lpb $0
mul $2,$0
sub $0,1
div $1,18
... |
Transynther/x86/_processed/AVXALIGN/_st_sm_/i3-7100_9_0xca_notsx.log_21829_970.asm | ljhsiun2/medusa | 9 | 206250 | <filename>Transynther/x86/_processed/AVXALIGN/_st_sm_/i3-7100_9_0xca_notsx.log_21829_970.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r14
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x1c9ad, %r12
nop
nop
xor %r10, %r10
mov $0x6162636465666768, %rdx
mo... |
oeis/273/A273627.asm | neoneye/loda-programs | 11 | 206251 | ; A273627: A divisibility sequence: (1/8)*(Pell(4*n) - 2*Pell(2*n)).
; Submitted by <NAME>(s1.)
; 1,48,1715,58752,1998709,67914000,2307174311,78376578048,2662499775145,90446634986352,3072523201721819,104375342876112000,3545689138389464221,120449055384533383248,4091722194064948458575,138998105543576763850752,47218438662... |
sys/boot/st/header.asm | olifink/smsqe | 0 | 206252 | ; ATARI: TOS header for bootloader
section base
dc.w $FAFA,1 ; patch table
dc.l text-*
base
bra.s start
text dc.l -(start-base)-4 ; + length of file makes 0000 = fixup
dc.l 0 ; data
dc.l 0 ; BSS
dc.l 0 ; symbol
dc.l 0 ; res
dc.l 0 ; res
dc.w 0 ; res
start
pea boot ; the boot cod... |
_maps/obj36.asm | NatsumiFox/AMPS-Sonic-1-2005 | 2 | 206253 | ; ---------------------------------------------------------------------------
; Sprite mappings - spikes
; ---------------------------------------------------------------------------
dc.w byte_CFF4-Map_obj36
dc.w byte_D004-Map_obj36
dc.w byte_D014-Map_obj36
dc.w byte_D01A-Map_obj36
dc.w byte_D02A-Map_obj36
... |
src/fs/Tell.asm | beckadamtheinventor/BOSos | 1 | 206255 | ;@DOES get the tell of a file handle
;@INPUT A = file handle
;@OUTPUT HL = file tell
;@OUTPUT HL = -1 on fail
;@DESTROYS AF,BC,IX
fs_Tell:
call fs_GetFileHandlePtr
jr nc,.failed
ld hl,(ix+1) ;file tell
ret
.failed:
scf
sbc hl,hl
ret
|
kern/i686/io/io.asm | greck2908/LudOS | 44 | 206256 | <filename>kern/i686/io/io.asm
global insw
global outsw
insw:
push ebp
mov ebp, esp
mov ecx, DWORD [ebp+16] ; number of repetitions
mov edi, DWORD [ebp+12] ; destination address
mov dx, WORD [ebp+8] ; io port
cld
rep insw
leave
ret
outsw:
push ebp
mov ebp, esp
... |
programs/oeis/315/A315034.asm | neoneye/loda | 22 | 206257 | <reponame>neoneye/loda<filename>programs/oeis/315/A315034.asm<gh_stars>10-100
; A315034: Coordination sequence Gal.6.323.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,9,15,19,25,29,35,39,45,49,54,59,63,69,73,79,83,89,93,99,10... |
Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2.log_21829_514.asm | ljhsiun2/medusa | 9 | 206258 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r15
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0xda02, %rsi
lea addresses_WC_ht+0x1d602, %rdi
nop
sub $38158, %r15
mov $66, %rcx
rep movsq
nop
nop
nop
and %r11, %r11
lea addresses_D_ht+0x12402, %rbp
nop
nop
sub %r15, %r15
m... |
src/sm/hirom.asm | PJBoy/alttp_sm_combo_randomizer_rom | 31 | 206259 | ; Super Metroid ExHiROM patch
;
exhirom
!SRAM_BANK = #$00a1
!SRAM_BASE = $a16000 ; Select where SRAM is mapped to (default is a0:6000-7FFF)
org $c08000 ; Disable copy protection screen
db $ff
;========================== SRAM Load/Save Repoint ===============================
org $c08257
sta !SRAM_BASE+$1fe0,x
... |
tmp1/c55x-sim2/foo/Debug/csl_usb_dma_example.asm | jwestmoreland/eZdsp-DBG-sim | 1 | 206260 | <gh_stars>1-10
;*******************************************************************************
;* TMS320C55x C/C++ Codegen PC v4.4.1 *
;* Date/Time created: Sat Sep 29 23:08:37 2018 *
;*************************************************************... |
ee/hot/fitem.asm | olifink/smsqe | 0 | 206262 | <reponame>olifink/smsqe
; Procedure find Hotkey item V2.00 1988 <NAME> QJUMP
section hotkey
xdef hot_fitem
xref hot_scpy
xref hk_fitem
;+++
; Find Hotkey item
;
; d1 r hotkey
; d2 r hotkey item number (-ve if off)
; a1 cr relative pointer ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.