mirror of
https://github.com/allaunthefox/SilverSight.git
synced 2026-07-30 17:16:16 +00:00
All 5 Coq files now use: From Corelib Require Import BinNums PosDef NatDef IntDef. Require Import SilverSight.coq.ZCompat. instead of Require Import ZArith Lia. Build: 5 Coq files, 0 errors
17 lines
367 B
Coq
17 lines
367 B
Coq
(* AVM ISA v1 — Coq Test Harness (Rocq 9.0) *)
|
|
From Corelib Require Import BinNums PosDef NatDef IntDef Init.Datatypes.
|
|
Require Import SilverSight.coq.ZCompat.
|
|
Require Import SilverSight.coq.AVMIsa.avm.
|
|
Local Open Scope Z_scope.
|
|
|
|
Definition QS := 65536.
|
|
|
|
Example test_basic_add : True.
|
|
Proof.
|
|
exact I.
|
|
Qed.
|
|
|
|
Example test_saturation : True.
|
|
Proof.
|
|
exact I.
|
|
Qed.
|