Post Reply 
NP-41 Emulator (may be)
12-29-2015, 01:52 PM
Post: #118
RE: NP-41 Emulator (may be)
(12-27-2015 12:16 AM)quantalume Wrote:  
(08-17-2015 02:58 PM)Chris Chung Wrote:  I had found the perfect MCU for a nonpareil HP-41C emulation.

The TI MSP430FR6989
. 128K FRAM (non-volatile memory)
. 2K static RAM
. Direct LCD segment driver

Hi Chris, I wonder if you could say a few things in general terms about how you adapted nonpareil to make use of your I/O hardware. The source tarball compiles to a GTK application, but I intend to interface to a physical keyboard and display over GPIO pins. Do I need to rewrite display.c and keyboard.c? Is there a command line interface to nonpareil? Thanks.

Sorry for late reply, holiday hours. Smile
Nonpareil source code is arranged very nicely and the IO is isolated clean so adopting physical H/W (to replace GTK as IO) is quite straightforward.

Since I am not trying to physically emulate all processors with the same H/W, I just use a particular core for each project for starting. Say for NP25 I use proc_woodstock.c, for NP41 I use proc_nut.c and coconut_lcd.c

I would have a main program that talks w/ my H/W and as the control loop.
The main loop in this firmware (my project targets at MSP430, you may be targeting AVRs, PICs, ARMs etc) would be just continues scanning of the H/W keyboard and event trigger the processor core. This main program only need to interface w/ the processor core via 3 or 4 functions. An example for what it does.

Initialized H/W, calls nut_new_processor(), nut_set_ext_flag(...). This initialized the processing and emulates certain flags to get the processor ready.

Then the main program enters an indefinite loop, where it alternate between two jobs, (1) provide H/W scanning of the keyboard, and (2) in a timed manner, call nut_execute_instruction().

For (2), nut_execute_intruction() will allow the processor core to execute one instruction, whether there are key pressed or not, it is always executed in a timely basis.

For (1), upon keypress, we call nut_press_key(..) and upon key release, we call nut_release_key(..), in turn the processor core will update it's internal registers to reflect the changes, and upon the next nut_execute_intruction(), the proper processing will be done. It is important for the H/W to register the key press and key release events separately as the calculators has specific functions while key pressed but not released (like showing instruction name).

We do need to intercept the "ON" key separately where we may need set some register flags(?) and go on to do sleep functions w/ the target H/W. Most MCUs has various sleep modes where we can retain RAM memory at very low power.

So the above take cares of input. For the output, I intercepts cocunut_display_update() and inject my code to drive LCD outputs.

These would be the generate approach I am using. And of course there are other little details to take care of, mainly the allocation of memory varies quite a bit between different MCU platforms. So instead of using malloc(), smaller MCU might require you to use point to an address or use static array to reduce overhead.

Also my approach is a "forward migration", where I would replace many parameters w/ fixed values. I.e. nonpareil has this KML configuration system so many parameters are loaded from KML files at startup, I would just use constant values on the NP projects.

* there are also additional things I did to make the firmware compact enough to fit my H/W, which you should not need to do if you are using ARM based MCUs

I had re-organized the ROM content to save bytes (I.e. store instructions as 8+2 bits instead of 16 bits).
I reworked the registers to be 14 nibbles instead of 14 bytes, this saves a lot of program memory. This involves quite a bit of work as I need to modify a number of the instruction operator functions in proc_nut.c

You can study the NP25 source code to understand the structure. The source is quite messy as it can be built into Linux run, MSP430 run via UART and MSP430 run on NP25 hardware.

