For example:
.text
.align 2
.global main
.equ val,0x4712 # 16-bit binary code for 0x4712: 0100 0111 0001 0010
# Program code starts now
main: # This label must be main:, not MAIN:
movi r16,val # WHAT WOULD THIS LINE BE IN BINARY?
movi r17,0
loop: addi r17,r17,1
subi r16,r16,1
bne r16,r0,loop
stop: br stop
.end
Run Code Online (Sandbox Code Playgroud) 尝试构建我们的公共代码时出现以下错误。
Description Resource Path Location Type
JavaServer Faces 2.0 can not be installed : One or more constraints have not been satisfied. Apps line 1 Maven Java EE Configuration Problem
JavaServer Faces 2.0 requires Dynamic Web Module 2.5 or newer. Apps line 1 Maven Java EE Configuration Problem
我试图在代码中找到错误,但没有错误。我怀疑这是缺少的依赖项。如果我的想法正确,有人可以进一步解释吗?