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/189/A189746.asm
neoneye/loda-programs
11
202574
<filename>oeis/189/A189746.asm<gh_stars>10-100 ; A189746: a(1)=5, a(2)=2, a(n)=5*a(n-1) + 2*a(n-2) ; Submitted by <NAME>(s1) ; 5,2,20,104,560,3008,16160,86816,466400,2505632,13460960,72316064,388502240,2087143328,11212721120,60237892256,323614903520,1738550302112,9339981317600,50177007192224,269564998596320,1448179007...
programs/oeis/168/A168108.asm
neoneye/loda
22
202578
<filename>programs/oeis/168/A168108.asm ; A168108: a(n) = sum of natural numbers m such that n - 9 <= m <= n + 9. ; 45,55,66,78,91,105,120,136,153,171,190,209,228,247,266,285,304,323,342,361,380,399,418,437,456,475,494,513,532,551,570,589,608,627,646,665,684,703,722,741,760,779,798,817,836,855,874,893,912,931,950,969,9...
oeis/034/A034841.asm
neoneye/loda-programs
11
202579
; A034841: a(n) = (n^2)! / (n!)^n. ; Submitted by <NAME> ; 1,1,6,1680,63063000,623360743125120,2670177736637149247308800,7363615666157189603982585462030336000,18165723931630806756964027928179555634194028454000000,53130688706387569792052442448845648519471103327391407016237760000000000,23570745893930438964093196831613020...
oeis/048/A048497.asm
neoneye/loda-programs
11
202580
; A048497: a(n) = 2^(n-1)*(4*n - 6) + 4. ; 1,2,8,28,84,228,580,1412,3332,7684,17412,38916,86020,188420,409604,884740,1900548,4063236,8650756,18350084,38797316,81788932,171966468,360710148,754974724,1577058308,3288334340,6845104132,14227079172,29527900164,61203283972,126701535236,261993005060,541165879300,1116691496964,...
engine/overworld/emotion_bubbles.asm
opiter09/ASM-Machina
1
202581
EmotionBubble: ld a, [wWhichEmotionBubble] ld c, a ld b, 0 ld hl, EmotionBubblesPointerTable add hl, bc add hl, bc ld e, [hl] inc hl ld d, [hl] ld hl, vChars1 tile $78 lb bc, BANK(EmotionBubbles), 4 call CopyVideoData ld a, [wUpdateSpritesEnabled] push af ld a, $ff ld [wUpdateSpritesEnabled], a ld a, [...
programs/oeis/006/A006342.asm
neoneye/loda
22
202582
; A006342: Coloring a circuit with 4 colors. ; 1,1,4,10,31,91,274,820,2461,7381,22144,66430,199291,597871,1793614,5380840,16142521,48427561,145282684,435848050,1307544151,3922632451,11767897354,35303692060,105911076181,317733228541,953199685624,2859599056870,8578797170611,25736391511831,77209174535494,231627523606480,6...
boot/init/a32/syscall.asm
Tiihala/Dancy
11
202583
;; ;; Copyright (c) 2019, 2020 <NAME> ;; ;; Permission to use, copy, modify, and/or distribute this software for any ;; purpose with or without fee is hereby granted, provided that the above ;; copyright notice and this permission notice appear in all copies. ;; ;; THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLA...
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_446.asm
ljhsiun2/medusa
9
202584
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r8 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_WT_ht+0x93bc, %rdi nop nop nop nop nop xor $4891, %rcx mov (%rdi), %rbp cmp %rax, %rax lea addresses_D_ht+0xbec4, %rdi nop nop nop nop xor $51806, %r8 mov (%rdi), %r11w add $5496, %rcx lea add...
programs/oeis/286/A286690.asm
jmorken/loda
1
202585
; A286690: Positions of 1 in A286688; complement of A286689. ; 5,11,19,25,33,39,45,53,59,67,73,79,87,93,101,107,115,121,127,135,141,149,155,161,169,175,183,189,197,203,209,217,223,231,237,243,251,257,265,271,277,285,291,299,305,313,319,325,333,339,347,353,359,367,373,381,387,395,401,407,415,421,429,435,441,449,455,463,...
bootloader/fat16.nasm
RomankoMikhail/fspo-mp
0
202586
; Целевой адрес загрузки %define targetAddr 0x9000 %define targetVideoTbl 0x500 %include "fatdef.nasm" org 0x7C00 entry: jmp short boot nop ; Резервируем место для заголовка FAT16 times 0x3B db 0 ; Код загрузки первоначального файла 'ядра' ; Подготавливаем основную систему и...
oeis/137/A137742.asm
neoneye/loda-programs
11
202587
<filename>oeis/137/A137742.asm<gh_stars>10-100 ; A137742: a(n) = (n-1)*(n+4)*(n+6)/6 for n>1, a(1)=1. ; 1,8,21,40,66,100,143,196,260,336,425,528,646,780,931,1100,1288,1496,1725,1976,2250,2548,2871,3220,3596,4000,4433,4896,5390,5916,6475,7068,7696,8360,9061,9800,10578,11396,12255,13156,14100,15088,16121,17200,18326,1950...
addingTwo16BitsNumbers.asm
edenlandpl/adding-two-numbers-16-bit-saved-in-memory
0
202588
// dodawanie liczb 16 bitowych link l1:ct link l2:rdm equ cs:r8 equ ip:r9 \\ rezerwowanie rejestrow equ pom1: r2 equ pom2: r3 equ pom3: r4 equ pom4: r5 equ pom5: r6 equ pom6: r7 equ pom7: r8 accept cs:ABCDh accept ip:1234h \\ wpisanie wartosci pod konkretne adresy dw ACF04h:5678h \\ ACF04 ABCD dw...
programs/oeis/154/A154575.asm
karttu/loda
1
202589
<reponame>karttu/loda ; A154575: a(n) = 2*n^2 + 12*n + 4. ; 18,36,58,84,114,148,186,228,274,324,378,436,498,564,634,708,786,868,954,1044,1138,1236,1338,1444,1554,1668,1786,1908,2034,2164,2298,2436,2578,2724,2874,3028,3186,3348,3514,3684,3858,4036,4218,4404,4594,4788,4986,5188,5394,5604,5818,6036,6258,6484,6714,6948,718...
oeis/142/A142027.asm
neoneye/loda-programs
11
202590
<reponame>neoneye/loda-programs ; A142027: Primes congruent to 23 mod 31. ; Submitted by <NAME> ; 23,271,457,643,829,953,1201,1511,1697,1759,2069,2131,2441,2503,2689,2999,3061,3371,3433,3557,3929,4177,4363,4549,4673,5107,5231,5417,5479,5851,6037,6719,6781,6967,7649,8269,8641,8951,9013,9137,9199,9323,10067,10253,10501,1...
libsrc/_DEVELOPMENT/adt/p_list/c/sccz80/p_list_push_front_callee.asm
teknoplop/z88dk
8
202591
<reponame>teknoplop/z88dk<gh_stars>1-10 ; void *p_list_push_front(p_list_t *list, void *item) SECTION code_clib SECTION code_adt_p_list PUBLIC p_list_push_front_callee EXTERN asm_p_list_push_front p_list_push_front_callee: pop hl pop de ex (sp),hl jp asm_p_list_push_front
programs/oeis/007/A007920.asm
jmorken/loda
1
202592
<reponame>jmorken/loda ; A007920: Smallest number k such that n + k is prime. ; 2,1,0,0,1,0,1,0,3,2,1,0,1,0,3,2,1,0,1,0,3,2,1,0,5,4,3,2,1,0,1,0,5,4,3,2,1,0,3,2,1,0,1,0,3,2,1,0,5,4,3,2,1,0,5,4,3,2,1,0,1,0,5,4,3,2,1,0,3,2,1,0,1,0,5,4,3,2,1,0,3,2,1,0,5,4,3,2,1,0,7,6,5,4,3,2,1,0,3,2,1,0,1,0,3,2,1,0,1,0,3,2,1,0,13,12,11,10,...
oeis/287/A287439.asm
neoneye/loda-programs
11
202593
<gh_stars>10-100 ; A287439: a(n) = 2*a(n-2) + 2*a(n-3) for n >= 3, where a(0) = 2, a(2) = 4, a(3) = 7. ; Submitted by <NAME>(s3) ; 2,4,7,12,22,38,68,120,212,376,664,1176,2080,3680,6512,11520,20384,36064,63808,112896,199744,353408,625280,1106304,1957376,3463168,6127360,10841088,19181056,33936896,60044288,106235904,18796...
oeis/082/A082495.asm
neoneye/loda-programs
11
202594
<gh_stars>10-100 ; A082495: a(n) = (2^n - 1) mod n. ; 0,1,1,3,1,3,1,7,7,3,1,3,1,3,7,15,1,9,1,15,7,3,1,15,6,3,25,15,1,3,1,31,7,3,17,27,1,3,7,15,1,21,1,15,16,3,1,15,29,23,7,15,1,27,42,31,7,3,1,15,1,3,7,63,31,63,1,15,7,43,1,63,1,3,67,15,17,63,1,15,79,3,1,63,31,3,7,79,1,63,36,15,7,3,12,63,1,17,16,75 mov $1,$0 add $1,1 mov...
C5515_Support_Files/C5515_Lib/dsplib_2.40.00/55x_src/maxval.asm
HeroSizy/Sizy
0
202595
<filename>C5515_Support_Files/C5515_Lib/dsplib_2.40.00/55x_src/maxval.asm ;*********************************************************** ; Version 2.40.00 ;*********************************************************** ; Function: maxval ; Processor: C55xx ; Description: ...
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xa0_notsx.log_21829_1673.asm
ljhsiun2/medusa
9
202596
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r14 push %r9 push %rax push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_normal_ht+0x2146, %rsi lea addresses_UC_ht+0x28d6, %rdi nop nop nop cmp %rbx, %rbx mov $14, %rcx rep movsw nop nop nop nop xor $48064, %rbp lea addresses_no...
programs/oeis/196/A196787.asm
karttu/loda
0
202597
<reponame>karttu/loda ; A196787: a(n) = 3*a(n-1) - 2*a(n-2) - a(n-4) + a(n-5) with initial terms 1, 1, 1, 3, 6. ; 1,1,1,3,6,12,24,46,87,163,303,561,1036,1910,3518,6476,11917,21925,40333,74191,136466,251008,461684,849178,1561891,2872775,5283867,9718557,17875224,32877674,60471482,111224408,204573593,376269513,692067545 ...
oeis/028/A028739.asm
neoneye/loda-programs
11
202598
; A028739: Nonsquares mod 26. ; Submitted by <NAME>(s1) ; 2,5,6,7,8,11,15,18,19,20,21,24 mov $4,$0 add $4,1 lpb $4 mov $0,$6 sub $4,1 sub $0,$4 pow $0,2 add $0,2 mov $1,1 mov $2,1 mov $3,$0 mul $3,4 lpb $3 add $1,$2 add $2,$1 mul $1,2 sub $3,1 lpe mod $2,10 mov $7,$2 cmp $7,...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1372.asm
ljhsiun2/medusa
9
202599
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r14 push %r15 push %r9 push %rcx push %rdi push %rsi lea addresses_D_ht+0x194d1, %rsi lea addresses_A_ht+0x1e11, %rdi nop nop dec %r14 mov $39, %rcx rep movsl nop nop and %r12, %r12 lea addresses_normal_ht+0x12d11, %rsi lea...
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_1609.asm
ljhsiun2/medusa
9
202600
<filename>Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_1609.asm .global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %rbp push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_UC_ht+0x14955, %rbp xor $36336, %rsi mov (%rbp), %di nop nop nop nop sub %rsi, %rsi lea addresses_WT...
oeis/314/A314192.asm
neoneye/loda-programs
11
202603
<gh_stars>10-100 ; A314192: Coordination sequence Gal.6.651.1 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings. ; Submitted by <NAME> ; 1,5,11,17,21,27,33,38,43,49,54,60,65,70,77,81,86,93,98,102,109,114,119,125,130,136,141,146,152,158,16...
programs/oeis/091/A091573.asm
neoneye/loda
22
202604
; A091573: Poincaré series [or Poincare series] of the preprojective algebra of an extended Dynkin diagram of type E_6. ; 7,12,17,24,31,36,41,48,55,60,65,72,79,84,89,96,103,108,113,120,127,132,137,144,151,156,161,168,175,180,185,192,199,204,209,216,223,228,233,240,247,252,257,264,271,276,281,288,295,300,305,312,319,324...
P6/data_P6_2/MDTest89.asm
alxzzhou/BUAA_CO_2020
1
202605
<filename>P6/data_P6_2/MDTest89.asm ori $ra,$ra,0xf addiu $4,$4,-5357 multu $1,$1 srav $3,$1,$3 ori $4,$2,40899 multu $4,$3 mult $3,$3 lui $0,1197 multu $0,$4 sll $4,$1,20 mflo $1 divu $6,$ra lui $0,47515 mflo $4 divu $1,$ra div $2,$ra div $5,$ra mult $6,$4 mflo $4 mthi $4 addu $3,$3,$3 mult $3,$5 divu $2,$ra mflo $1 s...
oeis/212/A212161.asm
neoneye/loda-programs
11
202606
<reponame>neoneye/loda-programs<gh_stars>10-100 ; A212161: Numbers 6 or 10 modulo 17. ; Submitted by <NAME>(s2) ; 6,10,23,27,40,44,57,61,74,78,91,95,108,112,125,129,142,146,159,163,176,180,193,197,210,214,227,231,244,248,261,265,278,282,295,299,312,316,329,333,346,350,363,367,380,384,397,401,414,418,431,435,448,452,465...
src/firmware-tests/Platform/Motor/Turn/PwmDutyCycleFromRestTestFixture.asm
pete-restall/Cluck2Sesame-Prototype
1
202607
#include "Platform.inc" #include "FarCalls.inc" #include "Timer0.inc" #include "Motor.inc" #include "../../Smps/IsSmpsEnabledStub.inc" #include "../../Adc/ChannelStubs.inc" #include "TestFixture.inc" radix decimal extern testAct DUTY_CYCLE_INCREMENT equ 2 NUMBER_OF_SAMPLES equ 50 udata dutyCycleSamples re...
Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0x84_notsx.log_21829_2778.asm
ljhsiun2/medusa
9
202608
<filename>Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0x84_notsx.log_21829_2778.asm<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r9 push %rbx push %rdi push %rdx lea addresses_normal_ht+0x520b, %r12 nop nop nop nop cmp %rbx, %rbx vmovups (%r12), %ymm7 vextracti128 $1, %ymm...
src/Hello/helloworld.asm
J0sueTM/x64assembly_roadmap
0
202610
<gh_stars>0 section .data msg db "Hello world", 0xa msglen equ $- msg section .text global _start _start: mov rax, 1 ; sys_write mov rdi, 1 ; stdout file descriptor mov rsi, msg mov rdx, msglen syscall mov rax, 60 ; sys_exit mov rdi, 0 ; no_error syscall
llvm/test/tools/llvm-ml/hexfloat_warn.asm
mkinsner/llvm
2,338
202612
; RUN: llvm-ml -filetype=s %s /Fo - 2>&1 | FileCheck %s .data ; CHECK: :[[# @LINE + 1]]:25: warning: MASM-style hex floats ignore explicit sign negative_hexfloat REAL4 -3fa66666r ; CHECK-LABEL: negative_hexfloat: ; CHECK-NEXT: .long 1067869798 .code END
release/src/router/gmp/source/mpn/sparc64/lshift.asm
zhoutao0712/rtn11pb1
184
202613
dnl SPARC v9 mpn_lshift dnl Copyright 1996, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. dnl The GNU MP Library is free software; you can redistribute it and/or modify dnl it under the terms of the GNU Lesser General Public License as published dnl by the F...
VGA-AT13/at13.asm
ris2021/CRISS
4
202615
<gh_stars>1-10 .include "tn13def.inc" .include "../macro.inc" .MACRO lldi ldi temp, @1 mov @0, temp .ENDM .MACRO putchar out PORTB, ldoff nop nop out PORTB, ldon .ENDM .MACRO put10chars putchar // +4 putchar // +4 putchar // +4 putchar // +4 putchar // ...
programs/oeis/202/A202022.asm
neoneye/loda
22
202617
<reponame>neoneye/loda ; A202022: Characteristic functions of repdigit numbers in decimal representation. ; 1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 lpb $0 mo...
oeis/037/A037734.asm
neoneye/loda-programs
11
202619
; A037734: Base 8 digits are, in order, the first n terms of the periodic sequence with initial period 2,1,0,3. ; Submitted by <NAME> ; 2,17,136,1091,8730,69841,558728,4469827,35758618,286068945,2288551560,18308412483,146467299866,1171738398929,9373907191432,74991257531459,599930060251674,4799440482013393 mov $2,2 lpb...
oeis/004/A004642.asm
neoneye/loda-programs
11
202620
<filename>oeis/004/A004642.asm ; A004642: Powers of 2 written in base 3. ; 1,2,11,22,121,1012,2101,11202,100111,200222,1101221,2210212,12121201,102020102,211110211,1122221122,10022220021,20122210112,111022121001,222122012002,1222021101011,10221112202022,21220002111121,120210012000012,1011120101000101,2100010202000202,1...
Kernel/src/main.asm
royprocell/GoldOS16
4
202621
<gh_stars>1-10 ;GoldOS 4.0 Kernel Main File ; ;<NAME> ;7/21/2015 ; ;This file was added to reduce clutter within the main kernel file. ; ; draw_icons: mov al, 13h call os_set_video_mode call os_disable_blinking mov dx, 0 call os_move_cursor mov ax, 2000h mov ds, ax mov si, os_welcome mov bl, 43 call os_...
Driver/Printer/HP/PSB/psbDriverInfo.asm
steakknife/pcgeos
504
202622
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) Berkeley Softworks 1990 -- All Rights Reserved PROJECT: PC GEOS MODULE: PostScript printer driver FILE: psbDriverInfo.asm AUTHOR: <NAME> REVISION HISTORY: Name Date Description ---- ---- ----------- ...
oeis/075/A075136.asm
neoneye/loda-programs
11
202623
<filename>oeis/075/A075136.asm ; A075136: Numerator of the generalized harmonic number H(n,4,1). ; Submitted by <NAME> ; 1,6,59,812,14389,104038,534113,15837352,177575597,6681333014,278042982799,93928709068,665521987201,35665695484178,684591747070657,42155877944972752,42527303541794647,986175536059084606 mov $1,1 lpb ...
Transynther/x86/_processed/AVXALIGN/_st_/i3-7100_9_0x84_notsx.log_21829_2720.asm
ljhsiun2/medusa
9
202624
.global s_prepare_buffers s_prepare_buffers: push %r14 push %r8 push %rbp push %rcx push %rdi push %rsi lea addresses_WT_ht+0x116e7, %rsi lea addresses_WC_ht+0x6267, %rdi cmp %r8, %r8 mov $98, %rcx rep movsq nop nop nop sub %r14, %r14 lea addresses_D_ht+0x1a6e7, %rsi lea addresses_WT_ht+0x1e707, %rdi clflush (%rsi) nop...
libsrc/im2/im2_RemoveHook.asm
andydansby/z88dk-mk2
1
202627
; CALLER linkage for function pointers XLIB im2_RemoveHook LIB im2_RemoveHook_callee XREF ASMDISP_REMOVEHOOK_CALLEE .im2_RemoveHook pop bc pop de pop hl push hl push de push bc jp im2_RemoveHook_callee + ASMDISP_REMOVEHOOK_CALLEE
coverage/IN_CTS/0466-COVERAGE-brw-fs-675-7158-7197-7534-8809/work/variant/1_spirv_asm/shader.frag.asm
asuonpaa/ShaderTests
0
202629
<gh_stars>0 ; SPIR-V ; Version: 1.0 ; Generator: Khronos Glslang Reference Front End; 10 ; Bound: 531 ; Schema: 0 OpCapability Shader %1 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Fragment %4 "main" %528 OpExecutionMo...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_936.asm
ljhsiun2/medusa
9
202631
<filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_936.asm .global s_prepare_buffers s_prepare_buffers: push %r10 push %r14 push %r15 push %r9 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_A_ht+0xe28a, %r9 clflush (%r9) nop nop dec %rbp mov $0x6162636465666768, %r15 movq %...
libsrc/graphics/zx81/hr/mt_hrg_off.asm
andydansby/z88dk-mk2
1
202633
<filename>libsrc/graphics/zx81/hr/mt_hrg_off.asm ;-------------------------------------------------------------- ; ZX81 HRG library for the Memotech expansion ; by <NAME>, Feb. 2010 ;-------------------------------------------------------------- ; ; Set TEXT mode ; ; $Id: mt_hrg_off.asm,v 1.1 2010/02/10 16:15:35 stef...
msx/rc2014-extended/probing.asm
zoggins/yellow-msx-series-for-rc2014
19
202634
PROBE_HARDWARE: LD DE, MSG.CPU CALL PRINT CALL CPU_PROBE_SPEED LD DE, MSG.NEWLINE CALL PRINT LD DE, MSG.SIO CALL PRINT CALL SIO_PROBE JR Z, SIO_FOUND LD DE, MSG.NOT CALL PRINT SIO_FOUND: LD DE, MSG.SIO_PRESENT CALL PRINT LD DE, MSG.RTC CALL PRINT CALL RP5RTC_PROBE JR Z, RTC_FOUND LD DE, MSG....
src/test/cpp/custom/simd_add/build/custom_simd_add.asm
cbrune/VexRiscv
1,524
202635
build/custom_simd_add.elf: file format elf32-littleriscv Disassembly of section .crt_section: 00000000 <_start>: 0: 00100e13 li t3,1 4: 060000b3 0x60000b3 8: 08009c63 bnez ra,a0 <fail> c: 00200e13 li t3,2 10: 00000093 li ra,0 14: 00000113 ...
Source/Numeric.asm
AAKMakes/ASM-projects
0
202636
; New Line Assembly Program ; === STACK SEGMENT === MyStack segment stack DB 64 dup('12345678') MyStack endS ; === DATA SEGMENT === MyData Segment ; --- Declare Varibles here --- firstLine DB "123 Main Street$" secondLine DB "Orangetown, New York$" thirdLine DB "12345$" MyData endS ; === CODE SEGMENT === MyCode...
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_8_329.asm
ljhsiun2/medusa
9
202637
.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+0x6c41, %rsi lea addresses_UC_ht+0xb5cd, %rdi nop cmp %rax, %rax mov $45, %rcx rep movsl nop nop nop nop add %rsi, %rsi lea addresses_D_ht+0x71cd, %rsi lea addresses_WC_ht+0x18...
programs/oeis/219/A219641.asm
karttu/loda
1
202640
<reponame>karttu/loda<filename>programs/oeis/219/A219641.asm ; A219641: a(n) = n minus (number of 1's in Zeckendorf expansion of n). ; 0,0,1,2,2,4,4,5,7,7,8,9,9,12,12,13,14,14,16,16,17,20,20,21,22,22,24,24,25,27,27,28,29,29,33,33,34,35,35,37,37,38,40,40,41,42,42,45,45,46,47,47,49,49,50,54,54,55,56,56,58,58,59,61,61,62,...
programs/oeis/113/A113300.asm
neoneye/loda
22
202641
; A113300: Sum of even-indexed terms of tribonacci numbers. ; 0,1,3,10,34,115,389,1316,4452,15061,50951,172366,583110,1972647,6673417,22576008,76374088,258371689,874065163,2956941266,10003260650,33840788379,114482567053,387291750188,1310198605996,4432370135229,14994600761871,50726371026838 mul $0,2 seq $0,75111 ; a(n)...
kernel.asm
willtran98/MIT_xv6
0
202642
kernel: file format elf32-i386 Disassembly of section .text: 80100000 <multiboot_header>: 80100000: 02 b0 ad 1b 00 00 add 0x1bad(%eax),%dh 80100006: 00 00 add %al,(%eax) 80100008: fe 4f 52 decb 0x52(%edi) 8010000b: e4 0f in $0xf,%al 8010000c <entry>:...
programs/oeis/131/A131426.asm
neoneye/loda
22
202643
<gh_stars>10-100 ; A131426: a(n) = 2*prime(n) - 3. ; 1,3,7,11,19,23,31,35,43,55,59,71,79,83,91,103,115,119,131,139,143,155,163,175,191,199,203,211,215,223,251,259,271,275,295,299,311,323,331,343,355,359,379,383,391,395,419,443,451,455,463,475,479,499,511,523,535,539,551,559,563,583,611 seq $0,6005 ; The odd prime numb...
libsrc/_DEVELOPMENT/math/float/am9511/lam32/z80/asm_sinf.asm
ahjelm/z88dk
640
202644
; float _sinf (float number) __z88dk_fastcall SECTION code_clib SECTION code_fp_am9511 PUBLIC asm_sinf EXTERN asm_am9511_sin_fastcall ; square (^2) sccz80 float ; ; enter : stack = ret ; DEHL = sccz80_float number ; ; exit : DEHL = sccz80_float(sin(number)) ; ; uses : af...
Projects/PJZ2/Framework/IntroPrototype.asm
jonathanbennett73/amiga-pjz-planet-disco-balls
21
202645
<reponame>jonathanbennett73/amiga-pjz-planet-disco-balls ***************************************************************************** ; Name : IntroPrototype.asm ; Coded by : Antiriad (<NAME> <<EMAIL>>) ; Description : Shared useful functions that can be turned on from IntroConfig.i. ; Date last edited : 04/02/20...
kernel.asm
tgv2002/xv6-OS-modified
0
202646
kernel: file format elf32-i386 Disassembly of section .text: 80100000 <multiboot_header>: 80100000: 02 b0 ad 1b 00 00 add 0x1bad(%eax),%dh 80100006: 00 00 add %al,(%eax) 80100008: fe 4f 52 decb 0x52(%edi) 8010000b: e4 .byte 0xe4 8010000c <entry>: # E...
oeis/108/A108733.asm
neoneye/loda-programs
11
202648
; A108733: Expansion of (1+18*x)^(1/3). ; Submitted by <NAME> ; 1,6,-36,360,-4320,57024,-798336,11632896,-174493440,2675566080,-41738830848,660232415232,-10563718643712,170644685783040,-2779070597038080,45576757791424512,-752016503558504448,12474626706088132608,-207910445101468876800,3479764291698268569600,-58460040100...
programs/oeis/190/A190949.asm
jmorken/loda
1
202651
<filename>programs/oeis/190/A190949.asm ; A190949: Odd Fibonacci numbers with odd index. ; 1,5,13,89,233,1597,4181,28657,75025,514229,1346269,9227465,24157817,165580141,433494437,2971215073,7778742049,53316291173,139583862445,956722026041,2504730781961,17167680177565,44945570212853,308061521170129,806515533049393,55279...
Source/triggers/triggers_hook.asm
SiegeEngineers/aoe2-extended-triggers-patch
1
202652
<reponame>SiegeEngineers/aoe2-extended-triggers-patch format ELF extrn '__imp__WriteProcessMemory@20' as WriteProcessMemory:dword extrn '__imp__GetCurrentProcess@0' as GetCurrentProcess:dword extrn '_stringParser' as stringParser:dword extrn '_randomPicker' as randomPicker:dword ;=====================================...
src/HexManiac.Tests/test_code/Expand02_-_Pokemon_Move_Learn_Table.asm
jonakselm/HexManiacAdvance
64
202653
.text .align 2 .thumb .thumb_func .global newmovesetstyle2 main: ldrb r1, [r0, #0x2] mov r2, #0xFF cmp r1, r2 beq exit2 mov r9, r2 mov r3, #0x0 loop: lsl r0, r3, #0x1 add r0, r0, r3 ldr r1, movesettable add r1, r1, r6 ldr r1, [r1, #0x0] add r7, r0, r1 ldrb r0, [r7, #0x2] mov r4, r10 cmp r0, r4 bgt exit2 ...
oeis/253/A253514.asm
neoneye/loda-programs
11
202654
; A253514: Centered heptagonal numbers (A069099) which are also centered octagonal numbers (A016754). ; Submitted by <NAME> ; 1,841,755161,678133681,608963290321,546848356574521,491069215240629481,440979608437728699361,395999197307865131396641,355606838202854450265484201,319334544706965988473273415801,28676206554001725...
Codes/Chapter07/P09/P07-09.asm
ar-ekt/Dandamudi-Assembly-Solutions
8
202655
global _start extern ExitProcess %include "lib.h" ; input format: maximum_score ; test_score1 ; test_score2 ; test_score3 ; ... ; negative_value (end of input) section .data inMSG db "enter the scores (negative value ...
programs/oeis/274/A274979.asm
neoneye/loda
22
202656
<reponame>neoneye/loda ; A274979: Integers of the form m*(m + 7)/8. ; 0,1,15,18,46,51,93,100,156,165,235,246,330,343,441,456,568,585,711,730,870,891,1045,1068,1236,1261,1443,1470,1666,1695,1905,1936,2160,2193,2431,2466,2718,2755,3021,3060,3340,3381,3675,3718,4026,4071,4393,4440,4776,4825,5175,5226,5590,5643,6021,6076,6...
1581/64tass/relnotes.asm
silverdr/assembly
23
202657
;******************************************************************** ; ;Format does not work properly under a partition. ;Change start_motor, and wait_motor routines because ready from ; the drive is not reliable, so a mandatory startup delay is needed. ;Change disk change clear software so it's not as abnoxious. ;Che...
oeis/028/A028815.asm
neoneye/loda-programs
11
202659
; A028815: a(n) = n-th prime + 1 (starting with 1). ; Submitted by <NAME> ; 2,3,4,6,8,12,14,18,20,24,30,32,38,42,44,48,54,60,62,68,72,74,80,84,90,98,102,104,108,110,114,128,132,138,140,150,152,158,164,168,174,180,182,192,194,198,200,212,224,228,230,234,240,242,252,258,264,270,272,278,282,284 sub $0,1 mov $2,1 max $2,$...
programs/oeis/020/A020530.asm
neoneye/loda
22
202661
<reponame>neoneye/loda<gh_stars>10-100 ; A020530: a(n) = 8^n + 2^(n+1). ; 3,12,72,528,4128,32832,262272,2097408,16777728,134218752,1073743872,8589938688,68719484928,549755830272,4398046543872,35184372154368,281474976841728,2251799813947392,18014398510006272,144115188076904448,1152921504608944128,9223372036858970112,737...
assembly/tutorialspoint/change_name.asm
ZahFox/systems-programming
0
202662
section .data name db '<NAME> ' section .text global _start ; must be declared for linker (ld) _start: ; tell linker that this is the entry point ; writing the name '<NAME>' mov edx, 9 ; message length mov ecx, name ; message to write mov ebx, 1 ; file descriptor (stdout) mov eax, 4 ...
src/asm/psgdriver.asm
h1romas4/z88dk-msx-template
5
202664
; ==================================================================================================== ; ; PSG Sound Driver ; ; licence:MIT Licence ; copyright-holders:<NAME>(aburi6800) ; ; ==================================================================================================== SECTION code_user ; for C A...
oeis/318/A318755.asm
neoneye/loda-programs
11
202665
; A318755: a(n) = Sum_{k=1..n} tau(k)^3, where tau is A000005. ; 1,9,17,44,52,116,124,188,215,279,287,503,511,575,639,764,772,988,996,1212,1276,1340,1348,1860,1887,1951,2015,2231,2239,2751,2759,2975,3039,3103,3167,3896,3904,3968,4032,4544,4552,5064,5072,5288,5504,5568,5576,6576,6603,6819,6883,7099,7107,7619,7683,8195,8...
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48_notsx.log_21829_1377.asm
ljhsiun2/medusa
9
202666
<reponame>ljhsiun2/medusa<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r8 push %r9 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0x1ebf4, %rdx nop nop nop and %r8, %r8 mov $0x6162636465666768, %r9 movq %r9, %xmm2 movups %xmm2, (%rdx) nop nop nop xor $14604, %rdi lea...
oeis/013/A013971.asm
neoneye/loda-programs
11
202667
<gh_stars>10-100 ; A013971: a(n) = sum of 23rd powers of divisors of n. ; 1,8388609,94143178828,70368752566273,11920928955078126,789730317205170252,27368747340080916344,590295880727458217985,8862938119746644274757,100000011920928963466734,895430243255237372246532,6624738056749922960468044,41753905413413116367045798,229...
oeis/086/A086223.asm
neoneye/loda-programs
11
202668
; A086223: Every integer can be represented uniquely as m = k*2^(j+1)+2^j-1. Sequence gives values of k for m = repunit(n). ; 0,1,3,69,694,6944,69444,694444,6944444,69444444,694444444,6944444444,69444444444,694444444444,6944444444444,69444444444444,694444444444444,6944444444444444,69444444444444444,694444444444444444,6...
oeis/155/A155119.asm
neoneye/loda-programs
11
202669
<reponame>neoneye/loda-programs ; A155119: a(n) = 5*a(n-1) + 5*a(n-2), n > 2, a(0)=1, a(1)=4, a(2)=24. ; Submitted by <NAME> ; 1,4,24,140,820,4800,28100,164500,963000,5637500,33002500,193200000,1131012500,6621062500,38760375000,226907187500,1328337812500,7776225000000,45522814062500,266495195312500,1560090046875000,913...
oeis/086/A086270.asm
neoneye/loda-programs
11
202670
<reponame>neoneye/loda-programs<filename>oeis/086/A086270.asm ; A086270: Rectangular array T(k,n) of polygonal numbers, by antidiagonals. ; Submitted by <NAME> ; 1,3,1,6,4,1,10,9,5,1,15,16,12,6,1,21,25,22,15,7,1,28,36,35,28,18,8,1,36,49,51,45,34,21,9,1,45,64,70,66,55,40,24,10,1,55,81,92,91,81,65,46,27,11,1,66,100,117,1...
libsrc/_DEVELOPMENT/arch/zxn/esxdos/c/sdcc_iy/esx_m_tapeout_open.asm
jpoikela/z88dk
640
202671
<reponame>jpoikela/z88dk ; unsigned char esx_m_tapeout_open(unsigned char *appendname) SECTION code_esxdos PUBLIC _esx_m_tapeout_open EXTERN _esx_m_tapeout_open_fastcall _esx_m_tapeout_open: pop af pop hl push hl push af jp _esx_m_tapeout_open_fastcall
Library/Text/TextAttr/taStorage.asm
steakknife/pcgeos
504
202672
COMMENT @---------------------------------------------------------------------- Copyright (c) GeoWorks 1989 -- All Rights Reserved PROJECT: PC GEOS MODULE: User/Text FILE: taStorage.asm REVISION HISTORY: Name Date Description ---- ---- ----------- Tony 1/92 Initial version DESCRIPTION: $Id...
ExtLibraries/FreeRTOSV7.4.2/FreeRTOS/Source/portable/Rowley/MSP430F449/portext.asm
CausticUC/STM32-Bootloader
0
202673
/* FreeRTOS V7.4.2 - Copyright (C) 2013 Real Time Engineers Ltd. FEATURES AND PORTS ARE ADDED TO FREERTOS ALL THE TIME. PLEASE VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. *************************************************************************** * ...
libsrc/stdio_new/fd/general/stdio_fdcommon1.asm
meesokim/z88dk
8
202674
<reponame>meesokim/z88dk ; stdio_fdcommon1 ; 07.2009 aralbrec PUBLIC stdio_fdcommon1 ; common code factored out of a lot of fd functions ; ; enter : l = fd ; exit : ix = fdstruct *, carry reset ; hl = & stdio_fdtbl[fd] + 1 ; carry set if fd out of range or fdstruct is invalid ; uses : af, hl, ix ....
books/pentest_with_shell/sar.nasm
argodev/learn
0
202675
global _start section .text _start: mov rax, 0x0fffffffffffffff sar rax, 4 mov rax, 60 mov rdi, 0 syscall section .data
programs/oeis/021/A021535.asm
neoneye/loda
22
202676
; A021535: Decimal expansion of 1/531. ; 0,0,1,8,8,3,2,3,9,1,7,1,3,7,4,7,6,4,5,9,5,1,0,3,5,7,8,1,5,4,4,2,5,6,1,2,0,5,2,7,3,0,6,9,6,7,9,8,4,9,3,4,0,8,6,6,2,9,0,0,1,8,8,3,2,3,9,1,7,1,3,7,4,7,6,4,5,9,5,1,0,3,5,7,8,1,5,4,4,2,5,6,1,2,0,5,2,7,3 seq $0,42 ; Unary representation of natural numbers. mod $0,59 add $0,9 mod $0,1...
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_122_1003.asm
ljhsiun2/medusa
9
202677
.global s_prepare_buffers s_prepare_buffers: ret .global s_faulty_load s_faulty_load: push %r10 push %r12 push %r13 push %rcx push %rdi push %rdx // Faulty Load lea addresses_WC+0x1edd4, %r13 dec %rcx movb (%r13), %dl lea oracles, %r13 and $0xff, %rdx shlq $12, %rdx mov (%r13,%rdx,1), %rdx pop %rdx pop %rdi pop %...
Assembly/GASHellox64.asm
qianniancc/Study2018
0
202679
.data msg: .asciz "Hello, world!\n" .extern printf .extern flush .text .global main # entry point main: movq %rsp, %rbp #for correct debugging subq $32, %rsp andq $-16, %rsp movq $msg, %rcx call printf movq %rbp, %rsp xorq %rax, %rax ret
web/hello.asm
cybermaggedon/cm99109
0
202680
<reponame>cybermaggedon/cm99109 reset: jump start int0: reti nop int1: reti nop start: move $r1, hello loop: move $r2, [$r1] equal $r2, 0 jumpt done move [224], $r2 inc $r1 jump loop done: halt hello: db "*** Hello world ***" db 10 db 0
sw/552tests/rand_simple/t_4_roli.asm
JPShen-UWM/ThreadKraken
1
202681
// seed 4 lbi r0, 203 // icount 0 slbi r0, 189 // icount 1 lbi r1, 48 // icount 2 slbi r1, 110 // icount 3 lbi r2, 255 // icount 4 slbi r2, 217 // icount 5 lbi r3, 152 // icount 6 slbi r3, 23 // icount 7 lbi r4, 102 // icount 8 slbi r4, 109 // icount 9 lbi r5, 4 // icount 10 slbi r5, 255 // icount 11 lbi r6, 226 // ico...
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca.log_21829_805.asm
ljhsiun2/medusa
9
202682
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %r14 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x1b91f, %r12 nop nop nop xor $56861, %r13 mov $0x6162636465666768, %rdi movq %rdi, (%r12) nop nop nop nop nop and $29105, %r12 lea addresses_A_ht+0xbc83, %r14 clflush (%r14) n...
oeis/039/A039973.asm
neoneye/loda-programs
11
202684
<reponame>neoneye/loda-programs ; A039973: An example of a d-perfect sequence: a(2*n) = 0, a(2*n-1) = A039965(n). ; Submitted by <NAME> ; 1,0,2,0,2,0,1,0,2,0,0,0,0,0,0,0,2,0,1,0,2,0,2,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,2,0,2,0,1,0,2,0,0,0,0,0,0,0,2,0,1,0,2,0,2,0,1,0,2,0,0,0,0,0,0,0,0,0,0,...
oeis/128/A128135.asm
neoneye/loda-programs
11
202685
; A128135: Row sums of A128134. ; 1,3,10,28,72,176,416,960,2176,4864,10752,23552,51200,110592,237568,507904,1081344,2293760,4849664,10223616,21495808,45088768,94371840,197132288,411041792,855638016,1778384896,3690987520,7650410496,15837691904,32749125632,67645734912,139586437120,287762808832,592705486848,1219770712064,...
asm/por_charlotte_only.asm
Iemnur/DSVEdit
70
202688
.nds .relativeinclude on .erroronwarning on .open "ftc/overlay9_25", 022D7900h ; In Jonathan mode, start the game as player 2 (Charlotte) instead of player 1. .org 0x022D90F0 strb r3,[r1,0CE7h] nop .close .open "ftc/overlay9_78", 022E8820h ; Make the drawbridge be down by default in all modes. .org 0x022E8880 ...
Transynther/x86/_processed/AVXALIGN/_ht_st_zr_un_sm_/i9-9900K_12_0xa0_notsx.log_21829_1370.asm
ljhsiun2/medusa
9
202689
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r8 push %rbp push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0x14da1, %rsi nop nop nop nop nop xor $17989, %rdx movw $0x6162, (%rsi) nop nop nop nop cmp %rsi, %rsi lea addresses_D_ht+0x7da1, %r10 nop nop sub %rbx, %rbx vmov...
45/qb/ir/typmgr.asm
minblock/msdos
0
202690
<filename>45/qb/ir/typmgr.asm TITLE TYPMGR - Type Table Management Code for QBI ;*** ;TypMgr.asm - Type Table Management Code for QBI ; ; Copyright <C> 1986, Microsoft Corporation ; ;Purpose: ; Create and search for User defined types and elements of types ;Assumptions: ; The "module type table" was at one point an a...
unittests/ASM/Primary/Primary_8D.asm
cobalt2727/FEX
628
202691
<gh_stars>100-1000 %ifdef CONFIG { "RegData": { "R15": "0x4142434445464748", "R14": "0x929496989A9C9EA0", "R13": "0x0000000045464748", "R12": "0x000000009A9C9EA0", "R11": "0x828486888A8C8E90", "R10": "0x565B60656A6F7478", "R9": "0x41424344454647A9", "R8": "0x92949698FBFF0204", "R...
programs/oeis/264/A264129.asm
ckrause/cm
22
202692
; A264129: Number of (n+1) X (4+1) arrays of permutations of 0..n*5+4 with each element having index change +-(.,.) 0,0 0,2 or 1,2. ; 80,1040,13600,178000,2330000,30500000,399250000,5226250000,68412500000,895531250000,11722656250000,153451562500000,2008707031250000,26294316406250000,344197070312500000,45055981445312500...
src/asm/Initialize.asm
fourstix/1802PixieVideoTTY
1
202693
<filename>src/asm/Initialize.asm ; ***************************************************************************************** ; Copyright (c) 2020 ; by <NAME> ; ; Changes: ; <NAME>, July, 2020 - Rewrote Initialisation.asm file as Initialize.asm ; <NAME>, July, 2020 - Removed unused include files ; <NAME>, July, 2020 - R...
oeis/098/A098228.asm
neoneye/loda-programs
11
202694
; A098228: a(n) = floor(n/(n-phi(n)) = floor(n/cototient(n)). ; Submitted by <NAME>(s2) ; 2,3,2,5,1,7,2,3,1,11,1,13,1,2,2,17,1,19,1,2,1,23,1,5,1,3,1,29,1,31,2,2,1,3,1,37,1,2,1,41,1,43,1,2,1,47,1,7,1,2,1,53,1,3,1,2,1,59,1,61,1,2,2,3,1,67,1,2,1,71,1,73,1,2,1,4,1,79,1,3,1,83,1,4,1,2,1,89,1,4,1,2,1,4,1,97 add $0,1 mov $1,...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_283.asm
ljhsiun2/medusa
9
202696
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r13 push %r14 push %r15 push %rcx push %rdi push %rsi lea addresses_UC_ht+0x1957, %rdi cmp $17723, %r15 vmovups (%rdi), %ymm3 vextracti128 $0, %ymm3, %xmm3 vpextrq $0, %xmm3, %rsi nop nop xor %r14, %r14 lea addresses_D_ht+0x123e7, %rsi lea addresses...
ten_fifteen_range_validation.asm
alfiejsmith/LMC
1
202697
// Write a program that keeps asking for an input until a value between // 10 and 15 is entered (10 <= x <= 15) BRA getInput getInput INP SUB ten BRZ halt SUB one BRZ halt SUB one BRZ halt SUB one BRZ halt SUB one BRZ ha...
Library/Bitmap/bitmapC.asm
steakknife/pcgeos
504
202699
<gh_stars>100-1000 COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1991 -- All Rights Reserved PROJECT: PC GEOS MODULE: FILE: bitmapC.asm AUTHOR: <NAME> REVISION HISTORY: Name Date Description ---- ---- ----------- jimmy 11/11/93 Initial version....
0x1b.asm
SpeedStepper/XchgRaxRax
53
202701
; ; $Id: 0x1b.asm,v 1.1.1.1 2016/03/27 08:40:12 raptor Exp $ ; ; 0x1b explanation - from xchg rax,rax by <EMAIL> ; Copyright (c) 2016 <NAME> <<EMAIL>> ; ; This is yet another variation on the theme of the x86_64 ; call stack. This snippet puts the address in rax on top ; of the stack (via the push instruction) and th...
scanner.asm
2che/tasm_number_scanner
0
202702
.186 STATE_START equ 0 ; новое число ещё не вводилось STATE_PLUS equ 1 ; введён плюс STATE_POS_DEC equ 2 ; вводится положительное десятичное число STATE_POS_HEX_START equ 3 ; обозначено начало положительного шестнадцатеричного числа STATE_POS_HEX equ 4 ; вводится пол...
lib/newbrain_crt0.asm
andydansby/z88dk-mk2
1
202703
<gh_stars>1-10 ; ; Grundy NewBrain startup code ; ; ; $Id: newbrain_crt0.asm,v 1.7 2009/06/22 21:20:05 dom Exp $ ; MODULE newbrain_crt0 ;-------- ; Include zcc_opt.def to find out some info ;-------- INCLUDE "zcc_opt.def" ;-------- ; Some scope definitions ;-------- XREF ...