Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

gnu-m68hc11 · GNU 68HC11/HC12

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1093
  • Category: Development
  • Founded: Jan 6, 2000
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 2573 - 2602 of 9654   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
2573 bandanasrule <Band...
bandanasrule Send Email
Mar 1, 2003
2:32 pm
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...
2574 G.T
gt_is_really_gt Send Email
Mar 1, 2003
3:21 pm
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...
2575 G.T
gt_is_really_gt Send Email
Mar 1, 2003
3:21 pm
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...
2576 bandanasrule <Band...
bandanasrule Send Email
Mar 1, 2003
3:37 pm
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! ...
2577 Eric Engler
englere.geo Send Email
Mar 2, 2003
2:39 am
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@... ... ...
2578 hiltonjd <hiltonj@...
hiltonjd Send Email
Mar 3, 2003
1:10 am
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...
2579 mat19061701 <mat19...
mat19061701 Send Email
Mar 3, 2003
11:43 am
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...
2580 Gary Piercey
gpiercey@... Send Email
Mar 3, 2003
5:26 pm
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...
2581 data7200 <data6400...
data7200 Send Email
Mar 4, 2003
7:45 am
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...
2582 Jean-Paul
aslarorb@... Send Email
Mar 4, 2003
8:10 am
... 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...
2583 C Sizer
aussiecol39 Send Email
Mar 5, 2003
12:09 pm
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...
2584 McCarthy, Calvin
mccarcb@... Send Email
Mar 5, 2003
1:26 pm
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...
2585 jtang613 Send Email Mar 5, 2003
6:00 pm
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...
2586 Jean-Paul
aslarorb@... Send Email
Mar 5, 2003
9:14 pm
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...
2587 John Volpe
jtvolpe Send Email
Mar 7, 2003
3:37 am
ANNOUNCEMENT........... For those interested, there is a new version of 68HC11 objallocate for Windows and Linux. This release corresponds to 68HC11 GCC...
2588 Eric Engler
englere.geo Send Email
Mar 7, 2003
3:38 am
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. ...
2589 Ian Davidson
ibdav123 Send Email
Mar 7, 2003
2:29 pm
http://www.cs.uml.edu/~fredm/courses/91.305/data/M68HC11ERG.pdf pages 8,9,10,11 Ian Davidson. *...
2590 wrkirkland Send Email Mar 7, 2003
6:47 pm
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,...
2591 bandanasrule Send Email Mar 8, 2003
3:49 pm
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...
2592 bandanasrule Send Email Mar 9, 2003
2:44 am
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...
2593 Stephane Carrez
stephane_carrez Send Email
Mar 9, 2003
10:24 am
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...
2594 Stephane Carrez
stephane_carrez Send Email
Mar 9, 2003
10:28 am
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...
2595 Stephane Carrez
stephane_carrez Send Email
Mar 9, 2003
10:41 am
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...
2596 Stephane Carrez
stephane_carrez Send Email
Mar 9, 2003
10:48 am
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...
2597 Stephane Carrez
stephane_carrez Send Email
Mar 9, 2003
11:02 am
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...
2598 jtang613 Send Email Mar 9, 2003
7:14 pm
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...
2599 bandanasrule Send Email Mar 10, 2003
12:29 am
Excellent! I got it working, thanks a lot....
2600 data7200 Send Email Mar 10, 2003
2:32 am
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...
2601 Daniel Postler
daniepl77 Send Email
Mar 10, 2003
7:45 am
... 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...
2602 Gary Piercey
gpiercey@... Send Email
Mar 11, 2003
6:35 pm
... 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...
Messages 2573 - 2602 of 9654   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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