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 |
|---|---|---|---|---|
cga320x200/ludicrous/polyfill.asm | bocke/CGAGraphics | 17 | 82033 | DOSSEG
.MODEL small
.DATA
line_offset DW 0, 80, 160, 240, 320, 400, 480, 560, 640, 720
DW 800, 880, 960, 1040, 1120, 1200, 1280, 1360, 1440, 1520
DW 1600, 1680, 1760, 1840, 1920, 2000, 2080, 2160, 2240, 2320
DW 2400, 2480, 2560, 2640, 2720, 2800, 2880, 29... |
ffmpeg-3.2.5/libavcodec/x86/takdsp.asm | huyu0415/FFmpeg | 3,645 | 160704 | <reponame>huyu0415/FFmpeg
;******************************************************************************
;* TAK DSP SIMD optimizations
;*
;* Copyright (C) 2015 <NAME>
;*
;* This file is part of FFmpeg.
;*
;* FFmpeg is free software; you can redistribute it and/or
;* modify it under the terms of the GNU Lesser General ... |
src/model/helios-rest-models.adb | stcarrez/helios | 1 | 11443 | <gh_stars>1-10
-- Hyperion API
-- Hyperion Monitoring API The monitoring agent is first registered so that the server knows it as well as its security key. Each host are then registered by a monitoring agent.
--
-- The version of the OpenAPI document: 1.0.0
-- Contact: <EMAIL>
--
-- NOTE: This package is auto ge... |
test/Succeed/list.agda | cruhland/agda | 1,989 | 6646 |
module list where
module List (A : Set) where
data List : Set where
nil : List
_::_ : A -> List -> List
_++_ : List -> List -> List
nil ++ ys = ys
(x :: xs) ++ ys = x :: (xs ++ ys)
|
vendor/stdlib/src/Category/Monad/Continuation.agda | isabella232/Lemmachine | 56 | 13124 | <reponame>isabella232/Lemmachine
------------------------------------------------------------------------
-- A delimited continuation monad
------------------------------------------------------------------------
module Category.Monad.Continuation where
open import Category.Applicative
open import Category.Applicativ... |
src/function.asm | Bigsby/boot-sector | 0 | 103920 | ;
; A simple boot sector that prints a message to the screen using a BIOS routine.
;
mov al, 'H'
call print_char
mov al, 'e'
call print_char
mov al, 'l'
call print_char
mov al, 'l'
call print_char
mov al, 'o'
call print_char
jmp $ ; Jump to the current address (i.e. forever).
pri... |
oeis/342/A342455.asm | neoneye/loda-programs | 11 | 87904 | ; A342455: The fifth powers of primorials: a(n) = A002110(n)^5.
; Submitted by <NAME>
; 1,32,7776,24300000,408410100000,65774855015100000,24421743243121524300000,34675383095948798128025100000,85859681408495723096004822084900000,552622359415801587878908964592391520700000,1133491955470905932342089573019026674741428430000... |
sw/thread_test_cases/thread_test2.asm | JPShen-UWM/ThreadKraken | 1 | 25694 | lbi r19 1 // create 5 new thread and run function 1
slbi r19 0x0100 // r19 is at start pc
addi r19 r19 26 // r19 is pointing to function 1
lbi r21 1
slbi r21 0x0400 // r21 is pointing to heap
nt r26 r19 r21
addi r21 r21 1 // r21 = r21 + 1
nt r26 r19 r21
addi r21 r21 1 // r21 = r21 + 1
nt r26 r19 r21
addi r21 r21 1 //... |
specs/ada/common/tkmrpc-response-ike-dh_generate_key-convert.ads | DrenfongWong/tkm-rpc | 0 | 20956 | with Ada.Unchecked_Conversion;
package Tkmrpc.Response.Ike.Dh_Generate_Key.Convert is
function To_Response is new Ada.Unchecked_Conversion (
Source => Dh_Generate_Key.Response_Type,
Target => Response.Data_Type);
function From_Response is new Ada.Unchecked_Conversion (
Source => Response.Data... |
Engine/Graphics/CheckSpritesRefresh.asm | wide-dot/thomson-to8-game-engine | 11 | 24651 | <gh_stars>10-100
* ---------------------------------------------------------------------------
* CheckSpritesRefresh
* -------------------
* Subroutine to determine if sprites are gonna be erased and/or drawn
* Read Display Priority Structure (back to front)
* priority: 0 - unregistred
* priority: 1 - register non movi... |
tests/data_unsized/2.asm | NullMember/customasm | 414 | 9863 | #d 0x0000 ; = 0x0000 |
Structure/Function/Metric.agda | Lolirofle/stuff-in-agda | 6 | 16999 | <reponame>Lolirofle/stuff-in-agda
open import Logic
open import Logic.Classical
open import Structure.Setoid
open import Structure.OrderedField
open import Type
module Structure.Function.Metric
{ℓF ℓₑF ℓ≤}
{F : Type{ℓF}}
⦃ equiv-F : Equiv{ℓₑF}(F) ⦄
{_+_}{_⋅_}
{_≤_ : _ → _ → Type{ℓ≤}}
⦃ orderedField-F : Ord... |
src/main/antlr/com/techshroom/husk/antlr/Husk.g4 | kenzierocks/husk | 0 | 2521 | <gh_stars>0
/*
* This file is part of husk, licensed under the MIT License (MIT).
*
* Copyright (c) TechShroom <https://techshroom.com>
* Copyright (c) contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Softwar... |
grammars/powerscript_04.g4 | darioaxel/PowerScriptGrammar | 1 | 3133 | <filename>grammars/powerscript_04.g4
/**
* Original Author: <NAME>
* E-Mail: <EMAIL>
*/
grammar powerscript_04;
@header {
package org.darioaxel.grammar.powerscript;
}
compilationUnit
: memberDeclaration* EOF
;
memberDeclaration
: forwardDeclaration
| typeDeclaration
| localVar... |
gcc-gcc-7_3_0-release/gcc/ada/lib-load.ads | best08618/asylo | 7 | 23927 | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- ... |
src/test/resources/asm/beer.asm | yottatsa/basicv2 | 71 | 29794 | *=$c000
SYSOUT=$FFD2
MAX=99
LDX #MAX
LOOP JSR BOTTLEOUT
JSR PUTS
LDY #<COM
JSR PUTS
JSR BOTTLEOUT
TYA
CLC
ADC #13
TAY
JSR PUTS
DEX
BPL CONTI
LDY #<STORE
JSR PUTS
LDX #MAX
JSR WALLCR
RTS
CONTI LDY #<TAKE
JSR PUTS
JSR WALLCR
JMP LOOP
... |
Library/Text/TextLine/tlCommonDrawExtendedStyles.asm | steakknife/pcgeos | 504 | 88112 | <gh_stars>100-1000
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: tlCommonDrawExtendedStyles.asm
AUTHOR: <NAME>, Jul 10, 1992
ROUTINES:
Name Description
---- -----------
REVIS... |
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-io.adb | orb-zhuchen/Orb | 0 | 25961 | <filename>support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-io.adb
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- ... |
test/unknown/test_unknown-read.ads | skill-lang/skillAdaTestSuite | 1 | 245 | with Ada.Characters.Handling;
with Ada.Strings.Fixed;
with Ada.Tags;
with Ahven.Framework;
with Unknown.Api;
package Test_Unknown.Read is
package Skill renames Unknown.Api;
use Unknown;
use Unknown.Api;
type Test is new Ahven.Framework.Test_Case with null record;
procedure Initialize (T : in out Test... |
same-origin-policy/src/model/jsonp.als | cfbolz/500lines | 2 | 2543 | /**
* jsonp.als
* A model of the JSONP mechanism for cross-domain communication from a
* script and a server
*/
module jsonp
open script
abstract sig Callback {} // identifier of a callback function
// Request sent as a result of <script> tag
sig JsonpRequest in BrowserHttpRequest {
padding: Callba... |
data/baseStats_original/flaaffy.asm | adhi-thirumala/EvoYellow | 16 | 100594 | <reponame>adhi-thirumala/EvoYellow
db DEX_FLAAFFY ; pokedex id
db 70 ; base hp
db 55 ; base attack
db 55 ; base defense
db 45 ; base speed
db 70 ; base special
db ELECTRIC ; species type 1
db ELECTRIC ; species type 2
db 100 ; catch rate
db 117 ; base exp yield
INCBIN "pic/ymon/flaaffy.pic",0,1 ; 66, sprite d... |
problems/017/a017.adb | melwyncarlo/ProjectEuler | 0 | 12900 | with Ada.Integer_Text_IO;
with Ada.Numerics.Elementary_Functions;
-- Copyright 2021 <NAME>
procedure A017 is
use Ada.Integer_Text_IO;
use Ada.Numerics.Elementary_Functions;
N : Integer := 0;
And_Str_Length : constant Integer := 3;
Hundred_Str_Length : constant Integer := 7;
One_Tho... |
libsrc/_DEVELOPMENT/l/z80/integer/small/l_small_lsr_hl.asm | jpoikela/z88dk | 640 | 16325 |
SECTION code_clib
SECTION code_l
PUBLIC l_small_lsr_hl
EXTERN error_znc
l_small_lsr_hl:
; logical shift right 16-bit unsigned int
;
; enter : hl = 16-bit number
; a = shift amount
;
; exit : hl = hl >> a
;
; uses : af, b, hl
or a
ret z
cp 16
jp nc, error_znc
... |
smsq/mem/rlst.asm | olifink/smsqe | 0 | 22817 | <filename>smsq/mem/rlst.asm
* Memory manager linked list maintenance V2.00 <NAME> QJUMP
*
section mem
*
xdef mem_rlst remove from list
*
include dev8_keys_err
*
* a0 c p link to be removed
* a1 c u pointer to previous item (or start of list)
*
* all other regi... |
date/durationMessageForSeconds.applescript | adriannier/applescript-functions | 7 | 2185 | <filename>date/durationMessageForSeconds.applescript
(*
The specified number of seconds is converted to a string like "30 minutes" or "1 day"
*)
durationMessageForSeconds(3)
on durationMessageForSeconds(theSeconds)
-- Check input
if theSeconds = 0 then return "just now"
-- Set the name of the units
set singl... |
MSDOS/Virus.MSDOS.Unknown.cdeath4.asm | fengjixuchui/Family | 3 | 28580 | ;*****************************************************************************;
; ;
; Creeping Death IV (Encrypting, try to find it) ;
; ;
... |
Sources/Library/real_type.ads | ForYouEyesOnly/Space-Convoy | 1 | 18523 | with Ada.Numerics.Generic_Elementary_Functions;
package Real_Type is
subtype Real is Long_Float;
package Real_Elementary_Functions is
new Ada.Numerics.Generic_Elementary_Functions (Real);
end Real_Type;
|
src/test/resources/data/generationtests/sjasm-macro2-expected.asm | Fubukimaru/mdlz80optimizer | 0 | 165640 | <reponame>Fubukimaru/mdlz80optimizer
; Test case:
ld a, #0203 & #00ff
ld (var), a
or a
jr nz, _sjasm_reusable_1_1
ld a, (#0203 & #ff00) >> 8
ld (var), a
_sjasm_reusable_1_1:
ld a, #0203 & #00ff
ld (var), a
or a
jr nz, _sjasm_reusable_1_2
ld a, (#0203 & #ff00) >> 8
ld (var), a
_sjasm_reusable_1_2:
loo... |
examples/test_sha512.adb | ytomino/openssl-ada | 1 | 8141 | with Ada.Streams;
with Ada.Text_IO;
with Crypto.SHA512; use Crypto.SHA512;
procedure Test_SHA512 is
procedure Test_01 is
use type Ada.Streams.Stream_Element_Array;
C : Context := Initial;
D : Fingerprint;
begin
Update (C, "a");
Final (C, D);
pragma Assert (
Image (D) =
"1f40fc92da241694750979ee6cf5... |
Qsi.Impala/Antlr/ImpalaLexerInternal.g4 | ScriptBox99/chequer-qsi | 36 | 2075 | lexer grammar ImpalaLexerInternal;
options {
superClass = ImpalaBaseLexer;
}
tokens {
UNMATCHED_STRING_LITERAL,
INTEGER_LITERAL,
NUMERIC_OVERFLOW,
DECIMAL_LITERAL,
EMPTY_IDENT,
IDENT,
STRING_LITERAL,
COMMENTED_PLAN_HINT_START,
COMMENTED_PLAN_HINT_END,
UNEXPECTED_CHAR,
K... |
iod/iou/flnk.asm | olifink/smsqe | 0 | 168938 | ; IO Device find device linkage V2.02 1986 <NAME> QJUMP
section exten
xdef iou_flnk
xdef iou_ipar
include dev8_keys_err
include dev8_keys_iod
include dev8_keys_sys
include dev8_keys_qdos_sms
;+++
; This routine finds the device driver linkage usi... |
vector.ads | adrianhoe/adactfft | 0 | 25794 | <gh_stars>0
--------------------------------------------------------------------------------
-- * Spec name vector.ads
-- * Project name ctffttest
-- *
-- * Version 1.0
-- * Last update 11/5/08
-- *
-- * Created by <NAME> on 11/5/08.
-- * Copyright (c) 2008 AdaStar Informatics http://adastarinformatics.co... |
src/tocompress/map-catacombs1.asm | santiontanon/talesofpopolon-ext | 4 | 86998 | <gh_stars>1-10
include "../constants.asm"
org #0000
skybox:
db 0
texture_set:
db 1
floortypeandcolor:
; db 0
db #60
ceilingtypeandcolor:
; db 0
db #d0
map:
db 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7
db 4,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7
db 7,0,7,7,7,7,0,0,0,0,0,7,7,7,7,7
db 128+8,0,128+8,... |
tests/shen/stdlib/nasm/core_lib.asm | openn2o/jitredis | 1 | 166940 | global add_sum
add_sum:
push rbp
mov rbp, rsp
push rbx
push rax
add rax, rbx
pop rbx
pop rbp
ret
;; string
slen:
push rbx
mov rbx, rax
nextchar:
cmp byte [rax], 0
jz finished
inc ... |
Scripts Pack Source Items/Scripts Pack/Finder/Text Selection in QuickLook.applescript | Phorofor/ScriptsPack.macOS | 1 | 3516 | <filename>Scripts Pack Source Items/Scripts Pack/Finder/Text Selection in QuickLook.applescript
# Scripts Pack - Tweak various preference variables in macOS
# <Phorofor, https://github.com/Phorofor/>
-- Select Text in QuickLook
-- Versions compatible: -
-- Preference Identifier: com.apple.Finder
-- Preference Key: Q... |
third_party/antlr_grammars_v4/antlr/antlr3/ANTLRv3Parser.g4 | mikhan808/rsyntaxtextarea-antlr4-extension | 2 | 3842 | <filename>third_party/antlr_grammars_v4/antlr/antlr3/ANTLRv3Parser.g4<gh_stars>1-10
/*
[The "BSD licence"]
Copyright (c) 2005-2007 <NAME>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistr... |
44-运行简单程序(无文档)/OS-kernel-win-sheet/hlt.asm | wdkang123/MyOperatingSystem | 7 | 164384 | org 0
cli
fin:
jmp fin |
Asm/Tetradeca.X/main.asm | SmallRoomLabs/Tetradeca | 1 | 168308 | <reponame>SmallRoomLabs/Tetradeca
;-----------------------------------------------------------------------------
; Tetradeca - A multi-game unit using 14 segment LED displays and a PIC16F1705
;-----------------------------------------------------------------------------
;
; The files for the full project are located at... |
bomber-02/bomber.asm | leonhad/atari | 0 | 1611 | <filename>bomber-02/bomber.asm<gh_stars>0
processor 6502
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Include required files with VCS register memory mapping and macros
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
include "vcs.h"
incl... |
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca_notsx.log_15_156.asm | ljhsiun2/medusa | 9 | 93413 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x1de2a, %r13
clflush (%r13)
nop
nop
nop
add $5553, %rsi
mov $0x6162636465666768, %rbp
movq %rbp, %xmm1
movups %xmm1, (%r13)
nop
dec %rcx
lea addresses_WC_ht+0x... |
test/ir/pascalTriangle.asm | kpsunil/gogo | 2 | 178522 | <reponame>kpsunil/gogo<filename>test/ir/pascalTriangle.asm
.data
twoSpc: .asciiz " "
threeSpc: .asciiz " "
newline: .asciiz "\n"
str: .asciiz "Enter number of rows: "
rows: .word 0
coef: .word 0
i: .word 0
space: .word 0
temp: .word 0
k: .word 0
.text
.globl main
.ent main
main:
li $v0, 4
la $a0, str
sysca... |
oeis/296/A296160.asm | neoneye/loda-programs | 11 | 97388 | <gh_stars>10-100
; A296160: Sum of the larger parts of the partitions of n into two parts such that the smaller part is even.
; 0,0,0,2,3,4,5,10,12,14,16,24,27,30,33,44,48,52,56,70,75,80,85,102,108,114,120,140,147,154,161,184,192,200,208,234,243,252,261,290,300,310,320,352,363,374,385,420,432,444,456,494,507,520,533,57... |
Microprocessor lab/bubbleSort/bubbleSort.nasm | IamVaibhavsar/Second_Year_Lab_Assignments | 34 | 102 | %include"macro.nasm"
;Write X86 program to sort the list of integers in ascending/descending order. Read the input
;from the text file and write the sorted data back to the same text file using bubble sort
global _start
_start:
section .text
pop rcx ;3
pop rcx ;assg8.asm
pop rcx ;t3.txt
mov... |
libsrc/_DEVELOPMENT/string/c/sccz80/bcopy_callee.asm | teknoplop/z88dk | 8 | 169910 | <reponame>teknoplop/z88dk
; BSD
; void bcopy(const void *src, void *dst, size_t len)
SECTION code_clib
SECTION code_string
PUBLIC bcopy_callee
EXTERN asm_bcopy
bcopy_callee:
pop hl
pop bc
pop de
ex (sp),hl
jp asm_bcopy
|
src/ada/src/uxas-messages-lmcptask-taskautomationrequest-spark_boundary.ads | pat-rogers/OpenUxAS | 0 | 11978 | <gh_stars>0
with Common_Formal_Containers; use Common_Formal_Containers;
package uxas.messages.Lmcptask.TaskAutomationRequest.SPARK_Boundary with SPARK_Mode is
pragma Annotate (GNATprove, Terminating, SPARK_Boundary);
function Get_EntityList_From_OriginalRequest
(Request : TaskAutomationRequest) return Int... |
Desk Control/SendToMix.applescript | streth11/Qlab-Scripts | 0 | 3442 | -- Creates a midi sysex cue to set the value of a fader's send to a mix
-- Yamaha LS9-32
-- change to preamble will change desk type, should work for modern desks
-- but to be vereified
--
-- Example string inputs:
-- ch 7 to mix 5 at -20 -- send channel 7 to mix 5 at -20db
--
-- accepted chan values: ch 1-64
-... |
osascript/is-installed.applescript | Mu-L/ImageOptim-CLI | 1,951 | 2714 | <filename>osascript/is-installed.applescript
#!/bin/osascript
on isInstalled(bundleId)
try
tell application "Finder" to get application file id bundleId
return true
on error
return false
end try
end isInstalled
on run argv
set bundleId to item 1 of argv
return isInstalled(bundleId)
end run
|
src/svd/sam_svd-fpu.ads | Fabien-Chouteau/samd51-hal | 1 | 28127 | <reponame>Fabien-Chouteau/samd51-hal<gh_stars>1-10
pragma Style_Checks (Off);
-- This spec has been automatically generated from ATSAMD51G19A.svd
pragma Restrictions (No_Elaboration_Code);
with HAL;
with System;
package SAM_SVD.FPU is
pragma Preelaborate;
---------------
-- Registers --
--------------... |
programs/oeis/001/A001950.asm | karttu/loda | 0 | 16436 | ; A001950: Upper Wythoff sequence (a Beatty sequence): a(n) = floor(n*phi^2), where phi = (1+sqrt(5))/2.
; 2,5,7,10,13,15,18,20,23,26,28,31,34,36,39,41,44,47,49,52,54,57,60,62,65,68,70,73,75,78,81,83,86,89,91,94,96,99,102,104,107,109,112,115,117,120,123,125,128,130,133,136,138,141,143,146,149,151,154,157,159,162,164,16... |
src/grammar/Local_en.g4 | omerfarukz/Child-Lang | 17 | 6531 | <reponame>omerfarukz/Child-Lang
grammar Local_en;
import LanguageBase;
COMMAND_WRITE : 'print'; |
zfp-gba/gnat/i-c.ads | 98devin/ada-gba-dev | 7 | 11464 | <filename>zfp-gba/gnat/i-c.ads
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- ... |
article_56/03_no_op_filter.asm | tisnik/go-fedora | 18 | 82122 | <filename>article_56/03_no_op_filter.asm
TEXT main.copyPixels(SB) /home/ptisnovs/src/go-root/article_56/03_no_op_filter.go
func copyPixels(src []uint8, dst []uint8) {
0x4b94e0 64488b0c25f8ffffff MOVQ FS:0xfffffff8, CX
0x4b94e9 483b6110 CMPQ 0x10(CX), SP
0x4b94ed 0f86bc000000 JBE 0x4b95af
0x4b94f3 4883... |
iAlloy-dataset-master/mutant_version_set/addressBook/v1/addressBook.als | jringert/alloy-diff | 1 | 4104 | module chapter5/addressBook
//JOR//open util/integer [] as integer
abstract sig Target {}
sig Addr extends Target {}
sig Name extends Target {}
sig Book {
addr: (Name->Target)
}
pred add[b,b': Book,n: Name,t: Target] {
((b'.addr) = ((b.addr) + (n->t)))
}
fun lookup[b: Book,n: Name] : (set Addr) {
((n.(^(b.addr))) & Add... |
test/data/fibonacci.asm | phlo/concubine | 0 | 94776 | # calculates the famous fibonacci numbers
# k = 1 => fib(0)
# k = 2 => fib(1)
STORE 1
ADDI 1
fib: STORE 2
ADD 1
STORE 1
ADD 2
JMP fib
|
src/main/fragment/mos6502-undoc/vbuxx=vbuc1_minus_vbuaa.asm | jbrandwood/kickc | 2 | 105433 | eor #$ff
tax
axs #-{c1}-1 |
kernel/misc/panic.asm | ssebs/xos | 15 | 93262 |
;; xOS32
;; Copyright (C) 2016-2017 by <NAME>.
use32
divide_text db "Division error.",0
debug_text db "Debug interrupt.",0
nmi_text db "Non-maskable interrupt.",0
breakpoint_text db "Breakpoint.",0
overflow_text db "Overflow exception.",0
bound_text db "BOUND range overflow.",0
opcode_text db "Undefine... |
alloy4fun_models/trashltl/models/3/iTHXfva79RpDWFHrr.als | Kaixi26/org.alloytools.alloy | 0 | 3440 | open main
pred idiTHXfva79RpDWFHrr_prop4 {
eventually (some f:File | f in Trash')
}
pred __repair { idiTHXfva79RpDWFHrr_prop4 }
check __repair { idiTHXfva79RpDWFHrr_prop4 <=> prop4o } |
UniDB/Morph/Bla.agda | skeuchel/unidb-agda | 0 | 16472 | <filename>UniDB/Morph/Bla.agda
module UniDB.Morph.Bla where
open import UniDB.Spec
open import UniDB.Morph.WeakenOne
open import UniDB.Morph.Sub
open import UniDB.Morph.ShiftsPrime
open import UniDB.Morph.Subs
-- mutual
-- data BlaSubst (T : STX) : MOR where
-- blasubst : {γ₁ γ₂ : Dom} → BlaSubst T γ₁ γ₂
mutu... |
alloy4fun_models/trashltl/models/1/YyEEDNvazLyohQRJg.als | Kaixi26/org.alloytools.alloy | 0 | 3937 | <reponame>Kaixi26/org.alloytools.alloy
open main
pred idYyEEDNvazLyohQRJg_prop2 {
eventually some File
}
pred __repair { idYyEEDNvazLyohQRJg_prop2 }
check __repair { idYyEEDNvazLyohQRJg_prop2 <=> prop2o } |
antlr4-formatter/src/test/resources/at.unformatted.g4 | quantrpeter/Antlr4Formatter | 28 | 1212 | <reponame>quantrpeter/Antlr4Formatter
// Define a grammar called Hello
grammar Hello;
r : 'hello' ID ; // match keyword hello followed by an identifier
AT : '@';
ELLIPSIS : '...';
|
oeis/128/A128987.asm | neoneye/loda-programs | 11 | 94748 | ; A128987: a(n) = (n^3 - n^2)*4^n.
; Submitted by <NAME>
; 0,64,1152,12288,102400,737280,4816896,29360128,169869312,943718400,5075107840,26575110144,136096776192,683973541888,3382286745600,16492674416640,79439715106816,378506877861888,1786156639322112,8356288371097600,38790770227937280,178806978955444224,81895144473965... |
src/instructions.ads | acornagl/Control_flow_graph-wcet | 0 | 20631 | <filename>src/instructions.ads
package Instructions is
-- Type Instruction colleclt all the possible processors instructions.
-- At the present moment it is statically defined but in a future work it
-- can be
type Instruction is ( );
end Instructions;
|
oeis/056/A056128.asm | neoneye/loda-programs | 11 | 175130 | <reponame>neoneye/loda-programs
; A056128: a(n) = (9*n + 11)*binomial(n+10, 10)/11.
; Submitted by <NAME>
; 1,20,174,988,4277,15288,47320,130832,330174,772616,1696396,3527160,6995534,13312768,24426552,43385360,74847175,125777340,206390730,331405620,521690715,806403000,1225732560,1834391520,2706007980,3938612496,5661434... |
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/nested_generic1.adb | best08618/asylo | 7 | 23379 | <filename>gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/nested_generic1.adb
-- PR ada/52735
-- Reported by <NAME> <<EMAIL>>
-- { dg-do compile }
with Nested_Generic1_Pkg;
procedure Nested_Generic1 is
package P is new Nested_Generic1_Pkg;
begin
null;
end;
|
Transynther/x86/_processed/NONE/_zr_/i3-7100_9_0x84_notsx.log_159_136.asm | ljhsiun2/medusa | 9 | 2261 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %r14
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x7eb9, %rsi
nop
nop
nop
nop
add $43262, %rdx
movw $0x6162, (%rsi)
nop
nop
sub $12629, %r9
lea addresses_normal_ht+0xa07f, %r9
nop
nop
nop
c... |
programs/oeis/230/A230928.asm | karttu/loda | 0 | 90259 | ; A230928: Number of black-square subarrays of (n+2) X (1+2) 0..3 arrays x(i,j) with each element diagonally or antidiagonally next to at least one element with value (x(i,j)+1) mod 4, no adjacent elements equal, and upper left element zero.
; 2,2,8,8,42,42,208,208,1042,1042,5208,5208,26042,26042,130208,130208,651042,6... |
TRGB.asm | CodexLink/8086_ASM_DOSBOX_Examples | 0 | 14775 | ; T-Structure in Red and Green (Left) + Blue (Right) for Spacing — TGRB.asm
; Copyright (c) 2021 <NAME>
; This code is licensed under MIT license. (see LICENSE for details)
.MODEL TINY
.CODE
MOV AX, 0B800H ; Get address for VGA color mode.
MOV ES, AX ; Move that address in extra segment.
MOV AH, 06H ; Set to Scro... |
SVD2ada/svd/stm32_svd-hrtim.ads | JCGobbi/Nucleo-STM32H743ZI | 0 | 19730 | pragma Style_Checks (Off);
-- This spec has been automatically generated from STM32H743x.svd
pragma Restrictions (No_Elaboration_Code);
with HAL;
with System;
package STM32_SVD.HRTIM is
pragma Preelaborate;
---------------
-- Registers --
---------------
subtype CR1_AD1USRC_Field is HAL.UInt3;
... |
src/natools-smaz_generic-tools.adb | faelys/natools | 0 | 24471 | <reponame>faelys/natools<gh_stars>0
------------------------------------------------------------------------------
-- Copyright (c) 2016, <NAME> --
-- --
-- Permission to use, copy, modify, and distribute thi... |
constants/landmark_constants.asm | AtmaBuster/pokecrystal16-493-plus | 1 | 13725 | <reponame>AtmaBuster/pokecrystal16-493-plus
; Landmarks indexes (see data/maps/landmarks.asm)
const_def
const SPECIAL_MAP
const TWINLEAF_TOWN
const ROUTE_201
const LAKE_VERITY
const SANDGEM_TOWN
const ROUTE_202
const JUBILIFE_CITY
const ROUTE_203
const OREBURGH_GATE
const OREBURGH_CITY
; old definitions... |
asm.programs/counter.asm | rostislav-nikitin/edu.fpga.xilinx.cpu.8bit | 0 | 103978 | <reponame>rostislav-nikitin/edu.fpga.xilinx.cpu.8bit<filename>asm.programs/counter.asm
LDC R1, "00000001"
00 0 010 01 00
01 00000001
LDC R0, "00000000"
02 0 010 00 00
03 00000000
loop:
ADD R0, R1
04 1 000 00 01
JMPIF C, clear
05 0 101 0001
06 00001001
JMP loop
07 0 100 00 00
08 00000100
clear:
CLF
09 011000... |
src/natools-web-sites-updates.ads | faelys/natools-web | 1 | 8842 | ------------------------------------------------------------------------------
-- Copyright (c) 2015-2017, <NAME> --
-- --
-- Permission to use, copy, modify, and distribute this software for any --
-- purpose ... |
agda-stdlib-0.9/src/Function/Related.agda | qwe2/try-agda | 1 | 8331 | <gh_stars>1-10
------------------------------------------------------------------------
-- The Agda standard library
--
-- A universe which includes several kinds of "relatedness" for sets,
-- such as equivalences, surjections and bijections
------------------------------------------------------------------------
modu... |
3-mid/opengl/source/platform/egl/opengl-context.adb | charlie5/lace | 20 | 1245 | with
opengl.Display .privvy,
opengl.surface_Profile.privvy,
opengl.Surface .privvy,
egl.Binding,
System;
package body openGL.Context
is
use egl.Binding,
System;
procedure define (Self : in out Item; the_Display : access opengl.Display.item'Class;
... |
test/Succeed/Issue5730.agda | sseefried/agda | 1 | 7952 | {-# OPTIONS --with-K -vtc.lhs.unify:50 #-}
open import Agda.Primitive using (Setω)
open import Agda.Builtin.Equality using (_≡_; refl)
-- change `Set` to `Setω` breaks `seq`
data RecD (I : Set) : Setω where
ι : (i : I) → RecD I
data RecO {I J : Set} (e : I → J) : RecD I → RecD J → Setω where
ι : (i : I) ... |
oeis/024/A024442.asm | neoneye/loda-programs | 11 | 86549 | <gh_stars>10-100
; A024442: Expansion of 1/((1-x)(1-7x)(1-9x)(1-11x)).
; Submitted by <NAME>
; 1,28,518,7988,111279,1454376,18208156,221140696,2626932077,30692791844,354119115714,4046102802924,45880411771195,517157095113232,5801772397167992,64842434348911472,722511991410929433
add $0,2
lpb $0
sub $0,1
add $2,1
m... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_2144.asm | ljhsiun2/medusa | 9 | 17675 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r15
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x124af, %r12
sub $2665, %rbp
mov $0x6162636465666768, %r15
movq %r15, %xmm6
vmovups %ymm6, (%r12)
nop
nop
nop
nop
nop
dec %r15
lea addresses_D_ht+0xccd5, %rcx
nop
nop
nop
nop
... |
samples/sms/tilemap_render/bidir_scroll_ADJ_SCR_MASKS/data/tilemap.asm | 0x8BitDev/MAPeD-SPReD | 23 | 8434 | ;#######################################################
;
; Generated by MAPeD-SMS Copyright 2017-2021 0x8BitDev
;
;#######################################################
; export options:
; - tiles 4x4/(columns)
; - properties per CHR (screen attributes)
; - mode: bidirectional scrolling
; - layout: adjacent... |
src/8088/pc_high.asm | vossi1/cbm2-pc-emulator-v9958 | 0 | 20054 | <gh_stars>0
%undef ROM
%undef STANDALONE
[BITS 16]
[CPU 8086]
[ORG 0x0100]
[SECTION .text]
; Starting offest of the resident code.
Install_Start equ ($-$$)
; Number of bytes to leave from the top of memory.
; to make room for MS-DOS 1.25 COMMAND.COM portion.
Install_Leave equ 1800h
call Install_High
int 20h... |
fastmodel-ide/fastmodel-ide-open-front/antlr/FastModelLexer.g4 | alibaba/fast-modeling-language | 9 | 5036 | lexer grammar FastModelLexer;
channels { WS_CHANNEL, COMMENT_CHANNEL }
KW_CREATE : C R E A T E ;
KW_ALTER: A L T E R ;
KW_PROCESS : B U S I N E S S '_' P R O C E S S ;
KW_PROCESSES : B U S I N E S S '_' P R O C E S S E S ;
KW_BUSINESS_CATEGORY : B U S I N E S S '_' C A T E G O R Y ;
KW_BUSINESS_CATEGORIES : B U S I N... |
src/test/ref/ptr-complex.asm | jbrandwood/kickc | 2 | 87191 | // Test some complex pointers
// Commodore 64 PRG executable file
.file [name="ptr-complex.prg", type="prg", segments="Program"]
.segmentdef Program [segments="Basic, Code, Data"]
.segmentdef Basic [start=$0801]
.segmentdef Code [start=$80d]
.segmentdef Data [startAfter="Code"]
.segment Basic
:BasicUpstart(main)
.seg... |
oeis/321/A321540.asm | neoneye/loda-programs | 11 | 88706 | <reponame>neoneye/loda-programs<filename>oeis/321/A321540.asm
; A321540: 3^n with digits rearranged into nondecreasing order.
; Submitted by <NAME>(r1)
; 1,3,9,27,18,234,279,1278,1566,13689,4599,114777,113445,1233459,2467899,1344789,1234467,11123469,23447889,1112246667,134446788,12333456,113356899,11234477889,122234456... |
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/concat1_pkg.ads | best08618/asylo | 7 | 27155 | <gh_stars>1-10
package Concat1_Pkg is
function Ident (I : Integer) return Integer;
end Concat1_Pkg;
|
os/lib/k_time.asm | conorm110/KoalemOS | 0 | 247096 | <reponame>conorm110/KoalemOS
; Copyright (c) 2021, <NAME>
; All rights reserved.
; This source code is licensed under the BSD-style license found in the
; LICENSE file in the root directory of this source tree.
; Linking
global delay_cycle
; delay_cycle: delay one clk
;
; delays by one CPU cycle (nop)
; DO NOT USE ... |
test/interaction/Issue3020-2.agda | shlevy/agda | 1,989 | 8472 | <gh_stars>1000+
mutual
record R : Set₁ where
field
A : Set
B : Set
B = A
field
C : Set
D : Set
D = A → B → C
record S : Set₁ where
field
A : Set
B : Set
B = A
field
C : Set
D : Set
D = A → B → C
|
P6/data_P6_2/ALUTest68.asm | alxzzhou/BUAA_CO_2020 | 1 | 175956 | <gh_stars>1-10
ori $1,$4,29068
slti $3,$1,753
sw $5,4($0)
addu $0,$4,$3
sb $3,12($0)
addu $6,$4,$3
subu $3,$5,$3
sllv $1,$2,$3
lh $3,16($0)
srl $6,$4,3
addiu $1,$1,-32458
sltiu $3,$1,-20009
andi $4,$6,41370
srav $3,$5,$3
srlv $4,$4,$3
slt $4,$0,$3
srl $3,$3,25
lw $3,12($0)
subu $3,$5,$3
lhu $5,8($0)
subu $1,$3,$3
addu ... |
oeis/050/A050489.asm | neoneye/loda-programs | 11 | 5049 | ; A050489: a(n) = C(n)*(10n+1) where C(n)=Catalan numbers (A000108).
; Submitted by <NAME>(s4)
; 1,11,42,155,574,2142,8052,30459,115830,442442,1696396,6525246,25169452,97319900,377096040,1463921595,5692584870,22169259090,86452604700,337547269290,1319388204420,5162382341220,20217646564440,79246770753150,310866899505084,... |
src/features/editor/examples/keyboard_input.asm | exuanbo/samphire-ts | 0 | 27028 | <reponame>exuanbo/samphire-ts
; --------------------------------------
; Keyboard Input
; --------------------------------------
MOV BL, C0 ; Make BL point to video RAM
Loop:
IN 00 ; Wait for keyboard input
CMP AL, 0D ; Check if the key was Enter (Carriage Return)
JZ Done
MOV [BL], AL ; Copy the data in A... |
src/repository.ads | kraileth/ravenadm | 18 | 10271 | -- This file is covered by the Internet Software Consortium (ISC) License
-- Reference: ../License.txt
with Definitions; use Definitions;
package Repository is
-- returns True if CONSERVATIVE_UPGRADE option on host pkg(8) is enabled
function host_pkg8_conservative_upgrade_set return Boolean;
-- Create ... |
programs/oeis/120/A120206.asm | neoneye/loda | 22 | 175307 | <filename>programs/oeis/120/A120206.asm<gh_stars>10-100
; A120206: a(1)=5; a(n)=floor((49+sum(a(1) to a(n-1)))/9).
; 5,6,6,7,8,9,10,11,12,13,15,16,18,20,22,25,28,31,34,38,42,47,52,58,64,71,79,88,98,109,121,134,149,166,184,205,227,253,281,312
add $0,1
mov $2,7
lpb $0
sub $0,1
add $2,$1
mov $1,6
add $1,$2
div ... |
libsrc/_DEVELOPMENT/adt/p_forward_list/c/sdcc_iy/p_forward_list_front_fastcall.asm | meesokim/z88dk | 0 | 247559 |
; void *p_forward_list_front_fastcall(p_forward_list_t *list)
SECTION code_adt_p_forward_list
PUBLIC _p_forward_list_front_fastcall
_p_forward_list_front_fastcall:
INCLUDE "adt/p_forward_list/z80/asm_p_forward_list_front.asm"
|
programs/oeis/008/A008954.asm | neoneye/loda | 22 | 169 | <reponame>neoneye/loda
; A008954: Final digit of triangular number n*(n+1)/2.
; 0,1,3,6,0,5,1,8,6,5,5,6,8,1,5,0,6,3,1,0,0,1,3,6,0,5,1,8,6,5,5,6,8,1,5,0,6,3,1,0,0,1,3,6,0,5,1,8,6,5,5,6,8,1,5,0,6,3,1,0,0,1,3,6,0,5,1,8,6,5,5,6,8,1,5,0,6,3,1,0,0,1,3,6,0,5,1,8,6,5,5,6,8,1,5,0,6,3,1,0
sub $1,$0
bin $1,2
mod $1,10
mov $0,$1
|
oeis/118/A118415.asm | neoneye/loda-programs | 11 | 28524 | <filename>oeis/118/A118415.asm
; A118415: (4*n - 3) * 2^(n - 1).
; 1,10,36,104,272,672,1600,3712,8448,18944,41984,92160,200704,434176,933888,1998848,4259840,9043968,19136512,40370176,84934656,178257920,373293056,780140544,1627389952,3388997632,7046430720,14629732352,30333206528,62813896704,129922760704,268435456000,554... |
programs/oeis/084/A084630.asm | karttu/loda | 1 | 17968 | ; A084630: Floor(C(n+7,7)/C(n+5,5)).
; 1,1,1,2,2,3,3,4,5,5,6,7,8,9,10,11,12,13,14,15,16,18,19,20,22,23,25,26,28,30,31,33,35,37,39,41,43,45,47,49,51,53,56,58,60,63,65,68,70,73,76,78,81,84,87,90,93,96,99,102,105,108,111,115,118,121,125,128,132,135
mov $1,$0
add $1,7
bin $1,2
div $1,21
|
pin-3.22-98547-g7a303a835-gcc-linux/source/tools/Regvalue/fptag_conversion_app_asm.asm | ArthasZhang007/15418FinalProject | 0 | 18219 | <filename>pin-3.22-98547-g7a303a835-gcc-linux/source/tools/Regvalue/fptag_conversion_app_asm.asm
;
; Copyright (C) 2020-2020 Intel Corporation.
; SPDX-License-Identifier: MIT
;
include asm_macros.inc
PROLOGUE
PUBLIC FldzFunc
PUBLIC Fld1Func
PUBLIC FptagInitFunc
PUBLIC FldInfFunc
PUBLIC DoFnstenv
PUBLIC FstpFunc
.da... |
applescripts/tasks_for_perspective.applescript | jacobx1/of-sdk | 0 | 2812 | <filename>applescripts/tasks_for_perspective.applescript
#!/usr/bin/osascript
use AppleScript version "2.4" -- Yosemite (10.10) or later
use framework "Foundation"
use scripting additions
-- classes, constants, and enums used
property NSJSONWritingPrettyPrinted : a reference to 0
property NSJSONSerialization : a refe... |
src/wiki-render-wiki.ads | jquorning/ada-wiki | 18 | 157 | -----------------------------------------------------------------------
-- wiki-render-wiki -- Wiki to Wiki renderer
-- Copyright (C) 2015, 2016, 2020 <NAME>
-- Written by <NAME> (<EMAIL>)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with t... |
source/commands/gosub.asm | paulscottrobson/x16-basic | 1 | 17095 | <gh_stars>1-10
; *****************************************************************************
; *****************************************************************************
;
; Name : gosub.asm
; Purpose : X16-Basic Gosub & Return
; Author : <NAME> (<EMAIL>)
; Date : 8th February 2020
;
; *********************... |
libsrc/_DEVELOPMENT/string/c/sccz80/strtok.asm | Frodevan/z88dk | 640 | 92232 |
; char *strtok(char * restrict s1, const char * restrict s2)
SECTION code_clib
SECTION code_string
PUBLIC strtok
EXTERN asm_strtok
strtok:
pop bc
pop de
pop hl
push hl
push de
push bc
IF __CLASSIC && __CPU_GBZ80__
call asm_strtok
ld d,h
ld e,l
ret
ELSE
jp asm_strtok
ENDIF
; S... |
testsuite/league/TN-308/test_308.adb | svn2github/matreshka | 24 | 674 | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.