{"id":10,"date":"2007-12-30T23:46:05","date_gmt":"2007-12-30T21:46:05","guid":{"rendered":"http:\/\/www.bkits.at\/weblog\/?page_id=10"},"modified":"2010-04-22T15:29:19","modified_gmt":"2010-04-22T13:29:19","slug":"useful-memory-addresses","status":"publish","type":"page","link":"http:\/\/www.bkits.at\/weblog\/the-sharp-pc1403h\/useful-memory-addresses\/","title":{"rendered":"Useful memory addresses"},"content":{"rendered":"<p>Unfortunately I neither know the memory address scheme of the PC1403 &#8211; any suggestions would be appreciated &#8211; nor the ROM code. The following information was found out by try and error.<\/p>\n<p>The addressing schematics look very similar to common 8 bit systems, e.g. like the Commodore 64 home computer. If so, the so called &#8218;<a href=\"http:\/\/de.wikipedia.org\/wiki\/Zeropage\" target=\"_blank\">zeropage<\/a>&#8218;, the first 1024 bytes of address space, should be handled carefully.<\/p>\n<p>Anyway, to prevent you from inventing the wheel again, take a look!<\/p>\n<h4>Accessing the display<\/h4>\n<p>Even the display is very small (5x7x24), you can access every block on the display, and very confusing, the special functions-display.<\/p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"2\" align=\"center\">\n<tbody>\n<tr>\n<th scope=\"col\">Bit \/ address<\/th>\n<th scope=\"col\">12348<\/th>\n<th scope=\"col\">12349<\/th>\n<th scope=\"col\">12412<\/th>\n<\/tr>\n<tr style=\"text-align: center;\">\n<th scope=\"row\">1<\/th>\n<td><code>Japenese symbols<\/code><\/td>\n<td><code>\/<\/code><\/td>\n<td><code>E<\/code><\/td>\n<\/tr>\n<tr style=\"text-align: center;\">\n<th scope=\"row\">2<\/th>\n<td><code>Japanese symbols<\/code><\/td>\n<td><code>DEF<\/code><\/td>\n<td><code>M<\/code><\/td>\n<\/tr>\n<tr style=\"text-align: center;\">\n<th scope=\"row\">3<\/th>\n<td><code>SML<\/code><\/td>\n<td><code>SHIFT<\/code><\/td>\n<td><code>()<\/code><\/td>\n<\/tr>\n<tr style=\"text-align: center;\">\n<th scope=\"row\">4<\/th>\n<td><code>(STAT)<\/code><\/td>\n<td><code>HYP<\/code><\/td>\n<td><code>RAD<\/code><\/td>\n<\/tr>\n<tr style=\"text-align: center;\">\n<th scope=\"row\">5<\/th>\n<td><code>(MATRIX)<\/code><\/td>\n<td><code>PRO<\/code><\/td>\n<td><code>G<\/code><\/td>\n<\/tr>\n<tr style=\"text-align: center;\">\n<th scope=\"row\">6<\/th>\n<td><code>(BASIC)<\/code><\/td>\n<td><code>RUN<\/code><\/td>\n<td><code>DE<\/code><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\">7<\/th>\n<td><code>left _<\/code><\/td>\n<td><code>CAL<\/code><\/td>\n<td><code>(PRINT)_<\/code><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>To calculate the value, that needs to be poked, use: <code>2^(Bit-1)<\/code> for setting the bit, e.g. to activate &#8222;<code>SML<\/code>&#8220; on the display, simply use<\/p>\n<blockquote><p><code>POKE 12348,4<\/code>.<\/p><\/blockquote>\n<p>As long as bit arithmetics is additive and the <code>POKE<\/code> command increases the memory address automatically, a<\/p>\n<blockquote><p><code>POKE 12348,255,255<\/code><\/p><\/blockquote>\n<p>makes your PC1403 display looking very crazy. A virus? Magic? No, not really, of course&#8230;<\/p>\n<h4>Password switch<\/h4>\n<p>Protecting your source code from foreign eyes is a nice little feature, but not very secure. Use<\/p>\n<blockquote><p><code>POKE 65300,32<\/code><\/p><\/blockquote>\n<p>to enable password protection,<\/p>\n<blockquote><p><code>POKE 65300,1<\/code><\/p><\/blockquote>\n<p>for disabling. Also look at the source section, how you can find out the whole password string.<\/p>\n<p>For some source code samples, take a look at <a href=\"index.php?tag=SW-PC1403Source\">those  articles<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Unfortunately I neither know the memory address scheme of the PC1403 &#8211; any suggestions would be appreciated &#8211; nor the ROM code. The following information was found out by try and error. The addressing schematics look very similar to common &hellip; <a href=\"http:\/\/www.bkits.at\/weblog\/the-sharp-pc1403h\/useful-memory-addresses\/\">Weiterlesen <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"parent":7,"menu_order":0,"comment_status":"open","ping_status":"open","template":"","meta":{"footnotes":""},"class_list":["post-10","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Useful memory addresses - Berni&#039;s ~page V5 Weblog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/www.bkits.at\/weblog\/the-sharp-pc1403h\/useful-memory-addresses\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Useful memory addresses - Berni&#039;s ~page V5 Weblog\" \/>\n<meta property=\"og:description\" content=\"Unfortunately I neither know the memory address scheme of the PC1403 &#8211; any suggestions would be appreciated &#8211; nor the ROM code. The following information was found out by try and error. The addressing schematics look very similar to common &hellip; Weiterlesen &rarr;\" \/>\n<meta property=\"og:url\" content=\"http:\/\/www.bkits.at\/weblog\/the-sharp-pc1403h\/useful-memory-addresses\/\" \/>\n<meta property=\"og:site_name\" content=\"Berni&#039;s ~page V5 Weblog\" \/>\n<meta property=\"article:modified_time\" content=\"2010-04-22T13:29:19+00:00\" \/>\n<meta name=\"twitter:label1\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data1\" content=\"1\u00a0Minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/www.bkits.at\\\/weblog\\\/the-sharp-pc1403h\\\/useful-memory-addresses\\\/\",\"url\":\"http:\\\/\\\/www.bkits.at\\\/weblog\\\/the-sharp-pc1403h\\\/useful-memory-addresses\\\/\",\"name\":\"Useful memory addresses - Berni&#039;s ~page V5 Weblog\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.bkits.at\\\/weblog\\\/#website\"},\"datePublished\":\"2007-12-30T21:46:05+00:00\",\"dateModified\":\"2010-04-22T13:29:19+00:00\",\"breadcrumb\":{\"@id\":\"http:\\\/\\\/www.bkits.at\\\/weblog\\\/the-sharp-pc1403h\\\/useful-memory-addresses\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\\\/\\\/www.bkits.at\\\/weblog\\\/the-sharp-pc1403h\\\/useful-memory-addresses\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/www.bkits.at\\\/weblog\\\/the-sharp-pc1403h\\\/useful-memory-addresses\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"http:\\\/\\\/www.bkits.at\\\/weblog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The Sharp PC1403(H)\",\"item\":\"https:\\\/\\\/www.bkits.at\\\/weblog\\\/the-sharp-pc1403h\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Useful memory addresses\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/www.bkits.at\\\/weblog\\\/#website\",\"url\":\"http:\\\/\\\/www.bkits.at\\\/weblog\\\/\",\"name\":\"Berni&#039;s ~page V5 Weblog\",\"description\":\"The official weblog to Berni&#039;s ~page V5\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\\\/\\\/www.bkits.at\\\/weblog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Useful memory addresses - Berni&#039;s ~page V5 Weblog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"http:\/\/www.bkits.at\/weblog\/the-sharp-pc1403h\/useful-memory-addresses\/","og_locale":"de_DE","og_type":"article","og_title":"Useful memory addresses - Berni&#039;s ~page V5 Weblog","og_description":"Unfortunately I neither know the memory address scheme of the PC1403 &#8211; any suggestions would be appreciated &#8211; nor the ROM code. The following information was found out by try and error. The addressing schematics look very similar to common &hellip; Weiterlesen &rarr;","og_url":"http:\/\/www.bkits.at\/weblog\/the-sharp-pc1403h\/useful-memory-addresses\/","og_site_name":"Berni&#039;s ~page V5 Weblog","article_modified_time":"2010-04-22T13:29:19+00:00","twitter_misc":{"Gesch\u00e4tzte Lesezeit":"1\u00a0Minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"http:\/\/www.bkits.at\/weblog\/the-sharp-pc1403h\/useful-memory-addresses\/","url":"http:\/\/www.bkits.at\/weblog\/the-sharp-pc1403h\/useful-memory-addresses\/","name":"Useful memory addresses - Berni&#039;s ~page V5 Weblog","isPartOf":{"@id":"http:\/\/www.bkits.at\/weblog\/#website"},"datePublished":"2007-12-30T21:46:05+00:00","dateModified":"2010-04-22T13:29:19+00:00","breadcrumb":{"@id":"http:\/\/www.bkits.at\/weblog\/the-sharp-pc1403h\/useful-memory-addresses\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["http:\/\/www.bkits.at\/weblog\/the-sharp-pc1403h\/useful-memory-addresses\/"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/www.bkits.at\/weblog\/the-sharp-pc1403h\/useful-memory-addresses\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"http:\/\/www.bkits.at\/weblog\/"},{"@type":"ListItem","position":2,"name":"The Sharp PC1403(H)","item":"https:\/\/www.bkits.at\/weblog\/the-sharp-pc1403h\/"},{"@type":"ListItem","position":3,"name":"Useful memory addresses"}]},{"@type":"WebSite","@id":"http:\/\/www.bkits.at\/weblog\/#website","url":"http:\/\/www.bkits.at\/weblog\/","name":"Berni&#039;s ~page V5 Weblog","description":"The official weblog to Berni&#039;s ~page V5","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/www.bkits.at\/weblog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"}]}},"_links":{"self":[{"href":"http:\/\/www.bkits.at\/weblog\/wp-json\/wp\/v2\/pages\/10","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/www.bkits.at\/weblog\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"http:\/\/www.bkits.at\/weblog\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"http:\/\/www.bkits.at\/weblog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"http:\/\/www.bkits.at\/weblog\/wp-json\/wp\/v2\/comments?post=10"}],"version-history":[{"count":7,"href":"http:\/\/www.bkits.at\/weblog\/wp-json\/wp\/v2\/pages\/10\/revisions"}],"predecessor-version":[{"id":877,"href":"http:\/\/www.bkits.at\/weblog\/wp-json\/wp\/v2\/pages\/10\/revisions\/877"}],"up":[{"embeddable":true,"href":"http:\/\/www.bkits.at\/weblog\/wp-json\/wp\/v2\/pages\/7"}],"wp:attachment":[{"href":"http:\/\/www.bkits.at\/weblog\/wp-json\/wp\/v2\/media?parent=10"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}