Search found 835 matches

by joe7575
Sat May 07, 2022 12:01
Forum: General Discussion
Topic: mod LAG impact comparison [closed]
Replies: 165
Views: 22633

Re: mod LAG impact comparison

Measuring the CPU load caused by mods is not that easy. I've struggled with this for a long time. I put a lot of effort into this, especially for techage. CPU load is caused by many things: - Running code via `minetest.register_globalstep` - Running code via `minetest.register_abm` - Running code vi...
by joe7575
Fri May 06, 2022 18:31
Forum: WIP Mods
Topic: [Mod] VM16 CPU/Computer [vm16]
Replies: 25
Views: 3890

Re: [Mod] VM16 CPU/Computer [vm16]

Update

vm16 is now in a usable condition. Further improvements are planned.
The second mod, which uses vm16 is Beduino
A video to Beduino is on YT
by joe7575
Fri May 06, 2022 18:13
Forum: General Discussion
Topic: Post your videos!
Replies: 1127
Views: 251872

Re: Post your videos!

Beduino, a new computer mod: https://youtu.be/Dbn19YcltTk
by joe7575
Sun Apr 10, 2022 20:22
Forum: Deutsch
Topic: Wie werde ich zum Admin?
Replies: 9
Views: 1207

Re: Wie werde ich zum Admin?

Hast du einen Quad-Core und zeigt das Diagramm die Auslastung über alle Cores?
Dann wären das nämlich bereits 100% für einen Core (Minetest Mods können nur einen Core nutzen)
by joe7575
Thu Apr 07, 2022 14:15
Forum: Mod Releases
Topic: [Mod] Tech Age [techage]
Replies: 475
Views: 89572

Re: [Mod] Tech Age [techage]

1) Wind Turbine The wind turbine says "No nacelle attached" ("Gondel nicht angeschlossen"), even if it is attached. I tried different orientations, but my first guess was right: The parts with the big dark circle go together. I just left the plant as is (with error and no blades...
by joe7575
Tue Apr 05, 2022 20:05
Forum: WIP Mods
Topic: [Mod] VM16 CPU/Computer [vm16]
Replies: 25
Views: 3890

Re: [Mod] VM16 CPU/Computer [vm16]

Update New features and changes: Import of C and ASM files added for larger programs Further C examples added to the file server Standard library function added (stdio, mem, string, math) Started to write a "Language Reference" manual on GitHub Improve debugger with step-in and step-out b...
by joe7575
Sun Apr 03, 2022 15:41
Forum: Modding Discussion
Topic: Post your mod requests/ideas here
Replies: 2324
Views: 442770

Re: Post your mod requests/ideas here

not this... more pdp-13 or vm 16. just that with normal gui apps, user management, commandline and very big extensablilty (ability to create apps - both gui and cli, api for other mods to create app entrys... etc etc). like linux generally. just that it exists so i left... vm16 is just the virtual ...
by joe7575
Fri Apr 01, 2022 11:27
Forum: Modding Discussion
Topic: Managing mod files
Replies: 20
Views: 3573

Re: Managing mod files

and also - someone knows if its possible to embed other folders to init.lua ? like /games /root or /misc ? This is possible by accepting that this mod becomes insecure and has to be added to the list of 'secure.trusted_mods'. E. g. PDP-13 is a mod, with provides a file system for each computer.
by joe7575
Sat Mar 26, 2022 22:52
Forum: Mod Releases
Topic: [Mod] Tech Age [techage]
Replies: 475
Views: 89572

Re: [Mod] Tech Age [techage]

debiankaios wrote:
Sat Mar 26, 2022 20:45
ta4 concentrator don't connect with distributor:
I know, but that's not a bug. The concentrator only connects to other tubes. The concentrator is a "networks.junction" block. Like other junctions, it will not connect to "secondary" blocks like the distributor.
by joe7575
Sat Mar 26, 2022 22:35
Forum: WIP Mods
Topic: [Mod] VM16 CPU/Computer [vm16]
Replies: 25
Views: 3890

Re: [Mod] VM16 CPU/Computer [vm16]

Update

Compiler now supports:
  • one-dimensional arrays
  • pointers
  • strings and chars
  • constants
This largely completes the range of functions.
by joe7575
Tue Mar 22, 2022 21:01
Forum: WIP Mods
Topic: [Mod] VM16 CPU/Computer [vm16]
Replies: 25
Views: 3890

Re: [Mod] VM16 CPU/Computer [vm16]

Update

Inline assembler added to compiler and debugger.
by joe7575
Tue Mar 22, 2022 11:45
Forum: WIP Mods
Topic: [Mod] VM16 CPU/Computer [vm16]
Replies: 25
Views: 3890

Re: [Mod] VM16 CPU/Computer [vm16]

Ah, ok. The CPU is a self made 16 bit VM without any template. It is as simple as possible. Simple to implement and simple to be programmed in assembler. Though since you mentioned ISA it's worth asking if there is a bus standard for your architecture as well, comparable to ISA/PCI? It has no bus st...
by joe7575
Tue Mar 22, 2022 07:22
Forum: WIP Mods
Topic: [Mod] VM16 CPU/Computer [vm16]
Replies: 25
Views: 3890

Re: [Mod] VM16 CPU/Computer [vm16]

Blockhead wrote:
Tue Mar 22, 2022 01:38
So i'm not completely off-topic: what kind of ISA and ASM syntax is used in the mod?
The assembler follows the Intel syntax. See manual.

But what is ISA? I only know ISA bus :)
by joe7575
Mon Mar 21, 2022 19:27
Forum: WIP Mods
Topic: [Mod] VM16 CPU/Computer [vm16]
Replies: 25
Views: 3890

