Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
03/30/09 08:51
Read: times


 
#163992 - Think!
Responding to: ???'s previous message
Trangga Findanugroho said:
How to convert this simple code into assembly?

You need to think about the steps necessary to achieve what the code does!


var 
str:string[10]; 
 
Think about what that actually does - in terms of code and/or data - on the microcontroller.

IF you want to duplicate the implementation precisely, you will need to consult your (Pascal?) Compiler Manual to determine how it represents strings;
IF you just want to get similar behaviour, you can choose your own string representation...

Note that (I think) 'C' uses a different string representation from Pascal...


str:='Hello'; 
 
Again, what does that actually do - in terms of code and/or data - on the microcontroller?

It's going to have to handle each character in the string in turn, and needs some way to determine the end (or length) of the string - doesn't it...?

List of 11 messages in thread
TopicAuthorDate
about string...            01/01/70 00:00      
   Your homework            01/01/70 00:00      
      Here we go again ...            01/01/70 00:00      
         Homework not done            01/01/70 00:00      
      Here we go again ...            01/01/70 00:00      
   Think!            01/01/70 00:00      
      No, don't think.            01/01/70 00:00      
         BASIC dialect??? >:-|            01/01/70 00:00      
            No line numbers            01/01/70 00:00      
            Oh crud.            01/01/70 00:00      
               it shouldn't be a problem to find an appropriate compiler            01/01/70 00:00      

Back to Subject List