I think out good idea -- load any working application from Altera examples in DS-5to stop in main() and use in "Commands" window command to load our image: "loadfile D:\my_experiment\hwlib\Micrium\Software\EvalBoards\Altera\Cyclone-V-Dev-Kit\GNU\Ex-1\ucosii.axf" or "loadfile D:\my_experiment\ucosii\Micrium\Software\EvalBoards\Altera\Cyclone-V-Dev-Kit\GNU\Ex-1\ucosii.axf" and see/debug its in Disassembly window.
In ucosii.png (see attachment pictures.zip, why .png not supported in XXI century?!! :) is starting point of good application, without hwlib: it starts from FFFF0000 and have at front jump to +38.
In hwlib.png is begin of nonworking application with hwlib: Preloader must go to 02000000 always, and there no interrupt handling, only function bodies. I see to FFFF0000 adress (hwlibFF.png), there good interrupt-codes, only if clear many words from FFFF0000 and retry "loadfile", clearing remain ! I change in ucosii.lds adress to 02000000, recompile -- the same problems, first no vectors, adding of HWLIB damage the project !
In Console window I see line "Entry point S:0x0200B230", goto there and near find good interrupt table: hwlibBoot.png.
Need will try from "bare" "good" ucosii project and add hwlib files one by one, see results after "loadfile". Or linker keys explore for reorder sections... First command in program must stay B !
And if set PC to 0200B230 (trough Registers, and in Disassembly window context menu command "Set PC to Selection" works successful) and go debug stepping, I see the same "Bare+semihosting" problems: interrupt ask bit CP15_ISR.I is set to 1 after reset (apparently, from DDR ECC in DDR initializing phase in Preloader: GIC has bad reset if pass this inquiry), 4th command in program is "SVC# 0x123456", it handler is absent, etc... Micrium OS may support ARM semihosting emulation ? On site is many pdfs with ARM SoC specific ?