Nios® V プロセッサー・ソフトウェア開発者ハンドブック

ID 743810
日付 7/08/2024
Public
ドキュメント目次

9.8.4.2. 命令関連の例外ハンドラー

前のセクションの指示に従って JTAG UART でポーリングモードを有効にすると、次の手順に従って、ロード、ストアのミスアライメントなど、割り込みに関連しない例外の原因を特定できます。
  1. main.c ファイルに次の行を追加して、ライブラリーと次の instr_exception_handler() 関数を含めます。
    #include <inttypes.h> #include <sys/alt_exceptions.h> // Provides a way to register a custom instruction exception handler 
    alt_exception_result instr_exception_handler(alt_exception_cause cause, alt_u32 epc, alt_u32 tval) { printf("Instruction exception!\n"); printf(" * cause: %d\n", cause); printf(" * epc: 0x%" PRIx32 "\n", epc); printf(" * tval: 0x%" PRIx32 "\n", tval); while (1) {}; return niosv_EXCEPTION_RETURN_REISSUE_INST; // Should not be reached. } 
  2. 次のセクションを追加して、この新しい例外処理関数を main() 関数の例外を引き起こすコードのすぐ上に登録します。nt main(void) { alt_instruction_exception_register (instr_exception_handler); // Register custom instruction exception handler. printf("Hello world!\n"); function_which_causes_the_exception(); return 0; }