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 |
|---|---|---|---|---|
smsq/qa/log.asm | olifink/smsqe | 0 | 49532 | ; QL Arithmetic LN, LOG10 V2.01 1990 <NAME> QJUMP
section qa
xdef qa_ln
xdef qa_log10
xref qa_add
xref qa_addd
xref qa_mul
xref qa_muld
xref qa_div
xref qa_float
xref qa_pushd
xref qa_dup
xref qa_swap
include 'dev8_keys_err'
; long divide: assumes msb of divisor set
qln_uldiv
move.l d1,d2
... |
libsrc/stdio/ansi/p2000/f_ansi_bel.asm | jpoikela/z88dk | 640 | 49534 | ;
; ANSI Video handling for the P2000T
;
; <NAME> - Apr. 2014
;
;
; BEL - chr(7) Beep it out
;
; $Id: f_ansi_bel.asm,v 1.3 2016-06-12 16:06:43 dom Exp $
;
SECTION code_clib
PUBLIC ansi_BEL
.ansi_BEL
ld a,7
jp $60C0
|
day22/task_asm.asm | ghosind/HariboteOS | 11 | 49535 | [BITS 32]
GLOBAL load_tr
GLOBAL far_jmp, far_call
load_tr: ; void load_tr(int tr);
LTR [ESP+4] ; tr
RET
far_jmp: ; void far_jmp(int eip, int cs);
JMP FAR [ESP+4]
RET
far_call: ; void far_call(int eip, int cs);
CALL FAR [ESP+4] ;; eip, cs
RET
|
oeis/001/A001554.asm | neoneye/loda-programs | 11 | 49536 | ; A001554: 1^n + 2^n + ... + 7^n.
; Submitted by <NAME>
; 7,28,140,784,4676,29008,184820,1200304,7907396,52666768,353815700,2393325424,16279522916,111239118928,762963987380,5249352196144,36210966447236,250337422025488,1733857359003860,12027604452404464,83544895168776356,580964060390826448,4043844561787569140,2817046895... |
programs/oeis/007/A007091.asm | neoneye/loda | 22 | 49537 | ; A007091: Numbers in base 5.
; Coded manually 2021-05-07 by <NAME>, https://github.com/neoneye
; 0,1,2,3,4,10,11,12,13,14,20,21,22,23,24,30,31,32,33,34,40,41,42,43,44,100,101,102,103,104,110,111,112,113,114,120,121,122,123,124,130,131,132,133,134,140,141,142,143,144,200,201,202,203,204,210,211,212,213,214,220,221,222,... |
Source/pread.asm | LarryTheKing/VGS | 0 | 49538 | # pread -- prompt for and read an integer
#
# on entry:
# $ra -- return address
#
# on exit:
# $v0 -- the integer
.text
.global pread
pread:
la $a0,prompt # print string
li $v0,4 # service 4
syscall #
li $v0,5 # read int into $v0
syscall # service 5
jr $ra # retu... |
proxydll_wtsapi32/wtsapi32.asm | n0ncetonic/proxydll_template | 1 | 49539 | <reponame>n0ncetonic/proxydll_template<gh_stars>1-10
ifndef x64
.model flat, stdcall
.safeseh SEH_handler
endif
.code
ifndef x64
resolve_export_proc proto C, arg1:dword
else
extern resolve_export_proc:proc
endif
M_EXPORT_PROC macro export, index
export proc
ifndef x64
invoke r... |
programs/oeis/024/A024172.asm | jmorken/loda | 1 | 49540 | ; A024172: Integer part of ((3rd elementary symmetric function of 1,2,..,n)/(2nd elementary symmetric function of 1,2,...,n)).
; 0,0,1,2,4,6,8,10,13,16,20,24,28,33,38,43,48,54,60,67,74,81,89,97,105,113,122,131,141,151,161,172,183,194,205,217,229,242,255,268,282,296,310,324,339,354,370,386,402,419,436,453,470,488,506,52... |
ok.asm | rodolfovalentim/sistemb2016-1 | 0 | 49541 | BITS 32
start:
mov eax, 0xb7469FFF
mov ebx, 'CySC'
compare:
inc eax
cmp [eax], ebx
jne compare
foundit:
xor ecx, ecx
mov cl, al
xor ebx, ebx
deobfuscate:
dec bl
xor [eax+ebx],al
cmp bl, 0x4
jne deobfuscate
execute:
add eax, 4
call... |
programs/oeis/242/A242725.asm | karttu/loda | 1 | 49543 | ; A242725: Sequence with all (x, y) = (a(2m), a(2m+-1)) satisfying x|y^2+y+1 and y|x^2+1.
; 1,1,3,10,37,137,511,1906,7113,26545,99067,369722,1379821,5149561,19218423,71724130,267678097,998988257,3728274931,13914111466,51928170933,193798572265,723266118127,2699265900242,10073797482841,37595924031121,140309898641643
sub... |
配套代码/L029/L029/1.1.asm | zmrbak/ReverseAnalysis | 35 | 49544 | ; Listing generated by Microsoft (R) Optimizing Compiler Version 19.24.28117.0
TITLE C:\Users\libit\source\repos\L029\L029\L029.cpp
.686P
.XMM
include listing.inc
.model flat
INCLUDELIB LIBCMT
INCLUDELIB OLDNAMES
CONST SEGMENT
$SG5559 DB 'Hello World!', 0aH, 00H
ORG $+2
$SG5560 DB 'Hello World!', 00H
CONST EN... |
libsrc/_DEVELOPMENT/math/integer/l_divu_16_16x16.asm | teknoplop/z88dk | 0 | 49545 | <filename>libsrc/_DEVELOPMENT/math/integer/l_divu_16_16x16.asm<gh_stars>0
INCLUDE "clib_cfg.asm"
SECTION code_clib
SECTION code_math
PUBLIC l_divu_16_16x16, l0_divu_16_16x16
; compute: hl = hl / de, de = hl % de
; alters : af, bc, de, hl
; alternate entry (l_divu_16_16x16 - 1)
; exchanges divisor ... |
verify/alfy/4_branch/even_and_div6.alfy.asm | alexandruradovici/alf-alfy-asm-public | 0 | 49546 | <reponame>alexandruradovici/alf-alfy-asm-public
; script
start:
; asm
readnumber r2
; a: r3
set r3 0
store r3 r2
; if
; expression =
; expression mod
; a: r4
set r4 0
load r4 r4
; value int 2
... |
main.asm | soutokevin/trab-oac | 0 | 49547 | <reponame>soutokevin/trab-oac<filename>main.asm
.data
# --------------------------------------------------------------------------- #
# Image's space reservation #
# --------------------------------------------------------------------------- #
screen: .space 1048576... |
programs/oeis/305/A305156.asm | karttu/loda | 1 | 49548 | <reponame>karttu/loda<filename>programs/oeis/305/A305156.asm
; A305156: a(n) = 136*2^n - 78 (n>=0).
; 58,194,466,1010,2098,4274,8626,17330,34738,69554,139186,278450,556978,1114034,2228146,4456370,8912818,17825714,35651506,71303090,142606258,285212594,570425266,1140850610,2281701298,4563402674,9126805426,18253610930,365... |
kernel/init/bios.asm | gniuk/BOS | 16 | 49550 | <filename>kernel/init/bios.asm<gh_stars>10-100
;----------------------------------------------------------;
; BOS kernel <NAME>, 2003-2005. ;
;----------------------------------------------------------;
; ;
; Goes back to realmode to do ... |
src/Shaders/Sdk/Direct3D11/NBodyGravityCS11/ParticleDraw_VS.asm | tgjones/slimshader-cpp | 20 | 49551 | <reponame>tgjones/slimshader-cpp<filename>src/Shaders/Sdk/Direct3D11/NBodyGravityCS11/ParticleDraw_VS.asm
//
// Generated by Microsoft (R) HLSL Shader Compiler 9.30.9200.16384
//
//
///
// Buffer Definitions:
//
// Resource bind info for g_bufPosVelo
// {
//
// struct
// {
//
// float4 pos; ... |
Driver/Printer/PrintCom/Text/Font/fontDiconixInfo.asm | steakknife/pcgeos | 504 | 49552 |
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) Berkeley Softworks 1990 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Kodak/Diconix type 9-jet drivers
FILE: fontDiconixInfo.asm
AUTHOR: <NAME>, 1 Sept 1992
REVISION HISTORY:
Name Date Description
---... |
libsrc/target/z9001/graphics/plot_MODE1.asm | dikdom/z88dk | 1 | 49553 | PUBLIC plot_MODE1
EXTERN __krt_plot
EXTERN __z9001_attr
plot_MODE1:
call __krt_plot
dec h
dec h
dec h
dec h
ld a,(__z9001_attr)
ld (hl),a
ret |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_19508_1634.asm | ljhsiun2/medusa | 9 | 49556 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x16c7c, %r11
nop
sub %rbx, %rbx
mov $0x6162636465666768, %rax
movq %rax, %xmm5
movups %xmm5, (%r11)
nop
nop
nop
nop
nop
sub $37107, %rbx
lea addresses_D_ht+0xe07c, %r9
nop
nop
... |
aux/2600/enax_delay/enam_delay.asm | 6502ts/6502.ts | 49 | 49557 | <reponame>6502ts/6502.ts<filename>aux/2600/enax_delay/enam_delay.asm
PROCESSOR 6502
OVERSCAN_LINES = 36
COLOR_P0 = $48
COLOR_P1 = $0C
THICKNESS = 2
DELAY = 2
INCLUDE vcs.h
INCLUDE macro.h
SEG.U VARS
ORG $E0
TestTarget DS.W
SEG CODE
ORG $F000
MAC IndirectJSR
.base
LDA #(.base + 8) >> 8
PHA
... |
oeis/129/A129847.asm | neoneye/loda-programs | 11 | 49558 | ; A129847: b(n) = number of set partitions of {1, 2, ..., n} whose blocks consist only of elements that differ by two or less (that is, have only the forms {i}, {i,i+1}, {i,i+2}, or {i,i+1,i+2}).
; Submitted by <NAME>(s3)
; 1,1,2,5,10,20,42,87,179,370,765,1580,3264,6744,13933,28785,59470,122865,253838,524428,1083466,22... |
programs/oeis/008/A008253.asm | karttu/loda | 1 | 49559 | <gh_stars>1-10
; A008253: Coordination sequence for diamond.
; 1,4,12,24,42,64,92,124,162,204,252,304,362,424,492,564,642,724,812,904,1002,1104,1212,1324,1442,1564,1692,1824,1962,2104,2252,2404,2562,2724,2892,3064,3242,3424,3612,3804,4002,4204,4412,4624,4842,5064,5292,5524,5762,6004,6252,6504,6762,7024,7292,7564,7842,8... |
oeis/199/A199690.asm | neoneye/loda-programs | 11 | 49560 | <gh_stars>10-100
; A199690: (11*10^n+1)/3.
; 4,37,367,3667,36667,366667,3666667,36666667,366666667,3666666667,36666666667,366666666667,3666666666667,36666666666667,366666666666667,3666666666666667,36666666666666667,366666666666666667,3666666666666666667,36666666666666666667,366666666666666666667,3666666666666666666667,... |
unittests/ASM/PrimaryGroup/2_D1_03_3.asm | cobalt2727/FEX | 628 | 49561 | <gh_stars>100-1000
%ifdef CONFIG
{
"RegData": {
"RBX": "0x8000000000000000",
"RCX": "0x0000000000000000",
"RDX": "0xC000000000000000",
"RSI": "0x4000000000000000",
"R8": "0x1",
"R9": "0x1",
"R10": "0x0",
"R11": "0x0"
}
}
%endif
mov rbx, 0x0000000000000001
mov rcx, 0x00000000000000... |
tmp1/c55x-sim2/foo/Debug/csl_audioClass.asm | jwestmoreland/eZdsp-DBG-sim | 1 | 49562 | <filename>tmp1/c55x-sim2/foo/Debug/csl_audioClass.asm<gh_stars>1-10
;*******************************************************************************
;* TMS320C55x C/C++ Codegen PC v4.4.1 *
;* Date/Time created: Sat Oct 06 06:37:21 2018 *
;********... |
oeis/336/A336630.asm | neoneye/loda-programs | 11 | 49563 | ; A336630: a(n) = 2*F(2*n+1) + 4*F(n+1)*F(n-1) for n > 0, with a(0) = 0 and F(n) = A000045(n).
; Submitted by <NAME>
; 0,4,18,38,108,274,726,1892,4962,12982,33996,88994,232998,609988,1596978,4180934,10945836,28656562,75023862,196415012,514221186,1346248534,3524524428,9227324738,24157449798,63245024644,165577624146,4334... |
disclaimer_st.asm | jorgicor/altair | 0 | 49564 | ; ----------------------------------------------------------------------------
; Altair, CIDLESA's 1981 arcade game remade for the ZX Spectrum and
; Amstrad CPC.
; ----------------------------------------------------------------------------
; ----------------------------------------------------------------------------... |
programs/oeis/063/A063440.asm | neoneye/loda | 22 | 49565 | <reponame>neoneye/loda
; A063440: Number of divisors of n-th triangular number.
; 1,2,4,4,4,4,6,9,6,4,8,8,4,8,16,8,6,6,8,16,8,4,12,18,6,8,16,8,8,8,10,20,8,8,24,12,4,8,24,12,8,8,8,24,12,4,16,24,9,12,16,8,8,16,24,24,8,4,16,16,4,12,36,24,16,8,8,16,16,8,18,18,4,12,24,16,16,8,16,40,10,4,16,32,8,8,24,12,12,24,16,16,8,8,40,20... |
programs/oeis/213/A213780.asm | neoneye/loda | 22 | 49566 | <gh_stars>10-100
; A213780: Antidiagonal sums of the convolution array A213778.
; 1,6,17,40,78,140,230,360,535,770,1071,1456,1932,2520,3228,4080,5085,6270,7645,9240,11066,13156,15522,18200,21203,24570,28315,32480,37080,42160,47736,53856,60537,67830,75753,84360,93670,103740,114590,126280,138831,152306,166727,182160,1986... |
programs/oeis/212/A212090.asm | neoneye/loda | 22 | 49567 | <filename>programs/oeis/212/A212090.asm
; A212090: Number of (w,x,y,z) with all terms in {1,...,n} and w<x+y+z.
; 0,1,16,80,251,610,1261,2331,3970,6351,9670,14146,20021,27560,37051,48805,63156,80461,101100,125476,154015,187166,225401,269215,319126,375675,439426,510966,590905,679876,778535,887561,1007656,1139545
mov $1... |
libsrc/_DEVELOPMENT/math/float/math48/c/sdcc_ix/cm48_sdccix_expm1_fastcall.asm | jpoikela/z88dk | 640 | 49568 | <filename>libsrc/_DEVELOPMENT/math/float/math48/c/sdcc_ix/cm48_sdccix_expm1_fastcall.asm
; float expm1(float x) __z88dk_fastcall
SECTION code_clib
SECTION code_fp_math48
PUBLIC cm48_sdccix_expm1_fastcall
EXTERN cm48_sdccixp_dx2m48, am48_expm1, cm48_sdccixp_m482d
cm48_sdccix_expm1_fastcall:
call cm48_sdccixp_dx... |
baseglob.asm | wbrbr/clink | 0 | 49569 | <filename>baseglob.asm
BITS 64
section .text
global _start
_start:
mov rax, 1
mov rdi, 1
mov rsi, msg
mov rdx, msglen
syscall
mov rdi, [g]
mov rax, 60
syscall
section .data
global g
g: dq 30
msg: db "Hello, world!", 10
msglen: equ $ - msg
|
libsrc/z80_crt0s/crt0_long/8080/l_long_ucmp.asm | grancier/z180 | 0 | 49570 | <gh_stars>0
; Z88 Small C+ Run Time Library
; Long support functions
; "8080" mode
; Stefano - 30/4/2002
; $Id: l_long_ucmp.asm,v 1.2 2016/06/16 20:31:05 dom Exp $
;
SECTION code_crt0_sccz80
PUBLIC l_long_ucmp
; Unsigned compare of dehl (stack) and dehl (registers)
;
; E... |
Source/Kernel/BootLoad/Intel/Isr.asm | collinsmichael/spartan | 16 | 49571 |
; compile with fasm.exe: (https://flatassembler.net/)
; fasm isr.asm isr.obj
;
format binary as 'bin'
use32
RING0 = 0x0010
ERROR = 0x002C
PAGES = 0x2000
master: cli ; disable interrupts
nop ; this nop makes debugging easier
pushad... |
programs/oeis/050/A050508.asm | jmorken/loda | 1 | 49572 | ; A050508: Golden rectangle numbers: n * A007067(n).
; 0,2,6,15,24,40,60,77,104,135,160,198,228,273,322,360,416,476,522,589,640,714,792,851,936,1000,1092,1188,1260,1363,1470,1550,1664,1749,1870,1995,2088,2220,2318,2457,2600,2706,2856,3010,3124,3285,3404,3572,3744,3871,4050,4233,4368,4558,4698,4895,5096,5244,5452,5605,5... |
c3_util.asm | runer112/Doors_CS_7 | 17 | 49573 | <filename>c3_util.asm
;CELTIC major revision 3 by <NAME>
;This software is licensed in accordance to the attached
;ReadMe file, however perverted it may be.
;Subroutines, main utility file
;Utility routines file for Celtic III project
;
;From WikiTI romcall reference:
;CreateVar : bcall($4E70) A=type, HL=size, OP1+1 = ... |
hello.asm | gabesk/baremetalhelloworld | 0 | 49574 | <filename>hello.asm
org 0x7C00 ; The BIOS loads the bootloader at 0x7C00 so tell NASM
; to add that amount to to label addresses.
bits 16 ; Tell NASM to use 16 bit encoding.
mov ax, 0x2401 ; Disable A20 line. (There are theoretically various
int 0x15 ; ways one... |
11 smaller.asm | jpsxlr8/Microprocessor-Lab | 0 | 49575 | ; find smallest number in array of 8-bit number
LDA 024DH ;fetch value of N
MOV B, A ;save value of N in B
LXI H, 0250H ;fetch first element, set it as smallest
MOV A, M ;save first element
DCR B ;decrement, since first element is smallest
INX H ;increment to second element
loop: CMP M
JC iterate
MOV A, M
... |
scripts/pokemontower5.asm | etdv-thevoid/pokemon-rgb-enhanced | 1 | 49576 | PokemonTower5Script:
call EnableAutoTextBoxDrawing
ld hl, PokemonTower5TrainerHeader0
ld de, PokemonTower5ScriptPointers
ld a, [wPokemonTower5CurScript]
call ExecuteCurMapScriptInTable
ld [wPokemonTower5CurScript], a
ret
PokemonTower5ScriptPointers:
dw PokemonTower5Script0
dw DisplayEnemyTrainerTextAndStartBa... |
oeis/033/A033661.asm | neoneye/loda-programs | 11 | 49577 | ; A033661: Trajectory of 31 under map x->x + (x-with-digits-reversed).
; Submitted by <NAME>(s4)
; 31,44,88,176,847,1595,7546,14003,44044,88088,176176,847847,1596595,7553546,14007103,44177144,88354288,176599676,853595347,1597190705,6668108656,13236127322,35608290553,71117571206
mov $2,$0
lpb $2
mov $0,$1
add $0,31... |
Appl/SDK_Asm/no_go/ToolSamp/toolsamp.asm | steakknife/pcgeos | 504 | 49580 | COMMENT @----------------------------------------------------------------------
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: ToolSamp (Sample PC GEOS application)
FILE: toolsamp.asm
REVISION HISTORY:
Name Date Description
---- ---- -----------
doug 1/92 Initial vers... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_263_1375.asm | ljhsiun2/medusa | 9 | 49581 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x3822, %rsi
lea addresses_D_ht+0x1731a, %rdi
clflush (%rsi)
nop
nop
nop
nop
dec %r13
mov $68, %rcx
rep movsl
nop
nop
and %r13, %r13
lea addresses_UC_ht+0xa91a, %rsi
lea addresses_UC_ht+0x1c11a, %rdi
clflu... |
Transynther/x86/_processed/AVXALIGN/_zr_un_/i9-9900K_12_0xa0_notsx.log_21829_507.asm | ljhsiun2/medusa | 9 | 49582 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r15
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x1df35, %rcx
nop
nop
xor $50236, %r12
mov $0x6162636465666768, %rdi
movq %rdi, %xmm2
vmovups %ymm2, (%rcx)
add %rbx, %rbx
lea addresses_normal_ht+0xe14b, %r15... |
oeis/118/A118170.asm | neoneye/loda-programs | 11 | 49584 | ; A118170: x for which abs(n^n-x!) is minimal for given n.
; 1,1,3,4,5,7,8,9,10,12,13,14,15,17,18,19,20,22,23,24,25,27,28,29,30,31,33,34,35,36,37,39,40,41,42,43,45,46,47,48,49,51,52,53,54,55,57,58,59,60,61,63,64,65,66,67,68,70,71,72,73,74,76,77,78,79,80,81,83,84,85,86
pow $0,$0
lpb $0
mov $2,$0
lpb $0
mov $0,$... |
ssu-sys-programming/src/lab5/task.asm | Imperat/SSU-Information-Security-Course | 0 | 49586 | <filename>ssu-sys-programming/src/lab5/task.asm<gh_stars>0
.model small
.stack 100h
.186
.data
row db 30
col db 20
color db 00001010b
mode db ?
char db 'C'
.code
; Получение/установка видеорежима
b10mode proc
pusha
mov ah, 0Fh
int 10h
mov mode, al
mov ax, 0003h
int 10h
... |
V2/src/CPM/CPM.asm | anjennings/Tom80 | 55 | 49588 | <reponame>anjennings/Tom80
;**************************************************************
;*
;* C P / M version 2 . 2
;*
;* Reconstructed from memory image on February 27, 1981
;*
;* by <NAME>
;*
;**************************************************************
;
; Set memory limit her... |
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0x48.log_3_304.asm | ljhsiun2/medusa | 9 | 49589 | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r15
push %r9
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
// Store
lea addresses_WC+0x7091, %rcx
nop
nop
and $17356, %rsi
mov $0x5152535455565758, %rbp
movq %rbp, (%rcx)
nop
nop
dec %rcx
// Store
lea addresses_WC+0x3... |
programs/oeis/102/A102377.asm | jmorken/loda | 1 | 49590 | ; A102377: Gould's sequence A001316 in binary.
; 1,10,10,100,10,100,100,1000,10,100,100,1000,100,1000,1000,10000,10,100,100,1000,100,1000,1000,10000,100,1000,1000,10000,1000,10000,10000,100000,10,100,100,1000,100,1000,1000,10000,100,1000,1000,10000,1000
mov $2,$0
add $2,3
mov $3,$0
lpb $2
add $1,2
mul $1,10
add ... |
programs/oeis/034/A034263.asm | neoneye/loda | 22 | 49592 | ; A034263: a(n) = binomial(n+4,4)*(4*n+5)/5.
; 1,9,39,119,294,630,1218,2178,3663,5863,9009,13377,19292,27132,37332,50388,66861,87381,112651,143451,180642,225170,278070,340470,413595,498771,597429,711109,841464,990264,1159400,1350888,1566873,1809633,2081583,2385279,2723422,3098862,3514602,3973802,4479783,5036031,5646201... |
libsrc/_DEVELOPMENT/arch/zx/display/z80/asm_zx_py2aaddr.asm | teknoplop/z88dk | 8 | 49593 | <reponame>teknoplop/z88dk<gh_stars>1-10
; ===============================================================
; Jun 2007
; ===============================================================
;
; void *zx_py2aaddr(uchar y)
;
; Attribute address corresponding to pixel coordinate x = 0, y.
; =====================================... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_1679.asm | ljhsiun2/medusa | 9 | 49594 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_1679.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x179aa, %rsi
lea addresses_WC_ht+0xbb84, %rdi
xor %r11, %r11
mov $1, %rcx
rep movsq
nop
nop
nop
nop
nop
... |
solutions/32-inventory report/constant inventory precomputation abuse.asm | Ernesto-Alvarez/HRM-Puzzles | 0 | 49595 | -- HUMAN RESOURCE MACHINE PROGRAM --
COPYFROM 14
COPYTO 2
BUMPUP 2
BUMPUP 2
COPYTO 3
BUMPUP 3
COPYTO 0
BUMPUP 0
COPYTO 1
BUMPUP 1
a:
INBOX
COPYTO 16
SUB 9
JUMPN b
COPYFROM 3
JUMP c
b:
COPYFROM 16
SUB 8
c:
... |
examples/pxScene2d/external/libnode-v6.9.0/deps/openssl/asm_obsolete/x86-win32-masm/modes/ghash-x86.asm | madanagopaltcomcast/pxCore | 5,964 | 49596 | TITLE ghash-x86.asm
IF @Version LT 800
ECHO MASM version 8.00 or later is strongly recommended.
ENDIF
.686
.XMM
IF @Version LT 800
XMMWORD STRUCT 16
DQ 2 dup (?)
XMMWORD ENDS
ENDIF
.MODEL FLAT
OPTION DOTNAME
IF @Version LT 800
.text$ SEGMENT PAGE 'CODE'
ELSE
.text$ SEGMENT ALIGN(64) 'CODE'
ENDIF
ALIGN 16
_gcm_gmult_4b... |
lib/target/trs80/classic/trs80_crt0.asm | ahjelm/z88dk | 640 | 49597 | ;
; TRS 80 Program boot
;
; <NAME> 2008
;
; $Id: trs80_crt0.asm $
;
;
; There are a couple of #pragma commands which affect this file:
;
; #pragma output doscmd - TRSDOS mode console output
;
MODULE trs80_crt0
defc crt0 = 1
INCLUDE "zcc_opt.def"
EXTERN _main ;... |
boot/x86_64-unknown-kernel/boot64.asm | mkaput/kernel | 2 | 49598 | ; Kernel entry point for x86_64 arch, 64-bit initialization code
;
; THERE ARE NO CALLING CONVENTIONS IN THIS FILE.
global krnl_start64
extern krnl_main
section .text
bits 64
; 64-bit Kernel entry point
;
; Performs long mode-related initialization and calls krnl_main.
krnl_start64:
; Load 0 into all data segmen... |
soft/ncr.asm | devxpy/masm32-programs | 0 | 49599 | <reponame>devxpy/masm32-programs<filename>soft/ncr.asm
push_and_call macro
push ax
push bx
call ncr
pop bx
pop ax
endm
exit macro
mov ah, 4ch
int 21h
endm
.model small
.stack 64
.data
n_value db 6
r_value db 3
result db 0
.code
mov ax, @data
mov ds, ax
mov al, ... |
sw/552tests/rand_simple/t_2_srl.asm | JPShen-UWM/ThreadKraken | 1 | 49600 | <filename>sw/552tests/rand_simple/t_2_srl.asm
// seed 2
lbi r0, 13 // icount 0
slbi r0, 137 // icount 1
lbi r1, 90 // icount 2
slbi r1, 171 // icount 3
lbi r2, 73 // icount 4
slbi r2, 48 // icount 5
lbi r3, 122 // icount 6
slbi r3, 163 // icount 7
lbi r4, 100 // icount 8
slbi r4, 98 // icount 9
lbi r5, 41 // icount 10
... |
src/intel/tools/tests/gen5/shl.asm | SoftReaper/Mesa-Renoir-deb | 0 | 49601 | shl(8) g4<1>.xD g1<0>.yD 0x00000004UD { align16 };
shl(8) g4<1>D g3<8,8,1>D 0x00000001UD { align1 };
shl(16) g6<1>D g4<8,8,1>D 0x00000001UD { align1 compr };
shl(8) g11<1>.xUD g11<4>.xUD 4D { align16 };
shl(8) ... |
asm/ehbasic/min_mon.asm | napobear/6502 | 188 | 49602 |
; minimal monitor for EhBASIC and 6502 simulator V1.05
; Modified to support the Replica 1 by <NAME> <<EMAIL>>
; To run EhBASIC on the simulator load and assemble [F7] this file, start the simulator
; running [F6] then start the code with the RESET [CTRL][SHIFT]R. Just selecting RUN
; will do nothing, you'll still ha... |
pwnlib/shellcraft/templates/i386/strlen.asm | DrKeineLust/pwntools | 8,966 | 49603 | <%
from pwnlib.shellcraft import pretty, common, registers
from pwnlib.shellcraft.i386 import mov, pushstr, setregs
from pwnlib import constants
%>
<%docstring>
Calculate the length of the specified string.
Arguments:
string(str): Register or address with the string
reg(str): Named register to return the value... |
oeis/294/A294573.asm | neoneye/loda-programs | 11 | 49604 | ; A294573: a(n) = n! * [x^n] exp((n+1)*x)*BesselI(1,2*x)/x.
; Submitted by <NAME>
; 1,2,10,76,777,9996,155139,2821400,58856963,1385621260,36343079188,1051024082472,33226817252215,1140040324751160,42193259673938754,1675570154136359472,71069261432474378715,3206616936773061141900,153358034674756782660342,77495607069364424... |
Programs/src/textedit.asm | royprocell/GoldOS16 | 4 | 49605 | ;<NAME>
;2/19/2016
;GoldOS text editor
org 40960
main:
;we will use the gs segment to perform changes on our file
mov ax, 3000h
mov gs, ax
mov byte [cursor_x], 0
mov byte [cursor_y], 0
mov word [filesize], 0
mov word [skip], 0
mov word [location], 0
mov byte [decs_left], 0
mov di, 0
mov al, 3
int 0F1h
... |
data/pokemon/base_stats/giratina.asm | AtmaBuster/pokeplat-gen2 | 6 | 49606 | db 0 ; species ID placeholder
db 150, 100, 120, 90, 100, 120
; hp atk def spd sat sdf
db GHOST, DRAGON ; type
db 3 ; catch rate
db 255 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_UNKNOWN ; gender ratio
db 120 ; step cycles to hatch
INCBIN "gfx/pokemon/giratina/front.dimensions"
db GROWTH_SLOW ... |
programs/oeis/046/A046633.asm | jmorken/loda | 1 | 49607 | <reponame>jmorken/loda
; A046633: Number of cubic residues mod 5^n.
; 1,5,21,101,505,2521,12601,63005,315021,1575101,7875505,39377521,196887601,984438005,4922190021,24610950101,123054750505,615273752521,3076368762601,15381843813005,76909219065021,384546095325101
add $0,2
mov $2,$0
mov $3,5
lpb $2
pow $3,$2
mov $0,... |
data/pokemon/base_stats/grimby.asm | TastySnax12/pokecrystal16-493-plus | 2 | 49608 | <reponame>TastySnax12/pokecrystal16-493-plus
db 0 ; species ID placeholder
db 60, 70, 40, 15, 30, 40
; hp atk def spd sat sdf
db POISON, POISON ; type
db 190 ; catch rate
db 51 ; base exp
db PSNCUREBERRY, NUGGET ; items
db GENDER_F50 ; gender ratio
db 100 ; unknown 1
db 20 ; step cycles to hatc... |
external/source/shellcode/bsdi/ia32/single_bind_tcp_shell.asm | OsmanDere/metasploit-framework | 26,932 | 49609 | ;;
;
; Name: single_bind_tcp_shell
; Version: $Revision: 1633 $
; License:
;
; This file is part of the Metasploit Exploit Framework
; and is subject to the same licenses and copyrights as
; the rest of this package.
;
; Description:
;
; Single portbind TCP shell.
;
; Meta-I... |
Transynther/x86/_processed/US/_zr_/i3-7100_9_0x84_notsx.log_831_618.asm | ljhsiun2/medusa | 9 | 49614 | <reponame>ljhsiun2/medusa<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r13
push %r9
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x4cbc, %rsi
lea addresses_WC_ht+0x1801c, %rdi
nop
nop
nop
nop
nop
xor $18970, %r10
mov $114, %rcx
rep movsw
nop
nop
nop
nop
cmp $13290, ... |
lab4pb15B.asm | Codrin18/CSA | 0 | 49615 | <reponame>Codrin18/CSA<filename>lab4pb15B.asm<gh_stars>0
bits 32 ; assembling for the 32 bits architecture
; declare the EntryPoint (a label defining the very first instruction of the program)
global start
; declare external functions needed by our program
extern exit ; tell nasm that exit... |
Transynther/x86/_processed/NC/_ht_st_un_/i7-7700_9_0x48.log_36_2364.asm | ljhsiun2/medusa | 9 | 49616 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %rdi
push %rdx
lea addresses_D_ht+0x1cba8, %r11
xor $38179, %rdx
mov (%r11), %rdi
nop
nop
dec %r12
pop %rdx
pop %rdi
pop %r12
pop %r11
ret
.global s_faulty_load
s_faulty_load:
push %r12
push %r14
push %r9
push %rax
push... |
sem1/asc/Max_DD/main.asm | itsbratu/bachelor | 0 | 49617 | bits 32
global start
extern exit , printf
import exit msvcrt.dll
import printf msvcrt.dll
segment data use32 class=data
sir dd 21880AAAh , 11883344h , 89101022h , 0A70BCCDh , 12885678h
len_sir equ ($-sir)/4
maxim db 0
ap db -1
mesaj db "Cel mai mare octet inferior al c... |
cpm2/RomWBW/Source/HBIOS/prefix.asm | grancier/z180 | 0 | 49618 | ;===============================================================================
; PREFIX.ASM
;
; CP/M DISK FORMATS ALLOW FOR RESERVED TRACKS THAT CONTAIN AN IMAGE OF THE
; OPERATING SYSTEM TO BE LOADED WHEN THE DISK IS BOOTED. THE OPERATING SYSTEM
; IMAGE ITSELF IS NORMALLY PREFIXED BY A 1-N SECTORS CONTAINING O... |
libsrc/_DEVELOPMENT/stdlib/c/sdcc_iy/strtoul_callee.asm | meesokim/z88dk | 0 | 49619 |
; unsigned long strtoul_callee( const char * restrict nptr, char ** restrict endptr, int base)
SECTION code_stdlib
PUBLIC _strtoul_callee
EXTERN asm_strtoul
_strtoul_callee:
pop af
pop hl
pop de
pop bc
push af
jp asm_strtoul
|
asm.asm | NilEis/Bootsector-asm-Test | 0 | 49620 | [org 0x7c00] ; Offset added to all adresses
hwString db 'Hello world'
; Set 80x25 16-color text mode
xor ah, ah ; Set ah = 0
mov al, 0x03 ; Set instruction 0x03
int 0x10 ; Call int 0x10
mov ax, 0x0 ; ╗
mov es, ax ; ╠ Set es = 0 ... |
data/pokemon/base_stats/jumpluff.asm | AtmaBuster/pokeplat-gen2 | 6 | 49621 | <filename>data/pokemon/base_stats/jumpluff.asm
db 0 ; species ID placeholder
db 75, 55, 70, 110, 55, 85
; hp atk def spd sat sdf
db GRASS, FLYING ; type
db 45 ; catch rate
db 176 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_F50 ; gender ratio
db 20 ; step cycles to hatch
INCBIN "gfx/pokemon/... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_2184.asm | ljhsiun2/medusa | 9 | 49623 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r15
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0xfda, %r15
nop
nop
nop
nop
nop
and $46708, %rsi
movl $0x61626364, (%r15)
nop
and %rax, %rax
lea addresses_A_ht+0x7f1a, %rsi
lea addresses_UC_ht+0x1e7... |
oeis/142/A142659.asm | neoneye/loda-programs | 11 | 49624 | ; A142659: Primes congruent to 43 mod 56.
; Submitted by <NAME>
; 43,211,379,491,547,659,827,883,1051,1163,1499,1667,1723,2003,2339,2731,2843,3011,3067,3347,3571,3739,3851,3907,4019,4243,4523,4691,5419,5531,5867,5923,6091,6203,6427,6763,7043,7211,7547,7603,7883,8219,8387,8443,8779,9059,9227,9283,9619,9787,10067,10459,1... |
boot_image/kernel/asm/flush_irqs.asm | Matt8898/lai_tools | 0 | 49625 | <filename>boot_image/kernel/asm/flush_irqs.asm
extern real_routine
global flush_irqs
section .data
%define flush_irqs_size flush_irqs_end - flush_irqs_bin
flush_irqs_bin: incbin "blobs/flush_irqs.bin"
flush_irqs_end:
section .text
bits 64
flush_irqs:
; void flush_irqs(void);
pu... |
mkdir.asm | KaushikKPDARE/xv6-Clone-System-Call | 0 | 49626 |
_mkdir: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "stat.h"
#include "user.h"
int
main(int argc, char *argv[])
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 83 e4 f0 and $0xfffffff0,%esp
6: 83 ec 20 ... |
stuff/R316/old/lib/stdlib.asm | Daswf852/Stuff | 0 | 49627 | <filename>stuff/R316/old/lib/stdlib.asm
%ifndef __STDLIB_ASM
%define __STDLIB_ASM
%include "common.asm"
;malloc, free, calloc, realloc
%include "stdlib/malloc.asm"
;rand, rand.16, rand.32, srand
%include "stdlib/rand.asm"
%include "stdlib/env.asm"
%include "stdlib/conv.asm"
stdlib:
stdlib.init:
call mall... |
ext/ipp-crypto/sources/ippcp/asm_intel64/pcpp384r1funcs_montas.asm | Intel-EPID-SDK/epid-sdk | 30 | 49628 | ;===============================================================================
; Copyright 2014-2020 Intel Corporation
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; http://www.apa... |
libsrc/_DEVELOPMENT/sound/bit/z80/asm_bit_beep.asm | teknoplop/z88dk | 0 | 49629 |
; ===============================================================
; 2014
; ===============================================================
;
; void bit_beep(uint16_t duration_ms, uint16_t frequency_hz)
;
; Output a tone for given duration.
;
; ===============================================================
INCLUDE "c... |
ee/wman/config.asm | olifink/smsqe | 0 | 49630 | <gh_stars>0
; WMAN configuration V1.01 2002 <NAME>
section config
xref wsp_winbd
xref wsp_winbg
xref wsp_winfg
xref wsp_winmg
xref wsp_titlebg
xref wsp_titletextbg
xref wsp_titlefg
xref wsp_litemhigh
xref wsp_litemavabg
xref wsp_litemavafg
xref wsp_litemselbg
xref wsp_litemselfg
xref wsp_litemuna... |
asm/patches/make_game_nonlinear.asm | WideBoner/wwrando | 47 | 49631 | <filename>asm/patches/make_game_nonlinear.asm
; This patch changes various things to allow the game to be played nonlinearly.
; Modify King of Red Lions's code so he doesn't stop you when you veer off the path he wants you to go on.
.open "files/rels/d_a_ship.rel"
; We need to change some of the conditions in his ch... |
pythagorean_triple.asm | EdTheBass/asm_tutorial | 97 | 49632 | <gh_stars>10-100
default rel ; This allows compilation without /largeaddressaware:no
segment .data
a dq 3
b dq 4
c dq 5
segment .text
global main ; tell linker about main
main:
mov rax, [a]
mul rax ; a^2
mov rbx, [b]
imul rbx, r... |
libsrc/stdio_new/file/ungetc_callee.asm | andydansby/z88dk-mk2 | 1 | 49633 | <gh_stars>1-10
; int __CALLEE__ ungetc(int c, FILE *stream)
; 06.2008 aralbrec
XLIB ungetc_callee
XDEF ASMDISP_UNGETC_CALLEE
LIB stdio_error_eacces_mc, stdio_error_einval_mc
.ungetc_callee
pop hl
pop ix
ex (sp),hl
.asmentry
; enter : ix = FILE *stream
; hl = int c
; exit : hl = char c an... |
oeis/142/A142335.asm | neoneye/loda-programs | 11 | 49634 | ; A142335: Primes congruent to 44 mod 45.
; Submitted by <NAME>
; 89,179,269,359,449,719,809,1259,1439,1619,1709,1889,1979,2069,2339,2609,2699,2789,2879,2969,3329,3779,4049,4139,4229,4409,4679,5039,5309,5399,5669,5849,5939,6029,6299,6389,6569,6659,7019,7109,7559,7649,7829,7919,8009,8369,8819,8999,9539,9629,9719,10079,1... |
programs/oeis/140/A140157.asm | neoneye/loda | 22 | 49635 | ; A140157: a(1)=1, a(n) = a(n-1) + n^4 if n odd, a(n) = a(n-1) + n^0 if n is even.
; 1,2,83,84,709,710,3111,3112,9673,9674,24315,24316,52877,52878,103503,103504,187025,187026,317347,317348,511829,511830,791671,791672,1182297,1182298,1713739,1713740,2421021,2421022,3344543,3344544,4530465,4530466,6031091,6031092,7905253... |
oeis/217/A217587.asm | neoneye/loda-programs | 11 | 49636 | ; A217587: Primes p of the form 420k + 1 for some k.
; Submitted by <NAME>(s1)
; 421,2521,3361,4201,4621,5881,6301,7561,8821,9241,9661,10501,12601,13441,14281,15121,15541,16381,18061,18481,20161,21001,21841,24781,25621,26041,26881,29401,30241,30661,31081,32341,33181,33601,35281,36541,39901,41161,42841,43261,44101,45361... |
libsrc/adt/stack/adt_StackDelete_callee.asm | ahjelm/z88dk | 640 | 49637 | ; void __CALLEE__ adt_StackDelete_callee(struct adt_Stack *s, void *delete)
; 09.2005, 11.2006 aralbrec
SECTION code_clib
PUBLIC adt_StackDelete_callee
PUBLIC _adt_StackDelete_callee
PUBLIC asm_adt_StackDelete
EXTERN asm_adt_StackDeleteS
EXTERN _u_free
.adt_StackDelete_callee
._adt_StackDelete_callee
pop hl
... |
untested/x64/sumTo.asm | GabrielRavier/Generic-Assembly-Samples | 0 | 49639 | global _sumTo
global _sumTo64
segment .text align=16
_sumTo:
test edi, edi
je .ret0
lea eax, [rdi - 1]
lea ecx, [rdi - 2]
imul rcx, rax
shr rcx, 1
lea eax, [rcx + rdi - 1]
ret
align 16
.ret0:
xor eax, eax
ret
align 16
_sumTo64:
test rdi, rdi
je .ret0
lea rax, [rdi - 1]
lea rcx, [rdi - ... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1546.asm | ljhsiun2/medusa | 9 | 49641 | <reponame>ljhsiun2/medusa
.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_D_ht+0x1c2bd, %rsi
lea addresses_UC_ht+0x116bd, %rdi
clflush (%rdi)
nop
nop
nop
nop
add %r12, %r12
mov $101, %rcx
rep movsb
nop
nop
nop
nop
nop
lfence
lea a... |
progref/chars.asm | FolkertVanVerseveld/c64 | 1 | 49642 | <gh_stars>1-10
#import "cbm64mem.inc"
.pc = $0801 "Basic Upstart Program"
:BasicUpstart($0810)
.pc = $0810 "Main Program"
ldx #$0
t:
txa
sta screen, x
lda #1
sta colram, x
inx
bne t
rts
|
mc-sema/validator/x86/tests/PCMPEQBrm.asm | randolphwong/mcsema | 2 | 49643 | BITS 32
;TEST_FILE_META_BEGIN
;TEST_TYPE=TEST_F
;TEST_IGNOREFLAGS=FLAG_OF|FLAG_SF|FLAG_ZF|FLAG_AF|FLAG_PF|FLAG_CF
;TEST_FILE_META_END
; allocate 16 byte aligned stack space for the packed values
lea ecx, [esp-17]
and ecx, 0xfffffff0
; load 128 bit value into xmm0
mov DWORD [ecx], 0x00d05602
mov DWORD [ecx+4], 0x0... |
Assembler/AssemblyCode/ADC_MACRO_BIG_NUMBERS.asm | KPU-RISC/KPU | 8 | 49644 | MOV XL, 0x00
MOV XH, 0xFF
MOV Y, X
; Initialize the D and E register with the lower byte
MOV D, [Y] ; Low-Byte
MOV E, [Y + 2] ; Low-Byte
ADD D, E
JNC :DONE
MOV F, D ; Store the partial sum (Low-Byte)
MOV D, [Y + 1] ; High-Byte
MOV E, 00000001b ; Carry Bit
ADD D, E
MOV E, [Y + 3] ; High-Byte
ADD D, E
MOV G, D ... |
resources/retrogamedev.chapters/chapter17/gameMap.asm | brawnydawg/retrojam4 | 0 | 49645 | ;===============================================================================
; Constants
MapLastColumn = 202 ; (5 * 40) + 2 extra hidden rows, i.e. start of 6th screen
;===============================================================================
; Variables
Operator Calc
MapRAMRowStartLow ; increme... |
exemplo.asm | LSantos06/MIPS2 | 0 | 49647 | .data
primos: .word 1,3,5,7,11,13,17,19
size: .word 8
msg: .asciiz "Os oito primeiros numeros primos sao: "
space: .ascii " "
.text
la $t0, primos # Carrega o endereco inicial do array de primos
la $t1, size # Carrega o endereco do size
lw $t1, 0($t1) # Carrega size em t1
li $v0, 4 # Impressao da msg
... |
programs/oeis/298/A298125.asm | karttu/loda | 1 | 49649 | ; A298125: The hex numbers (A003215) together with 3.
; 1,3,7,19,37,61,91,127,169,217,271,331,397,469,547,631,721,817,919,1027,1141,1261,1387,1519,1657,1801,1951,2107,2269,2437,2611,2791,2977,3169,3367,3571,3781,3997,4219,4447,4681,4921,5167,5419,5677,5941,6211,6487,6769,7057,7351,7651,7957,8269,8587,8911,9241,9577,991... |
avr-examples/example3.asm | carliros/favr | 0 | 49651 | ; Copyright 2015 <NAME>
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, softw... |
q_three/q_three.asm | mugoh/MicroProcessors_ETI_2407 | 0 | 49653 | <gh_stars>0
org 100h
include "emu8086.inc"
.code
jmp start
start:
; Print input prompt
mov AH, 09
mov DX, offset prompt
int 21h
mov CX, 10000 ; Loop counter
get_input:
; Get std input
mov AH, 07
int 21h
; CTRL^C... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.