Pages

joi, 28 decembrie 2023

News : Online tool for assembly with simulator and debugger ...

CPUlator is a full-system Nios II, ARMv7, and SPIM-compatible MIPS simulator that runs in a web browser. It is designed for education use to teach computer ...
This runs inside a web browser.
  • Instruction sets: Nios II, ARMv7, and MIPS
  • I/O devices:
  • Nios II and ARMv7: Includes most devices found on a DE1-SoC (and other board models used by the Altera University Program), including interrupt support.
  • MIPS: Includes SPIM-compatible terminal
  • Nothing to install: Runs entirely inside a web browser
  • Debugger: Single-step, breakpoints, watchpoints, trace, call stack, examine disassembly, memory and registers
  • Debug assertions: Optional runtime assertions catch many potential errors
  • Input: Accepts both assembly source code and ELF executables
I tested with the simple basic assemnbly source code and works well:
.global _start
_start:
	mov r0,#1
	mov r1,#3
	push {r0,r1}
	bl get_value
	pop {r0,r1}
	B end
get_value:
	mov r0,#5
	mov r1,#7
	add r2,r0,r1
	bx lr
end:
You can save, load and compile this sorce code like a simple file type : simple.s
This is the result:

News : Released snapshot of Godot 4.3!

The team working on Godot Engine have released the first snapshot of Godot 4.3 which brings with it some big rendering changes that sound quite exciting overall.
You can find this release on the official webpage.
NOTE: this snapshot will solve android with NET ...
To export to Android, .NET 7.0 or later is required. To export to iOS, .NET 8.0 is required. Make sure to set the target framework in the .csproj file.