Forum Replies Created
-
AuthorPosts
-
support
KeymasterThe problem was solved in WinCDEmu 3.4. Please download the latest version.
support
KeymasterWhat do you mean by “does not unmount”? What exactly happens?
My bet is that your player “forgets” to close some of the files on the image, so, closing the player before unmounting the image should help.support
KeymasterIt seems to me that modern antiviruses get closer and closer to the approach “every program that does not have a certificate bought from me is a virus”.
Are you using Portable WinCDEmu, or the normal WinCDEmu? Can you also tell when exactly does F-Secure pop up the alert and what is the exact error message text, so I could look it up in google?support
KeymasterThe driver binaries (SYS files) are signed (otherwise Windows won’t load them). The driver package is not WHQL-certified, so Windows pops up a message box.
support
KeymasterWinCDEmu is either a simple yet free tool, that allows mounting data disc images, rather than an all-in-one solution, that supports all and everything.
There are plenty of free tools for creating disc images and re-implementing such functionality in WinCDEmu would be unreasonable. As for the audio tracks/mixed CD images, I would recommend using various free software for converting those tracks to WAV/etc. files, as supporting such images in WinCDEmu would not be simple.support
KeymasterShould not be. If you encounter any, submit a bugreport and I’ll fix it.
support
KeymasterDo you have a NRG or similar image mistakingly renamed to IMG? This is what usually causes that type of error. Can you upload the faulty image somewhere and post the link, so I could investigate?
support
KeymasterDisabled a flag that was supposed to turn off read-ahead caching for image file, but apparently caused the side effects instead. As 3.4 was released just 1 day ago (and nobody complained about the issue before), I just updated its installer.
support
KeymasterPlease try re-downloading version 3.4 again. I have updated the installer.
support
KeymasterThis is the way Windows cache subsystem works. If you just read the image file sector-after-sector, Windows will use all free memory to cache its contents. However, if some program wants to allocate it and no other memory is available, this cache memory will be used just as the normal free memory, discarding the cache contents.
On the other hand, if the effect causes noticable program slowdown rather than just messing with Task Manager memory statistics, please describe it in more detail, so I will investigate.Upd: please download version 3.4 again, I’ve added a flag that should completely remove all cache-related effects.
support
KeymasterFixed in version 3.4
support
KeymasterAre you using a localized (non-English) version of Windows?
support
KeymasterTry version 1.3
support
KeymasterYou use the following syntax:
import_entity rom1(“rom1.vhd”);
From now on you can use the “rom1” entity as if it was implemented in THDL++.
Note that this feature is experimental and will most likely not work with complex entities (e.g. having generic-dependent ports). However, it works for Xilinx generated cores.support
KeymasterOK, which example are you trying and what entity are you trying to visualize? Are you using “Project->Visualize” command, or “Visualize entity” command from the context menu? If you modified the example, ensure that one of your source files contains something like that:
//The following line will take effect when building simulation model
simulate_entity(SimulatedClockProvider<20ns, LEDBlinkDemo>);//When using VisualHDL with Xilinx tools, VisualHDL will build the
//FPGA bitstream file automatically based on the following line:
synthesize_hardware<"xc3s700an-fgg484-4"> LEDBlinkDemo(
clk=”E12″,
LEDs=”W21,Y22,V20,V19,U19,U20,T19,R20″
//The post_route_sim statement is optional and is only used for generating
//post-route simulation models.
) post_route_sim(SimulatedClockProvider<20ns, LEDBlinkDemo>);This essentially means that if you’re building a simulator configuration (selected on top of the project file list), the root entity will be the one specified by simulate_entity. Similar for FPGA builds.
Don’t believe the message about “generate_vhdl”, it was not updated since the build when generate_vhdl split into simulate_entity for simulator builds and synthesize_hardware for FPGA builds. Will fix the msg in future versions.
-
AuthorPosts