{"id":13323,"date":"2022-09-15T22:46:48","date_gmt":"2022-09-15T22:46:48","guid":{"rendered":"https:\/\/bryceautomation.com\/?p=13323"},"modified":"2022-09-16T23:38:23","modified_gmt":"2022-09-16T23:38:23","slug":"kenbak-1-multiplication","status":"publish","type":"post","link":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/","title":{"rendered":"Kenbak-1 Multiplication"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction to Kenbak-1 Multiplication<\/h2>\n\n\n\n<p>Kenbak-1 Multiplication involves creating loops.  Being designed in 1971, the Kenbak-1 has a limited instruction set.   That limited instruction set presents some good challenges.  These challenges force us not only to understand the Kenbak-1 itself, but also understand more about mathematics.<\/p><div id=\"bryce-553881361\" class=\"bryce-afterfirst bryce-entity-placement\"><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-8316758073402323\" crossorigin=\"anonymous\"><\/script><ins class=\"adsbygoogle\" style=\"display:block;\" data-ad-client=\"ca-pub-8316758073402323\" \ndata-ad-slot=\"7728240895\" \ndata-ad-format=\"auto\"><\/ins>\n<script> \n(adsbygoogle = window.adsbygoogle || []).push({}); \n<\/script>\n<\/div>\n\n\n\n<p>There is no direct instruction in the processor for performing multiplication.  We perform multiplication by adding the multiplicand over and over by the number of times defined by the multiplier.   In this post, I&#8217;ll demonstrate this method of multiplication in the Kenbak-1.  It&#8217;s a bit crude, but remember this was back in 1971.  The Kenbak-1 did not even have a processor as we know them today.<\/p>\n\n\n\n<p>In this section we&#8217;ll develop a simple program.  The program has no other purpose than to multiply two small numbers together and display this to the user.   The user will enter these two values into addresses 020 and 021.<\/p>\n\n\n\n<p>Obviously, when using only 8 bits, the result must be below 377 octal (255 decimal).  We&#8217;ll discuss how to deal with larger numbers in a future post by using the carry bit.<\/p>\n\n\n\n<p>If you haven&#8217;t done so yet, I would encourage you to read the post on the <a href=\"https:\/\/bryceautomation.com\/index.php\/2022\/07\/16\/kenbak-1-basic-commands-opcodes\/\">Kenbak-1 OPCODES <\/a>to understand how to build the instructions below.  Additionally, you will probably want to print out some of the <a href=\"https:\/\/adwaterandstir.com\/wp-content\/uploads\/2018\/10\/KENBAK-Programming_Worksheets.pdf\">Kenbak-1 Programming Worksheets.<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Initialize the Registers<\/h2>\n\n\n\n<p>First, we&#8217;ll start this program by initializing the A, B, and X registers.  We&#8217;ll also set the program counter (PC) to start in memory cell #4.  Remember, the location of the A register is at 000.  The B register is at 001, and the X register is at 002.  The Kenbak-1&#8217;s program counter resides at address 003.  This keeps track of the next memory cell as the program executes.<\/p>\n\n\n\n<p>I&#8217;ll be using the <a href=\"http:\/\/www.neocomputer.org\/kenbak\/kenbak1-JS.html\">Kenbak-1 Web emulator <\/a>for this, but you can enter the program in an Kenbakuino as well.  At the end of this post, I&#8217;ll list an octal dump that you can send to the <a href=\"https:\/\/adwaterandstir.com\/kenbak\/\">Kenbakuino<\/a>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>INIT\n000:  000 000 000 004 <\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Create the Loop for Kenbak-1 Multiplication<\/h2>\n\n\n\n<p>Since this is a very small project, we&#8217;ll only have a single loop to execute.  After that, we&#8217;ll send the results of our multiply to the display.  Keep in mind, though that all of the values for the Kenbak-1 are in <strong>OCTAL<\/strong>.  You can verify the results with a programming calculator.  Just be sure your programming calculator is set to <strong>OCTAL<\/strong> as well.<\/p>\n\n\n\n<p>At memory cell 004, we load the X register with the value of 021.  This will be the number of times that our loop executes.  At memory cell 006, we add the value of cell 020 to the accumulator (&#8220;A&#8221; Regsiter).<\/p>\n\n\n\n<p>We need to keep track of the number of times the loop executes, so we decrement the X register in cell 010.   Every time the loop executes, X will decrement.  <\/p>\n\n\n\n<p>In memory cell 012, we check the value of X.  As long as X is above zero, we execute the loop again.  Once X drops to zero, we know that the &#8220;A&#8221; register contains our answer.  <\/p>\n\n\n\n<p>In Line 014, and 016, we store this A register both to cell 022, and to the display.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>004: 224 021 LDX 101 (LOAD X WITH &#91;021])\n006: 004 020 ADD A 100 (ADD &#91;020] TO A)\n010: 213 001 SUB X 001\n012: 247 006 JPD 006 ON X&gt;0\n014: 034 022 STA 022\n016: 034 200\n\n020: 010\n021: 010\n022: 000 <\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Test the Project<\/h2>\n\n\n\n<p>I&#8217;ll paste this into the memory loader of the Kenbak-1 emulator.  Then, I&#8217;ll hit start.  I&#8217;m pre-loading cells 020, and 021 with the octal value of 010 (decimal 8).  we get the octal value of 100 (which is decimal 64).  <\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"723\" height=\"457\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-81.png\" alt=\"\" class=\"wp-image-13326 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-81.png 723w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-81-300x190.png 300w\" data-sizes=\"(max-width: 723px) 100vw, 723px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 723px; --smush-placeholder-aspect-ratio: 723\/457;\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Summary of Kenbak-1 Multiplication<\/h2>\n\n\n\n<p>With the limited instruction of the Kenbak-1, we simply used addition to accomplish multiplication.  Eight times eight just means that we add the number 8 to itself 8 times.  Limited instruction sets allow us to do unlimited things.  Sometimes, we just have to get a bit creative.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Octal Dump for Kenbakuino:<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>000,000,000,004,224,021,004,020,213,001,247,006,034,022,034,200,010,010,000,000,s<\/code><\/pre>\n\n\n\n<p>For more information, visit the <a href=\"https:\/\/bryceautomation.com\/index.php\/category\/kenbak-1\/\">Kenbak-1 Category Page!<\/a><\/p>\n\n\n\n<p>&#8212; Ricky Bryce<\/p>\n<div id=\"bryce-3976702163\" class=\"bryce-after-content bryce-entity-placement\"><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-8316758073402323\" crossorigin=\"anonymous\"><\/script><ins class=\"adsbygoogle\" style=\"display:block;\" data-ad-client=\"ca-pub-8316758073402323\" \ndata-ad-slot=\"4667596182\" \ndata-ad-format=\"auto\"><\/ins>\n<script> \n(adsbygoogle = window.adsbygoogle || []).push({}); \n<\/script>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Introduction to Kenbak-1 Multiplication Kenbak-1 Multiplication involves creating loops. Being designed in 1971, the Kenbak-1 has a limited instruction set. That limited instruction set presents some good challenges. These challenges force us not only to understand the Kenbak-1 itself, but also understand more about mathematics. There is no direct instruction in the processor for performing <a class=\"moretag btn btn-primary\" href=\"https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/\">Read More \u00bb<\/a><\/p>\n","protected":false},"author":1,"featured_media":13326,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[762,727],"tags":[801,800],"class_list":{"0":"post-13323","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-kenbak-1","8":"category-vintage-computers","9":"tag-limited-instruction-set","10":"tag-multiply","11":"czr-hentry"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Kenbak-1 Multiplication - Bryce Automation<\/title>\n<meta name=\"description\" content=\"How to perform Kenbak-1 Multiplication by adding the multiplicand to itself by the number of times specified by the multiplier.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Kenbak-1 Multiplication - Bryce Automation\" \/>\n<meta property=\"og:description\" content=\"How to perform Kenbak-1 Multiplication by adding the multiplicand to itself by the number of times specified by the multiplier.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/\" \/>\n<meta property=\"og:site_name\" content=\"Bryce Automation\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/ricky.bryce.7\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-15T22:46:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-16T23:38:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-81.png\" \/>\n\t<meta property=\"og:image:width\" content=\"723\" \/>\n\t<meta property=\"og:image:height\" content=\"457\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ricky\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/15\\\/kenbak-1-multiplication\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/15\\\/kenbak-1-multiplication\\\/\"},\"author\":{\"name\":\"Ricky\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"headline\":\"Kenbak-1 Multiplication\",\"datePublished\":\"2022-09-15T22:46:48+00:00\",\"dateModified\":\"2022-09-16T23:38:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/15\\\/kenbak-1-multiplication\\\/\"},\"wordCount\":623,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/15\\\/kenbak-1-multiplication\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/image-81.png\",\"keywords\":[\"Limited Instruction Set\",\"Multiply\"],\"articleSection\":[\"Kenbak-1\",\"Vintage Computers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/15\\\/kenbak-1-multiplication\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/15\\\/kenbak-1-multiplication\\\/\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/15\\\/kenbak-1-multiplication\\\/\",\"name\":\"Kenbak-1 Multiplication - Bryce Automation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/15\\\/kenbak-1-multiplication\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/15\\\/kenbak-1-multiplication\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/image-81.png\",\"datePublished\":\"2022-09-15T22:46:48+00:00\",\"dateModified\":\"2022-09-16T23:38:23+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"description\":\"How to perform Kenbak-1 Multiplication by adding the multiplicand to itself by the number of times specified by the multiplier.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/15\\\/kenbak-1-multiplication\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/15\\\/kenbak-1-multiplication\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/15\\\/kenbak-1-multiplication\\\/#primaryimage\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/image-81.png\",\"contentUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/image-81.png\",\"width\":723,\"height\":457,\"caption\":\"Multiplication on the Kenbak-1\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/15\\\/kenbak-1-multiplication\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bryceautomation.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Kenbak-1 Multiplication\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#website\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/\",\"name\":\"Bryce Automation\",\"description\":\"Automating Home and Industry...\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/bryceautomation.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\",\"name\":\"Ricky\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/wphb-cache\\\/gravatar\\\/a8f\\\/a8fe6bf79d292b388ffee281ccb12488x96.jpg\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/wphb-cache\\\/gravatar\\\/a8f\\\/a8fe6bf79d292b388ffee281ccb12488x96.jpg\",\"contentUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/wphb-cache\\\/gravatar\\\/a8f\\\/a8fe6bf79d292b388ffee281ccb12488x96.jpg\",\"caption\":\"Ricky\"},\"sameAs\":[\"http:\\\/\\\/bryceautomation.com\",\"https:\\\/\\\/www.facebook.com\\\/ricky.bryce.7\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/ricky-bryce-4367a416\\\/\"],\"url\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/author\\\/ricky\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Kenbak-1 Multiplication - Bryce Automation","description":"How to perform Kenbak-1 Multiplication by adding the multiplicand to itself by the number of times specified by the multiplier.","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":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/","og_locale":"en_US","og_type":"article","og_title":"Kenbak-1 Multiplication - Bryce Automation","og_description":"How to perform Kenbak-1 Multiplication by adding the multiplicand to itself by the number of times specified by the multiplier.","og_url":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/","og_site_name":"Bryce Automation","article_author":"https:\/\/www.facebook.com\/ricky.bryce.7","article_published_time":"2022-09-15T22:46:48+00:00","article_modified_time":"2022-09-16T23:38:23+00:00","og_image":[{"width":723,"height":457,"url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-81.png","type":"image\/png"}],"author":"Ricky","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/#article","isPartOf":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/"},"author":{"name":"Ricky","@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"headline":"Kenbak-1 Multiplication","datePublished":"2022-09-15T22:46:48+00:00","dateModified":"2022-09-16T23:38:23+00:00","mainEntityOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/"},"wordCount":623,"commentCount":0,"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-81.png","keywords":["Limited Instruction Set","Multiply"],"articleSection":["Kenbak-1","Vintage Computers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/","url":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/","name":"Kenbak-1 Multiplication - Bryce Automation","isPartOf":{"@id":"https:\/\/bryceautomation.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/#primaryimage"},"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-81.png","datePublished":"2022-09-15T22:46:48+00:00","dateModified":"2022-09-16T23:38:23+00:00","author":{"@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"description":"How to perform Kenbak-1 Multiplication by adding the multiplicand to itself by the number of times specified by the multiplier.","breadcrumb":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/#primaryimage","url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-81.png","contentUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-81.png","width":723,"height":457,"caption":"Multiplication on the Kenbak-1"},{"@type":"BreadcrumbList","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/15\/kenbak-1-multiplication\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bryceautomation.com\/"},{"@type":"ListItem","position":2,"name":"Kenbak-1 Multiplication"}]},{"@type":"WebSite","@id":"https:\/\/bryceautomation.com\/#website","url":"https:\/\/bryceautomation.com\/","name":"Bryce Automation","description":"Automating Home and Industry...","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bryceautomation.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7","name":"Ricky","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bryceautomation.com\/wp-content\/wphb-cache\/gravatar\/a8f\/a8fe6bf79d292b388ffee281ccb12488x96.jpg","url":"https:\/\/bryceautomation.com\/wp-content\/wphb-cache\/gravatar\/a8f\/a8fe6bf79d292b388ffee281ccb12488x96.jpg","contentUrl":"https:\/\/bryceautomation.com\/wp-content\/wphb-cache\/gravatar\/a8f\/a8fe6bf79d292b388ffee281ccb12488x96.jpg","caption":"Ricky"},"sameAs":["http:\/\/bryceautomation.com","https:\/\/www.facebook.com\/ricky.bryce.7","https:\/\/www.linkedin.com\/in\/ricky-bryce-4367a416\/"],"url":"https:\/\/bryceautomation.com\/index.php\/author\/ricky\/"}]}},"_links":{"self":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts\/13323","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/comments?post=13323"}],"version-history":[{"count":0,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts\/13323\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media\/13326"}],"wp:attachment":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media?parent=13323"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/categories?post=13323"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/tags?post=13323"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}