max_stars_repo_path
stringlengths
4
261
max_stars_repo_name
stringlengths
6
106
max_stars_count
int64
0
38.8k
id
stringlengths
1
6
text
stringlengths
7
1.05M
oeis/178/A178730.asm
neoneye/loda-programs
11
164568
<reponame>neoneye/loda-programs<gh_stars>10-100 ; A178730: Partial sums of floor(7^n/8)/6. ; 0,1,8,58,408,2859,20016,140116,980816,6865717,48060024,336420174,2354941224,16484588575,115392120032,807744840232,5654213881632,39579497171433,277056480200040,1939395361400290,13575767529802040,95030372708614291,665212608960300...
antlr-plugin/src/test/resources/org/nemesis/antlrformatting/grammarfile/golden/TestSix-1-golden.g4
timboudreau/ANTLR4-Plugins-for-NetBeans
1
7099
<reponame>timboudreau/ANTLR4-Plugins-for-NetBeans<gh_stars>1-10 /* Leading comment followed by blank line */ parser grammar TestSix; options { tokenVocab=TestFour; tokenVocab=TestThree; // a line comment tokenVocab=TestFive;} tokens { FOO, BAR, BAZ } tokens { ONE, TWO, ...
av1/encoder/x86/error_sse2.asm
ozyb/aom
51
162623
<filename>av1/encoder/x86/error_sse2.asm ; ; Copyright (c) 2016, Alliance for Open Media. All rights reserved ; ; This source code is subject to the terms of the BSD 2 Clause License and ; the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License ; was not distributed with this source code in the LICE...
Grasp.scpt
vroy/grasp
1
1214
<reponame>vroy/grasp set front_app to (path to frontmost application as Unicode text) tell application front_app -- Get the path of the current user and set a few useful paths set home_path to POSIX path of (path to home folder as string) set screenshots_path to home_path & "Screenshots/" -- Set the current...
case-studies/performance/verification/alloy/ppc/tests/rfe006.als
uwplse/memsynth
19
4666
<gh_stars>10-100 module tests/rfe006 open program open model /** PPC rfe006 "DpdR Fre Rfe DpdR Fre Rfe" Cycle=DpdR Fre Rfe DpdR Fre Rfe Relax=Rfe Safe=Fre DpdR { 0:r2=x; 0:r5=y; 1:r2=y; 2:r2=y; 2:r5=x; 3:r2=x; } P0 | P1 | P2 | P3 ; lwz r1,0(r2) | li r1,1 | lwz r1,0(r2...
scripts/app/activate.applescript
briangonzalez/awesome-applescripts
39
584
<filename>scripts/app/activate.applescript on run argv if (count of argv) > 0 then set app_name to item 1 of argv end if tell application app_name reopen activate end tell end run
nand2tetris/personal/signum.asm
raventid/coursera_learning
1
245885
<filename>nand2tetris/personal/signum.asm // Program: Signum.asm // Computes: if R0 > 0 // R1 = 1 // else // R1 = 0 // TODO: I need to check instructions numbers. Not sure about do we count @ labels or not. @R0 D=M @8 D;JGT @R1 M=0 @10 0;JMP @R1 M=1 @10 0;JMP
test/asm/load-rom.asm
michealccc/rgbds
522
83793
<reponame>michealccc/rgbds SECTION "Hello", ROM0 ld a, 1 LOAD "Wello", ROM0 ld a, 2 ENDL
alloy4fun_models/trashltl/models/19/2zz45wToooJzr6W4y.als
Kaixi26/org.alloytools.alloy
0
2906
open main pred id2zz45wToooJzr6W4y_prop20 { always all p : File | p in Trash since p not in Protected } pred __repair { id2zz45wToooJzr6W4y_prop20 } check __repair { id2zz45wToooJzr6W4y_prop20 <=> prop20o }
arch/ARM/STM32/svd/stm32l5x2/stm32_svd-icache.ads
morbos/Ada_Drivers_Library
2
6036
<reponame>morbos/Ada_Drivers_Library<gh_stars>1-10 -- This spec has been automatically generated from STM32L5x2.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.ICache is pragma Preelaborate; --------------- -- Registers --...
Chapter2/#4.agda
CodaFi/HoTT-Exercises
0
4040
<reponame>CodaFi/HoTT-Exercises module #4 where open import Relation.Binary.PropositionalEquality open import Data.Product open import Data.Nat {- Exercise 2.4. Define, by induction on n, a general notion of n-dimensional path in a type A, simultaneously with the type of boundaries for such paths. -} -- We need...
source/web/tools/a2js/webapi/dom/webapi-dom-parent_nodes.ads
svn2github/matreshka
24
30266
<reponame>svn2github/matreshka<filename>source/web/tools/a2js/webapi/dom/webapi-dom-parent_nodes.ads ------------------------------------------------------------------------------ -- -- -- Matreshka Project ...
RECTANGLE_AVR/RectangleScenario1CBC/Rectangle128SRAM.asm
FreeDisciplina/BlockCiphersOnAVR
12
177167
; ; Constants ; .EQU INITV_NUM_BYTE = 8 .EQU PTEXT_NUM_BYTE = (8*16) .EQU KEY_NUM_BYTE = 16 .EQU KEYEXTENT_NUM_BYTE = (8 + 25*6) #define KEYSCHEDULE #define ENCRYPT #define DECRYPT ; Registers declarations .def k0 =r0 .def k1 =r1 .def k2 =r2 .def k3 =r3 .def k4 =r4 .def k5 =r5 .def k6 =r6 .def k7 =r7 .def k8...
tests/Comprehensive/power.asm
ZubinGou/8086-emulator
39
172471
<reponame>ZubinGou/8086-emulator<filename>tests/Comprehensive/power.asm ; Code for Program to CAXculate power(a,b) i.e a^b in Assembly Language NAME Comprehensive TITLE power ASSUME CS:CODE,DS:DATA DATA SEGMENT BASE DB ? POW DB ? DATA ENDS CODE SEGMENT START: MOV AX,DATA MOV DS,AX ENT...
pwnlib/shellcraft/templates/aarch64/linux/getpid.asm
zaratec/pwntools
5
91665
<reponame>zaratec/pwntools <% from pwnlib.shellcraft.aarch64.linux import syscall %> <%page args=""/> <%docstring> Invokes the syscall getpid. See 'man 2 getpid' for more information. Arguments: </%docstring> ${syscall('SYS_getpid')}
src/nes/video.asm
apvilkko/jane8-musicdisk
0
100242
WaitFrame: pha lda vblanked waitloop: cmp vblanked beq waitloop pla rts ResetScroll: lda #0 sta PPU_SCROLL lda #0-8 sta PPU_SCROLL rts ClearPalette: lda #>VRAM_PALETTE sta PPU_ADDR lda #<VRAM_PALETTE sta PPU_ADDR lda #$0f ; black ldx #$20 ; loop 32 times cploop: sta PPU_DA...
programs/oeis/120/A120172.asm
karttu/loda
0
82610
; A120172: a(1)=3; a(n)=floor((17+sum(a(1) to a(n-1)))/5). ; 3,4,4,5,6,7,9,11,13,15,18,22,26,32,38,46,55,66,79,95,114,137,164,197,236,283,340,408,490,588,705,846,1015,1218,1462,1754,2105,2526,3031,3638,4365,5238,6286,7543,9052,10862,13034,15641,18769,22523,27028,32433 mov $4,2 mov $6,$0 lpb $4,1 mov $0,$6 sub $4,1...
archive/agda-3/src/Test/Symmetrical.agda
m0davis/oscar
0
8140
<reponame>m0davis/oscar open import Everything module Test.Symmetrical where test-𝓢ymmetrical𝓢ymmetry : ∀ {𝔬} {𝔒 : Ø 𝔬} {ℓ} {_∼_ : 𝔒 → 𝔒 → Ø ℓ} ⦃ _ : Symmetry.class _∼_ ⦄ → Symmetry.type _∼_ -- test-𝓢ymmetrical𝓢ymmetry = symmetrical _ _ -- FIXME no longer works after 𝓢ymmetrical𝓢ymmetr...
code/6502/basic/drivers/input.asm
visrealm/hbc-56
65
175525
; Troy's HBC-56 - BASIC - Input ; ; Copyright (c) 2021 <NAME> ; ; This code is licensed under the MIT license ; ; https://github.com/visrealm/hbc-56 ; ; ----------------------------------------------------------------------------- ; hbc56In - EhBASIC input subroutine (for HBC-56) - must not block ; ------------------...
bahamut/source/menu-dispatcher.asm
higan-emu/bahamut-lagoon-translation-kit
2
244338
<gh_stars>1-10 namespace menu { seek(codeCursor) //<NAME> shares a lot of code routines between each screen, //which interferes greatly with tile allocation strategies. //the dispatcher attempts to record when screens are entered into, //in order to disambiguate shared routines, and call handlers for //specific scree...
maps/GoldenrodGym.asm
Dev727/ancientplatinum
28
179340
<reponame>Dev727/ancientplatinum object_const_def ; object_event constants const GOLDENRODGYM_WHITNEY const GOLDENRODGYM_LASS1 const GOLDENRODGYM_LASS2 const GOLDENRODGYM_BUENA1 const GOLDENRODGYM_BUENA2 const GOLDENRODGYM_GYM_GUY GoldenrodGym_MapScripts: db 2 ; scene scripts scene_script .DummyScene0 ; SCENE...
oeis/094/A094981.asm
neoneye/loda-programs
11
92833
<reponame>neoneye/loda-programs ; A094981: a(n) = floor(9^n/4^n). ; 1,2,5,11,25,57,129,291,656,1477,3325,7481,16834,37876,85222,191751,431439,970739,2184164,4914369,11057332,24878997,55977744,125949925,283387333,637621500,1434648375,3227958844,7262907400,16341541651,36768468716,82729054613,186140372879,418815838978,942...
libsrc/z80_crt0s/gbz80/sccz80/dstore.asm
Frodevan/z88dk
38
244038
SECTION code_crt0_sccz80 PUBLIC dstore EXTERN fa ;-------------- ; Copy FA to hl ;-------------- dstore: ld b,6 dstore_1: ld a,(de) ld (hl+),a inc de dec b jr nz,dstore_1 ret ; returns de=fa+6, hl=hl+6
llvm-gcc-4.2-2.9/gcc/ada/lib-writ.ads
vidkidz/crossbridge
1
16237
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- ...
Mixed/Models.agda
frantisekfarka/lp-mod
0
16055
module Models where open import Data.Nat open import Terms -- The (complete) Herbrand universe for Σ U' : {n m : ℕ} → (Signature n m) → Set U' Σ = GTerm Σ -- The (complete) μ-Herbrand base for Σ B'μ : {n m : ℕ} → (Signature n m) → Set B'μ Σ = GAtom Σ μ B'ν : {n m : ℕ} → (Signature n m) → Set B'ν Σ = GAtom Σ ν o...
MySource/print all charcter loop label.asm
mdabdullahibnaharun/Assembly-Language
0
165752
; You may customize this and other start-up templates; ; The location of this template is c:\emu8086\inc\0_com_template.txt org 100h main proc mov ah,02h mov cx,256 ;c=256 mov dx,0 int 21h label: int 21h inc dx dec cx jn...
gyak/gyak4/sorok/sordemo.adb
balintsoos/LearnAda
0
28610
with Sorok, Ada.Command_Line, Ada.Integer_Text_IO; use Sorok; procedure SorDemo is N: Integer; S: Sor(Ada.Command_Line.Argument_Count); begin for I in 1..Ada.Command_Line.Argument_Count loop N := Integer'Value(Ada.Command_Line.Argument(I)); Hiext( S, N ); end loop; while no...
ga_lib/src/multivector_analyze.adb
rogermc2/GA_Ada
3
28760
with Ada.Text_IO; use Ada.Text_IO; with GL.Types; -- with Multivector_Analyze_E2GA; with Multivector_Analyze_C3GA; with Utilities; package body Multivector_Analyze is -- -------------------------------------------------------------------------- -- procedure Analyze (theAnalysis : in out MV_Analysis...
awa/src/model/awa-users-models.adb
fuzzysloth/ada-awa
0
8705
----------------------------------------------------------------------- -- AWA.Users.Models -- AWA.Users.Models ----------------------------------------------------------------------- -- File generated by ada-gen DO NOT MODIFY -- Template used: templates/model/package-body.xhtml -- Ada Generator: https://ada-gen.go...
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_0.asm
ljhsiun2/medusa
9
176060
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r14 push %r15 push %r8 push %r9 push %rcx push %rdi push %rsi lea addresses_normal_ht+0x1af7b, %rsi lea addresses_A_ht+0x1a5bb, %rdi clflush (%rdi) nop nop nop nop inc %r8 mov $72, %rcx rep movsb nop lfence lea addresses_normal_ht+0x169e7, %r1...
gcc-gcc-7_3_0-release/gcc/ada/a-stuten.ads
best08618/asylo
7
1268
<reponame>best08618/asylo<gh_stars>1-10 ------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- ...
Transynther/x86/_processed/NC/_ht_st_zr_un_/i7-7700_9_0x48_notsx.log_21829_1044.asm
ljhsiun2/medusa
9
162992
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r14 push %r8 push %r9 push %rcx push %rdi push %rsi lea addresses_D_ht+0x489f, %r12 clflush (%r12) nop nop xor $27231, %r9 mov (%r12), %r8 nop nop nop nop and %rdi, %rdi lea addresses_WT_ht+0x1989f, %r9 nop dec %rsi movb (%...
scripts/Create OSC trigger for cue x.applescript
samschloegel/qlab-scripts
8
1239
<reponame>samschloegel/qlab-scripts<filename>scripts/Create OSC trigger for cue x.applescript -- For help, bug reports, or feature suggestions, please visit https://github.com/samschloegel/qlab-scripts -- Built for QLab 4. v211121-01 set userPatch to 1 set userPrefix to "" set userSuffix to "." tell application id "c...
libsrc/_DEVELOPMENT/math/float/math32/lm32/c/sdcc/___fs2uint_callee.asm
Frodevan/z88dk
640
7198
SECTION code_fp_math32 PUBLIC ___fs2uint_callee EXTERN cm32_sdcc___fs2uint_callee defc ___fs2uint_callee = cm32_sdcc___fs2uint_callee
src/FRP/LTL/ISet/Unit.agda
agda/agda-frp-ltl
21
6696
<reponame>agda/agda-frp-ltl open import Data.Product using ( _,_ ) open import Data.Unit using ( ⊤ ; tt ) open import FRP.LTL.ISet.Core using ( ISet ; [_] ; _,_ ) module FRP.LTL.ISet.Unit where T : ISet T = [ (λ i → ⊤) , (λ i j i~j t → (tt , tt)) , (λ i j i⊑j t → tt) ]
dcl.asm
mkcin/DCL
0
4308
SYS_READ equ 0 SYS_WRITE equ 1 SYS_EXIT equ 60 STDIN equ 0 STDOUT equ 1 BUFFER_SIZE equ 4096 ONE equ 49 ; Wykonanie programu zaczyna się od etykiety _start. global _start section .bss ; miejsce zarezerwowane na wczytany tekst buffer resb BUFFER_SIZE ; tablica zliczająca powtórzenia znaków w argumentac...
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/curr_task.adb
best08618/asylo
7
7987
-- { dg-do run } -- { dg-options "-gnatws" } with Ada.Exceptions; with Ada.Text_IO; with Ada.Task_Identification; procedure Curr_Task is use Ada.Task_Identification; -- Simple semaphore protected Semaphore is entry Lock; procedure Unlock; private TID : Task_Id := Null_Task_Id;...
oeis/159/A159498.asm
neoneye/loda-programs
11
8333
; A159498: Numerator of Hermite(n, 6/13). ; Submitted by <NAME> ; 1,12,-194,-10440,71436,14972112,58938504,-29656181088,-495322673520,74246441579712,2397728871804384,-222180226077773952,-11580918658301987136,762191973071827303680,60032860261440859119744,-2886298093438596491576832,-339002178646768313636024064,1154107394...
pillar2c/src/pillar2c.nasm
IntelLabs/IFLC-LIB
21
102100
;;; Redistribution and use in source and binary forms, with or without modification, are permitted ;;; provided that the following conditions are met: ;;; 1. Redistributions of source code must retain the above copyright notice, this list of ;;; conditions and the following disclaimer. ;;; 2. Redistributions in b...
boot/legacy/BootloaderOne16.asm
AstralVX/AstralOS
0
172672
; Tell NASM this is 16 bit (8086) code for real mode bits 16 %include "Config.asm" ; Tell NASM to output all our labels with offset 0x7c00, because ; BIOS will jump to this boot sector 0x7c00 and transfers control org 0x7c00 jmp 0x0000:main ; ; BIOS will load this 512 byte boot sector from the storage MBR into mem...
player.asm
JoshuaKlassen/LocalHackday2017
0
97431
SECTION "Player", ROM0 PLAYER_INIT:: ld a, $20 ld [player_y], a ret PLAYER_UPDATE:: ld hl, player_y ld a, [hl] inc a ld [hl], a call PLAYER_OAM ret PLAYER_OAM: ld hl, player_sprite ld a, [player_y] ld [hl], a inc hl ld [hl], $30 inc hl ld [hl], $19 inc hl ld [hl], 0 ret
programs/oeis/133/A133263.asm
neoneye/loda
22
240156
<filename>programs/oeis/133/A133263.asm<gh_stars>10-100 ; A133263: Binomial transform of (1, 2, 0, 1, -1, 1, -1, 1, ...). ; 1,3,5,8,12,17,23,30,38,47,57,68,80,93,107,122,138,155,173,192,212,233,255,278,302,327,353,380,408,437,467,498,530,563,597,632,668,705,743,782,822,863,905,948,992,1037,1083,1130,1178,1227,1277,1328...
bbs-info.ads
BrentSeidel/BBS-Ada
1
2673
package BBS.info is pragma Pure; -- -- This file is auto generated by the build script. It should not -- be edited by hand. -- name : constant String := "Tiny Lisp"; timestamp : constant String := "Fri Sep 3 09:03:26 MST 2021"; build_date : constant String := "2021-Sep-...
smartanalytics-categorization/src/main/resources/de/adorsys/smartanalytics/rule/syntax/Expression.g4
HryhoriiHevorkian/smartanalytics
1
4629
grammar Expression; expression: statement | expression operator expression | '(' expression ')' | 'NOT' expression; statement: attribute comparator value; attribute: 'RFN' | 'GID' | 'VWZ' | 'IBAN' | 'KTO' | 'BLZ' | 'AMOUNT' | 'HKAT' | 'UKAT' | 'SPEZ'; comparator: 'NOT LIKE' | 'LIKE' | '=' | '>' | '<' | '=>' | '<=';...
src/dev/kbd.asm
programble/happy
1
178172
global kbd.init, kbd.poll, kbd.reset global kbd.readCode, kbd.readChar, kbd.readLine global kbd.printBuffers extern idt.setGate, pic.unmask, pic.eoiMaster, core.halt extern text.writeChar, text.writeNl, diag.printMem extern qwerty.map, qwerty.map.shift, qwerty.map.ctrl %include "core.mac" Port: .DATA: equ 60h .C...
oeis/348/A348646.asm
neoneye/loda-programs
11
85034
; A348646: a(n) = (72*n + 5)*(1296*n^2 + 153*n + 4). ; Submitted by <NAME>(s3) ; 20,111881,818606,2680067,6256136,12106685,20791586,32870711,48903932,69451121,95072150,126326891,163775216,207976997,259492106,318880415,386701796,463516121,549883262,646363091,753515480,871900301,1002077426,1144606727,1300048076,146896134...
picovm/asm-src/hello-world-linux64.asm
seanmcelroy/picovm
0
246995
<reponame>seanmcelroy/picovm section .data hello_world db "Hello world!", 10 hello_world_len equ $ - hello_world section .text global _start _start: mov rax, 1 mov rdi, 1 mov rsi, hello_world mov rdx, hello_world_len syscall mov rax, 60 mov rdi, 0...
LagTest/ram.asm
neogeodev/NGAcidTests
6
84300
<reponame>neogeodev/NGAcidTests ORG RAMSTART FLAG_VBI: ds.b 1 FLAG_UPDATE: ds.b 1 FRAMES: ds.b 1 LAG_LINES: ds.w 1 LAG_LATCH: ds.w 1 LAG_SIGN: ds.b 1 COUNT: ds.b 1 DIRECTION: ds.b 1 VRAM_BUFFER: ds.w 16 PREV_INPUT: ds.b 1 ACTIVE_INPUT: ds.b 1 SOUND_CODE: ds.b 1
src/main/fragment/mos6502-common/_stackpushsword_=vbsc1.asm
jbrandwood/kickc
2
172842
lda #0 pha lda #<{c1} pha
src/q_csv-q_read_file.adb
jfuica/bingada
4
26041
<reponame>jfuica/bingada --***************************************************************************** --* --* PROJECT: BingAda --* --* FILE: q_csv-q_read_file.adb --* --* AUTHOR: <NAME> --* --***************************************************************************** with Ada....
source/slim-players-play_radio_visiters.adb
reznikmm/slimp
0
22045
<reponame>reznikmm/slimp<gh_stars>0 -- Copyright (c) 2019 <NAME> <<EMAIL>> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Ada.Calendar; with Ada.Text_IO; with League.String_Vectors; with Slim.Messages.cont; -- with Slim.Players....
examples/stm32f0/rfm69_moter/modem/peripherals.adb
ekoeppen/STM32_Generic_Ada_Drivers
1
6598
<filename>examples/stm32f0/rfm69_moter/modem/peripherals.adb with STM32_SVD; use STM32_SVD; with STM32_SVD.RCC; use STM32_SVD.RCC; with STM32_SVD.DMA; use STM32_SVD.DMA; with STM32_SVD.USART; use STM32_SVD.USART; with STM32GD.Board; use STM32GD.Board; package body Peripherals is procedure Ini...
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-rewdat.adb
djamal2727/Main-Bearing-Analytical-Model
0
26627
----------------------------------------------------------------------------- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T . R E W R I T E _ D A T A -- -- ...
oeis/158/A158490.asm
neoneye/loda-programs
11
82758
<reponame>neoneye/loda-programs ; A158490: 100n^2 - 10. ; 90,390,890,1590,2490,3590,4890,6390,8090,9990,12090,14390,16890,19590,22490,25590,28890,32390,36090,39990,44090,48390,52890,57590,62490,67590,72890,78390,84090,89990,96090,102390,108890,115590,122490,129590,136890,144390,152090,159990,168090,176390,184890,193590...
other.7z/SFC.7z/SFC/ソースデータ/ヨッシーアイランド/日本_Ver0/sfc/ys_mpen.asm
prismotizm/gigaleak
0
4824
<gh_stars>0 Name: ys_mpen.asm Type: file Size: 53113 Last-Modified: '2016-05-13T04:50:34Z' SHA-1: AFD8809B886FB7B50E1B8CCEC32358A5A02ECB07 Description: null
source/strings/a-strmap.adb
ytomino/drake
33
29280
pragma Check_Policy (Validate => Disable); -- with Ada.Strings.Naked_Maps.Debug; with Ada.Unchecked_Conversion; with Ada.Unchecked_Deallocation; with System.UTF_Conversions.From_8_To_32; with System.UTF_Conversions.From_16_To_32; with System.UTF_Conversions.From_32_To_8; with System.UTF_Conversions.From_32_To_16; pack...
external/source/shellcode/linux/ia32/single_findsock.asm
madhavarao-yejarla/VoIP
35
92489
<reponame>madhavarao-yejarla/VoIP<gh_stars>10-100 ;; ; ; Name: single_findsock ; Platforms: Linux ; Authors: vlad902 <vlad902 [at] gmail.com> ; Authors: skape <mmiller [at] hick.org> ; Version: $Revision: 1856 $ ; License: ; ; This file is part of the Metasploit Exploit Framewor...
examples/stackoverflow.adb
ytomino/drake
33
19556
with Ada; with System.Stack; with System.Storage_Elements.Formatting; procedure stackoverflow is package SSEF renames System.Storage_Elements.Formatting; procedure Put_Stack_Range is Stack_Top, Stack_Bottom : System.Address; begin System.Stack.Get (Top => Stack_Top, Bottom => Stack_Bottom); Ada.Debug.Put ("top...
libsrc/target/pc88/stdio/generic_console_ioctl.asm
Frodevan/z88dk
38
1361
MODULE generic_console_ioctl PUBLIC generic_console_ioctl SECTION code_clib EXTERN generic_console_cls EXTERN __console_h EXTERN __console_w EXTERN __pc88_mode EXTERN generic_console_font32 EXTERN generic_console_udg32 EXTERN generic_console_caps EXTERN pc88bios INCLUDE "ioctl.def" PUBLIC CLIB_GENCON...
programs/oeis/012/A012772.asm
jmorken/loda
1
9048
; A012772: Take every 5th term of Padovan sequence A000931, beginning with the sixth term. ; 1,3,12,49,200,816,3329,13581,55405,226030,922111,3761840,15346786,62608681,255418101,1042002567,4250949112,17342153393,70748973084,288627200960,1177482265857,4803651498529,19596955630177,79947654422626,326154101090951,133057684...
Monitor/assembler.asm
Martin-H1/6502
3
8616
<reponame>Martin-H1/6502<filename>Monitor/assembler.asm ; ----------------------------------------------------------------------------- ; 6502 assembler losely based on a reverse engineering of <NAME>'s ; SBC OS. It will depend upon the stack, list, and I/O functions defined ; in the other modules. ; <NAME> <<EMAIL>> ;...
src/json-parsers.ads
Statkus/json-ada
0
16865
-- Copyright (c) 2016 onox <<EMAIL>> -- -- 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 ...
src/drivers/zumo_led.ads
yannickmoy/SPARKZumo
6
27902
pragma SPARK_Mode; -- @summary -- Controls the little yellow LED on the robot labeled LED 13 -- -- @description -- Use this interface to turn on and off the LED 13 located near the back -- of the robot on the right side package Zumo_LED is Initd : Boolean := False; -- Initialization sequence. Muxes pin...
runtime/ravenscar-sfp-stm32f427/gnarl-common/s-mufalo.adb
TUM-EI-RCS/StratoX
12
29252
<reponame>TUM-EI-RCS/StratoX<filename>runtime/ravenscar-sfp-stm32f427/gnarl-common/s-mufalo.adb ------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS ...
bb-runtimes/arm/sam/sam4s/svd/i-sam-sysc.ads
JCGobbi/Nucleo-STM32G474RE
0
1540
-- -- Copyright (C) 2017, AdaCore -- -- This spec has been automatically generated from ATSAM4SD32C.svd pragma Ada_2012; pragma Style_Checks (Off); with System; package Interfaces.SAM.SYSC is pragma Preelaborate; pragma No_Elaboration_Code_All; --------------- -- Registers -- --------------- -...
test/asset/agda-stdlib-1.0/Data/List/Literals.agda
omega12345/agda-mode
5
14345
------------------------------------------------------------------------ -- The Agda standard library -- -- List Literals ------------------------------------------------------------------------ {-# OPTIONS --without-K --safe #-} module Data.List.Literals where open import Agda.Builtin.FromString open import Data.Un...
libsrc/_DEVELOPMENT/compress/aplib/z80/__aplib_getgamma.asm
jpoikela/z88dk
640
93927
<reponame>jpoikela/z88dk<filename>libsrc/_DEVELOPMENT/compress/aplib/z80/__aplib_getgamma.asm SECTION code_clib SECTION code_compress_aplib PUBLIC __aplib_getgamma EXTERN __aplib_getbit, __aplib_getbitbc __aplib_getgamma: ld bc,1 l0: call __aplib_getbitbc call __aplib_getbit jr nz, l0 ret
test/Fail/Issue2522.agda
shlevy/agda
2
539
<reponame>shlevy/agda open import Agda.Builtin.Size record R (A : Size → Set) (i : Size) : Set where field force : (j : Size< i) → A j data D (A : Size → Set) (i : Size) : Set where c : R A i → D A i postulate P : (A : Size → Set) → D A ∞ → D A ∞ → Set F : (Size → Set) → Set F A = (x : A ∞) (y : D A ∞) → ...
src/offmt_lib-decoding.ads
Fabien-Chouteau/offmt-tool
0
916
package Offmt_Lib.Decoding is procedure Decode (Map_Filename : String); -- Decode from stdin end Offmt_Lib.Decoding;
src/conversion.agda
CarlOlson/cedille
0
10490
module conversion where open import lib open import cedille-types open import ctxt open import is-free open import lift open import rename open import subst open import syntax-util open import general-util open import erase {- Some notes: -- hnf{TERM} implements erasure as well as normalization. -- hnf{TYPE}...
src/sockets-can_frame.ads
glencornell/ada-socketcan
2
19049
-- MIT License -- -- Copyright (c) 2021 <NAME> <<EMAIL>> -- -- 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, mo...
Transynther/x86/_processed/NC/_ht_zr_un_/i9-9900K_12_0xa0_notsx.log_4627_531.asm
ljhsiun2/medusa
9
173386
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r13 push %r15 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_WC_ht+0x1eed2, %r13 nop nop nop nop nop xor %r11, %r11 mov $0x6162636465666768, %rcx movq %rcx, %xmm2 movups %xmm2, (%r13) nop nop xor %rcx, %rcx lea addres...
test/interaction/Issue4333/N0.agda
shlevy/agda
1,989
17091
{-# OPTIONS --rewriting --confluence-check #-} module Issue4333.N0 where open import Issue4333.M {-# REWRITE p₀ #-} b₀' : B a₀' b₀' = b
part1/lists/map-++-distribute.agda
akiomik/plfa-solutions
1
14266
module map-++-distribute where import Relation.Binary.PropositionalEquality as Eq open Eq using (_≡_; refl; cong) open Eq.≡-Reasoning open import lists using (List; []; _∷_; _++_; map) -- リストの結合に関するmapの分配法則の証明 map-++-distribute : {A B : Set} → (f : A → B) → (xs ys : List A) → map f (xs ++ ys) ≡ map f xs ++ map f ys...
src/Lifting/Partiality-monad.agda
nad/partiality-monad
2
8091
------------------------------------------------------------------------ -- An alternative but equivalent definition of the partiality monad -- (but only for sets), based on the lifting construction in Lifting ------------------------------------------------------------------------ -- The code in this module is based ...
source/sql/sqlite3/matreshka-internals-sql_drivers-sqlite3.ads
svn2github/matreshka
24
29070
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- ...
oeis/284/A284633.asm
neoneye/loda-programs
11
99846
<reponame>neoneye/loda-programs<filename>oeis/284/A284633.asm ; A284633: Numbers n with digits 3 and 6 only. ; 3,6,33,36,63,66,333,336,363,366,633,636,663,666,3333,3336,3363,3366,3633,3636,3663,3666,6333,6336,6363,6366,6633,6636,6663,6666,33333,33336,33363,33366,33633,33636,33663,33666,36333,36336,36363,36366,36633,366...
libsrc/_DEVELOPMENT/arch/hbios/c/sccz80/hbios_e_de.asm
Frodevan/z88dk
640
82771
<filename>libsrc/_DEVELOPMENT/arch/hbios/c/sccz80/hbios_e_de.asm ; uint8_t hbios_e_de(uint16_t func_device, uint16_t arg) __smallc SECTION code_clib SECTION code_arch PUBLIC hbios_e_de EXTERN asm_hbios_e .hbios_e_de pop af pop de pop bc push bc push de push af jp asm_hbios_e
src/Categories/Diagram/Wedge.agda
Trebor-Huang/agda-categories
279
5824
<filename>src/Categories/Diagram/Wedge.agda {-# OPTIONS --without-K --safe #-} open import Categories.Category open import Categories.Functor.Bifunctor module Categories.Diagram.Wedge {o ℓ e o′ ℓ′ e′} {C : Category o ℓ e} {D : Category o′ ℓ′ e′} (F : Bifunctor (Category.op C) C D) where private module C = Catego...
tests/util_tests.adb
Componolit/libsparkcrypto
30
5342
<reponame>Componolit/libsparkcrypto ------------------------------------------------------------------------------- -- This file is part of libsparkcrypto. -- -- @author <NAME> -- @date 2019-01-16 -- -- Copyright (C) 2018 Componolit GmbH -- All rights reserved. -- -- Redistribution and use in source and b...
src/tk/tk-labelframe.adb
thindil/tashy2
2
25386
-- Copyright (c) 2021 <NAME> <<EMAIL>> -- -- 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 agre...
RTCSys/asm/main.asm
Threetwosevensixseven/CSpectPlugins
4
19187
<filename>RTCSys/asm/main.asm<gh_stars>1-10 ; main.asm ; Copyright 2019-2020 <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 ; ; Un...
examples/font2.asm
darklands1/chip8
74
247792
<gh_stars>10-100 ; This is the 8*10 font for SCHIP. ; Run it through the assembler to get the ; hex codes for the fonts that you can copy ; and paste into chip8.c db ; '0' %01111100, %10000010, %10000010, %10000010, %10000010, %10000010, %10000010, %10000010, %01111100, %00000000 db ; '1' %00001000, %00011...
test.asm
lestersantos/Assembly2019
0
10441
; Comando para ensamblar: #nasm test.asm -o test.com ;======================================================================| ; M A I N | ;======================================================================| ORG 100h mov dx, cadena ; colocar direccion de cadena en DX mov ah, 09h...
src/vt100-utils.ads
darkestkhan/vt100
8
24940
<gh_stars>1-10 ------------------------------------------------------------------------------ -- EMAIL: <<EMAIL>> -- -- License: ISC License (see COPYING file) -- -- -- -- ...
projects/08/ProgramFlow/BasicLoop/BasicLoop.asm
skatsuta/nand2tetris
1
10591
// projects/08/ProgramFlow/BasicLoop/BasicLoop.vm @0 D=A @SP A=M M=D @SP AM=M+1 @0 D=A @LCL AD=D+M @R13 M=D @SP AM=M-1 D=M @R13 A=M M=D (LOOP_START) @0 D=A @ARG AD=D+M D=M @SP A=M M=D @SP AM=M+1 @0 D=A @LCL AD=D+M D=M @SP A=M M=D @SP AM=M+1 @SP AM=M-1 D=M @SP AM=M-1 M=D+M @SP AM=M+1 @0 D=A @LCL AD=D+M @R13 M=D @SP AM=M...
delay.asm
sperly/rc2014_20x4_lcd
1
2163
;X ms wait; B is number of ms milli_delay: PUSH AF PUSH BC CALL m_delay POP BC POP AF DJNZ long_wait RET ;Delay routine m_delay: LD BC, 27 ;10 outer: LD DE, 27 ;10 inner: DEC DE ;6 LD A,D ;4/9 OR E ;4/7 JP ...
programs/oeis/102/A102676.asm
jmorken/loda
1
88305
; A102676: Number of digits >= 5 in the decimal representations of all integers from 0 to n. ; 0,0,0,0,0,1,2,3,4,5,5,5,5,5,5,6,7,8,9,10,10,10,10,10,10,11,12,13,14,15,15,15,15,15,15,16,17,18,19,20,20,20,20,20,20,21,22,23,24,25,26,27,28,29,30,32,34,36,38,40,41,42,43,44,45,47,49,51,53,55,56,57,58,59,60,62,64,66,68,70,71,7...
P6/data_P6_2/ALUTest111.asm
alxzzhou/BUAA_CO_2020
1
172621
<reponame>alxzzhou/BUAA_CO_2020 lhu $3,0($0) addu $1,$2,$3 lhu $3,6($0) andi $1,$3,26531 srlv $1,$0,$3 slt $1,$4,$3 sltu $1,$3,$3 sltiu $4,$4,-14667 srl $6,$1,12 subu $1,$1,$3 sltu $5,$5,$3 lb $3,16($0) lh $4,10($0) xor $4,$4,$3 sra $4,$3,7 lw $0,0($0) lh $5,10($0) addiu $0,$5,-3104 sh $4,14($0) addu $4,$5,$3 sra $2,$2...
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-encstr.ads
djamal2727/Main-Bearing-Analytical-Model
0
15628
<filename>Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-encstr.ads ------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- ...
programs/oeis/040/A040762.asm
karttu/loda
1
27857
; A040762: Continued fraction for sqrt(791). ; 28,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56,8,56 sub $0,1 mod $0,2 mul $0,11 add $0,2 pow $0,2 mov $1,$0 sub $1,4 div $1,13 mul $1,4 ...
src/TemporalOps/Diamond/JoinLemmas.agda
DimaSamoz/temporal-type-systems
4
3043
<filename>src/TemporalOps/Diamond/JoinLemmas.agda {- Definition of join for ◇ and associated lemmas. -} module TemporalOps.Diamond.JoinLemmas where open import CategoryTheory.Categories open import CategoryTheory.Instances.Reactive open import CategoryTheory.Functor open import CategoryTheory.NatTrans open import Cat...
src/LibraBFT/Impl/IO/OBM/Properties/InputOutputHandlers.agda
LaudateCorpus1/bft-consensus-agda
0
1781
<filename>src/LibraBFT/Impl/IO/OBM/Properties/InputOutputHandlers.agda {- Byzantine Fault Tolerant Consensus Verification in Agda, version 0.9. Copyright (c) 2021, Oracle and/or its affiliates. Licensed under the Universal Permissive License v 1.0 as shown at https://opensource.oracle.com/licenses/upl -} open i...
2020_notebooks/Assignments/assignment_4/src/PL.g4
blended-learning/compilers
0
7419
grammar PL; @header { package mygrammar; } /* ============================= COMPLETE THE FOLLOWING GRAMMAR ============================= */ program : ID ; ID : ('a' .. 'z')+ ; Whitespace : [ \t\r\n]+ -> skip;
programs/oeis/143/A143131.asm
neoneye/loda
22
2323
<reponame>neoneye/loda<gh_stars>10-100 ; A143131: Binomial transform of [1, 4, 10, 20, 0, 0, 0,...]. ; 1,5,19,63,157,321,575,939,1433,2077,2891,3895,5109,6553,8247,10211,12465,15029,17923,21167,24781,28785,33199,38043,43337,49101,55355,62119,69413,77257,85671,94675,104289,114533,125427,136991,149245 mov $2,$0 mul $0,2...
dosshell/swapper/woaswapi.asm
minblock/msdos
0
160695
<gh_stars>0 ;/* ; * Microsoft Confidential ; * Copyright (C) Microsoft Corporation 1985-1991 ; * All Rights Reserved. ; */ ;----------------------------------------------------------------------------; ; This file implements all the switch API functions...
Appl/Term/Main/mainProtocol.asm
steakknife/pcgeos
504
29519
<reponame>steakknife/pcgeos COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) Geoworks 1993 -- All Rights Reserved PROJECT: PC GEOS MODULE: FILE: mainProtocol.asm AUTHOR: <NAME> ROUTINES: Name Description ---- ----------- REVISION HISTORY: Name Date De...
programs/oeis/132/A132914.asm
karttu/loda
0
15386
; A132914: a(n) = floor(sqrt(n) + n^(1/3)). ; 2,2,3,3,3,4,4,4,5,5,5,5,5,6,6,6,6,6,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12 lpb $0,1 sub $0,1 add $2,1 sub $0,$2 mov $3,8 lpb $2,1 mov $2,$0 sub $0,1 lpe add $1,$3 l...
evernote/note_export_enex_with_nbname.applescript
kinshuk4/evernote-automation
4
3628
on run {note_name, notebook_name, enex_path} run script (POSIX file "/Users/IceHe/Documents/AppleScript/Evernote/evernote_launch.applescript") tell application "Evernote" set note_found to find notes "notebook:\"" & notebook_name & "\" intitle:\"" & note_name & "\"" if 1 = (count of note_found) then ...
oeis/035/A035265.asm
neoneye/loda-programs
11
178772
<reponame>neoneye/loda-programs ; A035265: One half of deca-factorial numbers. ; 1,12,264,8448,354816,18450432,1143926784,82362728448,6753743732736,621344423411712,63377131187994624,7098238693055397888,865985120552758542336,114310035912964127588352,16232025099640906117545984,2467267815145417729866989568,399697386053557...