MCPcopy Create free account
hub / github.com/AppleWin/AppleWin / _Bookmark_Get

Function _Bookmark_Get

source/Debugger/Debug.cpp:556–569  ·  view source on GitHub ↗

===========================================================================

Source from the content-addressed store, hash-verified

554
555//===========================================================================
556bool _Bookmark_Get( const int iBookmark, WORD & nAddress )
557{
558// int nSize = g_aBookmarks.size();
559 if (iBookmark >= MAX_BOOKMARKS)
560 return false;
561
562 if (g_aBookmarks[ iBookmark ].bSet)
563 {
564 nAddress = g_aBookmarks[ iBookmark ].nAddress;
565 return true;
566 }
567
568 return false;
569}
570
571
572//===========================================================================

Callers 1

CmdBookmarkGotoFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected