There is no 192-bit Mersene prime, as considered in the question.
Implementing modular reduction of a 192-bit integer x modulo another 192-bit prime p is very straightforward: the result is x when x<p, or x-p otherwise.
Perhaps the question really is about efficient modular reduction modulo a 192-bit prime p of some larger quantity, for a prime p as commonly used in Elliptic Curve Cryptography. Such primes are often chosen in a way allowing efficient modular reduction. For example, for P-192, the prime modulus p is specified to be 6277101735386680763835789423207666416083908700390324961279 which is fffffffffffffffffffffffffffffffeffffffffffffffff
h
or 2192-264-1. This p is so near (232)6 that when working in base 232, estimation of a quotient digit in modular reduction modulo p is very easy, much like estimating a new digit when performing schoolbook Euclidian division by 999899 in base 10 is easy: much of the time, the leftmost digit of what remains of the dividend is that new digit of the quotient.