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

  • Home
  • SEARCH
  • 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 literally it translates to Java Enterprise Edition. But what I'm asking
I realize that since UNIX sockets are platform-specific, there has to be some non-Java
I realize that this would be COMPLETELY bad practice in normal situations, but this
I realize that this question is impossible to answer absolutely, but I'm only after
I realize that a whole lot of code cannot fit here, but I am
Ok so I realize that this is a pretty vague question, but bear with
I realize that parameterized SQL queries is the optimal way to sanitize user input
I realize that the query this question is looking for won't be enough to
Edit: Warning - I now realize that the following technique is generally regarded as
So I ran into something interesting that I didn't realize about the ternary operator

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.