[sw/silicon_creator] Update 16th SFDP DWORD to use 66/99 sequence

RESET opcode was updated to 0x99 in #12716. This commit updated the
corresponding field in the SFDP table.

Signed-off-by: Alphan Ulusoy <alphan@google.com>
diff --git a/sw/device/silicon_creator/lib/drivers/spi_device.c b/sw/device/silicon_creator/lib/drivers/spi_device.c
index 2a78879..cd81805 100644
--- a/sw/device/silicon_creator/lib/drivers/spi_device.c
+++ b/sw/device/silicon_creator/lib/drivers/spi_device.c
@@ -316,13 +316,13 @@
  * BFPT 16th Word
  * --------------
  * [31:14]: 4-Byte addressing (not supported, 0x0)
- * [13: 8]: Soft-reset (instruction 0xf0, 0x80)
+ * [13: 8]: Soft-reset (0x66/0x99 sequence, 0x10)
  * [ 7: 7]: Reserved
  * [ 6: 0]: Status register (read-only, 0x0)
  */
 #define BFPT_WORD_16(X) \
   X(31, 14, kBfptNotSupported) & \
-  X(13,  8, 0x80) & \
+  X(13,  8, 0x10) & \
   X( 6,  0, 0x0)
 
 /**