v10_0_3.go 456 B

123456789101112131415161718192021222324252627
  1. package qemu
  2. func init() {
  3. RegisterCmd(
  4. newCmd_10_0_3_riscv64(),
  5. )
  6. }
  7. type opt_1003_riscv64 struct {
  8. *baseOptions_riscv64
  9. *baseOptions_ge_310
  10. }
  11. func newCmd_10_0_3_riscv64() QemuCommand {
  12. return newBaseCommand(
  13. Version_10_0_3,
  14. Arch_riscv64,
  15. newOpt_10_0_3_riscv64(),
  16. )
  17. }
  18. func newOpt_10_0_3_riscv64() QemuOptions {
  19. return &opt_1003_riscv64{
  20. baseOptions_riscv64: newBaseOptions_riscv64(),
  21. baseOptions_ge_310: newBaseOptionsGE310(),
  22. }
  23. }