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 |
|---|---|---|---|---|
test/asset/agda-stdlib-1.0/Data/Container/FreeMonad.agda | omega12345/agda-mode | 0 | 10577 | ------------------------------------------------------------------------
-- The Agda standard library
--
-- The free monad construction on containers
------------------------------------------------------------------------
{-# OPTIONS --without-K --safe --sized-types #-}
module Data.Container.FreeMonad where
open im... |
driver/src/clawfc/depscan/PreprocessorOutputSplitter.g4 | clementval/claw-compiler | 29 | 3071 | /*
* This file is released under terms of BSD license
* See LICENSE file for more information
* @author <NAME>
*/
/**
* ANTLR 4 Grammar file for the Preprocessed output splitter. Splits output text added by the preprocessor. Recognizes
* line markers.
*/
grammar PreprocessorOutputSplitter;
root: (non_preproc_lin... |
src/Tactic/Nat/Auto/Lemmas.agda | lclem/agda-prelude | 0 | 6230 |
module Tactic.Nat.Auto.Lemmas where
open import Prelude
open import Tactic.Nat.NF
open import Tactic.Nat.Exp
open import Container.Bag
open import Prelude.Nat.Properties
map++ : ∀ {a b} {A : Set a} {B : Set b} (f : A → B) (xs ys : List A) →
map f (xs ++ ys) ≡ map f xs ++ map f ys
map++ f [] ys = refl
map++... |
src/spread/act/file_load.asm | olifink/qspread | 0 | 10474 | <reponame>olifink/qspread<gh_stars>0
* Spreadsheet 11/03/92 O.Fink
* - file loading
include win1_keys_wwork
include win1_keys_wstatus
include win1_keys_qdos_io
include win1_keys_err
include win1_spread_keys
include win1_mac_oli
section prog
xdef fil_load
xref cfg_cgap,cfg_cal... |
lib/isa-l/crc/crc64_ecma_refl_by8.asm | fossabot/7bgzf | 1 | 21485 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Copyright(c) 2011-2016 Intel Corporation All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions
; are met:
; * Redistributions of so... |
wof/lcs/enemy/8E.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | 6 | 17485 | <reponame>zengfr/arcade_game_romhacking_sourcecode_top_secret_data
copyright zengfr site:http://github.com/zengfr/romhack
001590 lea ($20,A0), A0
003D14 move.w (A1)+, ($5e,A0) [enemy+8E]
003D76 move.w (A1)+, ($8e,A0) [enemy+A2]
003D7A move.l (A1)+, ($36,A0) [enemy+8E]
0079F2 move.w (A3)+, D1 [123p+ 8E, e... |
src/presets/14ice_data.asm | NobodyNada/sm_practice_hack | 0 | 641 | <reponame>NobodyNada/sm_practice_hack<filename>src/presets/14ice_data.asm<gh_stars>0
preset_14ice_crateria_ceres_elevator:
dw #$0000
dw $078D, $AB58 ; DDB
dw $079B, $DF45 ; MDB
dw $07F3, $002D ; Music Bank
dw $07F5, $0006 ; Music Track
dw $090F, $0000 ; Screen subpixel X position
dw $0... |
src/main/antlr/parser/backtrack/NameListWithParallelAssign.g4 | hengxin/tpdsl | 0 | 3353 | grammar NameListWithParallelAssign;
@header {
package parser.backtrack;
}
// [a, b = c, [d, [e = f]]]
// [a, b = c] = [d, [e = f]]
stat : list EOF
| assign EOF
;
assign : list '=' list ;
list : '[' elements ']' ;
elements : element (',' element)* ;
element : NAME '=' NAME
| NAME
| li... |
Task/Multiple-distinct-objects/Ada/multiple-distinct-objects-3.ada | LaudateCorpus1/RosettaCodeData | 1 | 1680 | <filename>Task/Multiple-distinct-objects/Ada/multiple-distinct-objects-3.ada
(1..N => V)
|
samples/alocal.asm | wilsonpilon/msx-menu | 0 | 169697 | <filename>samples/alocal.asm
; alocal.asm
; Test of autolocal mode in CP/M.
bdos equ 5
conout equ 2
start org 100h
jp _hola
_exit db "Good morning.\r\n", 0
_hola ld hl, _exit
call showtext
jp hola
showtext
_hola ld a, (hl)
cp 0
jp z, _exit
push hl
ld e, a
ld c, conout
call bdos... |
sw/552tests/inst_tests/jal_0.asm | JPShen-UWM/ThreadKraken | 1 | 89618 | // Original test: ./bolanows/hw4/problem6/jal_0.asm
// Author: bolanows
// Test source code follows
JAL 2 // Should jump to the target, PC = 4
Nop
Nop // PC = 4 Target
halt
|
src/ru/mephi/interpreter/generated/Lang.g4 | AVChkadua/interpreter | 1 | 7895 | grammar Lang;
@header {
package ru.mephi.interpreter.generated;
}
main: funcImpl+;
sentence: assign SEMI #Assigning
| forEach SEMI #ForEachCycle
| declarePointer SEMI #PointerDeclaration
| declareVariable SEMI #VariableDeclaration
| declareArray SEMI #ArrayDeclaration
| whileCycling #WhileCycle
... |
src/open_weather_map-client.ads | Jellix/open_weather_map_api | 1 | 3806 | <reponame>Jellix/open_weather_map_api
--------------------------------------------------------------------------------
-- Copyright (C) 2020 by Heisenbug Ltd. (<EMAIL>)
--
-- This work is free. You can redistribute it and/or modify it under the
-- terms of the Do What The Fuck You Want To Public License, Version 2,
... |
Formula.g4 | wpc009/antlr4-javascript-example | 0 | 4583 | grammar Formula;
// @header{
// package com.maxtropy.formula.core.base;
// }
// 计算式
formula :expr
;
expr :infixExpr
;
infixExpr :prefixExpr
|infixExpr scaling infixExpr
|infixExpr addition infixExpr
... |
bughunt_syscall_x64.asm | k0keoyo/KernelFuzzer | 377 | 93251 | <reponame>k0keoyo/KernelFuzzer
;.686P
;.MODEL FLAT, C
;.STACK 1000h
.CODE
bughunt_syscall PROC
; RCX -> arg1
; RDX -> arg2
; R8 -> arg3
; R9 -> arg4
push rbp ; prologue
mov rbp, rsp
sub rsp, 118h
mov rax, rcx ;
mov r10, rdx
mov rdx, r8
mov r8, r9
; mov rcx, [rbp + ... |
tests/004_XOR__AND_and_OR.asm | tpisto/pasm | 103 | 97032 | <reponame>tpisto/pasm
; name: XOR, AND and OR
; code: "30C820C008C831C821D109D16631C86621D16609D13501002501000D010081F1010081E1010081C9010030C820C008C86631C86621D16609D131C821D109D16635010066250100660D01006681F101006681E101006681C9010030C820C008C86631C86621D16609D131C821D109D14831C84821D14809D16635010066250100660D01006... |
prototyping/Examples/OpSem.agda | TheGreatSageEqualToHeaven/luau | 1 | 6540 | <reponame>TheGreatSageEqualToHeaven/luau
{-# OPTIONS --rewriting #-}
module Examples.OpSem where
open import Luau.OpSem using (_⊢_⟶ᴱ_⊣_; _⊢_⟶ᴮ_⊣_; subst)
open import Luau.Syntax using (Block; var; val; nil; local_←_; _∙_; done; return; block_is_end)
open import Luau.Heap using (∅)
ex1 : ∅ ⊢ (local (var "x") ← val ni... |
src/Categories/Category/Construction/Properties/Presheaves.agda | MirceaS/agda-categories | 0 | 9882 | {-# OPTIONS --without-K --safe #-}
module Categories.Category.Construction.Properties.Presheaves where
open import Categories.Category.Construction.Properties.Presheaves.Cartesian
using (module IsCartesian)
public
open import Categories.Category.Construction.Properties.Presheaves.CartesianClosed
using (module ... |
Projetos/J-VMTranslator/bin/nasm/SimpleGoto.nasm | gabrielvf1/Z01---Grupo-H | 0 | 17844 | <reponame>gabrielvf1/Z01---Grupo-H
; 0 - PUSH constant 5
leaw $5, %A
movw %A, %D
leaw $SP, %A
movw (%A), %A
movw %D, (%A)
leaw $SP, %A
movw (%A), %A
incw %A
movw %A, %D
leaw $SP, %A
movw %D, (%A)
; 1 - Goto Incondicional
leaw $scripts/../../I-VM/src/vmExamples/SimpleGoto-END2, %A
jmp
nop
; Label (marcador)
scripts/../.... |
prototyping/Examples.agda | TheGreatSageEqualToHeaven/luau | 1 | 7936 | <filename>prototyping/Examples.agda
{-# OPTIONS --rewriting #-}
module Examples where
import Examples.Syntax
import Examples.OpSem
import Examples.Run
import Examples.Type
|
add_by_referance.adb | kylelk/ada-examples | 1 | 3662 | <gh_stars>1-10
with Ada.integer_text_IO;
use Ada;
procedure add_by_referance is
procedure add(a, b: in Integer; c: out Integer) is
begin
c := a + b;
end add;
answer : Integer;
begin
add(3, 5, answer);
integer_text_IO.put(answer);
end add_by_referance;
|
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xa0.log_3_668.asm | ljhsiun2/medusa | 9 | 95767 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r8
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0xeaed, %r8
nop
inc %r10
mov (%r8), %si
nop
nop
nop
xor $34513, %r12
lea addresses_UC_ht+0x14045, %r8
nop
nop
add $23112, %rsi
mov $0x6162636465666768, %rbx
movq %rbx, %xmm6
vm... |
libsrc/_DEVELOPMENT/font/fzx/fonts/ao/Klausjahn/_ff_ao_Klausjahn.asm | jpoikela/z88dk | 640 | 94584 | <filename>libsrc/_DEVELOPMENT/font/fzx/fonts/ao/Klausjahn/_ff_ao_Klausjahn.asm
SECTION rodata_font
SECTION rodata_font_fzx
PUBLIC _ff_ao_Klausjahn
_ff_ao_Klausjahn:
BINARY "font/fzx/fonts/ao/Klausjahn/Klausjahn.fzx"
|
programs/oeis/291/A291662.asm | karttu/loda | 1 | 163544 | <filename>programs/oeis/291/A291662.asm
; A291662: Number of ordered rooted trees with 2n non-root nodes such that the maximal outdegree equals n.
; 1,1,8,53,326,1997,12370,77513,490306,3124541,20030000,129024469,834451788,5414950283,35240152706,229911617041,1503232609082,9847379391133,64617565719052,424655979547781,27... |
src/test/resources/testData/parse/live_samples/mail.scpt | stigger/AppleScript-IDEA | 18 | 4056 | <filename>src/test/resources/testData/parse/live_samples/mail.scpt
property theBusinessName:"This is just for me."
set the_subject to "Hourly report"
set the_content to return & return & "Email to : This is just for me." & return & return & "1 am : 6 ●●●●●●◆◆◆" & return & "2 am : 4 ●●●●◆◆" & return & "3 am : 5 ●●●●●◆... |
src/pipe_streams.ads | aeszter/sharepoint2ics | 0 | 22911 | with Input_Sources; use Input_Sources;
with Unicode;
with POSIX.IO; use POSIX.IO;
with POSIX.Process_Identification;
with POSIX; use POSIX;
package Pipe_Streams is
-- Stream read from a pipe, used to interface with xmlADA
type Pipe_Stream is new Input_Source with private;
Failed_Creation_Error : exception;
... |
oeis/142/A142007.asm | neoneye/loda-programs | 11 | 26692 | ; A142007: Primes congruent to 3 mod 31.
; Submitted by <NAME>
; 3,127,251,313,499,809,1181,1367,1429,1553,1801,1987,2111,2297,2731,2917,3041,3413,3847,4157,4219,4591,5087,5273,5521,6079,6203,6389,6451,6637,6761,6823,6947,7691,7753,7877,8311,8807,9241,9551,9613,9923,10357,10667,10729,10853,11287,11411,11597,11783,11969... |
libsrc/_DEVELOPMENT/adt/wv_priority_queue/z80/asm_wv_priority_queue_resize.asm | meesokim/z88dk | 0 | 23802 | <filename>libsrc/_DEVELOPMENT/adt/wv_priority_queue/z80/asm_wv_priority_queue_resize.asm
; ===============================================================
; Mar 2014
; ===============================================================
;
; int wv_priority_queue_resize(wv_priority_queue_t *q, size_t n)
;
; Attempt to resi... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_1576.asm | ljhsiun2/medusa | 9 | 92737 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x11965, %r12
nop
nop
nop
nop
xor %r11, %r11
mov $0x6162636465666768, %rdi
movq %rdi, %xmm3
and $0xffffffffffffffc0, %r12
vmovaps %ymm3, (%r12)
nop
nop
nop
nop
nop
inc %rax
lea... |
Categories/Agda/ISetoids/Complete.agda | copumpkin/categories | 98 | 3313 | <reponame>copumpkin/categories
module Categories.Agda.ISetoids.Complete where
open import Level
open import Relation.Binary using (Setoid; module Setoid; Preorder; module Preorder; Rel; _=[_]⇒_)
open import Data.Product using (Σ; _,_; proj₁; proj₂)
open import Categories.Support.IProduct
-- import Relation.Binary.EqRe... |
Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0x84_notsx.log_21829_28.asm | ljhsiun2/medusa | 9 | 80257 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r14
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x13438, %rdx
clflush (%rdx)
nop
nop
nop
nop
nop
xor %r14, %r14
movb $0x61, (%rdx)
sub %r12, %r12
lea addresses_WT_ht+0xbba4, %rsi
lea addresses_D_ht... |
thirdparty/adasdl/thin/adasdl/AdaSDL_mixer/sdl_mixer.adb | Lucretia/old_nehe_ada95 | 0 | 10697 |
-- ----------------------------------------------------------------- --
-- ASDL_Mixer --
-- Binding to SDL mixer lib --
-- Copyright (C) 2001 A.M.F.Vargas --
-- <NAME> ... |
Cubical/HITs/CumulativeHierarchy/Base.agda | thomas-lamiaux/cubical | 1 | 17333 | {-# OPTIONS --safe #-}
{-
This file models "ZF - powerset" in cubical agda, via a cumulative hierarchy, in the sense given
in the HoTT book §10.5 "The cumulative hierarchy".
A great amount of inspiration is taken from the Coq implementations found in
<NAME>, Modeling set theory in homotopy type theory, code of which c... |
alloy4fun_models/trainstlt/models/5/2Z7ppb6FjBhAtRaF5.als | Kaixi26/org.alloytools.alloy | 0 | 2899 | <filename>alloy4fun_models/trainstlt/models/5/2Z7ppb6FjBhAtRaF5.als<gh_stars>0
open main
pred id2Z7ppb6FjBhAtRaF5_prop6 {
always Signal in Green and after no Green' or no Green and Signal in Green'
}
pred __repair { id2Z7ppb6FjBhAtRaF5_prop6 }
check __repair { id2Z7ppb6FjBhAtRaF5_prop6 <=> prop6o } |
test/Succeed/ProjectionLikeAndConstructorHeaded.agda | cruhland/agda | 1,989 | 13059 | {- Constructor-headedness and projection-likeness don't play well
together. Unless they are kept apart or their differences can
be reconciled this example will leave unsolved metas. The problem
is that invoking constructor-headedness on a projection-like
the dropped arguments won't be checked (or rather, th... |
attic/asis/find_entities/adam-assist-query-find_entities-unit_processing.ads | charlie5/aIDE | 3 | 29136 | with
Asis;
package AdaM.Assist.Query.find_Entities.unit_Processing
is
procedure Process_Unit (The_Unit : in Asis.Compilation_Unit);
end AdaM.Assist.Query.find_Entities.unit_Processing;
|
src/main.asm | QuinnPainter/GameBoyFullScreen | 0 | 10702 | INCLUDE "hardware.inc"
SECTION "Image", ROM0
INCBIN "obj/image.2bpp"
SECTION "MainCode", ROM0
ASSERT SIZEOF("Image") <= ((160 * 144 * 2) / 8), "Image is too large! Needs to be 160 x 144"
EntryPoint::
ld sp, $E000 ; Set the stack pointer to the top of RAM to free up HRAM
; Turn off the LCD
.waitVBlank:
ld a,... |
programs/oeis/045/A045809.asm | karttu/loda | 0 | 103955 | <reponame>karttu/loda
; A045809: 9-ish numbers (end in 13, 37, 59, 91).
; 13,37,59,91,113,137,159,191,213,237,259,291,313,337,359,391,413,437,459,491,513,537,559,591,613,637,659,691,713,737,759,791,813,837,859,891,913,937,959,991,1013,1037,1059,1091,1113,1137,1159,1191,1213,1237,1259,1291,1313,1337,1359,1391,1413,1437,... |
count.asm | haniyehnasseri/xv6SystemCalls | 0 | 179970 | <gh_stars>0
_count: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "stat.h"
#include "user.h"
#include "fcntl.h"
int main(int argc,char* argv[]){
0: 8d 4c 24 04 lea 0x4(%esp),%ecx
4: 83 e4 f0 and $0xfffffff0,%esp
7: ff 71 fc pu... |
tools/src/excel_writer/ieee_754-generic_double_precision.adb | fjudith/sql-benchmark | 24 | 1928 | -- --
-- package Copyright (c) <NAME> --
-- IEEE_754.Generic_Double_Precision Luebeck --
-- Implementation Summer, 2008 --
-- ... |
test_expr/grammars/TestParser.g4 | exhu/miod | 1 | 489 | parser grammar TestParser;
options {tokenVocab = TestLexer;}
compUnit: statement+;
/*
bareName: ID | SETTER | GETTER;
qualifName: NAMESPACE_SEP? qualifNameTxt;
qualifNameOnly: NAMESPACE_SEP? qualifNameOnlyTxt;
qualifNameTxt: bareName (NAMESPACE_SEP bareName)*;
qualifNameOnlyTxt: bareName (NAMESPACE_SEP bareName)+;
... |
Cubical/Algebra/DistLattice/BigOps.agda | dolio/cubical | 0 | 17029 | <reponame>dolio/cubical<filename>Cubical/Algebra/DistLattice/BigOps.agda
-- define ⋁ and ⋀ as the bigOps of a Ring when interpreted
-- as an additive/multiplicative monoid
{-# OPTIONS --safe #-}
module Cubical.Algebra.DistLattice.BigOps where
open import Cubical.Foundations.Prelude
open import Cubical.Foundations.Fun... |
L1/TPs/0204-ASM/tp1/cond3.asm | Tehcam/Studies | 0 | 168199 | <filename>L1/TPs/0204-ASM/tp1/cond3.asm
; Initialisation
In ; valeur a (0)
Store Mem[0] ; (1)
In ; valeur b (2)
; Traitement
CMP Mem[0] ; test a-b (3)
JC 7 ; si a < b aller à l'instruction 7 (4)
; Sinon
Load 1 ; (5)
JMP 8; puis aller à la fin du programme (6)
; Alors
Load 0 ; (7)
; Fin du programme
Out ; affiche... |
util/menus/info.asm | olifink/smsqe | 0 | 90176 | ; Get various defaults from Menu INFO call 1997 <NAME>
section utility
include dev8_mac_xref
include dev8_keys_menu
include dev8_keys_err
include dev8_keys_thg
include dev8_keys_qlv
xdef mu_getdef ; get various defaults
;+++
; Get various defaults from Menu INFO call (requires Menu 7.02 or higher)
;
; Entr... |
AKKUSCHRAUBER.asm | Grima04/Akkuschrauber | 0 | 98119 | ; ***********************************************************
; * Akkuschrauber Code: *
; * 4-stufiger Akkuschrauber mit 3 Eindrehgeschwindigkeiten *
; * und 1 Rausdrehgeschwindigkeit *
; * Modi: 20 RPM, 40RPM, 60 RPM, -20 RPM *
; * E... |
oeis/155/A155132.asm | neoneye/loda-programs | 11 | 20382 | ; A155132: a(n) = 8*a(n-1) + 8*a(n-2), n > 2, a(0)=1, a(1)=7, a(2)=63.
; Submitted by <NAME>
; 1,7,63,560,4984,44352,394688,3512320,31256064,278147072,2475225088,22026977280,196017618944,1744356769792,15522995109888,138138815037440,1229294481178624,10939466369728512,97350086807257088,866316425415884800,7709332097785135... |
gfx/pokemon/eevee/anim_idle.asm | Dev727/ancientplatinum | 28 | 80287 | <reponame>Dev727/ancientplatinum
setrepeat 3
frame 0, 05
frame 5, 05
dorepeat 1
frame 0, 09
frame 5, 13
endanim
|
Cats/Profunctor.agda | alessio-b-zak/cats | 0 | 14481 | module Cats.Profunctor where
open import Data.Product using (_,_)
open import Level using (suc ; _⊔_)
open import Cats.Category
open import Cats.Category.Op using (_ᵒᵖ)
open import Cats.Category.Product.Binary using (_×_)
open import Cats.Category.Setoids using (Setoids)
open import Cats.Functor
import Cats.Category... |
_build/dispatcher/jmp_ippsGFpECPointInit_9a4f0ce2.asm | zyktrcn/ippcp | 1 | 13180 | <reponame>zyktrcn/ippcp<filename>_build/dispatcher/jmp_ippsGFpECPointInit_9a4f0ce2.asm
extern m7_ippsGFpECPointInit:function
extern n8_ippsGFpECPointInit:function
extern y8_ippsGFpECPointInit:function
extern e9_ippsGFpECPointInit:function
extern l9_ippsGFpECPointInit:function
extern n0_ippsGFpECPointInit:function
exter... |
alloy4fun_models/trashltl/models/15/tX8KRM22NLQdtNnEQ.als | Kaixi26/org.alloytools.alloy | 0 | 1883 | <reponame>Kaixi26/org.alloytools.alloy
open main
pred idtX8KRM22NLQdtNnEQ_prop16 {
always all f:File | f in Protected implies f in Protected'
}
pred __repair { idtX8KRM22NLQdtNnEQ_prop16 }
check __repair { idtX8KRM22NLQdtNnEQ_prop16 <=> prop16o } |
programs/oeis/132/A132030.asm | neoneye/loda | 22 | 28087 | <reponame>neoneye/loda
; A132030: a(n) = Product_{k=0..floor(log_6(n))} floor(n/6^k), n>=1.
; 1,2,3,4,5,6,7,8,9,10,11,24,26,28,30,32,34,54,57,60,63,66,69,96,100,104,108,112,116,150,155,160,165,170,175,216,222,228,234,240,246,294,301,308,315,322,329,384,392,400,408,416,424,486,495,504,513,522,531,600,610,620,630,640,650... |
libtool/src/gmp-6.1.2/mpn/x86_64/sublsh1_n.asm | kroggen/aergo | 1,602 | 100451 | dnl AMD64 mpn_sublsh1_n -- rp[] = up[] - (vp[] << 1)
dnl Copyright 2003, 2005-2007, 2011, 2012 Free Software Foundation, Inc.
dnl This file is part of the GNU MP Library.
dnl
dnl The GNU MP Library is free software; you can redistribute it and/or modify
dnl it under the terms of either:
dnl
dnl * the GNU Less... |
Override/IntelFsp2Pkg/FspSecCore/Ia32/FspApiEntryS.nasm | LeeLeahy/quarkfsp | 2 | 170903 | ;; @file
; Provide FSP API entry points.
;
; Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
; This program and the accompanying materials are licensed and made available
; under the terms and conditions of the BSD License which accompanies this
; distribution. The full text of the license may b... |
cat.asm | AlonYeroushalmi/Assignment_1 | 0 | 101995 |
_cat: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
}
}
int
main(int argc, char *argv[])
{
0: 8d 4c 24 04 lea 0x4(%esp),%ecx
4: 83 e4 f0 and $0xfffffff0,%esp
7: ff 71 fc pushl -0x4(%ecx)
a: 55 push %ebp
b: ... |
programs/oeis/219/A219029.asm | jmorken/loda | 1 | 13977 | <filename>programs/oeis/219/A219029.asm
; A219029: n - 1 - phi(phi(n)).
; -1,0,1,2,2,4,4,5,6,7,6,9,8,11,10,11,8,15,12,15,16,17,12,19,16,21,20,23,16,25,22,23,24,25,26,31,24,31,30,31,24,37,30,35,36,35,24,39,36,41,34,43,28,47,38,47,44,45,30,51,44,53,50,47,48,57,46,51,48,61,46,63,48,61,58,63,60,69,54,63,62,65,42,75,52,73,6... |
MASM_Practice/51_ASCII_Uncompressed_Decimal_Operation.asm | TuringGu/RELearning | 0 | 6151 | <gh_stars>0
.586
.MODEL flat,stdcall
option casemap:none
include windows.inc
include user32.inc
include kernel32.inc
include msvcrt.inc
includelib user32.lib
includelib kernel32.lib
includelib msvcrt.lib
.data
val01 byte '8'
val02 byte '9'
.code
main PROC
;AAA
mov ah,0
mov al,'8' ;al = 00111000
add al,'2' ... |
kernel.asm | brian19991119/changbri_project4_frq | 0 | 104294 | <gh_stars>0
kernel: file format elf32-i386
Disassembly of section .text:
80100000 <multiboot_header>:
80100000: 02 b0 ad 1b 00 00 add 0x1bad(%eax),%dh
80100006: 00 00 add %al,(%eax)
80100008: fe 4f 52 decb 0x52(%edi)
8010000b: e4 .byte 0xe4
8010000c <... |
programs/oeis/010/A010863.asm | neoneye/loda | 22 | 243800 | ; A010863: Constant sequence: a(n) = 24.
; 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24
mov $0,24
|
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-tasloc.ads | djamal2727/Main-Bearing-Analytical-Model | 0 | 26275 | <gh_stars>0
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- ... |
VineScript/Compiler/VineLexer.g4 | julsam/vinescript | 2 | 4426 | <reponame>julsam/vinescript<filename>VineScript/Compiler/VineLexer.g4
lexer grammar VineLexer;
@header {
using System;
}
@members{
//public override IToken Emit(){
// switch (_type) {
// case RESERVED_CHARS:
// //setType(RESERVED_CHARS);
// IToken result = base.Emit(... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_5_1305.asm | ljhsiun2/medusa | 9 | 16354 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r8
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0xaecb, %rsi
lea addresses_UC_ht+0x177cb, %rdi
clflush (%rdi)
nop
cmp $51053, %rax
mov $34, %rcx
rep movsw
nop
add $65420, %r13
lea addresses_norm... |
programs/oeis/037/A037665.asm | neoneye/loda | 22 | 26770 | ; A037665: Base 9 digits are, in order, the first n terms of the periodic sequence with initial period 3,1,0.
; 3,28,252,2271,20440,183960,1655643,14900788,134107092,1206963831,10862674480,97764070320,879876632883,7918889695948,71270007263532,641430065371791,5772870588346120,51955835295115080,467602517656035723,4208422... |
oeis/157/A157288.asm | neoneye/loda-programs | 11 | 241599 | ; A157288: a(n) = 10368*n^2 - 288*n + 1.
; 10081,40897,92449,164737,257761,371521,506017,661249,837217,1033921,1251361,1489537,1748449,2028097,2328481,2649601,2991457,3354049,3737377,4141441,4566241,5011777,5478049,5965057,6472801,7001281,7550497,8120449,8711137,9322561,9954721,10607617,11281249,11975617,12690721,13426... |
testsuite/ubivm/expected/method_5.asm | alexgarzao/UOP | 0 | 105276 | <filename>testsuite/ubivm/expected/method_5.asm<gh_stars>0
Entity start
No options
Constants
0 S start
1 I 1
2 S um
3 I 2
4 S dois
5 S x
6 S number1
7 S msg1
8 S number2
9 S msg2
10 S number1=
11 S msg1=
12 I 4
13 S io.writeln
14 S number2=
15 S msg2=
End
Valid context (always)
No... |
Transynther/x86/_processed/NC/_ht_zr_un_/i3-7100_9_0xca_notsx.log_21829_13.asm | ljhsiun2/medusa | 9 | 100338 | <filename>Transynther/x86/_processed/NC/_ht_zr_un_/i3-7100_9_0xca_notsx.log_21829_13.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r13
push %r14
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x40e, %r13
add $35756, %rdi
mov $0x6162636465666768, %r14
movq %r14, %xmm6
movups %xmm6, (%r13)... |
src/title.asm | santiontanon/talesofpopolon-ext | 4 | 240484 | ;-----------------------------------------------
; Title screen loop
TitleScreen_Loop:
call StopPlayingMusic
call clearScreenLeftToRight
;; 16x16 sprites:
ld bc,#e201 ;; write #e2 in VDP register #01 (activate sprites, generate interrupts, 16x16 sprites with no magnification)
call WRTVDP
; re... |
Software/Relay-Timer/List/Timer Relay.asm | ekorudiawan/Relay-Timer | 0 | 96691 | <reponame>ekorudiawan/Relay-Timer
;CodeVisionAVR C Compiler V2.05.0 Professional
;(C) Copyright 1998-2010 <NAME>, HP InfoTech s.r.l.
;http://www.hpinfotech.com
;Chip type : ATmega8535
;Program type : Application
;Clock frequency : 16.000000 MHz
;Memory model : S... |
theorems/cw/Degree.agda | cmknapp/HoTT-Agda | 0 | 8909 | <reponame>cmknapp/HoTT-Agda<filename>theorems/cw/Degree.agda
{-# OPTIONS --without-K #-}
open import HoTT
open import cw.CW
open import homotopy.PinSn
module cw.Degree
{i} {n : ℕ} (skel : Skeleton {i} (S (S n)))
(skel-has-dec-cells : has-dec-cells skel)
(skel-is-aligned : is-aligned skel)
-- the cells at the ... |
modules/clearDisplay.asm | antuniooh/assembly-calculator | 2 | 179867 | clearDisplay:
CLR RS
CLR P1.7
CLR P1.6
CLR P1.5
CLR P1.4
SETB EN
CLR EN
CLR P1.7
CLR P1.6
CLR P1.5
SETB P1.4
SETB EN
CLR EN
CALL delay
RET
|
src/dump.asm | merlin1337/reg-dump | 0 | 102927 | CPU 386
BITS 16
ORG 0x7C00
;-----------------------------------
; CODE
;-----------------------------------
; Multipush
%imacro push 1-*
%rep %0
push %1
%rotate 1
%endrep
%endmacro
; Printf helper
%imacro printf 1-*
%if %0 > 1
push %{-1:2}
%endif
push %1
call _pri... |
.emacs.d/elpa/ada-mode-5.3.1/gps_source/config.ads | caqg/linux-home | 0 | 19236 | -----------------------------------------------------------------------
-- G P S --
-- --
-- Copyright (C) 2001-2010, AdaCore --
-- ... |
agda/SList.agda | bgbianchi/sorting | 6 | 5897 | <reponame>bgbianchi/sorting
{-# OPTIONS --sized-types #-}
module SList (A : Set) where
open import Data.List
open import Data.Product
open import Size
data SList : {ι : Size} → Set where
snil : {ι : Size}
→ SList {↑ ι}
_∙_ : {ι : Size}(x : A)
→ SList {ι}
... |
alloy4fun_models/trashltl/models/9/P4mbELqFA6Q7YbQbG.als | Kaixi26/org.alloytools.alloy | 0 | 3970 | open main
pred idP4mbELqFA6Q7YbQbG_prop10 {
always (all f:Protected | always f in Protected)
}
pred __repair { idP4mbELqFA6Q7YbQbG_prop10 }
check __repair { idP4mbELqFA6Q7YbQbG_prop10 <=> prop10o } |
oeis/004/A004516.asm | neoneye/loda-programs | 11 | 82882 | ; A004516: Generalized nim sum n + n in base 6.
; Submitted by <NAME>(w1)
; 0,2,4,0,2,4,12,14,16,12,14,16,24,26,28,24,26,28,0,2,4,0,2,4,12,14,16,12,14,16,24,26,28,24,26,28,72,74,76,72,74,76,84,86,88,84,86,88,96,98,100,96,98,100,72,74,76,72
mov $3,1
lpb $0
mov $2,$0
div $0,6
mod $2,3
mul $2,$3
add $1,$2
mul... |
programs/oeis/313/A313510.asm | jmorken/loda | 1 | 243255 | <gh_stars>1-10
; A313510: Coordination sequence Gal.3.13.3 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings.
; 1,5,10,14,18,23,28,33,38,42,46,51,56,61,66,70,74,79,84,89,94,98,102,107,112,117,122,126,130,135,140,145,150,154,158,163,168,17... |
maps/EcruteakTinTowerEntrance.asm | Dev727/ancientplatinum | 28 | 102374 | object_const_def ; object_event constants
const ECRUTEAKTINTOWERENTRANCE_SAGE1
const ECRUTEAKTINTOWERENTRANCE_SAGE2
const ECRUTEAKTINTOWERENTRANCE_SAGE3
const ECRUTEAKTINTOWERENTRANCE_GRAMPS
EcruteakTinTowerEntrance_MapScripts:
db 2 ; scene scripts
scene_script .DummyScene0 ; SCENE_DEFAULT
scene_script .DummyS... |
src/vulkan-math/gentype/vulkan-math-gentype.adb | zrmyers/VulkanAda | 1 | 26542 | <gh_stars>1-10
--------------------------------------------------------------------------------
-- MIT License
--
-- Copyright (c) 2020 <NAME>
--
-- Permission is hereby granted, free of charge, to any person obtaining a copy
-- of this software and associated documentation files (the "Software"), to deal
-- in the Sof... |
oeis/158/A158627.asm | neoneye/loda-programs | 11 | 162330 | <filename>oeis/158/A158627.asm
; A158627: a(n) = 484*n^2-22.
; Submitted by <NAME>
; 462,1914,4334,7722,12078,17402,23694,30954,39182,48378,58542,69674,81774,94842,108878,123882,139854,156794,174702,193578,213422,234234,256014,278762,302478,327162,352814,379434,407022,435578,465102,495594,527054,559482,592878,627242,66... |
tier-1/fann/source/thin/fann_c-pointers.ads | charlie5/cBound | 2 | 25542 | -- This file is generated by SWIG. Please do *not* modify by hand.
--
with interfaces.C;
package fann_c.Pointers is
-- FILE_Pointer
--
type FILE_Pointer is access all fann_c.FILE;
-- FILE_Pointers
--
type FILE_Pointers is array (interfaces.C.Size_t range <>) of aliased fann_c.Pointers.FILE_Po... |
Cubical/Algebra/RingSolver/AlmostRing.agda | dan-iel-lee/cubical | 0 | 5255 | <reponame>dan-iel-lee/cubical
{-# OPTIONS --cubical --no-import-sorts --safe #-}
module Cubical.Algebra.RingSolver.AlmostRing where
open import Cubical.Foundations.Prelude
open import Cubical.Data.Sigma
open import Cubical.Data.Nat using (ℕ)
open import Cubical.Algebra.Semigroup
open import Cubical.Algebra.Monoid
op... |
Testing Scripts/Trackpad Test/Source/Trackpad Test.applescript | freegeek-pdx/macOS-Testing-and-Deployment-Scripts | 0 | 4443 | <reponame>freegeek-pdx/macOS-Testing-and-Deployment-Scripts<filename>Testing Scripts/Trackpad Test/Source/Trackpad Test.applescript
-- By: <NAME>
-- For: MacLand @ Free Geek
--
-- MIT License
--
-- Copyright (c) 2021 Free Geek
--
-- Permission is hereby granted, free of charge, to any person obtaining a copy of this so... |
include/sf-audio-soundbuffer.adb | Fabien-Chouteau/ASFML | 0 | 3857 | with Interfaces.C.Strings;
package body Sf.Audio.SoundBuffer is
use Interfaces.C.Strings;
--//////////////////////////////////////////////////////////
--/ Create a new sound buffer and load it from a file
--/
--/ @param Filename Path of the music file to open
--/
--/ @return A new sfSoundBuffer... |
3/HelloWorld.asm | 91fc7b/SLAE64 | 0 | 25945 | <reponame>91fc7b/SLAE64
global _start
section .text
_start:
xor rax, rax
add rax, 1
mov rdi, rax
push 0x0a646c72
mov rbx, 0x6f57206f6c6c6548
push rbx
mov rsi, rsp
xor rdx, rdx
add rdx, 12
syscall
xor rax, rax
add rax, 60
xor rdi, rdi
syscall
|
source/phase_vertex_cc.asm | stanford-mast/Grazelle-PPoPP18 | 19 | 15774 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Grazelle
; High performance, hardware-optimized graph processing engine.
; Targets a single machine with one or more x86-based sockets.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Authored b... |
examples/hash_single/demo_ada.adb | jrmarino/libsodium-ada | 10 | 7081 | <reponame>jrmarino/libsodium-ada<filename>examples/hash_single/demo_ada.adb
with Sodium.Functions; use Sodium.Functions;
with Ada.Text_IO; use Ada.Text_IO;
procedure Demo_Ada
is
message : constant String := "Arbitrary text to hash";
key : constant String := "123456789 123456789 123456789 12";
begin
if not... |
src/dnsc/dnsc.adb | DNSCatcher/DNSCatcher | 4 | 13396 | <filename>src/dnsc/dnsc.adb
-- Copyright 2019 <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, co... |
awa/plugins/awa-tags/src/model/awa-tags-models.ads | My-Colaborations/ada-awa | 81 | 18663 | -----------------------------------------------------------------------
-- AWA.Tags.Models -- AWA.Tags.Models
-----------------------------------------------------------------------
-- File generated by ada-gen DO NOT MODIFY
-- Template used: templates/model/package-spec.xhtml
-- Ada Generator: https://ada-gen.goog... |
oeis/236/A236218.asm | neoneye/loda-programs | 11 | 87287 | ; A236218: Sum of the twelfth powers of the first n primes.
; Submitted by <NAME>(s4)
; 4096,535537,244676162,14085963363,3152514340084,26450599462565,609072836692326,2822387755758487,24737012187778808,378551795393247849,1166214579181797610,7749166585021832891,30312656885388018972,70272287682650595373,18646377079159917... |
Sources/Student_Packages/vehicle_task_type.ads | ForYouEyesOnly/Space-Convoy | 1 | 21000 | <filename>Sources/Student_Packages/vehicle_task_type.ads
with Ada.Task_Identification; use Ada.Task_Identification;
with Ada.Containers.Hashed_Sets; use Ada.Containers;
-- Author : <NAME>
-- u_id : u6251843
package Vehicle_Task_Type is
task type Vehicle_Task is
entry Identify (Set_Vehicle_No : Positive; Loc... |
zombie.asm | jhyunleehi/xv6-public | 0 | 241167 | <reponame>jhyunleehi/xv6-public
_zombie: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "stat.h"
#include "user.h"
int
main(void)
{
0: f3 0f 1e fb endbr32
4: 8d 4c 24 04 lea 0x4(%esp),%ecx
8: 83 e4 f0 and $0xfffffff0,%esp
b: ff... |
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-ssvety.ads | djamal2727/Main-Bearing-Analytical-Model | 0 | 1124 | <filename>Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-ssvety.ads<gh_stars>0
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS ... |
src/asm/general.asm | Threetwosevensixseven/espupdate | 8 | 8558 | <filename>src/asm/general.asm
; general.asm
; Copyright 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
;
; Unless required by... |
programs/oeis/224/A224923.asm | karttu/loda | 0 | 160722 | ; A224923: Sum_{i=0..n} Sum_{j=0..n} (i XOR j), where XOR is the binary logical exclusive-or operator.
; 0,2,12,24,68,114,168,224,408,594,788,984,1212,1442,1680,1920,2672,3426,4188,4952,5748,6546,7352,8160,9096,10034,10980,11928,12908,13890,14880,15872,18912,21954,25004,28056,31140,34226,37320,40416,43640,46866,50100,5... |
Microsoft Word for Windows Version 1.1a/Word 1.1a CHM Distribution/Opus/asm/fetch2n.asm | lborgav/Historical-Source-Codes | 7 | 169499 | include w2.inc
include noxport.inc
include consts.inc
include structs.inc
createSeg fetch2_PCODE,fetch2,byte,public,CODE
; DEBUGGING DECLARATIONS
ifdef DEBUG
midFetch2n equ 24 ; module ID, for native asserts
endif
; EXTERNAL FUNCTIONS
ifdef DEBUG
externFP <Scr... |
nasm assembly/library/read_array.asm | AI-Factor-y/NASM-library | 0 | 23060 | <reponame>AI-Factor-y/NASM-library<filename>nasm assembly/library/read_array.asm
read_array:
; usage
;-------
; 1: base address of array in ebx mov ebx, array
; 2: size of array in n
push rax ; push all
push rbx
push rcx
mov eax ,0
read_loop:
cmp eax,dword[n]
je end_read_1
push rax
push rbx
c... |
programs/oeis/265/A265127.asm | neoneye/loda | 22 | 7556 | ; A265127: a(n) = prime(n) * 2^n.
; 4,12,40,112,352,832,2176,4864,11776,29696,63488,151552,335872,704512,1540096,3473408,7733248,15990784,35127296,74448896,153092096,331350016,696254464,1493172224,3254779904,6777995264,13824425984,28722593792,58518929408,121332826112
seq $0,110295 ; a(n) = prime(n)*2^(n-1).
mul $0,2
|
source/strings/a-suegst.adb | ytomino/drake | 33 | 26676 | <reponame>ytomino/drake<filename>source/strings/a-suegst.adb
with Ada.Exception_Identification.From_Here;
with Ada.Strings.UTF_Encoding.Conversions;
with System.UTF_Conversions;
package body Ada.Strings.UTF_Encoding.Generic_Strings is
use Exception_Identification.From_Here;
generic
type UTF_Character_Type ... |
programs/oeis/008/A008728.asm | neoneye/loda | 22 | 82691 | <filename>programs/oeis/008/A008728.asm
; A008728: Molien series for 3-dimensional group [2,n ] = *22n.
; 1,2,3,4,5,6,7,8,9,10,12,14,16,18,20,22,24,26,28,30,33,36,39,42,45,48,51,54,57,60,64,68,72,76,80,84,88,92,96,100,105,110,115,120,125,130,135,140,145,150,156,162,168,174,180,186,192,198,204,210,217,224,231,238,245,25... |
SOURCE ASM FILES/FPSHack_TEST_SlowHookShotIn.asm | Meowmaritus/Wind-Waker-60FPS-Hack | 14 | 5935 | #To be inserted at 800f2620
###############################
##FPSHack_TEST_SlowHookShotIn##
###############################
lis r17, 0x817F
lfs f17, 0x0004 (r17) #Load FloatSlowdown
lfs f0, -0x5EE8 (rtoc) #Vanilla
fmuls f0, f0, f17 |
programs/clock.asm | informer2016/MichalOS | 0 | 23671 | <filename>programs/clock.asm<gh_stars>0
; ------------------------------------------------------------------
; MichalOS Clock
; ------------------------------------------------------------------
BITS 16
%INCLUDE "michalos.inc"
ORG 100h
start:
call .draw_background
call os_hide_cursor
.timeloop:
clc
mov ah, ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.