How Software Gets Done  
Our apologies for the inconvenience, but we will be upgading the site from 11:30pm - 12:30am EDT. During this time you may experience periodic outages. The site will resume normal operation at 12:30am EDT. Again our apologies and thanks for your patience.  (current site time 7/1/2003 12:09:33 AM EDT)


Login

Software Buyers
Request new bid
Search coders
My Buyer Account
Buyer help
Buyer articles
Buyer FAQ
Latest news
 
Software Coders
Newest open work
Browse all work
Search all work
My Coder Account
Coder help
Coder articles
Coder FAQ
Latest news
 
Affiliates
My Affiliate Account
Affiliate help
Affiliate FAQ
Latest news
 
Newest Bid Requests.
outlook 2000 addin
By hoodle on Jun 30
Max Bid: Open to fair suggestions


Dating site
By computersearch on Jun 30
Max Bid: Open to fair suggestions


Internet Safety Monitoring Software
By rwk on Jun 30
Max Bid: $350


Need perl and apache for win help asap
By mx6 on Jun 30
Max Bid: $20


Create Cartoon Characters
By stratbz on Jun 30
Max Bid: Open to fair suggestions


Multi-media Web Site
By avutech on Jun 30
Max Bid: Open to fair suggestions


Click here to put this ticker on your own site

Open Work Categories.
Database 
(136 open)
   Access 
(58 open)
   MySQL 
(92 open)
   Oracle 
(8 open)
   SQL Server 
(39 open)
   Other DB 
(19 open)
Documentation / Tech Writing 
(22 open)
Data Entry 
(21 open)
Game Development 
(26 open)
Graphics / Art / Music 
(60 open)
   Graphics 
(55 open)
     Adobe AfterEffects 
(2 open)
     Adobe Photoshop 
(15 open)
     Adobe Premiere 
(2 open)
     3d Animation 
(22 open)
   Art (Misc.) 
(26 open)
   Music 
(10 open)
   3d Modeling 
(18 open)
Language Specific 
(109 open)
   ASP 
(57 open)
   ASP .NET 
(30 open)
   C# 
(29 open)
   C++ / C 
(110 open)
   Cold Fusion 
(9 open)
   Delphi 
(27 open)
   Java 
(57 open)
   JSP 
(14 open)
   Perl 
(43 open)
   PHP 
(82 open)
   XML/XSL 
(24 open)
   Visual Basic 
(147 open)
   Visual Basic .Net 
(60 open)
   Other 
(59 open)
Misc 
(22 open)
   CAD 
(3 open)
MultiMedia 
(37 open)
   Video Editing 
(3 open)
Network 
(38 open)
   Network Design 
(11 open)
   Network Implementation 
(14 open)
Platforms 
(90 open)
   Windows 
(171 open)
     MS Exchange 
(4 open)
     MS Office 
(11 open)
     Other 
(8 open)
   Darwin 
(1 open)
   Internet Browser 
(46 open)
   Linux 
(64 open)
   UNIX 
(41 open)
   Hand Held/PDA Programming 
(8 open)
Requirements 
(12 open)
Security 
(34 open)
Testing / Quality Assurance 
(13 open)
Web 
(156 open)
   Page Design 
(82 open)
   Flash 
(47 open)
   Web Services 
(78 open)
   Web (Other) 
(76 open)
Training 
(13 open)
   Computer Based 
(14 open)
Other
 
Other Sites

Download the free Rent A Coder IE toolbar!
 
Show Bid Request

simple verilog program
Bid Request Id: 69579
Bookmark in my 'To Do' list
Posted by: GACHE (9 ratings)
(Software buyer rating 10)
Non-action Ratio: Above Average - 40.00%
Posted: Jun 22, 2003
6:48:34 AM EDT
Bidding Closes: Jun 24, 2003 EDT
Viewed (by coders): 115 times
Deadline: 6/24/2003
TIME EXPIRED
Phase:
100% of work was accepted by buyer. Coder account has been credited.
Max Accepted Bid: Bidding is closed
Project Type: Personal Project / Homework Help
Bidding Type: Open Auction
Categories: Windows, Language Specific, Other
Enter chat room for this bid request
(0 active users at Jul 1, 2003 12:09:33 AM EDT)

Description:
I have 2 verilog programs listed below that i cannot get to run/simulate and give me an output. I just need someone to run them and if there is an error, fix the error until you get and output. Then send me the copy of each of the 2 programs below and their outputs.


PROGRAM #1
module binary ToESeg
(output eSeg, input A,B,C,D);
nand #1
g1(p1,C,~D),
g2(p2,A,B),
g3(p3,~B,~D),
g4(p4,A,C),
g5(eSeg,p1,p2,p3,p4);
endmodule

module m16
(output reg[3:0] ctr=1, input clock);
always at(posedge clock)
ctr <=ctr+1;
endmodule

module m555
(output reg clock);
initial
#5 clock=1;
always
#50 clock=~clock;
endmodule

module board;
wire [3:0] count;
wire clock, eSeg;
m16 counter (count, clock);
m555 clockGen (clock);
binaryToESeg disp (eSeg, count[3], count[2], count[1], count[0]);

