Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 78239
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T20:57:22+00:00 2026-05-10T20:57:22+00:00

I realize that far is compiler specific, but my expectation is that the placement

  • 0

I realize that far is compiler specific, but my expectation is that the placement of the far specifier should make sense to those who really understand pointers.

So, I have two applications that share the processor’s entire memory space.

App A needs to call function foo that exists in app B.

I know the memory location of function foo.

So this should work, in app A:

typedef int (* __far MYFP)(int input);  void somefunc(void) {    int returnvalue;    MYFP foo;     foo = (MYFP) 0xFFFFFA;     returnvalue = foo(39); } 
  • Is the __far in the right spot in the typedef?
  • Do I need to add __far to the (MYFP) cast?
  • Some information suggests that the call to foo doesn’t need to be dereferenced, what is your experience?
  • What else about this looks incorrect, or might I try to accomplish this?

  • Is there a better way to do this?

Edit:

This is on an embedded device (Freescale S12XEQ device) using Code Warrior. It’s a 16 bit device with 24 bit memory space, so yes, it is segmented/banked.

-Adam

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T20:57:22+00:00Added an answer on May 10, 2026 at 8:57 pm

    Is the __far in the right spot in the typedef?

    [Edit, in response to ChrisN’s comment — thanks]

    This is a compiler-dependent feature, since it is not part of ANSI C. According to the compiler manual <http://www.freescale.com/files/soft_dev_tools/doc/ref_manual/CW_Compiler_HC12_RM.pdf>, chapter 8, you have it placed correctly. In other compilers, you may need to reverse the order. This should be pretty easy to figure out, though, since exactly one of the two options will compile with any given compiler.

    Do I need to add __far to the (MYFP) cast?

    Nope, it’s part of the type.

    Some information suggests that the call to foo doesn’t need to be dereferenced, what is your experience?

    Function pointers can be optionally dereferenced in C. The following lines are both valid do the exact same thing:

    foo = (MYFP)0xFFFFFA; returnvalue = foo(39);  // 1 returnvalue = (*foo)(39);  // 2 

    What else about this looks incorrect, or might I try to accomplish this?

    You’ve done it exactly correctly.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I realize that a SO user has formerly asked this question but it was
I realize that this question has been asked 100times but none that I have
I realize that this question has been asked and has been answered here but
I realize that the phrase good practices is a bit dubious and overused, but
I realize that in general, you should not store user credentials directly (i.e., in
I realize that this question is impossible to answer absolutely, but I'm only after
First of all, I realize that for a PUT request the request parameters should
I do realize that this question seems very well known, but since I don't
I realize that this question may appear to be a duplicate, but none of
I realize that tinyint is a single byte integer (by the way, is it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.