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.
Search found 10 matches
- Sun Aug 21, 2022 6:22 pm
- Forum: Challenges
- Topic: Hacker Virtual Machine IDE
- Replies: 17
- Views: 26317
- Sun Aug 21, 2022 1:29 pm
- Forum: General
- Topic: Hacker Virtual Machine IDE
- Replies: 8
- Views: 33341
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.
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.
- Tue Sep 06, 2011 8:28 pm
- Forum: Challenges
- Topic: Hacker Virtual Machine IDE
- Replies: 17
- Views: 26317
- Fri Nov 28, 2008 10:18 am
- Forum: Challenges
- Topic: HVM online works right?
- Replies: 4
- Views: 9396
Try this one: http://sites.google.com/site/hvmide/
- Thu Nov 27, 2008 3:44 pm
- Forum: Challenges
- Topic: Hacker Virtual Machine IDE
- Replies: 17
- Views: 26317
- Mon Nov 24, 2008 1:39 am
- Forum: Challenges
- Topic: Hacker Virtual Machine IDE
- Replies: 17
- Views: 26317
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); ...
- Sat Nov 22, 2008 3:00 pm
- Forum: Challenges
- Topic: Hacker Virtual Machine IDE
- Replies: 17
- Views: 26317
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...
- Sat Nov 22, 2008 2:03 pm
- Forum: Challenges
- Topic: Hacker Virtual Machine IDE
- Replies: 17
- Views: 26317
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...
- Thu Nov 20, 2008 2:06 am
- Forum: Challenges
- Topic: Hacker Virtual Machine IDE
- Replies: 17
- Views: 26317
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
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
- Thu Nov 20, 2008 12:36 am
- Forum: General
- Topic: Hacker Virtual Machine IDE
- Replies: 8
- Views: 33341
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...