initial
$monitor($time,,,"count=%d, eSeg=%d", count, eSeg);
endmodule



PROGRAM #2

module binary ToESeg
(output eSeg, input A,B,C,D);
nand #1
g1(p1,C,~D),
g2(p2,A,B),
g3(p3,~B,~D),
g4(p4,A,C),
g5(eSeg,p1,p2,p3,p4);
endmodule

module m16
(value, clock, Fifteen, altFifteen);
output [3:0] value;
output Fifteen, altFifteen;
input clock;
dEdgeFF
a(value [0], clock, ~value[0]),
b(value [1], clock, value[1]^value[0]),
c(value [2], clock, value[2]^&value[1:0]),
d(value [3], clock, value[3]^&value[2:0]);
assign Fifteen = value[0] &value[1] &value[2] &value[3];
assign altFifteen = &value;
endmoudle

module dEdgeFF (q, clock, data);
output q;
reg q;
input clock, data;
initial
q=0;
always at(negedge clock)
#10 q= data;
endmodule

module m555
(output reg clock);
initial
#5 clock=1;
always
#50 clock=~clock;
endmodule

module board;
wire [3:0] count;
wire clock, eSeg;

dEdgeFF Fl (q, clock, data);
m16 counter (count, clock);
m555 clockGen (clock);
binaryToESeg disp (eSeg, count[3], count[2], count[1], count[0]);

initial
$monitor($time,,,"count=%d, f=%d, af=%d, eSeg=%d", count, f, af, eSeg);

endmodule



Deliverables:
1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done.

2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request.

3) Complete ownership and distribution copyrights to all work purchased.



Platform:
any platform as long as you give me an output for both programs, especially the 2nd one.

Must be 100% finished and received by buyer on:
Jun 24, 2003 EDT
Deadline legal notes: All times are expressed in the time zone of the site EDT (UT - 5). If the buyer omitted a time, then the deadline is 11:59:59 PM EDT on the indicated date.


Remember that contacting the other party outside of the site (by email, phone, etc.) on all business projects < $500 (before the buyer's money is escrowed) is a violation of both the software buyer and seller agreements. We monitor all site activity for such violations and can instantly expel transgressers on the spot, so we thank you in advance for your cooperation. If you notice a violation please help out the site and report it. Thanks for your help.
 
Bidding/Comments:
All monetary amounts on the site are in United States dollars.
Rent a Coder is a closed auction, so coders can only see their own bids and comments. Buyers can view every posting made on their bid requests.

See all rejected bids (and all comments)
Name   Bid Amount 
 
Date   Coder Rating  
This bid was accepted by the buyer!
CommEngineer
(3 ratings)
in Hyderabad, A.P, A.P
India
Bid id: 746,226
 
$5 (USD) Jun 22, 2003
8:06:46 PM EDT
 10
(Excellent)
   

Hi GACHE,

 I had seen your bid request and i removed the errors in the 2 programs. I am sending the Source code and the outputs of the two programs. i had compiled and run the programs in 'ModelSim XE/Starter 5.5e_p1'.

 Please let me know if this is the required output you want or if its not working in any other platform(i guess it will work on all tools).  i am bidding at $5 please accept my work and give me a good rating so that its possible for me to get future projects.

 I also want to know that i am an Electrical Engineer, so i have good knowledge in all EDA and other simulation tools. i look forward to work more with you.

waiting for your reply,

Best Regards,

CommEngineer.

Attached File
 
 
 
 
  See 2 private reply(ies)
to/from CommEngineer.
 




Quick Search
 Advanced Search
Newest Open Work
Latest News  
Credentials


 

 
Rent A Coder upholds the rigorous business practices required to be both a BBB member and Square Trade vendor.
  • All customer issues addressed within 2 days
  • Openly disclosed pricing and return policies
  • Participation in mediation at buyer request
  • Superior selling track record
This site is verified through its parent company, Exhedra Solutions, Inc.
 
Top Coders.

Anuj Gakhar
Rated a 9.98 on 99 jobs 
Securenext
Rated a 9.98 on 106 jobs 
Andrei Remenchuk
Rated a 10 on 13 jobs 
Buddies
Rated a 9.83 on 78 jobs 
Codman
Rated a 9.97 on 147 jobs 
Michael Sharp
Rated a 9.97 on 181 jobs 
D-N-S
Rated a 9.93 on 37 jobs 
markesh
Rated a 10 on 22 jobs 
teleCODERS
Rated a 9.93 on 67 jobs 
Tometa Software, Inc.
Rated a 10 on 10 jobs 

See all top coders...

(What makes a top coder?)

Top Exam Scorers

 
Other
Rent A Coder is PayPal verified through its parent company, Exhedra Solutions, Inc.

Created in partnership with:

 

Affiliate Sites
Latest News | About Us | Kudos | Feedback/Contact    Affiliates | Advertise    Privacy | Legal

Copyright © 2001, Exhedra Solutions, Inc. All rights reserved.
By using this site you agree to its Terms and Conditions.
"Rent A Coder" (tm), "Safe Project Escrow" (tm) and "How Software Gets Done" (tm)
are trademarks of Exhedra Solutions, Inc.