Sign In

Don't have a Xilinx account yet?

  • Choose to receive important news and product information
  • Gain access to special content
  • Personalize your web experience on Xilinx.com

Create Account

Username

Password

Forgot your password?
XClose Panel
Xilinx Home
Reply
Visitor
mediatronix
Posts: 17
Registered: ‎06-26-2009
0

Mediatronix/pBlazASM tools

Please direct any pBlazASM/pBlazIDE related questions to the pblazasm@mediatronix.com maillist, instead of this list to keep this list Picoblaze and Xilinx specific.

 

Thanks,

Henk van Kampen

Mediatronix BV

Regular Contributor
technicolor
Posts: 55
Registered: ‎06-03-2009
0

Re: Mediatronix/pBlazASM tools

Hi Henk,

 

Is this email adress still active?

 

Rgds,

Technicolor

Regular Contributor
technicolor
Posts: 55
Registered: ‎06-03-2009
0

Re: Mediatronix/pBlazASM tools

I have a piece of code

 

                             .ORG   0x000                   // code entry
                              JUMP   main
           
main:
load	sA,	33
JUMP   main

 

When I this assemble with the command:  pBlazASM.exe -6 -l movement.psm  in a dosbox this generates a movement.lst file.

 

When I try to simulate this in pBlazSIM the program can't be run because the 'step' button stays greyed out.

Why is that?

 

 

 

Regular Contributor
technicolor
Posts: 55
Registered: ‎06-03-2009
0

Re: Mediatronix/pBlazASM tools

[ Edited ]

The solution is to compile it also with the -s option.

So like this: pBlazASM.exe -6 -l -s movement.psm

Then it works