Search found 10 matches

by Col. Dump
Sun Aug 21, 2022 6:22 pm
Forum: Challenges
Topic: Hacker Virtual Machine IDE
Replies: 17
Views: 26190

sources

If there is still someone who wants to build his own assembler based on the IDE, here is my code:

https://gitlab.com/col.dump/hvmide

It's the original code of my last release nearly 14 years ago, cleaned up a little and migrated to Maven.
by Col. Dump
Sun Aug 21, 2022 1:29 pm
Forum: General
Topic: Hacker Virtual Machine IDE
Replies: 8
Views: 33233

official sources

If there is still someone who wants to build his own IDE, here is my code:

https://gitlab.com/col.dump/hvmide

It's the original code of my last release nearly 14 years ago, cleaned up a little and migrated to Maven.
kamikataz, thanks for bridging the wait. :wink:
by Col. Dump
Tue Sep 06, 2011 8:28 pm
Forum: Challenges
Topic: Hacker Virtual Machine IDE
Replies: 17
Views: 26190

Hi, thank you for your nice feedback. Yes, I'm still around, even though I don't have much time these days to proceed further in the challenges. I hope you have fun with the IDE... ;-)
by Col. Dump
Fri Nov 28, 2008 10:18 am
Forum: Challenges
Topic: HVM online works right?
Replies: 4
Views: 9382

by Col. Dump
Thu Nov 27, 2008 3:44 pm
Forum: Challenges
Topic: Hacker Virtual Machine IDE
Replies: 17
Views: 26190

If I find the time, I will make a code fork and clean it up so it can be released.
by Col. Dump
Mon Nov 24, 2008 1:39 am
Forum: Challenges
Topic: Hacker Virtual Machine IDE
Replies: 17
Views: 26190

Thank you for the tip! Looks like the result of -1/2 depends on how the languages treat rounding in integer division. Python: result is the next smaller integer, positive and negative >>> -1/2 -1 Java: result is the next smaller absolute integer with the corresponding sign System.out.println(-1/2); ...
by Col. Dump
Sat Nov 22, 2008 3:00 pm
Forum: Challenges
Topic: Hacker Virtual Machine IDE
Replies: 17
Views: 26190

new version 0.9.2

You can find a new release at the old location, which now - has a new run command "run to cycle X" - returns 0 for read operations on uninitialized memory instead of throwing an exception - doesn't ignore whitespace outside of comments anymore, i.e. both spaces and newlines count to progra...
by Col. Dump
Sat Nov 22, 2008 2:03 pm
Forum: Challenges
Topic: Hacker Virtual Machine IDE
Replies: 17
Views: 26190

I'm happy to hear that my tool is actually of use for you. :) You are right with respect to the machine behaviour: both negative memory addresses as well as memory initialization should work as you described. I will fix that briefly... [Edit] I have to correct myself - write access to negative memor...
by Col. Dump
Thu Nov 20, 2008 2:06 am
Forum: Challenges
Topic: Hacker Virtual Machine IDE
Replies: 17
Views: 26190

Hacker Virtual Machine IDE

Hi all,

I wrote a prototypical IDE for the hacker virtual machine. It's a small java application available at http://sites.google.com/site/hvmide/.

Happy hacking,
Col. Dump
by Col. Dump
Thu Nov 20, 2008 12:36 am
Forum: General
Topic: Hacker Virtual Machine IDE
Replies: 8
Views: 33233

Hacker Virtual Machine IDE

Hi everybody, I had to rewarm my java and swing skills for an upcoming project, so I decided to write an integrated development environment for the hacker virtual machine... It's a small java application you can find at http://sites.google.com/site/hvmide/ . Hope you like it! If you find bugs (I gue...