Deleted deprecated proof header.

This commit is contained in:
Tobias Reinhard 2022-12-28 10:13:20 -05:00
parent 04ab514f31
commit 11ab1a02b7
2 changed files with 0 additions and 20 deletions

View file

@ -1,19 +0,0 @@
#ifndef VERIFAST_RP2040_AXIOMS_H
#define VERIFAST_RP2040_AXIOMS_H
#include "stdint.h"
/*
* The lemmas in this file axiomatize that the RP2040 architecture uses
* 32bit pointers.
*/
/*@
// Axiomatizes that: 0 <= ptr <= 2^32 - 1
lemma void ptr_range(void* ptr);
requires true;
ensures (void*) 0 <= ptr &*& ptr <= (void*) 4294967295;
@*/
#endif

View file

@ -78,7 +78,6 @@
#include "stack_predicates.h"
#include "task_predicates.h"
#include "ready_list_predicates.h"
#include "verifast_RP2040_axioms.h"
#include "asm.h"
#include "port_contracts.h"
#include "lock_predicates.h"