diff --git a/src/frontend/A32/translate/translate.h b/src/frontend/A32/translate/translate.h index 64e125d7..ef9b2b2c 100644 --- a/src/frontend/A32/translate/translate.h +++ b/src/frontend/A32/translate/translate.h @@ -28,6 +28,7 @@ struct TranslationOptions { * This function translates instructions in memory into our intermediate representation. * @param descriptor The starting location of the basic block. Includes information like PC, Thumb state, &c. * @param memory_read_code The function we should use to read emulated memory. + * @param options Configures how certain instructions are translated. * @return A translated basic block in the intermediate representation. */ IR::Block Translate(LocationDescriptor descriptor, MemoryReadCodeFuncType memory_read_code, const TranslationOptions& options); diff --git a/src/frontend/A64/translate/translate.h b/src/frontend/A64/translate/translate.h index 2781336c..8d5158d8 100644 --- a/src/frontend/A64/translate/translate.h +++ b/src/frontend/A64/translate/translate.h @@ -32,7 +32,7 @@ struct TranslationOptions { * This function translates instructions in memory into our intermediate representation. * @param descriptor The starting location of the basic block. Includes information like PC, FPCR state, &c. * @param memory_read_code The function we should use to read emulated memory. - * @param options Configure how instructions are translated. + * @param options Configures how certain instructions are translated. * @return A translated basic block in the intermediate representation. */ IR::Block Translate(LocationDescriptor descriptor, MemoryReadCodeFuncType memory_read_code, TranslationOptions options);