b6bd281c3a
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
28 lines
761 B
Text
28 lines
761 B
Text
/* -*- P4_16 -*- */
|
|
#ifndef CHECKSUMS_P4
|
|
#define CHECKSUMS_P4
|
|
|
|
#include <core.p4>
|
|
#include <v1model.p4>
|
|
|
|
#include "headers.p4"
|
|
|
|
/*************************************************************************
|
|
************* C H E C K S U M V E R I F I C A T I O N *************
|
|
*************************************************************************/
|
|
|
|
control MyVerifyChecksum(inout headers hdr, inout metadata meta) {
|
|
apply {}
|
|
}
|
|
|
|
/*************************************************************************
|
|
************** C H E C K S U M C O M P U T A T I O N **************
|
|
*************************************************************************/
|
|
|
|
control MyComputeChecksum(inout headers hdr, inout metadata meta) {
|
|
apply {
|
|
}
|
|
}
|
|
|
|
|
|
#endif
|