blob: 8eee1c085cd05d666052645c6ee5bc0cc536f3f9 [file] [log] [blame]
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
use structopt::StructOpt;
use opentitanlib::app::command::CommandDispatch;
#[derive(Debug, StructOpt, CommandDispatch)]
/// Commands for interacting with an FPGA instance.
pub enum FpgaCommand {
LoadBitstream(crate::command::load_bitstream::LoadBitstream),
SetPll(crate::command::set_pll::SetPll),
}