max_stars_repo_path
stringlengths
3
255
max_stars_repo_name
stringlengths
5
116
max_stars_count
int64
0
107k
id
stringlengths
1
7
content
stringlengths
63
1.05M
oeis/110/A110903.asm
neoneye/loda-programs
11
44285
<reponame>neoneye/loda-programs ; A110903: Difference between the factorial of n and the double factorial of n. ; Submitted by <NAME> ; 0,0,0,3,16,105,672,4935,39936,361935,3624960,39906405,478955520,6226885665,87177646080,1307672340975,20922779566080,355687393636575,6402373519933440,121645099754102925,2432902004460748...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1434.asm
ljhsiun2/medusa
9
44286
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r8 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_UC_ht+0x13e44, %rsi lea addresses_WC_ht+0x1ca8, %rdi nop nop nop cmp %rbp, %rbp mov $42, %rcx rep movsl nop nop nop xor %r10, %r10 lea addresses_D_ht+0xd514, %rdx nop ...
programs/oeis/006/A006327.asm
neoneye/loda
22
44287
<gh_stars>10-100 ; A006327: a(n) = Fibonacci(n) - 3. Number of total preorders. ; 0,2,5,10,18,31,52,86,141,230,374,607,984,1594,2581,4178,6762,10943,17708,28654,46365,75022,121390,196415,317808,514226,832037,1346266,2178306,3524575,5702884,9227462,14930349,24157814,39088166,63245983,102334152,165580138,267914293,433494...
oeis/099/A099582.asm
neoneye/loda-programs
11
44289
<filename>oeis/099/A099582.asm ; A099582: Sum C(n-k,k-1)4^(n-k-1), k=0..floor(n/2). ; Submitted by <NAME> ; 0,0,1,4,24,112,560,2688,13056,62976,304384,1469440,7096320,34263040,165441536,798818304,3857055744,18623496192,89922273280,434183077888,2096421666816,10122418978816,48875363631104,235991130439680 mov $1,2 pow $1...
oeis/069/A069986.asm
neoneye/loda-programs
11
44291
; A069986: Denominator of b(n)=binomial(2n,n)^3*(42n+5)/2^(12n+4). ; 16,8192,33554432,17179869184,562949953421312,288230376151711744,1180591620717411303424,604462909807314587353088,158456325028528675187087900672,81129638414606681695789005144064 mul $0,2 seq $0,46161 ; a(n) = denominator of binomial(2n,n)/4^n. pow $0,3...
programs/oeis/066/A066182.asm
karttu/loda
0
44292
<gh_stars>0 ; A066182: Permutation of the integers with cycle form {1}, {3, 2}, {6, 5, 4}, {10, 9, 8, 7}, ... ; 1,3,2,6,4,5,10,7,8,9,15,11,12,13,14,21,16,17,18,19,20,28,22,23,24,25,26,27,36,29,30,31,32,33,34,35,45,37,38,39,40,41,42,43,44,55,46,47,48,49,50,51,52,53,54,66,56,57,58,59,60,61,62,63,64,65,78,67,68,69,70,71,7...
test-klc3/issue_detection/jmp_instead_of_ret.asm
liuzikai/klc3
0
44293
; This program uses JMP instead of RET ; KLC3 is expected to detect and give warning about WARN_DUPLICATE_COLOR ; 2020.04.21 by liuzikai .ORIG x3000 MAIN LEA R0, MAIN_ENTER_OUTPUT PUTS JSR SUB1 LEA R0, MAIN_RET_OUTPUT PUTS HALT SUB1 ST R7, SUB1_R7_STORE LEA R0, SUB1_ENTER_OUTPUT P...
IntelFsp2Pkg/FspSecCore/X64/Fsp22ApiEntryS.nasm
mefff/edk2
0
44295
;; @file ; Provide FSP API entry points. ; ; Copyright (c) 2022, Intel Corporation. All rights reserved.<BR> ; SPDX-License-Identifier: BSD-2-Clause-Patent ;; SECTION .text ; ; Following functions will be provided in C ; extern ASM_PFX(FspApiCommon) extern ASM_PFX(FspMultiPhaseSiInitApiHandler) S...
book-01/Assembly/asm/avx/scalar/avx_s_compare_vcomisd_double.asm
gfurtadoalmeida/study-assembly-x64
2
44296
.code ; int AVX_Scalar_Compare_VCOMISD_Double_(double a, double b) AVX_Scalar_Compare_VCOMISD_Double_ proc xor eax, eax vcomisd xmm0, xmm1 jb Smaller ja Bigger ret ; If equal will stop here Smaller: dec rax ret Bigger: inc rax ret AVX_Scalar_Compare_VCOMISD_Double_ endp end
Program1.asm
pbhandari9541/COSC-2329
0
44297
;<NAME> ;Program: 1 ;Title: Display the name ; org 100h section .data msg1 DB '<NAME> $' exCode DB 0 section .text start: mov dx, msg1 ;get message1 mov ah,09h ;display string function int 21h ;Display message1 exit: mov ah,4Ch ;DOS function: exit program mov al,[exCode] ;Return exit code v...
src/SelectionSort.asm
Kaybass/CSI-370-Final
0
44300
; ; <NAME> ; ; int * SelectionSort(int * array, int arraylength) ; section .text global SelectionSort SelectionSort: push ebp mov ebp, esp mov esi, [ebp+8] mov ecx, [ebp+12] dec ecx L1: mov edi, esi mov eax, edi mov ebx, [esi] push ecx ...
asm/final2.asm
IronHeart7334/AssemblyPrograms
0
44301
; general comments ; preprocessor directives .586 .MODEL FLAT ; external files to link with ; stack configuration .STACK 4096 ; named memory allocation and initialization .DATA oldRoot REAL4 1.5 newRoot REAL4 0.0 three REAL4 3.0 ; can't do immediates four REAL4 4.0 nine REAL4 9.0 ; names of procedures defined i...
src/multicpu_multimem/instructions1.asm
dryvenn/TLM
0
44302
nop nop # put b-vals chr r0 0xb0 chr r1 0xb1 chr r2 0xb2 chr r3 0xb3 chr r4 0xb4 chr r5 0xb5 chr r6 0xb6 chr r7 0xb7 # put them in the same spots at the same time str r0 0x0 str r1 0x1 str r2 0x2 str r3 0x3 str r4 0x10000000 str r5 0x10000001 str r6 0x10000002 str r7 0x10000003 # load them back ldr r0 0x0 ldr r1 0x1 ld...
Opus/asm/fieldcrn.asm
Computer-history-Museum/MS-Word-for-Windows-v1.1
2
44303
include w2.inc include noxport.inc include consts.inc include structs.inc createSeg fieldcr_PCODE,fieldcr,byte,public,CODE ; DEBUGGING DECLARATIONS ifdef DEBUG midFieldcrn equ 13 ; module ID, for native asserts NatPause equ 1 endif ;DEBUG ifdef NatPause PAUSE MACRO int 3 ENDM e...
8086/add.asm
saransh808/ASSEMBLY_LANGUAGE
0
44304
<gh_stars>0 DATA SEGMENT N1 DW 1234H N2 DW 2345H SUM DW ? DATA ENDS CODE SEGMENT ASSUME CS:CODE, DS:DATA START : MOV AX,DATA MOV DS,AX MOV AX,N1 ADD AX,N2 MOV SUM,AX INT 3 CODE ENDS END START
vm/asm_constructions_test/TestEqualityConstructionTest.asm
MarkoVMicic/nand2tetris-solutions
0
44305
// Initialize stack pointer to start at 256 (i.e. RAM[0] contains 256) @256 D=A @SP M=D // Push two numbers on the stack. @8 D=A @SP A=M M=D @SP M=M+1 @7 D=A @SP A=M M=D @SP M=M+1 // Equality check @SP // A:0 M:258 D:? M=M-1 // A:// Initialize stack pointer to start at 256 (i.e. RAM[0] contains 256)...
code/editor/input.asm
abekermsx/skooted
3
44306
<filename>code/editor/input.asm ; Get input from keyboard/joysticks ; Out: A: result get_input: ld b,3 get_input_stick_check: ld a,b dec a push bc call GTSTCK pop bc or a ret nz djnz get_input_stick_check xor a get_input_fire1_check: ...
sw/programs/extention_tipke/main.asm
matejpolj/neorv32
0
44307
<reponame>matejpolj/neorv32 main.elf: file format elf32-littleriscv Disassembly of section .text: 00000000 <_start>: 0: 00000037 lui zero,0x0 00000004 <__crt0_pointer_init>: 4: 80002117 auipc sp,0x80002 8: ff810113 addi sp,sp,-8 # 80001ffc <__ctr0_io_space_begin+0x800021f...
wof/lcs/enemy/92.asm
zengfr/arcade_game_romhacking_sourcecode_top_secret_data
6
44308
copyright zengfr site:http://github.com/zengfr/romhack 001590 lea ($20,A0), A0 003D2C move.b (A1)+, ($92,A0) [enemy+91] 003D30 move.b (A1)+, ($3c,A0) [enemy+92] 003D8E move.b (A1)+, ($92,A0) [enemy+91] 003D92 move.b (A1)+, ($3c,A0) [enemy+92] 00829C move.b ($92,A0), D0 [enemy+84] 0082A0 ext.w D0 [en...
docs/music/sonidosfxN1.mus.asm
Pentacour/viruslqp79_msx
4
44309
; Tabla de instrumentos TABLA_PAUTAS: DW PAUTA_0,PAUTA_1,PAUTA_2,PAUTA_3,PAUTA_4,PAUTA_5,PAUTA_6,PAUTA_7,PAUTA_8,PAUTA_9,PAUTA_10,PAUTA_11,PAUTA_12,PAUTA_13,PAUTA_14,PAUTA_15 ; Tabla de efectos TABLA_SONIDOS: DW SONIDO0,SONIDO1,SONIDO2,SONIDO3,SONIDO4,SONIDO5,SONIDO6,SONIDO7,SONIDO8,SONIDO9,SONIDO10 ;Pautas (...
Working Disassembly/Levels/SOZ/Misc Object Data/Map - Push Switch.asm
TeamASM-Blur/Sonic-3-Blue-Balls-Edition
5
44310
<filename>Working Disassembly/Levels/SOZ/Misc Object Data/Map - Push Switch.asm dc.w word_41B5A-Map_SOZPushSwitch dc.w word_41B68-Map_SOZPushSwitch word_41B5A: dc.w 2 ; DATA XREF: ROM:00041B56o dc.b 8, $C, 0, 0, $FF, $E0 dc.b 8, $C, 8, 0, 0, 0 word_41B68: dc.w 1 ; DATA XREF: ROM:00041B56o d...
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca.log_21829_563.asm
ljhsiun2/medusa
9
44311
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %r14 push %r9 push %rcx push %rdi push %rdx push %rsi lea addresses_UC_ht+0x16f5, %rsi lea addresses_D_ht+0xaf5, %rdi nop nop nop inc %r14 mov $100, %rcx rep movsl nop nop nop nop xor %r9, %r9 lea addresses_UC_ht+0xcda5, %rdx nop add %r13, %r13 mov $...
tools/tests/if_goto_macro_test.asm
freespace/nand2tetris
20
44312
@1 $if_A_goto TEST_D @FAIL 0;JEQ (TEST_D) @1 D=A $if_D_goto TEST_M @FAIL 0;JEQ (TEST_M) @SP M=1 $if_M_goto TEST_VAR @FAIL 0;JEQ (TEST_VAR) @X M=1 $if_var_goto X SUCCESS @FAIL 0;JEQ (SUCCESS) @SUCCESS 0;JEQ (FAIL) @FAIL 0;JEQ
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_235.asm
ljhsiun2/medusa
9
44314
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %r8 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x15e91, %rsi lea addresses_WC_ht+0xe949, %rdi xor %rdx, %rdx mov $94, %rcx rep movsq nop nop cmp $54017, %r8 lea addresses_A_ht+0x12b68, %r13 add $50009, %rsi mov (%r13), %rcx ...
ioq3/build/release-js-js/baseq3/ui/ui_menu.asm
RawTechnique/quake-port
1
44315
<reponame>RawTechnique/quake-port<filename>ioq3/build/release-js-js/baseq3/ui/ui_menu.asm code proc MainMenu_ExitAction 0 0 ADDRFP4 0 INDIRI4 CNSTI4 0 NEI4 $71 ADDRGP4 $70 JUMPV LABELV $71 ADDRGP4 UI_PopMenu CALLV pop ADDRGP4 UI_CreditMenu CALLV pop LABELV $70 endproc MainMenu_ExitAction 0 0 export Main_MenuEvent proc ...
Engine Hacks/MSS/asm/Growth Getters/Get_Spd_Growth.asm
sme23/MekkahRestrictedHackComp1
3
44316
.thumb .org 0x0 @r0=battle struct or char data ptr ldr r1,[r0] ldrb r1,[r1,#31] @spd growth mov r2,#13 @index of spd boost ldr r3,Extra_Growth_Boosts bx r3 .align Extra_Growth_Boosts: @
02-bootsector-print/bl_conditional.asm
sreejithnt/os
0
44317
<reponame>sreejithnt/os ; ; A simple boot sector that prints message to the screen using bios routine ; mov bx, 30 cmp bx, 4 jle print_a cmp bx, 40 je print_b mov al, 'C' jmp the_end print_a: mov al, 'A' jmp the_end print_b: mov al, 'B' jmp the_end the_end: mov ah, 0x0e ; 0eh --> scrolling tele type mode i...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2744.asm
ljhsiun2/medusa
9
44319
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r8 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0xc936, %r8 nop nop nop nop sub %rdx, %rdx movl $0x61626364, (%r8) nop nop nop nop nop xor %r10, %r10 lea addresses_WC_ht+0x2587, %rsi lea addresses_UC_ht+0x1569f...
Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/SetJump.asm
bitcrystal/edk
14
44320
<filename>Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/SetJump.asm ; Copyright (c) 2004, Intel Corporation ; All rights reserved. This program and the accompanying materials ; are licensed and made available under the terms and co...
programs/oeis/190/A190593.asm
neoneye/loda
22
44321
; A190593: Maximal digit in base-4 expansion of n. ; 0,1,2,3,1,1,2,3,2,2,2,3,3,3,3,3,1,1,2,3,1,1,2,3,2,2,2,3,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,2,3,1,1,2,3,2,2,2,3,3,3,3,3,1,1,2,3,1,1,2,3,2,2,2,3,3,3,3,3,2,2,2,3 dif $0,4 lpb $0 mov $1,$0 seq $1,30103 ; Base 4 reversal of n ...
programs/oeis/144/A144112.asm
neoneye/loda
22
44322
; A144112: Weight array W={w(i,j)} of the natural number array A000027. ; 1,1,2,2,1,3,3,1,1,4,4,1,1,1,5,5,1,1,1,1,6,6,1,1,1,1,1,7,7,1,1,1,1,1,1,8,8,1,1,1,1,1,1,1,9,9,1,1,1,1,1,1,1,1,10,10,1,1,1,1,1,1,1,1,1,11,11,1,1,1,1,1,1,1,1,1,1,12,12,1,1,1,1,1,1,1,1,1,1,1,13,13,1,1,1,1,1,1,1,1 mov $1,1 mov $2,2 lpb $2 lpb $0 ...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1588.asm
ljhsiun2/medusa
9
44323
.global s_prepare_buffers s_prepare_buffers: push %r14 push %r9 push %rax push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0xb042, %rdx clflush (%rdx) nop nop nop nop nop sub %rax, %rax mov $0x6162636465666768, %r9 movq %r9, %xmm0 vmovups %ymm0, (%rdx) nop nop nop nop nop and %rbp, %rbp lea address...
F0xC/include/util/time.asm
Pusty/F0xC
0
44324
<reponame>Pusty/F0xC %ifndef TIME %define TIME time: mov eax, 0 mov ah, 00h int 1ah ;mov ax, dx ;shl eax, 16 mov ax, dx ;mov ax, 0 ;mov al, dl ret %endif
lib/target/pv1000/classic/pv1000_crt0.asm
Toysoft/z88dk
0
44325
; ; Startup for Casio PV-1000 ; ; The font is located from address 00000H - 01BFFH ; - 32 bytes per character - 224 characters max ; We need some space for startup etc, so initial characters ; aren't available module pv1000_crt0 ;-------- ; Include zcc_opt.def to find out some info ;-------- defc crt0...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_8407_1232.asm
ljhsiun2/medusa
9
44327
.global s_prepare_buffers s_prepare_buffers: push %r14 push %r15 push %r8 push %r9 push %rbp push %rcx push %rdi push %rsi lea addresses_WC_ht+0x16e01, %r15 nop nop nop dec %r9 mov $0x6162636465666768, %rbp movq %rbp, (%r15) nop nop sub %r8, %r8 lea addresses_UC_ht+0x1a695, %rsi lea addresses_WT_ht+0x795, %rdi nop nop ...
src/bootloader/print_str_32bit.asm
Thombrom/SnekOS
0
44328
; ; Print string routine for 32 bit mode ; - ebx: point to null-terminated string ; VIDEO_MEMORY equ 0xb8000 ; Location for video memory WHITE_ON_BLACK equ 0x0f ; White on black code print_str_32: pusha mov edx, VIDEO_MEMORY print_string_start_32_: mov al, [ebx] ...
CrabVMS/Demo/Build/EX02_LedOn.asm
aleyn/MiCO_Demo
0
44329
<filename>CrabVMS/Demo/Build/EX02_LedOn.asm ;Generate by CrabScript v3.0 ;Compile Mode: 3 ;main {$D 134, 138} ::main:: {$N 'main', 'P', 0} {$N 'main', 'L', 0} FUNC <main> VAR #P, 0 VAR #L, 0 {$A True} ;PrintLn('LED Control Demo') {$D 161, 188} VAR #F, 5 TYPE #W, (S:01) ADDR #D, <@DATA.1> ;'LED Control De...
Transynther/x86/_processed/AVXALIGN/_st_/i3-7100_9_0xca_notsx.log_21829_1666.asm
ljhsiun2/medusa
9
44331
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r15 push %r8 push %r9 push %rcx push %rdi push %rsi lea addresses_normal_ht+0xb626, %r15 nop nop nop xor $40222, %r13 movups (%r15), %xmm2 vpextrq $1, %xmm2, %r9 nop and $31528, %r15 lea addresses_WT_ht+0xe326, %rsi lea addresses_UC_ht+0xd8ee, %rdi ...
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0.log_21829_571.asm
ljhsiun2/medusa
9
44332
<reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0.log_21829_571.asm .global s_prepare_buffers s_prepare_buffers: push %r14 push %rax push %rbp push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0xaf5, %rsi lea addresses_A_ht+0xfa5d, %rdi xor %rbx, %rbx mov $57, %...
oeis/337/A337390.asm
neoneye/loda-programs
11
44334
; A337390: Expansion of sqrt((1-2*x+sqrt(1-12*x+4*x^2)) / (2 * (1-12*x+4*x^2))). ; Submitted by <NAME>(w2) ; 1,4,34,328,3334,34904,372436,4027216,43976774,483860632,5355697084,59569288816,665238165916,7454247891952,83769667651816,943744775565728,10655369806377542,120535523282756632,1365840013196530348,15500428304345011...
programs/oeis/266/A266285.asm
jmorken/loda
1
44335
; A266285: Number of ON (black) cells in the n-th iteration of the "Rule 13" elementary cellular automaton starting with a single ON (black) cell. ; 1,1,2,4,3,7,4,10,5,13,6,16,7,19,8,22,9,25,10,28,11,31,12,34,13,37,14,40,15,43,16,46,17,49,18,52,19,55,20,58,21,61,22,64,23,67,24,70,25,73,26,76,27,79,28,82,29,85,30,88,31,...
oeis/102/A102711.asm
neoneye/loda-programs
11
44336
<reponame>neoneye/loda-programs ; A102711: Numbers k such that 11*k + 7 is prime. ; Submitted by <NAME> ; 0,2,6,12,20,24,26,30,32,44,50,54,66,74,80,86,90,92,96,102,104,110,116,120,132,134,146,150,156,162,164,170,180,186,194,200,204,206,212,216,240,246,254,272,282,300,302,306,314,320,324,326,330,332,342,356,360,362,372,...
Simon/Segundo_Pic.asm
nicopassaglia/Simon_digitales
0
44339
list p=16f887 INCLUDE "p16f887.inc" CBLOCK 0x20 AUX AUX1 AUX2 PUNTAJE FLAGS MAYOR_PUNTAJE UNIDADES DECENAS ENDC DISP_0 EQU b'00111111' DISP_1 EQU b'00000110' DISP_2 EQU b'11011011' DISP_3 EQU b'11001111' DISP_4 EQU b'11100110' DISP_5 EQU b'11101101' DISP_6 EQU b'11111101' DISP_7 EQU b'00000111' DISP_8 EQU b'11111111' D...
bootle2.asm
nanochess/bootle
47
44340
; ; Bootle v2: A Wordle clone in a boot sector. ; ; by <NAME>. ; https://nanochess.org/ ; ; Creation date: Feb/27/2022. 12pm to 2pm. ; Revision date: Feb/27/2022. 4pm to 6pm. Integrated 2500 word list. ; Added word list verification. Shows ...
asm/kernel/basic/tokens.asm
majacQ/retroputer
58
44341
<reponame>majacQ/retroputer .segment brodata kmemmap.basic.rodata-start .append { keywords: .const TOK_ABS 128 _abs-keyword: .string "ABS" , constants.NUL, TOK_ABS .const TOK_AND ...
src/asm/jump_x86_64_ms_pe_masm.asm
msaf1980/sc
62
44342
<gh_stars>10-100 ; Copyright <NAME> 2009. ; Distributed under the Boost Software License, Version 1.0. ; (See accompanying file LICENSE_1_0.txt or copy at ; http://www.boost.org/LICENSE_1_0.txt) ; Updated by <NAME> for sc (https://github.com/rhoot/sc) ; ; - 2016: XMM6-XMM15 must be preserv...
Aurora/Aurora/x64/Debug/pmmngr.asm
manaskamal/aurora-xeneva
8
44343
; Listing generated by Microsoft (R) Optimizing Compiler Version 17.00.50727.1 include listing.inc INCLUDELIB LIBCMT INCLUDELIB OLDNAMES PUBLIC ?free_memory@@3_KA ; free_memory PUBLIC ?reserved_memory@@3_KA ; reserved_memory PUBLIC ?used_memory@@3_KA ; used_memory PUBLIC ?ram_bitmap_index@@3_KA ; ram_bi...
libsrc/_DEVELOPMENT/arch/zx/misc/z80/asm_zx_scroll_up_pix.asm
jpoikela/z88dk
640
44344
<gh_stars>100-1000 ; =============================================================== ; 2014 ; =============================================================== ; ; void zx_scroll_up_pix(uchar prows, uchar pix) ; ; Scroll screen upward by number of pixels. ; ; ============================================================...
decompressors/unlzsa1_fast.asm
maxim-zhao/bmp2tilecompressors
12
44347
<filename>decompressors/unlzsa1_fast.asm ; This file is an assembler port for WLA-DX by Maxim. ; It is forwards-only with no unrolling (as that used self-modifying code). ; Define LZSAToVRAM to enable VRAM mode for SMS. ; Usage: ; ; ld hl,data ; ld de,dest ; call DecompressLZSA1 ; ; Original comments follow. ; ; Sp...
Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2.log_5914_757.asm
ljhsiun2/medusa
9
44348
<reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2.log_5914_757.asm .global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r14 push %r9 push %rax push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x154c4, %rbx nop nop dec %r14 movb (%rbx), %r9b a...
original version (1984)/asm/map17-init.asm
fa8ntomas/bclk-samples
0
44349
<filename>original version (1984)/asm/map17-init.asm<gh_stars>0 ; Map 17 init ; Some fires lda #$01 sta MapVar1 sta MapVar2 lda #$08 sta Fire1X sta Fire2X sta Fire3X lda #$03 sta Fire1Y lda #$0...
oeis/214/A214402.asm
neoneye/loda-programs
11
44350
<reponame>neoneye/loda-programs ; A214402: Cancellation factor in reducing Sum_{k=0...n} n^k/k! to lowest terms. ; Submitted by <NAME> ; 1,2,6,8,10,144,70,128,162,6400,22,6220800,26,100352,182250,425984,170,429981696,38,163840000,13502538,317194240,46,247669456896,31250,1417674752,15943230,80564191232,9802,250765325107...
oxylib/oxygraph.asm
oxypomme/oxylib8086
2
44351
<reponame>oxypomme/oxylib8086 DSEG SEGMENT ; Define colors _BLACK_ EQU 00h _BLUE_ EQU 01h _GREEN_ EQU 02h _CYAN_ EQU 03h _RED_ EQU 04h _MAGENTA_ EQU 05h _BROWN_ EQU 06h _WHITE_ EQU 07h _GRAY_ EQU 08h ...
oeis/344/A344679.asm
neoneye/loda-programs
11
44352
<filename>oeis/344/A344679.asm ; A344679: Number of 2-matchings of the n-th centered square grid graph. ; Submitted by <NAME> ; 0,0,86,544,1854,4688,9910,18576,31934,51424,78678,115520,163966,226224,304694,401968,520830,664256,835414,1037664,1274558,1549840,1867446,2231504,2646334,3116448,3646550,4241536,4906494,564670...
programs/oeis/286/A286725.asm
neoneye/loda
22
44353
<filename>programs/oeis/286/A286725.asm ; A286725: Third column of triangle A286724: Lah[2,1](n+2, 2), n >= 0. ; 1,18,288,4800,86400,1693440,36126720,836075520,20901888000,562028544000,16186422067200,497364605337600,16247243774361600,562404592189440000,20567939371499520000,792551263781781504000,32098326183162150912000,...
misc/cpcacid_src/cpcacid_ppi.asm
floooh/yakc
106
44354
;; (c) Copyright <NAME> 2015-2016 ;; This code is part of the Arnold emulator distribution. ;; This code is free to distribute without modification ;; this copyright header must be retained. include "../lib/testdef.asm" txt_output equ &bb5a ;; TODO: Test mode 1 and mode 2 with printer and cassette ;; 8255 tester or...
programs/oeis/030/A030451.asm
karttu/loda
1
44355
<gh_stars>1-10 ; A030451: a(2*n) = n, a(2*n+1) = n+2. ; 0,2,1,3,2,4,3,5,4,6,5,7,6,8,7,9,8,10,9,11,10,12,11,13,12,14,13,15,14,16,15,17,16,18,17,19,18,20,19,21,20,22,21,23,22,24,23,25,24,26,25,27,26,28,27,29,28,30,29,31,30,32,31,33,32,34,33,35,34,36,35,37,36,38,37 mov $1,$0 mod $0,2 mul $0,3 add $1,$0 div $1,2
oeis/142/A142062.asm
neoneye/loda-programs
11
44357
<reponame>neoneye/loda-programs<filename>oeis/142/A142062.asm ; A142062: Primes congruent to 23 mod 33. ; Submitted by <NAME> ; 23,89,353,419,617,683,881,947,1013,1277,1409,1607,1871,2003,2069,2267,2333,2399,2531,2663,2729,2861,2927,3191,3257,3323,3389,3719,3851,3917,4049,4643,4973,5039,5171,5237,5303,5501,5897,6029,63...
oeis/024/A024397.asm
neoneye/loda-programs
11
44358
<reponame>neoneye/loda-programs<gh_stars>10-100 ; A024397: a(n) = s(1)*s(2)*...*s(n+1)*(1/s(2) - 1/s(3) + ... + c/s(n+1)), where c = (-1)^(n+1) and s(k) = 3k-1 for k = 1,2,3,... ; Submitted by <NAME> ; 2,6,146,1164,32108,432720,14141360,271332960,10373558240,259311694080,11400458720000,351858201408000,17517836995904000...
host/sgx/windows/aep.asm
vlaza/openenclave
1
44359
;; Copyright (c) Microsoft Corporation. All rights reserved. ;; Licensed under the MIT License. include ksamd64.inc ;; ThreadBinding_tcs EQU 0h ;; ENCLU_ERESUME EQU 3h ;;============================================================================== ;; ;; void OE_AEP(void) ;; ;; Asynchronous Exception Pointer (AE...
Course Experiment/Assembly Language Course Exp/No.1 Experiment/ntask_4.asm
XJDKC/University-Code-Archive
4
44360
<gh_stars>1-10 .386 STACK SEGMENT USE16 STACK DB 200 DUP(0) STACK ENDS ;------------------------------- DATA SEGMENT USE16 BNAME DB '<NAME>',0 ;系统登录名 BPASS DB 't<PASSWORD>',0,0 ;系统登陆密码 IN_NAME DB 10+1,?,11 DUP(0) ;为回车预留一位 IN_PWD DB 6+1,?,7 DUP(0) ;为回车预留一位 IN_PRO DB 10+1,?,11 DUP(0) ;为回车预留一位 NA_MEN D...
Transynther/x86/_processed/NONE/_ht_zr_un_/i9-9900K_12_0xa0_notsx.log_21829_235.asm
ljhsiun2/medusa
9
44363
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r14 push %r8 push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0xb517, %rsi lea addresses_UC_ht+0xda17, %rdi nop nop nop nop add $50487, %rdx mov $21, %rcx rep movsw add %rsi, %rsi lea addresses_UC_ht+0x7b17, %r8 nop nop nop...
programs/oeis/132/A132479.asm
neoneye/loda
22
44364
<reponame>neoneye/loda ; A132479: Row sums of triangle A132478. ; 1,5,16,32,64,128,256,512,1024,2048 mov $2,4 lpb $0 sub $0,1 dif $0,10 add $1,$2 mul $2,2 lpe lpb $2 mov $1,$2 sub $1,1 mod $2,9 lpe add $1,1 mov $0,$1
programs/oeis/180/A180064.asm
neoneye/loda
22
44365
<gh_stars>10-100 ; A180064: a(n) = n!/A056040(n). ; 1,1,1,1,4,4,36,36,576,576,14400,14400,518400,518400,25401600,25401600,1625702400,1625702400,131681894400,131681894400,13168189440000,13168189440000,1593350922240000,1593350922240000,229442532802560000 div $0,2 seq $0,142 ; Factorial numbers: n! = 1*2*3*4*...*n (order...
_build/dispatcher/jmp_ippsGFpECInitStd128r2_c73afc2e.asm
zyktrcn/ippcp
1
44366
<filename>_build/dispatcher/jmp_ippsGFpECInitStd128r2_c73afc2e.asm extern m7_ippsGFpECInitStd128r2:function extern n8_ippsGFpECInitStd128r2:function extern y8_ippsGFpECInitStd128r2:function extern e9_ippsGFpECInitStd128r2:function extern l9_ippsGFpECInitStd128r2:function extern n0_ippsGFpECInitStd128r2:function extern ...
coroutine/stack32.asm
Phantomical/coroutines
2
44367
; stack32.asm - Implements jmp_stack and init_stack for the x86 architecture .MODEL FLAT .CODE _TEXT segment PUBLIC @coroutine_jmp_stack@8 PUBLIC @coroutine_init_stack@8 .safeseh SEH_handler SEH_handler proc ;handler ret SEH_handler endp ; jmp_stack: ; Switches between two stacks, saving all registers ; ...
PORTS/tritone/tri_MAD.asm
bushy555/ZX-Spectrum-1-Bit-Routines
0
44368
;Tritone v2 beeper music engine by Shiru (<EMAIL>) 03'11 ;Three channels of tone, per-pattern tempo ;One channel of interrupting drums ;Feel free to do whatever you want with the code, it is PD ; ; ; TRITONE Engine ; Song :JOURNEY (found within Z88DK Tritone examples) ; VZ conversion: Sep 19 ; ; Assemble wi...
oeis/309/A309725.asm
neoneye/loda-programs
11
44369
<reponame>neoneye/loda-programs ; A309725: Number of set partitions of {1,2,...,3n} with sizes in {[n, n, n], [2n, n], [3n]}. ; Submitted by <NAME> ; 3,5,31,365,6271,129130,2877421,66628441,1578320767,37983592076,925196176906,22754692780561,564123212097901,14079691134569845,353428830512017081,8915830309096530865,225890...
oeis/059/A059270.asm
neoneye/loda-programs
11
44370
; A059270: a(n) is both the sum of n+1 consecutive integers and the sum of the n immediately higher consecutive integers. ; 0,3,15,42,90,165,273,420,612,855,1155,1518,1950,2457,3045,3720,4488,5355,6327,7410,8610,9933,11385,12972,14700,16575,18603,20790,23142,25665,28365,31248,34320,37587,41055,44730,48618,52725,57057,6...
src/_bitflipllloop.asm
claydonkey/bitFlip
0
44372
; ; The MIT License ; ; Copyright 2017 <NAME>. ; ; Permission is hereby granted, free of charge, to any person obtaining a copy ; of this software and associated documentation files (the "Software"), to deal ; in the Software without restriction, including without limitation the rights ; to use, copy, modify, ...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_308.asm
ljhsiun2/medusa
9
44374
.global s_prepare_buffers s_prepare_buffers: push %r15 push %r8 push %rbp push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0xb5bc, %r15 nop nop nop nop nop dec %rbx movw $0x6162, (%r15) nop nop nop nop add %rbp, %rbp lea addresses_normal_ht+0x1978c, %rsi lea addresses_D_ht+0xb70c, %rdi nop nop nop ...
oeis/161/A161946.asm
neoneye/loda-programs
11
44375
<reponame>neoneye/loda-programs<gh_stars>10-100 ; A161946: Odd part of sum of unitary divisors of n. ; Submitted by <NAME> ; 1,3,1,5,3,3,1,9,5,9,3,5,7,3,3,17,9,15,5,15,1,9,3,9,13,21,7,5,15,9,1,33,3,27,3,25,19,15,7,27,21,3,11,15,15,9,3,17,25,39,9,35,27,21,9,9,5,45,15,15,31,3,5,65,21,9,17,45,3,9,9,45,37,57,13,25,3,21,5,5...
macros/hardware-macros.asm
dougmasten/coco_dev
2
44376
; hardware-macros.asm *pragmapush list ; Save state of list pragma pragma nolist ; Turn off assembly listing and exclude from symbol list ifndef HARDWARE_MACROS ; Load defines only once ; make sure defines are included ...
programs/oeis/066/A066043.asm
karttu/loda
1
44378
<filename>programs/oeis/066/A066043.asm ; A066043: a(1) = 1; for m > 0, a(2m) = 2m, a(2m+1) = 4m+2. ; 1,2,6,4,10,6,14,8,18,10,22,12,26,14,30,16,34,18,38,20,42,22,46,24,50,26,54,28,58,30,62,32,66,34,70,36,74,38,78,40,82,42,86,44,90,46,94,48,98,50,102,52,106,54,110,56,114,58,118,60,122,62,126,64,130,66,134,68,138,70,142,...
oeis/220/A220902.asm
neoneye/loda-programs
11
44381
<filename>oeis/220/A220902.asm<gh_stars>10-100 ; A220902: a(n) = Catalan(n) - A000245(n-2). ; Submitted by <NAME> ; 2,4,11,33,104,339,1133,3861,13364,46852,166022,593674,2139552,7763305,28337265,103981965,383351580,1419269280,5274495930,19669409790,73580417040,276043317030,1038327097314,3915101867778,14795310818024,560...
src/spritescroller.asm
defame-demogroup/c64_plasmatoy2
0
44382
<reponame>defame-demogroup/c64_plasmatoy2 .pc=* "SPRITE SCROLL" .var spriteyoff=12 CHRBUF: .fill $08, $00 CHRCNT: .byte $00 funcScrollSprite: .for(var y=1;y<7;y++){ asl CHRBUF + y .for(var i=7;i>=0;i--){ .for(var x=2;x>=0;x--){ rol $3100 + (i * $40) + ((y+spriteyoff) * 3) + x } } } ldx CHRCNT inx ...
oeis/159/A159590.asm
neoneye/loda-programs
11
44383
<reponame>neoneye/loda-programs<filename>oeis/159/A159590.asm ; A159590: Decimal expansion of (451+30*sqrt(2))/449. ; Submitted by <NAME>(w1) ; 1,0,9,8,9,4,5,2,2,6,8,8,4,6,1,6,5,9,5,6,8,8,3,0,8,8,2,3,4,4,3,8,5,5,1,0,5,4,7,2,3,6,1,1,4,9,8,0,2,4,6,8,6,9,0,8,5,8,1,3,0,0,4,9,3,0,8,9,5,7,6,2,6,6,2,3,3,0,3,3,6,5,6,2,4,7,4,7,...
Transynther/x86/_processed/AVXALIGN/_st_zr_un_4k_/i3-7100_9_0x84_notsx.log_21829_2123.asm
ljhsiun2/medusa
9
44384
<reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/AVXALIGN/_st_zr_un_4k_/i3-7100_9_0x84_notsx.log_21829_2123.asm .global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %rax push %rbx lea addresses_WC_ht+0x2c08, %rbx nop nop nop nop cmp $8131, %r12 movb $0x61, (%rbx) and $33540, %rax pop %rbx ...
libsrc/_DEVELOPMENT/math/float/math16/c/sdcc/cm16_sdcc___uchar2h_callee.asm
ahjelm/z88dk
640
44387
<reponame>ahjelm/z88dk<filename>libsrc/_DEVELOPMENT/math/float/math16/c/sdcc/cm16_sdcc___uchar2h_callee.asm SECTION code_fp_math16 PUBLIC cm16_sdcc___uchar2h_callee PUBLIC cm16_sdcc___uchar2h_fastcall EXTERN asm_f24_u16 EXTERN asm_f16_f24 .cm16_sdcc___uchar2h_callee pop bc ;return pop hl ;value ...
generated-src/win-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.asm
jylama99/aws-lc
0
44388
; This file is generated from a similarly-named Perl script in the BoringSSL ; source tree. Do not edit by hand. default rel %define XMMWORD %define YMMWORD %define ZMMWORD %ifdef BORINGSSL_PREFIX %include "boringssl_prefix_symbols_nasm.inc" %endif section .text code align=64 EXTERN OPENSSL_ia32cap_P ...
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_428.asm
ljhsiun2/medusa
9
44389
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r14 push %rax push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_UC_ht+0x83b8, %rsi lea addresses_D_ht+0x7bea, %rdi nop nop and %r11, %r11 mov $98, %rcx rep movsq nop nop nop nop nop xor %rbp, %rbp lea addresses_WT_ht+0x1c9b8, %rsi lea addresses_...
libsrc/games/z88/bit_open_di.asm
meesokim/z88dk
0
44390
<gh_stars>0 ; $Id: bit_open_di.asm,v 1.6 2015/01/19 01:32:45 pauloscustodio Exp $ ; ; Z88 1 bit sound functions ; ; Open sound port and disable interrupts for exact timing ; ; <NAME> - 28/9/2001 ; Based on the <NAME>' code ; PUBLIC bit_open_di INCLUDE "interrpt.def" EXTERN bit_irqstatus EXTE...
P6/data_P6_2/ALUTest63.asm
alxzzhou/BUAA_CO_2020
1
44391
<reponame>alxzzhou/BUAA_CO_2020 addu $3,$1,$3 srav $3,$5,$3 addiu $3,$3,-12140 slt $3,$5,$3 xori $4,$1,36249 or $3,$1,$3 addiu $1,$3,17304 addu $4,$4,$3 srav $3,$3,$3 sh $4,14($0) sb $5,4($0) srlv $1,$1,$3 srav $5,$1,$3 sltu $1,$4,$3 or $4,$1,$3 subu $3,$5,$3 sh $4,12($0) lw $1,12($0) srlv $0,$1,$3 slt $3,$3,$3 addiu $...
programs/oeis/108/A108754.asm
jmorken/loda
1
44392
; A108754: Difference between partial sum of the first n primes and n^2. ; 1,1,1,1,3,5,9,13,19,29,39,53,69,85,103,125,151,177,207,239,271,307,345,387,435,485,535,587,639,693,759,827,899,971,1051,1131,1215,1303,1393,1487,1585,1683,1789,1895,2003,2111,2229,2357,2487,2617,2749,2885,3021 mov $27,$0 mov $29,$0 add $29,1 lp...
oeis/295/A295717.asm
neoneye/loda-programs
11
44393
<reponame>neoneye/loda-programs<filename>oeis/295/A295717.asm ; A295717: a(n) = a(n-1) + 3*a(n-2) -2*a(n-3) - 2*a(n-4), where a(0) = 1, a(1) = 3, a(2) = 5, a(3) = 7. ; Submitted by <NAME> ; 1,3,5,7,14,19,37,52,97,141,254,379,665,1012,1741,2689,4558,7119,11933,18796,31241,49525,81790,130291,214129,342372,560597,898873,1...
programs/oeis/040/A040207.asm
jmorken/loda
1
44394
; A040207: Continued fraction for sqrt(222). ; 14,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1,28,1,8,1 cal $0,40204 ; Continued fraction for sqrt(219). mov $2,2 lpb $2 div $0,2 sub $...
bootloader/Stage2.asm
karacasoft/ProjectKaOS
1
44395
<gh_stars>1-10 bits 16 org 0x9C00 jmp main ;===================================== ; Preprocessor Directives ;===================================== %include "stdio.inc" %include "gdt.inc" %include "vesa.inc" ;===================================== ; Data Block ;===================================== MsgStarting db ...
C5515_Support_Files/C5515_Lib/aic3204/Debug/aic3204_test.asm
HeroSizy/Sizy
0
44396
<gh_stars>0 ;******************************************************************************* ;* TMS320C55x C/C++ Codegen PC v4.3.8 * ;* Date/Time created: Thu Jun 09 17:03:44 2011 * ;*************************************************************...
programs/oeis/253/A253203.asm
neoneye/loda
22
44397
<gh_stars>10-100 ; A253203: The least square larger than n with same parity as n. ; 9,4,9,16,9,16,9,16,25,16,25,16,25,16,25,36,25,36,25,36,25,36,25,36,49,36,49,36,49,36,49,36,49,36,49,64,49,64,49,64,49,64,49,64,49,64,49,64,81,64,81,64,81,64,81,64,81,64,81,64,81,64,81,100,81,100,81,100,81,100,81,100,81,100,81,100,81,100...
oeis/184/A184623.asm
neoneye/loda-programs
11
44398
<filename>oeis/184/A184623.asm<gh_stars>10-100 ; A184623: a(n) = floor((n-h)*s+h), where s=2+sqrt(2) and h=-1/3; complement of A184622. ; Submitted by Jon Maiga ; 4,7,11,14,17,21,24,28,31,34,38,41,45,48,52,55,58,62,65,69,72,75,79,82,86,89,92,96,99,103,106,110,113,116,120,123,127,130,133,137,140,144,147,151,154,157,161,...
oeis/129/A129994.asm
neoneye/loda-programs
11
44399
; A129994: Triangle read by rows: 2*A007318 - I. ; Submitted by <NAME> ; 1,2,1,2,4,1,2,6,6,1,2,8,12,8,1,2,10,20,20,10,1,2,12,30,40,30,12,1,2,14,42,70,70,42,14,1,2,16,56,112,140,112,56,16,1,2,18,72,168,252,252,168,72,18,1 add $0,1 seq $0,198321 ; Triangle T(n,k), read by rows, given by (0,1,0,0,0,0,0,0,0,0,0,...) DELTA...
programs/oeis/179/A179001.asm
neoneye/loda
22
44400
; A179001: Partial sums of floor(Fibonacci(n)/3). ; 0,0,0,0,1,2,4,8,15,26,44,73,121,198,323,526,855,1387,2248,3641,5896,9544,15447,24999,40455,65463,105927,171399,277336,448745,726091,1174847,1900950,3075809,4976771,8052592,13029376,21081981,34111370,55193365,89304750,144498130,233802895,378301040,612103951,990405007,1...
kernel/src/system/tasking/userspace.asm
Remco123/CactusOS
87
44401
<reponame>Remco123/CactusOS GLOBAL enter_usermode enter_usermode: ;push ebp mov ebp, esp cli mov ax, 0x20 | 3 mov ds, ax mov es, ax mov fs, ax mov gs, ax push 0x20 | 3 ; push ss3 mov ecx, [ebp+8] push ecx ; push esp3 pushf ; push flags onto stack pop eax ; pop into eax o...
Transynther/x86/_processed/US/_zr_/i7-8650U_0xd2_notsx.log_773_623.asm
ljhsiun2/medusa
9
44402
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r14 push %r9 push %rbp push %rcx push %rdi push %rsi lea addresses_WT_ht+0x485c, %r9 clflush (%r9) nop nop nop nop add %r14, %r14 movb $0x61, (%r9) nop nop and $32628, %r13 lea addresses_WC_ht+0xcfd4, %r10 nop and %rdi, %rdi mov $0x61...
Library/User/Gen/genClassCommon.asm
steakknife/pcgeos
504
44403
<filename>Library/User/Gen/genClassCommon.asm COMMENT @---------------------------------------------------------------------- Copyright (c) GeoWorks 1994 -- All Rights Reserved PROJECT: PC GEOS MODULE: UserInterface/Gen FILE: genClassCommon.asm ROUTINES: Name Description ---- ----------- GLB G...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_476.asm
ljhsiun2/medusa
9
44404
<filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_476.asm .global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %r14 push %r15 push %r8 push %rcx push %rdi push %rsi lea addresses_WT_ht+0x111af, %rsi lea addresses_A_ht+0x28ef, %rdi clflush (%rsi) nop nop nop nop nop add %r12,...
Assembly/INC_DEC_ADD_SUB.asm
carlosvilela/Testes-C-
0
44405
<filename>Assembly/INC_DEC_ADD_SUB.asm .486 .model tiny .code start: mov eax, 05h inc eax dec eax dec eax dec eax add eax, 02h sub eax, 02h end start
exrcise_1.asm
selectiveduplicate/8086-assembly
2
44406
<gh_stars>1-10 TITLE EXRCISE_1 .MODEL SMALL .STACK 100H .DATA .CODE MAIN PROC MOV AX, 0FFFDH ;placing arbitrary values to AX, BX to test our code MOV BX, 0DH CMP AX, 0 ;is AX < 0? JNL END_CODE ;if not, then don't do anything MOV BX, 0...
Source/Levels/L0810.asm
AbePralle/FGB
0
44407
; L0810.asm graves landing ; Generated 11.05.2000 by mlevel ; Modified 11.05.2000 by <NAME> INCLUDE "Source/Defs.inc" INCLUDE "Source/Levels.inc" LIGHTINDEX EQU 40 VAR_LIGHT EQU 0 ;--------------------------------------------------------------------- SECTION "Level0810Section",ROMX ;--------------------------------...
engine/code/asm/vm_x86_64.asm
arbaazkhan2/act_unreal
7,407
44408
; =========================================================================== ; Copyright (C) 2011 <NAME> <<EMAIL>> ; ; This file is part of Quake III Arena source code. ; ; Quake III Arena source code is free software; you can redistribute it ; and/or modify it under the terms of the GNU General Public License as ; ...