Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by Dasco

  1. D

    how can i read a remote file into my vhdl module

    Hello, I have a vhdl module that reads the inputs from files located in the project directory. I wanna change them to remote files on the server. the local file is in the same directory and has ./user/etc./test_data and the remote file is on the server and is in a different directory...
  2. D

    Need help with syntax for replicator in Verilog

    something like this : module (input, output); reg input [n+1: 0]; parameter M ; // replicating factor parameter n; // the width of the input reg output [M*(n+1) :0]; integer i, j ; initial begin for(i = 0; i < n ; i = i + 1) for(j = 0; j < M ; j = j + 1) = input[i]; assign...
  3. D

    Need help with syntax for replicator in Verilog

    I did assign it in the 2d loop i have to look into the generate thing any example? thanks
  4. D

    Need help with syntax for replicator in Verilog

    what do you mean ? should i use reg instead of wire??
  5. D

    Need help with syntax for replicator in Verilog

    so in my case it would be something like : module (input, output); wire input [n+1: 0]; parameter M ; // replicating factor parameter n; // the width of the input wire output [M*(n+1) :0]; integer i, j ; initial begin for(i = 0; i < n ; i = i + 1) for(j = 0; j < M ; j = j + 1) =...
  6. D

    Need help with syntax for replicator in Verilog

    that is exactly the obstacle What I want to do is : assign output [M*n : 0] = append (M*input[n], M*input[n-1]....................., M*input[0] ) how should i define this?? I know how to do it if i give M and N values but I do not know how to do it with parameters where should i start...
  7. D

    Need help with syntax for replicator in Verilog

    I wanna replicate every bit of the input and write it all out something like this : module (input, output); wire input [n+1: 0]; parameter M ; // replicating factor parameter n; // the width of the input wire output [M*(n+1) :0]; integer i ; initial begin...
  8. D

    hot can i make a memory segment accessible with a control signal??

    Hello all, I want to be able to enable and disable memory segments with control signals. example: making 0x0800 0000 to 0x0900 0000 accessible with test_signal_1 == 1 how can i do that ( in verilog but VHDL is ok too) ?? thanks in advance for any reply
  9. D

    remapping data address using verilog (the internal addressing into physical)

    Hi all, How can I change the memory address automatically in verilog?? example : I want remap the data on this address "0x0B00 000" to "0x0001 9C00" thanks in advance
  10. D

    [SOLVED] select and access blocks of ROM in verilog/vhdl

    thanks for the reply , what i want to do is reading the data from ROM and the ROM is 128K so i need another way to do this ( let's say with two variables size and start address of the segment) and I want to be able to access and mask the partitions with different conditions. how can i do that?
  11. D

    [SOLVED] select and access blocks of ROM in verilog/vhdl

    Hi all, I wanna be able to write certain data in certain segment ( from a start address to a certain end address) of ROM and with control signals make them accessible. How can I do that? thanks in advance
  12. D

    How do i read a certain (fixed) string to an uart and read the result??

    oh ok thanks will get back to you ---------- Post added at 09:34 ---------- Previous post was at 08:59 ---------- it has: #include "Compiler.h" #include "HardwareProfile.h" #include "uart2.h" where can i find these files?
  13. D

    How do i read a certain (fixed) string to an uart and read the result??

    now i am lost where did we modify an uart3.c?? i can send you the codes and all the info via email if you want
  14. D

    How do i read a certain (fixed) string to an uart and read the result??

    it communicates via RS232 and it uses two buffers (WriteRxBuf ,WriteTxBuf) to write in the circular buffer of the UART and two buffer (ReadRxBuf ,ReadTxBuf) to reads from the circular buffer. which one should i use to write into optical device and which one should i use to read from it...
  15. D

    How do i read a certain (fixed) string to an uart and read the result??

    i have an optical device i want to set some values and read the data i can debug using MPLab but I have 4 buffers of the optical device and 2 buffers from my uart which one goes where?

Part and Inventory Search

Back
Top