Re: [Mod] VM16 CPU/Computer [vm16]

You can have syntax highlighting with the `hypertext` formspec element. Unfortunately, this is not possible inside a textarea[...] field, I guess There's some misunderstanding here. hypertext is a powerful alternative to textarea , it is not meant to be used inside textarea . hypertext is, actually...
by joe7575
Mon Mar 21, 2022 18:25
Forum: WIP Mods
Topic: [Mod] VM16 CPU/Computer [vm16]
Replies: 25
Views: 3890

Re: [Mod] VM16 CPU/Computer [vm16]

Update
  • The Assembler mode is reactivated again. The controller/CPU can now be programmed in assembler and in a C-like language.
  • More classic looking blocks with 16x16 textures are added for programmer and server. These can be used alternatively.
by joe7575
Sat Mar 19, 2022 21:47
Forum: WIP Mods
Topic: [Mod] VM16 CPU/Computer [vm16]
Replies: 25
Views: 3890

Re: [Mod] VM16 CPU/Computer [vm16]

Update Version 3.3 is available in GitHub : - Mod completely restructured - Programmer block (notebook) with the development environment (compiler, debugger, file browser) added - File server block added - Demo CPU/controller adapted to the programmer - Many compiler and debugger improvements The m...
by joe7575
Wed Mar 16, 2022 11:58
Forum: WIP Mods
Topic: [Mod] VM16 CPU/Computer [vm16]
Replies: 25
Views: 3890

Re: [Mod] VM16 CPU/Computer [vm16]

jwmhjwmh wrote:
Tue Mar 15, 2022 23:48
This mod looks cool. Would it be possible to integrate it with Mesecons?
Yes, sure.
by joe7575
Sun Mar 13, 2022 10:46
Forum: WIP Mods
Topic: [Mod] VM16 CPU/Computer [vm16]
Replies: 25
Views: 3890

Re: [Mod] VM16 CPU/Computer [vm16]

(Almost) High Level Language for Minetest (work in progress) C like language (so far the only data type is a machine word ) Other language flavors are also possible Symbolic debugger with breakpoints and variables The idea is to provide a PLC like "programming station" which contains comp...
by joe7575
Fri Mar 11, 2022 21:46
Forum: Mod Releases
Topic: [Mod] Tech Age [techage]
Replies: 475
Views: 89572

Re: [Mod] Tech Age [techage]

Thanks Chem871 :)
by joe7575
Fri Feb 25, 2022 20:48
Forum: Modding Discussion
Topic: itemstack clear help
Replies: 5
Views: 705

Re: itemstack clear help

You must add inv:set_stack("main", placer:get_wield_index(), stack) to write back the data
by joe7575
Fri Feb 25, 2022 19:56
Forum: WIP Mods
Topic: [Mod] VM16 CPU/Computer [vm16]
Replies: 25
Views: 3890

Re: [Mod] VM16 CPU/Computer [vm16]

v2.6 is available with breakpoint support and further CPU improvements https://github.com/joe7575/vm16/blob/master/screenshot.png?raw=true The turquoise line is the position with the next instruction to be executed The yellow address (000A) is the breakpoint Hint: Because of the breakpoint support,...
by joe7575
Tue Feb 22, 2022 20:40
Forum: WIP Mods
Topic: [Mod] VM16 CPU/Computer [vm16]
Replies: 25
Views: 3890

Re: [Mod] VM16 CPU/Computer [vm16]

by joe7575
Tue Feb 22, 2022 19:34
Forum: WIP Mods
Topic: [Mod] VM16 CPU/Computer [vm16]
Replies: 25
Views: 3890

Re: [Mod] VM16 CPU/Computer [vm16]

DS-minetest wrote:
Tue Feb 22, 2022 00:59
rip-relative addressing doesn't seem to work nicely with labels. Ie. jmp +mylabel jumps to PC + location of mylabel, not PC + location of mylabel - current location.
Thanks for the hint, the bug is fixed with the new version 2.5
by joe7575
Tue Feb 22, 2022 09:43
Forum: Deutsch
Topic: copy & paste im Mintest
Replies: 9
Views: 1132

Re: copy & paste im Mintest

Mit MT 5.5 sollte es gehen. Ich habe es aber noch nicht getestet, bin auch noch bei v5.4.1
by joe7575
Mon Feb 21, 2022 19:30
Forum: WIP Mods
Topic: [Mod] VM16 CPU/Computer [vm16]
Replies: 25
Views: 3890

Re: [Mod] VM16 CPU/Computer [vm16]

jp wrote:
Sun Feb 20, 2022 17:22
You can have syntax highlighting with the `hypertext` formspec element.
Unfortunately, this is not possible inside a textarea[...] field, I guess