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.

[SOLVED] microblaze doesn't work.

Status
Not open for further replies.

hamidkavianathar

Member level 5
Joined
Mar 6, 2016
Messages
89
Helped
0
Reputation
0
Reaction score
0
Trophy points
6
Activity points
804
Hey guys
I want to do a simple project with microblaze soft core in vivado. here is my design:
1.PNG

and I have created a simple application project in sdk. here is my code:
Code:
#include <stdio.h>
#include "platform.h"

void print(char *str);

int main()
{
    init_platform();
    while(1)
    print("Hello Worlddddd\n\r");

    cleanup_platform();
    return 0;
}

but I don't receive anything. I also tried putty. but it didn't show anything. I'm sure I have selected right com port.
thanks.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top