I'm working on a project on the Nexys 3 FPGA, written in Verilog on Xilinx, that requires some file input and output (to the computer that just programmed the FPGA, preferably.) Using the program Adept, you can write to some specific address of one of the FPGA memories. You also can read from specific addresses in the same memory-space.
This could be the perfect solution to my problems - but how do you access these memories using Verilog?
For example: In state S2, I want to read in the memory at location 00000 (which I had previously loaded using Adept while I was still in step S1.) How do I access this data, process it, and then rewrite a different section of the memory? Thanks in advance.