[sw/silicon_creator] Change RESET opcode to 0x99

Signed-off-by: Alphan Ulusoy <alphan@google.com>
diff --git a/sw/device/silicon_creator/lib/drivers/spi_device.h b/sw/device/silicon_creator/lib/drivers/spi_device.h
index c1c0a51..18d183d 100644
--- a/sw/device/silicon_creator/lib/drivers/spi_device.h
+++ b/sw/device/silicon_creator/lib/drivers/spi_device.h
@@ -149,9 +149,10 @@
    * RESET command.
    *
    * This command should be handled in software. Upon receiving this command,
-   * the chip should be reset.
+   * the chip should be reset. Note that OpenTitan does not enforce the
+   * RESET_ENABLE (0x66) and RESET (0x99) sequence.
    */
-  kSpiDeviceOpcodeReset = 0xf0,
+  kSpiDeviceOpcodeReset = 0x99,
   /**
    * WRITE_ENABLE command.
    *