Results 302 comments of Yashodhan

@Jyo561 Apart from what @Vatsalsoni13 has suggested, if you want a way to store data at "compile" time, you can use the `set` directive. ```asm DB 0x75 ;this will be...

Hey! > This is a very useful project. Very happy to hear that you are finding this useful , thank you! > It works most of the time. There are...

Hey @swagatk , Apologies for the late reply :sweat: >I wrote a crude way to check if a number is prime or not. If you find this program correct, you...

Also to add another thing, we will be adding the example under MIT + Apache 2.0 dual license, same as the emulator-8086 repository : https://github.com/YJDoc2/8086-Emulator/#license . In case you have...

Hey, Thanks for trying out this emulator! When designing the emulator, we tried to keep the syntax simple and somewhat similar to assemblers like gas/nasm ; along with that we...

Hey, Thanks for using the emulator! So the answer for both of your questions is same : it is because the emulator does not translate the instructions to an actual...

> Your project is awsome Thank you! > When the code work with memory, I found it does not work well. Such as mov [0],cx, cs:ip. For the reasons explained...

Hey, I'm not sure if the issue with the speed is related to RefCells , but if it is, would it help removing the ref cells? I was looking around...

Hey, So after spending some time in implementing the gen-arena tree the wrong way, and then spending some time in half-implementing it the right way, I'm not sure if this...

Hey, If you're still interested in adding a builder implementation, what do you think of using https://crates.io/crates/derive_builder for this? That will generate the builder automatically, and one won't have to...