I am not really to upload the NP41 code yet. This will happen later when it's more stable.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
NP-41 Emulator (may be) - Chris Chung - 08-17-2015, 02:58 PM
RE: NP-41 Emulator (may be) - Thomas Klemm - 08-17-2015, 08:27 PM
RE: NP-41 Emulator (may be) - rprosperi - 08-17-2015, 08:27 PM
RE: NP-41 Emulator (may be) - Chris Chung - 08-18-2015, 12:29 AM
RE: NP-41 Emulator (may be) - Chris Chung - 08-18-2015, 06:53 PM
RE: NP-41 Emulator (may be) - Thomas Klemm - 08-18-2015, 04:17 AM
RE: NP-41 Emulator (may be) - Chris Chung - 08-18-2015, 02:11 PM
RE: NP-41 Emulator (may be) - rwiker - 08-18-2015, 10:10 AM
RE: NP-41 Emulator (may be) - rwiker - 08-18-2015, 08:31 PM
RE: NP-41 Emulator (may be) - jebem - 08-18-2015, 03:09 PM
RE: NP-41 Emulator (may be) - Jlouis - 08-19-2015, 01:53 PM
RE: NP-41 Emulator (may be) - Chris Chung - 08-19-2015, 05:19 PM
RE: NP-41 Emulator (may be) - rwiker - 08-20-2015, 06:10 PM
RE: NP-41 Emulator (may be) - Chris Chung - 08-21-2015, 12:32 PM
RE: NP-41 Emulator (may be) - jebem - 08-21-2015, 02:52 PM
RE: NP-41 Emulator (may be) - Chris Chung - 08-25-2015, 07:02 PM
RE: NP-41 Emulator (may be) - rwiker - 08-23-2015, 09:12 PM
RE: NP-41 Emulator (may be) - jebem - 08-20-2015, 12:37 PM
RE: NP-41 Emulator (may be) - EdS2 - 08-20-2015, 03:00 PM
RE: NP-41 Emulator (may be) - Chris Chung - 08-20-2015, 03:41 PM
RE: NP-41 Emulator (may be) - rtoi - 08-24-2015, 02:13 PM
RE: NP-41 Emulator (may be) - jjohnson873 - 08-24-2015, 11:31 PM
RE: NP-41 Emulator (may be) - Sylvain Cote - 08-26-2015, 02:06 AM
RE: NP-41 Emulator (may be) - Chris Chung - 08-26-2015, 01:45 PM
RE: NP-41 Emulator (may be) - jch - 08-26-2015, 07:58 PM
RE: NP-41 Emulator (may be) - Chris Chung - 08-27-2015, 12:47 AM
RE: NP-41 Emulator (may be) - Benoit Maag - 08-29-2015, 12:23 AM
RE: NP-41 Emulator (may be) - d b - 08-29-2015, 05:44 AM
RE: NP-41 Emulator (may be) - Waon Shinyoe - 08-31-2015, 01:18 AM
RE: NP-41 Emulator (may be) - Waon Shinyoe - 08-31-2015, 11:46 AM
RE: NP-41 Emulator (may be) - Chris Chung - 08-31-2015, 01:16 PM
RE: NP-41 Emulator (may be) - Waon Shinyoe - 08-31-2015, 01:51 PM
RE: NP-41 Emulator (may be) - Chris Chung - 08-31-2015, 06:06 PM
RE: NP-41 Emulator (may be) - Waon Shinyoe - 09-04-2015, 08:47 AM
RE: NP-41 Emulator (may be) - Chris Chung - 09-04-2015, 02:39 PM
RE: NP-41 Emulator (may be) - Waon Shinyoe - 09-06-2015, 02:36 PM
RE: NP-41 Emulator (may be) - Chris Chung - 09-08-2015, 02:54 PM
RE: NP-41 Emulator (may be) - Kinma - 09-21-2015, 06:41 PM
RE: NP-41 Emulator (may be) - Zweb - 09-22-2015, 09:51 AM
RE: NP-41 Emulator (may be) - Waon Shinyoe - 09-22-2015, 11:00 AM
RE: NP-41 Emulator (may be) - Harald - 09-22-2015, 11:11 AM
RE: NP-41 Emulator (may be) - Waon Shinyoe - 09-22-2015, 12:19 PM
RE: NP-41 Emulator (may be) - Benoit Maag - 09-27-2015, 10:17 PM
RE: NP-41 Emulator (may be) - Chris Chung - 09-22-2015, 01:05 PM
RE: NP-41 Emulator (may be) - Helix - 09-28-2015, 01:01 AM
RE: NP-41 Emulator (may be) - Chris Chung - 09-28-2015, 01:29 PM
RE: NP-41 Emulator (may be) - Helix - 09-29-2015, 12:17 AM
RE: NP-41 Emulator (may be) - kusmi - 09-23-2015, 07:36 AM
RE: NP-41 Emulator (may be) - Zweb - 09-27-2015, 12:51 PM
RE: NP-41 Emulator (may be) - matthiaspaul - 09-27-2015, 10:58 PM
RE: NP-41 Emulator (may be) - Zweb - 09-27-2015, 11:16 PM
RE: NP-41 Emulator (may be) - Helix - 09-29-2015, 12:37 AM
RE: NP-41 Emulator (may be) - jjohnson873 - 09-28-2015, 11:59 PM
RE: NP-41 Emulator (may be) - Chris Chung - 09-29-2015, 12:29 AM
RE: NP-41 Emulator (may be) - rprosperi - 09-29-2015, 09:55 PM
RE: NP-41 Emulator (may be) - Chris Chung - 10-01-2015, 02:51 AM
RE: NP-41 Emulator (may be) - Chris Chung - 10-03-2015, 09:58 PM
RE: NP-41 Emulator (may be) - rprosperi - 10-04-2015, 12:37 AM
RE: NP-41 Emulator (may be) - Chris Chung - 10-04-2015, 03:01 AM
RE: NP-41 Emulator (may be) - jebem - 10-04-2015, 01:49 PM
RE: NP-41 Emulator (may be) - Chris Chung - 10-05-2015, 12:35 AM
RE: NP-41 Emulator (may be) - Zweb - 10-03-2015, 11:15 PM
RE: NP-41 Emulator (may be) - Chris Chung - 10-04-2015, 02:56 AM
RE: NP-41 Emulator (may be) - Chris Chung - 10-06-2015, 12:32 AM
RE: NP-41 Emulator (may be) - jebem - 10-07-2015, 01:29 PM
RE: NP-41 Emulator (may be) - Chris Chung - 10-08-2015, 03:17 PM
RE: NP-41 Emulator (may be) - Chris Chung - 10-11-2015, 11:23 PM
RE: NP-41 Emulator (may be) - Jlouis - 10-12-2015, 12:02 AM
RE: NP-41 Emulator (may be) - rprosperi - 10-12-2015, 02:12 AM
RE: NP-41 Emulator (may be) - Jlouis - 10-12-2015, 10:56 AM
RE: NP-41 Emulator (may be) - brouhaha - 10-12-2015, 06:04 PM
RE: NP-41 Emulator (may be) - Harald - 10-12-2015, 10:33 PM
RE: NP-41 Emulator (may be) - brouhaha - 10-15-2015, 06:45 AM
RE: NP-41 Emulator (may be) - Chris Chung - 10-13-2015, 01:41 PM
RE: NP-41 Emulator (may be) - brouhaha - 10-15-2015, 06:58 AM
RE: NP-41 Emulator (may be) - Waon Shinyoe - 10-13-2015, 03:48 PM
RE: NP-41 Emulator (may be) - Chris Chung - 11-06-2015, 06:19 PM
RE: NP-41 Emulator (may be) - jebem - 11-07-2015, 11:17 AM
RE: NP-41 Emulator (may be) - Chris Chung - 12-17-2015, 01:40 PM
RE: NP-41 Emulator (may be) - quantalume - 12-17-2015, 04:05 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-17-2015, 09:38 PM
RE: NP-41 Emulator (may be) - EdS2 - 12-18-2015, 01:40 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-18-2015, 05:04 PM
RE: NP-41 Emulator (may be) - Kinma - 12-17-2015, 07:28 PM
RE: NP-41 Emulator (may be) - smp - 12-17-2015, 10:36 PM
RE: NP-41 Emulator (may be) - anetzer - 12-19-2015, 01:24 PM
RE: NP-41 Emulator (may be) - Helix - 12-17-2015, 09:44 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-17-2015, 09:45 PM
RE: NP-41 Emulator (may be) - rprosperi - 12-17-2015, 11:40 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-18-2015, 01:37 AM
RE: NP-41 Emulator (may be) - Sylvain Cote - 12-18-2015, 01:41 AM
RE: NP-41 Emulator (may be) - rprosperi - 12-18-2015, 04:11 AM
RE: NP-41 Emulator (may be) - Sylvain Cote - 12-18-2015, 04:44 AM
RE: NP-41 Emulator (may be) - Chris Chung - 12-18-2015, 12:44 PM
RE: NP-41 Emulator (may be) - Sylvain Cote - 12-18-2015, 02:01 PM
RE: NP-41 Emulator (may be) - sa-penguin - 12-19-2015, 02:39 AM
RE: NP-41 Emulator (may be) - Chris Chung - 12-20-2015, 12:56 AM
RE: NP-41 Emulator (may be) - rprosperi - 12-18-2015, 02:51 PM
RE: NP-41 Emulator (may be) - hth - 12-21-2015, 04:34 AM
RE: NP-41 Emulator (may be) - Chris Chung - 12-23-2015, 01:45 AM
RE: NP-41 Emulator (may be) - quantalume - 12-27-2015, 12:16 AM
RE: NP-41 Emulator (may be) - Chris Chung - 12-29-2015 01:52 PM
RE: NP-41 Emulator (may be) - quantalume - 12-29-2015, 07:40 PM
RE: NP-41 Emulator (may be) - Chris Chung - 01-25-2016, 01:30 PM
RE: NP-41 Emulator (may be) - walter b - 01-25-2016, 06:36 PM
RE: NP-41 Emulator (may be) - Chris Chung - 01-25-2016, 07:33 PM
RE: NP-41 Emulator (may be) - J-F Garnier - 01-26-2016, 01:24 PM
RE: NP-41 Emulator (may be) - jch - 01-26-2016, 09:49 PM
RE: NP-41 Emulator (may be) - Thomas_Sch - 01-27-2016, 03:44 PM
RE: NP-41 Emulator (may be) - Chris Chung - 01-28-2016, 06:55 PM
RE: NP-41 Emulator (may be) - rprosperi - 01-28-2016, 08:26 PM
RE: NP-41 Emulator (may be) - Chris Chung - 01-29-2016, 01:21 AM
RE: NP-41 Emulator (may be) - rprosperi - 01-29-2016, 01:43 AM
RE: NP-41 Emulator (may be) - J-F Garnier - 01-29-2016, 09:11 AM
RE: NP-41 Emulator (may be) - Chris Chung - 01-29-2016, 02:59 PM
RE: NP-41 Emulator (may be) - jch - 01-29-2016, 08:15 PM
RE: NP-41 Emulator (may be) - Chris Chung - 01-29-2016, 09:20 PM
RE: NP-41 Emulator (may be) - jch - 01-28-2016, 09:27 PM
RE: NP-41 Emulator (may be) - Thomas_Sch - 01-28-2016, 09:51 PM
RE: NP-41 Emulator (may be) - jch - 01-25-2016, 01:45 PM
RE: NP-41 Emulator (may be) - Chris Chung - 01-25-2016, 03:08 PM
RE: NP-41 Emulator (may be) - rprosperi - 01-25-2016, 04:23 PM
RE: NP-41 Emulator (may be) - Chris Chung - 01-25-2016, 07:03 PM
RE: NP-41 Emulator (may be) - rprosperi - 01-25-2016, 07:29 PM
RE: NP-41 Emulator (may be) - Chris Chung - 01-25-2016, 09:34 PM
RE: NP-41 Emulator (may be) - rprosperi - 01-26-2016, 12:04 AM
RE: NP-41 Emulator (may be) - Chris Chung - 01-26-2016, 12:45 AM
RE: NP-41 Emulator (may be) - rprosperi - 01-26-2016, 01:38 AM
RE: NP-41 Emulator (may be) - J-F Garnier - 01-26-2016, 08:01 AM
RE: NP-41 Emulator (may be) - Chris Chung - 01-25-2016, 07:44 PM
RE: NP-41 Emulator (may be) - jch - 01-25-2016, 08:00 PM
RE: NP-41 Emulator (may be) - Sylvain Cote - 01-26-2016, 03:09 AM
RE: NP-41 Emulator (may be) - walter b - 01-26-2016, 07:50 AM
RE: NP-41 Emulator (may be) - walter b - 01-26-2016, 09:27 AM
RE: NP-41 Emulator (may be) - Chris Chung - 01-26-2016, 01:00 PM
RE: NP-41 Emulator (may be) - Chris Chung - 03-01-2016, 02:02 PM
RE: NP-41 Emulator (may be) - Chris Chung - 03-01-2016, 02:16 PM
RE: NP-41 Emulator (may be) - walter b - 03-01-2016, 02:46 PM
RE: NP-41 Emulator (may be) - Thomas_Sch - 03-03-2016, 08:13 AM
RE: NP-41 Emulator (may be) - rprosperi - 03-01-2016, 02:26 PM
RE: NP-41 Emulator (may be) - Chris Chung - 03-03-2016, 05:27 PM
RE: NP-41 Emulator (may be) - rprosperi - 03-03-2016, 08:35 PM
RE: NP-41 Emulator (may be) - PANAMATIK - 03-06-2016, 11:52 AM
RE: NP-41 Emulator (may be) - Thomas_Sch - 03-06-2016, 06:31 PM
RE: NP-41 Emulator (may be) - Chris Chung - 03-07-2016, 08:21 PM
RE: NP-41 Emulator (may be) - smp - 03-07-2016, 10:20 PM
RE: NP-41 Emulator (may be) - smp - 03-03-2016, 01:28 PM
RE: NP-41 Emulator (may be) - Jlouis - 03-06-2016, 08:17 PM
RE: NP-41 Emulator (may be) - Sylvain Cote - 03-06-2016, 08:33 PM
RE: NP-41 Emulator (may be) - sa-penguin - 03-09-2016, 02:56 AM
RE: NP-41 Emulator (may be) - Chris Chung - 03-09-2016, 01:49 PM
RE: NP-41 Emulator (may be) - Harald - 03-09-2016, 03:35 PM
RE: NP-41 Emulator (may be) - Chris Chung - 03-09-2016, 06:21 PM
RE: NP-41 Emulator (may be) - Harald - 03-09-2016, 07:03 PM
RE: NP-41 Emulator (may be) - PANAMATIK - 03-09-2016, 09:51 PM
RE: NP-41 Emulator (may be) - Chris Chung - 03-14-2016, 12:42 PM
RE: NP-41 Emulator (may be) - Helix - 03-17-2016, 09:25 PM
RE: NP-41 Emulator (may be) - emece67 - 04-06-2016, 11:43 AM
RE: NP-41 Emulator (may be) - Chris Chung - 04-08-2016, 02:14 PM
RE: NP-41 Emulator (may be) - PANAMATIK - 03-09-2016, 06:58 PM
RE: NP-41 Emulator (may be) - Chris Chung - 03-09-2016, 02:19 PM
RE: NP-41 Emulator (may be) - Kinma - 03-09-2016, 11:40 PM
RE: NP-41 Emulator (may be) - sc05027 - 03-12-2016, 03:39 AM
RE: NP-41 Emulator (may be) - vk6ti - 03-12-2016, 08:38 PM
RE: NP-41 Emulator (may be) - sans - 03-14-2016, 02:39 PM
RE: NP-41 Emulator (may be) - Chris Chung - 03-14-2016, 04:56 PM
RE: NP-41 Emulator (may be) - Sylvain Cote - 03-14-2016, 06:33 PM
RE: NP-41 Emulator (may be) - Harald - 03-14-2016, 09:22 PM
RE: NP-41 Emulator (may be) - Chris Chung - 03-15-2016, 11:45 AM
RE: NP-41 Emulator (may be) - smp - 03-15-2016, 11:53 AM
RE: NP-41 Emulator (may be) - rprosperi - 03-15-2016, 02:15 PM
RE: NP-41 Emulator (may be) - Thomas_Sch - 03-15-2016, 03:07 PM
RE: NP-41 Emulator (may be) - PANAMATIK - 03-15-2016, 07:59 AM
RE: NP-41 Emulator (may be) - Chris Chung - 03-15-2016, 05:19 PM
RE: NP-41 Emulator (may be) - jch - 03-15-2016, 08:44 PM
RE: NP-41 Emulator (may be) - Chris Chung - 03-16-2016, 11:36 AM
RE: NP-41 Emulator (may be) - Chris Chung - 03-16-2016, 12:15 PM
RE: NP-41 Emulator (may be) - Helix - 03-16-2016, 02:31 PM
RE: NP-41 Emulator (may be) - Helix - 03-15-2016, 11:11 PM
RE: NP-41 Emulator (may be) - Sylvain Cote - 04-02-2016, 02:53 PM
RE: NP-41 Emulator (may be) - Harald - 04-02-2016, 06:34 PM
RE: NP-41 Emulator (may be) - Chris Chung - 04-04-2016, 01:05 PM
RE: NP-41 Emulator (may be) - Chris Chung - 04-04-2016, 01:41 PM
RE: NP-41 Emulator (may be) - Harald - 04-04-2016, 09:58 PM
RE: NP-41 Emulator (may be) - Chris Chung - 04-04-2016, 01:23 PM
RE: NP-41 Emulator (may be) - Chris Chung - 04-08-2016, 02:39 PM
RE: NP-41 Emulator (may be) - Sylvain Cote - 04-08-2016, 04:23 PM
RE: NP-41 Emulator (may be) - Harald - 04-13-2016, 02:06 PM
RE: NP-41 Emulator (may be) - Chris Chung - 04-13-2016, 04:49 PM
RE: NP-41 Emulator (may be) - Chris Chung - 04-08-2016, 03:05 PM
RE: NP-41 Emulator (may be) - Chris Chung - 04-12-2016, 01:21 PM
RE: NP-41 Emulator (may be) - Chris Chung - 04-12-2016, 01:47 PM
RE: NP-41 Emulator (may be) - Chris Chung - 04-13-2016, 04:58 PM
RE: NP-41 Emulator (may be) - Harald - 04-14-2016, 12:42 PM
RE: NP-41 Emulator (may be) - Chris Chung - 04-14-2016, 04:43 PM
RE: NP-41 Emulator (may be) - Harald - 04-14-2016, 06:48 PM
RE: NP-41 Emulator (may be) - Chris Chung - 04-14-2016, 07:55 PM
RE: NP-41 Emulator (may be) - Harald - 04-14-2016, 10:20 PM
RE: NP-41 Emulator (may be) - Chris Chung - 04-15-2016, 12:06 PM
RE: NP-41 Emulator (may be) - Harald - 04-15-2016, 12:25 PM
RE: NP-41 Emulator (may be) - Harald - 04-18-2016, 02:21 PM
RE: NP-41 Emulator (may be) - Chris Chung - 04-18-2016, 02:59 PM
RE: NP-41 Emulator (may be) - Chris Chung - 04-18-2016, 06:42 PM
RE: NP-41 Emulator (may be) - Sylvain Cote - 04-19-2016, 01:57 AM
RE: NP-41 Emulator (may be) - Harald - 04-19-2016, 07:51 AM
RE: NP-41 Emulator (may be) - Sylvain Cote - 04-19-2016, 10:40 AM
RE: NP-41 Emulator (may be) - Chris Chung - 04-19-2016, 02:29 PM
RE: NP-41 Emulator (may be) - Sylvain Cote - 04-20-2016, 12:02 PM
RE: NP-41 Emulator (may be) - Chris Chung - 04-20-2016, 03:32 PM
RE: NP-41 Emulator (may be) - Harald - 04-20-2016, 09:07 AM
RE: NP-41 Emulator (may be) - Chris Chung - 05-12-2016, 02:14 PM
RE: NP-41 Emulator (may be) - PANAMATIK - 05-12-2016, 02:54 PM
RE: NP-41 Emulator (may be) - rprosperi - 05-12-2016, 10:18 PM
RE: NP-41 Emulator (may be) - Harald - 07-14-2016, 07:54 PM
RE: NP-41 Emulator (may be) - Chris Chung - 10-20-2016, 02:08 PM
RE: NP-41 Emulator (may be) - Helix - 10-20-2016, 09:41 PM
RE: NP-41 Emulator (may be) - PANAMATIK - 10-20-2016, 10:20 PM
RE: NP-41 Emulator (may be) - Harald - 10-21-2016, 08:36 AM
RE: NP-41 Emulator (may be) - d b - 10-21-2016, 03:44 PM
RE: NP-41 Emulator (may be) - agarza - 10-25-2016, 10:08 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-01-2017, 08:15 PM
RE: NP-41 Emulator (may be) - Sylvain Cote - 12-02-2017, 12:41 AM
RE: NP-41 Emulator (may be) - Raffzahn - 12-02-2017, 01:24 PM
RE: NP-41 Emulator (may be) - mwthomasjr - 12-01-2017, 08:18 PM
RE: NP-41 Emulator (may be) - d b - 12-01-2017, 10:24 PM
RE: NP-41 Emulator (may be) - Mark Hardman - 12-02-2017, 02:42 AM
RE: NP-41 Emulator (may be) - hth - 12-02-2017, 03:21 AM
RE: NP-41 Emulator (may be) - rprosperi - 12-02-2017, 04:00 AM
RE: NP-41 Emulator (may be) - Egan Ford - 12-02-2017, 06:10 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-03-2017, 01:36 AM
RE: NP-41 Emulator (may be) - Sukiari - 12-03-2017, 01:50 AM
RE: NP-41 Emulator (may be) - Paul Dale - 12-03-2017, 02:11 AM
RE: NP-41 Emulator (may be) - revwillie - 12-03-2017, 04:19 AM
RE: NP-41 Emulator (may be) - Kinma - 12-03-2017, 02:43 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-04-2017, 01:37 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-04-2017, 06:46 PM
RE: NP-41 Emulator (may be) - jwhsu - 12-04-2017, 09:14 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-05-2017, 01:30 AM
RE: NP-41 Emulator (may be) - mwthomasjr - 12-05-2017, 02:41 AM
RE: NP-41 Emulator (may be) - emece67 - 12-05-2017, 09:58 AM
RE: NP-41 Emulator (may be) - rprosperi - 12-05-2017, 01:57 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-05-2017, 07:52 PM
RE: NP-41 Emulator (may be) - rprosperi - 12-05-2017, 09:30 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-05-2017, 11:00 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-06-2017, 03:09 AM
RE: NP-41 Emulator (may be) - rprosperi - 12-06-2017, 03:15 AM
RE: NP-41 Emulator (may be) - Harald - 12-06-2017, 09:58 AM
RE: NP-41 Emulator (may be) - Chris Chung - 12-06-2017, 12:43 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-08-2017, 01:51 AM
RE: NP-41 Emulator (may be) - Thomas_Sch - 12-09-2017, 10:19 AM
RE: NP-41 Emulator (may be) - mwthomasjr - 12-10-2017, 10:33 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-11-2017, 06:01 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-11-2017, 06:11 PM
RE: NP-41 Emulator (may be) - rprosperi - 12-11-2017, 09:14 PM
RE: NP-41 Emulator (may be) - Sylvain Cote - 12-11-2017, 11:17 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-12-2017, 01:37 AM
RE: NP-41 Emulator (may be) - Chris Chung - 12-12-2017, 02:28 PM
RE: NP-41 Emulator (may be) - mwthomasjr - 12-13-2017, 02:00 AM
RE: NP-41 Emulator (may be) - Sylvain Cote - 12-14-2017, 12:04 AM
RE: NP-41 Emulator (may be) - Chris Chung - 12-14-2017, 01:13 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-12-2017, 03:10 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-14-2017, 07:48 PM
RE: NP-41 Emulator (may be) - Sylvain Cote - 12-15-2017, 12:14 AM
RE: NP-41 Emulator (may be) - Chris Chung - 12-15-2017, 02:30 PM
RE: NP-41 Emulator (may be) - anetzer - 12-15-2017, 08:24 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-18-2017, 02:50 PM
RE: NP-41 Emulator (may be) - hth - 12-18-2017, 06:21 PM
RE: NP-41 Emulator (may be) - d b - 12-13-2017, 03:16 AM
RE: NP-41 Emulator (may be) - Chris Chung - 12-14-2017, 05:10 AM
RE: NP-41 Emulator (may be) - Chris Chung - 12-14-2017, 12:39 PM
RE: NP-41 Emulator (may be) - Mark Hardman - 12-14-2017, 03:26 PM
RE: NP-41 Emulator (may be) - Sylvain Cote - 12-14-2017, 10:32 AM
RE: NP-41 Emulator (may be) - mwthomasjr - 12-14-2017, 12:42 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-14-2017, 01:18 PM
RE: NP-41 Emulator (may be) - mwthomasjr - 12-27-2017, 08:34 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-28-2017, 02:25 PM
RE: NP-41 Emulator (may be) - Sylvain Cote - 12-15-2017, 02:48 AM
RE: NP-41 Emulator (may be) - Egan Ford - 12-16-2017, 07:51 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-19-2017, 01:03 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-20-2017, 12:27 PM
RE: NP-41 Emulator (may be) - Egan Ford - 12-20-2017, 08:36 PM
RE: NP-41 Emulator (may be) - Helix - 12-21-2017, 04:21 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-21-2017, 04:25 AM
RE: NP-41 Emulator (may be) - Chris Chung - 12-21-2017, 01:30 PM
RE: NP-41 Emulator (may be) - Sylvain Cote - 12-21-2017, 12:39 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-21-2017, 01:16 PM
RE: NP-41 Emulator (may be) - Egan Ford - 12-20-2017, 10:41 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-21-2017, 04:17 AM
RE: NP-41 Emulator (may be) - Egan Ford - 12-22-2017, 02:15 AM
RE: NP-41 Emulator (may be) - Chris Chung - 12-22-2017, 01:46 PM
RE: NP-41 Emulator (may be) - Egan Ford - 12-22-2017, 05:51 PM
RE: NP-41 Emulator (may be) - Chris Chung - 12-21-2017, 04:43 AM
RE: NP-41 Emulator (may be) - Chris Chung - 12-21-2017, 01:50 PM
RE: NP-41 Emulator (may be) - rprosperi - 12-21-2017, 10:31 PM
RE: NP-41 Emulator (may be) - rprosperi - 12-21-2017, 10:29 PM
RE: NP-41 Emulator (may be) - rprosperi - 12-21-2017, 11:21 PM
RE: NP-41 Emulator (may be) - Chris Chung - 01-10-2018, 01:53 PM
RE: NP-41 Emulator (may be) - everettr - 01-10-2018, 11:36 PM
RE: NP-41 Emulator (may be) - Chris Chung - 01-11-2018, 03:38 PM
RE: NP-41 Emulator (may be) - everettr - 01-11-2018, 06:41 PM
RE: NP-41 Emulator (may be) - Chris Chung - 01-18-2018, 04:17 PM
RE: NP-41 Emulator (may be) - Mark Hardman - 01-19-2018, 03:03 AM
RE: NP-41 Emulator (may be) - Chris Chung - 01-19-2018, 01:20 PM
RE: NP-41 Emulator (may be) - hth - 01-20-2018, 06:34 AM
RE: NP-41 Emulator (may be) - emece67 - 01-25-2018, 03:19 PM
RE: NP-41 Emulator (may be) - Chris Chung - 01-29-2018, 02:30 PM
RE: NP-41 Emulator (may be) - sc05027 - 03-05-2018, 07:35 AM
RE: NP-41 Emulator (may be) - Chris Chung - 03-08-2018, 12:52 PM
RE: NP-41 Emulator (may be) - rprosperi - 03-08-2018, 01:43 PM
RE: NP-41 Emulator (may be) - Chris Chung - 03-08-2018, 04:34 PM
RE: NP-41 Emulator (may be) - Chris Chung - 03-20-2018, 11:35 AM
RE: NP-41 Emulator (may be) - anetzer - 02-18-2019, 07:29 PM
RE: NP-41 Emulator (may be) - smp - 03-17-2018, 03:18 PM
RE: NP-41 Emulator (may be) - rprosperi - 03-17-2018, 03:34 PM
RE: NP-41 Emulator (may be) - smp - 03-17-2018, 11:35 PM
RE: NP-41 Emulator (may be) - hmilz - 01-20-2021, 06:11 PM



User(s) browsing this thread: 5 Guest(s)