diff --git a/lib/include/prjxray/xilinx/xc7series/nop_packet.h b/lib/include/prjxray/xilinx/xc7series/nop_packet.h new file mode 100644 index 00000000..65339883 --- /dev/null +++ b/lib/include/prjxray/xilinx/xc7series/nop_packet.h @@ -0,0 +1,24 @@ +#ifndef PRJXRAY_LIB_XILINX_XC7SERIES_NOP_PACKET_H +#define PRJXRAY_LIB_XILINX_XC7SERIES_NOP_PACKET_H + +#include +#include + +namespace prjxray { +namespace xilinx { +namespace xc7series { + +class NopPacket : public ConfigurationPacket { + public: + NopPacket() + : ConfigurationPacket(1, + Opcode::NOP, + ConfigurationRegister::CRC, + {}) {} +}; + +} // namespace xc7series +} // namespace xilinx +} // namespace prjxray + +#endif // PRJXRAY_LIB_XILINX_XC7SERIES_NOP_PACKET_H