Search the web
Sign In
New User? Sign Up
gnu-m68hc11 · GNU 68HC11/HC12
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2573 - 2602 of 9382   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2573
Thanks so much for the help. I finally got the memory configured properly, and my programs actually work now! I am really new to this, so I did quite grasp how...
bandanasrule <Bandana...
bandanasrule
Offline Send Email
Mar 1, 2003
2:32 pm
2574
Hello, Vincent ! ... all? Well, I guess Stephane could give a far better answer than me. GCC (GNU Compiler Collection) complies to the GNU GPL. It is free to...
G.T
gt_is_really_gt
Offline Send Email
Mar 1, 2003
3:21 pm
2575
Hi Gary, ... instruction sei. Well, the best thing to do for such simple instructions is the use of asm. For example, for SEI, the instruction asm("sei") does...
G.T
gt_is_really_gt
Offline Send Email
Mar 1, 2003
3:21 pm
2576
Yep, I didn't know I had to use make and actually build the libraries, sorry for the dumb question. Thanks for the help, everything is working great now! ...
bandanasrule <Bandana...
bandanasrule
Offline Send Email
Mar 1, 2003
3:37 pm
2577
I'm glad you got it working. You can report bugs directly to me so we don't bother the people on this list. Eric Engler englere.geo@... ... ...
Eric Engler
englere.geo
Offline Send Email
Mar 2, 2003
2:39 am
2578
Has anyone used or considered using Kevin Ross's BDM12 with GDB? (http://wwww.kevinro.com) I would be interested in hearing anything about it. John...
hiltonjd <hiltonj@...>
hiltonjd
Offline Send Email
Mar 3, 2003
1:10 am
2579
Hi, I've a problem with the stack value. I've change in memory.x => PROVIDE (_stack = 0xFF); but when a compil at all this value is unused and the stack is set...
mat19061701 <mat1906@...
mat19061701
Offline Send Email
Mar 3, 2003
11:43 am
2580
It looks like you and Stéphane are suggesting the exact same method. I knew how to embed the instruction into my C code but was looking for a way to do this...
Gary Piercey
gpiercey@...
Send Email
Mar 3, 2003
5:26 pm
2581
I am trying to use the first input capture port to hold the program until it receives a falling edge from the IC1 port. However, this program is only working...
data7200 <data6400@...>
data7200
Offline Send Email
Mar 4, 2003
7:45 am
2582
... To configure Input Capture, you have to write in TCTL2 (TimerConTroL) 0x1021 For TIC1 falling edge, write: xx10xxxx = 0x20 In TFLG1 (Timer flags), you read...
Jean-Paul
aslarorb@...
Send Email
Mar 4, 2003
8:10 am
2583
Hi guys, another request. Can anyone point me to a list of the instruction set in Excel or at least one that is listed in Opcode order rather than Mnemonic...
C Sizer
aussiecol39
Offline Send Email
Mar 5, 2003
12:09 pm
2584
A very good thing to do with the instruction set is to make a 16 X 16 table, label the horizontal axis 0 to F (Hex) and the vertical axis 0 to F (Hex). The...
McCarthy, Calvin
mccarcb@...
Send Email
Mar 5, 2003
1:26 pm
2585
I have installed the gnu chain and have used it to compile several programs for my 912dp256 board. It's in c:\usr I recently downloaded and built the GEL...
jtang613
Offline Send Email
Mar 5, 2003
6:00 pm
2586
Hi, One good thing to do would be forget Excel and replace it with Gnumeric One other good thing to do would be fetch on the web the m68hc11rm.rev3.0.pdf...
Jean-Paul
aslarorb@...
Send Email
Mar 5, 2003
9:14 pm
2587
ANNOUNCEMENT........... For those interested, there is a new version of 68HC11 objallocate for Windows and Linux. This release corresponds to 68HC11 GCC...
John Volpe
jtvolpe
Offline Send Email
Mar 7, 2003
3:37 am
2588
My web site has a link to instructions for building GEL on a windows system. I don't have any files in \usr\gel\bin either. ...
Eric Engler
englere.geo
Offline Send Email
Mar 7, 2003
3:38 am
2589
http://www.cs.uml.edu/~fredm/courses/91.305/data/M68HC11ERG.pdf pages 8,9,10,11 Ian Davidson. *...
Ian Davidson
ibdav123
Offline Send Email
Mar 7, 2003
2:29 pm
2590
I am starting from ground 0 with gcc and the 68hc11 so please bear with me. Three questions: 1) Certain registers need to be modified within 60 clock cycles,...
wrkirkland
Offline Send Email
Mar 7, 2003
6:47 pm
2591
Hi, I am having trouble getting serial_print to work while using Buffalo Monitor. My program compiles with no problems, but serial_print("test") results in no...
bandanasrule
Offline Send Email
Mar 8, 2003
3:49 pm
2592
Hi, I am trying to use labels so that I can point to a string stored in memory with X. This is how I made my code: __asm__ __volatile__( "TEST: FCC \'TEST...
bandanasrule
Offline Send Email
Mar 9, 2003
2:44 am
2593
Hi! ... Indeed! - You load the two first bytes of your string. - The FCC directive is not understood (except when you use the assembler --mri option) Your asm...
Stephane Carrez
stephane_carrez
Offline Send Email
Mar 9, 2003
10:24 am
2594
Hi! ... The serial_print() does not use the SCI/SPI vectors. It's a polling implementation (for simplicity of the examples). Check the serial speed. Have a...
Stephane Carrez
stephane_carrez
Offline Send Email
Mar 9, 2003
10:28 am
2595
Hi! ... You can provide a __premain function. It is called very early in the startup. You can write it in C or asm. You can declare it as follows: void...
Stephane Carrez
stephane_carrez
Offline Send Email
Mar 9, 2003
10:41 am
2596
Hi! ... The 'bin' directory is populated only by 'make install'. The 'lib' directory is populated during the build. ... Be sure to use the Mingw32 host tools...
Stephane Carrez
stephane_carrez
Offline Send Email
Mar 9, 2003
10:48 am
2597
Hi! ... Controlling interrupt/processor's specific flags is not part of any language like ANSI C/C++/Ada. ... You must handle the interrupt yourself. No magic...
Stephane Carrez
stephane_carrez
Offline Send Email
Mar 9, 2003
11:02 am
2598
Thanks for the replies. The problem came from a conflict with Eric's settings and my configuration. But I now have them compiled. I still have yet to...
jtang613
Offline Send Email
Mar 9, 2003
7:14 pm
2599
Excellent! I got it working, thanks a lot....
bandanasrule
Offline Send Email
Mar 10, 2003
12:29 am
2600
I am having trouble using my converted value from the A/D port. In my program I read port e 0-3 and only use port e 0. I take the value and convert it to hex...
data7200
Offline Send Email
Mar 10, 2003
2:32 am
2601
... Your compare will fail because you try to compare a pointer(you use s as string) with a char. And the typecast (char)s will give you the first byte of the...
Daniel Postler
daniepl77
Offline Send Email
Mar 10, 2003
7:45 am
2602
... Hi Stephane, Thanks for all your advice... it has been very useful. I am still confused about this vector table. I understand that the address of the...
Gary Piercey
gpiercey@...
Send Email
Mar 11, 2003
6:35 pm
Messages 2573 - 2602 of 9382   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help